From ec72494b71590a4051ef0b5b1873d20b462c43b5 Mon Sep 17 00:00:00 2001 From: NoM0Re <1629787+NoM0Re@users.noreply.github.com> Date: Fri, 21 Nov 2025 20:04:22 +0100 Subject: [PATCH 01/17] Add Wrath Titan Reforged support https://warcraft.wiki.gg/wiki/Titan_Reforged_-_Chronos --- .github/scripts/atlas_update.lua | 1 + .github/scripts/csv_to_lua.lua | 7 +- .github/scripts/update-atlas-files.sh | 3 +- .github/scripts/update-model-paths.sh | 2 +- WeakAuras/BuffTrigger2.lua | 6 +- WeakAuras/Compatibility.lua | 64 +- WeakAuras/GenericTrigger.lua | 22 +- WeakAuras/Init.lua | 56 +- WeakAuras/Prototypes.lua | 285 +- WeakAuras/Types.lua | 85 +- WeakAuras/Types_Wrath.lua | 5447 + WeakAuras/WeakAuras.lua | 26 +- WeakAuras/WeakAuras_Wrath.toc | 102 + WeakAurasArchive/WeakAurasArchive_Wrath.toc | 8 + WeakAurasModelPaths/ModelPathsWrath.lua | 118394 +++++++++++++++ .../WeakAurasModelPaths_Wrath.toc | 18 + .../AceGUIWidget-WeakAurasSpinBox.lua | 8 +- WeakAurasOptions/BuffTrigger2.lua | 2 +- .../OptionsFrames/OptionsFrame.lua | 2 +- WeakAurasOptions/WeakAurasOptions_Wrath.toc | 114 + .../TriggerTemplatesDataWrath.lua | 1278 + .../WeakAurasTemplates_Wrath.toc | 19 + 22 files changed, 125770 insertions(+), 179 deletions(-) create mode 100644 WeakAuras/Types_Wrath.lua create mode 100644 WeakAuras/WeakAuras_Wrath.toc create mode 100644 WeakAurasArchive/WeakAurasArchive_Wrath.toc create mode 100644 WeakAurasModelPaths/ModelPathsWrath.lua create mode 100644 WeakAurasModelPaths/WeakAurasModelPaths_Wrath.toc create mode 100644 WeakAurasOptions/WeakAurasOptions_Wrath.toc create mode 100644 WeakAurasTemplates/TriggerTemplatesDataWrath.lua create mode 100644 WeakAurasTemplates/WeakAurasTemplates_Wrath.toc diff --git a/.github/scripts/atlas_update.lua b/.github/scripts/atlas_update.lua index cd06bf8f99..1381ac759a 100644 --- a/.github/scripts/atlas_update.lua +++ b/.github/scripts/atlas_update.lua @@ -4,6 +4,7 @@ print("Creating atlas file for", version) local versionMap = { -- wow = "_Retail", + wow_classic_titan = "_Wrath", wow_classic = "_Cata", wow_classic_era = "_Vanilla" } diff --git a/.github/scripts/csv_to_lua.lua b/.github/scripts/csv_to_lua.lua index 7393cfc3e5..3df650124b 100644 --- a/.github/scripts/csv_to_lua.lua +++ b/.github/scripts/csv_to_lua.lua @@ -7,6 +7,11 @@ local releases = { output = "ModelPathsClassic.lua", generate = true, }, + wow_classic_titan = { + input = "wow_classic_titan.csv", + output = "ModelPathsWrath.lua", + generate = true, + }, wow_classic = { input = "wow_classic.csv", output = "ModelPathsMists.lua", @@ -22,7 +27,7 @@ local releases = { require("table") if not arg[1] or not releases[arg[1]] then - print(arg[0], "") + print(arg[0], "") return end diff --git a/.github/scripts/update-atlas-files.sh b/.github/scripts/update-atlas-files.sh index a6c271a066..2fce5959a4 100755 --- a/.github/scripts/update-atlas-files.sh +++ b/.github/scripts/update-atlas-files.sh @@ -1,6 +1,6 @@ #!/bin/bash -for version in wow_classic wow_classic_era +for version in wow_classic wow_classic_titan wow_classic_era do wget -O "UiTextureAtlas.csv" "https://wago.tools/db2/UiTextureAtlas/csv?branch=${version}" wget -O "UiTextureAtlasMember.csv" "https://wago.tools/db2/UiTextureAtlasMember/csv?branch=${version}" @@ -10,4 +10,5 @@ do done mv Atlas_Vanilla.lua ../../WeakAuras/ +mv Atlas_Wrath.lua ../../WeakAuras/ mv Atlas_Cata.lua ../../WeakAuras/ diff --git a/.github/scripts/update-model-paths.sh b/.github/scripts/update-model-paths.sh index 351926e490..ed82ad465e 100755 --- a/.github/scripts/update-model-paths.sh +++ b/.github/scripts/update-model-paths.sh @@ -32,7 +32,7 @@ update_model_paths() { download_file "https://wago.tools/api/builds/latest" ".wago_tools.json" -branches=("wow" "wow_classic" "wow_classic_era") +branches=("wow" "wow_classic_titan" "wow_classic" "wow_classic_era") for branch in "${branches[@]}" do diff --git a/WeakAuras/BuffTrigger2.lua b/WeakAuras/BuffTrigger2.lua index c4c02959a6..bfc7b49e31 100644 --- a/WeakAuras/BuffTrigger2.lua +++ b/WeakAuras/BuffTrigger2.lua @@ -2385,7 +2385,7 @@ Buff2Frame:RegisterEvent("UNIT_PET") Buff2Frame:RegisterEvent("RAID_TARGET_UPDATE") Buff2Frame:RegisterEvent("PLAYER_SOFT_ENEMY_CHANGED") Buff2Frame:RegisterEvent("PLAYER_SOFT_FRIEND_CHANGED") -if WeakAuras.IsCataOrMistsOrRetail() then +if WeakAuras.IsWrathOrCataOrMistsOrRetail() then Buff2Frame:RegisterEvent("PLAYER_FOCUS_CHANGED") Buff2Frame:RegisterEvent("ARENA_OPPONENT_UPDATE") Buff2Frame:RegisterEvent("UNIT_ENTERED_VEHICLE") @@ -3181,8 +3181,8 @@ function BuffTrigger.Add(data) local groupTrigger = trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party" local effectiveIgnoreSelf = (groupTrigger or trigger.unit == "nameplate") and trigger.ignoreSelf - local effectiveGroupRole = WeakAuras.IsCataOrMistsOrRetail() and (groupTrigger and trigger.useGroupRole and trigger.group_role) or nil - local effectiveRaidRole = WeakAuras.IsClassicOrCataOrMists() and (groupTrigger and trigger.useRaidRole and trigger.raid_role) or nil + local effectiveGroupRole = WeakAuras.IsWrathOrCataOrMistsOrRetail() and (groupTrigger and trigger.useGroupRole and trigger.group_role) or nil + local effectiveRaidRole = WeakAuras.IsClassicOrWrathOrCataOrMists() and (groupTrigger and trigger.useRaidRole and trigger.raid_role) or nil local effectiveClass = groupTrigger and trigger.useClass and trigger.class local effectiveSpecId = WeakAuras.IsCataOrMistsOrRetail() and (groupTrigger and trigger.useActualSpec and trigger.actualSpec) or nil local effectiveArenaSpec = WeakAuras.IsRetail() and (trigger.unit == "arena" and trigger.useArenaSpec and trigger.arena_spec) or nil diff --git a/WeakAuras/Compatibility.lua b/WeakAuras/Compatibility.lua index c98654c196..b1fae4cc4e 100644 --- a/WeakAuras/Compatibility.lua +++ b/WeakAuras/Compatibility.lua @@ -76,29 +76,49 @@ else end if C_SpecializationInfo and C_SpecializationInfo.GetTalentInfo and not WeakAuras.IsClassicEra() then - -- copy pasta from Interface/AddOns/Blizzard_DeprecatedSpecialization/Deprecated_Specialization_Mists.lua - Private.ExecEnv.GetTalentInfo = function(tabIndex, talentIndex, isInspect, isPet, groupIndex) - -- Note: tabIndex, talentIndex, and isPet are not supported parameters in 5.5.x and onward. - local numColumns = 3 - local talentInfoQuery = {} - talentInfoQuery.tier = math.ceil(talentIndex / numColumns) - talentInfoQuery.column = talentIndex % numColumns - talentInfoQuery.groupIndex = groupIndex - talentInfoQuery.isInspect = isInspect - talentInfoQuery.target = nil - local talentInfo = C_SpecializationInfo.GetTalentInfo(talentInfoQuery) - if not talentInfo then - return nil - end + if WeakAuras.IsWrathClassic() then + -- copy pasta from Interface/AddOns/Blizzard_DeprecatedSpecialization/Deprecated_Specialization_Wrath.lua + Private.ExecEnv.GetTalentInfo = function(tabIndex, talentIndex, isInspect, isPet, groupIndex) + local talentInfoQuery = {} + talentInfoQuery.specializationIndex = tabIndex + talentInfoQuery.talentIndex = talentIndex + talentInfoQuery.isInspect = isInspect + talentInfoQuery.groupIndex = groupIndex + local talentInfo = C_SpecializationInfo.GetTalentInfo(talentInfoQuery) + if not talentInfo then + return nil + end - -- Note: rank, maxRank, meetsPrereq, previewRank, meetsPreviewPrereq, isExceptional, and hasGoldBorder are not supported outputs in 5.5.x and onward. - -- They have default values not reflective of actual system state. - -- selected, available, spellID, isPVPTalentUnlocked, known, and grantedByAura are new supported outputs in 5.5.x and onward. - return talentInfo.name, talentInfo.icon, talentInfo.tier, talentInfo.column, talentInfo.selected and talentInfo.rank or 0, - talentInfo.maxRank, talentInfo.meetsPrereq, talentInfo.previewRank, - talentInfo.meetsPreviewPrereq, talentInfo.isExceptional, talentInfo.hasGoldBorder, - talentInfo.talentID - end + return talentInfo.name, talentInfo.icon, talentInfo.tier, talentInfo.column, talentInfo.rank, + talentInfo.maxRank, talentInfo.meetsPrereq, talentInfo.previewRank, + talentInfo.meetsPreviewPrereq, talentInfo.isExceptional, talentInfo.hasGoldBorder, + talentInfo.talentID + end + else + -- copy pasta from Interface/AddOns/Blizzard_DeprecatedSpecialization/Deprecated_Specialization_Mists.lua + Private.ExecEnv.GetTalentInfo = function(tabIndex, talentIndex, isInspect, isPet, groupIndex) + -- Note: tabIndex, talentIndex, and isPet are not supported parameters in 5.5.x and onward. + local numColumns = 3 + local talentInfoQuery = {} + talentInfoQuery.tier = math.ceil(talentIndex / numColumns) + talentInfoQuery.column = talentIndex % numColumns + talentInfoQuery.groupIndex = groupIndex + talentInfoQuery.isInspect = isInspect + talentInfoQuery.target = nil + local talentInfo = C_SpecializationInfo.GetTalentInfo(talentInfoQuery) + if not talentInfo then + return nil + end + + -- Note: rank, maxRank, meetsPrereq, previewRank, meetsPreviewPrereq, isExceptional, and hasGoldBorder are not supported outputs in 5.5.x and onward. + -- They have default values not reflective of actual system state. + -- selected, available, spellID, isPVPTalentUnlocked, known, and grantedByAura are new supported outputs in 5.5.x and onward. + return talentInfo.name, talentInfo.icon, talentInfo.tier, talentInfo.column, talentInfo.selected and talentInfo.rank or 0, + talentInfo.maxRank, talentInfo.meetsPrereq, talentInfo.previewRank, + talentInfo.meetsPreviewPrereq, talentInfo.isExceptional, talentInfo.hasGoldBorder, + talentInfo.talentID + end + end else Private.ExecEnv.GetTalentInfo = GetTalentInfo end diff --git a/WeakAuras/GenericTrigger.lua b/WeakAuras/GenericTrigger.lua index 45a6ec6565..eebcb58fa5 100644 --- a/WeakAuras/GenericTrigger.lua +++ b/WeakAuras/GenericTrigger.lua @@ -1998,7 +1998,7 @@ end do local mh = GetInventorySlotInfo("MainHandSlot") local oh = GetInventorySlotInfo("SecondaryHandSlot") - local ranged = WeakAuras.IsClassicEra() and GetInventorySlotInfo("RangedSlot") + local ranged = WeakAuras.IsClassicOrWrath() and GetInventorySlotInfo("RangedSlot") local swingTimerFrame; local lastSwingMain, lastSwingOff, lastSwingRange; @@ -2193,7 +2193,7 @@ do end) end if Private.reset_ranged_swing_spells[spell] then - if WeakAuras.IsClassicEra() then + if WeakAuras.IsClassicOrWrath() then swingStart("ranged") else swingStart("main") @@ -2226,7 +2226,7 @@ do swingTimerFrame:RegisterEvent("PLAYER_EQUIPMENT_CHANGED"); swingTimerFrame:RegisterUnitEvent("UNIT_ATTACK_SPEED", "player"); swingTimerFrame:RegisterUnitEvent("UNIT_SPELLCAST_SUCCEEDED", "player"); - if WeakAuras.IsClassicEra() then + if WeakAuras.IsClassicOrWrath() then swingTimerFrame:RegisterUnitEvent("UNIT_SPELLCAST_START", "player") swingTimerFrame:RegisterUnitEvent("UNIT_SPELLCAST_INTERRUPTED", "player") swingTimerFrame:RegisterUnitEvent("UNIT_SPELLCAST_FAILED", "player") @@ -2288,7 +2288,7 @@ do local function CheckGCD() local event; local startTime, duration, _, modRate - if WeakAuras.IsClassicEra() then + if WeakAuras.IsClassicOrWrath() then startTime, duration = GetSpellCooldown(29515); shootStart, shootDuration = GetSpellCooldown(5019) elseif GetSpellCooldown then @@ -2407,7 +2407,7 @@ do if duration > 0 then if (startTime == gcdStart and duration == gcdDuration) - or (WeakAuras.IsClassicEra() and duration == shootDuration and startTime == shootStart) + or (WeakAuras.IsClassicOrWrath() and duration == shootDuration and startTime == shootStart) then -- GCD cooldown, this could mean that the spell reset! if self.expirationTime[id] and self.expirationTime[id] > endTime and self.expirationTime[id] ~= 0 then @@ -2724,7 +2724,7 @@ do useExact = useExact and true or false followoverride = followoverride and true or false - if ignoreRunes and WeakAuras.IsCataOrMistsOrRetail() then + if ignoreRunes and WeakAuras.IsWrathOrCataOrMistsOrRetail() then for i = 1, 6 do WeakAuras.WatchRuneCooldown(i) end @@ -2832,7 +2832,7 @@ do cdReadyFrame:RegisterEvent("SPELLS_CHANGED"); cdReadyFrame:RegisterEvent("PLAYER_ENTERING_WORLD"); cdReadyFrame:RegisterEvent("PLAYER_LEAVING_WORLD") - if WeakAuras.IsCataClassic() then + if WeakAuras.IsWrathOrCata() then cdReadyFrame:RegisterEvent("RUNE_POWER_UPDATE"); cdReadyFrame:RegisterEvent("RUNE_TYPE_UPDATE"); end @@ -3764,7 +3764,7 @@ function WeakAuras.WatchUnitChange(unit) end local roleUpdate - if WeakAuras.IsClassicEra() then + if WeakAuras.IsClassicOrWrath() then function roleUpdate(unit, eventsToSend) -- For classic check both raid role and group role local oldRaidRole = watchUnitChange.unitRaidRole[unit] @@ -4039,7 +4039,7 @@ function Private.ExecEnv.CheckTotemSpellId(spellId, triggerSpellId, followoverri end -- Queueable Spells -if WeakAuras.IsClassicEra() then +if WeakAuras.IsClassicOrWrath() then local queueableSpells local classQueueableSpells = { ["WARRIOR"] = { @@ -4098,7 +4098,7 @@ local GetSpellPowerCost = GetSpellPowerCost or C_Spell and C_Spell.GetSpellPower ---@return number? cost function WeakAuras.GetSpellCost(powerTypeToCheck) local spellID = select(9, WeakAuras.UnitCastingInfo("player")) - if WeakAuras.IsClassicEra() and not spellID then + if WeakAuras.IsClassicOrWrath() and not spellID then spellID = WeakAuras.GetQueuedSpell() end if spellID then @@ -4149,7 +4149,7 @@ do tenchFrame:RegisterEvent("WEAPON_ENCHANT_CHANGED") end tenchFrame:RegisterUnitEvent("UNIT_INVENTORY_CHANGED", "player") - if WeakAuras.IsClassicEra() then + if WeakAuras.IsClassicOrWrath() then tenchFrame:RegisterEvent("PLAYER_EQUIPMENT_CHANGED"); end diff --git a/WeakAuras/Init.lua b/WeakAuras/Init.lua index f192c1c038..7a1d94475e 100644 --- a/WeakAuras/Init.lua +++ b/WeakAuras/Init.lua @@ -429,6 +429,11 @@ end -- save compatibility with old auras WeakAuras.IsClassic = WeakAuras.IsClassicEra +---@return boolean result +function WeakAuras.IsWrathClassic() + return flavor == 3 +end + ---@return boolean result function WeakAuras.IsCataClassic() return flavor == 4 @@ -473,6 +478,51 @@ function WeakAuras.IsCataOrRetail() return WeakAuras.IsCataClassic() or WeakAuras.IsRetail() end +---@return boolean result +function WeakAuras.IsClassicOrWrath() + return WeakAuras.IsClassicEra() or WeakAuras.IsWrathClassic() +end + +---@return boolean result +function WeakAuras.IsWrathOrCata() + return WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() +end + +---@return boolean result +function WeakAuras.IsWrathOrCataOrMists() + return WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() or WeakAuras.IsMists() +end + +---@return boolean result +function WeakAuras.IsWrathOrCataOrMistsOrRetail() + return WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() or WeakAuras.IsMists() or WeakAuras.IsRetail() +end + +---@return boolean result +function WeakAuras.IsClassicOrWrathOrCata() + return WeakAuras.IsClassicEra() or WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() +end + +---@return boolean result +function WeakAuras.IsClassicOrWrathOrCataOrMists() + return WeakAuras.IsClassicEra() or WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() or WeakAuras.IsMists() +end + +---@return boolean result +function WeakAuras.IsWrathOrMistsOrRetail() + return WeakAuras.IsWrathClassic() or WeakAuras.IsMists() or WeakAuras.IsRetail() +end + +---@return boolean result +function WeakAuras.IsWrathOrMists() + return WeakAuras.IsWrathClassic() or WeakAuras.IsMists() +end + +---@return boolean result +function WeakAuras.IsWrathOrRetail() + return WeakAuras.IsWrathClassic() or WeakAuras.IsRetail() +end + ---@return boolean result function WeakAuras.IsTWW() return WeakAuras.BuildInfo >= 110000 @@ -572,7 +622,11 @@ if not libsAreOk then end) end -if WeakAuras.IsMidnight() then +if WeakAuras.IsWrathClassic() then + C_Timer.After(1, function() + WeakAuras.prettyPrint("This version of WeakAuras is provided as is. We are unable to test it ourselves on CN Servers.") + end) +elseif WeakAuras.IsMidnight() then C_Timer.After(1, function() WeakAuras.prettyPrint("WeakAuras does not support Midnight due to Blizzard restricting addons. Read more at https://patreon.com/WeakAuras") end) diff --git a/WeakAuras/Prototypes.lua b/WeakAuras/Prototypes.lua index d8927ea4d2..cace6846c5 100644 --- a/WeakAuras/Prototypes.lua +++ b/WeakAuras/Prototypes.lua @@ -146,7 +146,7 @@ local constants = { guildFilterDesc = L["Supports multiple entries, separated by commas. Escape with \\. Prefix with '-' for negation."] } -if WeakAuras.IsClassicOrCataOrMists() then +if WeakAuras.IsClassicOrWrathOrCataOrMists() then ---@param unit UnitToken ---@return string? role WeakAuras.UnitRaidRole = function(unit) @@ -694,7 +694,7 @@ for classID = 1, 20 do -- GetNumClasses not supported by wow classic end table.sort(WeakAuras.classes_sorted) -if WeakAuras.IsClassicOrCata() then +if WeakAuras.IsClassicOrWrathOrCata() then ---@param index integer ---@param extraOption boolean? ---@return boolean? hasTalent @@ -1263,7 +1263,7 @@ local function valuesForTalentFunction(trigger) -- this should never happen return {} end - elseif WeakAuras.IsCataClassic() then + elseif WeakAuras.IsWrathOrCata() then return Private.talentInfo[single_class] elseif WeakAuras.IsMists() then return Private.talentInfo[single_class] @@ -1387,6 +1387,17 @@ Private.load_prototype = { hidden = not WeakAuras.IsRetail(), events = {"PLAYER_FLAGS_CHANGED"} }, + { + name = "pvpmode", + display = L["PvP Mode Active"], + type = "tristate", + init = WeakAuras.IsWrathClassic() and "arg" or nil, + width = WeakAuras.normalWidth, + optional = true, + enable = WeakAuras.IsWrathClassic(), + hidden = not WeakAuras.IsWrathClassic(), + events = {"PLAYER_FLAGS_CHANGED", "UNIT_FACTION", "ZONE_CHANGED"} + }, { name = "petbattle", display = L["In Pet Battle"], @@ -1394,8 +1405,8 @@ Private.load_prototype = { init = WeakAuras.IsMistsOrRetail() and "arg" or nil, width = WeakAuras.normalWidth, optional = true, - enable = WeakAuras.IsMistsOrRetail(), - hidden = not WeakAuras.IsMistsOrRetail(), + enable = WeakAuras.IsWrathOrMistsOrRetail(), + hidden = not WeakAuras.IsWrathOrMistsOrRetail(), events = {"PET_BATTLE_OPENING_START", "PET_BATTLE_CLOSE"} }, { @@ -1412,11 +1423,11 @@ Private.load_prototype = { name = "vehicleUi", display = L["Has Vehicle UI"], type = "tristate", - init = WeakAuras.IsCataOrMistsOrRetail() and "arg" or nil, + init = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "arg" or nil, width = WeakAuras.normalWidth, optional = true, - enable = WeakAuras.IsCataOrMistsOrRetail(), - hidden = not WeakAuras.IsCataOrMistsOrRetail(), + enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), + hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), events = {"VEHICLE_UPDATE", "UNIT_ENTERED_VEHICLE", "UNIT_EXITED_VEHICLE", "UPDATE_OVERRIDE_ACTIONBAR", "UPDATE_VEHICLE_ACTIONBAR"} }, { @@ -1515,7 +1526,7 @@ Private.load_prototype = { end end end or nil, - events = (WeakAuras.IsClassicOrCataOrMists() and {"CHARACTER_POINTS_CHANGED", "PLAYER_TALENT_UPDATE", "ACTIVE_TALENT_GROUP_CHANGED"}) + events = (WeakAuras.IsClassicOrWrathOrCataOrMists() and {"CHARACTER_POINTS_CHANGED", "PLAYER_TALENT_UPDATE", "ACTIVE_TALENT_GROUP_CHANGED"}) or (WeakAuras.IsRetail() and {"WA_TALENT_UPDATE"}), inverse = function(load) -- Check for multi select! @@ -1527,27 +1538,27 @@ Private.load_prototype = { return Private.talent_extra_option_types end }, - control = WeakAuras.IsCataOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, - multiNoSingle = WeakAuras.IsCataOrMistsOrRetail(), -- no single mode - multiTristate = WeakAuras.IsCataOrMistsOrRetail(), -- values can be true/false/nil - multiAll = WeakAuras.IsCataOrMistsOrRetail(), -- require all tests - orConjunctionGroup = WeakAuras.IsCataOrMistsOrRetail() and "talent", - multiUseControlWhenFalse = WeakAuras.IsCataOrMistsOrRetail(), + control = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, + multiNoSingle = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- no single mode + multiTristate = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- values can be true/false/nil + multiAll = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- require all tests + orConjunctionGroup = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "talent", + multiUseControlWhenFalse = WeakAuras.IsWrathOrCataOrMistsOrRetail(), enable = function(trigger) return WeakAuras.IsClassicEra() - or (WeakAuras.IsCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) + or (WeakAuras.IsWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) or (WeakAuras.IsRetail() and Private.checkForSingleLoadCondition(trigger, "class_and_spec") ~= nil) end, hidden = function(trigger) return not ( WeakAuras.IsClassicEra() - or (WeakAuras.IsCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) + or (WeakAuras.IsWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) or (WeakAuras.IsRetail() and Private.checkForSingleLoadCondition(trigger, "class_and_spec") ~= nil)) end, }, { name = "talent2", - display = WeakAuras.IsCataOrMistsOrRetail() and L["Or Talent"] or L["And Talent"], + display = WeakAuras.IsWrathOrCataOrMistsOrRetail() and L["Or Talent"] or L["And Talent"], type = "multiselect", values = valuesForTalentFunction, test = WeakAuras.IsRetail() and "WeakAuras.CheckTalentId(%d) == (%d == 4)" or "WeakAuras.CheckTalentByIndex(%d, %d)", @@ -1578,7 +1589,7 @@ Private.load_prototype = { end end or nil, events = (WeakAuras.IsClassicEra() and {"CHARACTER_POINTS_CHANGED"}) - or (WeakAuras.IsCataOrMists() and {"CHARACTER_POINTS_CHANGED", "PLAYER_TALENT_UPDATE"}) + or (WeakAuras.IsWrathOrCataOrMists() and {"CHARACTER_POINTS_CHANGED", "PLAYER_TALENT_UPDATE"}) or (WeakAuras.IsRetail() and {"WA_TALENT_UPDATE"}), inverse = function(load) return WeakAuras.IsClassicEra() and (load.talent2_extraOption == 2 or load.talent2_extraOption == 3) @@ -1589,30 +1600,30 @@ Private.load_prototype = { return Private.talent_extra_option_types end, }, - control = WeakAuras.IsCataOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, - multiNoSingle = WeakAuras.IsCataOrMistsOrRetail(), -- no single mode - multiTristate = WeakAuras.IsCataOrMistsOrRetail(), -- values can be true/false/nil - multiAll = WeakAuras.IsCataOrMistsOrRetail(), -- require all tests - orConjunctionGroup = WeakAuras.IsCataOrMistsOrRetail() and "talent", - multiUseControlWhenFalse = WeakAuras.IsCataOrMistsOrRetail(), + control = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, + multiNoSingle = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- no single mode + multiTristate = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- values can be true/false/nil + multiAll = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- require all tests + orConjunctionGroup = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "talent", + multiUseControlWhenFalse = WeakAuras.IsWrathOrCataOrMistsOrRetail(), enable = function(trigger) return (trigger.use_talent ~= nil or trigger.use_talent2 ~= nil) and ( WeakAuras.IsClassicEra() - or (WeakAuras.IsCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) + or (WeakAuras.IsWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) or (WeakAuras.IsRetail() and Private.checkForSingleLoadCondition(trigger, "class_and_spec") ~= nil) ) end, hidden = function(trigger) return not((trigger.use_talent ~= nil or trigger.use_talent2 ~= nil) and ( WeakAuras.IsClassicEra() - or (WeakAuras.IsCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) + or (WeakAuras.IsWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) or (WeakAuras.IsRetail() and Private.checkForSingleLoadCondition(trigger, "class_and_spec") ~= nil)) ) end, }, { name = "talent3", - display = WeakAuras.IsCataOrMistsOrRetail() and L["Or Talent"] or L["And Talent"], + display = WeakAuras.IsWrathOrCataOrMistsOrRetail() and L["Or Talent"] or L["And Talent"], type = "multiselect", values = valuesForTalentFunction, test = WeakAuras.IsRetail() and "WeakAuras.CheckTalentId(%d) == (%d == 4)" or "WeakAuras.CheckTalentByIndex(%d, %d)", @@ -1643,7 +1654,7 @@ Private.load_prototype = { end end or nil, events = (WeakAuras.IsClassicEra() and {"CHARACTER_POINTS_CHANGED"}) - or (WeakAuras.IsCataOrMists() and {"CHARACTER_POINTS_CHANGED", "PLAYER_TALENT_UPDATE"}) + or (WeakAuras.IsWrathOrCataOrMists() and {"CHARACTER_POINTS_CHANGED", "PLAYER_TALENT_UPDATE"}) or (WeakAuras.IsRetail() and {"WA_TALENT_UPDATE"}), inverse = function(load) return WeakAuras.IsClassicEra() and (load.talent3_extraOption == 2 or load.talent3_extraOption == 3) @@ -1654,23 +1665,23 @@ Private.load_prototype = { return Private.talent_extra_option_types end, }, - control = WeakAuras.IsCataOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, - multiNoSingle = WeakAuras.IsCataOrMists(), -- no single mode - multiTristate = WeakAuras.IsCataOrMistsOrRetail(), -- values can be true/false/nil - multiAll = WeakAuras.IsCataOrMistsOrRetail(), -- require all tests - orConjunctionGroup = WeakAuras.IsCataOrMistsOrRetail() and "talent", - multiUseControlWhenFalse = WeakAuras.IsCataOrMistsOrRetail(), + control = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, + multiNoSingle = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- no single mode + multiTristate = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- values can be true/false/nil + multiAll = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- require all tests + orConjunctionGroup = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "talent", + multiUseControlWhenFalse = WeakAuras.IsWrathOrCataOrMistsOrRetail(), enable = function(trigger) return ((trigger.use_talent ~= nil and trigger.use_talent2 ~= nil) or trigger.use_talent3 ~= nil) and ( WeakAuras.IsClassicEra() - or (WeakAuras.IsCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) + or (WeakAuras.IsWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) or (WeakAuras.IsRetail() and Private.checkForSingleLoadCondition(trigger, "class_and_spec") ~= nil) ) end, hidden = function(trigger) return not(((trigger.use_talent ~= nil and trigger.use_talent2 ~= nil) or trigger.use_talent3 ~= nil) and ( WeakAuras.IsClassicEra() - or (WeakAuras.IsCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) + or (WeakAuras.IsWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) or (WeakAuras.IsRetail() and Private.checkForSingleLoadCondition(trigger, "class_and_spec") ~= nil) )) end @@ -1802,7 +1813,7 @@ Private.load_prototype = { display = L["Spell Known"], type = "spell", test = "WeakAuras.IsSpellKnownForLoad(%s, %s)", - events = WeakAuras.IsCataOrMists() and {"SPELLS_CHANGED", "UNIT_PET", "PLAYER_TALENT_UPDATE"} or {"SPELLS_CHANGED", "UNIT_PET"}, + events = WeakAuras.IsWrathOrCataOrMists() and {"SPELLS_CHANGED", "UNIT_PET", "PLAYER_TALENT_UPDATE"} or {"SPELLS_CHANGED", "UNIT_PET"}, showExactOption = true }, { @@ -1810,7 +1821,7 @@ Private.load_prototype = { display = WeakAuras.newFeatureString .. L["|cFFFF0000Not|r Spell Known"], type = "spell", test = "not WeakAuras.IsSpellKnownForLoad(%s, %s)", - events = WeakAuras.IsCataOrMists() and {"SPELLS_CHANGED", "UNIT_PET", "PLAYER_TALENT_UPDATE"} or {"SPELLS_CHANGED", "UNIT_PET"}, + events = WeakAuras.IsWrathOrCataOrMists() and {"SPELLS_CHANGED", "UNIT_PET", "PLAYER_TALENT_UPDATE"} or {"SPELLS_CHANGED", "UNIT_PET"}, showExactOption = true }, { @@ -1903,9 +1914,9 @@ Private.load_prototype = { display = L["Spec Role"], type = "multiselect", values = "role_types", - init = WeakAuras.IsCataOrMistsOrRetail() and "arg" or nil, - enable = WeakAuras.IsCataOrMistsOrRetail(), - hidden = not WeakAuras.IsCataOrMistsOrRetail(), + init = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "arg" or nil, + enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), + hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), events = {"PLAYER_ROLES_ASSIGNED", "PLAYER_TALENT_UPDATE"} }, { @@ -1923,8 +1934,8 @@ Private.load_prototype = { display = L["Raid Role"], type = "multiselect", values = "raid_role_types", - init = WeakAuras.IsClassicOrCataOrMists() and "arg" or nil, - enable = WeakAuras.IsClassicOrCataOrMists(), + init = WeakAuras.IsClassicOrWrathOrCataOrMists() and "arg" or nil, + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), hidden = WeakAuras.IsRetail(), events = {"PLAYER_ROLES_ASSIGNED"} }, @@ -2246,7 +2257,7 @@ local function AddUnitEventForEvents(result, unit, event) end local function AddTargetConditionEvents(result, useFocus) - if WeakAuras.IsCataOrMistsOrRetail() then + if WeakAuras.IsWrathOrCataOrMistsOrRetail() then if useFocus then tinsert(result, "PLAYER_FOCUS_CHANGED") end @@ -2495,8 +2506,8 @@ Private.event_prototypes = { store = true, sorted = true, conditionType = "select", - enable = WeakAuras.IsMistsOrRetail(), - hidden = not WeakAuras.IsMistsOrRetail(), + enable = WeakAuras.IsWrathOrMistsOrRetail(), + hidden = not WeakAuras.IsWrathOrMistsOrRetail(), }, { name = "creatureType", @@ -2505,7 +2516,7 @@ Private.event_prototypes = { store = true, test = "true", hidden = true, - enable = WeakAuras.IsMistsOrRetail(), + enable = WeakAuras.IsWrathOrMistsOrRetail(), }, { name = "creatureFamilyIndex", @@ -2546,7 +2557,7 @@ Private.event_prototypes = { store = true, conditionType = "select", enable = function(trigger) - return WeakAuras.IsClassicOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") + return WeakAuras.IsClassicOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") end }, { @@ -3211,7 +3222,7 @@ Private.event_prototypes = { events = function(trigger) local unit = trigger.unit local result = {} - if WeakAuras.IsClassicEra() then + if WeakAuras.IsClassicOrWrath() then AddUnitEventForEvents(result, unit, "UNIT_HEALTH_FREQUENT") else AddUnitEventForEvents(result, unit, "UNIT_HEALTH") @@ -3549,7 +3560,7 @@ Private.event_prototypes = { store = true, conditionType = "select", enable = function(trigger) - return WeakAuras.IsClassicOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") + return WeakAuras.IsClassicOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") end }, { @@ -3764,7 +3775,7 @@ Private.event_prototypes = { Private.WatchStagger() tinsert(result, "WA_UNIT_STAGGER_CHANGED"); end - if WeakAuras.IsClassicEra() and trigger.use_showCost and trigger.unit == "player" then + if WeakAuras.IsClassicOrWrath() and trigger.use_showCost and trigger.unit == "player" then tinsert(result, "WA_UNIT_QUEUED_SPELL_CHANGED"); end if WeakAuras.IsCataOrMists() and trigger.unit == "player" and trigger.use_powertype and trigger.powertype == 26 then @@ -3777,7 +3788,7 @@ Private.event_prototypes = { return result end, loadFunc = function(trigger) - if WeakAuras.IsClassicEra() and trigger.use_showCost and trigger.unit == "player" then + if WeakAuras.IsClassicOrWrath() and trigger.use_showCost and trigger.unit == "player" then WeakAuras.WatchForQueuedSpell() end local includePets = trigger.use_includePets == true and trigger.includePets or nil @@ -6730,7 +6741,7 @@ Private.event_prototypes = { "PLAYER_SOFT_ENEMY_CHANGED", "PLAYER_SOFT_FRIEND_CHANGED" } - if WeakAuras.IsCataOrMists() then + if WeakAuras.IsWrathOrCataOrMists() then tinsert(events, "RUNE_TYPE_UPDATE") end @@ -6943,7 +6954,7 @@ Private.event_prototypes = { "CHARACTER_POINTS_CHANGED", "SPELLS_CHANGED" } - elseif WeakAuras.IsCataOrMists() then + elseif WeakAuras.IsWrathOrCataOrMists() then events = { "CHARACTER_POINTS_CHANGED", "SPELLS_CHANGED", @@ -7001,7 +7012,7 @@ Private.event_prototypes = { ]]) end for index, value in pairs(trigger.talent.multi) do - if WeakAuras.IsClassicOrCata() then + if WeakAuras.IsClassicOrWrathOrCata() then local tier = index and ceil(index / MAX_NUM_TALENTS) local column = index and ((index - 1) % MAX_NUM_TALENTS + 1) table.insert(ret, ([[ @@ -8638,7 +8649,7 @@ Private.event_prototypes = { ["Death Knight Rune"] = { type = "unit", events = function() - if WeakAuras.IsCataOrMists() then + if WeakAuras.IsWrathOrCataOrMists() then return { events = { "RUNE_POWER_UPDATE", "RUNE_TYPE_UPDATE"} } else return { events = { "RUNE_POWER_UPDATE" } } @@ -8666,7 +8677,7 @@ Private.event_prototypes = { init = function(trigger) trigger.rune = trigger.rune or 0; local ret - if WeakAuras.IsCataOrMists() then + if WeakAuras.IsWrathOrCataOrMists() then ret = [[ local rune = %s; local genericShowOn = %s @@ -8725,7 +8736,7 @@ Private.event_prototypes = { ]]; ret = ret..ret2:format(tonumber(trigger.remaining or 0) or 0); end - if WeakAuras.IsCataOrMists() then + if WeakAuras.IsWrathOrCataOrMists() then return ret:format( trigger.rune, "[[" .. (trigger.genericShowOn or "") .. "]]", @@ -8757,8 +8768,8 @@ Private.event_prototypes = { init = "isDeathRune", store = true, conditionType = "bool", - enable = function(trigger) return WeakAuras.IsCataOrMists() and trigger.use_rune end, - hidden = not WeakAuras.IsCataOrMists() + enable = function(trigger) return WeakAuras.IsWrathOrCataOrMists() and trigger.use_rune end, + hidden = not WeakAuras.IsWrathOrCataOrMists() }, { name = "remaining", @@ -8800,8 +8811,8 @@ Private.event_prototypes = { init = "numBloodRunes", store = true, conditionType = "number", - enable = function(trigger) return WeakAuras.IsCataOrMists() and not trigger.use_rune end, - hidden = not WeakAuras.IsCataOrMists() + enable = function(trigger) return WeakAuras.IsWrathOrCataOrMists() and not trigger.use_rune end, + hidden = not WeakAuras.IsWrathOrCataOrMists() }, { name = "frostRunes", @@ -8810,8 +8821,8 @@ Private.event_prototypes = { init = "numFrostRunes", store = true, conditionType = "number", - enable = function(trigger) return WeakAuras.IsCataOrMists() and not trigger.use_rune end, - hidden = not WeakAuras.IsCataOrMists() + enable = function(trigger) return WeakAuras.IsWrathOrCataOrMists() and not trigger.use_rune end, + hidden = not WeakAuras.IsWrathOrCataOrMists() }, { name = "unholyRunes", @@ -8820,16 +8831,16 @@ Private.event_prototypes = { init = "numUnholyRunes", store = true, conditionType = "number", - enable = function(trigger) return WeakAuras.IsCataOrMists() and not trigger.use_rune end, - hidden = not WeakAuras.IsCataOrMists() + enable = function(trigger) return WeakAuras.IsWrathOrCataOrMists() and not trigger.use_rune end, + hidden = not WeakAuras.IsWrathOrCataOrMists() }, { name = "includeDeathRunes", display = L["Include Death Runes"], type = "toggle", test = "true", - enable = function(trigger) return WeakAuras.IsCataOrMists() and trigger.use_bloodRunes or trigger.use_unholyRunes or trigger.use_frostRunes end, - hidden = not WeakAuras.IsCataOrMists() + enable = function(trigger) return WeakAuras.IsWrathOrCataOrMists() and trigger.use_bloodRunes or trigger.use_unholyRunes or trigger.use_frostRunes end, + hidden = not WeakAuras.IsWrathOrCataOrMists() }, }, durationFunc = function(trigger) @@ -8856,13 +8867,13 @@ Private.event_prototypes = { return numRunes; end, nameFunc = function(trigger) - if WeakAuras.IsCataOrMists() then + if WeakAuras.IsWrathOrCataOrMists() then local runeNames = { L["Blood"], L["Frost"], L["Unholy"], L["Death"] } return runeNames[GetRuneType(trigger.rune)]; end end, iconFunc = function(trigger) - if WeakAuras.IsCataOrMists() then + if WeakAuras.IsWrathOrCataOrMists() then if trigger.rune then local runeIcons = { "Interface\\PlayerFrame\\UI-PlayerFrame-Deathknight-Blood", @@ -10386,7 +10397,7 @@ Private.event_prototypes = { type = "number", init = "UnitStat('player', LE_UNIT_STAT_STRENGTH)", store = true, - enable = WeakAuras.IsClassicOrCataOrMists(), + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -10400,7 +10411,7 @@ Private.event_prototypes = { type = "number", init = "UnitStat('player', LE_UNIT_STAT_AGILITY)", store = true, - enable = WeakAuras.IsClassicOrCataOrMists(), + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -10414,7 +10425,7 @@ Private.event_prototypes = { type = "number", init = "UnitStat('player', LE_UNIT_STAT_INTELLECT)", store = true, - enable = WeakAuras.IsClassicOrCataOrMists(), + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -10428,7 +10439,7 @@ Private.event_prototypes = { type = "number", init = "UnitStat('player', 5)", store = true, - enable = WeakAuras.IsClassicOrCataOrMists(), + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -10459,9 +10470,9 @@ Private.event_prototypes = { type = "number", init = "max(GetCombatRating(CR_CRIT_MELEE), GetCombatRating(CR_CRIT_RANGED), GetCombatRating(CR_CRIT_SPELL))", store = true, - enable = WeakAuras.IsCataOrMistsOrRetail(), + enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), conditionType = "number", - hidden = not WeakAuras.IsCataOrMistsOrRetail(), + hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), multiEntry = { operator = "and", limit = 2 @@ -10486,9 +10497,9 @@ Private.event_prototypes = { type = "number", init = "max(GetCombatRating(CR_HIT_MELEE), GetCombatRating(CR_HIT_RANGED), GetCombatRating(CR_HIT_SPELL))", store = true, - enable = WeakAuras.IsCataOrMists(), + enable = WeakAuras.IsWrathOrCataOrMists(), conditionType = "number", - hidden = not WeakAuras.IsCataOrMists(), + hidden = not WeakAuras.IsWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -10501,8 +10512,8 @@ Private.event_prototypes = { init = "WeakAuras.GetHitChance()", store = true, conditionType = "number", - enable = WeakAuras.IsCataOrMists(), - hidden = not WeakAuras.IsCataOrMists(), + enable = WeakAuras.IsWrathOrCataOrMists(), + hidden = not WeakAuras.IsWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -10515,9 +10526,9 @@ Private.event_prototypes = { type = "number", init = "GetCombatRating(CR_HASTE_SPELL)", store = true, - enable = WeakAuras.IsCataOrMistsOrRetail(), + enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), conditionType = "number", - hidden = not WeakAuras.IsCataOrMistsOrRetail(), + hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), multiEntry = { operator = "and", limit = 2 @@ -10543,8 +10554,8 @@ Private.event_prototypes = { init = "GetMeleeHaste()", store = true, conditionType = "number", - enable = WeakAuras.IsCataOrMists(), - hidden = not WeakAuras.IsCataOrMists(), + enable = WeakAuras.IsWrathOrCataOrMists(), + hidden = not WeakAuras.IsWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -10557,9 +10568,9 @@ Private.event_prototypes = { type = "number", init = "GetCombatRating(CR_EXPERTISE)", store = true, - enable = WeakAuras.IsCataOrMists(), + enable = WeakAuras.IsWrathOrCataOrMists(), conditionType = "number", - hidden = not WeakAuras.IsCataOrMists(), + hidden = not WeakAuras.IsWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -10572,8 +10583,36 @@ Private.event_prototypes = { init = "GetCombatRatingBonus(CR_EXPERTISE)", store = true, conditionType = "number", - enable = WeakAuras.IsCataOrMists(), - hidden = not WeakAuras.IsCataOrMists(), + enable = WeakAuras.IsWrathOrCataOrMists(), + hidden = not WeakAuras.IsWrathOrCataOrMists(), + multiEntry = { + operator = "and", + limit = 2 + }, + }, + { + name = "armorpenrating", + display = L["Armor Peneration Rating"], + type = "number", + init = "GetCombatRating(CR_ARMOR_PENETRATION)", + store = true, + enable = WeakAuras.IsWrathClassic(), + conditionType = "number", + hidden = not WeakAuras.IsWrathClassic(), + multiEntry = { + operator = "and", + limit = 2 + }, + }, + { + name = "armorpenpercent", + display = L["Armor Peneration Percent"], + type = "number", + init = "GetArmorPenetration()", + store = true, + conditionType = "number", + enable = WeakAuras.IsWrathClassic(), + hidden = not WeakAuras.IsWrathClassic(), multiEntry = { operator = "and", limit = 2 @@ -10585,9 +10624,9 @@ Private.event_prototypes = { type = "number", init = "GetSpellPenetration()", store = true, - enable = WeakAuras.IsCataOrMists(), + enable = WeakAuras.IsWrathOrCataOrMists(), conditionType = "number", - hidden = not WeakAuras.IsCataOrMists(), + hidden = not WeakAuras.IsWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -10793,15 +10832,29 @@ Private.event_prototypes = { name = "defensiveStatsHeader", display = L["Defensive Stats"], }, + { + name = "defense", + display = L["Defense"], + type = "number", + init = "UnitDefense('player') + select(2, UnitDefense('player'))", + store = true, + enable = WeakAuras.IsWrathClassic(), + conditionType = "number", + hidden = not WeakAuras.IsWrathClassic(), + multiEntry = { + operator = "and", + limit = 2 + }, + }, { name = "dodgerating", display = L["Dodge Rating"], type = "number", init = "GetCombatRating(CR_DODGE)", store = true, - enable = WeakAuras.IsCataOrMistsOrRetail(), + enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), conditionType = "number", - hidden = not WeakAuras.IsCataOrMistsOrRetail(), + hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), multiEntry = { operator = "and", limit = 2 @@ -10826,9 +10879,9 @@ Private.event_prototypes = { type = "number", init = "GetCombatRating(CR_PARRY)", store = true, - enable = WeakAuras.IsCataOrMistsOrRetail(), + enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), conditionType = "number", - hidden = not WeakAuras.IsCataOrMistsOrRetail(), + hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), multiEntry = { operator = "and", limit = 2 @@ -10935,9 +10988,9 @@ Private.event_prototypes = { type = "number", init = "PaperDollFrame_GetArmorReduction(select(2, UnitArmor('player')), UnitEffectiveLevel and UnitEffectiveLevel('player') or UnitLevel('player'))", store = true, - enable = WeakAuras.IsCataOrMistsOrRetail(), + enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), conditionType = "number", - hidden = not WeakAuras.IsCataOrMistsOrRetail(), + hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), multiEntry = { operator = "and", limit = 2 @@ -10963,11 +11016,12 @@ Private.event_prototypes = { name = "resiliencerating", display = L["Resilience Rating"], type = "number", - init = "GetCombatRating(COMBAT_RATING_RESILIENCE_PLAYER_DAMAGE_TAKEN)", + init = WeakAuras.IsWrathClassic() and "GetCombatRating(CR_RESILIENCE_PLAYER_DAMAGE_TAKEN)" + or "GetCombatRating(COMBAT_RATING_RESILIENCE_PLAYER_DAMAGE_TAKEN)", store = true, - enable = WeakAuras.IsCataOrMists(), + enable = WeakAuras.IsWrathOrCataOrMists(), conditionType = "number", - hidden = not WeakAuras.IsCataOrMists(), + hidden = not WeakAuras.IsWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -10977,11 +11031,12 @@ Private.event_prototypes = { name = "resiliencepercent", display = L["Resilience (%)"], type = "number", - init = "GetCombatRatingBonus(COMBAT_RATING_RESILIENCE_PLAYER_DAMAGE_TAKEN)", + init = WeakAuras.IsWrathClassic() and "GetCombatRatingBonus(CR_RESILIENCE_PLAYER_DAMAGE_TAKEN)" + or "GetCombatRatingBonus(COMBAT_RATING_RESILIENCE_PLAYER_DAMAGE_TAKEN)", store = true, - enable = WeakAuras.IsCataOrMists(), + enable = WeakAuras.IsWrathOrCataOrMists(), conditionType = "number", - hidden = not WeakAuras.IsCataOrMists(), + hidden = not WeakAuras.IsWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -11001,7 +11056,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 1))", store = true, - enable = WeakAuras.IsClassicOrCataOrMists(), + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -11015,7 +11070,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 2))", store = true, - enable = WeakAuras.IsClassicOrCataOrMists(), + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -11029,7 +11084,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 3))", store = true, - enable = WeakAuras.IsClassicOrCataOrMists(), + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -11043,7 +11098,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 4))", store = true, - enable = WeakAuras.IsClassicOrCataOrMists(), + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -11057,7 +11112,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 5))", store = true, - enable = WeakAuras.IsClassicOrCataOrMists(), + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -11071,7 +11126,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 6))", store = true, - enable = WeakAuras.IsClassicOrCataOrMists(), + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -11192,8 +11247,8 @@ Private.event_prototypes = { display = L["PvP Flagged"], type = "tristate", init = "UnitIsPVP('player')", - enable = WeakAuras.IsRetail(), - hidden = not WeakAuras.IsRetail() + enable = WeakAuras.IsWrathOrRetail(), + hidden = not WeakAuras.IsWrathOrRetail() }, { name = "alive", @@ -11203,9 +11258,9 @@ Private.event_prototypes = { }, { name = "vehicle", - display = not WeakAuras.IsCataOrMistsOrRetail() and L["On Taxi"] or L["In Vehicle"], + display = not WeakAuras.IsWrathOrCataOrMistsOrRetail() and L["On Taxi"] or L["In Vehicle"], type = "tristate", - init = not WeakAuras.IsCataOrMistsOrRetail() and "UnitOnTaxi('player')" or "UnitInVehicle('player')", + init = not WeakAuras.IsWrathOrCataOrMistsOrRetail() and "UnitOnTaxi('player')" or "UnitInVehicle('player')", }, { name = "resting", @@ -11281,7 +11336,7 @@ Private.event_prototypes = { ["Spell Known"] = { type = "spell", events = { - ["events"] = WeakAuras.IsCataOrMists() and {"SPELLS_CHANGED","PLAYER_TALENT_UPDATE"} or {"SPELLS_CHANGED"}, + ["events"] = WeakAuras.IsWrathOrCataOrMists() and {"SPELLS_CHANGED","PLAYER_TALENT_UPDATE"} or {"SPELLS_CHANGED"}, ["unit_events"] = { ["player"] = {"UNIT_PET"} } @@ -12303,7 +12358,7 @@ end if WeakAuras.IsCataOrMists() then Private.event_prototypes["Swing Timer"] = nil end -if WeakAuras.IsClassicOrCata() then +if WeakAuras.IsClassicOrWrathOrCata() then if not UnitDetailedThreatSituation then Private.event_prototypes["Threat Situation"] = nil end diff --git a/WeakAuras/Types.lua b/WeakAuras/Types.lua index 0473ba1ba7..1bf70d0173 100644 --- a/WeakAuras/Types.lua +++ b/WeakAuras/Types.lua @@ -220,7 +220,7 @@ if gameLocale == "koKR" or gameLocale == "zhCN" or gameLocale == "zhTW" then end return tostring(value); end -elseif WeakAuras.IsClassicOrCataOrMists() then +elseif WeakAuras.IsClassicOrWrathOrCataOrMists() then local NUMBER_ABBREVIATION_DATA_FIXED = { -- Work around another bug in NUMBER_ABBREVIATION_DATA, https://github.com/WeakAuras/WeakAuras2/issues/6061 { breakpoint = 10000000, abbreviation = SECOND_NUMBER_CAP_NO_SPACE, significandDivisor = 1000000, fractionDivisor = 1 }, @@ -1370,7 +1370,7 @@ do [6] = true, [7] = true, [8] = true, - [9] = not WeakAuras.IsClassicEra() and true or nil, -- Goblin + [9] = not WeakAuras.IsClassicOrWrath() and true or nil, -- Goblin [10] = true, [11] = true, [22] = true, @@ -1813,7 +1813,7 @@ if WeakAuras.IsRetail() then Private.GetCurrencyIDFromLink = C_CurrencyInfo.GetCurrencyIDFromLink Private.ExpandCurrencyList = C_CurrencyInfo.ExpandCurrencyList Private.GetCurrencyListInfo = C_CurrencyInfo.GetCurrencyListInfo -elseif WeakAuras.IsCataOrMists() then +elseif WeakAuras.IsWrathOrCataOrMists() then Private.GetCurrencyListSize = GetCurrencyListSize ---@type fun(currencyLink: string): number? Private.GetCurrencyIDFromLink = function(currencyLink) @@ -2577,6 +2577,29 @@ if WeakAuras.IsClassicEra() then -- Classic runes[tostring(v)] = nil end end +elseif WeakAuras.IsWrathClassic() then + Private.texture_types["Blizzard Alerts"] = nil + do + local beams = Private.texture_types["Beams"] + local beams_ids = {186193, 186194, 241098, 241099, 369749, 369750} + for _, v in ipairs(beams_ids) do + beams[tostring(v)] = nil + end + end + do + local icons = Private.texture_types["Icons"] + local icons_ids = {165605, 240925, 240961, 240972, 241049} + for _, v in ipairs(icons_ids) do + icons[tostring(v)] = nil + end + end + do + local runes = Private.texture_types["Runes"] + local runes_ids = {165922, 241003, 241004, 241005} + for _, v in ipairs(runes_ids) do + runes[tostring(v)] = nil + end + end elseif WeakAuras.IsCataClassic() then Private.texture_types["Blizzard Alerts"] = nil do @@ -2868,11 +2891,11 @@ Private.swing_types = { ["off"] = SECONDARYHANDSLOT } -if WeakAuras.IsClassicEra() then +if WeakAuras.IsClassicOrWrath() then Private.swing_types["ranged"] = RANGEDSLOT end -if WeakAuras.IsCataOrMists() then +if WeakAuras.IsWrathOrCataOrMists() then ---@type string[] Private.rune_specific_types = { [1] = L["Blood Rune #1"], @@ -3257,7 +3280,7 @@ elseif WeakAuras.IsMists() then end ---@type table -if WeakAuras.IsClassicOrCataOrMists() then +if WeakAuras.IsClassicOrWrathOrCataOrMists() then Private.raid_role_types = { MAINTANK = "|TInterface\\GroupFrame\\UI-Group-maintankIcon:16:16|t "..MAINTANK, MAINASSIST = "|TInterface\\GroupFrame\\UI-Group-mainassistIcon:16:16|t "..MAINASSIST, @@ -3290,7 +3313,7 @@ Private.classification_types = { minus = L["Minus (Small Nameplate)"] } -if WeakAuras.IsMistsOrRetail() then +if WeakAuras.IsWrathOrMistsOrRetail() then ---@type table Private.creature_type_types = {} for _, creatureID in ipairs(C_CreatureInfo.GetCreatureTypeIDs()) do @@ -3299,7 +3322,9 @@ if WeakAuras.IsMistsOrRetail() then Private.creature_type_types[creatureID] = creatureInfo.name end end +end +if WeakAuras.IsMistsOrRetail() then ---@type table Private.creature_family_types = {} for _, familyID in ipairs(C_CreatureInfo.GetCreatureFamilyIDs()) do @@ -3656,7 +3681,7 @@ Private.pet_behavior_types = { assist = PET_MODE_ASSIST } -if WeakAuras.IsClassicEra() then +if WeakAuras.IsClassicOrWrath() then Private.pet_behavior_types.aggressive = PET_MODE_AGGRESSIVE Private.pet_behavior_types.assist = nil end @@ -4359,7 +4384,7 @@ for i = 1, 4 do Private.multiUnitUnits.party["partypet"..i] = true end -if WeakAuras.IsCataOrMistsOrRetail() then +if WeakAuras.IsWrathOrCataOrMistsOrRetail() then for i = 1, 10 do Private.baseUnitId["boss"..i] = true Private.multiUnitUnits.boss["boss"..i] = true @@ -4479,7 +4504,7 @@ skippedWeaponTypes[11] = true -- Bear Claws skippedWeaponTypes[12] = true -- Cat Claws skippedWeaponTypes[14] = true -- Misc skippedWeaponTypes[17] = true -- Spears -if WeakAuras.IsClassicOrCataOrMists() then +if WeakAuras.IsClassicOrWrathOrCataOrMists() then skippedWeaponTypes[9] = true -- Glaives else skippedWeaponTypes[16] = true -- Thrown @@ -4513,7 +4538,6 @@ WeakAuras.StopMotion.animation_types = { progress = L["Progress"] } - if WeakAuras.IsClassicEra() then Private.baseUnitId.focus = nil Private.baseUnitId.vehicle = nil @@ -4548,11 +4572,46 @@ if WeakAuras.IsClassicEra() then end end -if WeakAuras.IsCataClassic() then - Private.item_slot_types[18] = RELICSLOT +if WeakAuras.IsWrathOrCata() then for slot = 20, 28 do Private.item_slot_types[slot] = nil end Private.talent_extra_option_types[0] = nil Private.talent_extra_option_types[2] = nil + + if WeakAuras.IsWrathClassic() then + Private.item_slot_types[0] = AMMOSLOT + Private.item_slot_types[18] = RANGEDSLOT + + local reset_swing_spell_list = { + 1464, 8820, 11604, 11605, 25241, 25242, -- Slam + 78, 284, 285, 1608, 11564, 11565, 11566, 11567, 25286, 29707, 30324, -- Heroic Strike + 845, 7369, 11608, 11609, 20569, 25231, -- Cleave + 2973, 14260, 14261, 14262, 14263, 14264, 14265, 14266, 27014, -- Raptor Strike + 6807, 6808, 6809, 8972, 9745, 9880, 9881, 26996, -- Maul + 20549, -- War Stomp + 2764, 3018, -- Shoots, + 19434, 20900, 20901, 20902, 20903, 20904, 27065, -- Aimed Shot + 20066, -- Repentance + 11350, -- Fire Shield (Oil of Immolation) + 50986, -- Sulfuron Slammer + 439, 440, 441, 2024, 4042, 17534, 28495, -- Minor/Lesser/Greater/Superior/Major/Super Healing Potion + 41619, 41620, -- Cenarion Healing Salve/Bottled Nethergon Vapor + 5384, -- Feign Death + } + for _, spellid in ipairs(reset_swing_spell_list) do + Private.reset_swing_spells[spellid] = true + end + + local reset_ranged_swing_spell_list = { + 2764, 3018, -- Shoots + 19434, 20900, 20901, 20902, 20903, 20904, 27065 -- Aimed Shot + } + + for _, spellid in ipairs(reset_ranged_swing_spell_list) do + Private.reset_ranged_swing_spells[spellid] = true + end + else -- Cata + Private.item_slot_types[18] = RELICSLOT + end end diff --git a/WeakAuras/Types_Wrath.lua b/WeakAuras/Types_Wrath.lua new file mode 100644 index 0000000000..b972192124 --- /dev/null +++ b/WeakAuras/Types_Wrath.lua @@ -0,0 +1,5447 @@ +if not WeakAuras.IsLibsOK() then return end +---@type string +local AddonName = ... +---@class Private +local Private = select(2, ...) + +---@class WeakAuras +local WeakAuras = WeakAuras; +local L = WeakAuras.L; + +local encounter_list = "" +function Private.InitializeEncounterAndZoneLists() + if encounter_list ~= "" then + return + end + local raids = { + { + L["Vault of Archavon"], + { + { L["Archavon the Stone Watcher"], 772 }, + { L["Emalon the Storm Watcher"], 774 }, + { L["Koralon the Flame Watcher"], 776 }, + { L["Toravon the Ice Watcher"], 885 }, + } + }, + { + L["Naxxramas"], + { + -- The Arachnid Quarter + { L["Anub'Rekhan"], 1107 }, + { L["Grand Widow Faerlina"], 1110 }, + { L["Maexxna"], 1116 }, + -- The Plague Quarter + { L["Noth the Plaguebringer"], 1117 }, + { L["Heigan the Unclean"], 1112 }, + { L["Loatheb"], 1115 }, + -- The Military Quarter + { L["Instructor Razuvious"], 1113 }, + { L["Gothik the Harvester"], 1109 }, + { L["The Four Horsemen"], 1121 }, + -- The Construct Quarter + { L["Patchwerk"], 1118 }, + { L["Grobbulus"], 1111 }, + { L["Gluth"], 1108 }, + { L["Thaddius"], 1120 }, + -- Frostwyrm Lair + { L["Sapphiron"], 1119 }, + { L["Kel'Thuzad"], 1114 } + } + }, + { + L["The Obsidian Sanctum"], + { + { L["Tenebron"], 736 }, + { L["Shadron"], 738 }, + { L["Vesperon"], 740 }, + { L["Sartharion"], 742 }, + } + }, + { + L["The Eye of Eternity"], + { + { L["Malygos"], 734 }, + } + }, + { + L["Ulduar"], + { + -- The Siege of Ulduar + { L["Flame Leviathan"], 744 }, + { L["Ignis the Furnace Master"], 745 }, + { L["Razorscale"], 746 }, + { L["XT-002 Deconstructor"], 747 }, + -- The Antechamber of Ulduar + { L["Assembly of Iron"], 748 }, + { L["Kologarn"], 749 }, + { L["Auriaya"], 750 }, + -- The Keepers of Ulduar + { L["Freya"], 753 }, + { L["Hodir"], 751 }, + { L["Mimiron"], 754 }, + { L["Thorim"], 752 }, + -- The Descent into Madness + { L["General Vezax"], 755 }, + { L["Yogg-Saron"], 756 }, + -- Celestial Planetarium + { L["Algalon the Observer"], 757 }, + } + }, + { + L["Trial of the Crusader"], + { + { L["Northrend Beasts"], 629 }, + { L["Lord Jaraxxus"], 633 }, + { L["Faction Champions"], 637 }, + { L["Val'kyr Twins"], 641 }, + { L["Anub'arak"], 645 }, + } + }, + { + L["Onyxia's Lair"], + { + { L["Onyxia"], 1084 }, + } + }, + { + L["Icecrown Citadel"], + { + -- The Lower Spire + { L["Lord Marrowgar"], 845 }, + { L["Lady Deathwhisper"], 846 }, + { L["Gunship Battle"], 847 }, + { L["Deathbringer Saurfang"], 848 }, + -- The Plagueworks + { L["Festergut"], 849 }, + { L["Rotface"], 850 }, + { L["Professor Putricide"], 851 }, + -- The Crimson Hall + { L["Blood Prince Council"], 852 }, + { L["Blood-Queen Lana'thel"], 853 }, + -- The Frostwing Halls + { L["Valithria Dreamwalker"], 854 }, + { L["Sindragosa"], 855 }, + -- The Frozen Throne + { L["The Lich King"], 856 }, + } + }, + { + L["The Ruby Sanctum"], + { + { L["Baltharus the Warborn"], 890 }, + { L["General Zarithrian"], 893 }, + { L["Saviana Ragefire"], 891 }, + { L["Halion"], 887 }, + } + }, + } + for _, raid in ipairs(raids) do + encounter_list = ("%s|cffffd200%s|r\n"):format(encounter_list, raid[1]) + for _, boss in ipairs(raid[2]) do + encounter_list = ("%s%s: %d\n"):format(encounter_list, boss[1], boss[2]) + end + encounter_list = encounter_list .. "\n" + end + + encounter_list = encounter_list:sub(1, -3) .. "\n\n" .. L["Supports multiple entries, separated by commas\n"] +end + +function Private.get_encounters_list() + return encounter_list +end + +function Private.get_zoneId_list() + return "" +end + +Private.talentInfo = { + ["DEATHKNIGHT"] = { + { + 135770, -- [1] + 7, -- [2] + 3, -- [3] + 50371, -- [4] + }, -- [1] + { + 135067, -- [1] + 2, -- [2] + 1, -- [3] + 49393, -- [4] + }, -- [2] + { + 132455, -- [1] + 1, -- [2] + 1, -- [3] + 49483, -- [4] + }, -- [3] + { + 237529, -- [1] + 3, -- [2] + 1, -- [3] + 48982, -- [4] + }, -- [4] + { + 237529, -- [1] + 4, -- [2] + 1, -- [3] + 49489, -- [4] + }, -- [5] + { + 237518, -- [1] + 3, -- [2] + 2, -- [3] + 49480, -- [4] + }, -- [6] + { + 132090, -- [1] + 6, -- [2] + 2, -- [3] + 49504, -- [4] + }, -- [7] + { + 237533, -- [1] + 1, -- [2] + 2, -- [3] + 49491, -- [4] + }, -- [8] + { + 132284, -- [1] + 2, -- [2] + 2, -- [3] + 49509, -- [4] + }, -- [9] + { + 132205, -- [1] + 5, -- [2] + 4, -- [3] + 49005, -- [4] + }, -- [10] + { + 136005, -- [1] + 5, -- [2] + 3, -- [3] + 50029, -- [4] + }, -- [11] + { + 237536, -- [1] + 4, -- [2] + 4, -- [3] + 55136, -- [4] + }, -- [12] + { + 237512, -- [1] + 7, -- [2] + 2, -- [3] + 49016, -- [4] + }, -- [13] + { + 136181, -- [1] + 8, -- [2] + 2, -- [3] + 49530, -- [4] + }, -- [14] + { + 135675, -- [1] + 9, -- [2] + 2, -- [3] + 55050, -- [4] + }, -- [15] + { + 135771, -- [1] + 9, -- [2] + 3, -- [3] + 49534, -- [4] + }, -- [16] + { + 132094, -- [1] + 9, -- [2] + 1, -- [3] + 50150, -- [4] + }, -- [17] + { + 136211, -- [1] + 7, -- [2] + 1, -- [3] + 49543, -- [4] + }, -- [18] + { + 135277, -- [1] + 11, -- [2] + 2, -- [3] + 49028, -- [4] + }, -- [19] + { + 135772, -- [1] + 5, -- [2] + 1, -- [3] + 49395, -- [4] + }, -- [20] + { + 132330, -- [1] + 1, -- [2] + 3, -- [3] + 55226, -- [4] + }, -- [21] + { + 237531, -- [1] + 4, -- [2] + 3, -- [3] + 49497, -- [4] + }, -- [22] + { + 136168, -- [1] + 8, -- [2] + 3, -- [3] + 55233, -- [4] + }, -- [23] + { + 136080, -- [1] + 10, -- [2] + 2, -- [3] + 61158, -- [4] + }, -- [24] + { + 135372, -- [1] + 3, -- [2] + 3, -- [3] + 50034, -- [4] + }, -- [25] + { + 236310, -- [1] + 6, -- [2] + 3, -- [3] + 53138, -- [4] + }, -- [26] + { + 135378, -- [1] + 2, -- [2] + 3, -- [3] + 55108, -- [4] + }, -- [27] + { + 237517, -- [1] + 8, -- [2] + 1, -- [3] + 62908, -- [4] + }, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 135892, -- [1] + 1, -- [2] + 3, -- [3] + 49789, -- [4] + }, -- [41] + { + 136223, -- [1] + 4, -- [2] + 4, -- [3] + 49657, -- [4] + }, -- [42] + { + 136141, -- [1] + 2, -- [2] + 3, -- [3] + 49664, -- [4] + }, -- [43] + { + 237520, -- [1] + 9, -- [2] + 2, -- [3] + 49143, -- [4] + }, -- [44] + { + 132388, -- [1] + 8, -- [2] + 3, -- [3] + 51271, -- [4] + }, -- [45] + { + 136213, -- [1] + 5, -- [2] + 4, -- [3] + 49796, -- [4] + }, -- [46] + { + 135849, -- [1] + 4, -- [2] + 3, -- [3] + 50115, -- [4] + }, -- [47] + { + 135833, -- [1] + 11, -- [2] + 2, -- [3] + 49184, -- [4] + }, -- [48] + { + 132734, -- [1] + 5, -- [2] + 2, -- [3] + 51109, -- [4] + }, -- [49] + { + 135840, -- [1] + 6, -- [2] + 3, -- [3] + 59057, -- [4] + }, -- [50] + { + 135294, -- [1] + 6, -- [2] + 2, -- [3] + 49538, -- [4] + }, -- [51] + { + 135791, -- [1] + 9, -- [2] + 1, -- [3] + 50152, -- [4] + }, -- [52] + { + 136107, -- [1] + 10, -- [2] + 2, -- [3] + 50130, -- [4] + }, -- [53] + { + 135152, -- [1] + 7, -- [2] + 2, -- [3] + 49203, -- [4] + }, -- [54] + { + 135728, -- [1] + 1, -- [2] + 2, -- [3] + 50147, -- [4] + }, -- [55] + { + 132147, -- [1] + 2, -- [2] + 4, -- [3] + 50138, -- [4] + }, -- [56] + { + 135773, -- [1] + 7, -- [2] + 3, -- [3] + 50385, -- [4] + }, -- [57] + { + 136083, -- [1] + 5, -- [2] + 3, -- [3] + 49791, -- [4] + }, -- [58] + { + 237526, -- [1] + 1, -- [2] + 1, -- [3] + 51456, -- [4] + }, -- [59] + { + 135859, -- [1] + 2, -- [2] + 2, -- [3] + 55062, -- [4] + }, -- [60] + { + 132373, -- [1] + 9, -- [2] + 3, -- [3] + 50191, -- [4] + }, -- [61] + { + 252994, -- [1] + 3, -- [2] + 1, -- [3] + 50887, -- [4] + }, -- [62] + { + 135305, -- [1] + 4, -- [2] + 2, -- [3] + 51130, -- [4] + }, -- [63] + { + 135609, -- [1] + 3, -- [2] + 3, -- [3] + 51473, -- [4] + }, -- [64] + { + 135714, -- [1] + 8, -- [2] + 2, -- [3] + 54637, -- [4] + }, -- [65] + { + 136187, -- [1] + 3, -- [2] + 2, -- [3] + 49039, -- [4] + }, -- [66] + { + 252994, -- [1] + 6, -- [2] + 1, -- [3] + 55610, -- [4] + }, -- [67] + { + 135864, -- [1] + 7, -- [2] + 1, -- [3] + 50043, -- [4] + }, -- [68] + { + 132148, -- [1] + 8, -- [2] + 1, -- [3] + 66192, -- [4] + }, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 136126, -- [1] + 1, -- [2] + 2, -- [3] + 49568, -- [4] + }, -- [81] + { + 136144, -- [1] + 2, -- [2] + 2, -- [3] + 49565, -- [4] + }, -- [82] + { + 237524, -- [1] + 2, -- [2] + 4, -- [3] + 49572, -- [4] + }, -- [83] + { + 136066, -- [1] + 8, -- [2] + 2, -- [3] + 49632, -- [4] + }, -- [84] + { + 136207, -- [1] + 2, -- [2] + 1, -- [3] + 49562, -- [4] + }, -- [85] + { + 136119, -- [1] + 6, -- [2] + 4, -- [3] + 52143, -- [4] + }, -- [86] + { + 132099, -- [1] + 3, -- [2] + 3, -- [3] + 49158, -- [4] + }, -- [87] + { + 136132, -- [1] + 5, -- [2] + 1, -- [3] + 49194, -- [4] + }, -- [88] + { + 132182, -- [1] + 11, -- [2] + 2, -- [3] + 49206, -- [4] + }, -- [89] + { + 136195, -- [1] + 6, -- [2] + 3, -- [3] + 56835, -- [4] + }, -- [90] + { + 136127, -- [1] + 9, -- [2] + 1, -- [3] + 49655, -- [4] + }, -- [91] + { + 132109, -- [1] + 4, -- [2] + 3, -- [3] + 49628, -- [4] + }, -- [92] + { + 136196, -- [1] + 5, -- [2] + 2, -- [3] + 49638, -- [4] + }, -- [93] + { + 132728, -- [1] + 8, -- [2] + 3, -- [3] + 49222, -- [4] + }, -- [94] + { + 136182, -- [1] + 3, -- [2] + 1, -- [3] + 55237, -- [4] + }, -- [95] + { + 136120, -- [1] + 6, -- [2] + 2, -- [3] + 49611, -- [4] + }, -- [96] + { + 136194, -- [1] + 5, -- [2] + 3, -- [3] + 49599, -- [4] + }, -- [97] + { + 135775, -- [1] + 7, -- [2] + 3, -- [3] + 50392, -- [4] + }, -- [98] + { + 237532, -- [1] + 2, -- [2] + 3, -- [3] + 49589, -- [4] + }, -- [99] + { + 135564, -- [1] + 10, -- [2] + 2, -- [3] + 50121, -- [4] + }, -- [100] + { + 237534, -- [1] + 4, -- [2] + 2, -- [3] + 51267, -- [4] + }, -- [101] + { + 132095, -- [1] + 9, -- [2] + 2, -- [3] + 51161, -- [4] + }, -- [102] + { + 135695, -- [1] + 3, -- [2] + 2, -- [3] + 51465, -- [4] + }, -- [103] + { + 135774, -- [1] + 1, -- [2] + 1, -- [3] + 51746, -- [4] + }, -- [104] + { + 132152, -- [1] + 7, -- [2] + 4, -- [3] + 63560, -- [4] + }, -- [105] + { + 237530, -- [1] + 9, -- [2] + 3, -- [3] + 55090, -- [4] + }, -- [106] + { + 136056, -- [1] + 1, -- [2] + 3, -- [3] + 55133, -- [4] + }, -- [107] + { + 237510, -- [1] + 7, -- [2] + 2, -- [3] + 51052, -- [4] + }, -- [108] + { + 237511, -- [1] + 4, -- [2] + 4, -- [3] + 55623, -- [4] + }, -- [109] + { + 136199, -- [1] + 6, -- [2] + 1, -- [3] + 55667, -- [4] + }, -- [110] + { + 136224, -- [1] + 7, -- [2] + 1, -- [3] + 66817, -- [4] + }, -- [111] + [121] = { + "DeathKnightBlood", -- [1] + "DeathKnightFrost", -- [2] + "DeathKnightUnholy", -- [3] + }, + }, + ["WARRIOR"] = { + { + 132090, -- [1] + 3, -- [2] + 4, -- [3] + 12867, -- [4] + }, -- [1] + { + 135328, -- [1] + 5, -- [2] + 4, -- [3] + 12815, -- [4] + }, -- [2] + { + 132282, -- [1] + 1, -- [2] + 1, -- [3] + 12664, -- [4] + }, -- [3] + { + 133476, -- [1] + 5, -- [2] + 3, -- [3] + 12704, -- [4] + }, -- [4] + { + 132337, -- [1] + 2, -- [2] + 1, -- [3] + 12697, -- [4] + }, -- [5] + { + 132155, -- [1] + 1, -- [2] + 3, -- [3] + 12658, -- [4] + }, -- [6] + { + 136031, -- [1] + 2, -- [2] + 3, -- [3] + 12677, -- [4] + }, -- [7] + { + 132316, -- [1] + 6, -- [2] + 3, -- [3] + 23695, -- [4] + }, -- [8] + { + 132269, -- [1] + 1, -- [2] + 2, -- [3] + 16466, -- [4] + }, -- [9] + { + 135275, -- [1] + 3, -- [2] + 1, -- [3] + 12963, -- [4] + }, -- [10] + { + 132397, -- [1] + 5, -- [2] + 1, -- [3] + 12785, -- [4] + }, -- [11] + { + 132306, -- [1] + 5, -- [2] + 2, -- [3] + 12328, -- [4] + }, -- [12] + { + 132367, -- [1] + 6, -- [2] + 1, -- [3] + 20505, -- [4] + }, -- [13] + { + 132355, -- [1] + 7, -- [2] + 2, -- [3] + 12294, -- [4] + }, -- [14] + { + 132400, -- [1] + 4, -- [2] + 2, -- [3] + 12712, -- [4] + }, -- [15] + { + 135881, -- [1] + 3, -- [2] + 2, -- [3] + 12296, -- [4] + }, -- [16] + { + 135995, -- [1] + 2, -- [2] + 2, -- [3] + 12960, -- [4] + }, -- [17] + { + 132312, -- [1] + 3, -- [2] + 3, -- [3] + 16494, -- [4] + }, -- [18] + { + 132344, -- [1] + 9, -- [2] + 2, -- [3] + 29623, -- [4] + }, -- [19] + { + 132346, -- [1] + 9, -- [2] + 1, -- [3] + 29724, -- [4] + }, -- [20] + { + 132175, -- [1] + 7, -- [2] + 1, -- [3] + 29838, -- [4] + }, -- [21] + { + 132334, -- [1] + 9, -- [2] + 3, -- [3] + 29859, -- [4] + }, -- [22] + { + 132355, -- [1] + 8, -- [2] + 2, -- [3] + 35449, -- [4] + }, -- [23] + { + 236305, -- [1] + 6, -- [2] + 4, -- [3] + 46855, -- [4] + }, -- [24] + { + 236317, -- [1] + 8, -- [2] + 3, -- [3] + 46860, -- [4] + }, -- [25] + { + 132349, -- [1] + 7, -- [2] + 3, -- [3] + 46866, -- [4] + }, -- [26] + { + 236303, -- [1] + 11, -- [2] + 2, -- [3] + 46924, -- [4] + }, -- [27] + { + 132364, -- [1] + 10, -- [2] + 2, -- [3] + 56614, -- [4] + }, -- [28] + { + 236276, -- [1] + 4, -- [2] + 3, -- [3] + 56638, -- [4] + }, -- [29] + { + 132340, -- [1] + 7, -- [2] + 4, -- [3] + 12330, -- [4] + }, -- [30] + { + 132335, -- [1] + 8, -- [2] + 1, -- [3] + 64976, -- [4] + }, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 136035, -- [1] + 3, -- [2] + 4, -- [3] + 12861, -- [4] + }, -- [41] + { + 136224, -- [1] + 4, -- [2] + 3, -- [3] + 13048, -- [4] + }, -- [42] + { + 132152, -- [1] + 6, -- [2] + 3, -- [3] + 12974, -- [4] + }, -- [43] + { + 132292, -- [1] + 1, -- [2] + 3, -- [3] + 12856, -- [4] + }, -- [44] + { + 136075, -- [1] + 1, -- [2] + 2, -- [3] + 12835, -- [4] + }, -- [45] + { + 136097, -- [1] + 2, -- [2] + 3, -- [3] + 13002, -- [4] + }, -- [46] + { + 136147, -- [1] + 3, -- [2] + 2, -- [3] + 12323, -- [4] + }, -- [47] + { + 132366, -- [1] + 2, -- [2] + 2, -- [3] + 12879, -- [4] + }, -- [48] + { + 136146, -- [1] + 5, -- [2] + 2, -- [3] + 12292, -- [4] + }, -- [49] + { + 132338, -- [1] + 3, -- [2] + 1, -- [3] + 20496, -- [4] + }, -- [50] + { + 136012, -- [1] + 7, -- [2] + 2, -- [3] + 23881, -- [4] + }, -- [51] + { + 136218, -- [1] + 3, -- [2] + 3, -- [3] + 16492, -- [4] + }, -- [52] + { + 136009, -- [1] + 6, -- [2] + 1, -- [3] + 20501, -- [4] + }, -- [53] + { + 135358, -- [1] + 4, -- [2] + 2, -- [3] + 20503, -- [4] + }, -- [54] + { + 132307, -- [1] + 5, -- [2] + 3, -- [3] + 29889, -- [4] + }, -- [55] + { + 132147, -- [1] + 4, -- [2] + 1, -- [3] + 23588, -- [4] + }, -- [56] + { + 132369, -- [1] + 7, -- [2] + 4, -- [3] + 29776, -- [4] + }, -- [57] + { + 132222, -- [1] + 5, -- [2] + 1, -- [3] + 29592, -- [4] + }, -- [58] + { + 132275, -- [1] + 8, -- [2] + 4, -- [3] + 29763, -- [4] + }, -- [59] + { + 132352, -- [1] + 9, -- [2] + 2, -- [3] + 29801, -- [4] + }, -- [60] + { + 132344, -- [1] + 7, -- [2] + 1, -- [3] + 56924, -- [4] + }, -- [61] + { + 236308, -- [1] + 8, -- [2] + 1, -- [3] + 46911, -- [4] + }, -- [62] + { + 236306, -- [1] + 9, -- [2] + 3, -- [3] + 46915, -- [4] + }, -- [63] + { + 236316, -- [1] + 11, -- [2] + 2, -- [3] + 46917, -- [4] + }, -- [64] + { + 236171, -- [1] + 9, -- [2] + 1, -- [3] + 60970, -- [4] + }, -- [65] + { + 236310, -- [1] + 10, -- [2] + 2, -- [3] + 56932, -- [4] + }, -- [66] + { + 135053, -- [1] + 1, -- [2] + 1, -- [3] + 61222, -- [4] + }, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 136056, -- [1] + 2, -- [2] + 3, -- [3] + 12753, -- [4] + }, -- [81] + { + 135892, -- [1] + 3, -- [2] + 4, -- [3] + 12764, -- [4] + }, -- [82] + { + 132326, -- [1] + 1, -- [2] + 3, -- [3] + 12666, -- [4] + }, -- [83] + { + 132277, -- [1] + 1, -- [2] + 1, -- [3] + 12818, -- [4] + }, -- [84] + { + 236309, -- [1] + 2, -- [2] + 2, -- [3] + 50687, -- [4] + }, -- [85] + { + 132363, -- [1] + 4, -- [2] + 3, -- [3] + 12811, -- [4] + }, -- [86] + { + 132353, -- [1] + 3, -- [2] + 2, -- [3] + 12799, -- [4] + }, -- [87] + { + 236318, -- [1] + 7, -- [2] + 2, -- [3] + 50720, -- [4] + }, -- [88] + { + 132357, -- [1] + 5, -- [2] + 3, -- [3] + 12958, -- [4] + }, -- [89] + { + 132362, -- [1] + 5, -- [2] + 1, -- [3] + 12803, -- [4] + }, -- [90] + { + 132343, -- [1] + 4, -- [2] + 2, -- [3] + 12804, -- [4] + }, -- [91] + { + 132325, -- [1] + 5, -- [2] + 2, -- [3] + 12809, -- [4] + }, -- [92] + { + 135871, -- [1] + 3, -- [2] + 1, -- [3] + 12975, -- [4] + }, -- [93] + { + 135321, -- [1] + 6, -- [2] + 3, -- [3] + 16542, -- [4] + }, -- [94] + { + 134952, -- [1] + 1, -- [2] + 2, -- [3] + 12727, -- [4] + }, -- [95] + { + 132341, -- [1] + 7, -- [2] + 1, -- [3] + 29594, -- [4] + }, -- [96] + { + 133123, -- [1] + 8, -- [2] + 2, -- [3] + 29144, -- [4] + }, -- [97] + { + 132360, -- [1] + 3, -- [2] + 3, -- [3] + 29599, -- [4] + }, -- [98] + { + 132345, -- [1] + 7, -- [2] + 3, -- [3] + 29792, -- [4] + }, -- [99] + { + 135291, -- [1] + 9, -- [2] + 2, -- [3] + 20243, -- [4] + }, -- [100] + { + 236311, -- [1] + 8, -- [2] + 3, -- [3] + 46949, -- [4] + }, -- [101] + { + 236315, -- [1] + 10, -- [2] + 2, -- [3] + 46953, -- [4] + }, -- [102] + { + 236312, -- [1] + 11, -- [2] + 2, -- [3] + 46968, -- [4] + }, -- [103] + { + 236307, -- [1] + 9, -- [2] + 3, -- [3] + 47296, -- [4] + }, -- [104] + { + 236319, -- [1] + 9, -- [2] + 1, -- [3] + 57499, -- [4] + }, -- [105] + { + 134976, -- [1] + 10, -- [2] + 3, -- [3] + 58874, -- [4] + }, -- [106] + { + 132361, -- [1] + 4, -- [2] + 1, -- [3] + 59089, -- [4] + }, -- [107] + [121] = { + "WarriorArms", -- [1] + "WarriorFury", -- [2] + "WarriorProtection", -- [3] + }, + }, + ["SHAMAN"] = { + { + 135817, -- [1] + 2, -- [2] + 1, -- [3] + 16161, -- [4] + }, -- [1] + { + 136014, -- [1] + 5, -- [2] + 2, -- [3] + 16041, -- [4] + }, -- [2] + { + 135807, -- [1] + 1, -- [2] + 3, -- [3] + 16108, -- [4] + }, -- [3] + { + 136116, -- [1] + 1, -- [2] + 2, -- [3] + 16112, -- [4] + }, -- [4] + { + 135830, -- [1] + 3, -- [2] + 3, -- [3] + 60188, -- [4] + }, -- [5] + { + 135824, -- [1] + 4, -- [2] + 1, -- [3] + 16544, -- [4] + }, -- [6] + { + 136115, -- [1] + 7, -- [2] + 2, -- [3] + 16166, -- [4] + }, -- [7] + { + 136170, -- [1] + 3, -- [2] + 2, -- [3] + 16164, -- [4] + }, -- [8] + { + 135850, -- [1] + 3, -- [2] + 1, -- [3] + 16116, -- [4] + }, -- [9] + { + 135990, -- [1] + 6, -- [2] + 3, -- [3] + 16582, -- [4] + }, -- [10] + { + 136094, -- [1] + 2, -- [2] + 2, -- [3] + 28998, -- [4] + }, -- [11] + { + 136099, -- [1] + 5, -- [2] + 1, -- [3] + 29000, -- [4] + }, -- [12] + { + 136213, -- [1] + 4, -- [2] + 4, -- [3] + 29065, -- [4] + }, -- [13] + { + 135791, -- [1] + 2, -- [2] + 3, -- [3] + 29180, -- [4] + }, -- [14] + { + 136111, -- [1] + 5, -- [2] + 4, -- [3] + 30666, -- [4] + }, -- [15] + { + 136028, -- [1] + 6, -- [2] + 1, -- [3] + 30674, -- [4] + }, -- [16] + { + 136050, -- [1] + 8, -- [2] + 3, -- [3] + 30679, -- [4] + }, -- [17] + { + 135829, -- [1] + 9, -- [2] + 2, -- [3] + 30706, -- [4] + }, -- [18] + { + 237576, -- [1] + 8, -- [2] + 2, -- [3] + 51470, -- [4] + }, -- [19] + { + 237572, -- [1] + 9, -- [2] + 1, -- [3] + 51479, -- [4] + }, -- [20] + { + 237583, -- [1] + 9, -- [2] + 3, -- [3] + 51482, -- [4] + }, -- [21] + { + 237588, -- [1] + 7, -- [2] + 3, -- [3] + 51486, -- [4] + }, -- [22] + { + 237589, -- [1] + 11, -- [2] + 2, -- [3] + 51490, -- [4] + }, -- [23] + { + 136234, -- [1] + 10, -- [2] + 2, -- [3] + 62101, -- [4] + }, -- [24] + { + 135782, -- [1] + 8, -- [2] + 1, -- [3] + 63372, -- [4] + }, -- [25] + nil, -- [26] + nil, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 136056, -- [1] + 3, -- [2] + 4, -- [3] + 16272, -- [4] + }, -- [41] + { + 132152, -- [1] + 4, -- [2] + 2, -- [3] + 16284, -- [4] + }, -- [42] + { + 136095, -- [1] + 2, -- [2] + 3, -- [3] + 16287, -- [4] + }, -- [43] + { + 136051, -- [1] + 2, -- [2] + 4, -- [3] + 51881, -- [4] + }, -- [44] + { + 136098, -- [1] + 2, -- [2] + 1, -- [3] + 16293, -- [4] + }, -- [45] + { + 136023, -- [1] + 1, -- [2] + 1, -- [3] + 52456, -- [4] + }, -- [46] + { + 135814, -- [1] + 3, -- [2] + 1, -- [3] + 29080, -- [4] + }, -- [47] + { + 132325, -- [1] + 2, -- [2] + 2, -- [3] + 16305, -- [4] + }, -- [48] + { + 136162, -- [1] + 1, -- [2] + 3, -- [3] + 17489, -- [4] + }, -- [49] + { + 135892, -- [1] + 4, -- [2] + 3, -- [3] + 16309, -- [4] + }, -- [50] + { + 132269, -- [1] + 5, -- [2] + 2, -- [3] + 16268, -- [4] + }, -- [51] + { + 136027, -- [1] + 3, -- [2] + 3, -- [3] + 43338, -- [4] + }, -- [52] + { + 132314, -- [1] + 7, -- [2] + 3, -- [3] + 17364, -- [4] + }, -- [53] + { + 132215, -- [1] + 6, -- [2] + 3, -- [3] + 29086, -- [4] + }, -- [54] + { + 136114, -- [1] + 5, -- [2] + 1, -- [3] + 29193, -- [4] + }, -- [55] + { + 136110, -- [1] + 6, -- [2] + 1, -- [3] + 30809, -- [4] + }, -- [56] + { + 132147, -- [1] + 7, -- [2] + 2, -- [3] + 30798, -- [4] + }, -- [57] + { + 136055, -- [1] + 9, -- [2] + 1, -- [3] + 30814, -- [4] + }, -- [58] + { + 132148, -- [1] + 7, -- [2] + 1, -- [3] + 30819, -- [4] + }, -- [59] + { + 136088, -- [1] + 9, -- [2] + 2, -- [3] + 30823, -- [4] + }, -- [60] + { + 237581, -- [1] + 8, -- [2] + 3, -- [3] + 51522, -- [4] + }, -- [61] + { + 237587, -- [1] + 8, -- [2] + 1, -- [3] + 51527, -- [4] + }, -- [62] + { + 136024, -- [1] + 9, -- [2] + 3, -- [3] + 51524, -- [4] + }, -- [63] + { + 237584, -- [1] + 10, -- [2] + 2, -- [3] + 51532, -- [4] + }, -- [64] + { + 237577, -- [1] + 11, -- [2] + 2, -- [3] + 51533, -- [4] + }, -- [65] + { + 136012, -- [1] + 5, -- [2] + 3, -- [3] + 51885, -- [4] + }, -- [66] + { + 136097, -- [1] + 1, -- [2] + 2, -- [3] + 16130, -- [4] + }, -- [67] + { + 236289, -- [1] + 8, -- [2] + 2, -- [3] + 60103, -- [4] + }, -- [68] + { + 135776, -- [1] + 6, -- [2] + 4, -- [3] + 63374, -- [4] + }, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 136109, -- [1] + 3, -- [2] + 4, -- [3] + 16240, -- [4] + }, -- [81] + { + 135845, -- [1] + 3, -- [2] + 3, -- [3] + 55198, -- [4] + }, -- [82] + { + 132315, -- [1] + 3, -- [2] + 1, -- [3] + 16198, -- [4] + }, -- [83] + { + 136052, -- [1] + 1, -- [2] + 2, -- [3] + 16229, -- [4] + }, -- [84] + { + 136043, -- [1] + 3, -- [2] + 2, -- [3] + 16232, -- [4] + }, -- [85] + { + 136053, -- [1] + 4, -- [2] + 2, -- [3] + 16206, -- [4] + }, -- [86] + { + 136080, -- [1] + 2, -- [2] + 1, -- [3] + 16209, -- [4] + }, -- [87] + { + 135861, -- [1] + 7, -- [2] + 2, -- [3] + 16190, -- [4] + }, -- [88] + { + 136076, -- [1] + 5, -- [2] + 3, -- [3] + 16188, -- [4] + }, -- [89] + { + 135865, -- [1] + 6, -- [2] + 3, -- [3] + 16213, -- [4] + }, -- [90] + { + 135859, -- [1] + 2, -- [2] + 3, -- [3] + 16217, -- [4] + }, -- [91] + { + 136107, -- [1] + 4, -- [2] + 3, -- [3] + 16221, -- [4] + }, -- [92] + { + 136057, -- [1] + 1, -- [2] + 3, -- [3] + 16225, -- [4] + }, -- [93] + { + 136041, -- [1] + 2, -- [2] + 2, -- [3] + 29191, -- [4] + }, -- [94] + { + 136044, -- [1] + 5, -- [2] + 1, -- [3] + 29202, -- [4] + }, -- [95] + { + 136035, -- [1] + 5, -- [2] + 4, -- [3] + 30866, -- [4] + }, -- [96] + { + 136059, -- [1] + 8, -- [2] + 3, -- [3] + 30869, -- [4] + }, -- [97] + { + 136042, -- [1] + 8, -- [2] + 2, -- [3] + 30873, -- [4] + }, -- [98] + { + 136089, -- [1] + 9, -- [2] + 2, -- [3] + 974, -- [4] + }, -- [99] + { + 136060, -- [1] + 7, -- [2] + 1, -- [3] + 30886, -- [4] + }, -- [100] + { + 136089, -- [1] + 9, -- [2] + 3, -- [3] + 51561, -- [4] + }, -- [101] + { + 237573, -- [1] + 8, -- [2] + 1, -- [3] + 51555, -- [4] + }, -- [102] + { + 237571, -- [1] + 9, -- [2] + 1, -- [3] + 51558, -- [4] + }, -- [103] + { + 237590, -- [1] + 10, -- [2] + 2, -- [3] + 51566, -- [4] + }, -- [104] + { + 252995, -- [1] + 11, -- [2] + 2, -- [3] + 61295, -- [4] + }, -- [105] + { + 236288, -- [1] + 7, -- [2] + 3, -- [3] + 51886, -- [4] + }, -- [106] + [121] = { + "ShamanElementalCombat", -- [1] + "ShamanEnhancement", -- [2] + "ShamanRestoration", -- [3] + }, + }, + ["MAGE"] = { + { + 135894, -- [1] + 1, -- [2] + 1, -- [3] + 12592, -- [4] + }, -- [1] + { + 136170, -- [1] + 2, -- [2] + 3, -- [3] + 12577, -- [4] + }, -- [2] + { + 135892, -- [1] + 1, -- [2] + 2, -- [3] + 12840, -- [4] + }, -- [3] + { + 136129, -- [1] + 5, -- [2] + 4, -- [3] + 12503, -- [4] + }, -- [4] + { + 136096, -- [1] + 1, -- [2] + 3, -- [3] + 16770, -- [4] + }, -- [5] + { + 136116, -- [1] + 3, -- [2] + 2, -- [3] + 12469, -- [4] + }, -- [6] + { + 136006, -- [1] + 3, -- [2] + 1, -- [3] + 12606, -- [4] + }, -- [7] + { + 136153, -- [1] + 4, -- [2] + 1, -- [3] + 12605, -- [4] + }, -- [8] + { + 135733, -- [1] + 2, -- [2] + 1, -- [3] + 54659, -- [4] + }, -- [9] + { + 136031, -- [1] + 5, -- [2] + 2, -- [3] + 12043, -- [4] + }, -- [10] + { + 136048, -- [1] + 7, -- [2] + 2, -- [3] + 12042, -- [4] + }, -- [11] + { + 135856, -- [1] + 4, -- [2] + 2, -- [3] + 12598, -- [4] + }, -- [12] + { + 136222, -- [1] + 6, -- [2] + 2, -- [3] + 15060, -- [4] + }, -- [13] + { + 136208, -- [1] + 4, -- [2] + 3, -- [3] + 18464, -- [4] + }, -- [14] + { + 136011, -- [1] + 2, -- [2] + 2, -- [3] + 29444, -- [4] + }, -- [15] + { + 135736, -- [1] + 5, -- [2] + 1, -- [3] + 31570, -- [4] + }, -- [16] + { + 135732, -- [1] + 6, -- [2] + 3, -- [3] + 31572, -- [4] + }, -- [17] + { + 135752, -- [1] + 6, -- [2] + 1, -- [3] + 54354, -- [4] + }, -- [18] + { + 136096, -- [1] + 7, -- [2] + 1, -- [3] + 31583, -- [4] + }, -- [19] + { + 135740, -- [1] + 8, -- [2] + 3, -- [3] + 31588, -- [4] + }, -- [20] + { + 136091, -- [1] + 9, -- [2] + 2, -- [3] + 31589, -- [4] + }, -- [21] + { + 135734, -- [1] + 10, -- [2] + 3, -- [3] + 35581, -- [4] + }, -- [22] + { + 236223, -- [1] + 8, -- [2] + 2, -- [3] + 44379, -- [4] + }, -- [23] + { + 236219, -- [1] + 7, -- [2] + 3, -- [3] + 44396, -- [4] + }, -- [24] + { + 236225, -- [1] + 3, -- [2] + 3, -- [3] + 44399, -- [4] + }, -- [25] + { + 236222, -- [1] + 10, -- [2] + 2, -- [3] + 44403, -- [4] + }, -- [26] + { + 236205, -- [1] + 11, -- [2] + 2, -- [3] + 44425, -- [4] + }, -- [27] + { + 236221, -- [1] + 9, -- [2] + 3, -- [3] + 54490, -- [4] + }, -- [28] + { + 135754, -- [1] + 3, -- [2] + 4, -- [3] + 54646, -- [4] + }, -- [29] + { + 236226, -- [1] + 4, -- [2] + 4, -- [3] + 55340, -- [4] + }, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 135805, -- [1] + 3, -- [2] + 4, -- [3] + 12351, -- [4] + }, -- [41] + { + 135806, -- [1] + 4, -- [2] + 2, -- [3] + 13043, -- [4] + }, -- [42] + { + 135827, -- [1] + 4, -- [2] + 1, -- [3] + 12873, -- [4] + }, -- [43] + { + 135812, -- [1] + 1, -- [2] + 3, -- [3] + 12341, -- [4] + }, -- [44] + { + 135807, -- [1] + 1, -- [2] + 1, -- [3] + 11080, -- [4] + }, -- [45] + { + 135815, -- [1] + 3, -- [2] + 1, -- [3] + 12353, -- [4] + }, -- [46] + { + 135808, -- [1] + 3, -- [2] + 3, -- [3] + 11366, -- [4] + }, -- [47] + { + 135821, -- [1] + 3, -- [2] + 2, -- [3] + 12358, -- [4] + }, -- [48] + { + 236228, -- [1] + 2, -- [2] + 3, -- [3] + 12350, -- [4] + }, -- [49] + { + 135903, -- [1] + 5, -- [2] + 3, -- [3] + 11113, -- [4] + }, -- [50] + { + 136115, -- [1] + 5, -- [2] + 2, -- [3] + 11368, -- [4] + }, -- [51] + { + 135818, -- [1] + 2, -- [2] + 1, -- [3] + 12848, -- [4] + }, -- [52] + { + 135817, -- [1] + 6, -- [2] + 3, -- [3] + 12400, -- [4] + }, -- [53] + { + 135824, -- [1] + 7, -- [2] + 2, -- [3] + 11129, -- [4] + }, -- [54] + { + 135813, -- [1] + 1, -- [2] + 2, -- [3] + 54734, -- [4] + }, -- [55] + { + 135820, -- [1] + 4, -- [2] + 4, -- [3] + 29076, -- [4] + }, -- [56] + { + 135823, -- [1] + 5, -- [2] + 1, -- [3] + 31640, -- [4] + }, -- [57] + { + 135788, -- [1] + 6, -- [2] + 1, -- [3] + 31642, -- [4] + }, -- [58] + { + 135822, -- [1] + 7, -- [2] + 3, -- [3] + 31680, -- [4] + }, -- [59] + { + 135789, -- [1] + 7, -- [2] + 1, -- [3] + 34296, -- [4] + }, -- [60] + { + 135812, -- [1] + 8, -- [2] + 3, -- [3] + 31658, -- [4] + }, -- [61] + { + 134153, -- [1] + 9, -- [2] + 2, -- [3] + 31661, -- [4] + }, -- [62] + { + 236215, -- [1] + 8, -- [2] + 1, -- [3] + 64357, -- [4] + }, -- [63] + { + 236216, -- [1] + 9, -- [2] + 1, -- [3] + 44443, -- [4] + }, -- [64] + { + 236218, -- [1] + 9, -- [2] + 3, -- [3] + 44448, -- [4] + }, -- [65] + { + 236207, -- [1] + 10, -- [2] + 2, -- [3] + 44472, -- [4] + }, -- [66] + { + 236220, -- [1] + 11, -- [2] + 2, -- [3] + 44457, -- [4] + }, -- [67] + { + 135829, -- [1] + 2, -- [2] + 2, -- [3] + 54749, -- [4] + }, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 135846, -- [1] + 1, -- [2] + 2, -- [3] + 16766, -- [4] + }, -- [81] + { + 135842, -- [1] + 1, -- [2] + 1, -- [3] + 12497, -- [4] + }, -- [82] + { + 135845, -- [1] + 3, -- [2] + 1, -- [3] + 12953, -- [4] + }, -- [83] + { + 135854, -- [1] + 1, -- [2] + 3, -- [3] + 55094, -- [4] + }, -- [84] + { + 135857, -- [1] + 3, -- [2] + 3, -- [3] + 12488, -- [4] + }, -- [85] + { + 135852, -- [1] + 5, -- [2] + 3, -- [3] + 12490, -- [4] + }, -- [86] + { + 135864, -- [1] + 2, -- [2] + 4, -- [3] + 12571, -- [4] + }, -- [87] + { + 135860, -- [1] + 4, -- [2] + 2, -- [3] + 12519, -- [4] + }, -- [88] + { + 135849, -- [1] + 4, -- [2] + 3, -- [3] + 12983, -- [4] + }, -- [89] + { + 135836, -- [1] + 6, -- [2] + 3, -- [3] + 28593, -- [4] + }, -- [90] + { + 135838, -- [1] + 3, -- [2] + 2, -- [3] + 12472, -- [4] + }, -- [91] + { + 135850, -- [1] + 2, -- [2] + 2, -- [3] + 28332, -- [4] + }, -- [92] + { + 135988, -- [1] + 7, -- [2] + 2, -- [3] + 11426, -- [4] + }, -- [93] + { + 135865, -- [1] + 5, -- [2] + 2, -- [3] + 11958, -- [4] + }, -- [94] + { + 135855, -- [1] + 2, -- [2] + 1, -- [3] + 15047, -- [4] + }, -- [95] + { + 136141, -- [1] + 4, -- [2] + 1, -- [3] + 16758, -- [4] + }, -- [96] + { + 135989, -- [1] + 2, -- [2] + 3, -- [3] + 29440, -- [4] + }, -- [97] + { + 135851, -- [1] + 5, -- [2] + 4, -- [3] + 31669, -- [4] + }, -- [98] + { + 236209, -- [1] + 6, -- [2] + 1, -- [3] + 55092, -- [4] + }, -- [99] + { + 135833, -- [1] + 7, -- [2] + 3, -- [3] + 31678, -- [4] + }, -- [100] + { + 135846, -- [1] + 8, -- [2] + 2, -- [3] + 31683, -- [4] + }, -- [101] + { + 135862, -- [1] + 9, -- [2] + 2, -- [3] + 31687, -- [4] + }, -- [102] + { + 236227, -- [1] + 8, -- [2] + 3, -- [3] + 44545, -- [4] + }, -- [103] + { + 236206, -- [1] + 9, -- [2] + 1, -- [3] + 44549, -- [4] + }, -- [104] + { + 135862, -- [1] + 9, -- [2] + 3, -- [3] + 44561, -- [4] + }, -- [105] + { + 236208, -- [1] + 10, -- [2] + 2, -- [3] + 44571, -- [4] + }, -- [106] + { + 236214, -- [1] + 11, -- [2] + 2, -- [3] + 44572, -- [4] + }, -- [107] + { + 236224, -- [1] + 7, -- [2] + 1, -- [3] + 54787, -- [4] + }, -- [108] + [121] = { + "MageArcane", -- [1] + "MageFire", -- [2] + "MageFrost", -- [3] + }, + }, + ["PRIEST"] = { + { + 136107, -- [1] + 2, -- [2] + 4, -- [3] + 14774, -- [4] + }, -- [1] + { + 135939, -- [1] + 7, -- [2] + 2, -- [3] + 10060, -- [4] + }, -- [2] + { + 132156, -- [1] + 4, -- [2] + 2, -- [3] + 14781, -- [4] + }, -- [3] + { + 135995, -- [1] + 1, -- [2] + 2, -- [3] + 14791, -- [4] + }, -- [4] + { + 135940, -- [1] + 3, -- [2] + 3, -- [3] + 14769, -- [4] + }, -- [5] + { + 135987, -- [1] + 2, -- [2] + 3, -- [3] + 14767, -- [4] + }, -- [6] + { + 135926, -- [1] + 2, -- [2] + 2, -- [3] + 14771, -- [4] + }, -- [7] + { + 136090, -- [1] + 3, -- [2] + 1, -- [3] + 14777, -- [4] + }, -- [8] + { + 135863, -- [1] + 3, -- [2] + 2, -- [3] + 14751, -- [4] + }, -- [9] + { + 136170, -- [1] + 4, -- [2] + 4, -- [3] + 14772, -- [4] + }, -- [10] + { + 135948, -- [1] + 5, -- [2] + 3, -- [3] + 63574, -- [4] + }, -- [11] + { + 136053, -- [1] + 2, -- [2] + 1, -- [3] + 14785, -- [4] + }, -- [12] + { + 136031, -- [1] + 5, -- [2] + 2, -- [3] + 18555, -- [4] + }, -- [13] + { + 237538, -- [1] + 10, -- [2] + 2, -- [3] + 52800, -- [4] + }, -- [14] + { + 135868, -- [1] + 4, -- [2] + 1, -- [3] + 33172, -- [4] + }, -- [15] + { + 136158, -- [1] + 6, -- [2] + 1, -- [3] + 33190, -- [4] + }, -- [16] + { + 135740, -- [1] + 6, -- [2] + 3, -- [3] + 34910, -- [4] + }, -- [17] + { + 135886, -- [1] + 7, -- [2] + 3, -- [3] + 63506, -- [4] + }, -- [18] + { + 135936, -- [1] + 9, -- [2] + 2, -- [3] + 33206, -- [4] + }, -- [19] + { + 135737, -- [1] + 7, -- [2] + 1, -- [3] + 45244, -- [4] + }, -- [20] + { + 237537, -- [1] + 8, -- [2] + 3, -- [3] + 47508, -- [4] + }, -- [21] + { + 237539, -- [1] + 9, -- [2] + 1, -- [3] + 47515, -- [4] + }, -- [22] + { + 237548, -- [1] + 8, -- [2] + 2, -- [3] + 47537, -- [4] + }, -- [23] + { + 237545, -- [1] + 11, -- [2] + 2, -- [3] + 47540, -- [4] + }, -- [24] + { + 135969, -- [1] + 1, -- [2] + 3, -- [3] + 52803, -- [4] + }, -- [25] + { + 237543, -- [1] + 9, -- [2] + 3, -- [3] + 47517, -- [4] + }, -- [26] + { + 135923, -- [1] + 8, -- [2] + 1, -- [3] + 57472, -- [4] + }, -- [27] + { + 135940, -- [1] + 5, -- [2] + 1, -- [3] + 33202, -- [4] + }, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 135928, -- [1] + 3, -- [2] + 4, -- [3] + 15363, -- [4] + }, -- [41] + { + 135967, -- [1] + 1, -- [2] + 3, -- [3] + 15011, -- [4] + }, -- [42] + { + 135977, -- [1] + 5, -- [2] + 3, -- [3] + 15031, -- [4] + }, -- [43] + { + 135973, -- [1] + 4, -- [2] + 3, -- [3] + 15017, -- [4] + }, -- [44] + { + 136057, -- [1] + 6, -- [2] + 3, -- [3] + 15356, -- [4] + }, -- [45] + { + 135953, -- [1] + 1, -- [2] + 2, -- [3] + 17191, -- [4] + }, -- [46] + { + 135916, -- [1] + 4, -- [2] + 2, -- [3] + 15014, -- [4] + }, -- [47] + { + 135918, -- [1] + 1, -- [2] + 1, -- [3] + 15012, -- [4] + }, -- [48] + { + 135976, -- [1] + 2, -- [2] + 2, -- [3] + 27904, -- [4] + }, -- [49] + { + 135943, -- [1] + 5, -- [2] + 1, -- [3] + 15018, -- [4] + }, -- [50] + { + 135954, -- [1] + 3, -- [2] + 1, -- [3] + 19236, -- [4] + }, -- [51] + { + 135971, -- [1] + 2, -- [2] + 3, -- [3] + 18535, -- [4] + }, -- [52] + { + 132864, -- [1] + 5, -- [2] + 2, -- [3] + 20711, -- [4] + }, -- [53] + { + 135949, -- [1] + 4, -- [2] + 1, -- [3] + 27790, -- [4] + }, -- [54] + { + 135877, -- [1] + 3, -- [2] + 2, -- [3] + 27816, -- [4] + }, -- [55] + { + 135980, -- [1] + 7, -- [2] + 2, -- [3] + 724, -- [4] + }, -- [56] + { + 135878, -- [1] + 7, -- [2] + 3, -- [3] + 33146, -- [4] + }, -- [57] + { + 135981, -- [1] + 6, -- [2] + 1, -- [3] + 33154, -- [4] + }, -- [58] + { + 135913, -- [1] + 8, -- [2] + 2, -- [3] + 33162, -- [4] + }, -- [59] + { + 135905, -- [1] + 7, -- [2] + 1, -- [3] + 34860, -- [4] + }, -- [60] + { + 135887, -- [1] + 9, -- [2] + 2, -- [3] + 34861, -- [4] + }, -- [61] + { + 236254, -- [1] + 9, -- [2] + 1, -- [3] + 63543, -- [4] + }, -- [62] + { + 237550, -- [1] + 9, -- [2] + 3, -- [3] + 47560, -- [4] + }, -- [63] + { + 237549, -- [1] + 8, -- [2] + 3, -- [3] + 63737, -- [4] + }, -- [64] + { + 237541, -- [1] + 10, -- [2] + 2, -- [3] + 47567, -- [4] + }, -- [65] + { + 237542, -- [1] + 11, -- [2] + 2, -- [3] + 47788, -- [4] + }, -- [66] + { + 135982, -- [1] + 8, -- [2] + 1, -- [3] + 64129, -- [4] + }, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 136123, -- [1] + 4, -- [2] + 4, -- [3] + 15332, -- [4] + }, -- [81] + { + 136223, -- [1] + 1, -- [2] + 3, -- [3] + 15310, -- [4] + }, -- [82] + { + 136126, -- [1] + 2, -- [2] + 3, -- [3] + 15328, -- [4] + }, -- [83] + { + 136188, -- [1] + 1, -- [2] + 1, -- [3] + 15336, -- [4] + }, -- [84] + { + 136205, -- [1] + 2, -- [2] + 1, -- [3] + 15320, -- [4] + }, -- [85] + { + 136224, -- [1] + 3, -- [2] + 2, -- [3] + 15316, -- [4] + }, -- [86] + { + 136207, -- [1] + 2, -- [2] + 2, -- [3] + 15317, -- [4] + }, -- [87] + { + 135994, -- [1] + 4, -- [2] + 2, -- [3] + 15311, -- [4] + }, -- [88] + { + 136230, -- [1] + 5, -- [2] + 2, -- [3] + 15286, -- [4] + }, -- [89] + { + 136208, -- [1] + 3, -- [2] + 3, -- [3] + 15407, -- [4] + }, -- [90] + { + 136200, -- [1] + 7, -- [2] + 2, -- [3] + 15473, -- [4] + }, -- [91] + { + 136164, -- [1] + 5, -- [2] + 1, -- [3] + 15487, -- [4] + }, -- [92] + { + 136184, -- [1] + 3, -- [2] + 1, -- [3] + 15448, -- [4] + }, -- [93] + { + 136130, -- [1] + 4, -- [2] + 3, -- [3] + 17323, -- [4] + }, -- [94] + { + 136165, -- [1] + 5, -- [2] + 3, -- [3] + 27840, -- [4] + }, -- [95] + { + 136035, -- [1] + 5, -- [2] + 4, -- [3] + 33215, -- [4] + }, -- [96] + { + 136204, -- [1] + 7, -- [2] + 3, -- [3] + 33225, -- [4] + }, -- [97] + { + 135978, -- [1] + 9, -- [2] + 2, -- [3] + 34914, -- [4] + }, -- [98] + { + 237569, -- [1] + 6, -- [2] + 1, -- [3] + 33371, -- [4] + }, -- [99] + { + 136176, -- [1] + 8, -- [2] + 3, -- [3] + 33193, -- [4] + }, -- [100] + { + 136221, -- [1] + 8, -- [2] + 1, -- [3] + 47570, -- [4] + }, -- [101] + { + 237566, -- [1] + 10, -- [2] + 3, -- [3] + 51167, -- [4] + }, -- [102] + { + 237568, -- [1] + 9, -- [2] + 1, -- [3] + 64044, -- [4] + }, -- [103] + { + 237567, -- [1] + 9, -- [2] + 3, -- [3] + 47582, -- [4] + }, -- [104] + { + 237563, -- [1] + 11, -- [2] + 2, -- [3] + 47585, -- [4] + }, -- [105] + { + 136188, -- [1] + 1, -- [2] + 2, -- [3] + 15338, -- [4] + }, -- [106] + { + 252996, -- [1] + 6, -- [2] + 3, -- [3] + 63627, -- [4] + }, -- [107] + [121] = { + "PriestDiscipline", -- [1] + "PriestHoly", -- [2] + "PriestShadow", -- [3] + }, + }, + ["WARLOCK"] = { + { + 136157, -- [1] + 3, -- [2] + 2, -- [3] + 17785, -- [4] + }, -- [1] + { + 136223, -- [1] + 4, -- [2] + 2, -- [3] + 18095, -- [4] + }, -- [2] + { + 136118, -- [1] + 1, -- [2] + 3, -- [3] + 17814, -- [4] + }, -- [3] + { + 136169, -- [1] + 2, -- [2] + 4, -- [3] + 17805, -- [4] + }, -- [4] + { + 136230, -- [1] + 1, -- [2] + 2, -- [3] + 18176, -- [4] + }, -- [5] + { + 136138, -- [1] + 2, -- [2] + 1, -- [3] + 18180, -- [4] + }, -- [6] + { + 136126, -- [1] + 2, -- [2] + 3, -- [3] + 18183, -- [4] + }, -- [7] + { + 136127, -- [1] + 4, -- [2] + 1, -- [3] + 18219, -- [4] + }, -- [8] + { + 136141, -- [1] + 7, -- [2] + 3, -- [3] + 18220, -- [4] + }, -- [9] + { + 136188, -- [1] + 5, -- [2] + 2, -- [3] + 63108, -- [4] + }, -- [10] + { + 136195, -- [1] + 6, -- [2] + 2, -- [3] + 18275, -- [4] + }, -- [11] + { + 136132, -- [1] + 3, -- [2] + 3, -- [3] + 18288, -- [4] + }, -- [12] + { + 136162, -- [1] + 5, -- [2] + 3, -- [3] + 18223, -- [4] + }, -- [13] + { + 136163, -- [1] + 2, -- [2] + 2, -- [3] + 18372, -- [4] + }, -- [14] + { + 136139, -- [1] + 1, -- [2] + 1, -- [3] + 18829, -- [4] + }, -- [15] + { + 136137, -- [1] + 8, -- [2] + 3, -- [3] + 32484, -- [4] + }, -- [16] + { + 136147, -- [1] + 8, -- [2] + 1, -- [3] + 30057, -- [4] + }, -- [17] + { + 136180, -- [1] + 7, -- [2] + 2, -- [3] + 30064, -- [4] + }, -- [18] + { + 136228, -- [1] + 9, -- [2] + 2, -- [3] + 30108, -- [4] + }, -- [19] + { + 136198, -- [1] + 5, -- [2] + 1, -- [3] + 32394, -- [4] + }, -- [20] + { + 136118, -- [1] + 4, -- [2] + 4, -- [3] + 32383, -- [4] + }, -- [21] + { + 136217, -- [1] + 6, -- [2] + 1, -- [3] + 54038, -- [4] + }, -- [22] + { + 237557, -- [1] + 9, -- [2] + 1, -- [3] + 47200, -- [4] + }, -- [23] + { + 236296, -- [1] + 10, -- [2] + 2, -- [3] + 47205, -- [4] + }, -- [24] + { + 236295, -- [1] + 7, -- [2] + 1, -- [3] + 47197, -- [4] + }, -- [25] + { + 236298, -- [1] + 11, -- [2] + 2, -- [3] + 48181, -- [4] + }, -- [26] + { + 136183, -- [1] + 3, -- [2] + 1, -- [3] + 53759, -- [4] + }, -- [27] + { + 136227, -- [1] + 9, -- [2] + 3, -- [3] + 58435, -- [4] + }, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 135230, -- [1] + 1, -- [2] + 1, -- [3] + 18693, -- [4] + }, -- [41] + { + 136218, -- [1] + 1, -- [2] + 2, -- [3] + 18696, -- [4] + }, -- [42] + { + 136172, -- [1] + 1, -- [2] + 3, -- [3] + 18699, -- [4] + }, -- [43] + { + 136168, -- [1] + 2, -- [2] + 1, -- [3] + 18704, -- [4] + }, -- [44] + { + 136221, -- [1] + 2, -- [2] + 2, -- [3] + 18707, -- [4] + }, -- [45] + { + 136082, -- [1] + 3, -- [2] + 3, -- [3] + 18708, -- [4] + }, -- [46] + { + 136164, -- [1] + 4, -- [2] + 3, -- [3] + 18710, -- [4] + }, -- [47] + { + 135932, -- [1] + 2, -- [2] + 3, -- [3] + 18744, -- [4] + }, -- [48] + { + 136220, -- [1] + 3, -- [2] + 1, -- [3] + 18756, -- [4] + }, -- [49] + { + 136203, -- [1] + 6, -- [2] + 2, -- [3] + 23825, -- [4] + }, -- [50] + { + 132386, -- [1] + 5, -- [2] + 3, -- [3] + 18768, -- [4] + }, -- [51] + { + 136206, -- [1] + 4, -- [2] + 2, -- [3] + 18773, -- [4] + }, -- [52] + { + 136165, -- [1] + 7, -- [2] + 3, -- [3] + 35693, -- [4] + }, -- [53] + { + 136171, -- [1] + 5, -- [2] + 1, -- [3] + 30326, -- [4] + }, -- [54] + { + 136160, -- [1] + 3, -- [2] + 2, -- [3] + 19028, -- [4] + }, -- [55] + { + 236301, -- [1] + 6, -- [2] + 3, -- [3] + 47247, -- [4] + }, -- [56] + { + 136185, -- [1] + 3, -- [2] + 4, -- [3] + 30145, -- [4] + }, -- [57] + { + 136216, -- [1] + 9, -- [2] + 2, -- [3] + 30146, -- [4] + }, -- [58] + { + 136150, -- [1] + 8, -- [2] + 2, -- [3] + 30248, -- [4] + }, -- [59] + { + 136149, -- [1] + 7, -- [2] + 1, -- [3] + 30321, -- [4] + }, -- [60] + { + 236292, -- [1] + 7, -- [2] + 2, -- [3] + 47193, -- [4] + }, -- [61] + { + 236299, -- [1] + 9, -- [2] + 1, -- [3] + 54349, -- [4] + }, -- [62] + { + 237564, -- [1] + 1, -- [2] + 4, -- [3] + 47231, -- [4] + }, -- [63] + { + 237561, -- [1] + 9, -- [2] + 3, -- [3] + 63123, -- [4] + }, -- [64] + { + 237562, -- [1] + 10, -- [2] + 2, -- [3] + 47240, -- [4] + }, -- [65] + { + 237558, -- [1] + 11, -- [2] + 2, -- [3] + 59672, -- [4] + }, -- [66] + { + 135808, -- [1] + 8, -- [2] + 3, -- [3] + 63158, -- [4] + }, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 135831, -- [1] + 2, -- [2] + 3, -- [3] + 17780, -- [4] + }, -- [81] + { + 136146, -- [1] + 1, -- [2] + 3, -- [3] + 17792, -- [4] + }, -- [82] + { + 136197, -- [1] + 1, -- [2] + 2, -- [3] + 17803, -- [4] + }, -- [83] + { + 135817, -- [1] + 5, -- [2] + 2, -- [3] + 17834, -- [4] + }, -- [84] + { + 136191, -- [1] + 3, -- [2] + 2, -- [3] + 17877, -- [4] + }, -- [85] + { + 136133, -- [1] + 4, -- [2] + 2, -- [3] + 17918, -- [4] + }, -- [86] + { + 135827, -- [1] + 4, -- [2] + 4, -- [3] + 17930, -- [4] + }, -- [87] + { + 135826, -- [1] + 6, -- [2] + 3, -- [3] + 17958, -- [4] + }, -- [88] + { + 136207, -- [1] + 3, -- [2] + 3, -- [3] + 59741, -- [4] + }, -- [89] + { + 135807, -- [1] + 7, -- [2] + 2, -- [3] + 17962, -- [4] + }, -- [90] + { + 135813, -- [1] + 5, -- [2] + 3, -- [3] + 18130, -- [4] + }, -- [91] + { + 135805, -- [1] + 2, -- [2] + 1, -- [3] + 18120, -- [4] + }, -- [92] + { + 135809, -- [1] + 3, -- [2] + 1, -- [3] + 18127, -- [4] + }, -- [93] + { + 135819, -- [1] + 4, -- [2] + 1, -- [3] + 18136, -- [4] + }, -- [94] + { + 135830, -- [1] + 7, -- [2] + 4, -- [3] + 63245, -- [4] + }, -- [95] + { + 136201, -- [1] + 9, -- [2] + 2, -- [3] + 30283, -- [4] + }, -- [96] + { + 136196, -- [1] + 8, -- [2] + 2, -- [3] + 30292, -- [4] + }, -- [97] + { + 136214, -- [1] + 7, -- [2] + 3, -- [3] + 30296, -- [4] + }, -- [98] + { + 136178, -- [1] + 6, -- [2] + 1, -- [3] + 30302, -- [4] + }, -- [99] + { + 135823, -- [1] + 5, -- [2] + 1, -- [3] + 34939, -- [4] + }, -- [100] + { + 132221, -- [1] + 2, -- [2] + 2, -- [3] + 63351, -- [4] + }, -- [101] + { + 236290, -- [1] + 9, -- [2] + 1, -- [3] + 47260, -- [4] + }, -- [102] + { + 236300, -- [1] + 8, -- [2] + 3, -- [3] + 54118, -- [4] + }, -- [103] + { + 236297, -- [1] + 10, -- [2] + 2, -- [3] + 47270, -- [4] + }, -- [104] + { + 236291, -- [1] + 11, -- [2] + 2, -- [3] + 50796, -- [4] + }, -- [105] + { + 236294, -- [1] + 9, -- [2] + 3, -- [3] + 47223, -- [4] + }, -- [106] + [121] = { + "WarlockCurses", -- [1] + "WarlockSummoning", -- [2] + "WarlockDestruction", -- [3] + }, + }, + ["HUNTER"] = { + { + 132159, -- [1] + 2, -- [2] + 2, -- [3] + 19551, -- [4] + }, -- [1] + { + 136076, -- [1] + 1, -- [2] + 2, -- [3] + 19556, -- [4] + }, -- [2] + { + 132242, -- [1] + 3, -- [2] + 1, -- [3] + 19560, -- [4] + }, -- [3] + { + 132179, -- [1] + 4, -- [2] + 2, -- [3] + 19573, -- [4] + }, -- [4] + { + 132127, -- [1] + 7, -- [2] + 2, -- [3] + 19574, -- [4] + }, -- [5] + { + 132111, -- [1] + 5, -- [2] + 2, -- [3] + 19577, -- [4] + }, -- [6] + { + 132121, -- [1] + 5, -- [2] + 1, -- [3] + 20895, -- [4] + }, -- [7] + { + 136080, -- [1] + 1, -- [2] + 3, -- [3] + 19587, -- [4] + }, -- [8] + { + 136006, -- [1] + 5, -- [2] + 4, -- [3] + 19592, -- [4] + }, -- [9] + { + 134297, -- [1] + 4, -- [2] + 3, -- [3] + 19602, -- [4] + }, -- [10] + { + 134355, -- [1] + 2, -- [2] + 3, -- [3] + 19612, -- [4] + }, -- [11] + { + 132091, -- [1] + 3, -- [2] + 3, -- [3] + 19620, -- [4] + }, -- [12] + { + 134296, -- [1] + 6, -- [2] + 3, -- [3] + 19625, -- [4] + }, -- [13] + { + 132210, -- [1] + 2, -- [2] + 1, -- [3] + 35030, -- [4] + }, -- [14] + { + 132163, -- [1] + 2, -- [2] + 4, -- [3] + 19575, -- [4] + }, -- [15] + { + 132158, -- [1] + 6, -- [2] + 1, -- [3] + 34454, -- [4] + }, -- [16] + { + 132173, -- [1] + 7, -- [2] + 1, -- [3] + 34460, -- [4] + }, -- [17] + { + 132167, -- [1] + 7, -- [2] + 3, -- [3] + 34465, -- [4] + }, -- [18] + { + 132209, -- [1] + 8, -- [2] + 3, -- [3] + 34470, -- [4] + }, -- [19] + { + 132166, -- [1] + 9, -- [2] + 2, -- [3] + 34692, -- [4] + }, -- [20] + { + 236184, -- [1] + 8, -- [2] + 1, -- [3] + 53253, -- [4] + }, -- [21] + { + 236177, -- [1] + 9, -- [2] + 3, -- [3] + 53260, -- [4] + }, -- [22] + { + 236172, -- [1] + 3, -- [2] + 2, -- [3] + 53265, -- [4] + }, -- [23] + { + 236175, -- [1] + 11, -- [2] + 2, -- [3] + 53270, -- [4] + }, -- [24] + { + 236186, -- [1] + 9, -- [2] + 1, -- [3] + 53264, -- [4] + }, -- [25] + { + 236202, -- [1] + 10, -- [2] + 2, -- [3] + 56318, -- [4] + }, -- [26] + nil, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 135860, -- [1] + 1, -- [2] + 1, -- [3] + 19412, -- [4] + }, -- [41] + { + 135865, -- [1] + 4, -- [2] + 3, -- [3] + 19420, -- [4] + }, -- [42] + { + 132212, -- [1] + 2, -- [2] + 2, -- [3] + 19423, -- [4] + }, -- [43] + { + 132312, -- [1] + 1, -- [2] + 3, -- [3] + 19431, -- [4] + }, -- [44] + { + 135130, -- [1] + 3, -- [2] + 3, -- [3] + 19434, -- [4] + }, -- [45] + { + 132218, -- [1] + 3, -- [2] + 2, -- [3] + 19456, -- [4] + }, -- [46] + { + 132330, -- [1] + 5, -- [2] + 3, -- [3] + 24691, -- [4] + }, -- [47] + { + 132204, -- [1] + 4, -- [2] + 2, -- [3] + 19466, -- [4] + }, -- [48] + { + 132271, -- [1] + 2, -- [2] + 3, -- [3] + 19490, -- [4] + }, -- [49] + { + 135753, -- [1] + 5, -- [2] + 1, -- [3] + 35102, -- [4] + }, -- [50] + { + 132206, -- [1] + 5, -- [2] + 2, -- [3] + 23989, -- [4] + }, -- [51] + { + 132329, -- [1] + 7, -- [2] + 2, -- [3] + 19506, -- [4] + }, -- [52] + { + 135615, -- [1] + 6, -- [2] + 4, -- [3] + 19509, -- [4] + }, -- [53] + { + 132168, -- [1] + 6, -- [2] + 1, -- [3] + 34476, -- [4] + }, -- [54] + { + 132217, -- [1] + 2, -- [2] + 1, -- [3] + 34484, -- [4] + }, -- [55] + { + 132177, -- [1] + 8, -- [2] + 2, -- [3] + 34489, -- [4] + }, -- [56] + { + 132323, -- [1] + 9, -- [2] + 2, -- [3] + 34490, -- [4] + }, -- [57] + { + 132174, -- [1] + 3, -- [2] + 1, -- [3] + 34954, -- [4] + }, -- [58] + { + 132205, -- [1] + 3, -- [2] + 4, -- [3] + 34949, -- [4] + }, -- [59] + { + 132330, -- [1] + 7, -- [2] + 3, -- [3] + 35111, -- [4] + }, -- [60] + { + 236198, -- [1] + 7, -- [2] + 1, -- [3] + 53238, -- [4] + }, -- [61] + { + 236201, -- [1] + 8, -- [2] + 3, -- [3] + 53232, -- [4] + }, -- [62] + { + 236204, -- [1] + 9, -- [2] + 1, -- [3] + 53217, -- [4] + }, -- [63] + { + 236182, -- [1] + 9, -- [2] + 3, -- [3] + 53224, -- [4] + }, -- [64] + { + 236173, -- [1] + 10, -- [2] + 2, -- [3] + 53246, -- [4] + }, -- [65] + { + 236176, -- [1] + 11, -- [2] + 2, -- [3] + 53209, -- [4] + }, -- [66] + { + 236179, -- [1] + 1, -- [2] + 2, -- [3] + 53622, -- [4] + }, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 136047, -- [1] + 6, -- [2] + 1, -- [3] + 24297, -- [4] + }, -- [81] + { + 136100, -- [1] + 2, -- [2] + 2, -- [3] + 19388, -- [4] + }, -- [82] + { + 132149, -- [1] + 2, -- [2] + 3, -- [3] + 63458, -- [4] + }, -- [83] + { + 236185, -- [1] + 4, -- [2] + 4, -- [3] + 56344, -- [4] + }, -- [84] + { + 132293, -- [1] + 3, -- [2] + 4, -- [3] + 19287, -- [4] + }, -- [85] + { + 132219, -- [1] + 2, -- [2] + 1, -- [3] + 24283, -- [4] + }, -- [86] + { + 132269, -- [1] + 3, -- [2] + 3, -- [3] + 19298, -- [4] + }, -- [87] + { + 132336, -- [1] + 5, -- [2] + 3, -- [3] + 19306, -- [4] + }, -- [88] + { + 135881, -- [1] + 5, -- [2] + 2, -- [3] + 19373, -- [4] + }, -- [89] + { + 136181, -- [1] + 9, -- [2] + 2, -- [3] + 3674, -- [4] + }, -- [90] + { + 135125, -- [1] + 7, -- [2] + 2, -- [3] + 19386, -- [4] + }, -- [91] + { + 132277, -- [1] + 1, -- [2] + 3, -- [3] + 19160, -- [4] + }, -- [92] + { + 136223, -- [1] + 3, -- [2] + 1, -- [3] + 19259, -- [4] + }, -- [93] + { + 236183, -- [1] + 1, -- [2] + 1, -- [3] + 52788, -- [4] + }, -- [94] + { + 132207, -- [1] + 6, -- [2] + 3, -- [3] + 34493, -- [4] + }, -- [95] + { + 132214, -- [1] + 2, -- [2] + 4, -- [3] + 34496, -- [4] + }, -- [96] + { + 132216, -- [1] + 7, -- [2] + 3, -- [3] + 34499, -- [4] + }, -- [97] + { + 132295, -- [1] + 7, -- [2] + 1, -- [3] + 34503, -- [4] + }, -- [98] + { + 132178, -- [1] + 8, -- [2] + 1, -- [3] + 34839, -- [4] + }, -- [99] + { + 132153, -- [1] + 3, -- [2] + 2, -- [3] + 19503, -- [4] + }, -- [100] + { + 132327, -- [1] + 1, -- [2] + 2, -- [3] + 19500, -- [4] + }, -- [101] + { + 236200, -- [1] + 8, -- [2] + 2, -- [3] + 53297, -- [4] + }, -- [102] + { + 236199, -- [1] + 9, -- [2] + 1, -- [3] + 53299, -- [4] + }, -- [103] + { + 236187, -- [1] + 9, -- [2] + 4, -- [3] + 53304, -- [4] + }, -- [104] + { + 236181, -- [1] + 10, -- [2] + 3, -- [3] + 53292, -- [4] + }, -- [105] + { + 236178, -- [1] + 11, -- [2] + 2, -- [3] + 53301, -- [4] + }, -- [106] + { + 236180, -- [1] + 5, -- [2] + 1, -- [3] + 56341, -- [4] + }, -- [107] + { + 133713, -- [1] + 4, -- [2] + 2, -- [3] + 56337, -- [4] + }, -- [108] + [121] = { + "HunterBeastMastery", -- [1] + "HunterMarksmanship", -- [2] + "HunterSurvival", -- [3] + }, + }, + ["DRUID"] = { + { + 136006, -- [1] + 1, -- [2] + 2, -- [3] + 16818, -- [4] + }, -- [1] + { + 136096, -- [1] + 2, -- [2] + 4, -- [3] + 16822, -- [4] + }, -- [2] + { + 136065, -- [1] + 3, -- [2] + 4, -- [3] + 16820, -- [4] + }, -- [3] + { + 136104, -- [1] + 3, -- [2] + 1, -- [3] + 16840, -- [4] + }, -- [4] + { + 136087, -- [1] + 2, -- [2] + 1, -- [3] + 16847, -- [4] + }, -- [5] + { + 135753, -- [1] + 4, -- [2] + 3, -- [3] + 16924, -- [4] + }, -- [6] + { + 136045, -- [1] + 5, -- [2] + 2, -- [3] + 5570, -- [4] + }, -- [7] + { + 136062, -- [1] + 3, -- [2] + 2, -- [3] + 61346, -- [4] + }, -- [8] + { + 136057, -- [1] + 6, -- [2] + 2, -- [3] + 16899, -- [4] + }, -- [9] + { + 136075, -- [1] + 4, -- [2] + 2, -- [3] + 16913, -- [4] + }, -- [10] + { + 136036, -- [1] + 7, -- [2] + 2, -- [3] + 24858, -- [4] + }, -- [11] + { + 132132, -- [1] + 5, -- [2] + 1, -- [3] + 33591, -- [4] + }, -- [12] + { + 132113, -- [1] + 6, -- [2] + 3, -- [3] + 33596, -- [4] + }, -- [13] + { + 132123, -- [1] + 6, -- [2] + 1, -- [3] + 33956, -- [4] + }, -- [14] + { + 136033, -- [1] + 7, -- [2] + 4, -- [3] + 33602, -- [4] + }, -- [15] + { + 132146, -- [1] + 8, -- [2] + 3, -- [3] + 33607, -- [4] + }, -- [16] + { + 132129, -- [1] + 9, -- [2] + 3, -- [3] + 33831, -- [4] + }, -- [17] + { + 135138, -- [1] + 2, -- [2] + 2, -- [3] + 35364, -- [4] + }, -- [18] + { + 236156, -- [1] + 7, -- [2] + 3, -- [3] + 48396, -- [4] + }, -- [19] + { + 236163, -- [1] + 8, -- [2] + 1, -- [3] + 48393, -- [4] + }, -- [20] + { + 236170, -- [1] + 9, -- [2] + 2, -- [3] + 50516, -- [4] + }, -- [21] + { + 236151, -- [1] + 9, -- [2] + 1, -- [3] + 48525, -- [4] + }, -- [22] + { + 236154, -- [1] + 9, -- [2] + 4, -- [3] + 48514, -- [4] + }, -- [23] + { + 236168, -- [1] + 11, -- [2] + 2, -- [3] + 48505, -- [4] + }, -- [24] + { + 236150, -- [1] + 10, -- [2] + 2, -- [3] + 48511, -- [4] + }, -- [25] + { + 135730, -- [1] + 1, -- [2] + 3, -- [3] + 57814, -- [4] + }, -- [26] + { + 136045, -- [1] + 5, -- [2] + 3, -- [3] + 57851, -- [4] + }, -- [27] + { + 136060, -- [1] + 3, -- [2] + 3, -- [3] + 57865, -- [4] + }, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 134355, -- [1] + 2, -- [2] + 3, -- [3] + 16931, -- [4] + }, -- [41] + { + 132121, -- [1] + 1, -- [2] + 3, -- [3] + 16862, -- [4] + }, -- [42] + { + 132190, -- [1] + 1, -- [2] + 2, -- [3] + 16938, -- [4] + }, -- [43] + { + 132114, -- [1] + 5, -- [2] + 1, -- [3] + 16941, -- [4] + }, -- [44] + { + 134297, -- [1] + 3, -- [2] + 3, -- [3] + 16944, -- [4] + }, -- [45] + { + 132089, -- [1] + 2, -- [2] + 1, -- [3] + 16949, -- [4] + }, -- [46] + { + 132278, -- [1] + 4, -- [2] + 3, -- [3] + 37117, -- [4] + }, -- [47] + { + 136231, -- [1] + 4, -- [2] + 1, -- [3] + 16968, -- [4] + }, -- [48] + { + 132185, -- [1] + 4, -- [2] + 2, -- [3] + 16975, -- [4] + }, -- [49] + { + 132183, -- [1] + 5, -- [2] + 3, -- [3] + 49377, -- [4] + }, -- [50] + { + 132141, -- [1] + 2, -- [2] + 2, -- [3] + 16999, -- [4] + }, -- [51] + { + 136095, -- [1] + 3, -- [2] + 1, -- [3] + 24866, -- [4] + }, -- [52] + { + 135879, -- [1] + 6, -- [2] + 2, -- [3] + 24894, -- [4] + }, -- [53] + { + 136112, -- [1] + 7, -- [2] + 2, -- [3] + 17007, -- [4] + }, -- [54] + { + 236169, -- [1] + 3, -- [2] + 2, -- [3] + 61336, -- [4] + }, -- [55] + { + 132130, -- [1] + 5, -- [2] + 4, -- [3] + 33873, -- [4] + }, -- [56] + { + 132139, -- [1] + 7, -- [2] + 4, -- [3] + 33957, -- [4] + }, -- [57] + { + 132126, -- [1] + 6, -- [2] + 3, -- [3] + 33856, -- [4] + }, -- [58] + { + 132138, -- [1] + 8, -- [2] + 3, -- [3] + 33867, -- [4] + }, -- [59] + { + 132135, -- [1] + 9, -- [2] + 2, -- [3] + 33917, -- [4] + }, -- [60] + { + 136112, -- [1] + 7, -- [2] + 3, -- [3] + 34300, -- [4] + }, -- [61] + { + 236165, -- [1] + 4, -- [2] + 4, -- [3] + 48410, -- [4] + }, -- [62] + { + 236164, -- [1] + 10, -- [2] + 2, -- [3] + 51269, -- [4] + }, -- [63] + { + 236158, -- [1] + 8, -- [2] + 4, -- [3] + 48485, -- [4] + }, -- [64] + { + 132135, -- [1] + 9, -- [2] + 3, -- [3] + 48491, -- [4] + }, -- [65] + { + 236159, -- [1] + 9, -- [2] + 1, -- [3] + 48495, -- [4] + }, -- [66] + { + 236149, -- [1] + 11, -- [2] + 2, -- [3] + 50334, -- [4] + }, -- [67] + { + 132117, -- [1] + 8, -- [2] + 1, -- [3] + 57877, -- [4] + }, -- [68] + { + 132091, -- [1] + 6, -- [2] + 1, -- [3] + 57881, -- [4] + }, -- [69] + { + 132140, -- [1] + 10, -- [2] + 3, -- [3] + 63503, -- [4] + }, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 136078, -- [1] + 1, -- [2] + 1, -- [3] + 17051, -- [4] + }, -- [81] + { + 135881, -- [1] + 1, -- [2] + 3, -- [3] + 17061, -- [4] + }, -- [82] + { + 136042, -- [1] + 1, -- [2] + 2, -- [3] + 17066, -- [4] + }, -- [83] + { + 136041, -- [1] + 2, -- [2] + 1, -- [3] + 17073, -- [4] + }, -- [84] + { + 136085, -- [1] + 6, -- [2] + 3, -- [3] + 17078, -- [4] + }, -- [85] + { + 136116, -- [1] + 2, -- [2] + 3, -- [3] + 16835, -- [4] + }, -- [86] + { + 136017, -- [1] + 3, -- [2] + 2, -- [3] + 16864, -- [4] + }, -- [87] + { + 136074, -- [1] + 5, -- [2] + 2, -- [3] + 24946, -- [4] + }, -- [88] + { + 135863, -- [1] + 3, -- [2] + 1, -- [3] + 17108, -- [4] + }, -- [89] + { + 136081, -- [1] + 4, -- [2] + 3, -- [3] + 17113, -- [4] + }, -- [90] + { + 136076, -- [1] + 5, -- [2] + 1, -- [3] + 17116, -- [4] + }, -- [91] + { + 132150, -- [1] + 2, -- [2] + 2, -- [3] + 17120, -- [4] + }, -- [92] + { + 136107, -- [1] + 5, -- [2] + 4, -- [3] + 17124, -- [4] + }, -- [93] + { + 135900, -- [1] + 4, -- [2] + 2, -- [3] + 24972, -- [4] + }, -- [94] + { + 134914, -- [1] + 7, -- [2] + 2, -- [3] + 18562, -- [4] + }, -- [95] + { + 132125, -- [1] + 6, -- [2] + 1, -- [3] + 33880, -- [4] + }, -- [96] + { + 132124, -- [1] + 8, -- [2] + 2, -- [3] + 33890, -- [4] + }, -- [97] + { + 132137, -- [1] + 7, -- [2] + 3, -- [3] + 33883, -- [4] + }, -- [98] + { + 132145, -- [1] + 9, -- [2] + 2, -- [3] + 65139, -- [4] + }, -- [99] + { + 136037, -- [1] + 7, -- [2] + 1, -- [3] + 34153, -- [4] + }, -- [100] + { + 236161, -- [1] + 3, -- [2] + 3, -- [3] + 48412, -- [4] + }, -- [101] + { + 236160, -- [1] + 10, -- [2] + 3, -- [3] + 51183, -- [4] + }, -- [102] + { + 236153, -- [1] + 11, -- [2] + 2, -- [3] + 48438, -- [4] + }, -- [103] + { + 236155, -- [1] + 8, -- [2] + 3, -- [3] + 48500, -- [4] + }, -- [104] + { + 236166, -- [1] + 9, -- [2] + 1, -- [3] + 48545, -- [4] + }, -- [105] + { + 236157, -- [1] + 9, -- [2] + 3, -- [3] + 48537, -- [4] + }, -- [106] + { + 136097, -- [1] + 10, -- [2] + 1, -- [3] + 63411, -- [4] + }, -- [107] + [121] = { + "DruidBalance", -- [1] + "DruidFeralCombat", -- [2] + "DruidRestoration", -- [3] + }, + }, + ["PALADIN"] = { + { + 135736, -- [1] + 1, -- [2] + 2, -- [3] + 20208, -- [4] + }, -- [1] + { + 135915, -- [1] + 5, -- [2] + 2, -- [3] + 20216, -- [4] + }, -- [2] + { + 135872, -- [1] + 3, -- [2] + 1, -- [3] + 31821, -- [4] + }, -- [3] + { + 135928, -- [1] + 3, -- [2] + 3, -- [3] + 20235, -- [4] + }, -- [4] + { + 135920, -- [1] + 2, -- [2] + 1, -- [3] + 20239, -- [4] + }, -- [5] + { + 135970, -- [1] + 4, -- [2] + 3, -- [3] + 20245, -- [4] + }, -- [6] + { + 136090, -- [1] + 2, -- [2] + 2, -- [3] + 20261, -- [4] + }, -- [7] + { + 135933, -- [1] + 4, -- [2] + 1, -- [3] + 20256, -- [4] + }, -- [8] + { + 135913, -- [1] + 3, -- [2] + 2, -- [3] + 20215, -- [4] + }, -- [9] + { + 132325, -- [1] + 1, -- [2] + 3, -- [3] + 20332, -- [4] + }, -- [10] + { + 135917, -- [1] + 5, -- [2] + 3, -- [3] + 20361, -- [4] + }, -- [11] + { + 135972, -- [1] + 7, -- [2] + 2, -- [3] + 20473, -- [4] + }, -- [12] + { + 135938, -- [1] + 6, -- [2] + 3, -- [3] + 25829, -- [4] + }, -- [13] + { + 135984, -- [1] + 2, -- [2] + 3, -- [3] + 25836, -- [4] + }, -- [14] + { + 135948, -- [1] + 5, -- [2] + 1, -- [3] + 31823, -- [4] + }, -- [15] + { + 135950, -- [1] + 6, -- [2] + 1, -- [3] + 31826, -- [4] + }, -- [16] + { + 135876, -- [1] + 7, -- [2] + 3, -- [3] + 31830, -- [4] + }, -- [17] + { + 135931, -- [1] + 7, -- [2] + 1, -- [3] + 31836, -- [4] + }, -- [18] + { + 135921, -- [1] + 8, -- [2] + 3, -- [3] + 31841, -- [4] + }, -- [19] + { + 135895, -- [1] + 9, -- [2] + 1, -- [3] + 31842, -- [4] + }, -- [20] + { + 236261, -- [1] + 8, -- [2] + 1, -- [3] + 53553, -- [4] + }, -- [21] + { + 236251, -- [1] + 10, -- [2] + 3, -- [3] + 53557, -- [4] + }, -- [22] + { + 236247, -- [1] + 11, -- [2] + 2, -- [3] + 53563, -- [4] + }, -- [23] + { + 236254, -- [1] + 10, -- [2] + 2, -- [3] + 53576, -- [4] + }, -- [24] + { + 236248, -- [1] + 4, -- [2] + 4, -- [3] + 53661, -- [4] + }, -- [25] + { + 236256, -- [1] + 9, -- [2] + 3, -- [3] + 54155, -- [4] + }, -- [26] + nil, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 132110, -- [1] + 8, -- [2] + 1, -- [3] + 20135, -- [4] + }, -- [41] + { + 135893, -- [1] + 4, -- [2] + 3, -- [3] + 20140, -- [4] + }, -- [42] + { + 135892, -- [1] + 3, -- [2] + 3, -- [3] + 20147, -- [4] + }, -- [43] + { + 135964, -- [1] + 2, -- [2] + 2, -- [3] + 20175, -- [4] + }, -- [44] + { + 135882, -- [1] + 5, -- [2] + 3, -- [3] + 20182, -- [4] + }, -- [45] + { + 135321, -- [1] + 6, -- [2] + 3, -- [3] + 20198, -- [4] + }, -- [46] + { + 135880, -- [1] + 7, -- [2] + 2, -- [3] + 20925, -- [4] + }, -- [47] + { + 136051, -- [1] + 5, -- [2] + 2, -- [3] + 20911, -- [4] + }, -- [48] + { + 135883, -- [1] + 1, -- [2] + 2, -- [3] + 63650, -- [4] + }, -- [49] + { + 135962, -- [1] + 3, -- [2] + 2, -- [3] + 20470, -- [4] + }, -- [50] + { + 135963, -- [1] + 4, -- [2] + 2, -- [3] + 20488, -- [4] + }, -- [51] + { + 135994, -- [1] + 2, -- [2] + 3, -- [3] + 20100, -- [4] + }, -- [52] + { + 135978, -- [1] + 2, -- [2] + 1, -- [3] + 53519, -- [4] + }, -- [53] + { + 135896, -- [1] + 6, -- [2] + 1, -- [3] + 31849, -- [4] + }, -- [54] + { + 135870, -- [1] + 7, -- [2] + 3, -- [3] + 31852, -- [4] + }, -- [55] + { + 135986, -- [1] + 8, -- [2] + 3, -- [3] + 31860, -- [4] + }, -- [56] + { + 135874, -- [1] + 9, -- [2] + 2, -- [3] + 31935, -- [4] + }, -- [57] + { + 132154, -- [1] + 1, -- [2] + 3, -- [3] + 20266, -- [4] + }, -- [58] + { + 236252, -- [1] + 9, -- [2] + 3, -- [3] + 53585, -- [4] + }, -- [59] + { + 236267, -- [1] + 9, -- [2] + 1, -- [3] + 53592, -- [4] + }, -- [60] + { + 236253, -- [1] + 11, -- [2] + 2, -- [3] + 53595, -- [4] + }, -- [61] + { + 236259, -- [1] + 10, -- [2] + 3, -- [3] + 53696, -- [4] + }, -- [62] + { + 236264, -- [1] + 10, -- [2] + 2, -- [3] + 53711, -- [4] + }, -- [63] + { + 253400, -- [1] + 3, -- [2] + 1, -- [3] + 64205, -- [4] + }, -- [64] + { + 253400, -- [1] + 4, -- [2] + 1, -- [3] + 53530, -- [4] + }, -- [65] + { + 135958, -- [1] + 7, -- [2] + 1, -- [3] + 33776, -- [4] + }, -- [66] + nil, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 135906, -- [1] + 2, -- [2] + 3, -- [3] + 20045, -- [4] + }, -- [81] + { + 132275, -- [1] + 6, -- [2] + 2, -- [3] + 20057, -- [4] + }, -- [82] + { + 132269, -- [1] + 1, -- [2] + 2, -- [3] + 20064, -- [4] + }, -- [83] + { + 135863, -- [1] + 1, -- [2] + 3, -- [3] + 20105, -- [4] + }, -- [84] + { + 133041, -- [1] + 5, -- [2] + 1, -- [3] + 20113, -- [4] + }, -- [85] + { + 135957, -- [1] + 3, -- [2] + 2, -- [3] + 20121, -- [4] + }, -- [86] + { + 135942, -- [1] + 7, -- [2] + 2, -- [3] + 20066, -- [4] + }, -- [87] + { + 135924, -- [1] + 2, -- [2] + 2, -- [3] + 20337, -- [4] + }, -- [88] + { + 132347, -- [1] + 3, -- [2] + 3, -- [3] + 20375, -- [4] + }, -- [89] + { + 135959, -- [1] + 2, -- [2] + 1, -- [3] + 25957, -- [4] + }, -- [90] + { + 135904, -- [1] + 4, -- [2] + 1, -- [3] + 25988, -- [4] + }, -- [91] + { + 135985, -- [1] + 3, -- [2] + 1, -- [3] + 26016, -- [4] + }, -- [92] + { + 135937, -- [1] + 3, -- [2] + 4, -- [3] + 26023, -- [4] + }, -- [93] + { + 135889, -- [1] + 4, -- [2] + 4, -- [3] + 31868, -- [4] + }, -- [94] + { + 135934, -- [1] + 5, -- [2] + 3, -- [3] + 31869, -- [4] + }, -- [95] + { + 135897, -- [1] + 6, -- [2] + 3, -- [3] + 31872, -- [4] + }, -- [96] + { + 236257, -- [1] + 7, -- [2] + 3, -- [3] + 31878, -- [4] + }, -- [97] + { + 135905, -- [1] + 8, -- [2] + 2, -- [3] + 31881, -- [4] + }, -- [98] + { + 135924, -- [1] + 4, -- [2] + 3, -- [3] + 35397, -- [4] + }, -- [99] + { + 135891, -- [1] + 9, -- [2] + 2, -- [3] + 35395, -- [4] + }, -- [100] + { + 236262, -- [1] + 8, -- [2] + 3, -- [3] + 53376, -- [4] + }, -- [101] + { + 236266, -- [1] + 9, -- [2] + 1, -- [3] + 53648, -- [4] + }, -- [102] + { + 236260, -- [1] + 10, -- [2] + 2, -- [3] + 53382, -- [4] + }, -- [103] + { + 236250, -- [1] + 11, -- [2] + 2, -- [3] + 53385, -- [4] + }, -- [104] + { + 236246, -- [1] + 7, -- [2] + 1, -- [3] + 53488, -- [4] + }, -- [105] + { + 236263, -- [1] + 9, -- [2] + 3, -- [3] + 53503, -- [4] + }, -- [106] + [121] = { + "PaladinHoly", -- [1] + "PaladinProtection", -- [2] + "PaladinCombat", -- [3] + }, + }, + ["ROGUE"] = { + { + 132273, -- [1] + 4, -- [2] + 3, -- [3] + 14117, -- [4] + }, -- [1] + { + 132109, -- [1] + 3, -- [2] + 3, -- [3] + 14137, -- [4] + }, -- [2] + { + 132277, -- [1] + 1, -- [2] + 3, -- [3] + 14142, -- [4] + }, -- [3] + { + 132151, -- [1] + 1, -- [2] + 2, -- [3] + 14148, -- [4] + }, -- [4] + { + 132122, -- [1] + 2, -- [2] + 1, -- [3] + 14161, -- [4] + }, -- [5] + { + 136147, -- [1] + 6, -- [2] + 3, -- [3] + 14159, -- [4] + }, -- [6] + { + 132292, -- [1] + 1, -- [2] + 1, -- [3] + 14164, -- [4] + }, -- [7] + { + 132090, -- [1] + 2, -- [2] + 4, -- [3] + 13866, -- [4] + }, -- [8] + { + 132354, -- [1] + 3, -- [2] + 2, -- [3] + 14169, -- [4] + }, -- [9] + { + 132298, -- [1] + 5, -- [2] + 3, -- [3] + 14176, -- [4] + }, -- [10] + { + 135988, -- [1] + 5, -- [2] + 2, -- [3] + 14177, -- [4] + }, -- [11] + { + 132205, -- [1] + 7, -- [2] + 2, -- [3] + 58426, -- [4] + }, -- [12] + { + 136130, -- [1] + 6, -- [2] + 2, -- [3] + 14195, -- [4] + }, -- [13] + { + 136023, -- [1] + 3, -- [2] + 1, -- [3] + 14983, -- [4] + }, -- [14] + { + 132293, -- [1] + 4, -- [2] + 2, -- [3] + 16515, -- [4] + }, -- [15] + { + 132108, -- [1] + 9, -- [2] + 1, -- [3] + 58410, -- [4] + }, -- [16] + { + 132295, -- [1] + 8, -- [2] + 3, -- [3] + 31236, -- [4] + }, -- [17] + { + 132304, -- [1] + 9, -- [2] + 2, -- [3] + 1329, -- [4] + }, -- [18] + { + 132296, -- [1] + 5, -- [2] + 1, -- [3] + 31209, -- [4] + }, -- [19] + { + 132286, -- [1] + 7, -- [2] + 3, -- [3] + 31383, -- [4] + }, -- [20] + { + 132301, -- [1] + 5, -- [2] + 4, -- [3] + 31245, -- [4] + }, -- [21] + { + 236270, -- [1] + 7, -- [2] + 1, -- [3] + 51626, -- [4] + }, -- [22] + { + 236284, -- [1] + 9, -- [2] + 3, -- [3] + 51629, -- [4] + }, -- [23] + { + 236268, -- [1] + 2, -- [2] + 2, -- [3] + 51633, -- [4] + }, -- [24] + { + 236274, -- [1] + 8, -- [2] + 1, -- [3] + 51636, -- [4] + }, -- [25] + { + 236269, -- [1] + 10, -- [2] + 2, -- [3] + 51669, -- [4] + }, -- [26] + { + 236276, -- [1] + 11, -- [2] + 2, -- [3] + 51662, -- [4] + }, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 132222, -- [1] + 2, -- [2] + 4, -- [3] + 13845, -- [4] + }, -- [41] + { + 135641, -- [1] + 3, -- [2] + 3, -- [3] + 13807, -- [4] + }, -- [42] + { + 133476, -- [1] + 5, -- [2] + 1, -- [3] + 13803, -- [4] + }, -- [43] + { + 136047, -- [1] + 4, -- [2] + 3, -- [3] + 13789, -- [4] + }, -- [44] + { + 132269, -- [1] + 2, -- [2] + 2, -- [3] + 13854, -- [4] + }, -- [45] + { + 136189, -- [1] + 1, -- [2] + 2, -- [3] + 13863, -- [4] + }, -- [46] + { + 132155, -- [1] + 1, -- [2] + 1, -- [3] + 13792, -- [4] + }, -- [47] + { + 136205, -- [1] + 3, -- [2] + 1, -- [3] + 13872, -- [4] + }, -- [48] + { + 136206, -- [1] + 7, -- [2] + 2, -- [3] + 13750, -- [4] + }, -- [49] + { + 132219, -- [1] + 4, -- [2] + 1, -- [3] + 13867, -- [4] + }, -- [50] + { + 132147, -- [1] + 1, -- [2] + 3, -- [3] + 13852, -- [4] + }, -- [51] + { + 132307, -- [1] + 4, -- [2] + 2, -- [3] + 13875, -- [4] + }, -- [52] + { + 132350, -- [1] + 5, -- [2] + 2, -- [3] + 13877, -- [4] + }, -- [53] + { + 135328, -- [1] + 5, -- [2] + 3, -- [3] + 13964, -- [4] + }, -- [54] + { + 132336, -- [1] + 3, -- [2] + 2, -- [3] + 14251, -- [4] + }, -- [55] + { + 132275, -- [1] + 4, -- [2] + 4, -- [3] + 61331, -- [4] + }, -- [56] + { + 135882, -- [1] + 6, -- [2] + 2, -- [3] + 30920, -- [4] + }, -- [57] + { + 132353, -- [1] + 7, -- [2] + 1, -- [3] + 61329, -- [4] + }, -- [58] + { + 132283, -- [1] + 6, -- [2] + 3, -- [3] + 31126, -- [4] + }, -- [59] + { + 132300, -- [1] + 7, -- [2] + 3, -- [3] + 31131, -- [4] + }, -- [60] + { + 132308, -- [1] + 9, -- [2] + 2, -- [3] + 32601, -- [4] + }, -- [61] + { + 135673, -- [1] + 8, -- [2] + 3, -- [3] + 35553, -- [4] + }, -- [62] + { + 132306, -- [1] + 2, -- [2] + 1, -- [3] + 14166, -- [4] + }, -- [63] + { + 236282, -- [1] + 8, -- [2] + 1, -- [3] + 51679, -- [4] + }, -- [64] + { + 236285, -- [1] + 9, -- [2] + 1, -- [3] + 51674, -- [4] + }, -- [65] + { + 132100, -- [1] + 9, -- [2] + 3, -- [3] + 58413, -- [4] + }, -- [66] + { + 236278, -- [1] + 10, -- [2] + 2, -- [3] + 51689, -- [4] + }, -- [67] + { + 236277, -- [1] + 11, -- [2] + 2, -- [3] + 51690, -- [4] + }, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 136129, -- [1] + 1, -- [2] + 2, -- [3] + 13971, -- [4] + }, -- [81] + { + 132320, -- [1] + 2, -- [2] + 3, -- [3] + 14063, -- [4] + }, -- [82] + { + 136159, -- [1] + 4, -- [2] + 2, -- [3] + 13980, -- [4] + }, -- [83] + { + 136056, -- [1] + 4, -- [2] + 1, -- [3] + 14071, -- [4] + }, -- [84] + { + 135994, -- [1] + 3, -- [2] + 1, -- [3] + 14066, -- [4] + }, -- [85] + { + 132366, -- [1] + 1, -- [2] + 3, -- [3] + 14072, -- [4] + }, -- [86] + { + 132310, -- [1] + 2, -- [2] + 2, -- [3] + 14094, -- [4] + }, -- [87] + { + 132282, -- [1] + 4, -- [2] + 3, -- [3] + 14080, -- [4] + }, -- [88] + { + 136220, -- [1] + 5, -- [2] + 3, -- [3] + 14083, -- [4] + }, -- [89] + { + 136121, -- [1] + 5, -- [2] + 2, -- [3] + 14185, -- [4] + }, -- [90] + { + 136136, -- [1] + 3, -- [2] + 2, -- [3] + 14278, -- [4] + }, -- [91] + { + 136183, -- [1] + 7, -- [2] + 2, -- [3] + 14183, -- [4] + }, -- [92] + { + 136168, -- [1] + 5, -- [2] + 4, -- [3] + 16511, -- [4] + }, -- [93] + { + 135315, -- [1] + 3, -- [2] + 3, -- [3] + 14173, -- [4] + }, -- [94] + { + 132294, -- [1] + 2, -- [2] + 1, -- [3] + 30893, -- [4] + }, -- [95] + { + 132089, -- [1] + 5, -- [2] + 1, -- [3] + 30895, -- [4] + }, -- [96] + { + 135540, -- [1] + 6, -- [2] + 3, -- [3] + 30906, -- [4] + }, -- [97] + { + 132291, -- [1] + 7, -- [2] + 1, -- [3] + 31213, -- [4] + }, -- [98] + { + 132305, -- [1] + 8, -- [2] + 2, -- [3] + 31220, -- [4] + }, -- [99] + { + 132299, -- [1] + 6, -- [2] + 1, -- [3] + 31223, -- [4] + }, -- [100] + { + 132303, -- [1] + 9, -- [2] + 2, -- [3] + 36554, -- [4] + }, -- [101] + { + 132285, -- [1] + 7, -- [2] + 3, -- [3] + 31230, -- [4] + }, -- [102] + { + 236286, -- [1] + 8, -- [2] + 3, -- [3] + 51696, -- [4] + }, -- [103] + { + 236275, -- [1] + 9, -- [2] + 1, -- [3] + 51701, -- [4] + }, -- [104] + { + 236287, -- [1] + 9, -- [2] + 3, -- [3] + 58415, -- [4] + }, -- [105] + { + 236280, -- [1] + 10, -- [2] + 2, -- [3] + 51712, -- [4] + }, -- [106] + { + 236279, -- [1] + 11, -- [2] + 2, -- [3] + 51713, -- [4] + }, -- [107] + { + 132340, -- [1] + 1, -- [2] + 1, -- [3] + 58425, -- [4] + }, -- [108] + [121] = { + "RogueAssassination", -- [1] + "RogueCombat", -- [2] + "RogueSubtlety", -- [3] + }, + }, +} diff --git a/WeakAuras/WeakAuras.lua b/WeakAuras/WeakAuras.lua index a4a0f97426..5eb3dbed9c 100644 --- a/WeakAuras/WeakAuras.lua +++ b/WeakAuras/WeakAuras.lua @@ -983,7 +983,7 @@ local function CreateTalentCache() Private.talent_types_specific[player_class] = Private.talent_types_specific[player_class] or {}; - if WeakAuras.IsClassicOrCata() then + if WeakAuras.IsClassicOrWrathOrCata() then for tab = 1, GetNumTalentTabs() do for num_talent = 1, GetNumTalents(tab) do local talentName, talentIcon = Private.ExecEnv.GetTalentInfo(tab, num_talent); @@ -1689,19 +1689,27 @@ local function scanForLoadsImpl(toCheck, event, arg1, ...) end local mounted = IsMounted() - if WeakAuras.IsClassicOrCataOrMists() then + if WeakAuras.IsClassicOrWrathOrCataOrMists() then local raidID = UnitInRaid("player") if raidID then raidRole = select(10, GetRaidRosterInfo(raidID)) end role = "none" + if WeakAuras.IsWrathClassic() then + role = UnitGroupRolesAssigned("player") + if role == "NONE" then + role = GetTalentGroupRole(GetActiveTalentGroup()) or "NONE" + end + end end if WeakAuras.IsClassicEra() then vehicle = UnitOnTaxi('player') end - if WeakAuras.IsCataOrMistsOrRetail() then + if WeakAuras.IsWrathOrCataOrMistsOrRetail() then vehicle = UnitInVehicle('player') or UnitOnTaxi('player') or false vehicleUi = UnitHasVehicleUI('player') or HasOverrideActionBar() or HasVehicleActionBar() or false + end + if WeakAuras.IsCataOrMistsOrRetail() then specId, role, position = Private.LibSpecWrapper.SpecRolePositionForUnit("player") end if WeakAuras.IsMistsOrRetail() then @@ -1736,6 +1744,11 @@ local function scanForLoadsImpl(toCheck, event, arg1, ...) runeEngraving = C_Engraving.IsEngravingEnabled() end + local pvp = false + if WeakAuras.IsWrathClassic() then + pvp = UnitIsPVPFreeForAll("player") or UnitIsPVP("player") + end + local changed = 0; local shouldBeLoaded, couldBeLoaded; local parentsToCheck = {} @@ -1750,6 +1763,9 @@ local function scanForLoadsImpl(toCheck, event, arg1, ...) if WeakAuras.IsClassicEra() then shouldBeLoaded = loadFunc and loadFunc("ScanForLoads_Auras", inCombat, alive, inEncounter, vehicle, mounted, hardcore, runeEngraving, class, player, realm, guild, race, faction, playerLevel, raidRole, group, groupSize, raidMemberType, zone, zoneId, zonegroupId, instanceId, minimapText, encounter_id, size) couldBeLoaded = loadOpt and loadOpt("ScanForLoads_Auras", inCombat, alive, inEncounter, vehicle, mounted, hardcore, runeEngraving, class, player, realm, guild, race, faction, playerLevel, raidRole, group, groupSize, raidMemberType, zone, zoneId, zonegroupId, instanceId, minimapText, encounter_id, size) + elseif WeakAuras.IsWrathClassic() then + shouldBeLoaded = loadFunc and loadFunc("ScanForLoads_Auras", inCombat, alive, inEncounter, pvp, vehicle, vehicleUi, mounted, class, player, realm, guild, race, faction, playerLevel, role, raidRole, group, groupSize, raidMemberType, zone, zoneId, zonegroupId, instanceId, minimapText, encounter_id, size, difficulty, difficultyIndex) + couldBeLoaded = loadOpt and loadOpt("ScanForLoads_Auras", inCombat, alive, inEncounter, pvp, vehicle, vehicleUi, mounted, class, player, realm, guild, race, faction, playerLevel, role, raidRole, group, groupSize, raidMemberType, zone, zoneId, zonegroupId, instanceId, minimapText, encounter_id, size, difficulty, difficultyIndex) elseif WeakAuras.IsCataClassic() then shouldBeLoaded = loadFunc and loadFunc("ScanForLoads_Auras", inCombat, alive, inEncounter, vehicle, vehicleUi, mounted, class, specId, player, realm, guild, race, faction, playerLevel, role, position, raidRole, group, groupSize, raidMemberType, zone, zoneId, zonegroupId, instanceId, minimapText, encounter_id, size, difficulty, difficultyIndex) couldBeLoaded = loadOpt and loadOpt("ScanForLoads_Auras", inCombat, alive, inEncounter, vehicle, vehicleUi, mounted, class, specId, player, realm, guild, race, faction, playerLevel, role, position, raidRole, group, groupSize, raidMemberType, zone, zoneId, zonegroupId, instanceId, minimapText, encounter_id, size, difficulty, difficultyIndex) @@ -1859,7 +1875,7 @@ else loadFrame:RegisterEvent("ACTIVE_TALENT_GROUP_CHANGED"); end -if WeakAuras.IsCataOrMists() then +if WeakAuras.IsWrathOrCataOrMists() then loadFrame:RegisterEvent("VEHICLE_UPDATE"); loadFrame:RegisterEvent("UPDATE_VEHICLE_ACTIONBAR") loadFrame:RegisterEvent("UPDATE_OVERRIDE_ACTIONBAR"); @@ -1899,7 +1915,7 @@ local unitLoadFrame = CreateFrame("Frame"); Private.frames["Display Load Handling 2"] = unitLoadFrame; unitLoadFrame:RegisterUnitEvent("UNIT_FLAGS", "player"); -if WeakAuras.IsCataOrMistsOrRetail() then +if WeakAuras.IsWrathOrCataOrMistsOrRetail() then unitLoadFrame:RegisterUnitEvent("UNIT_ENTERED_VEHICLE", "player"); unitLoadFrame:RegisterUnitEvent("UNIT_EXITED_VEHICLE", "player"); unitLoadFrame:RegisterUnitEvent("PLAYER_FLAGS_CHANGED", "player"); diff --git a/WeakAuras/WeakAuras_Wrath.toc b/WeakAuras/WeakAuras_Wrath.toc new file mode 100644 index 0000000000..5924dc4d75 --- /dev/null +++ b/WeakAuras/WeakAuras_Wrath.toc @@ -0,0 +1,102 @@ +## Interface: 30405, 38000 +## Title: WeakAuras +## Author: The WeakAuras Team +## Version: @project-version@ +## X-Flavor: Wrath +## Notes: A powerful, comprehensive utility for displaying graphics and information based on buffs, debuffs, and other triggers. +## Notes-esES: Potente y completa aplicación que te permitirá mostrar por pantalla múltiples diseños, basados en beneficios, perjuicios y otros activadores. +## Notes-esMX: Potente y completa aplicación que te permitirá mostrar por pantalla múltiples diseños, basados en beneficios, perjuicios y otros activadores. +## Notes-deDE: Ein leistungsfähiges, umfassendes Addon zur grafischen Darstellung von Informationen von Auren, Cooldowns, Timern und vielem mehr. +## Notes-ruRU: Мощный, многосторонний инструмент для отображения графики и информации, основанной на баффах, дебаффах и других триггерах. +## Notes-zhTW: 一個強大且全面實用的顯示圖形和訊息基於增益,減益和其它觸發。 +## X-Category: Interface Enhancements +## Globe-Post: WeakAurasOptions, WeakAurasModelPaths, WeakAurasTemplates +## X-Website: https://www.curseforge.com/wow/addons/weakauras +## X-Curse-Project-ID: 65387 +## X-WoWI-ID: 24910 +## X-Wago-ID: VBNBxKx5 +## DefaultState: Enabled +## LoadOnDemand: 0 +## SavedVariables: WeakAurasSaved +## OptionalDeps: Ace3, LibCompress, LibSharedMedia-3.0, AceGUI-3.0-SharedMediaWidgets, Masque, GTFO, LibButtonGlow-1.0, LibSpellRange-1.0, LibRangeCheck-3.0, LibDBIcon-1.0, LibGetFrame-1.0, !LibUIDropDownMenu, !!AddonLocale, CustomNames, BigWigs, DBM-Core +## AllowLoadGameType: wrath, titan + +# External code + initialization +embeds.xml + +# TaintLess +Libs\TaintLess\TaintLess.xml + +# Client flavor specific libs +Libs\LibSpecialization\LibSpecialization.lua + +Init.lua +Compatibility.lua +locales.xml +ArchiveTypes\Repository.lua +DefaultOptions.lua + +# Core files +SubscribableObject.lua +Features.lua +TimeMachine.lua +Atlas_Wrath.lua +Types_Wrath.lua +Types.lua +Prototypes.lua +Profiling.lua +Profiling.xml +WeakAuras.lua +History.lua +Transmission.lua +Modernize.lua +Animations.lua +Conditions.lua +AnchorToWeakAuras.lua + +# Trigger systems +LibSpecializationWrapper.lua +BuffTrigger2.lua +GenericTrigger.lua +BossMods.lua + +# Helper Systems +TSUHelpers.lua +AuraWarnings.lua +AuraEnvironment.lua +AuraEnvironmentWrappedSystems.lua +DebugLog.lua + +# Region support +RegionTypes\SmoothStatusBarMixin.lua +RegionTypes\RegionPrototype.lua +RegionTypes\Empty.lua +BaseRegions\TextureCoords.lua +BaseRegions\CircularProgressTexture.lua +BaseRegions\LinearProgressTexture.lua +RegionTypes\ProgressTexture.lua +BaseRegions\Texture.lua +RegionTypes\Texture.lua +RegionTypes\AuraBar.lua +RegionTypes\Icon.lua +RegionTypes\Text.lua +RegionTypes\Group.lua +RegionTypes\DynamicGroup.lua +BaseRegions\StopMotion.lua +RegionTypes\StopMotion.lua +RegionTypes\Model.lua + +# Sub-region support +SubRegionTypes\Background.lua +SubRegionTypes\SubText.lua +SubRegionTypes\Border.lua +SubRegionTypes\Glow.lua +SubRegionTypes\Tick.lua +SubRegionTypes\Model.lua +SubRegionTypes\StopMotion.lua +SubRegionTypes\Texture.lua +SubRegionTypes\CircularProgressTexture.lua +SubRegionTypes\LinearProgressTexture.lua + +#Misc +DiscordList.lua diff --git a/WeakAurasArchive/WeakAurasArchive_Wrath.toc b/WeakAurasArchive/WeakAurasArchive_Wrath.toc new file mode 100644 index 0000000000..543eecf464 --- /dev/null +++ b/WeakAurasArchive/WeakAurasArchive_Wrath.toc @@ -0,0 +1,8 @@ +## Interface: 30405, 38000 +## Title: WeakAuras Archive +## Author: The WeakAuras Team +## Version: @project-version@ +## LoadOnDemand: 1 +## SavedVariables: WeakAurasArchive +## Dependencies: WeakAuras +## AllowLoadGameType: wrath, titan diff --git a/WeakAurasModelPaths/ModelPathsWrath.lua b/WeakAurasModelPaths/ModelPathsWrath.lua new file mode 100644 index 0000000000..199b977cd5 --- /dev/null +++ b/WeakAurasModelPaths/ModelPathsWrath.lua @@ -0,0 +1,118394 @@ +WeakAuras.ModelPaths = { + { + children = { + { + fileId = "116902", + text = "flybybloodelf.m2", + value = "flybybloodelf.m2", + }, + { + fileId = "220042", + text = "flybydeathknight.m2", + value = "flybydeathknight.m2", + }, + { + fileId = "116903", + text = "flybydraenei.m2", + value = "flybydraenei.m2", + }, + { + fileId = "116904", + text = "flybydwarf.m2", + value = "flybydwarf.m2", + }, + { + fileId = "116905", + text = "flybygnome.m2", + value = "flybygnome.m2", + }, + { + fileId = "116906", + text = "flybyhuman.m2", + value = "flybyhuman.m2", + }, + { + fileId = "116907", + text = "flybynightelf.m2", + value = "flybynightelf.m2", + }, + { + fileId = "116908", + text = "flybyorc.m2", + value = "flybyorc.m2", + }, + { + fileId = "116909", + text = "flybysunwell5man.m2", + value = "flybysunwell5man.m2", + }, + { + fileId = "116910", + text = "flybytauren.m2", + value = "flybytauren.m2", + }, + { + fileId = "116911", + text = "flybytroll.m2", + value = "flybytroll.m2", + }, + { + fileId = "116912", + text = "flybyundead.m2", + value = "flybyundead.m2", + }, + { + fileId = "116913", + text = "orcintro01.m2", + value = "orcintro01.m2", + }, + { + fileId = "116914", + text = "orcintro02.m2", + value = "orcintro02.m2", + }, + { + fileId = "116915", + text = "orcintro03.m2", + value = "orcintro03.m2", + }, + { + fileId = "116916", + text = "orcintro04.m2", + value = "orcintro04.m2", + }, + { + fileId = "116917", + text = "orcintro05.m2", + value = "orcintro05.m2", + }, + { + fileId = "116918", + text = "orcintro06.m2", + value = "orcintro06.m2", + }, + { + fileId = "116919", + text = "palantirofazora.m2", + value = "palantirofazora.m2", + }, + { + fileId = "116920", + text = "scry_cam.m2", + value = "scry_cam.m2", + }, + }, + text = "cameras", + value = "cameras", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "116921", + text = "bloodelffemale.m2", + value = "bloodelffemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "117170", + text = "bloodelfmale.m2", + value = "bloodelfmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "bloodelf", + value = "bloodelf", + }, + { + children = { + { + children = { + { + fileId = "117400", + text = "brokenfemale.m2", + value = "brokenfemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "117412", + text = "brokenmale.m2", + value = "brokenmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "broken", + value = "broken", + }, + { + children = { + { + children = { + { + fileId = "117437", + text = "draeneifemale.m2", + value = "draeneifemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "117721", + text = "draeneimale.m2", + value = "draeneimale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "draenei", + value = "draenei", + }, + { + children = { + { + children = { + { + fileId = "118135", + text = "dwarffemale.m2", + value = "dwarffemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "118355", + text = "dwarfmale.m2", + value = "dwarfmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "dwarf", + value = "dwarf", + }, + { + children = { + { + children = { + { + fileId = "118652", + text = "felorcfemale.m2", + value = "felorcfemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "118653", + text = "felorcmale.m2", + value = "felorcmale.m2", + }, + { + fileId = "118654", + text = "felorcmaleaxe.m2", + value = "felorcmaleaxe.m2", + }, + { + fileId = "118667", + text = "felorcmalesword.m2", + value = "felorcmalesword.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "felorc", + value = "felorc", + }, + { + children = { + { + children = { + { + fileId = "118798", + text = "foresttrollmale.m2", + value = "foresttrollmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "foresttroll", + value = "foresttroll", + }, + { + children = { + { + children = { + { + fileId = "119063", + text = "gnomefemale.m2", + value = "gnomefemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "119159", + text = "gnomemale.m2", + value = "gnomemale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "gnome", + value = "gnome", + }, + { + children = { + { + children = { + { + fileId = "119369", + text = "goblinfemale.m2", + value = "goblinfemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "119376", + text = "goblinmale.m2", + value = "goblinmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "goblin", + value = "goblin", + }, + { + children = { + { + children = { + { + fileId = "119563", + text = "humanfemale.m2", + value = "humanfemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "119940", + text = "humanmale.m2", + value = "humanmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "human", + value = "human", + }, + { + children = { + { + children = { + { + fileId = "232863", + text = "icetrollmale.m2", + value = "icetrollmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "icetroll", + value = "icetroll", + }, + { + children = { + { + children = { + { + fileId = "120263", + text = "naga_female.m2", + value = "naga_female.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "120294", + text = "naga_male.m2", + value = "naga_male.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "naga_", + value = "naga_", + }, + { + children = { + { + children = { + { + fileId = "120590", + text = "nightelffemale.m2", + value = "nightelffemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "120791", + text = "nightelfmale.m2", + value = "nightelfmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "nightelf", + value = "nightelf", + }, + { + children = { + { + children = { + { + fileId = "233367", + text = "northrendskeletonmale.m2", + value = "northrendskeletonmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "northrendskeleton", + value = "northrendskeleton", + }, + { + children = { + { + children = { + { + fileId = "121087", + text = "orcfemale.m2", + value = "orcfemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "121287", + text = "orcmale.m2", + value = "orcmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "orc", + value = "orc", + }, + { + children = { + { + children = { + { + fileId = "121608", + text = "scourgefemale.m2", + value = "scourgefemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "121768", + text = "scourgemale.m2", + value = "scourgemale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "scourge", + value = "scourge", + }, + { + children = { + { + children = { + { + fileId = "121941", + text = "skeletonfemale.m2", + value = "skeletonfemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "121942", + text = "skeletonmale.m2", + value = "skeletonmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "skeleton", + value = "skeleton", + }, + { + children = { + { + children = { + { + fileId = "233878", + text = "taunkamale.m2", + value = "taunkamale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "taunka", + value = "taunka", + }, + { + children = { + { + children = { + { + fileId = "121961", + text = "taurenfemale.m2", + value = "taurenfemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "122055", + text = "taurenmale.m2", + value = "taurenmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "tauren", + value = "tauren", + }, + { + children = { + { + children = { + { + fileId = "122414", + text = "trollfemale.m2", + value = "trollfemale.m2", + }, + }, + text = "female", + value = "female", + }, + { + children = { + { + fileId = "122560", + text = "trollmale.m2", + value = "trollmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "troll", + value = "troll", + }, + { + children = { + { + children = { + { + fileId = "122738", + text = "tuskarrmale.m2", + value = "tuskarrmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "tuskarr", + value = "tuskarr", + }, + { + children = { + { + children = { + { + fileId = "122815", + text = "vrykulmale.m2", + value = "vrykulmale.m2", + }, + }, + text = "male", + value = "male", + }, + }, + text = "vrykul", + value = "vrykul", + }, + }, + text = "character", + value = "character", + }, + { + children = { + { + children = { + { + fileId = "122866", + text = "abyssal_illidan.m2", + value = "abyssal_illidan.m2", + }, + }, + text = "abyssalillidan", + value = "abyssalillidan", + }, + { + children = { + { + fileId = "122870", + text = "abyssal_outland.m2", + value = "abyssal_outland.m2", + }, + }, + text = "abyssaloutland", + value = "abyssaloutland", + }, + { + children = { + { + fileId = "122877", + text = "airelemental.m2", + value = "airelemental.m2", + }, + }, + text = "airelemental", + value = "airelemental", + }, + { + children = { + { + fileId = "122883", + text = "akama.m2", + value = "akama.m2", + }, + }, + text = "akama", + value = "akama", + }, + { + children = { + { + fileId = "234497", + text = "alexstrasza.m2", + value = "alexstrasza.m2", + }, + { + fileId = "234501", + text = "ladyalexstrasa.m2", + value = "ladyalexstrasa.m2", + }, + }, + text = "alexstrasza", + value = "alexstrasza", + }, + { + children = { + { + fileId = "252165", + text = "algalontheobserver.m2", + value = "algalontheobserver.m2", + }, + }, + text = "alglontheobserver", + value = "alglontheobserver", + }, + { + children = { + { + fileId = "234505", + text = "alliancebomb.m2", + value = "alliancebomb.m2", + }, + }, + text = "alliancebomb", + value = "alliancebomb", + }, + { + children = { + { + fileId = "234506", + text = "alliancebrasscannon.m2", + value = "alliancebrasscannon.m2", + }, + }, + text = "alliancebrasscannon", + value = "alliancebrasscannon", + }, + { + children = { + { + fileId = "122886", + text = "alliancerider.m2", + value = "alliancerider.m2", + }, + }, + text = "alliancerider", + value = "alliancerider", + }, + { + children = { + { + fileId = "122889", + text = "ancientofarcane.m2", + value = "ancientofarcane.m2", + }, + }, + text = "ancientofarcane", + value = "ancientofarcane", + }, + { + children = { + { + fileId = "122893", + text = "ancientoflore.m2", + value = "ancientoflore.m2", + }, + }, + text = "ancientoflore", + value = "ancientoflore", + }, + { + children = { + { + fileId = "122895", + text = "ancientofwar.m2", + value = "ancientofwar.m2", + }, + }, + text = "ancientofwar", + value = "ancientofwar", + }, + { + children = { + { + fileId = "122899", + text = "ancientprotector.m2", + value = "ancientprotector.m2", + }, + }, + text = "ancientprotector", + value = "ancientprotector", + }, + { + children = { + { + fileId = "234507", + text = "ancientprotectorcrystalsong.m2", + value = "ancientprotectorcrystalsong.m2", + }, + }, + text = "ancientprotectorcrystalsong", + value = "ancientprotectorcrystalsong", + }, + { + children = { + { + fileId = "353670", + text = "anduin.m2", + value = "anduin.m2", + }, + }, + text = "anduin", + value = "anduin", + }, + { + children = { + { + fileId = "122906", + text = "anubisath.m2", + value = "anubisath.m2", + }, + }, + text = "anubisath", + value = "anubisath", + }, + { + children = { + { + fileId = "122910", + text = "arakkoa.m2", + value = "arakkoa.m2", + }, + { + fileId = "122914", + text = "arakkoa_sage.m2", + value = "arakkoa_sage.m2", + }, + { + fileId = "122924", + text = "arakkoa_warrior.m2", + value = "arakkoa_warrior.m2", + }, + }, + text = "arakkoa", + value = "arakkoa", + }, + { + children = { + { + fileId = "122952", + text = "arcanegolem.m2", + value = "arcanegolem.m2", + }, + { + fileId = "122953", + text = "arcanegolembroken.m2", + value = "arcanegolembroken.m2", + }, + }, + text = "arcanegolem", + value = "arcanegolem", + }, + { + children = { + { + fileId = "122955", + text = "arcanetitan.m2", + value = "arcanetitan.m2", + }, + }, + text = "arcanetitan", + value = "arcanetitan", + }, + { + children = { + { + fileId = "122957", + text = "arcanevoidwraith.m2", + value = "arcanevoidwraith.m2", + }, + }, + text = "arcanevoidwraith", + value = "arcanevoidwraith", + }, + { + children = { + { + fileId = "122961", + text = "arcticcondor.m2", + value = "arcticcondor.m2", + }, + }, + text = "arcticcondor", + value = "arcticcondor", + }, + { + children = { + { + fileId = "4788400", + text = "arfuspetclassic.m2", + value = "arfuspetclassic.m2", + }, + }, + text = "arfuspetclassic", + value = "arfuspetclassic", + }, + { + children = { + { + fileId = "122965", + text = "arthas.m2", + value = "arthas.m2", + }, + }, + text = "arthas", + value = "arthas", + }, + { + children = { + { + fileId = "122968", + text = "arthaslichking.m2", + value = "arthaslichking.m2", + }, + { + fileId = "328482", + text = "arthaslichking_unarmed.m2", + value = "arthaslichking_unarmed.m2", + }, + }, + text = "arthaslichking", + value = "arthaslichking", + }, + { + children = { + { + fileId = "122971", + text = "arthasundead.m2", + value = "arthasundead.m2", + }, + }, + text = "arthasundead", + value = "arthasundead", + }, + { + children = { + { + fileId = "122975", + text = "babybeholder.m2", + value = "babybeholder.m2", + }, + }, + text = "babybeholder", + value = "babybeholder", + }, + { + children = { + { + fileId = "122977", + text = "babycrocodile.m2", + value = "babycrocodile.m2", + }, + }, + text = "babycrocodile", + value = "babycrocodile", + }, + { + children = { + { + fileId = "122982", + text = "babyelekk.m2", + value = "babyelekk.m2", + }, + }, + text = "babyelekk", + value = "babyelekk", + }, + { + children = { + { + fileId = "122988", + text = "babyhawkstrider.m2", + value = "babyhawkstrider.m2", + }, + }, + text = "babyhawkstrider", + value = "babyhawkstrider", + }, + { + children = { + { + fileId = "330503", + text = "babylich.m2", + value = "babylich.m2", + }, + }, + text = "babylich", + value = "babylich", + }, + { + children = { + { + fileId = "122994", + text = "band_drumset.m2", + value = "band_drumset.m2", + }, + { + fileId = "122997", + text = "bandbloodelfmale.m2", + value = "bandbloodelfmale.m2", + }, + { + fileId = "122999", + text = "bandorcmale.m2", + value = "bandorcmale.m2", + }, + { + fileId = "123001", + text = "bandtaurenmale.m2", + value = "bandtaurenmale.m2", + }, + { + fileId = "123004", + text = "bandtrollmale.m2", + value = "bandtrollmale.m2", + }, + { + fileId = "123005", + text = "bandundeadmale.m2", + value = "bandundeadmale.m2", + }, + }, + text = "band", + value = "band", + }, + { + children = { + { + fileId = "123014", + text = "banshee.m2", + value = "banshee.m2", + }, + }, + text = "banshee", + value = "banshee", + }, + { + children = { + { + fileId = "123020", + text = "basilisk.m2", + value = "basilisk.m2", + }, + }, + text = "basilisk", + value = "basilisk", + }, + { + children = { + { + fileId = "123035", + text = "basilisk_outland.m2", + value = "basilisk_outland.m2", + }, + }, + text = "basiliskoutland", + value = "basiliskoutland", + }, + { + children = { + { + fileId = "123040", + text = "bear.m2", + value = "bear.m2", + }, + { + fileId = "123051", + text = "polarbearcub.m2", + value = "polarbearcub.m2", + }, + { + fileId = "343627", + text = "spectralbear.m2", + value = "spectralbear.m2", + }, + }, + text = "bear", + value = "bear", + }, + { + children = { + { + fileId = "123053", + text = "bearcub.m2", + value = "bearcub.m2", + }, + }, + text = "bearcub", + value = "bearcub", + }, + { + children = { + { + fileId = "123055", + text = "beargod.m2", + value = "beargod.m2", + }, + }, + text = "beargod", + value = "beargod", + }, + { + children = { + { + fileId = "123058", + text = "bearmount.m2", + value = "bearmount.m2", + }, + }, + text = "bearmount", + value = "bearmount", + }, + { + children = { + { + fileId = "123067", + text = "bearmountalt.m2", + value = "bearmountalt.m2", + }, + }, + text = "bearmountalt", + value = "bearmountalt", + }, + { + children = { + { + fileId = "123071", + text = "beholder.m2", + value = "beholder.m2", + }, + }, + text = "beholder", + value = "beholder", + }, + { + children = { + { + fileId = "293986", + text = "blackhole.m2", + value = "blackhole.m2", + }, + }, + text = "blackhole", + value = "blackhole", + }, + { + children = { + { + fileId = "123079", + text = "bloodelffemalekid.m2", + value = "bloodelffemalekid.m2", + }, + }, + text = "bloodelffemalekid", + value = "bloodelffemalekid", + }, + { + children = { + { + fileId = "123081", + text = "bloodelfmale_guard.m2", + value = "bloodelfmale_guard.m2", + }, + }, + text = "bloodelfguard", + value = "bloodelfguard", + }, + { + children = { + { + fileId = "123088", + text = "bloodelfmalekid.m2", + value = "bloodelfmalekid.m2", + }, + }, + text = "bloodelfmalekid", + value = "bloodelfmalekid", + }, + { + children = { + { + fileId = "343816", + text = "bloodqueen.m2", + value = "bloodqueen.m2", + }, + }, + text = "bloodqueen", + value = "bloodqueen", + }, + { + children = { + { + fileId = "123090", + text = "boar.m2", + value = "boar.m2", + }, + { + fileId = "123100", + text = "boartruesilver.m2", + value = "boartruesilver.m2", + }, + }, + text = "boar", + value = "boar", + }, + { + children = { + { + fileId = "123101", + text = "bodyofkathune.m2", + value = "bodyofkathune.m2", + }, + }, + text = "bodyofkathune", + value = "bodyofkathune", + }, + { + children = { + { + fileId = "123105", + text = "bogbeast.m2", + value = "bogbeast.m2", + }, + }, + text = "bogbeast", + value = "bogbeast", + }, + { + children = { + { + fileId = "123120", + text = "bonegolem.m2", + value = "bonegolem.m2", + }, + }, + text = "bonegolem", + value = "bonegolem", + }, + { + children = { + { + fileId = "345855", + text = "boneguard.m2", + value = "boneguard.m2", + }, + }, + text = "boneguard", + value = "boneguard", + }, + { + children = { + { + fileId = "234519", + text = "bonespider.m2", + value = "bonespider.m2", + }, + }, + text = "bonespider", + value = "bonespider", + }, + { + children = { + { + fileId = "123124", + text = "boneworm.m2", + value = "boneworm.m2", + }, + }, + text = "boneworm", + value = "boneworm", + }, + { + children = { + { + fileId = "123129", + text = "be_broom01.m2", + value = "be_broom01.m2", + }, + }, + text = "broom", + value = "broom", + }, + { + children = { + { + fileId = "123130", + text = "broommount.m2", + value = "broommount.m2", + }, + }, + text = "broommount", + value = "broommount", + }, + { + children = { + { + fileId = "123133", + text = "brutallus.m2", + value = "brutallus.m2", + }, + }, + text = "brutallus", + value = "brutallus", + }, + { + children = { + { + fileId = "123137", + text = "carrionbird.m2", + value = "carrionbird.m2", + }, + }, + text = "carrionbird", + value = "carrionbird", + }, + { + children = { + { + fileId = "123148", + text = "carrionbirdoutland.m2", + value = "carrionbirdoutland.m2", + }, + }, + text = "carrionbirdoutland", + value = "carrionbirdoutland", + }, + { + children = { + { + fileId = "123162", + text = "cat.m2", + value = "cat.m2", + }, + { + fileId = "319730", + text = "spectralcat.m2", + value = "spectralcat.m2", + }, + }, + text = "cat", + value = "cat", + }, + { + children = { + { + fileId = "368361", + text = "celestialdragonwyrm.m2", + value = "celestialdragonwyrm.m2", + }, + }, + text = "celestialdragonwyrm", + value = "celestialdragonwyrm", + }, + { + children = { + { + fileId = "369213", + text = "celestialhorse.m2", + value = "celestialhorse.m2", + }, + { + fileId = "369224", + text = "celestialhorse_nonflying.m2", + value = "celestialhorse_nonflying.m2", + }, + }, + text = "celestialhorse", + value = "celestialhorse", + }, + { + children = { + { + fileId = "123170", + text = "centaur.m2", + value = "centaur.m2", + }, + { + fileId = "123171", + text = "centaurcaster.m2", + value = "centaurcaster.m2", + }, + { + fileId = "123182", + text = "centaurkhan.m2", + value = "centaurkhan.m2", + }, + { + fileId = "123194", + text = "centaurwarrior.m2", + value = "centaurwarrior.m2", + }, + }, + text = "centaur", + value = "centaur", + }, + { + children = { + { + fileId = "123200", + text = "chicken.m2", + value = "chicken.m2", + }, + }, + text = "chicken", + value = "chicken", + }, + { + children = { + { + fileId = "306852", + text = "chickenmount.m2", + value = "chickenmount.m2", + }, + { + fileId = "307174", + text = "chickenmount15.m2", + value = "chickenmount15.m2", + }, + { + fileId = "307175", + text = "chickenmount35.m2", + value = "chickenmount35.m2", + }, + }, + text = "chickenmount", + value = "chickenmount", + }, + { + children = { + { + fileId = "123205", + text = "chimera.m2", + value = "chimera.m2", + }, + }, + text = "chimera", + value = "chimera", + }, + { + children = { + { + fileId = "123214", + text = "chimeraoutland.m2", + value = "chimeraoutland.m2", + }, + }, + text = "chimeraoutland", + value = "chimeraoutland", + }, + { + children = { + { + fileId = "123225", + text = "chinesedragon.m2", + value = "chinesedragon.m2", + }, + { + fileId = "309879", + text = "jadechinesedragon.m2", + value = "jadechinesedragon.m2", + }, + }, + text = "chinesedragon", + value = "chinesedragon", + }, + { + children = { + { + fileId = "123235", + text = "clawofkathune.m2", + value = "clawofkathune.m2", + }, + }, + text = "clawofkathune", + value = "clawofkathune", + }, + { + children = { + { + fileId = "123240", + text = "clefthoove.m2", + value = "clefthoove.m2", + }, + }, + text = "clefthoove", + value = "clefthoove", + }, + { + children = { + { + fileId = "251866", + text = "clockworkgiant.m2", + value = "clockworkgiant.m2", + }, + { + fileId = "254309", + text = "clockworkgiantheart.m2", + value = "clockworkgiantheart.m2", + }, + { + fileId = "370233", + text = "clockworkgiantpet.m2", + value = "clockworkgiantpet.m2", + }, + }, + text = "clockworkgiant", + value = "clockworkgiant", + }, + { + children = { + { + fileId = "123247", + text = "clockworkgnome.m2", + value = "clockworkgnome.m2", + }, + { + fileId = "123248", + text = "clockworkgnome_a.m2", + value = "clockworkgnome_a.m2", + }, + { + fileId = "123249", + text = "clockworkgnome_b.m2", + value = "clockworkgnome_b.m2", + }, + { + fileId = "123250", + text = "clockworkgnome_c.m2", + value = "clockworkgnome_c.m2", + }, + { + fileId = "123251", + text = "clockworkgnome_d.m2", + value = "clockworkgnome_d.m2", + }, + }, + text = "clockworkgnome", + value = "clockworkgnome", + }, + { + children = { + { + fileId = "2199326", + text = "cloudfire.m2", + value = "cloudfire.m2", + }, + { + fileId = "2199576", + text = "cloudradioactive.m2", + value = "cloudradioactive.m2", + }, + { + fileId = "123265", + text = "cloudswampgas.m2", + value = "cloudswampgas.m2", + }, + { + fileId = "123266", + text = "cloudswampgas_shadowmoon_white.m2", + value = "cloudswampgas_shadowmoon_white.m2", + }, + }, + text = "cloud", + value = "cloud", + }, + { + children = { + { + fileId = "123268", + text = "cockatriceelite.m2", + value = "cockatriceelite.m2", + }, + { + fileId = "123275", + text = "cockatricemount.m2", + value = "cockatricemount.m2", + }, + }, + text = "cockatrice", + value = "cockatrice", + }, + { + children = { + { + fileId = "123284", + text = "cockroach.m2", + value = "cockroach.m2", + }, + }, + text = "cockroach", + value = "cockroach", + }, + { + children = { + { + fileId = "123285", + text = "cocoon.m2", + value = "cocoon.m2", + }, + }, + text = "cocoon", + value = "cocoon", + }, + { + children = { + { + fileId = "234530", + text = "coldwraith.m2", + value = "coldwraith.m2", + }, + }, + text = "coldwraith", + value = "coldwraith", + }, + { + children = { + { + fileId = "123288", + text = "cow.m2", + value = "cow.m2", + }, + }, + text = "cow", + value = "cow", + }, + { + children = { + { + fileId = "123291", + text = "crab.m2", + value = "crab.m2", + }, + { + fileId = "234535", + text = "crabsmall.m2", + value = "crabsmall.m2", + }, + }, + text = "crab", + value = "crab", + }, + { + children = { + { + fileId = "123299", + text = "crackelfmale.m2", + value = "crackelfmale.m2", + }, + }, + text = "crackelf", + value = "crackelf", + }, + { + children = { + { + fileId = "123304", + text = "cratecreature.m2", + value = "cratecreature.m2", + }, + { + fileId = "123306", + text = "cratecreaturebasic.m2", + value = "cratecreaturebasic.m2", + }, + }, + text = "cratecreature", + value = "cratecreature", + }, + { + children = { + { + fileId = "123307", + text = "crawler.m2", + value = "crawler.m2", + }, + }, + text = "crawler", + value = "crawler", + }, + { + children = { + { + fileId = "123320", + text = "crawlerelite.m2", + value = "crawlerelite.m2", + }, + }, + text = "crawlerelite", + value = "crawlerelite", + }, + { + children = { + { + fileId = "123324", + text = "crocodile.m2", + value = "crocodile.m2", + }, + }, + text = "crocodile", + value = "crocodile", + }, + { + children = { + { + fileId = "123329", + text = "cryptfiend.m2", + value = "cryptfiend.m2", + }, + }, + text = "cryptfiend", + value = "cryptfiend", + }, + { + children = { + { + fileId = "123335", + text = "cryptlord.m2", + value = "cryptlord.m2", + }, + { + fileId = "307389", + text = "cryptlord_frost.m2", + value = "cryptlord_frost.m2", + }, + { + fileId = "123337", + text = "cryptlord_underground.m2", + value = "cryptlord_underground.m2", + }, + }, + text = "cryptlord", + value = "cryptlord", + }, + { + children = { + { + fileId = "123343", + text = "crypt_scarab.m2", + value = "crypt_scarab.m2", + }, + }, + text = "cryptscarab", + value = "cryptscarab", + }, + { + children = { + { + fileId = "234536", + text = "crystaldryad.m2", + value = "crystaldryad.m2", + }, + }, + text = "crystaldryad", + value = "crystaldryad", + }, + { + children = { + { + fileId = "123344", + text = "crystalportal.m2", + value = "crystalportal.m2", + }, + }, + text = "crystalportal", + value = "crystalportal", + }, + { + children = { + { + fileId = "234540", + text = "crystalsatyr.m2", + value = "crystalsatyr.m2", + }, + }, + text = "crystalsatyr", + value = "crystalsatyr", + }, + { + children = { + { + fileId = "123345", + text = "cupid.m2", + value = "cupid.m2", + }, + }, + text = "cupid", + value = "cupid", + }, + { + children = { + { + fileId = "123348", + text = "darkhound.m2", + value = "darkhound.m2", + }, + }, + text = "darkhound", + value = "darkhound", + }, + { + children = { + { + fileId = "123355", + text = "deathknightmount.m2", + value = "deathknightmount.m2", + }, + }, + text = "deathknightmount", + value = "deathknightmount", + }, + { + children = { + { + fileId = "123362", + text = "deer.m2", + value = "deer.m2", + }, + }, + text = "deer", + value = "deer", + }, + { + children = { + { + fileId = "123366", + text = "demolishercannonball.m2", + value = "demolishercannonball.m2", + }, + }, + text = "demolishercannonball", + value = "demolishercannonball", + }, + { + children = { + { + fileId = "123367", + text = "demolishervehicle.m2", + value = "demolishervehicle.m2", + }, + }, + text = "demolishervehicle", + value = "demolishervehicle", + }, + { + children = { + { + fileId = "123371", + text = "demonform.m2", + value = "demonform.m2", + }, + }, + text = "demonform", + value = "demonform", + }, + { + children = { + { + fileId = "123372", + text = "demonhunter.m2", + value = "demonhunter.m2", + }, + }, + text = "demonhunter", + value = "demonhunter", + }, + { + children = { + { + fileId = "123375", + text = "diablofunsized.m2", + value = "diablofunsized.m2", + }, + }, + text = "diablo", + value = "diablo", + }, + { + children = { + { + fileId = "123377", + text = "diemetradon.m2", + value = "diemetradon.m2", + }, + }, + text = "diemetradon", + value = "diemetradon", + }, + { + children = { + { + fileId = "123382", + text = "direfurbolg.m2", + value = "direfurbolg.m2", + }, + }, + text = "direfurbolg", + value = "direfurbolg", + }, + { + children = { + { + fileId = "123388", + text = "direwolf.m2", + value = "direwolf.m2", + }, + { + fileId = "123410", + text = "pvpridingdirewolf.m2", + value = "pvpridingdirewolf.m2", + }, + { + fileId = "123418", + text = "ridingdirewolf.m2", + value = "ridingdirewolf.m2", + }, + }, + text = "direwolf", + value = "direwolf", + }, + { + children = { + { + fileId = "123441", + text = "doomguard.m2", + value = "doomguard.m2", + }, + }, + text = "doomguard", + value = "doomguard", + }, + { + children = { + { + fileId = "123443", + text = "doomguardoutland.m2", + value = "doomguardoutland.m2", + }, + }, + text = "doomguardoutland", + value = "doomguardoutland", + }, + { + children = { + { + fileId = "123455", + text = "draeneifemalekid.m2", + value = "draeneifemalekid.m2", + }, + }, + text = "draeneifemalekid", + value = "draeneifemalekid", + }, + { + children = { + { + fileId = "123457", + text = "draeneimalekid.m2", + value = "draeneimalekid.m2", + }, + }, + text = "draeneimalekid", + value = "draeneimalekid", + }, + { + children = { + { + fileId = "123459", + text = "dragon.m2", + value = "dragon.m2", + }, + { + fileId = "123460", + text = "dragonazurgoz.m2", + value = "dragonazurgoz.m2", + }, + { + fileId = "123461", + text = "dragonnefarian.m2", + value = "dragonnefarian.m2", + }, + { + fileId = "123465", + text = "dragononyxia.m2", + value = "dragononyxia.m2", + }, + { + fileId = "123496", + text = "lethon.m2", + value = "lethon.m2", + }, + { + fileId = "123497", + text = "northrenddragon.m2", + value = "northrenddragon.m2", + }, + { + fileId = "318963", + text = "onyxiamount.m2", + value = "onyxiamount.m2", + }, + { + fileId = "123498", + text = "taerar.m2", + value = "taerar.m2", + }, + { + fileId = "123499", + text = "taerar_q.m2", + value = "taerar_q.m2", + }, + }, + text = "dragon", + value = "dragon", + }, + { + children = { + { + fileId = "123500", + text = "dragondarkshade.m2", + value = "dragondarkshade.m2", + }, + }, + text = "dragondarkshade", + value = "dragondarkshade", + }, + { + children = { + { + fileId = "123507", + text = "dragonfootsoldier.m2", + value = "dragonfootsoldier.m2", + }, + }, + text = "dragonfootsoldier", + value = "dragonfootsoldier", + }, + { + children = { + { + fileId = "123519", + text = "dragonfootsoldierdarkshade.m2", + value = "dragonfootsoldierdarkshade.m2", + }, + }, + text = "dragonfootsoldierdarkshade", + value = "dragonfootsoldierdarkshade", + }, + { + children = { + { + fileId = "123522", + text = "dragonhawk.m2", + value = "dragonhawk.m2", + }, + { + fileId = "234547", + text = "dragonhawkmount.m2", + value = "dragonhawkmount.m2", + }, + }, + text = "dragonhawk", + value = "dragonhawk", + }, + { + children = { + { + fileId = "123531", + text = "dragonhawkgod.m2", + value = "dragonhawkgod.m2", + }, + }, + text = "dragonhawkgod", + value = "dragonhawkgod", + }, + { + children = { + { + fileId = "123534", + text = "dragonkalecgos.m2", + value = "dragonkalecgos.m2", + }, + }, + text = "dragonkalecgos", + value = "dragonkalecgos", + }, + { + children = { + { + fileId = "123538", + text = "dragonkite.m2", + value = "dragonkite.m2", + }, + }, + text = "dragonkite", + value = "dragonkite", + }, + { + children = { + { + fileId = "234548", + text = "redcrystaldragon.m2", + value = "redcrystaldragon.m2", + }, + { + fileId = "234553", + text = "redcrystaldragonhologram.m2", + value = "redcrystaldragonhologram.m2", + }, + }, + text = "dragonredcrystal", + value = "dragonredcrystal", + }, + { + children = { + { + fileId = "123543", + text = "dragonspawn.m2", + value = "dragonspawn.m2", + }, + { + fileId = "123544", + text = "dragonspawnarmored.m2", + value = "dragonspawnarmored.m2", + }, + { + fileId = "123553", + text = "dragonspawngreater.m2", + value = "dragonspawngreater.m2", + }, + { + fileId = "123554", + text = "dragonspawnoverlord.m2", + value = "dragonspawnoverlord.m2", + }, + { + fileId = "123555", + text = "dragonspawnoverlordnexus.m2", + value = "dragonspawnoverlordnexus.m2", + }, + }, + text = "dragonspawn", + value = "dragonspawn", + }, + { + children = { + { + fileId = "123570", + text = "dragonspawnarmoreddarkshade.m2", + value = "dragonspawnarmoreddarkshade.m2", + }, + }, + text = "dragonspawnarmoreddarkshade", + value = "dragonspawnarmoreddarkshade", + }, + { + children = { + { + fileId = "123577", + text = "dragonspawncaster.m2", + value = "dragonspawncaster.m2", + }, + }, + text = "dragonspawncaster", + value = "dragonspawncaster", + }, + { + children = { + { + fileId = "123595", + text = "dragonspawncasterdarkshade.m2", + value = "dragonspawncasterdarkshade.m2", + }, + }, + text = "dragonspawncasterdarkshade", + value = "dragonspawncasterdarkshade", + }, + { + children = { + { + fileId = "123598", + text = "dragonspawndarkshade.m2", + value = "dragonspawndarkshade.m2", + }, + }, + text = "dragonspawndarkshade", + value = "dragonspawndarkshade", + }, + { + children = { + { + fileId = "123600", + text = "dragonspawnarmorednexus.m2", + value = "dragonspawnarmorednexus.m2", + }, + }, + text = "dragonspawnnexus", + value = "dragonspawnnexus", + }, + { + children = { + { + fileId = "123603", + text = "dragonspawnoverlorddarkshade.m2", + value = "dragonspawnoverlorddarkshade.m2", + }, + }, + text = "dragonspawnoverlorddarkshade", + value = "dragonspawnoverlorddarkshade", + }, + { + children = { + { + fileId = "123610", + text = "dragonwhelp.m2", + value = "dragonwhelp.m2", + }, + { + fileId = "326545", + text = "dragonwhelponyxia.m2", + value = "dragonwhelponyxia.m2", + }, + }, + text = "dragonwhelp", + value = "dragonwhelp", + }, + { + children = { + { + fileId = "123620", + text = "dragonwhelpdarkshade.m2", + value = "dragonwhelpdarkshade.m2", + }, + }, + text = "dragonwhelpdarkshade", + value = "dragonwhelpdarkshade", + }, + { + children = { + { + fileId = "123622", + text = "dragonwhelpoutland.m2", + value = "dragonwhelpoutland.m2", + }, + }, + text = "dragonwhelpoutland", + value = "dragonwhelpoutland", + }, + { + children = { + { + fileId = "123629", + text = "dragonwhelpoutlandcute.m2", + value = "dragonwhelpoutlandcute.m2", + }, + }, + text = "dragonwhelpoutlandcute", + value = "dragonwhelpoutlandcute", + }, + { + children = { + { + fileId = "5201776", + text = "dragonwhelpwrathionclassic.m2", + value = "dragonwhelpwrathionclassic.m2", + }, + }, + text = "dragonwhelpwrathionclassic", + value = "dragonwhelpwrathionclassic", + }, + { + children = { + { + fileId = "123636", + text = "drake.m2", + value = "drake.m2", + }, + { + fileId = "234554", + text = "northrenddrake.m2", + value = "northrenddrake.m2", + }, + { + fileId = "123661", + text = "orcdrakerider.m2", + value = "orcdrakerider.m2", + }, + }, + text = "drake", + value = "drake", + }, + { + children = { + { + fileId = "123664", + text = "drakeadon.m2", + value = "drakeadon.m2", + }, + }, + text = "drakeadon", + value = "drakeadon", + }, + { + children = { + { + fileId = "123666", + text = "drakedarkshade.m2", + value = "drakedarkshade.m2", + }, + }, + text = "drakedarkshade", + value = "drakedarkshade", + }, + { + children = { + { + fileId = "234564", + text = "drakemount.m2", + value = "drakemount.m2", + }, + }, + text = "drakemount", + value = "drakemount", + }, + { + children = { + { + fileId = "123673", + text = "dreadlord.m2", + value = "dreadlord.m2", + }, + }, + text = "dreadlord", + value = "dreadlord", + }, + { + children = { + { + fileId = "123678", + text = "druidbear.m2", + value = "druidbear.m2", + }, + { + fileId = "307528", + text = "druidbear_legacy.m2", + value = "druidbear_legacy.m2", + }, + { + fileId = "123680", + text = "druidbeartauren.m2", + value = "druidbeartauren.m2", + }, + { + fileId = "307527", + text = "druidbeartauren_legacy.m2", + value = "druidbeartauren_legacy.m2", + }, + }, + text = "druidbear", + value = "druidbear", + }, + { + children = { + { + fileId = "123682", + text = "druidcat.m2", + value = "druidcat.m2", + }, + { + fileId = "307529", + text = "druidcat_legacy.m2", + value = "druidcat_legacy.m2", + }, + }, + text = "druidcat", + value = "druidcat", + }, + { + children = { + { + fileId = "123688", + text = "druidcattauren.m2", + value = "druidcattauren.m2", + }, + { + fileId = "307530", + text = "druidcattauren_legacy.m2", + value = "druidcattauren_legacy.m2", + }, + }, + text = "druidcattauren", + value = "druidcattauren", + }, + { + children = { + { + fileId = "123690", + text = "druidowlbear.m2", + value = "druidowlbear.m2", + }, + { + fileId = "123695", + text = "druidowlbeartauren.m2", + value = "druidowlbeartauren.m2", + }, + }, + text = "druidowlbear", + value = "druidowlbear", + }, + { + children = { + { + fileId = "123698", + text = "dryad.m2", + value = "dryad.m2", + }, + }, + text = "dryad", + value = "dryad", + }, + { + children = { + { + fileId = "123705", + text = "dryder.m2", + value = "dryder.m2", + }, + }, + text = "dryder", + value = "dryder", + }, + { + children = { + { + fileId = "123708", + text = "dwarfmalewarriorlight.m2", + value = "dwarfmalewarriorlight.m2", + }, + { + fileId = "123709", + text = "dwarfmalewarriorlight_ghost.m2", + value = "dwarfmalewarriorlight_ghost.m2", + }, + }, + text = "dwarfmalewarriorlight", + value = "dwarfmalewarriorlight", + }, + { + children = { + { + fileId = "123715", + text = "eagle.m2", + value = "eagle.m2", + }, + }, + text = "eagle", + value = "eagle", + }, + { + children = { + { + fileId = "123719", + text = "eaglegod.m2", + value = "eaglegod.m2", + }, + }, + text = "eaglegod", + value = "eaglegod", + }, + { + children = { + { + fileId = "234599", + text = "earthendwarf.m2", + value = "earthendwarf.m2", + }, + }, + text = "earthendwarf", + value = "earthendwarf", + }, + { + children = { + { + fileId = "123722", + text = "eggcreature.m2", + value = "eggcreature.m2", + }, + }, + text = "egg", + value = "egg", + }, + { + children = { + { + fileId = "123729", + text = "elekk.m2", + value = "elekk.m2", + }, + { + fileId = "123730", + text = "elekkwild.m2", + value = "elekkwild.m2", + }, + }, + text = "elekk", + value = "elekk", + }, + { + children = { + { + fileId = "123747", + text = "elementalearth.m2", + value = "elementalearth.m2", + }, + }, + text = "elementalearth", + value = "elementalearth", + }, + { + children = { + { + fileId = "2199352", + text = "poisonelemental.m2", + value = "poisonelemental.m2", + }, + }, + text = "elementalpoison", + value = "elementalpoison", + }, + { + children = { + { + fileId = "123756", + text = "ent.m2", + value = "ent.m2", + }, + }, + text = "ent", + value = "ent", + }, + { + children = { + { + fileId = "123766", + text = "epicdruidflightalliance.m2", + value = "epicdruidflightalliance.m2", + }, + }, + text = "epicdruidflightalliance", + value = "epicdruidflightalliance", + }, + { + children = { + { + fileId = "123767", + text = "epicdruidflighthorde.m2", + value = "epicdruidflighthorde.m2", + }, + }, + text = "epicdruidflighthorde", + value = "epicdruidflighthorde", + }, + { + children = { + { + fileId = "123769", + text = "archimonde.m2", + value = "archimonde.m2", + }, + { + fileId = "123772", + text = "eredar.m2", + value = "eredar.m2", + }, + }, + text = "eredar", + value = "eredar", + }, + { + children = { + { + fileId = "123788", + text = "eredarfemale.m2", + value = "eredarfemale.m2", + }, + }, + text = "eredarfemale", + value = "eredarfemale", + }, + { + children = { + { + fileId = "123791", + text = "etherial.m2", + value = "etherial.m2", + }, + }, + text = "etherial", + value = "etherial", + }, + { + children = { + { + fileId = "123799", + text = "etherialrobe.m2", + value = "etherialrobe.m2", + }, + }, + text = "etherialrobe", + value = "etherialrobe", + }, + { + children = { + { + fileId = "123808", + text = "eyeofkathune.m2", + value = "eyeofkathune.m2", + }, + }, + text = "eyeofkathune", + value = "eyeofkathune", + }, + { + children = { + { + fileId = "123814", + text = "eyestalkofkathune.m2", + value = "eyestalkofkathune.m2", + }, + }, + text = "eyestalkofkathune", + value = "eyestalkofkathune", + }, + { + children = { + { + fileId = "250582", + text = "facelessgeneral.m2", + value = "facelessgeneral.m2", + }, + }, + text = "facelessgeneral", + value = "facelessgeneral", + }, + { + children = { + { + fileId = "234606", + text = "facelessone.m2", + value = "facelessone.m2", + }, + }, + text = "facelessone", + value = "facelessone", + }, + { + children = { + { + fileId = "123816", + text = "faeriedragon.m2", + value = "faeriedragon.m2", + }, + { + fileId = "123818", + text = "faeriedragon_ghost.m2", + value = "faeriedragon_ghost.m2", + }, + }, + text = "faeriedragon", + value = "faeriedragon", + }, + { + children = { + { + fileId = "123821", + text = "batrider.m2", + value = "batrider.m2", + }, + { + fileId = "123830", + text = "battaxi.m2", + value = "battaxi.m2", + }, + { + fileId = "123831", + text = "felbat.m2", + value = "felbat.m2", + }, + }, + text = "felbat", + value = "felbat", + }, + { + children = { + { + fileId = "329424", + text = "corehoundpet.m2", + value = "corehoundpet.m2", + }, + { + fileId = "123834", + text = "felbeast.m2", + value = "felbeast.m2", + }, + }, + text = "felbeast", + value = "felbeast", + }, + { + children = { + { + fileId = "123837", + text = "felbeastshadowmoon.m2", + value = "felbeastshadowmoon.m2", + }, + }, + text = "felbeastshadowmoon", + value = "felbeastshadowmoon", + }, + { + children = { + { + fileId = "123839", + text = "felboar.m2", + value = "felboar.m2", + }, + }, + text = "felboar", + value = "felboar", + }, + { + children = { + { + fileId = "123845", + text = "felcannon.m2", + value = "felcannon.m2", + }, + { + fileId = "123846", + text = "felcannon_02.m2", + value = "felcannon_02.m2", + }, + }, + text = "felcannon", + value = "felcannon", + }, + { + children = { + { + fileId = "123847", + text = "felelfcasterfemale.m2", + value = "felelfcasterfemale.m2", + }, + }, + text = "felelfcasterfemale", + value = "felelfcasterfemale", + }, + { + children = { + { + fileId = "123852", + text = "felelfcastermale.m2", + value = "felelfcastermale.m2", + }, + }, + text = "felelfcastermale", + value = "felelfcastermale", + }, + { + children = { + { + fileId = "123856", + text = "felelfhunterfemale.m2", + value = "felelfhunterfemale.m2", + }, + }, + text = "felelfhunterfemale", + value = "felelfhunterfemale", + }, + { + children = { + { + fileId = "123862", + text = "felelfwarriormale.m2", + value = "felelfwarriormale.m2", + }, + }, + text = "felelfwarriormale", + value = "felelfwarriormale", + }, + { + children = { + { + fileId = "123869", + text = "felgolem.m2", + value = "felgolem.m2", + }, + }, + text = "felgolem", + value = "felgolem", + }, + { + children = { + { + fileId = "123870", + text = "felguard.m2", + value = "felguard.m2", + }, + }, + text = "felguard", + value = "felguard", + }, + { + children = { + { + fileId = "123876", + text = "felhorseepic.m2", + value = "felhorseepic.m2", + }, + }, + text = "felhorse", + value = "felhorse", + }, + { + children = { + { + fileId = "123878", + text = "felhound.m2", + value = "felhound.m2", + }, + }, + text = "felhound", + value = "felhound", + }, + { + children = { + { + fileId = "123880", + text = "felorc.m2", + value = "felorc.m2", + }, + { + fileId = "123882", + text = "felorc_axe.m2", + value = "felorc_axe.m2", + }, + { + fileId = "123887", + text = "felorc_sword.m2", + value = "felorc_sword.m2", + }, + }, + text = "felorc", + value = "felorc", + }, + { + children = { + { + fileId = "123893", + text = "felorcwarrioraxe.m2", + value = "felorcwarrioraxe.m2", + }, + }, + text = "felorcaxe", + value = "felorcaxe", + }, + { + children = { + { + fileId = "123900", + text = "felorcwarriorboss.m2", + value = "felorcwarriorboss.m2", + }, + }, + text = "felorcboss", + value = "felorcboss", + }, + { + children = { + { + fileId = "123901", + text = "felorcdire.m2", + value = "felorcdire.m2", + }, + }, + text = "felorcdire", + value = "felorcdire", + }, + { + children = { + { + fileId = "123906", + text = "felorcnetherdrake.m2", + value = "felorcnetherdrake.m2", + }, + { + fileId = "123908", + text = "felorcnetherdrakemounted.m2", + value = "felorcnetherdrakemounted.m2", + }, + }, + text = "felorcnetherdrake", + value = "felorcnetherdrake", + }, + { + children = { + { + fileId = "123915", + text = "felorcwarriorsword.m2", + value = "felorcwarriorsword.m2", + }, + }, + text = "felorcsword", + value = "felorcsword", + }, + { + children = { + { + fileId = "123918", + text = "felorcwarlord.m2", + value = "felorcwarlord.m2", + }, + }, + text = "felorcwarlord", + value = "felorcwarlord", + }, + { + children = { + { + fileId = "123929", + text = "felreaver.m2", + value = "felreaver.m2", + }, + }, + text = "felreaver", + value = "felreaver", + }, + { + children = { + { + fileId = "123931", + text = "firedancer.m2", + value = "firedancer.m2", + }, + }, + text = "firedancer", + value = "firedancer", + }, + { + children = { + { + fileId = "123934", + text = "fireelemental.m2", + value = "fireelemental.m2", + }, + { + fileId = "2199522", + text = "fireelementalgreen.m2", + value = "fireelementalgreen.m2", + }, + }, + text = "fireelemental", + value = "fireelemental", + }, + { + children = { + { + fileId = "123939", + text = "fireflygreen.m2", + value = "fireflygreen.m2", + }, + }, + text = "firefly", + value = "firefly", + }, + { + children = { + { + fileId = "123944", + text = "firesprite.m2", + value = "firesprite.m2", + }, + }, + text = "firesprite", + value = "firesprite", + }, + { + children = { + { + fileId = "123947", + text = "fish.m2", + value = "fish.m2", + }, + }, + text = "fish", + value = "fish", + }, + { + children = { + { + fileId = "254704", + text = "defenseturret.m2", + value = "defenseturret.m2", + }, + { + fileId = "253406", + text = "flameleviathan.m2", + value = "flameleviathan.m2", + }, + { + fileId = "254424", + text = "flameleviathan_weapon_cannon.m2", + value = "flameleviathan_weapon_cannon.m2", + }, + }, + text = "flameleviathan", + value = "flameleviathan", + }, + { + children = { + { + fileId = "123949", + text = "fleshbeast.m2", + value = "fleshbeast.m2", + }, + }, + text = "fleshbeast", + value = "fleshbeast", + }, + { + children = { + { + fileId = "123952", + text = "fleshgiant.m2", + value = "fleshgiant.m2", + }, + }, + text = "fleshgiant", + value = "fleshgiant", + }, + { + children = { + { + fileId = "123961", + text = "fleshgolem.m2", + value = "fleshgolem.m2", + }, + }, + text = "fleshgolem", + value = "fleshgolem", + }, + { + children = { + { + fileId = "123972", + text = "fleshtitan.m2", + value = "fleshtitan.m2", + }, + }, + text = "fleshtitan", + value = "fleshtitan", + }, + { + children = { + { + fileId = "123975", + text = "flyingbomber.m2", + value = "flyingbomber.m2", + }, + { + fileId = "234612", + text = "flyingbomber_02.m2", + value = "flyingbomber_02.m2", + }, + { + fileId = "234613", + text = "flyingbomber_02nosmoke.m2", + value = "flyingbomber_02nosmoke.m2", + }, + { + fileId = "234614", + text = "flyingbomber_nosmoke.m2", + value = "flyingbomber_nosmoke.m2", + }, + }, + text = "flyingbomber", + value = "flyingbomber", + }, + { + children = { + { + fileId = "234619", + text = "flyingcarpetmount.m2", + value = "flyingcarpetmount.m2", + }, + }, + text = "flyingcarpetmount", + value = "flyingcarpetmount", + }, + { + children = { + { + fileId = "123977", + text = "flyingmachinecreature.m2", + value = "flyingmachinecreature.m2", + }, + }, + text = "flyingmachinecreature", + value = "flyingmachinecreature", + }, + { + children = { + { + fileId = "123979", + text = "flyingmachinecreature_vehicle.m2", + value = "flyingmachinecreature_vehicle.m2", + }, + }, + text = "flyingmachinecreature_vehicle", + value = "flyingmachinecreature_vehicle", + }, + { + children = { + { + fileId = "123980", + text = "flyingnerubian.m2", + value = "flyingnerubian.m2", + }, + }, + text = "flyingnerubian", + value = "flyingnerubian", + }, + { + children = { + { + fileId = "123987", + text = "flyingreindeer.m2", + value = "flyingreindeer.m2", + }, + }, + text = "flyingreindeer", + value = "flyingreindeer", + }, + { + children = { + { + fileId = "123990", + text = "forceofnature.m2", + value = "forceofnature.m2", + }, + }, + text = "forceofnature", + value = "forceofnature", + }, + { + children = { + { + fileId = "124001", + text = "foresttroll.m2", + value = "foresttroll.m2", + }, + }, + text = "foresttroll", + value = "foresttroll", + }, + { + children = { + { + fileId = "124003", + text = "forsakencatapult.m2", + value = "forsakencatapult.m2", + }, + }, + text = "forsakencatapult", + value = "forsakencatapult", + }, + { + children = { + { + fileId = "252758", + text = "freia.m2", + value = "freia.m2", + }, + }, + text = "freia", + value = "freia", + }, + { + children = { + { + fileId = "124004", + text = "frenzy.m2", + value = "frenzy.m2", + }, + }, + text = "frenzy", + value = "frenzy", + }, + { + children = { + { + fileId = "367326", + text = "arrowfrog.m2", + value = "arrowfrog.m2", + }, + { + fileId = "124008", + text = "frog.m2", + value = "frog.m2", + }, + }, + text = "frog", + value = "frog", + }, + { + children = { + { + fileId = "124014", + text = "frostlord.m2", + value = "frostlord.m2", + }, + { + fileId = "124022", + text = "frostlordcore.m2", + value = "frostlordcore.m2", + }, + }, + text = "frostlord", + value = "frostlord", + }, + { + children = { + { + fileId = "124025", + text = "frostnymph.m2", + value = "frostnymph.m2", + }, + }, + text = "frostnymph", + value = "frostnymph", + }, + { + children = { + { + fileId = "124036", + text = "frostsabre.m2", + value = "frostsabre.m2", + }, + { + fileId = "124038", + text = "pvpridingfrostsabre.m2", + value = "pvpridingfrostsabre.m2", + }, + { + fileId = "124052", + text = "ridingfrostsabre.m2", + value = "ridingfrostsabre.m2", + }, + }, + text = "frostsabre", + value = "frostsabre", + }, + { + children = { + { + fileId = "234622", + text = "frostvrykulmale.m2", + value = "frostvrykulmale.m2", + }, + }, + text = "frostvrykulmale", + value = "frostvrykulmale", + }, + { + children = { + { + fileId = "124077", + text = "frostwurm.m2", + value = "frostwurm.m2", + }, + { + fileId = "124078", + text = "frostwurm_nofrost.m2", + value = "frostwurm_nofrost.m2", + }, + }, + text = "frostwurm", + value = "frostwurm", + }, + { + children = { + { + fileId = "124084", + text = "frostwurmfellfire.m2", + value = "frostwurmfellfire.m2", + }, + }, + text = "frostwurmfellfire", + value = "frostwurmfellfire", + }, + { + children = { + { + fileId = "124093", + text = "frostwurmnorthrend.m2", + value = "frostwurmnorthrend.m2", + }, + }, + text = "frostwurmnorthrend", + value = "frostwurmnorthrend", + }, + { + children = { + { + fileId = "124095", + text = "frostwyrmpet.m2", + value = "frostwyrmpet.m2", + }, + }, + text = "frostwyrmpet", + value = "frostwyrmpet", + }, + { + children = { + { + fileId = "306604", + text = "fuelrobot.m2", + value = "fuelrobot.m2", + }, + }, + text = "fuelrobot", + value = "fuelrobot", + }, + { + children = { + { + fileId = "124096", + text = "fungalgiant.m2", + value = "fungalgiant.m2", + }, + }, + text = "fungalgiant", + value = "fungalgiant", + }, + { + children = { + { + fileId = "124110", + text = "fungalmonster.m2", + value = "fungalmonster.m2", + }, + }, + text = "fungalmonster", + value = "fungalmonster", + }, + { + children = { + { + fileId = "124118", + text = "furbolg.m2", + value = "furbolg.m2", + }, + }, + text = "furbolg", + value = "furbolg", + }, + { + children = { + { + fileId = "124131", + text = "gargoyle.m2", + value = "gargoyle.m2", + }, + }, + text = "gargoyle", + value = "gargoyle", + }, + { + children = { + { + fileId = "124148", + text = "gazelle.m2", + value = "gazelle.m2", + }, + }, + text = "gazelle", + value = "gazelle", + }, + { + children = { + { + fileId = "124153", + text = "geist.m2", + value = "geist.m2", + }, + }, + text = "geist", + value = "geist", + }, + { + children = { + { + fileId = "124155", + text = "ghost.m2", + value = "ghost.m2", + }, + }, + text = "ghost", + value = "ghost", + }, + { + children = { + { + fileId = "234638", + text = "ghostlyskullpet.m2", + value = "ghostlyskullpet.m2", + }, + }, + text = "ghostlyskullpet", + value = "ghostlyskullpet", + }, + { + children = { + { + fileId = "124160", + text = "ghoul.m2", + value = "ghoul.m2", + }, + { + fileId = "234639", + text = "ghoulnobirth.m2", + value = "ghoulnobirth.m2", + }, + }, + text = "ghoul", + value = "ghoul", + }, + { + children = { + { + fileId = "124166", + text = "giantspider.m2", + value = "giantspider.m2", + }, + }, + text = "giantspider", + value = "giantspider", + }, + { + children = { + { + fileId = "124169", + text = "giraffe.m2", + value = "giraffe.m2", + }, + }, + text = "giraffe", + value = "giraffe", + }, + { + children = { + { + fileId = "306229", + text = "glaivethrowervehicle.m2", + value = "glaivethrowervehicle.m2", + }, + }, + text = "glaivethrowervehicle", + value = "glaivethrowervehicle", + }, + { + children = { + { + fileId = "124173", + text = "gnoll.m2", + value = "gnoll.m2", + }, + }, + text = "gnoll", + value = "gnoll", + }, + { + children = { + { + fileId = "124186", + text = "gnollcaster.m2", + value = "gnollcaster.m2", + }, + }, + text = "gnollcaster", + value = "gnollcaster", + }, + { + children = { + { + fileId = "124192", + text = "gnollmelee.m2", + value = "gnollmelee.m2", + }, + }, + text = "gnollmelee", + value = "gnollmelee", + }, + { + children = { + { + fileId = "124198", + text = "gnome.m2", + value = "gnome.m2", + }, + }, + text = "gnome", + value = "gnome", + }, + { + children = { + { + fileId = "253324", + text = "gnomecopter.m2", + value = "gnomecopter.m2", + }, + }, + text = "gnomecopter", + value = "gnomecopter", + }, + { + children = { + { + fileId = "124203", + text = "gnomerocketcar.m2", + value = "gnomerocketcar.m2", + }, + }, + text = "gnomerocketcar", + value = "gnomerocketcar", + }, + { + children = { + { + fileId = "124204", + text = "gnomealertbot.m2", + value = "gnomealertbot.m2", + }, + { + fileId = "124207", + text = "gnomebombot.m2", + value = "gnomebombot.m2", + }, + { + fileId = "124208", + text = "gnomebot.m2", + value = "gnomebot.m2", + }, + { + fileId = "124209", + text = "gnomepounder.m2", + value = "gnomepounder.m2", + }, + { + fileId = "234640", + text = "gnomepoundervehicle.m2", + value = "gnomepoundervehicle.m2", + }, + { + fileId = "124210", + text = "gnomespidertank.m2", + value = "gnomespidertank.m2", + }, + { + fileId = "124211", + text = "gnomespidertank02.m2", + value = "gnomespidertank02.m2", + }, + }, + text = "gnomespidertank", + value = "gnomespidertank", + }, + { + children = { + { + fileId = "124224", + text = "goblin.m2", + value = "goblin.m2", + }, + { + fileId = "124225", + text = "goblinshredder.m2", + value = "goblinshredder.m2", + }, + }, + text = "goblin", + value = "goblin", + }, + { + children = { + { + fileId = "234641", + text = "goblin_cannon.m2", + value = "goblin_cannon.m2", + }, + }, + text = "goblin_cannon", + value = "goblin_cannon", + }, + { + children = { + { + fileId = "124234", + text = "goblinrocketcar.m2", + value = "goblinrocketcar.m2", + }, + }, + text = "goblinrocketcar", + value = "goblinrocketcar", + }, + { + children = { + { + fileId = "234642", + text = "goblinshreddermount.m2", + value = "goblinshreddermount.m2", + }, + }, + text = "goblinshreddermount", + value = "goblinshreddermount", + }, + { + children = { + { + fileId = "124235", + text = "golemharvest.m2", + value = "golemharvest.m2", + }, + }, + text = "golemharvest", + value = "golemharvest", + }, + { + children = { + { + fileId = "124243", + text = "golemharveststage2.m2", + value = "golemharveststage2.m2", + }, + }, + text = "golemharveststage2", + value = "golemharveststage2", + }, + { + children = { + { + fileId = "234649", + text = "golemcannoniron.m2", + value = "golemcannoniron.m2", + }, + { + fileId = "234650", + text = "golemiron.m2", + value = "golemiron.m2", + }, + }, + text = "golemiron", + value = "golemiron", + }, + { + children = { + { + fileId = "124247", + text = "golemcannonstone.m2", + value = "golemcannonstone.m2", + }, + { + fileId = "124248", + text = "golemstone.m2", + value = "golemstone.m2", + }, + }, + text = "golemstone", + value = "golemstone", + }, + { + children = { + { + fileId = "124263", + text = "gorilla.m2", + value = "gorilla.m2", + }, + { + fileId = "124265", + text = "gorillapet.m2", + value = "gorillapet.m2", + }, + }, + text = "gorilla", + value = "gorilla", + }, + { + children = { + { + fileId = "124272", + text = "grell.m2", + value = "grell.m2", + }, + }, + text = "grell", + value = "grell", + }, + { + children = { + { + fileId = "124280", + text = "gronn.m2", + value = "gronn.m2", + }, + }, + text = "gronn", + value = "gronn", + }, + { + children = { + { + fileId = "124289", + text = "groundflower.m2", + value = "groundflower.m2", + }, + }, + text = "groundflower", + value = "groundflower", + }, + { + children = { + { + fileId = "124290", + text = "gryphon.m2", + value = "gryphon.m2", + }, + { + fileId = "124292", + text = "gryphon_armored.m2", + value = "gryphon_armored.m2", + }, + { + fileId = "124293", + text = "gryphon_armoredmount.m2", + value = "gryphon_armoredmount.m2", + }, + { + fileId = "124297", + text = "gryphon_ghost.m2", + value = "gryphon_ghost.m2", + }, + { + fileId = "234656", + text = "gryphon_ghost_mount.m2", + value = "gryphon_ghost_mount.m2", + }, + { + fileId = "124298", + text = "gryphon_mount.m2", + value = "gryphon_mount.m2", + }, + { + fileId = "124299", + text = "gryphon_skeletal.m2", + value = "gryphon_skeletal.m2", + }, + { + fileId = "234657", + text = "gryphon_skeletal_mount.m2", + value = "gryphon_skeletal_mount.m2", + }, + }, + text = "gryphon", + value = "gryphon", + }, + { + children = { + { + fileId = "327734", + text = "gryphonpet.m2", + value = "gryphonpet.m2", + }, + }, + text = "gryphonpet", + value = "gryphonpet", + }, + { + children = { + { + fileId = "124313", + text = "gyrocopter_01.m2", + value = "gyrocopter_01.m2", + }, + { + fileId = "124315", + text = "gyrocopter_02.m2", + value = "gyrocopter_02.m2", + }, + }, + text = "gyrocopter", + value = "gyrocopter", + }, + { + children = { + { + fileId = "124317", + text = "hakkar.m2", + value = "hakkar.m2", + }, + }, + text = "hakkar", + value = "hakkar", + }, + { + children = { + { + fileId = "124324", + text = "halfbodyofkathune.m2", + value = "halfbodyofkathune.m2", + }, + }, + text = "halfbodyofkathune", + value = "halfbodyofkathune", + }, + { + children = { + { + fileId = "124325", + text = "haremmatron.m2", + value = "haremmatron.m2", + }, + }, + text = "haremmatron", + value = "haremmatron", + }, + { + children = { + { + fileId = "234662", + text = "harkoa.m2", + value = "harkoa.m2", + }, + }, + text = "harkoa", + value = "harkoa", + }, + { + children = { + { + fileId = "124328", + text = "vr_harpoon_01.m2", + value = "vr_harpoon_01.m2", + }, + }, + text = "harpoon", + value = "harpoon", + }, + { + children = { + { + fileId = "124329", + text = "harpy.m2", + value = "harpy.m2", + }, + }, + text = "harpy", + value = "harpy", + }, + { + children = { + { + fileId = "124342", + text = "headlesshorseman.m2", + value = "headlesshorseman.m2", + }, + }, + text = "headlesshorseman", + value = "headlesshorseman", + }, + { + children = { + { + fileId = "124345", + text = "headlesshorsemanhorse.m2", + value = "headlesshorsemanhorse.m2", + }, + }, + text = "headlesshorsemanhorse", + value = "headlesshorsemanhorse", + }, + { + children = { + { + fileId = "124348", + text = "headlesshorsemanmount.m2", + value = "headlesshorsemanmount.m2", + }, + }, + text = "headlesshorsemanmount", + value = "headlesshorsemanmount", + }, + { + children = { + { + fileId = "234664", + text = "hhgroundmount.m2", + value = "hhgroundmount.m2", + }, + }, + text = "hhgroundmount", + value = "hhgroundmount", + }, + { + children = { + { + fileId = "124351", + text = "hhmount.m2", + value = "hhmount.m2", + }, + }, + text = "hhmount", + value = "hhmount", + }, + { + children = { + { + fileId = "124366", + text = "highelffemale_hunter.m2", + value = "highelffemale_hunter.m2", + }, + { + fileId = "124367", + text = "highelffemale_mage.m2", + value = "highelffemale_mage.m2", + }, + { + fileId = "124368", + text = "highelffemale_priest.m2", + value = "highelffemale_priest.m2", + }, + { + fileId = "124369", + text = "highelffemale_warrior.m2", + value = "highelffemale_warrior.m2", + }, + { + fileId = "124377", + text = "highelfmale_hunter.m2", + value = "highelfmale_hunter.m2", + }, + { + fileId = "124378", + text = "highelfmale_mage.m2", + value = "highelfmale_mage.m2", + }, + { + fileId = "124379", + text = "highelfmale_priest.m2", + value = "highelfmale_priest.m2", + }, + { + fileId = "124380", + text = "highelfmale_warrior.m2", + value = "highelfmale_warrior.m2", + }, + }, + text = "highelf", + value = "highelf", + }, + { + children = { + { + fileId = "366703", + text = "burnthippogryph.m2", + value = "burnthippogryph.m2", + }, + { + fileId = "124387", + text = "hippogryph.m2", + value = "hippogryph.m2", + }, + { + fileId = "124393", + text = "hippogryphpet.m2", + value = "hippogryphpet.m2", + }, + }, + text = "hippogryph", + value = "hippogryph", + }, + { + children = { + { + fileId = "124410", + text = "hippogryphmount.m2", + value = "hippogryphmount.m2", + }, + }, + text = "hippogryphmount", + value = "hippogryphmount", + }, + { + children = { + { + fileId = "252761", + text = "hodir.m2", + value = "hodir.m2", + }, + }, + text = "hodir", + value = "hodir", + }, + { + children = { + { + fileId = "124417", + text = "holidayrobot.m2", + value = "holidayrobot.m2", + }, + }, + text = "holidayrobot", + value = "holidayrobot", + }, + { + children = { + { + fileId = "234665", + text = "hordedeckgun.m2", + value = "hordedeckgun.m2", + }, + }, + text = "hordedeckgun", + value = "hordedeckgun", + }, + { + children = { + { + fileId = "124421", + text = "horderider.m2", + value = "horderider.m2", + }, + }, + text = "horderider", + value = "horderider", + }, + { + children = { + { + fileId = "124424", + text = "horisath.m2", + value = "horisath.m2", + }, + }, + text = "horisath", + value = "horisath", + }, + { + children = { + { + fileId = "124427", + text = "horse.m2", + value = "horse.m2", + }, + }, + text = "horse", + value = "horse", + }, + { + children = { + { + fileId = "124437", + text = "hufmcitizenlow.m2", + value = "hufmcitizenlow.m2", + }, + }, + text = "hufmcitizenlow", + value = "hufmcitizenlow", + }, + { + children = { + { + fileId = "124440", + text = "hufmcitizenmid.m2", + value = "hufmcitizenmid.m2", + }, + }, + text = "hufmcitizenmid", + value = "hufmcitizenmid", + }, + { + children = { + { + fileId = "124442", + text = "hufmmerchant.m2", + value = "hufmmerchant.m2", + }, + }, + text = "hufmmerchant", + value = "hufmmerchant", + }, + { + children = { + { + fileId = "124444", + text = "humanfemaleblacksmith.m2", + value = "humanfemaleblacksmith.m2", + }, + }, + text = "humanfemaleblacksmith", + value = "humanfemaleblacksmith", + }, + { + children = { + { + fileId = "124448", + text = "humanfemalecaster.m2", + value = "humanfemalecaster.m2", + }, + }, + text = "humanfemalecaster", + value = "humanfemalecaster", + }, + { + children = { + { + fileId = "124452", + text = "humanfemalefarmer.m2", + value = "humanfemalefarmer.m2", + }, + }, + text = "humanfemalefarmer", + value = "humanfemalefarmer", + }, + { + children = { + { + fileId = "124456", + text = "humanfemalekid.m2", + value = "humanfemalekid.m2", + }, + }, + text = "humanfemalekid", + value = "humanfemalekid", + }, + { + children = { + { + fileId = "124463", + text = "humanfemalemerchantfat.m2", + value = "humanfemalemerchantfat.m2", + }, + }, + text = "humanfemalemerchantfat", + value = "humanfemalemerchantfat", + }, + { + children = { + { + fileId = "124467", + text = "humanfemalemerchantthin.m2", + value = "humanfemalemerchantthin.m2", + }, + }, + text = "humanfemalemerchantthin", + value = "humanfemalemerchantthin", + }, + { + children = { + { + fileId = "124468", + text = "humanfemalepeasant.m2", + value = "humanfemalepeasant.m2", + }, + }, + text = "humanfemalepeasant", + value = "humanfemalepeasant", + }, + { + children = { + { + fileId = "124472", + text = "humanfemalewarriorheavy.m2", + value = "humanfemalewarriorheavy.m2", + }, + }, + text = "humanfemalewarriorheavy", + value = "humanfemalewarriorheavy", + }, + { + children = { + { + fileId = "124475", + text = "humanfemalewarriorlight.m2", + value = "humanfemalewarriorlight.m2", + }, + }, + text = "humanfemalewarriorlight", + value = "humanfemalewarriorlight", + }, + { + children = { + { + fileId = "124478", + text = "humanfemalewarriormedium.m2", + value = "humanfemalewarriormedium.m2", + }, + }, + text = "humanfemalewarriormedium", + value = "humanfemalewarriormedium", + }, + { + children = { + { + fileId = "124482", + text = "humanmaleblacksmith.m2", + value = "humanmaleblacksmith.m2", + }, + }, + text = "humanmaleblacksmith", + value = "humanmaleblacksmith", + }, + { + children = { + { + fileId = "124485", + text = "humanmalecaster.m2", + value = "humanmalecaster.m2", + }, + }, + text = "humanmalecaster", + value = "humanmalecaster", + }, + { + children = { + { + fileId = "124490", + text = "humanmalefarmer.m2", + value = "humanmalefarmer.m2", + }, + }, + text = "humanmalefarmer", + value = "humanmalefarmer", + }, + { + children = { + { + fileId = "124494", + text = "humanmaleguard.m2", + value = "humanmaleguard.m2", + }, + }, + text = "humanmaleguard", + value = "humanmaleguard", + }, + { + children = { + { + fileId = "254782", + text = "argentsquirehumanmalekid.m2", + value = "argentsquirehumanmalekid.m2", + }, + { + fileId = "254784", + text = "argentsquirehumanmalekid_bp.m2", + value = "argentsquirehumanmalekid_bp.m2", + }, + { + fileId = "124495", + text = "humanmalekid.m2", + value = "humanmalekid.m2", + }, + { + fileId = "124496", + text = "humanmalekid_ghost.m2", + value = "humanmalekid_ghost.m2", + }, + }, + text = "humanmalekid", + value = "humanmalekid", + }, + { + children = { + { + fileId = "124500", + text = "humanmalemarshal.m2", + value = "humanmalemarshal.m2", + }, + }, + text = "humanmalemarshal", + value = "humanmalemarshal", + }, + { + children = { + { + fileId = "124506", + text = "humanmalenoble.m2", + value = "humanmalenoble.m2", + }, + }, + text = "humanmalenoble", + value = "humanmalenoble", + }, + { + children = { + { + fileId = "124507", + text = "humanmalepeasant.m2", + value = "humanmalepeasant.m2", + }, + { + fileId = "124508", + text = "humanmalepeasantaxe.m2", + value = "humanmalepeasantaxe.m2", + }, + { + fileId = "124509", + text = "humanmalepeasantgold.m2", + value = "humanmalepeasantgold.m2", + }, + { + fileId = "124512", + text = "humanmalepeasantpick.m2", + value = "humanmalepeasantpick.m2", + }, + { + fileId = "124515", + text = "humanmalepeasantwood.m2", + value = "humanmalepeasantwood.m2", + }, + }, + text = "humanmalepeasant", + value = "humanmalepeasant", + }, + { + children = { + { + fileId = "124516", + text = "humanmalepiratecaptain.m2", + value = "humanmalepiratecaptain.m2", + }, + { + fileId = "124517", + text = "humanmalepiratecaptain_ghost.m2", + value = "humanmalepiratecaptain_ghost.m2", + }, + }, + text = "humanmalepiratecaptain", + value = "humanmalepiratecaptain", + }, + { + children = { + { + fileId = "124521", + text = "humanmalepiratecrewman.m2", + value = "humanmalepiratecrewman.m2", + }, + { + fileId = "124522", + text = "humanmalepiratecrewman_ghost.m2", + value = "humanmalepiratecrewman_ghost.m2", + }, + }, + text = "humanmalepiratecrewman", + value = "humanmalepiratecrewman", + }, + { + children = { + { + fileId = "124533", + text = "humanmalepirateswashbuckler.m2", + value = "humanmalepirateswashbuckler.m2", + }, + { + fileId = "124534", + text = "humanmalepirateswashbuckler_ghost.m2", + value = "humanmalepirateswashbuckler_ghost.m2", + }, + }, + text = "humanmalepirateswashbuckler", + value = "humanmalepirateswashbuckler", + }, + { + children = { + { + fileId = "124540", + text = "humanmalewarriorheavy.m2", + value = "humanmalewarriorheavy.m2", + }, + { + fileId = "124541", + text = "humanmalewarriorheavy_ghost.m2", + value = "humanmalewarriorheavy_ghost.m2", + }, + }, + text = "humanmalewarriorheavy", + value = "humanmalewarriorheavy", + }, + { + children = { + { + fileId = "124544", + text = "humanmalewarriorlight.m2", + value = "humanmalewarriorlight.m2", + }, + }, + text = "humanmalewarriorlight", + value = "humanmalewarriorlight", + }, + { + children = { + { + fileId = "124547", + text = "humanmalewarriormedium.m2", + value = "humanmalewarriormedium.m2", + }, + }, + text = "humanmalewarriormedium", + value = "humanmalewarriormedium", + }, + { + children = { + { + fileId = "124552", + text = "humanmalewizard.m2", + value = "humanmalewizard.m2", + }, + }, + text = "humanmalewizard", + value = "humanmalewizard", + }, + { + children = { + { + fileId = "124553", + text = "humanthief.m2", + value = "humanthief.m2", + }, + }, + text = "humanthief", + value = "humanthief", + }, + { + children = { + { + fileId = "124565", + text = "humlblacksmith.m2", + value = "humlblacksmith.m2", + }, + }, + text = "humlblacksmith", + value = "humlblacksmith", + }, + { + children = { + { + fileId = "124566", + text = "humlcitizenmid.m2", + value = "humlcitizenmid.m2", + }, + }, + text = "humlcitizenmid", + value = "humlcitizenmid", + }, + { + children = { + { + fileId = "124569", + text = "humlmagicsmith.m2", + value = "humlmagicsmith.m2", + }, + }, + text = "humlmagicsmith", + value = "humlmagicsmith", + }, + { + children = { + { + fileId = "124571", + text = "humlmerchant.m2", + value = "humlmerchant.m2", + }, + }, + text = "humlmerchant", + value = "humlmerchant", + }, + { + children = { + { + fileId = "124572", + text = "humluppercitizen.m2", + value = "humluppercitizen.m2", + }, + }, + text = "humluppercitizen", + value = "humluppercitizen", + }, + { + children = { + { + fileId = "124576", + text = "humnguardbig.m2", + value = "humnguardbig.m2", + }, + }, + text = "humnguardbig", + value = "humnguardbig", + }, + { + children = { + { + fileId = "124578", + text = "humscitizenmid.m2", + value = "humscitizenmid.m2", + }, + }, + text = "humscitizenmid", + value = "humscitizenmid", + }, + { + children = { + { + fileId = "124579", + text = "humsguardbig.m2", + value = "humsguardbig.m2", + }, + }, + text = "humsguardbig", + value = "humsguardbig", + }, + { + children = { + { + fileId = "124580", + text = "humsmerchant.m2", + value = "humsmerchant.m2", + }, + }, + text = "humsmerchant", + value = "humsmerchant", + }, + { + children = { + { + fileId = "124581", + text = "hydra.m2", + value = "hydra.m2", + }, + }, + text = "hydra", + value = "hydra", + }, + { + children = { + { + fileId = "124591", + text = "hydraoutland.m2", + value = "hydraoutland.m2", + }, + }, + text = "hydraoutland", + value = "hydraoutland", + }, + { + children = { + { + fileId = "124601", + text = "hyena.m2", + value = "hyena.m2", + }, + }, + text = "hyena", + value = "hyena", + }, + { + children = { + { + fileId = "124610", + text = "iceberg.m2", + value = "iceberg.m2", + }, + }, + text = "iceberg", + value = "iceberg", + }, + { + children = { + { + fileId = "340028", + text = "icecrownfleshbeast.m2", + value = "icecrownfleshbeast.m2", + }, + }, + text = "icecrownfleshbeast", + value = "icecrownfleshbeast", + }, + { + children = { + { + fileId = "124612", + text = "illidan.m2", + value = "illidan.m2", + }, + { + fileId = "124614", + text = "illidandark.m2", + value = "illidandark.m2", + }, + }, + text = "illidan", + value = "illidan", + }, + { + children = { + { + fileId = "124618", + text = "creature_illidansglaive.m2", + value = "creature_illidansglaive.m2", + }, + }, + text = "illidanglaive", + value = "illidanglaive", + }, + { + children = { + { + fileId = "2199501", + text = "fireimp.m2", + value = "fireimp.m2", + }, + { + fileId = "124622", + text = "imp.m2", + value = "imp.m2", + }, + }, + text = "imp", + value = "imp", + }, + { + children = { + { + fileId = "124630", + text = "impoutland.m2", + value = "impoutland.m2", + }, + }, + text = "impoutland", + value = "impoutland", + }, + { + children = { + { + fileId = "4382565", + text = "incubus_low.m2", + value = "incubus_low.m2", + }, + }, + text = "incubus_low", + value = "incubus_low", + }, + { + children = { + { + fileId = "124637", + text = "infernal.m2", + value = "infernal.m2", + }, + }, + text = "infernal", + value = "infernal", + }, + { + children = { + { + fileId = "124639", + text = "invisibleman.m2", + value = "invisibleman.m2", + }, + }, + text = "invisibleman", + value = "invisibleman", + }, + { + children = { + { + fileId = "124640", + text = "invisiblestalker.m2", + value = "invisiblestalker.m2", + }, + { + fileId = "343863", + text = "invisiblestalker_noanims.m2", + value = "invisiblestalker_noanims.m2", + }, + { + fileId = "124641", + text = "invisiblestalkerground.m2", + value = "invisiblestalkerground.m2", + }, + { + fileId = "124642", + text = "invisiblestalkernoname.m2", + value = "invisiblestalkernoname.m2", + }, + }, + text = "invisiblestalker", + value = "invisiblestalker", + }, + { + children = { + { + fileId = "234666", + text = "irondwarf.m2", + value = "irondwarf.m2", + }, + { + fileId = "250585", + text = "irondwarf_low01.m2", + value = "irondwarf_low01.m2", + }, + { + fileId = "250586", + text = "irondwarf_low02.m2", + value = "irondwarf_low02.m2", + }, + }, + text = "irondwarf", + value = "irondwarf", + }, + { + children = { + { + fileId = "234679", + text = "ironvrykulmale.m2", + value = "ironvrykulmale.m2", + }, + }, + text = "ironvrykulmale", + value = "ironvrykulmale", + }, + { + children = { + { + fileId = "337875", + text = "jaina.m2", + value = "jaina.m2", + }, + }, + text = "jaina", + value = "jaina", + }, + { + children = { + { + fileId = "124643", + text = "jormungar.m2", + value = "jormungar.m2", + }, + }, + text = "jormungar", + value = "jormungar", + }, + { + children = { + { + fileId = "124649", + text = "jormungarlarva.m2", + value = "jormungarlarva.m2", + }, + }, + text = "jormungarlarva", + value = "jormungarlarva", + }, + { + children = { + { + fileId = "124652", + text = "kaelthas.m2", + value = "kaelthas.m2", + }, + }, + text = "kaelthas", + value = "kaelthas", + }, + { + children = { + { + fileId = "124656", + text = "kaelthasbroken.m2", + value = "kaelthasbroken.m2", + }, + }, + text = "kaelthas_broken", + value = "kaelthas_broken", + }, + { + children = { + { + fileId = "124659", + text = "kalecgos.m2", + value = "kalecgos.m2", + }, + }, + text = "kalecgos", + value = "kalecgos", + }, + { + children = { + { + fileId = "124667", + text = "kargath.m2", + value = "kargath.m2", + }, + }, + text = "kargath", + value = "kargath", + }, + { + children = { + { + fileId = "124670", + text = "keeperofthegrove.m2", + value = "keeperofthegrove.m2", + }, + }, + text = "keeperofthegrove", + value = "keeperofthegrove", + }, + { + children = { + { + fileId = "124677", + text = "kelthuzad.m2", + value = "kelthuzad.m2", + }, + { + fileId = "124678", + text = "kelthuzad_window_portal_creature.m2", + value = "kelthuzad_window_portal_creature.m2", + }, + }, + text = "kelthuzad", + value = "kelthuzad", + }, + { + children = { + { + fileId = "124682", + text = "kiljaeden.m2", + value = "kiljaeden.m2", + }, + }, + text = "kiljaeden", + value = "kiljaeden", + }, + { + children = { + { + fileId = "234694", + text = "kingvarianwrynn.m2", + value = "kingvarianwrynn.m2", + }, + }, + text = "kingvarianwrynn", + value = "kingvarianwrynn", + }, + { + children = { + { + fileId = "234697", + text = "kingymiron.m2", + value = "kingymiron.m2", + }, + }, + text = "kingymiron", + value = "kingymiron", + }, + { + children = { + { + fileId = "124691", + text = "kobold.m2", + value = "kobold.m2", + }, + }, + text = "kobold", + value = "kobold", + }, + { + children = { + { + fileId = "124694", + text = "kodobeast.m2", + value = "kodobeast.m2", + }, + { + fileId = "124695", + text = "kodobeastpack.m2", + value = "kodobeastpack.m2", + }, + { + fileId = "124696", + text = "kodobeastpvpt2.m2", + value = "kodobeastpvpt2.m2", + }, + { + fileId = "124697", + text = "kodobeasttame.m2", + value = "kodobeasttame.m2", + }, + { + fileId = "124711", + text = "ridingkodo.m2", + value = "ridingkodo.m2", + }, + }, + text = "kodobeast", + value = "kodobeast", + }, + { + children = { + { + fileId = "2198638", + text = "kodobeastpack.m2", + value = "kodobeastpack.m2", + }, + }, + text = "kodobeastpack", + value = "kodobeastpack", + }, + { + children = { + { + fileId = "2198601", + text = "kodobeasttame.m2", + value = "kodobeasttame.m2", + }, + }, + text = "kodobeasttame", + value = "kodobeasttame", + }, + { + children = { + { + fileId = "253273", + text = "koloarml.m2", + value = "koloarml.m2", + }, + { + fileId = "253274", + text = "koloarmr.m2", + value = "koloarmr.m2", + }, + { + fileId = "252162", + text = "kologarn.m2", + value = "kologarn.m2", + }, + }, + text = "kologarn", + value = "kologarn", + }, + { + children = { + { + fileId = "124727", + text = "krakken.m2", + value = "krakken.m2", + }, + }, + text = "krakken", + value = "krakken", + }, + { + children = { + { + fileId = "234701", + text = "ladysylvanaswindrunner.m2", + value = "ladysylvanaswindrunner.m2", + }, + }, + text = "ladysylvanaswindrunner", + value = "ladysylvanaswindrunner", + }, + { + children = { + { + fileId = "124735", + text = "ladyvashj.m2", + value = "ladyvashj.m2", + }, + }, + text = "ladyvashj", + value = "ladyvashj", + }, + { + children = { + { + fileId = "124738", + text = "landro.m2", + value = "landro.m2", + }, + }, + text = "landro", + value = "landro", + }, + { + children = { + { + fileId = "124739", + text = "larva.m2", + value = "larva.m2", + }, + }, + text = "larva", + value = "larva", + }, + { + children = { + { + fileId = "124747", + text = "larvaoutland.m2", + value = "larvaoutland.m2", + }, + }, + text = "larvaoutland", + value = "larvaoutland", + }, + { + children = { + { + fileId = "124753", + text = "lasher.m2", + value = "lasher.m2", + }, + }, + text = "lasher", + value = "lasher", + }, + { + children = { + { + fileId = "124765", + text = "lasherorchid.m2", + value = "lasherorchid.m2", + }, + }, + text = "lasherorchid", + value = "lasherorchid", + }, + { + children = { + { + fileId = "339405", + text = "lavaman.m2", + value = "lavaman.m2", + }, + }, + text = "lavaman", + value = "lavaman", + }, + { + children = { + { + fileId = "124777", + text = "lessermanafiend.m2", + value = "lessermanafiend.m2", + }, + { + fileId = "2199322", + text = "lessermanafiend_blue.m2", + value = "lessermanafiend_blue.m2", + }, + { + fileId = "2199340", + text = "lessermanafiend_red.m2", + value = "lessermanafiend_red.m2", + }, + { + fileId = "2199333", + text = "lessermanafiend_violet.m2", + value = "lessermanafiend_violet.m2", + }, + { + fileId = "2199348", + text = "lessermanafiend_white.m2", + value = "lessermanafiend_white.m2", + }, + }, + text = "lessermanafiend", + value = "lessermanafiend", + }, + { + children = { + { + fileId = "124779", + text = "lich.m2", + value = "lich.m2", + }, + }, + text = "lich", + value = "lich", + }, + { + children = { + { + fileId = "255155", + text = "lifebindergift.m2", + value = "lifebindergift.m2", + }, + }, + text = "lifebindergift", + value = "lifebindergift", + }, + { + children = { + { + fileId = "124781", + text = "lion.m2", + value = "lion.m2", + }, + }, + text = "lion", + value = "lion", + }, + { + children = { + { + fileId = "124785", + text = "lionseal.m2", + value = "lionseal.m2", + }, + }, + text = "lionseal", + value = "lionseal", + }, + { + children = { + { + fileId = "124790", + text = "lobstrok.m2", + value = "lobstrok.m2", + }, + }, + text = "lobstrok", + value = "lobstrok", + }, + { + children = { + { + fileId = "124801", + text = "lobstrokoutland.m2", + value = "lobstrokoutland.m2", + }, + }, + text = "lobstrokoutland", + value = "lobstrokoutland", + }, + { + children = { + { + fileId = "124809", + text = "lostone.m2", + value = "lostone.m2", + }, + }, + text = "lostone", + value = "lostone", + }, + { + children = { + { + fileId = "4680342", + text = "lunarrabbitpet.m2", + value = "lunarrabbitpet.m2", + }, + }, + text = "lunarrabbitpet", + value = "lunarrabbitpet", + }, + { + children = { + { + fileId = "124824", + text = "lynxgod.m2", + value = "lynxgod.m2", + }, + }, + text = "lynxgod", + value = "lynxgod", + }, + { + children = { + { + fileId = "4323001", + text = "mace_1h_incubus_whip_a_01.m2", + value = "mace_1h_incubus_whip_a_01.m2", + }, + }, + text = "mace_1h_incubus_whip_a_01", + value = "mace_1h_incubus_whip_a_01", + }, + { + children = { + { + fileId = "124827", + text = "madscientist.m2", + value = "madscientist.m2", + }, + { + fileId = "336502", + text = "madscientistnobackpack.m2", + value = "madscientistnobackpack.m2", + }, + }, + text = "madscientist", + value = "madscientist", + }, + { + children = { + { + fileId = "124830", + text = "magehunter.m2", + value = "magehunter.m2", + }, + }, + text = "magehunter", + value = "magehunter", + }, + { + children = { + { + fileId = "4755140", + text = "magicalfishpetclassic.m2", + value = "magicalfishpetclassic.m2", + }, + }, + text = "magicalfishpetclassic", + value = "magicalfishpetclassic", + }, + { + children = { + { + fileId = "124836", + text = "magnataur.m2", + value = "magnataur.m2", + }, + }, + text = "magnataur", + value = "magnataur", + }, + { + children = { + { + fileId = "234706", + text = "malganis.m2", + value = "malganis.m2", + }, + }, + text = "malganis", + value = "malganis", + }, + { + children = { + { + fileId = "234714", + text = "malygos.m2", + value = "malygos.m2", + }, + }, + text = "malygos", + value = "malygos", + }, + { + children = { + { + fileId = "124841", + text = "mammoth.m2", + value = "mammoth.m2", + }, + { + fileId = "124842", + text = "mammothmount2.m2", + value = "mammothmount2.m2", + }, + { + fileId = "124844", + text = "mammothmount5.m2", + value = "mammothmount5.m2", + }, + { + fileId = "234719", + text = "mammothmount_1seat.m2", + value = "mammothmount_1seat.m2", + }, + { + fileId = "234720", + text = "mammothmount_3seat.m2", + value = "mammothmount_3seat.m2", + }, + }, + text = "mammoth", + value = "mammoth", + }, + { + children = { + { + fileId = "124850", + text = "manafiend.m2", + value = "manafiend.m2", + }, + }, + text = "manafiend", + value = "manafiend", + }, + { + children = { + { + fileId = "124853", + text = "manafiendgreen.m2", + value = "manafiendgreen.m2", + }, + }, + text = "manafiendgreen", + value = "manafiendgreen", + }, + { + children = { + { + fileId = "124857", + text = "manawurm.m2", + value = "manawurm.m2", + }, + }, + text = "manawurm", + value = "manawurm", + }, + { + children = { + { + fileId = "124865", + text = "gnomemechastrider.m2", + value = "gnomemechastrider.m2", + }, + { + fileId = "124872", + text = "mechastrider.m2", + value = "mechastrider.m2", + }, + { + fileId = "124880", + text = "pvpmechastrider.m2", + value = "pvpmechastrider.m2", + }, + }, + text = "mechastrider", + value = "mechastrider", + }, + { + children = { + { + fileId = "124890", + text = "medivh.m2", + value = "medivh.m2", + }, + }, + text = "medivh", + value = "medivh", + }, + { + children = { + { + fileId = "124898", + text = "miev.m2", + value = "miev.m2", + }, + }, + text = "miev", + value = "miev", + }, + { + children = { + { + fileId = "252985", + text = "mimiron_head.m2", + value = "mimiron_head.m2", + }, + { + fileId = "253410", + text = "mimiron_head_mount.m2", + value = "mimiron_head_mount.m2", + }, + { + fileId = "252988", + text = "mimiron_legs.m2", + value = "mimiron_legs.m2", + }, + { + fileId = "294043", + text = "mimiron_legs_weapon_cannon.m2", + value = "mimiron_legs_weapon_cannon.m2", + }, + { + fileId = "252991", + text = "mimiron_torso.m2", + value = "mimiron_torso.m2", + }, + }, + text = "mimiron", + value = "mimiron", + }, + { + children = { + { + fileId = "124903", + text = "minespider.m2", + value = "minespider.m2", + }, + { + fileId = "124904", + text = "minespiderboss.m2", + value = "minespiderboss.m2", + }, + }, + text = "minespider", + value = "minespider", + }, + { + children = { + { + fileId = "338704", + text = "ministerofdeath.m2", + value = "ministerofdeath.m2", + }, + }, + text = "ministerofdeath", + value = "ministerofdeath", + }, + { + children = { + { + fileId = "234726", + text = "missilerocketmount.m2", + value = "missilerocketmount.m2", + }, + }, + text = "missilerocketmount", + value = "missilerocketmount", + }, + { + children = { + { + fileId = "124915", + text = "moarg1.m2", + value = "moarg1.m2", + }, + { + fileId = "124916", + text = "moarg2.m2", + value = "moarg2.m2", + }, + { + fileId = "124917", + text = "moarg3.m2", + value = "moarg3.m2", + }, + { + fileId = "124918", + text = "moarg4.m2", + value = "moarg4.m2", + }, + { + fileId = "124919", + text = "moarg5.m2", + value = "moarg5.m2", + }, + { + fileId = "124920", + text = "moarg6.m2", + value = "moarg6.m2", + }, + }, + text = "moarg", + value = "moarg", + }, + { + children = { + { + fileId = "124923", + text = "moargminion.m2", + value = "moargminion.m2", + }, + }, + text = "moargminion", + value = "moargminion", + }, + { + children = { + { + fileId = "124928", + text = "mobat.m2", + value = "mobat.m2", + }, + }, + text = "mobat", + value = "mobat", + }, + { + children = { + { + fileId = "124932", + text = "moth.m2", + value = "moth.m2", + }, + }, + text = "moth", + value = "moth", + }, + { + children = { + { + fileId = "124945", + text = "mothpet.m2", + value = "mothpet.m2", + }, + }, + text = "mothpet", + value = "mothpet", + }, + { + children = { + { + fileId = "234727", + text = "motorcyclevehicle.m2", + value = "motorcyclevehicle.m2", + }, + }, + text = "motorcyclevehicle", + value = "motorcyclevehicle", + }, + { + children = { + { + fileId = "124952", + text = "mountaingiant.m2", + value = "mountaingiant.m2", + }, + }, + text = "mountaingiant", + value = "mountaingiant", + }, + { + children = { + { + fileId = "124956", + text = "mountaingiantcrystal.m2", + value = "mountaingiantcrystal.m2", + }, + { + fileId = "124957", + text = "mountaingiantcrystal_boss.m2", + value = "mountaingiantcrystal_boss.m2", + }, + }, + text = "mountaingiantcrystal", + value = "mountaingiantcrystal", + }, + { + children = { + { + fileId = "124972", + text = "mountaingiantcrystalogrila.m2", + value = "mountaingiantcrystalogrila.m2", + }, + }, + text = "mountaingiantcrystalogrila", + value = "mountaingiantcrystalogrila", + }, + { + children = { + { + fileId = "124973", + text = "mountaingiant_howling.m2", + value = "mountaingiant_howling.m2", + }, + }, + text = "mountaingiantnorthrend", + value = "mountaingiantnorthrend", + }, + { + children = { + { + fileId = "124977", + text = "mountaingiant_bladesedge.m2", + value = "mountaingiant_bladesedge.m2", + }, + { + fileId = "124979", + text = "mountaingiant_netherstorm.m2", + value = "mountaingiant_netherstorm.m2", + }, + { + fileId = "124981", + text = "mountaingiant_zangarmarsh.m2", + value = "mountaingiant_zangarmarsh.m2", + }, + }, + text = "mountaingiantoutland", + value = "mountaingiantoutland", + }, + { + children = { + { + fileId = "124984", + text = "mounteddeathknight.m2", + value = "mounteddeathknight.m2", + }, + { + fileId = "124985", + text = "mounteddeathknight_blaumeux.m2", + value = "mounteddeathknight_blaumeux.m2", + }, + { + fileId = "124986", + text = "mounteddeathknight_korthazz.m2", + value = "mounteddeathknight_korthazz.m2", + }, + { + fileId = "124987", + text = "mounteddeathknight_mograine.m2", + value = "mounteddeathknight_mograine.m2", + }, + { + fileId = "124988", + text = "mounteddeathknight_zeliek.m2", + value = "mounteddeathknight_zeliek.m2", + }, + { + fileId = "125009", + text = "ridingundeadwarhorse.m2", + value = "ridingundeadwarhorse.m2", + }, + { + fileId = "125012", + text = "unmounteddeathknight.m2", + value = "unmounteddeathknight.m2", + }, + }, + text = "mounteddeathknight", + value = "mounteddeathknight", + }, + { + children = { + { + fileId = "125013", + text = "mounteddemonknight.m2", + value = "mounteddemonknight.m2", + }, + }, + text = "mounteddemonknight", + value = "mounteddemonknight", + }, + { + children = { + { + fileId = "125017", + text = "mountedknight.m2", + value = "mountedknight.m2", + }, + }, + text = "mountedknight", + value = "mountedknight", + }, + { + children = { + { + fileId = "125021", + text = "mouthofkathune01.m2", + value = "mouthofkathune01.m2", + }, + }, + text = "mouthofkathune01", + value = "mouthofkathune01", + }, + { + children = { + { + fileId = "125023", + text = "babymurloc.m2", + value = "babymurloc.m2", + }, + { + fileId = "252242", + text = "babymurlocplated.m2", + value = "babymurlocplated.m2", + }, + { + fileId = "306886", + text = "marinebabymurloc.m2", + value = "marinebabymurloc.m2", + }, + { + fileId = "125024", + text = "murloc.m2", + value = "murloc.m2", + }, + }, + text = "murloc", + value = "murloc", + }, + { + children = { + { + fileId = "125041", + text = "murloccostume.m2", + value = "murloccostume.m2", + }, + { + fileId = "125044", + text = "murloccostume_noflag.m2", + value = "murloccostume_noflag.m2", + }, + { + fileId = "125045", + text = "murloccostume_whiteflag.m2", + value = "murloccostume_whiteflag.m2", + }, + }, + text = "murloccostume", + value = "murloccostume", + }, + { + children = { + { + fileId = "125049", + text = "murmur.m2", + value = "murmur.m2", + }, + }, + text = "murmur", + value = "murmur", + }, + { + children = { + { + fileId = "125051", + text = "muru.m2", + value = "muru.m2", + }, + }, + text = "muru", + value = "muru", + }, + { + children = { + { + fileId = "125059", + text = "naaru.m2", + value = "naaru.m2", + }, + }, + text = "naaru", + value = "naaru", + }, + { + children = { + { + fileId = "125069", + text = "siren.m2", + value = "siren.m2", + }, + }, + text = "nagafemale", + value = "nagafemale", + }, + { + children = { + { + fileId = "125075", + text = "nagalordmale.m2", + value = "nagalordmale.m2", + }, + }, + text = "nagalordmale", + value = "nagalordmale", + }, + { + children = { + { + fileId = "125078", + text = "nagamale.m2", + value = "nagamale.m2", + }, + }, + text = "nagamale", + value = "nagamale", + }, + { + children = { + { + fileId = "125092", + text = "necromancer.m2", + value = "necromancer.m2", + }, + }, + text = "necromancer", + value = "necromancer", + }, + { + children = { + { + fileId = "2198559", + text = "dragonnefarian.m2", + value = "dragonnefarian.m2", + }, + }, + text = "nefarian", + value = "nefarian", + }, + { + children = { + { + fileId = "125103", + text = "nerubian.m2", + value = "nerubian.m2", + }, + }, + text = "nerubian", + value = "nerubian", + }, + { + children = { + { + fileId = "125108", + text = "nerubiancaster.m2", + value = "nerubiancaster.m2", + }, + }, + text = "nerubiancaster", + value = "nerubiancaster", + }, + { + children = { + { + fileId = "125117", + text = "nerubianpriest.m2", + value = "nerubianpriest.m2", + }, + }, + text = "nerubianpriest", + value = "nerubianpriest", + }, + { + children = { + { + fileId = "125126", + text = "nerubianspiderling.m2", + value = "nerubianspiderling.m2", + }, + }, + text = "nerubianspiderling", + value = "nerubianspiderling", + }, + { + children = { + { + fileId = "125131", + text = "nerubianwarrior.m2", + value = "nerubianwarrior.m2", + }, + }, + text = "nerubianwarrior", + value = "nerubianwarrior", + }, + { + children = { + { + fileId = "125140", + text = "netherdragon.m2", + value = "netherdragon.m2", + }, + }, + text = "netherdragon", + value = "netherdragon", + }, + { + children = { + { + fileId = "125168", + text = "netherdrake.m2", + value = "netherdrake.m2", + }, + { + fileId = "125170", + text = "netherdrakeelite.m2", + value = "netherdrakeelite.m2", + }, + { + fileId = "125178", + text = "netherdrakeoutland.m2", + value = "netherdrakeoutland.m2", + }, + { + fileId = "234734", + text = "northrendnetherdrake.m2", + value = "northrendnetherdrake.m2", + }, + }, + text = "netherdrake", + value = "netherdrake", + }, + { + children = { + { + fileId = "125197", + text = "netherdrakonid.m2", + value = "netherdrakonid.m2", + }, + }, + text = "netherdrakonid", + value = "netherdrakonid", + }, + { + children = { + { + fileId = "125203", + text = "netherdrakonidboss.m2", + value = "netherdrakonidboss.m2", + }, + }, + text = "netherdrakonidboss", + value = "netherdrakonidboss", + }, + { + children = { + { + fileId = "125208", + text = "netherray.m2", + value = "netherray.m2", + }, + }, + text = "netherray", + value = "netherray", + }, + { + children = { + { + fileId = "234735", + text = "nexus_floating_disc.m2", + value = "nexus_floating_disc.m2", + }, + }, + text = "nexus", + value = "nexus", + }, + { + children = { + { + fileId = "125217", + text = "nian.m2", + value = "nian.m2", + }, + }, + text = "nian", + value = "nian", + }, + { + children = { + { + fileId = "125218", + text = "nightbane.m2", + value = "nightbane.m2", + }, + }, + text = "nightbane", + value = "nightbane", + }, + { + children = { + { + fileId = "125223", + text = "gorgon101.m2", + value = "gorgon101.m2", + }, + { + fileId = "125227", + text = "nightmare.m2", + value = "nightmare.m2", + }, + }, + text = "nightmare", + value = "nightmare", + }, + { + children = { + { + fileId = "234736", + text = "northrendbearmount.m2", + value = "northrendbearmount.m2", + }, + { + fileId = "234737", + text = "northrendbearmountarmored.m2", + value = "northrendbearmountarmored.m2", + }, + { + fileId = "234738", + text = "northrendbearmountarmored2seat.m2", + value = "northrendbearmountarmored2seat.m2", + }, + { + fileId = "234739", + text = "northrendbearmountarmored_large.m2", + value = "northrendbearmountarmored_large.m2", + }, + { + fileId = "234740", + text = "northrendbearmountblizzcon.m2", + value = "northrendbearmountblizzcon.m2", + }, + }, + text = "northrendbearmount", + value = "northrendbearmount", + }, + { + children = { + { + fileId = "234751", + text = "northrendfiregiant.m2", + value = "northrendfiregiant.m2", + }, + }, + text = "northrendfiregiant", + value = "northrendfiregiant", + }, + { + children = { + { + fileId = "125228", + text = "northrendfleshgiant.m2", + value = "northrendfleshgiant.m2", + }, + }, + text = "northrendfleshgiant", + value = "northrendfleshgiant", + }, + { + children = { + { + fileId = "125232", + text = "northrendfrostwurm.m2", + value = "northrendfrostwurm.m2", + }, + }, + text = "northrendfrostwurm", + value = "northrendfrostwurm", + }, + { + children = { + { + fileId = "125233", + text = "northrendfrostwurm_nofrost.m2", + value = "northrendfrostwurm_nofrost.m2", + }, + }, + text = "northrendfrostwurm_nofrost", + value = "northrendfrostwurm_nofrost", + }, + { + children = { + { + fileId = "125234", + text = "northrendgeist.m2", + value = "northrendgeist.m2", + }, + }, + text = "northrendgeist", + value = "northrendgeist", + }, + { + children = { + { + fileId = "125239", + text = "northrendghoul.m2", + value = "northrendghoul.m2", + }, + { + fileId = "234754", + text = "northrendghoulspiked.m2", + value = "northrendghoulspiked.m2", + }, + }, + text = "northrendghoul", + value = "northrendghoul", + }, + { + children = { + { + fileId = "234756", + text = "gymer.m2", + value = "gymer.m2", + }, + { + fileId = "125244", + text = "northrendgiant.m2", + value = "northrendgiant.m2", + }, + }, + text = "northrendgiant", + value = "northrendgiant", + }, + { + children = { + { + fileId = "125247", + text = "northrendicegiant.m2", + value = "northrendicegiant.m2", + }, + }, + text = "northrendicegiant", + value = "northrendicegiant", + }, + { + children = { + { + fileId = "234758", + text = "northrendirongiant.m2", + value = "northrendirongiant.m2", + }, + }, + text = "northrendirongiant", + value = "northrendirongiant", + }, + { + children = { + { + fileId = "125250", + text = "northrendnightbane.m2", + value = "northrendnightbane.m2", + }, + }, + text = "northrendnightbane", + value = "northrendnightbane", + }, + { + children = { + { + fileId = "125251", + text = "northrendpenguin.m2", + value = "northrendpenguin.m2", + }, + }, + text = "northrendpenguin", + value = "northrendpenguin", + }, + { + children = { + { + fileId = "234761", + text = "northrendstonegiant.m2", + value = "northrendstonegiant.m2", + }, + }, + text = "northrendstonegiant", + value = "northrendstonegiant", + }, + { + children = { + { + fileId = "234770", + text = "northrendworgen.m2", + value = "northrendworgen.m2", + }, + }, + text = "northrendworgen", + value = "northrendworgen", + }, + { + children = { + { + fileId = "125254", + text = "archerytarget.m2", + value = "archerytarget.m2", + }, + { + fileId = "125257", + text = "cannon.m2", + value = "cannon.m2", + }, + { + fileId = "125259", + text = "woodendummy.m2", + value = "woodendummy.m2", + }, + }, + text = "object", + value = "object", + }, + { + children = { + { + fileId = "125260", + text = "obsidiandestroyer.m2", + value = "obsidiandestroyer.m2", + }, + }, + text = "obsidiandestroyer", + value = "obsidiandestroyer", + }, + { + children = { + { + fileId = "125263", + text = "ogre.m2", + value = "ogre.m2", + }, + { + fileId = "125264", + text = "ogremage.m2", + value = "ogremage.m2", + }, + { + fileId = "125293", + text = "ogrewarlord.m2", + value = "ogrewarlord.m2", + }, + }, + text = "ogre", + value = "ogre", + }, + { + children = { + { + fileId = "125300", + text = "ogre02.m2", + value = "ogre02.m2", + }, + }, + text = "ogre02", + value = "ogre02", + }, + { + children = { + { + fileId = "125313", + text = "ogreking.m2", + value = "ogreking.m2", + }, + }, + text = "ogreking", + value = "ogreking", + }, + { + children = { + { + fileId = "125317", + text = "ogremage02.m2", + value = "ogremage02.m2", + }, + }, + text = "ogremage02", + value = "ogremage02", + }, + { + children = { + { + fileId = "125336", + text = "ogremagelord.m2", + value = "ogremagelord.m2", + }, + }, + text = "ogremagelord", + value = "ogremagelord", + }, + { + children = { + { + fileId = "125349", + text = "oracle.m2", + value = "oracle.m2", + }, + { + fileId = "361331", + text = "oracle_quest.m2", + value = "oracle_quest.m2", + }, + }, + text = "oracle", + value = "oracle", + }, + { + children = { + { + fileId = "125358", + text = "orca.m2", + value = "orca.m2", + }, + }, + text = "orca", + value = "orca", + }, + { + children = { + { + fileId = "125362", + text = "orcfemalekid.m2", + value = "orcfemalekid.m2", + }, + }, + text = "orcfemalekid", + value = "orcfemalekid", + }, + { + children = { + { + fileId = "125365", + text = "orcfemalekidbrown.m2", + value = "orcfemalekidbrown.m2", + }, + }, + text = "orcfemalekidbrown", + value = "orcfemalekidbrown", + }, + { + children = { + { + fileId = "2198642", + text = "orcfemale.m2", + value = "orcfemale.m2", + }, + }, + text = "orcfemalewarriorlight", + value = "orcfemalewarriorlight", + }, + { + children = { + { + fileId = "125367", + text = "orcmalekid.m2", + value = "orcmalekid.m2", + }, + { + fileId = "254785", + text = "orcmalekidgruntling.m2", + value = "orcmalekidgruntling.m2", + }, + { + fileId = "254786", + text = "orcmalekidgruntling_bp.m2", + value = "orcmalekidgruntling_bp.m2", + }, + }, + text = "orcmalekid", + value = "orcmalekid", + }, + { + children = { + { + fileId = "125370", + text = "orcmalekidbrown.m2", + value = "orcmalekidbrown.m2", + }, + }, + text = "orcmalekidbrown", + value = "orcmalekidbrown", + }, + { + children = { + { + fileId = "125372", + text = "orcmalemerchantlight.m2", + value = "orcmalemerchantlight.m2", + }, + }, + text = "orcmalemerchantlight", + value = "orcmalemerchantlight", + }, + { + children = { + { + fileId = "125374", + text = "orcmalewarriorheavy.m2", + value = "orcmalewarriorheavy.m2", + }, + }, + text = "orcmalewarriorheavy", + value = "orcmalewarriorheavy", + }, + { + children = { + { + fileId = "125377", + text = "orcmalewarriorlight.m2", + value = "orcmalewarriorlight.m2", + }, + }, + text = "orcmalewarriorlight", + value = "orcmalewarriorlight", + }, + { + children = { + { + fileId = "125378", + text = "owl.m2", + value = "owl.m2", + }, + }, + text = "owl", + value = "owl", + }, + { + children = { + { + fileId = "309881", + text = "jadepandacub.m2", + value = "jadepandacub.m2", + }, + { + fileId = "125389", + text = "pandacub.m2", + value = "pandacub.m2", + }, + }, + text = "panda", + value = "panda", + }, + { + children = { + { + fileId = "328267", + text = "pandarenmonk.m2", + value = "pandarenmonk.m2", + }, + }, + text = "pandarenmonk", + value = "pandarenmonk", + }, + { + children = { + { + fileId = "125392", + text = "paperairplane_gyro.m2", + value = "paperairplane_gyro.m2", + }, + }, + text = "paperairplane_gyro", + value = "paperairplane_gyro", + }, + { + children = { + { + fileId = "125394", + text = "paperairplane_zeppelin.m2", + value = "paperairplane_zeppelin.m2", + }, + }, + text = "paperairplane_zeppelin", + value = "paperairplane_zeppelin", + }, + { + children = { + { + fileId = "125395", + text = "parrot.m2", + value = "parrot.m2", + }, + }, + text = "parrot", + value = "parrot", + }, + { + children = { + { + fileId = "5599759", + text = "parrotpiratemountclassic.m2", + value = "parrotpiratemountclassic.m2", + }, + }, + text = "parrotpiratemountclassic", + value = "parrotpiratemountclassic", + }, + { + children = { + { + fileId = "125405", + text = "penguinpet.m2", + value = "penguinpet.m2", + }, + }, + text = "penguinpet", + value = "penguinpet", + }, + { + children = { + { + fileId = "125407", + text = "phoenix.m2", + value = "phoenix.m2", + }, + }, + text = "phoenix", + value = "phoenix", + }, + { + children = { + { + fileId = "125417", + text = "phoenixpet.m2", + value = "phoenixpet.m2", + }, + }, + text = "phoenixpet", + value = "phoenixpet", + }, + { + children = { + { + fileId = "125420", + text = "pig.m2", + value = "pig.m2", + }, + }, + text = "pig", + value = "pig", + }, + { + children = { + { + fileId = "125426", + text = "magtheridon.m2", + value = "magtheridon.m2", + }, + { + fileId = "125427", + text = "pitlord.m2", + value = "pitlord.m2", + }, + }, + text = "pitlord", + value = "pitlord", + }, + { + children = { + { + fileId = "234780", + text = "portalbluearcane.m2", + value = "portalbluearcane.m2", + }, + }, + text = "portal", + value = "portal", + }, + { + children = { + { + fileId = "125432", + text = "portalofkathune.m2", + value = "portalofkathune.m2", + }, + { + fileId = "293931", + text = "portalofkathunethick.m2", + value = "portalofkathunethick.m2", + }, + }, + text = "portalofkathune", + value = "portalofkathune", + }, + { + children = { + { + fileId = "234781", + text = "powersparkcreature.m2", + value = "powersparkcreature.m2", + }, + }, + text = "powersparkcreature", + value = "powersparkcreature", + }, + { + children = { + { + fileId = "125434", + text = "prariedog.m2", + value = "prariedog.m2", + }, + }, + text = "prariedog", + value = "prariedog", + }, + { + children = { + { + fileId = "234782", + text = "mdprotodrakemount.m2", + value = "mdprotodrakemount.m2", + }, + { + fileId = "125435", + text = "protodragon.m2", + value = "protodragon.m2", + }, + { + fileId = "254809", + text = "protodragon_razorscale.m2", + value = "protodragon_razorscale.m2", + }, + { + fileId = "254849", + text = "protodragon_razorscale_mount.m2", + value = "protodragon_razorscale_mount.m2", + }, + { + fileId = "234798", + text = "protodragonmount.m2", + value = "protodragonmount.m2", + }, + }, + text = "protodragon", + value = "protodragon", + }, + { + children = { + { + fileId = "125437", + text = "pterrordax.m2", + value = "pterrordax.m2", + }, + }, + text = "pterrordax", + value = "pterrordax", + }, + { + children = { + { + fileId = "346291", + text = "pug.m2", + value = "pug.m2", + }, + }, + text = "pug", + value = "pug", + }, + { + children = { + { + fileId = "125444", + text = "pumpkinsoldier.m2", + value = "pumpkinsoldier.m2", + }, + }, + text = "pumpkinsoldier", + value = "pumpkinsoldier", + }, + { + children = { + { + fileId = "125446", + text = "creature_burningash.m2", + value = "creature_burningash.m2", + }, + { + fileId = "125447", + text = "creature_burninglegioncannon.m2", + value = "creature_burninglegioncannon.m2", + }, + { + fileId = "125448", + text = "creature_demoncrystal_02.m2", + value = "creature_demoncrystal_02.m2", + }, + { + fileId = "125449", + text = "creature_etherealstorm.m2", + value = "creature_etherealstorm.m2", + }, + { + fileId = "365199", + text = "creature_iceblock.m2", + value = "creature_iceblock.m2", + }, + { + fileId = "338494", + text = "creature_iceblock_sindragosa.m2", + value = "creature_iceblock_sindragosa.m2", + }, + { + fileId = "125450", + text = "creature_nagadistiller.m2", + value = "creature_nagadistiller.m2", + }, + { + fileId = "125451", + text = "creature_powercrystal.m2", + value = "creature_powercrystal.m2", + }, + { + fileId = "234801", + text = "creature_sc_crystal.m2", + value = "creature_sc_crystal.m2", + }, + { + fileId = "125452", + text = "creature_scourgecrystal.m2", + value = "creature_scourgecrystal.m2", + }, + { + fileId = "125453", + text = "creature_scourgecrystal02.m2", + value = "creature_scourgecrystal02.m2", + }, + { + fileId = "125454", + text = "creature_scourgecrystaldamaged.m2", + value = "creature_scourgecrystaldamaged.m2", + }, + { + fileId = "234802", + text = "plate_creature.m2", + value = "plate_creature.m2", + }, + }, + text = "questobjects", + value = "questobjects", + }, + { + children = { + { + fileId = "125497", + text = "quillboar.m2", + value = "quillboar.m2", + }, + { + fileId = "125498", + text = "quillboarcaster.m2", + value = "quillboarcaster.m2", + }, + { + fileId = "125499", + text = "quillboarwarrior.m2", + value = "quillboarwarrior.m2", + }, + }, + text = "quillboar", + value = "quillboar", + }, + { + children = { + { + fileId = "125500", + text = "battleguard.m2", + value = "battleguard.m2", + }, + }, + text = "quirajbattleguard", + value = "quirajbattleguard", + }, + { + children = { + { + fileId = "125504", + text = "quirajgladiator.m2", + value = "quirajgladiator.m2", + }, + }, + text = "quirajgladiator", + value = "quirajgladiator", + }, + { + children = { + { + fileId = "125508", + text = "quirajprophet.m2", + value = "quirajprophet.m2", + }, + }, + text = "quirajprophet", + value = "quirajprophet", + }, + { + children = { + { + fileId = "125512", + text = "rabbit.m2", + value = "rabbit.m2", + }, + { + fileId = "125513", + text = "rabbitgold.m2", + value = "rabbitgold.m2", + }, + }, + text = "rabbit", + value = "rabbit", + }, + { + children = { + { + fileId = "4680728", + text = "rabbitmountclassic.m2", + value = "rabbitmountclassic.m2", + }, + }, + text = "rabbitmountclassic", + value = "rabbitmountclassic", + }, + { + children = { + { + fileId = "125518", + text = "raccoon.m2", + value = "raccoon.m2", + }, + }, + text = "raccoon", + value = "raccoon", + }, + { + children = { + { + fileId = "125519", + text = "ragnaros.m2", + value = "ragnaros.m2", + }, + }, + text = "ragnaros", + value = "ragnaros", + }, + { + children = { + { + fileId = "5199459", + text = "ragnarosmountclassic.m2", + value = "ragnarosmountclassic.m2", + }, + }, + text = "ragnarosmountclassic", + value = "ragnarosmountclassic", + }, + { + children = { + { + fileId = "125522", + text = "pvpridingram.m2", + value = "pvpridingram.m2", + }, + { + fileId = "125531", + text = "ram.m2", + value = "ram.m2", + }, + { + fileId = "125546", + text = "ridingram.m2", + value = "ridingram.m2", + }, + }, + text = "ram", + value = "ram", + }, + { + children = { + { + fileId = "125559", + text = "raptor.m2", + value = "raptor.m2", + }, + { + fileId = "305835", + text = "raptorpet.m2", + value = "raptorpet.m2", + }, + }, + text = "raptor", + value = "raptor", + }, + { + children = { + { + fileId = "125568", + text = "raptor_outland.m2", + value = "raptor_outland.m2", + }, + }, + text = "raptoroutland", + value = "raptoroutland", + }, + { + children = { + { + fileId = "125576", + text = "rat.m2", + value = "rat.m2", + }, + }, + text = "rat", + value = "rat", + }, + { + children = { + { + fileId = "125578", + text = "ravengod.m2", + value = "ravengod.m2", + }, + }, + text = "ravengod", + value = "ravengod", + }, + { + children = { + { + fileId = "125581", + text = "reindeer.m2", + value = "reindeer.m2", + }, + { + fileId = "125583", + text = "reindeermount.m2", + value = "reindeermount.m2", + }, + }, + text = "reindeer", + value = "reindeer", + }, + { + children = { + { + fileId = "234803", + text = "revenantair.m2", + value = "revenantair.m2", + }, + }, + text = "revenantair", + value = "revenantair", + }, + { + children = { + { + fileId = "234810", + text = "revenantearth.m2", + value = "revenantearth.m2", + }, + }, + text = "revenantearth", + value = "revenantearth", + }, + { + children = { + { + fileId = "125586", + text = "revenantfire.m2", + value = "revenantfire.m2", + }, + }, + text = "revenantfire", + value = "revenantfire", + }, + { + children = { + { + fileId = "234817", + text = "revenantwater.m2", + value = "revenantwater.m2", + }, + }, + text = "revenantwater", + value = "revenantwater", + }, + { + children = { + { + fileId = "125589", + text = "rexxar.m2", + value = "rexxar.m2", + }, + }, + text = "rexxar", + value = "rexxar", + }, + { + children = { + { + fileId = "125593", + text = "ridingelekk.m2", + value = "ridingelekk.m2", + }, + { + fileId = "125595", + text = "ridingelekkelite.m2", + value = "ridingelekkelite.m2", + }, + }, + text = "ridingelekk", + value = "ridingelekk", + }, + { + children = { + { + fileId = "125603", + text = "packmule.m2", + value = "packmule.m2", + }, + { + fileId = "125614", + text = "ridinghorse.m2", + value = "ridinghorse.m2", + }, + { + fileId = "125620", + text = "ridinghorsepvpt2.m2", + value = "ridinghorsepvpt2.m2", + }, + }, + text = "ridinghorse", + value = "ridinghorse", + }, + { + children = { + { + fileId = "125632", + text = "ridingnetherray.m2", + value = "ridingnetherray.m2", + }, + }, + text = "ridingnetherray", + value = "ridingnetherray", + }, + { + children = { + { + fileId = "125644", + text = "ridingphoenix.m2", + value = "ridingphoenix.m2", + }, + }, + text = "ridingphoenix", + value = "ridingphoenix", + }, + { + children = { + { + fileId = "125649", + text = "pvpridingraptor.m2", + value = "pvpridingraptor.m2", + }, + { + fileId = "125680", + text = "ridingraptor.m2", + value = "ridingraptor.m2", + }, + }, + text = "ridingraptor", + value = "ridingraptor", + }, + { + children = { + { + fileId = "125687", + text = "ridingsilithid.m2", + value = "ridingsilithid.m2", + }, + }, + text = "ridingsilithid", + value = "ridingsilithid", + }, + { + children = { + { + fileId = "125698", + text = "ridingtalbuk.m2", + value = "ridingtalbuk.m2", + }, + { + fileId = "125699", + text = "ridingtalbukepic.m2", + value = "ridingtalbukepic.m2", + }, + }, + text = "ridingtalbuk", + value = "ridingtalbuk", + }, + { + children = { + { + fileId = "125715", + text = "ridingturtle.m2", + value = "ridingturtle.m2", + }, + }, + text = "ridingturtle", + value = "ridingturtle", + }, + { + children = { + { + fileId = "346110", + text = "armoredridingundeaddrake.m2", + value = "armoredridingundeaddrake.m2", + }, + { + fileId = "234824", + text = "ridingundeaddrake.m2", + value = "ridingundeaddrake.m2", + }, + }, + text = "ridingundeaddrake", + value = "ridingundeaddrake", + }, + { + children = { + { + fileId = "125718", + text = "ridingwyvern.m2", + value = "ridingwyvern.m2", + }, + }, + text = "ridingwyvern", + value = "ridingwyvern", + }, + { + children = { + { + fileId = "125729", + text = "ridingwyvernarmored.m2", + value = "ridingwyvernarmored.m2", + }, + { + fileId = "306163", + text = "wyvern_armored_vehicle.m2", + value = "wyvern_armored_vehicle.m2", + }, + }, + text = "ridingwyvernarmored", + value = "ridingwyvernarmored", + }, + { + children = { + { + fileId = "125741", + text = "rocketchicken.m2", + value = "rocketchicken.m2", + }, + }, + text = "rocketchicken", + value = "rocketchicken", + }, + { + children = { + { + fileId = "125743", + text = "rocketmount.m2", + value = "rocketmount.m2", + }, + }, + text = "rocketmount", + value = "rocketmount", + }, + { + children = { + { + fileId = "368765", + text = "rocketmount2.m2", + value = "rocketmount2.m2", + }, + }, + text = "rocketmount2", + value = "rocketmount2", + }, + { + children = { + { + fileId = "125747", + text = "rockflayer.m2", + value = "rockflayer.m2", + }, + { + fileId = "125763", + text = "rockflayercrystal.m2", + value = "rockflayercrystal.m2", + }, + { + fileId = "125764", + text = "rockflayerelite.m2", + value = "rockflayerelite.m2", + }, + }, + text = "rockflayer", + value = "rockflayer", + }, + { + children = { + { + fileId = "251902", + text = "entanglingroots_brown_01.m2", + value = "entanglingroots_brown_01.m2", + }, + }, + text = "roots", + value = "roots", + }, + { + children = { + { + fileId = "335285", + text = "be_rowboat_vehicle.m2", + value = "be_rowboat_vehicle.m2", + }, + { + fileId = "335286", + text = "darkshoreboat_vehicle.m2", + value = "darkshoreboat_vehicle.m2", + }, + { + fileId = "335287", + text = "rowboat01_vehicle.m2", + value = "rowboat01_vehicle.m2", + }, + }, + text = "rowboat_vehicle", + value = "rowboat_vehicle", + }, + { + children = { + { + fileId = "125768", + text = "saberworg.m2", + value = "saberworg.m2", + }, + { + fileId = "309900", + text = "spectralsaberworg.m2", + value = "spectralsaberworg.m2", + }, + }, + text = "saberworg", + value = "saberworg", + }, + { + children = { + { + fileId = "125777", + text = "salamandermale.m2", + value = "salamandermale.m2", + }, + }, + text = "salamander", + value = "salamander", + }, + { + children = { + { + fileId = "125782", + text = "sandreaver.m2", + value = "sandreaver.m2", + }, + }, + text = "sandreaver", + value = "sandreaver", + }, + { + children = { + { + fileId = "125790", + text = "sandvortex.m2", + value = "sandvortex.m2", + }, + }, + text = "sandvortex", + value = "sandvortex", + }, + { + children = { + { + fileId = "125795", + text = "sandworm.m2", + value = "sandworm.m2", + }, + }, + text = "sandworm", + value = "sandworm", + }, + { + children = { + { + fileId = "125796", + text = "satyr.m2", + value = "satyr.m2", + }, + }, + text = "satyr", + value = "satyr", + }, + { + children = { + { + fileId = "125815", + text = "scorpion.m2", + value = "scorpion.m2", + }, + }, + text = "scorpion", + value = "scorpion", + }, + { + children = { + { + fileId = "125825", + text = "scryingorb.m2", + value = "scryingorb.m2", + }, + }, + text = "scryingorb", + value = "scryingorb", + }, + { + children = { + { + fileId = "125830", + text = "seagiant.m2", + value = "seagiant.m2", + }, + }, + text = "seagiant", + value = "seagiant", + }, + { + children = { + { + fileId = "125835", + text = "sealion.m2", + value = "sealion.m2", + }, + }, + text = "sealion", + value = "sealion", + }, + { + children = { + { + fileId = "125837", + text = "seaturtle.m2", + value = "seaturtle.m2", + }, + }, + text = "seaturtle", + value = "seaturtle", + }, + { + children = { + { + fileId = "125843", + text = "seavrykul.m2", + value = "seavrykul.m2", + }, + }, + text = "seavrykul", + value = "seavrykul", + }, + { + children = { + { + fileId = "234834", + text = "seavrykulmale.m2", + value = "seavrykulmale.m2", + }, + { + fileId = "234835", + text = "seavrykulmale_a.m2", + value = "seavrykulmale_a.m2", + }, + { + fileId = "234842", + text = "seavrykulmaleoarsman.m2", + value = "seavrykulmaleoarsman.m2", + }, + }, + text = "seavrykulmale", + value = "seavrykulmale", + }, + { + children = { + { + fileId = "125851", + text = "serpent.m2", + value = "serpent.m2", + }, + { + fileId = "125852", + text = "serpentruby.m2", + value = "serpentruby.m2", + }, + }, + text = "serpent", + value = "serpent", + }, + { + children = { + { + fileId = "125854", + text = "shade.m2", + value = "shade.m2", + }, + { + fileId = "2199329", + text = "shadewhite.m2", + value = "shadewhite.m2", + }, + }, + text = "shade", + value = "shade", + }, + { + children = { + { + fileId = "125859", + text = "hammerhead.m2", + value = "hammerhead.m2", + }, + { + fileId = "125860", + text = "shark.m2", + value = "shark.m2", + }, + }, + text = "shark", + value = "shark", + }, + { + children = { + { + fileId = "125865", + text = "sheep.m2", + value = "sheep.m2", + }, + }, + text = "sheep", + value = "sheep", + }, + { + children = { + { + fileId = "125869", + text = "shivan.m2", + value = "shivan.m2", + }, + }, + text = "shivan", + value = "shivan", + }, + { + children = { + { + fileId = "125876", + text = "shoveltusk.m2", + value = "shoveltusk.m2", + }, + }, + text = "shoveltusk", + value = "shoveltusk", + }, + { + children = { + { + fileId = "125882", + text = "siegevehicle.m2", + value = "siegevehicle.m2", + }, + { + fileId = "125883", + text = "siegevehicle_weapon_cannon.m2", + value = "siegevehicle_weapon_cannon.m2", + }, + { + fileId = "125886", + text = "siegevehiclehasgun.m2", + value = "siegevehiclehasgun.m2", + }, + }, + text = "siegevehicle", + value = "siegevehicle", + }, + { + children = { + { + fileId = "125891", + text = "silithid.m2", + value = "silithid.m2", + }, + }, + text = "silithid", + value = "silithid", + }, + { + children = { + { + fileId = "125892", + text = "silithidscarab.m2", + value = "silithidscarab.m2", + }, + }, + text = "silithidscarab", + value = "silithidscarab", + }, + { + children = { + { + fileId = "125902", + text = "silithidtank.m2", + value = "silithidtank.m2", + }, + }, + text = "silithidtank", + value = "silithidtank", + }, + { + children = { + { + fileId = "125912", + text = "silithidtankboss.m2", + value = "silithidtankboss.m2", + }, + { + fileId = "125913", + text = "silithidtankboss_damaged.m2", + value = "silithidtankboss_damaged.m2", + }, + }, + text = "silithidtankboss", + value = "silithidtankboss", + }, + { + children = { + { + fileId = "125931", + text = "silithidwasp.m2", + value = "silithidwasp.m2", + }, + }, + text = "silithidwasp", + value = "silithidwasp", + }, + { + children = { + { + fileId = "125932", + text = "silithidwaspboss.m2", + value = "silithidwaspboss.m2", + }, + }, + text = "silithidwaspboss", + value = "silithidwaspboss", + }, + { + children = { + { + fileId = "125938", + text = "skeletalserpent.m2", + value = "skeletalserpent.m2", + }, + }, + text = "skeletalserpent", + value = "skeletalserpent", + }, + { + children = { + { + fileId = "125942", + text = "skeleton.m2", + value = "skeleton.m2", + }, + { + fileId = "234853", + text = "skeletonnohelm.m2", + value = "skeletonnohelm.m2", + }, + }, + text = "skeleton", + value = "skeleton", + }, + { + children = { + { + fileId = "125947", + text = "skeletonmage.m2", + value = "skeletonmage.m2", + }, + }, + text = "skeletonmage", + value = "skeletonmage", + }, + { + children = { + { + fileId = "125948", + text = "skeletonnaked.m2", + value = "skeletonnaked.m2", + }, + }, + text = "skeletonnaked", + value = "skeletonnaked", + }, + { + children = { + { + fileId = "125956", + text = "skunk.m2", + value = "skunk.m2", + }, + }, + text = "skunk", + value = "skunk", + }, + { + children = { + { + fileId = "125957", + text = "slime.m2", + value = "slime.m2", + }, + { + fileId = "125958", + text = "slimelesser.m2", + value = "slimelesser.m2", + }, + }, + text = "slime", + value = "slime", + }, + { + children = { + { + fileId = "125965", + text = "giantslime.m2", + value = "giantslime.m2", + }, + }, + text = "slimegiant", + value = "slimegiant", + }, + { + children = { + { + fileId = "125967", + text = "slith.m2", + value = "slith.m2", + }, + }, + text = "slith", + value = "slith", + }, + { + children = { + { + fileId = "125969", + text = "snake.m2", + value = "snake.m2", + }, + }, + text = "snake", + value = "snake", + }, + { + children = { + { + fileId = "234854", + text = "snobold.m2", + value = "snobold.m2", + }, + }, + text = "snobold", + value = "snobold", + }, + { + children = { + { + fileId = "125980", + text = "snowflakecreature.m2", + value = "snowflakecreature.m2", + }, + }, + text = "snowflakecreature", + value = "snowflakecreature", + }, + { + children = { + { + fileId = "125984", + text = "snowman.m2", + value = "snowman.m2", + }, + }, + text = "snowman", + value = "snowman", + }, + { + children = { + { + fileId = "252993", + text = "sandbox_spectraltiger_01.m2", + value = "sandbox_spectraltiger_01.m2", + }, + { + fileId = "125988", + text = "spectraltiger.m2", + value = "spectraltiger.m2", + }, + { + fileId = "326934", + text = "spectraltigercub.m2", + value = "spectraltigercub.m2", + }, + { + fileId = "125989", + text = "spectraltigerepic.m2", + value = "spectraltigerepic.m2", + }, + }, + text = "spectraltiger", + value = "spectraltiger", + }, + { + children = { + { + fileId = "253393", + text = "spectraltigerferal.m2", + value = "spectraltigerferal.m2", + }, + }, + text = "spectraltigerferal", + value = "spectraltigerferal", + }, + { + children = { + { + fileId = "125990", + text = "airelementaltotem.m2", + value = "airelementaltotem.m2", + }, + { + fileId = "125991", + text = "battlestandard_alliance.m2", + value = "battlestandard_alliance.m2", + }, + { + fileId = "125993", + text = "battlestandard_horde.m2", + value = "battlestandard_horde.m2", + }, + { + fileId = "125995", + text = "creature_spellportal.m2", + value = "creature_spellportal.m2", + }, + { + fileId = "126004", + text = "draeneitotem_air.m2", + value = "draeneitotem_air.m2", + }, + { + fileId = "126005", + text = "draeneitotem_earth.m2", + value = "draeneitotem_earth.m2", + }, + { + fileId = "126006", + text = "draeneitotem_fire.m2", + value = "draeneitotem_fire.m2", + }, + { + fileId = "126007", + text = "draeneitotem_water.m2", + value = "draeneitotem_water.m2", + }, + { + fileId = "328197", + text = "dwarventotem_air.m2", + value = "dwarventotem_air.m2", + }, + { + fileId = "328198", + text = "dwarventotem_earth.m2", + value = "dwarventotem_earth.m2", + }, + { + fileId = "328199", + text = "dwarventotem_fire.m2", + value = "dwarventotem_fire.m2", + }, + { + fileId = "328200", + text = "dwarventotem_water.m2", + value = "dwarventotem_water.m2", + }, + { + fileId = "126009", + text = "earthelementaltotem.m2", + value = "earthelementaltotem.m2", + }, + { + fileId = "126011", + text = "eyeofkilrog.m2", + value = "eyeofkilrog.m2", + }, + { + fileId = "126012", + text = "fireelementaltotem.m2", + value = "fireelementaltotem.m2", + }, + { + fileId = "126013", + text = "firelighttotem.m2", + value = "firelighttotem.m2", + }, + { + fileId = "126014", + text = "firetotem.m2", + value = "firetotem.m2", + }, + { + fileId = "126016", + text = "flameturret.m2", + value = "flameturret.m2", + }, + { + fileId = "126018", + text = "healingtotem.m2", + value = "healingtotem.m2", + }, + { + fileId = "126020", + text = "invisibilitytotem.m2", + value = "invisibilitytotem.m2", + }, + { + fileId = "126022", + text = "landmine01.m2", + value = "landmine01.m2", + }, + { + fileId = "126024", + text = "manatotem.m2", + value = "manatotem.m2", + }, + { + fileId = "126026", + text = "monsterlure01.m2", + value = "monsterlure01.m2", + }, + { + fileId = "329291", + text = "orctotem_air.m2", + value = "orctotem_air.m2", + }, + { + fileId = "329292", + text = "orctotem_earth.m2", + value = "orctotem_earth.m2", + }, + { + fileId = "329293", + text = "orctotem_fire.m2", + value = "orctotem_fire.m2", + }, + { + fileId = "329294", + text = "orctotem_water.m2", + value = "orctotem_water.m2", + }, + { + fileId = "126032", + text = "sentrytotem.m2", + value = "sentrytotem.m2", + }, + { + fileId = "126033", + text = "serpent_totem.m2", + value = "serpent_totem.m2", + }, + { + fileId = "126036", + text = "stasistotem.m2", + value = "stasistotem.m2", + }, + { + fileId = "328323", + text = "trolltotem_air.m2", + value = "trolltotem_air.m2", + }, + { + fileId = "328324", + text = "trolltotem_earth.m2", + value = "trolltotem_earth.m2", + }, + { + fileId = "328325", + text = "trolltotem_fire.m2", + value = "trolltotem_fire.m2", + }, + { + fileId = "328326", + text = "trolltotem_water.m2", + value = "trolltotem_water.m2", + }, + { + fileId = "126040", + text = "valentinesdummy.m2", + value = "valentinesdummy.m2", + }, + { + fileId = "126041", + text = "waterelementaltotem.m2", + value = "waterelementaltotem.m2", + }, + }, + text = "spells", + value = "spells", + }, + { + children = { + { + fileId = "126042", + text = "spirithealer.m2", + value = "spirithealer.m2", + }, + }, + text = "spirithealer", + value = "spirithealer", + }, + { + children = { + { + fileId = "126045", + text = "spiritofredemption.m2", + value = "spiritofredemption.m2", + }, + }, + text = "spiritofredemption", + value = "spiritofredemption", + }, + { + children = { + { + fileId = "126047", + text = "sporebat.m2", + value = "sporebat.m2", + }, + }, + text = "sporebat", + value = "sporebat", + }, + { + children = { + { + fileId = "126052", + text = "sporecreature.m2", + value = "sporecreature.m2", + }, + }, + text = "sporecreature", + value = "sporecreature", + }, + { + children = { + { + fileId = "126055", + text = "sporeling.m2", + value = "sporeling.m2", + }, + }, + text = "sporeling", + value = "sporeling", + }, + { + children = { + { + fileId = "126061", + text = "squirrel.m2", + value = "squirrel.m2", + }, + }, + text = "squirrel", + value = "squirrel", + }, + { + children = { + { + fileId = "126065", + text = "stag.m2", + value = "stag.m2", + }, + }, + text = "stag", + value = "stag", + }, + { + children = { + { + fileId = "303696", + text = "collapsing_star.m2", + value = "collapsing_star.m2", + }, + }, + text = "star", + value = "star", + }, + { + children = { + { + fileId = "126069", + text = "steamtonk.m2", + value = "steamtonk.m2", + }, + }, + text = "steamtonk", + value = "steamtonk", + }, + { + children = { + { + fileId = "126072", + text = "stonekeeper.m2", + value = "stonekeeper.m2", + }, + }, + text = "stonekeeper", + value = "stonekeeper", + }, + { + children = { + { + fileId = "234861", + text = "stonetreelog02_mount.m2", + value = "stonetreelog02_mount.m2", + }, + { + fileId = "234862", + text = "stonetreelog03_mount.m2", + value = "stonetreelog03_mount.m2", + }, + }, + text = "stonetreelog", + value = "stonetreelog", + }, + { + children = { + { + fileId = "126075", + text = "stormcrow.m2", + value = "stormcrow.m2", + }, + }, + text = "stormcrow", + value = "stormcrow", + }, + { + children = { + { + fileId = "126077", + text = "stormcrowdruid.m2", + value = "stormcrowdruid.m2", + }, + { + fileId = "126078", + text = "stormcrowdruid_q.m2", + value = "stormcrowdruid_q.m2", + }, + }, + text = "stormcrowdruid", + value = "stormcrowdruid", + }, + { + children = { + { + fileId = "126081", + text = "succubus.m2", + value = "succubus.m2", + }, + }, + text = "succubus", + value = "succubus", + }, + { + children = { + { + fileId = "126101", + text = "superzombie.m2", + value = "superzombie.m2", + }, + }, + text = "superzombie", + value = "superzombie", + }, + { + children = { + { + fileId = "382936", + text = "t_robot.m2", + value = "t_robot.m2", + }, + }, + text = "t_robot", + value = "t_robot", + }, + { + children = { + { + fileId = "126106", + text = "talbuk.m2", + value = "talbuk.m2", + }, + }, + text = "talbuk", + value = "talbuk", + }, + { + children = { + { + fileId = "126117", + text = "tallstrider.m2", + value = "tallstrider.m2", + }, + }, + text = "tallstrider", + value = "tallstrider", + }, + { + children = { + { + fileId = "126124", + text = "tarantula.m2", + value = "tarantula.m2", + }, + }, + text = "tarantula", + value = "tarantula", + }, + { + children = { + { + fileId = "126130", + text = "tauren_mountedcanoe.m2", + value = "tauren_mountedcanoe.m2", + }, + }, + text = "tauren_mountedcanoe", + value = "tauren_mountedcanoe", + }, + { + children = { + { + fileId = "126131", + text = "deathguard.m2", + value = "deathguard.m2", + }, + }, + text = "tempdeathguard", + value = "tempdeathguard", + }, + { + children = { + { + fileId = "126133", + text = "scarletcrusaderheavy.m2", + value = "scarletcrusaderheavy.m2", + }, + }, + text = "tempscarletcrusaderheavy", + value = "tempscarletcrusaderheavy", + }, + { + children = { + { + fileId = "126136", + text = "scarletcrusaderlight.m2", + value = "scarletcrusaderlight.m2", + }, + }, + text = "tempscarletcrusaderlight", + value = "tempscarletcrusaderlight", + }, + { + children = { + { + fileId = "126137", + text = "scourgemalenpc.m2", + value = "scourgemalenpc.m2", + }, + }, + text = "tempscourgemalenpc", + value = "tempscourgemalenpc", + }, + { + children = { + { + fileId = "335908", + text = "terenasmenethil.m2", + value = "terenasmenethil.m2", + }, + }, + text = "terenasmenethil", + value = "terenasmenethil", + }, + { + children = { + { + fileId = "126143", + text = "terongorefiend.m2", + value = "terongorefiend.m2", + }, + }, + text = "terongorefiend", + value = "terongorefiend", + }, + { + children = { + { + fileId = "126149", + text = "terongorefiend_mounted.m2", + value = "terongorefiend_mounted.m2", + }, + }, + text = "terongorefiend_mounted", + value = "terongorefiend_mounted", + }, + { + children = { + { + fileId = "126150", + text = "tharazun.m2", + value = "tharazun.m2", + }, + }, + text = "tharazun", + value = "tharazun", + }, + { + children = { + { + fileId = "254847", + text = "thorum.m2", + value = "thorum.m2", + }, + }, + text = "thorum", + value = "thorum", + }, + { + children = { + { + fileId = "126153", + text = "threshadon.m2", + value = "threshadon.m2", + }, + }, + text = "threshadon", + value = "threshadon", + }, + { + children = { + { + fileId = "126158", + text = "thunderaan.m2", + value = "thunderaan.m2", + }, + }, + text = "thunderaan", + value = "thunderaan", + }, + { + children = { + { + fileId = "126169", + text = "thunderlizard.m2", + value = "thunderlizard.m2", + }, + }, + text = "thunderlizard", + value = "thunderlizard", + }, + { + children = { + { + fileId = "126171", + text = "tiger.m2", + value = "tiger.m2", + }, + { + fileId = "126172", + text = "tiger_ghost.m2", + value = "tiger_ghost.m2", + }, + { + fileId = "126173", + text = "tigercub.m2", + value = "tigercub.m2", + }, + { + fileId = "126174", + text = "tigergem.m2", + value = "tigergem.m2", + }, + { + fileId = "309884", + text = "tigerjade.m2", + value = "tigerjade.m2", + }, + }, + text = "tiger", + value = "tiger", + }, + { + children = { + { + fileId = "2199505", + text = "tigon.m2", + value = "tigon.m2", + }, + { + fileId = "126194", + text = "tigonfemale.m2", + value = "tigonfemale.m2", + }, + { + fileId = "126195", + text = "tigonmale.m2", + value = "tigonmale.m2", + }, + }, + text = "tigon", + value = "tigon", + }, + { + children = { + { + fileId = "304322", + text = "tikimask.m2", + value = "tikimask.m2", + }, + }, + text = "tikimask", + value = "tikimask", + }, + { + children = { + { + fileId = "773288", + text = "tikimask_pet01.m2", + value = "tikimask_pet01.m2", + }, + { + fileId = "773290", + text = "tikimask_pet02.m2", + value = "tikimask_pet02.m2", + }, + { + fileId = "773292", + text = "tikimask_pet03.m2", + value = "tikimask_pet03.m2", + }, + }, + text = "tikimask_pet01", + value = "tikimask_pet01", + }, + { + children = { + { + fileId = "126198", + text = "time_rift1.m2", + value = "time_rift1.m2", + }, + }, + text = "timerift", + value = "timerift", + }, + { + children = { + { + fileId = "126199", + text = "titanfemale.m2", + value = "titanfemale.m2", + }, + }, + text = "titanfemale", + value = "titanfemale", + }, + { + children = { + { + fileId = "126214", + text = "titanmale.m2", + value = "titanmale.m2", + }, + { + fileId = "126215", + text = "titanmale_ghost.m2", + value = "titanmale_ghost.m2", + }, + }, + text = "titanmale", + value = "titanmale", + }, + { + children = { + { + fileId = "234864", + text = "titanorb.m2", + value = "titanorb.m2", + }, + { + fileId = "252722", + text = "titanorb_02.m2", + value = "titanorb_02.m2", + }, + }, + text = "titanorb", + value = "titanorb", + }, + { + children = { + { + fileId = "5599747", + text = "treasurecrabpetclassic.m2", + value = "treasurecrabpetclassic.m2", + }, + }, + text = "treasurecrabpetclassic", + value = "treasurecrabpetclassic", + }, + { + children = { + { + fileId = "126223", + text = "ashenvaletreefalling01.m2", + value = "ashenvaletreefalling01.m2", + }, + }, + text = "tree", + value = "tree", + }, + { + children = { + { + fileId = "126225", + text = "trex.m2", + value = "trex.m2", + }, + }, + text = "trex", + value = "trex", + }, + { + children = { + { + fileId = "126235", + text = "tripod.m2", + value = "tripod.m2", + }, + }, + text = "tripod", + value = "tripod", + }, + { + children = { + { + fileId = "126239", + text = "troglodyte.m2", + value = "troglodyte.m2", + }, + }, + text = "troglodyte", + value = "troglodyte", + }, + { + children = { + { + fileId = "126244", + text = "troll.m2", + value = "troll.m2", + }, + { + fileId = "126245", + text = "trollforestboss.m2", + value = "trollforestboss.m2", + }, + { + fileId = "126246", + text = "trollforestcaster.m2", + value = "trollforestcaster.m2", + }, + { + fileId = "126247", + text = "trolljungleboss.m2", + value = "trolljungleboss.m2", + }, + { + fileId = "126248", + text = "trolljunglecaster.m2", + value = "trolljunglecaster.m2", + }, + { + fileId = "126249", + text = "trollmelee.m2", + value = "trollmelee.m2", + }, + { + fileId = "126267", + text = "trollwhelp.m2", + value = "trollwhelp.m2", + }, + }, + text = "troll", + value = "troll", + }, + { + children = { + { + fileId = "126277", + text = "trolldire.m2", + value = "trolldire.m2", + }, + }, + text = "trolldire", + value = "trolldire", + }, + { + children = { + { + fileId = "126278", + text = "turkey.m2", + value = "turkey.m2", + }, + }, + text = "turkey", + value = "turkey", + }, + { + children = { + { + fileId = "126281", + text = "turtle.m2", + value = "turtle.m2", + }, + }, + text = "turtle", + value = "turtle", + }, + { + children = { + { + fileId = "318522", + text = "ud_ts_kite.m2", + value = "ud_ts_kite.m2", + }, + }, + text = "tuskarkite", + value = "tuskarkite", + }, + { + children = { + { + fileId = "4500205", + text = "tuskarrgliderwotlk.m2", + value = "tuskarrgliderwotlk.m2", + }, + }, + text = "tuskarrgliderwotlk", + value = "tuskarrgliderwotlk", + }, + { + children = { + { + fileId = "126286", + text = "tuskarrmalefisherman.m2", + value = "tuskarrmalefisherman.m2", + }, + }, + text = "tuskarrmalefisherman", + value = "tuskarrmalefisherman", + }, + { + children = { + { + fileId = "367653", + text = "twighlightdragon.m2", + value = "twighlightdragon.m2", + }, + }, + text = "twighlightdragon", + value = "twighlightdragon", + }, + { + children = { + { + fileId = "126289", + text = "twinemperor.m2", + value = "twinemperor.m2", + }, + }, + text = "twinemperor", + value = "twinemperor", + }, + { + children = { + { + fileId = "234866", + text = "tyraelpet.m2", + value = "tyraelpet.m2", + }, + }, + text = "tyraelpet", + value = "tyraelpet", + }, + { + children = { + { + fileId = "126300", + text = "undead_eagle.m2", + value = "undead_eagle.m2", + }, + }, + text = "undead_eagle", + value = "undead_eagle", + }, + { + children = { + { + fileId = "126302", + text = "undeadbeast.m2", + value = "undeadbeast.m2", + }, + }, + text = "undeadbeast", + value = "undeadbeast", + }, + { + children = { + { + fileId = "234869", + text = "northrendundeaddrake.m2", + value = "northrendundeaddrake.m2", + }, + { + fileId = "234870", + text = "undeaddrake.m2", + value = "undeaddrake.m2", + }, + }, + text = "undeaddrake", + value = "undeaddrake", + }, + { + children = { + { + fileId = "126304", + text = "ridingundeadhorse.m2", + value = "ridingundeadhorse.m2", + }, + { + fileId = "126306", + text = "undeadhorse.m2", + value = "undeadhorse.m2", + }, + }, + text = "undeadhorse", + value = "undeadhorse", + }, + { + children = { + { + fileId = "234884", + text = "undeadicetroll.m2", + value = "undeadicetroll.m2", + }, + }, + text = "undeadicetroll", + value = "undeadicetroll", + }, + { + children = { + { + fileId = "126314", + text = "undeadnerubianbeast.m2", + value = "undeadnerubianbeast.m2", + }, + }, + text = "undeadnerubianbeast", + value = "undeadnerubianbeast", + }, + { + children = { + { + fileId = "126320", + text = "unicorn.m2", + value = "unicorn.m2", + }, + }, + text = "unicorn", + value = "unicorn", + }, + { + children = { + { + fileId = "126326", + text = "valkier.m2", + value = "valkier.m2", + }, + }, + text = "valkier", + value = "valkier", + }, + { + children = { + { + fileId = "126332", + text = "valkierdark.m2", + value = "valkierdark.m2", + }, + }, + text = "valkierdark", + value = "valkierdark", + }, + { + children = { + { + fileId = "234885", + text = "vampyrbloodprince.m2", + value = "vampyrbloodprince.m2", + }, + }, + text = "vampyrbloodprince", + value = "vampyrbloodprince", + }, + { + children = { + { + fileId = "254925", + text = "vapor.m2", + value = "vapor.m2", + }, + }, + text = "vapor", + value = "vapor", + }, + { + children = { + { + fileId = "126337", + text = "velen.m2", + value = "velen.m2", + }, + }, + text = "velen", + value = "velen", + }, + { + children = { + { + fileId = "126342", + text = "voidcaller.m2", + value = "voidcaller.m2", + }, + }, + text = "voidcaller", + value = "voidcaller", + }, + { + children = { + { + fileId = "126350", + text = "voidgod.m2", + value = "voidgod.m2", + }, + }, + text = "voidgod", + value = "voidgod", + }, + { + children = { + { + fileId = "126353", + text = "voidlord.m2", + value = "voidlord.m2", + }, + }, + text = "voidlord", + value = "voidlord", + }, + { + children = { + { + fileId = "126363", + text = "voidterror.m2", + value = "voidterror.m2", + }, + }, + text = "voidterror", + value = "voidterror", + }, + { + children = { + { + fileId = "126369", + text = "voidwalker.m2", + value = "voidwalker.m2", + }, + }, + text = "voidwalker", + value = "voidwalker", + }, + { + children = { + { + fileId = "126371", + text = "voidwalker_outland.m2", + value = "voidwalker_outland.m2", + }, + }, + text = "voidwalkeroutland", + value = "voidwalkeroutland", + }, + { + children = { + { + fileId = "126382", + text = "voidwraith.m2", + value = "voidwraith.m2", + }, + }, + text = "voidwraith", + value = "voidwraith", + }, + { + children = { + { + fileId = "126390", + text = "transport_vrykul_medium.m2", + value = "transport_vrykul_medium.m2", + }, + { + fileId = "126391", + text = "transport_vrykul_mediumlight.m2", + value = "transport_vrykul_mediumlight.m2", + }, + }, + text = "vrykulboat", + value = "vrykulboat", + }, + { + children = { + { + fileId = "234902", + text = "femalevrykulboss.m2", + value = "femalevrykulboss.m2", + }, + { + fileId = "234907", + text = "frostvrykulfemalecaster.m2", + value = "frostvrykulfemalecaster.m2", + }, + { + fileId = "234908", + text = "frostvrykulfemaledruid.m2", + value = "frostvrykulfemaledruid.m2", + }, + { + fileId = "234914", + text = "frostvrykulfemalehunter.m2", + value = "frostvrykulfemalehunter.m2", + }, + { + fileId = "234918", + text = "frostvrykulfemalewarrior.m2", + value = "frostvrykulfemalewarrior.m2", + }, + { + fileId = "126397", + text = "vrykulfemale.m2", + value = "vrykulfemale.m2", + }, + { + fileId = "234919", + text = "vrykulfemalecaster.m2", + value = "vrykulfemalecaster.m2", + }, + { + fileId = "234926", + text = "vrykulfemaledruid.m2", + value = "vrykulfemaledruid.m2", + }, + { + fileId = "234933", + text = "vrykulfemalehunter.m2", + value = "vrykulfemalehunter.m2", + }, + { + fileId = "234946", + text = "vrykulfemalewarrior.m2", + value = "vrykulfemalewarrior.m2", + }, + }, + text = "vrykulfemale", + value = "vrykulfemale", + }, + { + children = { + { + fileId = "234959", + text = "wailingwindscreature.m2", + value = "wailingwindscreature.m2", + }, + }, + text = "wailingwindscreature", + value = "wailingwindscreature", + }, + { + children = { + { + fileId = "311509", + text = "argentwarhorse.m2", + value = "argentwarhorse.m2", + }, + { + fileId = "126403", + text = "pvpwarhorse.m2", + value = "pvpwarhorse.m2", + }, + { + fileId = "126407", + text = "warhorse.m2", + value = "warhorse.m2", + }, + }, + text = "warhorse", + value = "warhorse", + }, + { + children = { + { + fileId = "126410", + text = "warpstalker.m2", + value = "warpstalker.m2", + }, + }, + text = "warpstalker", + value = "warpstalker", + }, + { + children = { + { + fileId = "3940778", + text = "warpstalkermountbc.m2", + value = "warpstalkermountbc.m2", + }, + }, + text = "warpstalkermountbc", + value = "warpstalkermountbc", + }, + { + children = { + { + fileId = "126418", + text = "warpstorm.m2", + value = "warpstorm.m2", + }, + { + fileId = "126419", + text = "warpstorm_large.m2", + value = "warpstorm_large.m2", + }, + { + fileId = "126420", + text = "warpstorm_xlarge.m2", + value = "warpstorm_xlarge.m2", + }, + }, + text = "warpstorm", + value = "warpstorm", + }, + { + children = { + { + fileId = "126423", + text = "waterbubblecreature.m2", + value = "waterbubblecreature.m2", + }, + { + fileId = "126424", + text = "waterbubblecreature_nosound.m2", + value = "waterbubblecreature_nosound.m2", + }, + }, + text = "waterbubblecreature", + value = "waterbubblecreature", + }, + { + children = { + { + fileId = "126426", + text = "waterelemental.m2", + value = "waterelemental.m2", + }, + }, + text = "waterelemental", + value = "waterelemental", + }, + { + children = { + { + fileId = "126437", + text = "wellofsouls.m2", + value = "wellofsouls.m2", + }, + { + fileId = "126440", + text = "wellofsoulsgrief.m2", + value = "wellofsoulsgrief.m2", + }, + { + fileId = "126441", + text = "wellofsoulspain.m2", + value = "wellofsoulspain.m2", + }, + { + fileId = "126443", + text = "wellofsoulsseduction.m2", + value = "wellofsoulsseduction.m2", + }, + }, + text = "wellofsouls", + value = "wellofsouls", + }, + { + children = { + { + fileId = "126444", + text = "wendigo.m2", + value = "wendigo.m2", + }, + }, + text = "wendigo", + value = "wendigo", + }, + { + children = { + { + fileId = "126449", + text = "wight.m2", + value = "wight.m2", + }, + { + fileId = "340707", + text = "wightscientist.m2", + value = "wightscientist.m2", + }, + }, + text = "wight", + value = "wight", + }, + { + children = { + { + fileId = "126452", + text = "windserpent.m2", + value = "windserpent.m2", + }, + }, + text = "windserpent", + value = "windserpent", + }, + { + children = { + { + fileId = "126465", + text = "windserpentoutland.m2", + value = "windserpentoutland.m2", + }, + }, + text = "windserpentoutland", + value = "windserpentoutland", + }, + { + children = { + { + fileId = "340846", + text = "wingedhorse.m2", + value = "wingedhorse.m2", + }, + { + fileId = "353643", + text = "wingedhorse_nonflying.m2", + value = "wingedhorse_nonflying.m2", + }, + }, + text = "wingedhorse", + value = "wingedhorse", + }, + { + children = { + { + fileId = "126483", + text = "wisp.m2", + value = "wisp.m2", + }, + { + fileId = "2199512", + text = "wispred.m2", + value = "wispred.m2", + }, + }, + text = "wisp", + value = "wisp", + }, + { + children = { + { + fileId = "126487", + text = "wolf.m2", + value = "wolf.m2", + }, + { + fileId = "126488", + text = "wolf_ghost.m2", + value = "wolf_ghost.m2", + }, + }, + text = "wolf", + value = "wolf", + }, + { + children = { + { + fileId = "126501", + text = "wolpertinger.m2", + value = "wolpertinger.m2", + }, + }, + text = "wolpertinger", + value = "wolpertinger", + }, + { + children = { + { + fileId = "126502", + text = "wolvar.m2", + value = "wolvar.m2", + }, + }, + text = "wolvar", + value = "wolvar", + }, + { + children = { + { + fileId = "234963", + text = "woolyrhino.m2", + value = "woolyrhino.m2", + }, + { + fileId = "365780", + text = "woolyrhinomount.m2", + value = "woolyrhinomount.m2", + }, + }, + text = "woolyrhino", + value = "woolyrhino", + }, + { + children = { + { + fileId = "126511", + text = "worgen.m2", + value = "worgen.m2", + }, + }, + text = "worgen", + value = "worgen", + }, + { + children = { + { + fileId = "126512", + text = "worm.m2", + value = "worm.m2", + }, + }, + text = "worm", + value = "worm", + }, + { + children = { + { + fileId = "126521", + text = "wrathguard.m2", + value = "wrathguard.m2", + }, + }, + text = "wrathguard", + value = "wrathguard", + }, + { + children = { + { + fileId = "126530", + text = "wyvern.m2", + value = "wyvern.m2", + }, + { + fileId = "126532", + text = "wyvern_armored.m2", + value = "wyvern_armored.m2", + }, + { + fileId = "126540", + text = "wyvern_mount.m2", + value = "wyvern_mount.m2", + }, + }, + text = "wyvern", + value = "wyvern", + }, + { + children = { + { + fileId = "328268", + text = "wyvernpet.m2", + value = "wyvernpet.m2", + }, + }, + text = "wyvernpet", + value = "wyvernpet", + }, + { + children = { + { + fileId = "126547", + text = "yeti.m2", + value = "yeti.m2", + }, + }, + text = "yeti", + value = "yeti", + }, + { + children = { + { + fileId = "253209", + text = "yoggsaron.m2", + value = "yoggsaron.m2", + }, + { + fileId = "253331", + text = "yoggsaronbrain.m2", + value = "yoggsaronbrain.m2", + }, + { + fileId = "253332", + text = "yoggsaronstage2.m2", + value = "yoggsaronstage2.m2", + }, + { + fileId = "253183", + text = "yoggsarontentacle.m2", + value = "yoggsarontentacle.m2", + }, + { + fileId = "253184", + text = "yoggsarontentaclemace.m2", + value = "yoggsarontentaclemace.m2", + }, + { + fileId = "253185", + text = "yoggsarontentaclethin.m2", + value = "yoggsarontentaclethin.m2", + }, + }, + text = "yoggsaron", + value = "yoggsaron", + }, + { + children = { + { + fileId = "126560", + text = "zebramount.m2", + value = "zebramount.m2", + }, + }, + text = "zebramount", + value = "zebramount", + }, + { + children = { + { + fileId = "126561", + text = "zerglingpet.m2", + value = "zerglingpet.m2", + }, + }, + text = "zergling", + value = "zergling", + }, + { + children = { + { + fileId = "126565", + text = "zigguratcrystal.m2", + value = "zigguratcrystal.m2", + }, + }, + text = "zigguratcrystal", + value = "zigguratcrystal", + }, + { + children = { + { + fileId = "126568", + text = "zippelin.m2", + value = "zippelin.m2", + }, + }, + text = "zippelin", + value = "zippelin", + }, + { + children = { + { + fileId = "126570", + text = "zombie.m2", + value = "zombie.m2", + }, + { + fileId = "126571", + text = "zombiearm.m2", + value = "zombiearm.m2", + }, + { + fileId = "126575", + text = "zombiesword.m2", + value = "zombiesword.m2", + }, + }, + text = "zombie", + value = "zombie", + }, + { + children = { + { + fileId = "126577", + text = "zombiefiedvrykul.m2", + value = "zombiefiedvrykul.m2", + }, + }, + text = "zombiefiedvrykul", + value = "zombiefiedvrykul", + }, + { + children = { + { + fileId = "126586", + text = "zombiefiedvrykulcaster.m2", + value = "zombiefiedvrykulcaster.m2", + }, + }, + text = "zombiefiedvrykulcaster", + value = "zombiefiedvrykulcaster", + }, + { + children = { + { + fileId = "234968", + text = "zuldrakgolem.m2", + value = "zuldrakgolem.m2", + }, + }, + text = "zuldrakgolem", + value = "zuldrakgolem", + }, + { + children = { + { + fileId = "126597", + text = "zuljin.m2", + value = "zuljin.m2", + }, + }, + text = "zuljin", + value = "zuljin", + }, + }, + text = "creature", + value = "creature", + }, + { + children = { + { + children = { + { + fileId = "130452", + text = "aurora.m2", + value = "aurora.m2", + }, + { + fileId = "235281", + text = "auroraorange.m2", + value = "auroraorange.m2", + }, + { + fileId = "235282", + text = "aurorayellowgreen.m2", + value = "aurorayellowgreen.m2", + }, + { + fileId = "235283", + text = "azjolnerub_skya.m2", + value = "azjolnerub_skya.m2", + }, + { + fileId = "307699", + text = "battlefield_dirty_skybox.m2", + value = "battlefield_dirty_skybox.m2", + }, + { + fileId = "130465", + text = "bladesedgeforestskybox.m2", + value = "bladesedgeforestskybox.m2", + }, + { + fileId = "130469", + text = "bladesedgenightelfskybox.m2", + value = "bladesedgenightelfskybox.m2", + }, + { + fileId = "130476", + text = "bladesedgeskybox.m2", + value = "bladesedgeskybox.m2", + }, + { + fileId = "130481", + text = "bonewastesskybox.m2", + value = "bonewastesskybox.m2", + }, + { + fileId = "130482", + text = "cavernsoftimesky.m2", + value = "cavernsoftimesky.m2", + }, + { + fileId = "235284", + text = "chamberaspectsblacksky.m2", + value = "chamberaspectsblacksky.m2", + }, + { + fileId = "130485", + text = "coldarrasky.m2", + value = "coldarrasky.m2", + }, + { + fileId = "130493", + text = "cot_sky01.m2", + value = "cot_sky01.m2", + }, + { + fileId = "235302", + text = "dalaranskybox.m2", + value = "dalaranskybox.m2", + }, + { + fileId = "130495", + text = "deathclouds.m2", + value = "deathclouds.m2", + }, + { + fileId = "235304", + text = "deathknightfireskybox.m2", + value = "deathknightfireskybox.m2", + }, + { + fileId = "235313", + text = "deathskybox.m2", + value = "deathskybox.m2", + }, + { + fileId = "130497", + text = "diremaulskybox.m2", + value = "diremaulskybox.m2", + }, + { + fileId = "130502", + text = "dragonblightscarletskybox.m2", + value = "dragonblightscarletskybox.m2", + }, + { + fileId = "130525", + text = "hellfireskybox.m2", + value = "hellfireskybox.m2", + }, + { + fileId = "336477", + text = "icecrownarthasdeathsky.m2", + value = "icecrownarthasdeathsky.m2", + }, + { + fileId = "130551", + text = "icecrowncitadelsky.m2", + value = "icecrowncitadelsky.m2", + }, + { + fileId = "235326", + text = "icecrowndarksky.m2", + value = "icecrowndarksky.m2", + }, + { + fileId = "340088", + text = "icecrownraidsky01.m2", + value = "icecrownraidsky01.m2", + }, + { + fileId = "344572", + text = "icecrownraidsky02.m2", + value = "icecrownraidsky02.m2", + }, + { + fileId = "235329", + text = "icecrownscourgesky.m2", + value = "icecrownscourgesky.m2", + }, + { + fileId = "130552", + text = "icecrownsky.m2", + value = "icecrownsky.m2", + }, + { + fileId = "342584", + text = "icecrownstarrysky.m2", + value = "icecrownstarrysky.m2", + }, + { + fileId = "341557", + text = "icecrownstormysky.m2", + value = "icecrownstormysky.m2", + }, + { + fileId = "235330", + text = "icecrownsunsetsky.m2", + value = "icecrownsunsetsky.m2", + }, + { + fileId = "130575", + text = "nagrandskybox.m2", + value = "nagrandskybox.m2", + }, + { + fileId = "130593", + text = "netherstormskybox.m2", + value = "netherstormskybox.m2", + }, + { + fileId = "235337", + text = "nexusraid_nebulasky.m2", + value = "nexusraid_nebulasky.m2", + }, + { + fileId = "235338", + text = "nexusraid_runeeffects_nebula.m2", + value = "nexusraid_runeeffects_nebula.m2", + }, + { + fileId = "235339", + text = "nexusraid_runeeffects_starry.m2", + value = "nexusraid_runeeffects_starry.m2", + }, + { + fileId = "130601", + text = "nexusraid_skya.m2", + value = "nexusraid_skya.m2", + }, + { + fileId = "235340", + text = "nexusraid_starrysky.m2", + value = "nexusraid_starrysky.m2", + }, + { + fileId = "235342", + text = "nexusraid_wormhole.m2", + value = "nexusraid_wormhole.m2", + }, + { + fileId = "130609", + text = "portalworldlegionsky.m2", + value = "portalworldlegionsky.m2", + }, + { + fileId = "365262", + text = "rubysanctumsky.m2", + value = "rubysanctumsky.m2", + }, + { + fileId = "130616", + text = "shadowmoonillidan.m2", + value = "shadowmoonillidan.m2", + }, + { + fileId = "130623", + text = "shadowmoonskybox.m2", + value = "shadowmoonskybox.m2", + }, + { + fileId = "130629", + text = "stars.m2", + value = "stars.m2", + }, + { + fileId = "235357", + text = "stormpeaks_skya.m2", + value = "stormpeaks_skya.m2", + }, + { + fileId = "235358", + text = "stormpeaks_skyb_storm.m2", + value = "stormpeaks_skyb_storm.m2", + }, + { + fileId = "235362", + text = "stormpeaks_skyc_ulduar.m2", + value = "stormpeaks_skyc_ulduar.m2", + }, + { + fileId = "130636", + text = "stratholmeskybox.m2", + value = "stratholmeskybox.m2", + }, + { + fileId = "235374", + text = "uldurancloudysky.m2", + value = "uldurancloudysky.m2", + }, + { + fileId = "235383", + text = "wintergraspsmokysky.m2", + value = "wintergraspsmokysky.m2", + }, + { + fileId = "235384", + text = "wintergraspsmokysky_night.m2", + value = "wintergraspsmokysky_night.m2", + }, + { + fileId = "130645", + text = "zuldrakskya.m2", + value = "zuldrakskya.m2", + }, + { + fileId = "235396", + text = "zuldrakskyb.m2", + value = "zuldrakskyb.m2", + }, + }, + text = "stars", + value = "stars", + }, + }, + text = "environments", + value = "environments", + }, + { + children = { + { + children = { + { + fileId = "130731", + text = "talktome.m2", + value = "talktome.m2", + }, + { + fileId = "587741", + text = "talktome_chat.m2", + value = "talktome_chat.m2", + }, + { + fileId = "587744", + text = "talktome_gears.m2", + value = "talktome_gears.m2", + }, + { + fileId = "650616", + text = "talktome_legendary.m2", + value = "talktome_legendary.m2", + }, + { + fileId = "650036", + text = "talktome_petbattles.m2", + value = "talktome_petbattles.m2", + }, + { + fileId = "667489", + text = "talktome_petbattles_gold.m2", + value = "talktome_petbattles_gold.m2", + }, + { + fileId = "650619", + text = "talktome_questionlegendary.m2", + value = "talktome_questionlegendary.m2", + }, + { + fileId = "130732", + text = "talktomeblue.m2", + value = "talktomeblue.m2", + }, + { + fileId = "1444889", + text = "talktomeblue_faded.m2", + value = "talktomeblue_faded.m2", + }, + { + fileId = "1417649", + text = "talktomefaded.m2", + value = "talktomefaded.m2", + }, + { + fileId = "130733", + text = "talktomegreen.m2", + value = "talktomegreen.m2", + }, + { + fileId = "130734", + text = "talktomegrey.m2", + value = "talktomegrey.m2", + }, + { + fileId = "130735", + text = "talktomequestion_grey.m2", + value = "talktomequestion_grey.m2", + }, + { + fileId = "130736", + text = "talktomequestion_ltblue.m2", + value = "talktomequestion_ltblue.m2", + }, + { + fileId = "130737", + text = "talktomequestion_white.m2", + value = "talktomequestion_white.m2", + }, + { + fileId = "1444892", + text = "talktomequestionltblue_faded.m2", + value = "talktomequestionltblue_faded.m2", + }, + { + fileId = "130738", + text = "talktomequestionmark.m2", + value = "talktomequestionmark.m2", + }, + { + fileId = "433904", + text = "talktomered.m2", + value = "talktomered.m2", + }, + { + fileId = "523824", + text = "talktometrainerclass.m2", + value = "talktometrainerclass.m2", + }, + { + fileId = "130745", + text = "ui-autocastbutton.m2", + value = "ui-autocastbutton.m2", + }, + { + fileId = "130746", + text = "ui-buffon.m2", + value = "ui-buffon.m2", + }, + }, + text = "buttons", + value = "buttons", + }, + { + children = { + { + fileId = "131012", + text = "ui-cooldown-indicator.m2", + value = "ui-cooldown-indicator.m2", + }, + }, + text = "cooldown", + value = "cooldown", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "623712", + text = "ui_alliance.m2", + value = "ui_alliance.m2", + }, + }, + text = "ui_alliance", + value = "ui_alliance", + }, + { + children = { + { + fileId = "651555", + text = "ui_alliance_lowres.m2", + value = "ui_alliance_lowres.m2", + }, + }, + text = "ui_alliance_lowres", + value = "ui_alliance_lowres", + }, + { + children = { + { + fileId = "131921", + text = "ui_bloodelf.m2", + value = "ui_bloodelf.m2", + }, + }, + text = "ui_bloodelf", + value = "ui_bloodelf", + }, + { + children = { + { + fileId = "343630", + text = "ui_characterselect.m2", + value = "ui_characterselect.m2", + }, + }, + text = "ui_characterselect", + value = "ui_characterselect", + }, + { + children = { + { + fileId = "236082", + text = "ui_deathknight.m2", + value = "ui_deathknight.m2", + }, + { + fileId = "1560617", + text = "ui_deathknight_lowres.m2", + value = "ui_deathknight_lowres.m2", + }, + }, + text = "ui_deathknight", + value = "ui_deathknight", + }, + { + children = { + { + fileId = "1305036", + text = "ui_demonhunter.m2", + value = "ui_demonhunter.m2", + }, + { + fileId = "1560446", + text = "ui_demonhunter_lowres.m2", + value = "ui_demonhunter_lowres.m2", + }, + }, + text = "ui_demonhunter", + value = "ui_demonhunter", + }, + { + children = { + { + fileId = "131934", + text = "ui_draenei.m2", + value = "ui_draenei.m2", + }, + }, + text = "ui_draenei", + value = "ui_draenei", + }, + { + children = { + { + fileId = "131940", + text = "ui_dwarf.m2", + value = "ui_dwarf.m2", + }, + }, + text = "ui_dwarf", + value = "ui_dwarf", + }, + { + children = { + { + fileId = "430171", + text = "ui_gnome.m2", + value = "ui_gnome.m2", + }, + }, + text = "ui_gnome", + value = "ui_gnome", + }, + { + children = { + { + fileId = "319097", + text = "ui_goblin.m2", + value = "ui_goblin.m2", + }, + }, + text = "ui_goblin", + value = "ui_goblin", + }, + { + children = { + { + fileId = "1662239", + text = "ui_highmountaintauren.m2", + value = "ui_highmountaintauren.m2", + }, + }, + text = "ui_highmountaintauren", + value = "ui_highmountaintauren", + }, + { + children = { + { + fileId = "623714", + text = "ui_horde.m2", + value = "ui_horde.m2", + }, + }, + text = "ui_horde", + value = "ui_horde", + }, + { + children = { + { + fileId = "651558", + text = "ui_horde_lowres.m2", + value = "ui_horde_lowres.m2", + }, + }, + text = "ui_horde_lowres", + value = "ui_horde_lowres", + }, + { + children = { + { + fileId = "131948", + text = "ui_human.m2", + value = "ui_human.m2", + }, + }, + text = "ui_human", + value = "ui_human", + }, + { + children = { + { + fileId = "1662241", + text = "ui_lightforgeddraenei.m2", + value = "ui_lightforgeddraenei.m2", + }, + }, + text = "ui_lightforgeddraenei", + value = "ui_lightforgeddraenei", + }, + { + children = { + { + fileId = "131970", + text = "ui_mainmenu.m2", + value = "ui_mainmenu.m2", + }, + }, + text = "ui_mainmenu", + value = "ui_mainmenu", + }, + { + children = { + { + fileId = "131982", + text = "ui_mainmenu_burningcrusade.m2", + value = "ui_mainmenu_burningcrusade.m2", + }, + }, + text = "ui_mainmenu_burningcrusade", + value = "ui_mainmenu_burningcrusade", + }, + { + children = { + { + fileId = "653518", + text = "ui_mainmenu_cata_lowbandwidth.m2", + value = "ui_mainmenu_cata_lowbandwidth.m2", + }, + }, + text = "ui_mainmenu_cata_lowbandwidth", + value = "ui_mainmenu_cata_lowbandwidth", + }, + { + children = { + { + fileId = "466614", + text = "ui_mainmenu_cataclysm.m2", + value = "ui_mainmenu_cataclysm.m2", + }, + }, + text = "ui_mainmenu_cataclysm", + value = "ui_mainmenu_cataclysm", + }, + { + children = { + { + fileId = "1396280", + text = "ui_mainmenu_legion.m2", + value = "ui_mainmenu_legion.m2", + }, + { + fileId = "1396283", + text = "ui_mainmenu_legion_lowbandwidth.m2", + value = "ui_mainmenu_legion_lowbandwidth.m2", + }, + }, + text = "ui_mainmenu_legion", + value = "ui_mainmenu_legion", + }, + { + children = { + { + fileId = "467804", + text = "ui_mainmenu_lowbandwidth.m2", + value = "ui_mainmenu_lowbandwidth.m2", + }, + }, + text = "ui_mainmenu_lowbandwidth", + value = "ui_mainmenu_lowbandwidth", + }, + { + children = { + { + fileId = "236122", + text = "ui_mainmenu_northrend.m2", + value = "ui_mainmenu_northrend.m2", + }, + }, + text = "ui_mainmenu_northrend", + value = "ui_mainmenu_northrend", + }, + { + children = { + { + fileId = "631713", + text = "ui_mainmenu_pandaria.m2", + value = "ui_mainmenu_pandaria.m2", + }, + }, + text = "ui_mainmenu_pandaria", + value = "ui_mainmenu_pandaria", + }, + { + children = { + { + fileId = "1067592", + text = "ui_mainmenu_warlords.m2", + value = "ui_mainmenu_warlords.m2", + }, + { + fileId = "1067658", + text = "ui_mainmenu_warlords_lowbandwidth.m2", + value = "ui_mainmenu_warlords_lowbandwidth.m2", + }, + }, + text = "ui_mainmenu_warlords", + value = "ui_mainmenu_warlords", + }, + { + children = { + { + fileId = "1662240", + text = "ui_nightborneelf.m2", + value = "ui_nightborneelf.m2", + }, + }, + text = "ui_nightborneelf", + value = "ui_nightborneelf", + }, + { + children = { + { + fileId = "131993", + text = "ui_nightelf.m2", + value = "ui_nightelf.m2", + }, + }, + text = "ui_nightelf", + value = "ui_nightelf", + }, + { + children = { + { + fileId = "132003", + text = "ui_orc.m2", + value = "ui_orc.m2", + }, + }, + text = "ui_orc", + value = "ui_orc", + }, + { + children = { + { + fileId = "574549", + text = "ui_pandaren.m2", + value = "ui_pandaren.m2", + }, + }, + text = "ui_pandaren", + value = "ui_pandaren", + }, + { + children = { + { + fileId = "623716", + text = "ui_pandarencharacterselect.m2", + value = "ui_pandarencharacterselect.m2", + }, + }, + text = "ui_pandarencharacterselect", + value = "ui_pandarencharacterselect", + }, + { + children = { + { + fileId = "651561", + text = "ui_pandarencharacterselect_lowres.m2", + value = "ui_pandarencharacterselect_lowres.m2", + }, + }, + text = "ui_pandarencharacterselect_lowres", + value = "ui_pandarencharacterselect_lowres", + }, + { + children = { + { + fileId = "132005", + text = "ui_rs_dwarf.m2", + value = "ui_rs_dwarf.m2", + }, + }, + text = "ui_rs_dwarf", + value = "ui_rs_dwarf", + }, + { + children = { + { + fileId = "132007", + text = "ui_rs_human.m2", + value = "ui_rs_human.m2", + }, + }, + text = "ui_rs_human", + value = "ui_rs_human", + }, + { + children = { + { + fileId = "132010", + text = "ui_rs_nightelf.m2", + value = "ui_rs_nightelf.m2", + }, + }, + text = "ui_rs_nightelf", + value = "ui_rs_nightelf", + }, + { + children = { + { + fileId = "132016", + text = "ui_rs_orc.m2", + value = "ui_rs_orc.m2", + }, + }, + text = "ui_rs_orc", + value = "ui_rs_orc", + }, + { + children = { + { + fileId = "132020", + text = "ui_rs_scourge.m2", + value = "ui_rs_scourge.m2", + }, + }, + text = "ui_rs_scourge", + value = "ui_rs_scourge", + }, + { + children = { + { + fileId = "132025", + text = "ui_rs_tauren.m2", + value = "ui_rs_tauren.m2", + }, + }, + text = "ui_rs_tauren", + value = "ui_rs_tauren", + }, + { + children = { + { + fileId = "132035", + text = "ui_scourge.m2", + value = "ui_scourge.m2", + }, + }, + text = "ui_scourge", + value = "ui_scourge", + }, + { + children = { + { + fileId = "132046", + text = "ui_tauren.m2", + value = "ui_tauren.m2", + }, + }, + text = "ui_tauren", + value = "ui_tauren", + }, + { + children = { + { + fileId = "429097", + text = "ui_troll.m2", + value = "ui_troll.m2", + }, + }, + text = "ui_troll", + value = "ui_troll", + }, + { + children = { + { + fileId = "1662242", + text = "ui_voidelf.m2", + value = "ui_voidelf.m2", + }, + }, + text = "ui_voidelf", + value = "ui_voidelf", + }, + { + children = { + { + fileId = "313254", + text = "ui_worgen.m2", + value = "ui_worgen.m2", + }, + }, + text = "ui_worgen", + value = "ui_worgen", + }, + }, + text = "models", + value = "models", + }, + }, + text = "glues", + value = "glues", + }, + { + children = { + { + fileId = "2198609", + text = "inventoryartgeometry.m2", + value = "inventoryartgeometry.m2", + }, + { + fileId = "2198630", + text = "inventoryartgeometryold.m2", + value = "inventoryartgeometryold.m2", + }, + { + fileId = "2198512", + text = "invnoart.m2", + value = "invnoart.m2", + }, + }, + text = "inventoryitems", + value = "inventoryitems", + }, + { + children = { + { + fileId = "136255", + text = "forcedbackpackitem.m2", + value = "forcedbackpackitem.m2", + }, + }, + text = "itemanimations", + value = "itemanimations", + }, + { + children = { + { + fileId = "136432", + text = "minimaparrow.m2", + value = "minimaparrow.m2", + }, + { + fileId = "136433", + text = "minimapcompassring.m2", + value = "minimapcompassring.m2", + }, + { + children = { + { + fileId = "136436", + text = "minimapping.m2", + value = "minimapping.m2", + }, + }, + text = "ping", + value = "ping", + }, + { + fileId = "136444", + text = "rotating-minimaparrow.m2", + value = "rotating-minimaparrow.m2", + }, + { + fileId = "136447", + text = "rotating-minimapgrouparrow.m2", + value = "rotating-minimapgrouparrow.m2", + }, + }, + text = "minimap", + value = "minimap", + }, + { + children = { + { + fileId = "1068226", + text = "6hu_title_garrison.m2", + value = "6hu_title_garrison.m2", + }, + { + fileId = "1068263", + text = "6ih_title_blackhand.m2", + value = "6ih_title_blackhand.m2", + }, + { + fileId = "1068262", + text = "6ih_title_guldan.m2", + value = "6ih_title_guldan.m2", + }, + { + fileId = "1068259", + text = "6ih_title_kargath.m2", + value = "6ih_title_kargath.m2", + }, + { + fileId = "1068258", + text = "6ih_title_kilrogg.m2", + value = "6ih_title_kilrogg.m2", + }, + { + fileId = "1068253", + text = "6ih_title_nerzhul.m2", + value = "6ih_title_nerzhul.m2", + }, + { + fileId = "1068227", + text = "6or_title_garrison.m2", + value = "6or_title_garrison.m2", + }, + }, + text = "titlecards", + value = "titlecards", + }, + { + children = { + { + fileId = "237714", + text = "vehicle_target_01.m2", + value = "vehicle_target_01.m2", + }, + { + fileId = "237715", + text = "vehicle_target_02.m2", + value = "vehicle_target_02.m2", + }, + }, + text = "vehicles", + value = "vehicles", + }, + }, + text = "interface", + value = "interface", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "137236", + text = "nd_forsaken_barricade_doodad.m2", + value = "nd_forsaken_barricade_doodad.m2", + }, + { + fileId = "326024", + text = "nd_forsaken_shipwreckskulls.m2", + value = "nd_forsaken_shipwreckskulls.m2", + }, + }, + text = "nd_forsaken", + value = "nd_forsaken", + }, + }, + text = "buildings", + value = "buildings", + }, + }, + text = "interiors", + value = "interiors", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "137238", + text = "arrowacidflight_01.m2", + value = "arrowacidflight_01.m2", + }, + { + fileId = "137239", + text = "arrowfireflight_01.m2", + value = "arrowfireflight_01.m2", + }, + { + fileId = "137240", + text = "arrowflight_01.m2", + value = "arrowflight_01.m2", + }, + { + fileId = "137241", + text = "arrowiceflight_01.m2", + value = "arrowiceflight_01.m2", + }, + { + fileId = "137242", + text = "arrowmagicflight_01.m2", + value = "arrowmagicflight_01.m2", + }, + { + fileId = "137245", + text = "bulletflight_01.m2", + value = "bulletflight_01.m2", + }, + }, + text = "ammo", + value = "ammo", + }, + { + children = { + { + children = { + { + fileId = "137247", + text = "battlestandard_alliance_a_01.m2", + value = "battlestandard_alliance_a_01.m2", + }, + { + fileId = "2198613", + text = "battlestandard_stormpike_a_01.m2", + value = "battlestandard_stormpike_a_01.m2", + }, + }, + text = "battlestandard_alliance_a_01", + value = "battlestandard_alliance_a_01", + }, + { + children = { + { + fileId = "2199527", + text = "battlestandard_frostwolf_a_01.m2", + value = "battlestandard_frostwolf_a_01.m2", + }, + { + fileId = "137253", + text = "battlestandard_horde_a_01.m2", + value = "battlestandard_horde_a_01.m2", + }, + }, + text = "battlestandard_horde_a_01", + value = "battlestandard_horde_a_01", + }, + }, + text = "battlestandards", + value = "battlestandards", + }, + { + children = { + { + fileId = "137443", + text = "helm_blindfold_a_01_bef.m2", + value = "helm_blindfold_a_01_bef.m2", + }, + { + fileId = "137444", + text = "helm_blindfold_a_01_bem.m2", + value = "helm_blindfold_a_01_bem.m2", + }, + { + fileId = "137445", + text = "helm_blindfold_a_01_drf.m2", + value = "helm_blindfold_a_01_drf.m2", + }, + { + fileId = "137446", + text = "helm_blindfold_a_01_drm.m2", + value = "helm_blindfold_a_01_drm.m2", + }, + { + fileId = "137447", + text = "helm_blindfold_a_01_dwf.m2", + value = "helm_blindfold_a_01_dwf.m2", + }, + { + fileId = "137448", + text = "helm_blindfold_a_01_dwm.m2", + value = "helm_blindfold_a_01_dwm.m2", + }, + { + fileId = "137449", + text = "helm_blindfold_a_01_gnf.m2", + value = "helm_blindfold_a_01_gnf.m2", + }, + { + fileId = "137450", + text = "helm_blindfold_a_01_gnm.m2", + value = "helm_blindfold_a_01_gnm.m2", + }, + { + fileId = "137451", + text = "helm_blindfold_a_01_gof.m2", + value = "helm_blindfold_a_01_gof.m2", + }, + { + fileId = "137452", + text = "helm_blindfold_a_01_gom.m2", + value = "helm_blindfold_a_01_gom.m2", + }, + { + fileId = "137453", + text = "helm_blindfold_a_01_huf.m2", + value = "helm_blindfold_a_01_huf.m2", + }, + { + fileId = "137454", + text = "helm_blindfold_a_01_hum.m2", + value = "helm_blindfold_a_01_hum.m2", + }, + { + fileId = "137455", + text = "helm_blindfold_a_01_nif.m2", + value = "helm_blindfold_a_01_nif.m2", + }, + { + fileId = "137456", + text = "helm_blindfold_a_01_nim.m2", + value = "helm_blindfold_a_01_nim.m2", + }, + { + fileId = "137457", + text = "helm_blindfold_a_01_orf.m2", + value = "helm_blindfold_a_01_orf.m2", + }, + { + fileId = "137458", + text = "helm_blindfold_a_01_orm.m2", + value = "helm_blindfold_a_01_orm.m2", + }, + { + fileId = "137459", + text = "helm_blindfold_a_01_scf.m2", + value = "helm_blindfold_a_01_scf.m2", + }, + { + fileId = "137460", + text = "helm_blindfold_a_01_scm.m2", + value = "helm_blindfold_a_01_scm.m2", + }, + { + fileId = "137461", + text = "helm_blindfold_a_01_taf.m2", + value = "helm_blindfold_a_01_taf.m2", + }, + { + fileId = "137462", + text = "helm_blindfold_a_01_tam.m2", + value = "helm_blindfold_a_01_tam.m2", + }, + { + fileId = "137463", + text = "helm_blindfold_a_01_trf.m2", + value = "helm_blindfold_a_01_trf.m2", + }, + { + fileId = "137464", + text = "helm_blindfold_a_01_trm.m2", + value = "helm_blindfold_a_01_trm.m2", + }, + { + fileId = "137467", + text = "helm_circlet_a_01_bef.m2", + value = "helm_circlet_a_01_bef.m2", + }, + { + fileId = "137468", + text = "helm_circlet_a_01_bem.m2", + value = "helm_circlet_a_01_bem.m2", + }, + { + fileId = "137469", + text = "helm_circlet_a_01_drf.m2", + value = "helm_circlet_a_01_drf.m2", + }, + { + fileId = "137470", + text = "helm_circlet_a_01_drm.m2", + value = "helm_circlet_a_01_drm.m2", + }, + { + fileId = "137471", + text = "helm_circlet_a_01_dwf.m2", + value = "helm_circlet_a_01_dwf.m2", + }, + { + fileId = "137472", + text = "helm_circlet_a_01_dwm.m2", + value = "helm_circlet_a_01_dwm.m2", + }, + { + fileId = "137473", + text = "helm_circlet_a_01_gnf.m2", + value = "helm_circlet_a_01_gnf.m2", + }, + { + fileId = "137474", + text = "helm_circlet_a_01_gnm.m2", + value = "helm_circlet_a_01_gnm.m2", + }, + { + fileId = "137475", + text = "helm_circlet_a_01_gof.m2", + value = "helm_circlet_a_01_gof.m2", + }, + { + fileId = "137476", + text = "helm_circlet_a_01_gom.m2", + value = "helm_circlet_a_01_gom.m2", + }, + { + fileId = "137477", + text = "helm_circlet_a_01_huf.m2", + value = "helm_circlet_a_01_huf.m2", + }, + { + fileId = "137478", + text = "helm_circlet_a_01_hum.m2", + value = "helm_circlet_a_01_hum.m2", + }, + { + fileId = "137479", + text = "helm_circlet_a_01_nif.m2", + value = "helm_circlet_a_01_nif.m2", + }, + { + fileId = "137480", + text = "helm_circlet_a_01_nim.m2", + value = "helm_circlet_a_01_nim.m2", + }, + { + fileId = "137481", + text = "helm_circlet_a_01_orf.m2", + value = "helm_circlet_a_01_orf.m2", + }, + { + fileId = "137482", + text = "helm_circlet_a_01_orm.m2", + value = "helm_circlet_a_01_orm.m2", + }, + { + fileId = "137483", + text = "helm_circlet_a_01_scf.m2", + value = "helm_circlet_a_01_scf.m2", + }, + { + fileId = "137484", + text = "helm_circlet_a_01_scm.m2", + value = "helm_circlet_a_01_scm.m2", + }, + { + fileId = "137485", + text = "helm_circlet_a_01_taf.m2", + value = "helm_circlet_a_01_taf.m2", + }, + { + fileId = "137486", + text = "helm_circlet_a_01_tam.m2", + value = "helm_circlet_a_01_tam.m2", + }, + { + fileId = "137487", + text = "helm_circlet_a_01_trf.m2", + value = "helm_circlet_a_01_trf.m2", + }, + { + fileId = "137488", + text = "helm_circlet_a_01_trm.m2", + value = "helm_circlet_a_01_trm.m2", + }, + { + fileId = "137491", + text = "helm_circlet_b_01_bef.m2", + value = "helm_circlet_b_01_bef.m2", + }, + { + fileId = "137492", + text = "helm_circlet_b_01_bem.m2", + value = "helm_circlet_b_01_bem.m2", + }, + { + fileId = "137493", + text = "helm_circlet_b_01_drf.m2", + value = "helm_circlet_b_01_drf.m2", + }, + { + fileId = "137494", + text = "helm_circlet_b_01_drm.m2", + value = "helm_circlet_b_01_drm.m2", + }, + { + fileId = "137495", + text = "helm_circlet_b_01_dwf.m2", + value = "helm_circlet_b_01_dwf.m2", + }, + { + fileId = "137496", + text = "helm_circlet_b_01_dwm.m2", + value = "helm_circlet_b_01_dwm.m2", + }, + { + fileId = "137497", + text = "helm_circlet_b_01_gnf.m2", + value = "helm_circlet_b_01_gnf.m2", + }, + { + fileId = "137498", + text = "helm_circlet_b_01_gnm.m2", + value = "helm_circlet_b_01_gnm.m2", + }, + { + fileId = "137499", + text = "helm_circlet_b_01_gof.m2", + value = "helm_circlet_b_01_gof.m2", + }, + { + fileId = "137500", + text = "helm_circlet_b_01_gom.m2", + value = "helm_circlet_b_01_gom.m2", + }, + { + fileId = "137501", + text = "helm_circlet_b_01_huf.m2", + value = "helm_circlet_b_01_huf.m2", + }, + { + fileId = "137502", + text = "helm_circlet_b_01_hum.m2", + value = "helm_circlet_b_01_hum.m2", + }, + { + fileId = "137503", + text = "helm_circlet_b_01_nif.m2", + value = "helm_circlet_b_01_nif.m2", + }, + { + fileId = "137504", + text = "helm_circlet_b_01_nim.m2", + value = "helm_circlet_b_01_nim.m2", + }, + { + fileId = "137505", + text = "helm_circlet_b_01_orf.m2", + value = "helm_circlet_b_01_orf.m2", + }, + { + fileId = "137506", + text = "helm_circlet_b_01_orm.m2", + value = "helm_circlet_b_01_orm.m2", + }, + { + fileId = "137507", + text = "helm_circlet_b_01_scf.m2", + value = "helm_circlet_b_01_scf.m2", + }, + { + fileId = "137508", + text = "helm_circlet_b_01_scm.m2", + value = "helm_circlet_b_01_scm.m2", + }, + { + fileId = "137509", + text = "helm_circlet_b_01_taf.m2", + value = "helm_circlet_b_01_taf.m2", + }, + { + fileId = "137510", + text = "helm_circlet_b_01_tam.m2", + value = "helm_circlet_b_01_tam.m2", + }, + { + fileId = "137511", + text = "helm_circlet_b_01_trf.m2", + value = "helm_circlet_b_01_trf.m2", + }, + { + fileId = "137512", + text = "helm_circlet_b_01_trm.m2", + value = "helm_circlet_b_01_trm.m2", + }, + { + fileId = "137520", + text = "helm_circlet_b_02_bef.m2", + value = "helm_circlet_b_02_bef.m2", + }, + { + fileId = "137521", + text = "helm_circlet_b_02_bem.m2", + value = "helm_circlet_b_02_bem.m2", + }, + { + fileId = "137522", + text = "helm_circlet_b_02_drf.m2", + value = "helm_circlet_b_02_drf.m2", + }, + { + fileId = "137523", + text = "helm_circlet_b_02_drm.m2", + value = "helm_circlet_b_02_drm.m2", + }, + { + fileId = "137524", + text = "helm_circlet_b_02_dwf.m2", + value = "helm_circlet_b_02_dwf.m2", + }, + { + fileId = "137525", + text = "helm_circlet_b_02_dwm.m2", + value = "helm_circlet_b_02_dwm.m2", + }, + { + fileId = "137526", + text = "helm_circlet_b_02_gnf.m2", + value = "helm_circlet_b_02_gnf.m2", + }, + { + fileId = "137527", + text = "helm_circlet_b_02_gnm.m2", + value = "helm_circlet_b_02_gnm.m2", + }, + { + fileId = "137528", + text = "helm_circlet_b_02_gof.m2", + value = "helm_circlet_b_02_gof.m2", + }, + { + fileId = "137529", + text = "helm_circlet_b_02_gom.m2", + value = "helm_circlet_b_02_gom.m2", + }, + { + fileId = "137530", + text = "helm_circlet_b_02_huf.m2", + value = "helm_circlet_b_02_huf.m2", + }, + { + fileId = "137531", + text = "helm_circlet_b_02_hum.m2", + value = "helm_circlet_b_02_hum.m2", + }, + { + fileId = "137532", + text = "helm_circlet_b_02_nif.m2", + value = "helm_circlet_b_02_nif.m2", + }, + { + fileId = "137533", + text = "helm_circlet_b_02_nim.m2", + value = "helm_circlet_b_02_nim.m2", + }, + { + fileId = "137534", + text = "helm_circlet_b_02_orf.m2", + value = "helm_circlet_b_02_orf.m2", + }, + { + fileId = "137535", + text = "helm_circlet_b_02_orm.m2", + value = "helm_circlet_b_02_orm.m2", + }, + { + fileId = "137536", + text = "helm_circlet_b_02_scf.m2", + value = "helm_circlet_b_02_scf.m2", + }, + { + fileId = "137537", + text = "helm_circlet_b_02_scm.m2", + value = "helm_circlet_b_02_scm.m2", + }, + { + fileId = "137538", + text = "helm_circlet_b_02_taf.m2", + value = "helm_circlet_b_02_taf.m2", + }, + { + fileId = "137539", + text = "helm_circlet_b_02_tam.m2", + value = "helm_circlet_b_02_tam.m2", + }, + { + fileId = "137540", + text = "helm_circlet_b_02_trf.m2", + value = "helm_circlet_b_02_trf.m2", + }, + { + fileId = "137541", + text = "helm_circlet_b_02_trm.m2", + value = "helm_circlet_b_02_trm.m2", + }, + { + fileId = "137548", + text = "helm_circlet_c_01_bef.m2", + value = "helm_circlet_c_01_bef.m2", + }, + { + fileId = "137549", + text = "helm_circlet_c_01_bem.m2", + value = "helm_circlet_c_01_bem.m2", + }, + { + fileId = "137550", + text = "helm_circlet_c_01_drf.m2", + value = "helm_circlet_c_01_drf.m2", + }, + { + fileId = "137551", + text = "helm_circlet_c_01_drm.m2", + value = "helm_circlet_c_01_drm.m2", + }, + { + fileId = "137552", + text = "helm_circlet_c_01_dwf.m2", + value = "helm_circlet_c_01_dwf.m2", + }, + { + fileId = "137553", + text = "helm_circlet_c_01_dwm.m2", + value = "helm_circlet_c_01_dwm.m2", + }, + { + fileId = "137554", + text = "helm_circlet_c_01_gnf.m2", + value = "helm_circlet_c_01_gnf.m2", + }, + { + fileId = "137555", + text = "helm_circlet_c_01_gnm.m2", + value = "helm_circlet_c_01_gnm.m2", + }, + { + fileId = "137556", + text = "helm_circlet_c_01_gof.m2", + value = "helm_circlet_c_01_gof.m2", + }, + { + fileId = "137557", + text = "helm_circlet_c_01_gom.m2", + value = "helm_circlet_c_01_gom.m2", + }, + { + fileId = "137558", + text = "helm_circlet_c_01_huf.m2", + value = "helm_circlet_c_01_huf.m2", + }, + { + fileId = "137559", + text = "helm_circlet_c_01_hum.m2", + value = "helm_circlet_c_01_hum.m2", + }, + { + fileId = "137560", + text = "helm_circlet_c_01_nif.m2", + value = "helm_circlet_c_01_nif.m2", + }, + { + fileId = "137561", + text = "helm_circlet_c_01_nim.m2", + value = "helm_circlet_c_01_nim.m2", + }, + { + fileId = "137562", + text = "helm_circlet_c_01_orf.m2", + value = "helm_circlet_c_01_orf.m2", + }, + { + fileId = "137563", + text = "helm_circlet_c_01_orm.m2", + value = "helm_circlet_c_01_orm.m2", + }, + { + fileId = "137564", + text = "helm_circlet_c_01_scf.m2", + value = "helm_circlet_c_01_scf.m2", + }, + { + fileId = "137565", + text = "helm_circlet_c_01_scm.m2", + value = "helm_circlet_c_01_scm.m2", + }, + { + fileId = "137566", + text = "helm_circlet_c_01_taf.m2", + value = "helm_circlet_c_01_taf.m2", + }, + { + fileId = "137567", + text = "helm_circlet_c_01_tam.m2", + value = "helm_circlet_c_01_tam.m2", + }, + { + fileId = "137568", + text = "helm_circlet_c_01_trf.m2", + value = "helm_circlet_c_01_trf.m2", + }, + { + fileId = "137569", + text = "helm_circlet_c_01_trm.m2", + value = "helm_circlet_c_01_trm.m2", + }, + { + fileId = "137573", + text = "helm_cloth_a_01_bef.m2", + value = "helm_cloth_a_01_bef.m2", + }, + { + fileId = "137574", + text = "helm_cloth_a_01_bem.m2", + value = "helm_cloth_a_01_bem.m2", + }, + { + fileId = "137575", + text = "helm_cloth_a_01_drf.m2", + value = "helm_cloth_a_01_drf.m2", + }, + { + fileId = "137576", + text = "helm_cloth_a_01_drm.m2", + value = "helm_cloth_a_01_drm.m2", + }, + { + fileId = "137577", + text = "helm_cloth_a_01_dwf.m2", + value = "helm_cloth_a_01_dwf.m2", + }, + { + fileId = "137578", + text = "helm_cloth_a_01_dwm.m2", + value = "helm_cloth_a_01_dwm.m2", + }, + { + fileId = "137579", + text = "helm_cloth_a_01_gnf.m2", + value = "helm_cloth_a_01_gnf.m2", + }, + { + fileId = "137580", + text = "helm_cloth_a_01_gnm.m2", + value = "helm_cloth_a_01_gnm.m2", + }, + { + fileId = "137581", + text = "helm_cloth_a_01_gof.m2", + value = "helm_cloth_a_01_gof.m2", + }, + { + fileId = "137582", + text = "helm_cloth_a_01_gom.m2", + value = "helm_cloth_a_01_gom.m2", + }, + { + fileId = "137583", + text = "helm_cloth_a_01_huf.m2", + value = "helm_cloth_a_01_huf.m2", + }, + { + fileId = "137584", + text = "helm_cloth_a_01_hum.m2", + value = "helm_cloth_a_01_hum.m2", + }, + { + fileId = "137585", + text = "helm_cloth_a_01_nif.m2", + value = "helm_cloth_a_01_nif.m2", + }, + { + fileId = "137586", + text = "helm_cloth_a_01_nim.m2", + value = "helm_cloth_a_01_nim.m2", + }, + { + fileId = "137587", + text = "helm_cloth_a_01_orf.m2", + value = "helm_cloth_a_01_orf.m2", + }, + { + fileId = "137588", + text = "helm_cloth_a_01_orm.m2", + value = "helm_cloth_a_01_orm.m2", + }, + { + fileId = "137589", + text = "helm_cloth_a_01_scf.m2", + value = "helm_cloth_a_01_scf.m2", + }, + { + fileId = "137590", + text = "helm_cloth_a_01_scm.m2", + value = "helm_cloth_a_01_scm.m2", + }, + { + fileId = "137591", + text = "helm_cloth_a_01_taf.m2", + value = "helm_cloth_a_01_taf.m2", + }, + { + fileId = "137592", + text = "helm_cloth_a_01_tam.m2", + value = "helm_cloth_a_01_tam.m2", + }, + { + fileId = "137593", + text = "helm_cloth_a_01_trf.m2", + value = "helm_cloth_a_01_trf.m2", + }, + { + fileId = "137594", + text = "helm_cloth_a_01_trm.m2", + value = "helm_cloth_a_01_trm.m2", + }, + { + fileId = "137625", + text = "helm_cloth_a_02_bef.m2", + value = "helm_cloth_a_02_bef.m2", + }, + { + fileId = "137626", + text = "helm_cloth_a_02_bem.m2", + value = "helm_cloth_a_02_bem.m2", + }, + { + fileId = "137627", + text = "helm_cloth_a_02_drf.m2", + value = "helm_cloth_a_02_drf.m2", + }, + { + fileId = "137628", + text = "helm_cloth_a_02_drm.m2", + value = "helm_cloth_a_02_drm.m2", + }, + { + fileId = "137629", + text = "helm_cloth_a_02_dwf.m2", + value = "helm_cloth_a_02_dwf.m2", + }, + { + fileId = "137630", + text = "helm_cloth_a_02_dwm.m2", + value = "helm_cloth_a_02_dwm.m2", + }, + { + fileId = "137631", + text = "helm_cloth_a_02_gnf.m2", + value = "helm_cloth_a_02_gnf.m2", + }, + { + fileId = "137632", + text = "helm_cloth_a_02_gnm.m2", + value = "helm_cloth_a_02_gnm.m2", + }, + { + fileId = "137633", + text = "helm_cloth_a_02_gof.m2", + value = "helm_cloth_a_02_gof.m2", + }, + { + fileId = "137634", + text = "helm_cloth_a_02_gom.m2", + value = "helm_cloth_a_02_gom.m2", + }, + { + fileId = "137635", + text = "helm_cloth_a_02_huf.m2", + value = "helm_cloth_a_02_huf.m2", + }, + { + fileId = "137636", + text = "helm_cloth_a_02_hum.m2", + value = "helm_cloth_a_02_hum.m2", + }, + { + fileId = "137637", + text = "helm_cloth_a_02_nif.m2", + value = "helm_cloth_a_02_nif.m2", + }, + { + fileId = "137638", + text = "helm_cloth_a_02_nim.m2", + value = "helm_cloth_a_02_nim.m2", + }, + { + fileId = "137639", + text = "helm_cloth_a_02_orf.m2", + value = "helm_cloth_a_02_orf.m2", + }, + { + fileId = "137640", + text = "helm_cloth_a_02_orm.m2", + value = "helm_cloth_a_02_orm.m2", + }, + { + fileId = "137641", + text = "helm_cloth_a_02_scf.m2", + value = "helm_cloth_a_02_scf.m2", + }, + { + fileId = "137642", + text = "helm_cloth_a_02_scm.m2", + value = "helm_cloth_a_02_scm.m2", + }, + { + fileId = "137643", + text = "helm_cloth_a_02_taf.m2", + value = "helm_cloth_a_02_taf.m2", + }, + { + fileId = "137644", + text = "helm_cloth_a_02_tam.m2", + value = "helm_cloth_a_02_tam.m2", + }, + { + fileId = "137645", + text = "helm_cloth_a_02_trf.m2", + value = "helm_cloth_a_02_trf.m2", + }, + { + fileId = "137646", + text = "helm_cloth_a_02_trm.m2", + value = "helm_cloth_a_02_trm.m2", + }, + { + fileId = "137647", + text = "helm_cloth_b_01pirate_bef.m2", + value = "helm_cloth_b_01pirate_bef.m2", + }, + { + fileId = "137648", + text = "helm_cloth_b_01pirate_bem.m2", + value = "helm_cloth_b_01pirate_bem.m2", + }, + { + fileId = "137649", + text = "helm_cloth_b_01pirate_drf.m2", + value = "helm_cloth_b_01pirate_drf.m2", + }, + { + fileId = "137650", + text = "helm_cloth_b_01pirate_drm.m2", + value = "helm_cloth_b_01pirate_drm.m2", + }, + { + fileId = "137651", + text = "helm_cloth_b_01pirate_dwf.m2", + value = "helm_cloth_b_01pirate_dwf.m2", + }, + { + fileId = "137652", + text = "helm_cloth_b_01pirate_dwm.m2", + value = "helm_cloth_b_01pirate_dwm.m2", + }, + { + fileId = "137653", + text = "helm_cloth_b_01pirate_gnf.m2", + value = "helm_cloth_b_01pirate_gnf.m2", + }, + { + fileId = "137654", + text = "helm_cloth_b_01pirate_gnm.m2", + value = "helm_cloth_b_01pirate_gnm.m2", + }, + { + fileId = "137655", + text = "helm_cloth_b_01pirate_gof.m2", + value = "helm_cloth_b_01pirate_gof.m2", + }, + { + fileId = "137656", + text = "helm_cloth_b_01pirate_gom.m2", + value = "helm_cloth_b_01pirate_gom.m2", + }, + { + fileId = "137657", + text = "helm_cloth_b_01pirate_huf.m2", + value = "helm_cloth_b_01pirate_huf.m2", + }, + { + fileId = "137658", + text = "helm_cloth_b_01pirate_hum.m2", + value = "helm_cloth_b_01pirate_hum.m2", + }, + { + fileId = "137659", + text = "helm_cloth_b_01pirate_nif.m2", + value = "helm_cloth_b_01pirate_nif.m2", + }, + { + fileId = "137660", + text = "helm_cloth_b_01pirate_nim.m2", + value = "helm_cloth_b_01pirate_nim.m2", + }, + { + fileId = "137661", + text = "helm_cloth_b_01pirate_orf.m2", + value = "helm_cloth_b_01pirate_orf.m2", + }, + { + fileId = "137662", + text = "helm_cloth_b_01pirate_orm.m2", + value = "helm_cloth_b_01pirate_orm.m2", + }, + { + fileId = "137663", + text = "helm_cloth_b_01pirate_scf.m2", + value = "helm_cloth_b_01pirate_scf.m2", + }, + { + fileId = "137664", + text = "helm_cloth_b_01pirate_scm.m2", + value = "helm_cloth_b_01pirate_scm.m2", + }, + { + fileId = "137665", + text = "helm_cloth_b_01pirate_taf.m2", + value = "helm_cloth_b_01pirate_taf.m2", + }, + { + fileId = "137666", + text = "helm_cloth_b_01pirate_tam.m2", + value = "helm_cloth_b_01pirate_tam.m2", + }, + { + fileId = "137667", + text = "helm_cloth_b_01pirate_trf.m2", + value = "helm_cloth_b_01pirate_trf.m2", + }, + { + fileId = "137668", + text = "helm_cloth_b_01pirate_trm.m2", + value = "helm_cloth_b_01pirate_trm.m2", + }, + { + fileId = "137672", + text = "helm_cloth_b_03admiral_bef.m2", + value = "helm_cloth_b_03admiral_bef.m2", + }, + { + fileId = "137673", + text = "helm_cloth_b_03admiral_bem.m2", + value = "helm_cloth_b_03admiral_bem.m2", + }, + { + fileId = "137674", + text = "helm_cloth_b_03admiral_drf.m2", + value = "helm_cloth_b_03admiral_drf.m2", + }, + { + fileId = "137675", + text = "helm_cloth_b_03admiral_drm.m2", + value = "helm_cloth_b_03admiral_drm.m2", + }, + { + fileId = "137676", + text = "helm_cloth_b_03admiral_dwf.m2", + value = "helm_cloth_b_03admiral_dwf.m2", + }, + { + fileId = "137677", + text = "helm_cloth_b_03admiral_dwm.m2", + value = "helm_cloth_b_03admiral_dwm.m2", + }, + { + fileId = "137678", + text = "helm_cloth_b_03admiral_gnf.m2", + value = "helm_cloth_b_03admiral_gnf.m2", + }, + { + fileId = "137679", + text = "helm_cloth_b_03admiral_gnm.m2", + value = "helm_cloth_b_03admiral_gnm.m2", + }, + { + fileId = "137680", + text = "helm_cloth_b_03admiral_gof.m2", + value = "helm_cloth_b_03admiral_gof.m2", + }, + { + fileId = "137681", + text = "helm_cloth_b_03admiral_gom.m2", + value = "helm_cloth_b_03admiral_gom.m2", + }, + { + fileId = "137682", + text = "helm_cloth_b_03admiral_huf.m2", + value = "helm_cloth_b_03admiral_huf.m2", + }, + { + fileId = "137683", + text = "helm_cloth_b_03admiral_hum.m2", + value = "helm_cloth_b_03admiral_hum.m2", + }, + { + fileId = "137684", + text = "helm_cloth_b_03admiral_nif.m2", + value = "helm_cloth_b_03admiral_nif.m2", + }, + { + fileId = "137685", + text = "helm_cloth_b_03admiral_nim.m2", + value = "helm_cloth_b_03admiral_nim.m2", + }, + { + fileId = "137686", + text = "helm_cloth_b_03admiral_orf.m2", + value = "helm_cloth_b_03admiral_orf.m2", + }, + { + fileId = "137687", + text = "helm_cloth_b_03admiral_orm.m2", + value = "helm_cloth_b_03admiral_orm.m2", + }, + { + fileId = "137688", + text = "helm_cloth_b_03admiral_scf.m2", + value = "helm_cloth_b_03admiral_scf.m2", + }, + { + fileId = "137689", + text = "helm_cloth_b_03admiral_scm.m2", + value = "helm_cloth_b_03admiral_scm.m2", + }, + { + fileId = "137690", + text = "helm_cloth_b_03admiral_taf.m2", + value = "helm_cloth_b_03admiral_taf.m2", + }, + { + fileId = "137691", + text = "helm_cloth_b_03admiral_tam.m2", + value = "helm_cloth_b_03admiral_tam.m2", + }, + { + fileId = "137692", + text = "helm_cloth_b_03admiral_trf.m2", + value = "helm_cloth_b_03admiral_trf.m2", + }, + { + fileId = "137693", + text = "helm_cloth_b_03admiral_trm.m2", + value = "helm_cloth_b_03admiral_trm.m2", + }, + { + fileId = "137696", + text = "helm_cloth_b_04widebrim_bef.m2", + value = "helm_cloth_b_04widebrim_bef.m2", + }, + { + fileId = "137697", + text = "helm_cloth_b_04widebrim_bem.m2", + value = "helm_cloth_b_04widebrim_bem.m2", + }, + { + fileId = "137698", + text = "helm_cloth_b_04widebrim_drf.m2", + value = "helm_cloth_b_04widebrim_drf.m2", + }, + { + fileId = "137699", + text = "helm_cloth_b_04widebrim_drm.m2", + value = "helm_cloth_b_04widebrim_drm.m2", + }, + { + fileId = "137700", + text = "helm_cloth_b_04widebrim_dwf.m2", + value = "helm_cloth_b_04widebrim_dwf.m2", + }, + { + fileId = "137701", + text = "helm_cloth_b_04widebrim_dwm.m2", + value = "helm_cloth_b_04widebrim_dwm.m2", + }, + { + fileId = "137702", + text = "helm_cloth_b_04widebrim_gnf.m2", + value = "helm_cloth_b_04widebrim_gnf.m2", + }, + { + fileId = "137703", + text = "helm_cloth_b_04widebrim_gnm.m2", + value = "helm_cloth_b_04widebrim_gnm.m2", + }, + { + fileId = "137704", + text = "helm_cloth_b_04widebrim_gof.m2", + value = "helm_cloth_b_04widebrim_gof.m2", + }, + { + fileId = "137705", + text = "helm_cloth_b_04widebrim_gom.m2", + value = "helm_cloth_b_04widebrim_gom.m2", + }, + { + fileId = "137706", + text = "helm_cloth_b_04widebrim_huf.m2", + value = "helm_cloth_b_04widebrim_huf.m2", + }, + { + fileId = "137707", + text = "helm_cloth_b_04widebrim_hum.m2", + value = "helm_cloth_b_04widebrim_hum.m2", + }, + { + fileId = "137708", + text = "helm_cloth_b_04widebrim_nif.m2", + value = "helm_cloth_b_04widebrim_nif.m2", + }, + { + fileId = "137709", + text = "helm_cloth_b_04widebrim_nim.m2", + value = "helm_cloth_b_04widebrim_nim.m2", + }, + { + fileId = "137710", + text = "helm_cloth_b_04widebrim_orf.m2", + value = "helm_cloth_b_04widebrim_orf.m2", + }, + { + fileId = "137711", + text = "helm_cloth_b_04widebrim_orm.m2", + value = "helm_cloth_b_04widebrim_orm.m2", + }, + { + fileId = "137712", + text = "helm_cloth_b_04widebrim_scf.m2", + value = "helm_cloth_b_04widebrim_scf.m2", + }, + { + fileId = "137713", + text = "helm_cloth_b_04widebrim_scm.m2", + value = "helm_cloth_b_04widebrim_scm.m2", + }, + { + fileId = "137714", + text = "helm_cloth_b_04widebrim_taf.m2", + value = "helm_cloth_b_04widebrim_taf.m2", + }, + { + fileId = "137715", + text = "helm_cloth_b_04widebrim_tam.m2", + value = "helm_cloth_b_04widebrim_tam.m2", + }, + { + fileId = "137716", + text = "helm_cloth_b_04widebrim_trf.m2", + value = "helm_cloth_b_04widebrim_trf.m2", + }, + { + fileId = "137717", + text = "helm_cloth_b_04widebrim_trm.m2", + value = "helm_cloth_b_04widebrim_trm.m2", + }, + { + fileId = "137726", + text = "helm_cloth_b_05_bef.m2", + value = "helm_cloth_b_05_bef.m2", + }, + { + fileId = "137727", + text = "helm_cloth_b_05_bem.m2", + value = "helm_cloth_b_05_bem.m2", + }, + { + fileId = "137728", + text = "helm_cloth_b_05_drf.m2", + value = "helm_cloth_b_05_drf.m2", + }, + { + fileId = "137729", + text = "helm_cloth_b_05_drm.m2", + value = "helm_cloth_b_05_drm.m2", + }, + { + fileId = "137730", + text = "helm_cloth_b_05_dwf.m2", + value = "helm_cloth_b_05_dwf.m2", + }, + { + fileId = "137731", + text = "helm_cloth_b_05_dwm.m2", + value = "helm_cloth_b_05_dwm.m2", + }, + { + fileId = "137732", + text = "helm_cloth_b_05_gnf.m2", + value = "helm_cloth_b_05_gnf.m2", + }, + { + fileId = "137733", + text = "helm_cloth_b_05_gnm.m2", + value = "helm_cloth_b_05_gnm.m2", + }, + { + fileId = "137734", + text = "helm_cloth_b_05_gof.m2", + value = "helm_cloth_b_05_gof.m2", + }, + { + fileId = "137735", + text = "helm_cloth_b_05_gom.m2", + value = "helm_cloth_b_05_gom.m2", + }, + { + fileId = "137736", + text = "helm_cloth_b_05_huf.m2", + value = "helm_cloth_b_05_huf.m2", + }, + { + fileId = "137737", + text = "helm_cloth_b_05_hum.m2", + value = "helm_cloth_b_05_hum.m2", + }, + { + fileId = "137738", + text = "helm_cloth_b_05_nif.m2", + value = "helm_cloth_b_05_nif.m2", + }, + { + fileId = "137739", + text = "helm_cloth_b_05_nim.m2", + value = "helm_cloth_b_05_nim.m2", + }, + { + fileId = "137740", + text = "helm_cloth_b_05_orf.m2", + value = "helm_cloth_b_05_orf.m2", + }, + { + fileId = "137741", + text = "helm_cloth_b_05_orm.m2", + value = "helm_cloth_b_05_orm.m2", + }, + { + fileId = "137742", + text = "helm_cloth_b_05_scf.m2", + value = "helm_cloth_b_05_scf.m2", + }, + { + fileId = "137743", + text = "helm_cloth_b_05_scm.m2", + value = "helm_cloth_b_05_scm.m2", + }, + { + fileId = "137744", + text = "helm_cloth_b_05_taf.m2", + value = "helm_cloth_b_05_taf.m2", + }, + { + fileId = "137745", + text = "helm_cloth_b_05_tam.m2", + value = "helm_cloth_b_05_tam.m2", + }, + { + fileId = "137746", + text = "helm_cloth_b_05_trf.m2", + value = "helm_cloth_b_05_trf.m2", + }, + { + fileId = "137747", + text = "helm_cloth_b_05_trm.m2", + value = "helm_cloth_b_05_trm.m2", + }, + { + fileId = "137751", + text = "helm_cloth_b_06_bef.m2", + value = "helm_cloth_b_06_bef.m2", + }, + { + fileId = "137752", + text = "helm_cloth_b_06_bem.m2", + value = "helm_cloth_b_06_bem.m2", + }, + { + fileId = "137753", + text = "helm_cloth_b_06_drf.m2", + value = "helm_cloth_b_06_drf.m2", + }, + { + fileId = "137754", + text = "helm_cloth_b_06_drm.m2", + value = "helm_cloth_b_06_drm.m2", + }, + { + fileId = "137755", + text = "helm_cloth_b_06_dwf.m2", + value = "helm_cloth_b_06_dwf.m2", + }, + { + fileId = "137756", + text = "helm_cloth_b_06_dwm.m2", + value = "helm_cloth_b_06_dwm.m2", + }, + { + fileId = "137757", + text = "helm_cloth_b_06_gnf.m2", + value = "helm_cloth_b_06_gnf.m2", + }, + { + fileId = "137758", + text = "helm_cloth_b_06_gnm.m2", + value = "helm_cloth_b_06_gnm.m2", + }, + { + fileId = "137759", + text = "helm_cloth_b_06_gof.m2", + value = "helm_cloth_b_06_gof.m2", + }, + { + fileId = "137760", + text = "helm_cloth_b_06_gom.m2", + value = "helm_cloth_b_06_gom.m2", + }, + { + fileId = "137761", + text = "helm_cloth_b_06_huf.m2", + value = "helm_cloth_b_06_huf.m2", + }, + { + fileId = "137762", + text = "helm_cloth_b_06_hum.m2", + value = "helm_cloth_b_06_hum.m2", + }, + { + fileId = "137763", + text = "helm_cloth_b_06_nif.m2", + value = "helm_cloth_b_06_nif.m2", + }, + { + fileId = "137764", + text = "helm_cloth_b_06_nim.m2", + value = "helm_cloth_b_06_nim.m2", + }, + { + fileId = "137765", + text = "helm_cloth_b_06_orf.m2", + value = "helm_cloth_b_06_orf.m2", + }, + { + fileId = "137766", + text = "helm_cloth_b_06_orm.m2", + value = "helm_cloth_b_06_orm.m2", + }, + { + fileId = "137767", + text = "helm_cloth_b_06_scf.m2", + value = "helm_cloth_b_06_scf.m2", + }, + { + fileId = "137768", + text = "helm_cloth_b_06_scm.m2", + value = "helm_cloth_b_06_scm.m2", + }, + { + fileId = "137769", + text = "helm_cloth_b_06_taf.m2", + value = "helm_cloth_b_06_taf.m2", + }, + { + fileId = "137770", + text = "helm_cloth_b_06_tam.m2", + value = "helm_cloth_b_06_tam.m2", + }, + { + fileId = "137771", + text = "helm_cloth_b_06_trf.m2", + value = "helm_cloth_b_06_trf.m2", + }, + { + fileId = "137772", + text = "helm_cloth_b_06_trm.m2", + value = "helm_cloth_b_06_trm.m2", + }, + { + fileId = "137782", + text = "helm_cloth_c_01mitre_bef.m2", + value = "helm_cloth_c_01mitre_bef.m2", + }, + { + fileId = "137783", + text = "helm_cloth_c_01mitre_bem.m2", + value = "helm_cloth_c_01mitre_bem.m2", + }, + { + fileId = "137784", + text = "helm_cloth_c_01mitre_drf.m2", + value = "helm_cloth_c_01mitre_drf.m2", + }, + { + fileId = "137785", + text = "helm_cloth_c_01mitre_drm.m2", + value = "helm_cloth_c_01mitre_drm.m2", + }, + { + fileId = "137786", + text = "helm_cloth_c_01mitre_dwf.m2", + value = "helm_cloth_c_01mitre_dwf.m2", + }, + { + fileId = "137787", + text = "helm_cloth_c_01mitre_dwm.m2", + value = "helm_cloth_c_01mitre_dwm.m2", + }, + { + fileId = "137788", + text = "helm_cloth_c_01mitre_gnf.m2", + value = "helm_cloth_c_01mitre_gnf.m2", + }, + { + fileId = "137789", + text = "helm_cloth_c_01mitre_gnm.m2", + value = "helm_cloth_c_01mitre_gnm.m2", + }, + { + fileId = "137790", + text = "helm_cloth_c_01mitre_gof.m2", + value = "helm_cloth_c_01mitre_gof.m2", + }, + { + fileId = "137791", + text = "helm_cloth_c_01mitre_gom.m2", + value = "helm_cloth_c_01mitre_gom.m2", + }, + { + fileId = "137792", + text = "helm_cloth_c_01mitre_huf.m2", + value = "helm_cloth_c_01mitre_huf.m2", + }, + { + fileId = "137793", + text = "helm_cloth_c_01mitre_hum.m2", + value = "helm_cloth_c_01mitre_hum.m2", + }, + { + fileId = "137794", + text = "helm_cloth_c_01mitre_nif.m2", + value = "helm_cloth_c_01mitre_nif.m2", + }, + { + fileId = "137795", + text = "helm_cloth_c_01mitre_nim.m2", + value = "helm_cloth_c_01mitre_nim.m2", + }, + { + fileId = "137796", + text = "helm_cloth_c_01mitre_orf.m2", + value = "helm_cloth_c_01mitre_orf.m2", + }, + { + fileId = "137797", + text = "helm_cloth_c_01mitre_orm.m2", + value = "helm_cloth_c_01mitre_orm.m2", + }, + { + fileId = "137798", + text = "helm_cloth_c_01mitre_scf.m2", + value = "helm_cloth_c_01mitre_scf.m2", + }, + { + fileId = "137799", + text = "helm_cloth_c_01mitre_scm.m2", + value = "helm_cloth_c_01mitre_scm.m2", + }, + { + fileId = "137800", + text = "helm_cloth_c_01mitre_taf.m2", + value = "helm_cloth_c_01mitre_taf.m2", + }, + { + fileId = "137801", + text = "helm_cloth_c_01mitre_tam.m2", + value = "helm_cloth_c_01mitre_tam.m2", + }, + { + fileId = "137802", + text = "helm_cloth_c_01mitre_trf.m2", + value = "helm_cloth_c_01mitre_trf.m2", + }, + { + fileId = "137803", + text = "helm_cloth_c_01mitre_trm.m2", + value = "helm_cloth_c_01mitre_trm.m2", + }, + { + fileId = "237760", + text = "helm_cloth_chefhat_a_01_bef.m2", + value = "helm_cloth_chefhat_a_01_bef.m2", + }, + { + fileId = "237761", + text = "helm_cloth_chefhat_a_01_bem.m2", + value = "helm_cloth_chefhat_a_01_bem.m2", + }, + { + fileId = "237762", + text = "helm_cloth_chefhat_a_01_drf.m2", + value = "helm_cloth_chefhat_a_01_drf.m2", + }, + { + fileId = "237763", + text = "helm_cloth_chefhat_a_01_drm.m2", + value = "helm_cloth_chefhat_a_01_drm.m2", + }, + { + fileId = "237764", + text = "helm_cloth_chefhat_a_01_dwf.m2", + value = "helm_cloth_chefhat_a_01_dwf.m2", + }, + { + fileId = "237765", + text = "helm_cloth_chefhat_a_01_dwm.m2", + value = "helm_cloth_chefhat_a_01_dwm.m2", + }, + { + fileId = "237766", + text = "helm_cloth_chefhat_a_01_gnf.m2", + value = "helm_cloth_chefhat_a_01_gnf.m2", + }, + { + fileId = "237767", + text = "helm_cloth_chefhat_a_01_gnm.m2", + value = "helm_cloth_chefhat_a_01_gnm.m2", + }, + { + fileId = "237768", + text = "helm_cloth_chefhat_a_01_gof.m2", + value = "helm_cloth_chefhat_a_01_gof.m2", + }, + { + fileId = "237769", + text = "helm_cloth_chefhat_a_01_gom.m2", + value = "helm_cloth_chefhat_a_01_gom.m2", + }, + { + fileId = "237770", + text = "helm_cloth_chefhat_a_01_huf.m2", + value = "helm_cloth_chefhat_a_01_huf.m2", + }, + { + fileId = "237771", + text = "helm_cloth_chefhat_a_01_hum.m2", + value = "helm_cloth_chefhat_a_01_hum.m2", + }, + { + fileId = "237772", + text = "helm_cloth_chefhat_a_01_nif.m2", + value = "helm_cloth_chefhat_a_01_nif.m2", + }, + { + fileId = "237773", + text = "helm_cloth_chefhat_a_01_nim.m2", + value = "helm_cloth_chefhat_a_01_nim.m2", + }, + { + fileId = "237774", + text = "helm_cloth_chefhat_a_01_orf.m2", + value = "helm_cloth_chefhat_a_01_orf.m2", + }, + { + fileId = "237775", + text = "helm_cloth_chefhat_a_01_orm.m2", + value = "helm_cloth_chefhat_a_01_orm.m2", + }, + { + fileId = "237776", + text = "helm_cloth_chefhat_a_01_scf.m2", + value = "helm_cloth_chefhat_a_01_scf.m2", + }, + { + fileId = "237777", + text = "helm_cloth_chefhat_a_01_scm.m2", + value = "helm_cloth_chefhat_a_01_scm.m2", + }, + { + fileId = "237778", + text = "helm_cloth_chefhat_a_01_taf.m2", + value = "helm_cloth_chefhat_a_01_taf.m2", + }, + { + fileId = "237779", + text = "helm_cloth_chefhat_a_01_tam.m2", + value = "helm_cloth_chefhat_a_01_tam.m2", + }, + { + fileId = "237780", + text = "helm_cloth_chefhat_a_01_trf.m2", + value = "helm_cloth_chefhat_a_01_trf.m2", + }, + { + fileId = "237781", + text = "helm_cloth_chefhat_a_01_trm.m2", + value = "helm_cloth_chefhat_a_01_trm.m2", + }, + { + fileId = "137805", + text = "helm_cloth_holiday_christmas_a_01_bef.m2", + value = "helm_cloth_holiday_christmas_a_01_bef.m2", + }, + { + fileId = "137806", + text = "helm_cloth_holiday_christmas_a_01_bem.m2", + value = "helm_cloth_holiday_christmas_a_01_bem.m2", + }, + { + fileId = "137807", + text = "helm_cloth_holiday_christmas_a_01_drf.m2", + value = "helm_cloth_holiday_christmas_a_01_drf.m2", + }, + { + fileId = "137808", + text = "helm_cloth_holiday_christmas_a_01_drm.m2", + value = "helm_cloth_holiday_christmas_a_01_drm.m2", + }, + { + fileId = "137809", + text = "helm_cloth_holiday_christmas_a_01_dwf.m2", + value = "helm_cloth_holiday_christmas_a_01_dwf.m2", + }, + { + fileId = "137810", + text = "helm_cloth_holiday_christmas_a_01_dwm.m2", + value = "helm_cloth_holiday_christmas_a_01_dwm.m2", + }, + { + fileId = "137811", + text = "helm_cloth_holiday_christmas_a_01_gnf.m2", + value = "helm_cloth_holiday_christmas_a_01_gnf.m2", + }, + { + fileId = "137812", + text = "helm_cloth_holiday_christmas_a_01_gnm.m2", + value = "helm_cloth_holiday_christmas_a_01_gnm.m2", + }, + { + fileId = "137813", + text = "helm_cloth_holiday_christmas_a_01_gof.m2", + value = "helm_cloth_holiday_christmas_a_01_gof.m2", + }, + { + fileId = "137814", + text = "helm_cloth_holiday_christmas_a_01_gom.m2", + value = "helm_cloth_holiday_christmas_a_01_gom.m2", + }, + { + fileId = "137815", + text = "helm_cloth_holiday_christmas_a_01_huf.m2", + value = "helm_cloth_holiday_christmas_a_01_huf.m2", + }, + { + fileId = "137816", + text = "helm_cloth_holiday_christmas_a_01_hum.m2", + value = "helm_cloth_holiday_christmas_a_01_hum.m2", + }, + { + fileId = "137817", + text = "helm_cloth_holiday_christmas_a_01_nif.m2", + value = "helm_cloth_holiday_christmas_a_01_nif.m2", + }, + { + fileId = "137818", + text = "helm_cloth_holiday_christmas_a_01_nim.m2", + value = "helm_cloth_holiday_christmas_a_01_nim.m2", + }, + { + fileId = "137819", + text = "helm_cloth_holiday_christmas_a_01_orf.m2", + value = "helm_cloth_holiday_christmas_a_01_orf.m2", + }, + { + fileId = "137820", + text = "helm_cloth_holiday_christmas_a_01_orm.m2", + value = "helm_cloth_holiday_christmas_a_01_orm.m2", + }, + { + fileId = "137821", + text = "helm_cloth_holiday_christmas_a_01_scf.m2", + value = "helm_cloth_holiday_christmas_a_01_scf.m2", + }, + { + fileId = "137822", + text = "helm_cloth_holiday_christmas_a_01_scm.m2", + value = "helm_cloth_holiday_christmas_a_01_scm.m2", + }, + { + fileId = "137823", + text = "helm_cloth_holiday_christmas_a_01_taf.m2", + value = "helm_cloth_holiday_christmas_a_01_taf.m2", + }, + { + fileId = "137824", + text = "helm_cloth_holiday_christmas_a_01_tam.m2", + value = "helm_cloth_holiday_christmas_a_01_tam.m2", + }, + { + fileId = "137825", + text = "helm_cloth_holiday_christmas_a_01_trf.m2", + value = "helm_cloth_holiday_christmas_a_01_trf.m2", + }, + { + fileId = "137826", + text = "helm_cloth_holiday_christmas_a_01_trm.m2", + value = "helm_cloth_holiday_christmas_a_01_trm.m2", + }, + { + fileId = "137828", + text = "helm_cloth_mexico_a_01_bef.m2", + value = "helm_cloth_mexico_a_01_bef.m2", + }, + { + fileId = "137829", + text = "helm_cloth_mexico_a_01_bem.m2", + value = "helm_cloth_mexico_a_01_bem.m2", + }, + { + fileId = "137830", + text = "helm_cloth_mexico_a_01_drf.m2", + value = "helm_cloth_mexico_a_01_drf.m2", + }, + { + fileId = "137831", + text = "helm_cloth_mexico_a_01_drm.m2", + value = "helm_cloth_mexico_a_01_drm.m2", + }, + { + fileId = "137832", + text = "helm_cloth_mexico_a_01_dwf.m2", + value = "helm_cloth_mexico_a_01_dwf.m2", + }, + { + fileId = "137833", + text = "helm_cloth_mexico_a_01_dwm.m2", + value = "helm_cloth_mexico_a_01_dwm.m2", + }, + { + fileId = "137834", + text = "helm_cloth_mexico_a_01_gnf.m2", + value = "helm_cloth_mexico_a_01_gnf.m2", + }, + { + fileId = "137835", + text = "helm_cloth_mexico_a_01_gnm.m2", + value = "helm_cloth_mexico_a_01_gnm.m2", + }, + { + fileId = "137836", + text = "helm_cloth_mexico_a_01_gof.m2", + value = "helm_cloth_mexico_a_01_gof.m2", + }, + { + fileId = "137837", + text = "helm_cloth_mexico_a_01_gom.m2", + value = "helm_cloth_mexico_a_01_gom.m2", + }, + { + fileId = "137838", + text = "helm_cloth_mexico_a_01_huf.m2", + value = "helm_cloth_mexico_a_01_huf.m2", + }, + { + fileId = "137839", + text = "helm_cloth_mexico_a_01_hum.m2", + value = "helm_cloth_mexico_a_01_hum.m2", + }, + { + fileId = "137840", + text = "helm_cloth_mexico_a_01_nif.m2", + value = "helm_cloth_mexico_a_01_nif.m2", + }, + { + fileId = "137841", + text = "helm_cloth_mexico_a_01_nim.m2", + value = "helm_cloth_mexico_a_01_nim.m2", + }, + { + fileId = "137842", + text = "helm_cloth_mexico_a_01_orf.m2", + value = "helm_cloth_mexico_a_01_orf.m2", + }, + { + fileId = "137843", + text = "helm_cloth_mexico_a_01_orm.m2", + value = "helm_cloth_mexico_a_01_orm.m2", + }, + { + fileId = "137844", + text = "helm_cloth_mexico_a_01_scf.m2", + value = "helm_cloth_mexico_a_01_scf.m2", + }, + { + fileId = "137845", + text = "helm_cloth_mexico_a_01_scm.m2", + value = "helm_cloth_mexico_a_01_scm.m2", + }, + { + fileId = "306623", + text = "helm_cloth_mexico_a_01_skm.m2", + value = "helm_cloth_mexico_a_01_skm.m2", + }, + { + fileId = "137846", + text = "helm_cloth_mexico_a_01_taf.m2", + value = "helm_cloth_mexico_a_01_taf.m2", + }, + { + fileId = "137847", + text = "helm_cloth_mexico_a_01_tam.m2", + value = "helm_cloth_mexico_a_01_tam.m2", + }, + { + fileId = "137848", + text = "helm_cloth_mexico_a_01_trf.m2", + value = "helm_cloth_mexico_a_01_trf.m2", + }, + { + fileId = "137849", + text = "helm_cloth_mexico_a_01_trm.m2", + value = "helm_cloth_mexico_a_01_trm.m2", + }, + { + fileId = "237783", + text = "helm_cloth_pvpmage_b_01_bef.m2", + value = "helm_cloth_pvpmage_b_01_bef.m2", + }, + { + fileId = "237784", + text = "helm_cloth_pvpmage_b_01_bem.m2", + value = "helm_cloth_pvpmage_b_01_bem.m2", + }, + { + fileId = "237785", + text = "helm_cloth_pvpmage_b_01_drf.m2", + value = "helm_cloth_pvpmage_b_01_drf.m2", + }, + { + fileId = "237786", + text = "helm_cloth_pvpmage_b_01_drm.m2", + value = "helm_cloth_pvpmage_b_01_drm.m2", + }, + { + fileId = "237787", + text = "helm_cloth_pvpmage_b_01_dwf.m2", + value = "helm_cloth_pvpmage_b_01_dwf.m2", + }, + { + fileId = "237788", + text = "helm_cloth_pvpmage_b_01_dwm.m2", + value = "helm_cloth_pvpmage_b_01_dwm.m2", + }, + { + fileId = "237789", + text = "helm_cloth_pvpmage_b_01_gnf.m2", + value = "helm_cloth_pvpmage_b_01_gnf.m2", + }, + { + fileId = "237790", + text = "helm_cloth_pvpmage_b_01_gnm.m2", + value = "helm_cloth_pvpmage_b_01_gnm.m2", + }, + { + fileId = "237791", + text = "helm_cloth_pvpmage_b_01_gof.m2", + value = "helm_cloth_pvpmage_b_01_gof.m2", + }, + { + fileId = "237792", + text = "helm_cloth_pvpmage_b_01_gom.m2", + value = "helm_cloth_pvpmage_b_01_gom.m2", + }, + { + fileId = "237793", + text = "helm_cloth_pvpmage_b_01_huf.m2", + value = "helm_cloth_pvpmage_b_01_huf.m2", + }, + { + fileId = "237794", + text = "helm_cloth_pvpmage_b_01_hum.m2", + value = "helm_cloth_pvpmage_b_01_hum.m2", + }, + { + fileId = "237795", + text = "helm_cloth_pvpmage_b_01_nif.m2", + value = "helm_cloth_pvpmage_b_01_nif.m2", + }, + { + fileId = "237796", + text = "helm_cloth_pvpmage_b_01_nim.m2", + value = "helm_cloth_pvpmage_b_01_nim.m2", + }, + { + fileId = "237797", + text = "helm_cloth_pvpmage_b_01_orf.m2", + value = "helm_cloth_pvpmage_b_01_orf.m2", + }, + { + fileId = "237798", + text = "helm_cloth_pvpmage_b_01_orm.m2", + value = "helm_cloth_pvpmage_b_01_orm.m2", + }, + { + fileId = "237799", + text = "helm_cloth_pvpmage_b_01_scf.m2", + value = "helm_cloth_pvpmage_b_01_scf.m2", + }, + { + fileId = "237800", + text = "helm_cloth_pvpmage_b_01_scm.m2", + value = "helm_cloth_pvpmage_b_01_scm.m2", + }, + { + fileId = "237801", + text = "helm_cloth_pvpmage_b_01_taf.m2", + value = "helm_cloth_pvpmage_b_01_taf.m2", + }, + { + fileId = "237802", + text = "helm_cloth_pvpmage_b_01_tam.m2", + value = "helm_cloth_pvpmage_b_01_tam.m2", + }, + { + fileId = "237803", + text = "helm_cloth_pvpmage_b_01_trf.m2", + value = "helm_cloth_pvpmage_b_01_trf.m2", + }, + { + fileId = "237804", + text = "helm_cloth_pvpmage_b_01_trm.m2", + value = "helm_cloth_pvpmage_b_01_trm.m2", + }, + { + fileId = "255283", + text = "helm_cloth_pvpmage_b_02_bef.m2", + value = "helm_cloth_pvpmage_b_02_bef.m2", + }, + { + fileId = "255284", + text = "helm_cloth_pvpmage_b_02_bem.m2", + value = "helm_cloth_pvpmage_b_02_bem.m2", + }, + { + fileId = "255285", + text = "helm_cloth_pvpmage_b_02_drf.m2", + value = "helm_cloth_pvpmage_b_02_drf.m2", + }, + { + fileId = "255286", + text = "helm_cloth_pvpmage_b_02_drm.m2", + value = "helm_cloth_pvpmage_b_02_drm.m2", + }, + { + fileId = "255287", + text = "helm_cloth_pvpmage_b_02_dwf.m2", + value = "helm_cloth_pvpmage_b_02_dwf.m2", + }, + { + fileId = "255288", + text = "helm_cloth_pvpmage_b_02_dwm.m2", + value = "helm_cloth_pvpmage_b_02_dwm.m2", + }, + { + fileId = "255289", + text = "helm_cloth_pvpmage_b_02_gnf.m2", + value = "helm_cloth_pvpmage_b_02_gnf.m2", + }, + { + fileId = "255290", + text = "helm_cloth_pvpmage_b_02_gnm.m2", + value = "helm_cloth_pvpmage_b_02_gnm.m2", + }, + { + fileId = "255291", + text = "helm_cloth_pvpmage_b_02_gof.m2", + value = "helm_cloth_pvpmage_b_02_gof.m2", + }, + { + fileId = "255292", + text = "helm_cloth_pvpmage_b_02_gom.m2", + value = "helm_cloth_pvpmage_b_02_gom.m2", + }, + { + fileId = "255293", + text = "helm_cloth_pvpmage_b_02_huf.m2", + value = "helm_cloth_pvpmage_b_02_huf.m2", + }, + { + fileId = "255294", + text = "helm_cloth_pvpmage_b_02_hum.m2", + value = "helm_cloth_pvpmage_b_02_hum.m2", + }, + { + fileId = "255295", + text = "helm_cloth_pvpmage_b_02_nif.m2", + value = "helm_cloth_pvpmage_b_02_nif.m2", + }, + { + fileId = "255296", + text = "helm_cloth_pvpmage_b_02_nim.m2", + value = "helm_cloth_pvpmage_b_02_nim.m2", + }, + { + fileId = "255297", + text = "helm_cloth_pvpmage_b_02_orf.m2", + value = "helm_cloth_pvpmage_b_02_orf.m2", + }, + { + fileId = "255298", + text = "helm_cloth_pvpmage_b_02_orm.m2", + value = "helm_cloth_pvpmage_b_02_orm.m2", + }, + { + fileId = "255299", + text = "helm_cloth_pvpmage_b_02_scf.m2", + value = "helm_cloth_pvpmage_b_02_scf.m2", + }, + { + fileId = "255300", + text = "helm_cloth_pvpmage_b_02_scm.m2", + value = "helm_cloth_pvpmage_b_02_scm.m2", + }, + { + fileId = "255301", + text = "helm_cloth_pvpmage_b_02_taf.m2", + value = "helm_cloth_pvpmage_b_02_taf.m2", + }, + { + fileId = "255302", + text = "helm_cloth_pvpmage_b_02_tam.m2", + value = "helm_cloth_pvpmage_b_02_tam.m2", + }, + { + fileId = "255303", + text = "helm_cloth_pvpmage_b_02_trf.m2", + value = "helm_cloth_pvpmage_b_02_trf.m2", + }, + { + fileId = "255304", + text = "helm_cloth_pvpmage_b_02_trm.m2", + value = "helm_cloth_pvpmage_b_02_trm.m2", + }, + { + fileId = "305298", + text = "helm_cloth_pvpmage_b_03_bef.m2", + value = "helm_cloth_pvpmage_b_03_bef.m2", + }, + { + fileId = "305299", + text = "helm_cloth_pvpmage_b_03_bem.m2", + value = "helm_cloth_pvpmage_b_03_bem.m2", + }, + { + fileId = "305300", + text = "helm_cloth_pvpmage_b_03_drf.m2", + value = "helm_cloth_pvpmage_b_03_drf.m2", + }, + { + fileId = "305301", + text = "helm_cloth_pvpmage_b_03_drm.m2", + value = "helm_cloth_pvpmage_b_03_drm.m2", + }, + { + fileId = "305302", + text = "helm_cloth_pvpmage_b_03_dwf.m2", + value = "helm_cloth_pvpmage_b_03_dwf.m2", + }, + { + fileId = "305303", + text = "helm_cloth_pvpmage_b_03_dwm.m2", + value = "helm_cloth_pvpmage_b_03_dwm.m2", + }, + { + fileId = "305304", + text = "helm_cloth_pvpmage_b_03_gnf.m2", + value = "helm_cloth_pvpmage_b_03_gnf.m2", + }, + { + fileId = "305305", + text = "helm_cloth_pvpmage_b_03_gnm.m2", + value = "helm_cloth_pvpmage_b_03_gnm.m2", + }, + { + fileId = "305306", + text = "helm_cloth_pvpmage_b_03_gof.m2", + value = "helm_cloth_pvpmage_b_03_gof.m2", + }, + { + fileId = "305307", + text = "helm_cloth_pvpmage_b_03_gom.m2", + value = "helm_cloth_pvpmage_b_03_gom.m2", + }, + { + fileId = "305308", + text = "helm_cloth_pvpmage_b_03_huf.m2", + value = "helm_cloth_pvpmage_b_03_huf.m2", + }, + { + fileId = "305309", + text = "helm_cloth_pvpmage_b_03_hum.m2", + value = "helm_cloth_pvpmage_b_03_hum.m2", + }, + { + fileId = "305310", + text = "helm_cloth_pvpmage_b_03_nif.m2", + value = "helm_cloth_pvpmage_b_03_nif.m2", + }, + { + fileId = "305311", + text = "helm_cloth_pvpmage_b_03_nim.m2", + value = "helm_cloth_pvpmage_b_03_nim.m2", + }, + { + fileId = "305312", + text = "helm_cloth_pvpmage_b_03_orf.m2", + value = "helm_cloth_pvpmage_b_03_orf.m2", + }, + { + fileId = "305313", + text = "helm_cloth_pvpmage_b_03_orm.m2", + value = "helm_cloth_pvpmage_b_03_orm.m2", + }, + { + fileId = "305314", + text = "helm_cloth_pvpmage_b_03_scf.m2", + value = "helm_cloth_pvpmage_b_03_scf.m2", + }, + { + fileId = "305315", + text = "helm_cloth_pvpmage_b_03_scm.m2", + value = "helm_cloth_pvpmage_b_03_scm.m2", + }, + { + fileId = "305316", + text = "helm_cloth_pvpmage_b_03_taf.m2", + value = "helm_cloth_pvpmage_b_03_taf.m2", + }, + { + fileId = "305317", + text = "helm_cloth_pvpmage_b_03_tam.m2", + value = "helm_cloth_pvpmage_b_03_tam.m2", + }, + { + fileId = "305318", + text = "helm_cloth_pvpmage_b_03_trf.m2", + value = "helm_cloth_pvpmage_b_03_trf.m2", + }, + { + fileId = "305319", + text = "helm_cloth_pvpmage_b_03_trm.m2", + value = "helm_cloth_pvpmage_b_03_trm.m2", + }, + { + fileId = "343995", + text = "helm_cloth_pvpmage_b_04_bef.m2", + value = "helm_cloth_pvpmage_b_04_bef.m2", + }, + { + fileId = "343996", + text = "helm_cloth_pvpmage_b_04_bem.m2", + value = "helm_cloth_pvpmage_b_04_bem.m2", + }, + { + fileId = "343997", + text = "helm_cloth_pvpmage_b_04_drf.m2", + value = "helm_cloth_pvpmage_b_04_drf.m2", + }, + { + fileId = "343998", + text = "helm_cloth_pvpmage_b_04_drm.m2", + value = "helm_cloth_pvpmage_b_04_drm.m2", + }, + { + fileId = "343999", + text = "helm_cloth_pvpmage_b_04_dwf.m2", + value = "helm_cloth_pvpmage_b_04_dwf.m2", + }, + { + fileId = "344000", + text = "helm_cloth_pvpmage_b_04_dwm.m2", + value = "helm_cloth_pvpmage_b_04_dwm.m2", + }, + { + fileId = "344001", + text = "helm_cloth_pvpmage_b_04_gnf.m2", + value = "helm_cloth_pvpmage_b_04_gnf.m2", + }, + { + fileId = "344002", + text = "helm_cloth_pvpmage_b_04_gnm.m2", + value = "helm_cloth_pvpmage_b_04_gnm.m2", + }, + { + fileId = "344003", + text = "helm_cloth_pvpmage_b_04_huf.m2", + value = "helm_cloth_pvpmage_b_04_huf.m2", + }, + { + fileId = "344004", + text = "helm_cloth_pvpmage_b_04_hum.m2", + value = "helm_cloth_pvpmage_b_04_hum.m2", + }, + { + fileId = "344005", + text = "helm_cloth_pvpmage_b_04_nif.m2", + value = "helm_cloth_pvpmage_b_04_nif.m2", + }, + { + fileId = "344006", + text = "helm_cloth_pvpmage_b_04_nim.m2", + value = "helm_cloth_pvpmage_b_04_nim.m2", + }, + { + fileId = "344007", + text = "helm_cloth_pvpmage_b_04_orf.m2", + value = "helm_cloth_pvpmage_b_04_orf.m2", + }, + { + fileId = "344008", + text = "helm_cloth_pvpmage_b_04_orm.m2", + value = "helm_cloth_pvpmage_b_04_orm.m2", + }, + { + fileId = "344009", + text = "helm_cloth_pvpmage_b_04_scf.m2", + value = "helm_cloth_pvpmage_b_04_scf.m2", + }, + { + fileId = "344010", + text = "helm_cloth_pvpmage_b_04_scm.m2", + value = "helm_cloth_pvpmage_b_04_scm.m2", + }, + { + fileId = "344011", + text = "helm_cloth_pvpmage_b_04_taf.m2", + value = "helm_cloth_pvpmage_b_04_taf.m2", + }, + { + fileId = "344012", + text = "helm_cloth_pvpmage_b_04_tam.m2", + value = "helm_cloth_pvpmage_b_04_tam.m2", + }, + { + fileId = "344013", + text = "helm_cloth_pvpmage_b_04_trf.m2", + value = "helm_cloth_pvpmage_b_04_trf.m2", + }, + { + fileId = "344014", + text = "helm_cloth_pvpmage_b_04_trm.m2", + value = "helm_cloth_pvpmage_b_04_trm.m2", + }, + { + fileId = "237809", + text = "helm_cloth_pvppriest_b_01_bef.m2", + value = "helm_cloth_pvppriest_b_01_bef.m2", + }, + { + fileId = "237810", + text = "helm_cloth_pvppriest_b_01_bem.m2", + value = "helm_cloth_pvppriest_b_01_bem.m2", + }, + { + fileId = "237811", + text = "helm_cloth_pvppriest_b_01_drf.m2", + value = "helm_cloth_pvppriest_b_01_drf.m2", + }, + { + fileId = "237812", + text = "helm_cloth_pvppriest_b_01_drm.m2", + value = "helm_cloth_pvppriest_b_01_drm.m2", + }, + { + fileId = "237813", + text = "helm_cloth_pvppriest_b_01_dwf.m2", + value = "helm_cloth_pvppriest_b_01_dwf.m2", + }, + { + fileId = "237814", + text = "helm_cloth_pvppriest_b_01_dwm.m2", + value = "helm_cloth_pvppriest_b_01_dwm.m2", + }, + { + fileId = "237815", + text = "helm_cloth_pvppriest_b_01_gnf.m2", + value = "helm_cloth_pvppriest_b_01_gnf.m2", + }, + { + fileId = "237816", + text = "helm_cloth_pvppriest_b_01_gnm.m2", + value = "helm_cloth_pvppriest_b_01_gnm.m2", + }, + { + fileId = "237817", + text = "helm_cloth_pvppriest_b_01_gof.m2", + value = "helm_cloth_pvppriest_b_01_gof.m2", + }, + { + fileId = "237818", + text = "helm_cloth_pvppriest_b_01_gom.m2", + value = "helm_cloth_pvppriest_b_01_gom.m2", + }, + { + fileId = "237819", + text = "helm_cloth_pvppriest_b_01_huf.m2", + value = "helm_cloth_pvppriest_b_01_huf.m2", + }, + { + fileId = "237820", + text = "helm_cloth_pvppriest_b_01_hum.m2", + value = "helm_cloth_pvppriest_b_01_hum.m2", + }, + { + fileId = "237821", + text = "helm_cloth_pvppriest_b_01_nif.m2", + value = "helm_cloth_pvppriest_b_01_nif.m2", + }, + { + fileId = "237822", + text = "helm_cloth_pvppriest_b_01_nim.m2", + value = "helm_cloth_pvppriest_b_01_nim.m2", + }, + { + fileId = "237823", + text = "helm_cloth_pvppriest_b_01_orf.m2", + value = "helm_cloth_pvppriest_b_01_orf.m2", + }, + { + fileId = "237824", + text = "helm_cloth_pvppriest_b_01_orm.m2", + value = "helm_cloth_pvppriest_b_01_orm.m2", + }, + { + fileId = "237825", + text = "helm_cloth_pvppriest_b_01_scf.m2", + value = "helm_cloth_pvppriest_b_01_scf.m2", + }, + { + fileId = "237826", + text = "helm_cloth_pvppriest_b_01_scm.m2", + value = "helm_cloth_pvppriest_b_01_scm.m2", + }, + { + fileId = "237827", + text = "helm_cloth_pvppriest_b_01_taf.m2", + value = "helm_cloth_pvppriest_b_01_taf.m2", + }, + { + fileId = "237828", + text = "helm_cloth_pvppriest_b_01_tam.m2", + value = "helm_cloth_pvppriest_b_01_tam.m2", + }, + { + fileId = "237829", + text = "helm_cloth_pvppriest_b_01_trf.m2", + value = "helm_cloth_pvppriest_b_01_trf.m2", + }, + { + fileId = "237830", + text = "helm_cloth_pvppriest_b_01_trm.m2", + value = "helm_cloth_pvppriest_b_01_trm.m2", + }, + { + fileId = "293933", + text = "helm_cloth_pvppriest_b_02_bef.m2", + value = "helm_cloth_pvppriest_b_02_bef.m2", + }, + { + fileId = "293934", + text = "helm_cloth_pvppriest_b_02_bem.m2", + value = "helm_cloth_pvppriest_b_02_bem.m2", + }, + { + fileId = "293935", + text = "helm_cloth_pvppriest_b_02_drf.m2", + value = "helm_cloth_pvppriest_b_02_drf.m2", + }, + { + fileId = "293936", + text = "helm_cloth_pvppriest_b_02_drm.m2", + value = "helm_cloth_pvppriest_b_02_drm.m2", + }, + { + fileId = "293937", + text = "helm_cloth_pvppriest_b_02_dwf.m2", + value = "helm_cloth_pvppriest_b_02_dwf.m2", + }, + { + fileId = "293938", + text = "helm_cloth_pvppriest_b_02_dwm.m2", + value = "helm_cloth_pvppriest_b_02_dwm.m2", + }, + { + fileId = "293939", + text = "helm_cloth_pvppriest_b_02_gnf.m2", + value = "helm_cloth_pvppriest_b_02_gnf.m2", + }, + { + fileId = "293940", + text = "helm_cloth_pvppriest_b_02_gnm.m2", + value = "helm_cloth_pvppriest_b_02_gnm.m2", + }, + { + fileId = "293941", + text = "helm_cloth_pvppriest_b_02_gof.m2", + value = "helm_cloth_pvppriest_b_02_gof.m2", + }, + { + fileId = "293942", + text = "helm_cloth_pvppriest_b_02_gom.m2", + value = "helm_cloth_pvppriest_b_02_gom.m2", + }, + { + fileId = "293943", + text = "helm_cloth_pvppriest_b_02_huf.m2", + value = "helm_cloth_pvppriest_b_02_huf.m2", + }, + { + fileId = "293944", + text = "helm_cloth_pvppriest_b_02_hum.m2", + value = "helm_cloth_pvppriest_b_02_hum.m2", + }, + { + fileId = "293945", + text = "helm_cloth_pvppriest_b_02_nif.m2", + value = "helm_cloth_pvppriest_b_02_nif.m2", + }, + { + fileId = "293946", + text = "helm_cloth_pvppriest_b_02_nim.m2", + value = "helm_cloth_pvppriest_b_02_nim.m2", + }, + { + fileId = "293947", + text = "helm_cloth_pvppriest_b_02_orf.m2", + value = "helm_cloth_pvppriest_b_02_orf.m2", + }, + { + fileId = "293948", + text = "helm_cloth_pvppriest_b_02_orm.m2", + value = "helm_cloth_pvppriest_b_02_orm.m2", + }, + { + fileId = "293949", + text = "helm_cloth_pvppriest_b_02_scf.m2", + value = "helm_cloth_pvppriest_b_02_scf.m2", + }, + { + fileId = "293950", + text = "helm_cloth_pvppriest_b_02_scm.m2", + value = "helm_cloth_pvppriest_b_02_scm.m2", + }, + { + fileId = "293951", + text = "helm_cloth_pvppriest_b_02_taf.m2", + value = "helm_cloth_pvppriest_b_02_taf.m2", + }, + { + fileId = "293952", + text = "helm_cloth_pvppriest_b_02_tam.m2", + value = "helm_cloth_pvppriest_b_02_tam.m2", + }, + { + fileId = "293953", + text = "helm_cloth_pvppriest_b_02_trf.m2", + value = "helm_cloth_pvppriest_b_02_trf.m2", + }, + { + fileId = "293954", + text = "helm_cloth_pvppriest_b_02_trm.m2", + value = "helm_cloth_pvppriest_b_02_trm.m2", + }, + { + fileId = "306488", + text = "helm_cloth_pvppriest_b_03_bef.m2", + value = "helm_cloth_pvppriest_b_03_bef.m2", + }, + { + fileId = "306489", + text = "helm_cloth_pvppriest_b_03_bem.m2", + value = "helm_cloth_pvppriest_b_03_bem.m2", + }, + { + fileId = "306490", + text = "helm_cloth_pvppriest_b_03_drf.m2", + value = "helm_cloth_pvppriest_b_03_drf.m2", + }, + { + fileId = "306491", + text = "helm_cloth_pvppriest_b_03_drm.m2", + value = "helm_cloth_pvppriest_b_03_drm.m2", + }, + { + fileId = "306492", + text = "helm_cloth_pvppriest_b_03_dwf.m2", + value = "helm_cloth_pvppriest_b_03_dwf.m2", + }, + { + fileId = "306493", + text = "helm_cloth_pvppriest_b_03_dwm.m2", + value = "helm_cloth_pvppriest_b_03_dwm.m2", + }, + { + fileId = "306494", + text = "helm_cloth_pvppriest_b_03_gnf.m2", + value = "helm_cloth_pvppriest_b_03_gnf.m2", + }, + { + fileId = "306495", + text = "helm_cloth_pvppriest_b_03_gnm.m2", + value = "helm_cloth_pvppriest_b_03_gnm.m2", + }, + { + fileId = "306496", + text = "helm_cloth_pvppriest_b_03_gof.m2", + value = "helm_cloth_pvppriest_b_03_gof.m2", + }, + { + fileId = "306497", + text = "helm_cloth_pvppriest_b_03_gom.m2", + value = "helm_cloth_pvppriest_b_03_gom.m2", + }, + { + fileId = "306498", + text = "helm_cloth_pvppriest_b_03_huf.m2", + value = "helm_cloth_pvppriest_b_03_huf.m2", + }, + { + fileId = "306499", + text = "helm_cloth_pvppriest_b_03_hum.m2", + value = "helm_cloth_pvppriest_b_03_hum.m2", + }, + { + fileId = "306500", + text = "helm_cloth_pvppriest_b_03_nif.m2", + value = "helm_cloth_pvppriest_b_03_nif.m2", + }, + { + fileId = "306501", + text = "helm_cloth_pvppriest_b_03_nim.m2", + value = "helm_cloth_pvppriest_b_03_nim.m2", + }, + { + fileId = "306502", + text = "helm_cloth_pvppriest_b_03_orf.m2", + value = "helm_cloth_pvppriest_b_03_orf.m2", + }, + { + fileId = "306503", + text = "helm_cloth_pvppriest_b_03_orm.m2", + value = "helm_cloth_pvppriest_b_03_orm.m2", + }, + { + fileId = "306504", + text = "helm_cloth_pvppriest_b_03_scf.m2", + value = "helm_cloth_pvppriest_b_03_scf.m2", + }, + { + fileId = "306505", + text = "helm_cloth_pvppriest_b_03_scm.m2", + value = "helm_cloth_pvppriest_b_03_scm.m2", + }, + { + fileId = "306506", + text = "helm_cloth_pvppriest_b_03_taf.m2", + value = "helm_cloth_pvppriest_b_03_taf.m2", + }, + { + fileId = "306507", + text = "helm_cloth_pvppriest_b_03_tam.m2", + value = "helm_cloth_pvppriest_b_03_tam.m2", + }, + { + fileId = "306508", + text = "helm_cloth_pvppriest_b_03_trf.m2", + value = "helm_cloth_pvppriest_b_03_trf.m2", + }, + { + fileId = "306509", + text = "helm_cloth_pvppriest_b_03_trm.m2", + value = "helm_cloth_pvppriest_b_03_trm.m2", + }, + { + fileId = "347743", + text = "helm_cloth_pvppriest_b_04_bef.m2", + value = "helm_cloth_pvppriest_b_04_bef.m2", + }, + { + fileId = "347744", + text = "helm_cloth_pvppriest_b_04_bem.m2", + value = "helm_cloth_pvppriest_b_04_bem.m2", + }, + { + fileId = "347745", + text = "helm_cloth_pvppriest_b_04_drf.m2", + value = "helm_cloth_pvppriest_b_04_drf.m2", + }, + { + fileId = "347746", + text = "helm_cloth_pvppriest_b_04_drm.m2", + value = "helm_cloth_pvppriest_b_04_drm.m2", + }, + { + fileId = "347747", + text = "helm_cloth_pvppriest_b_04_dwf.m2", + value = "helm_cloth_pvppriest_b_04_dwf.m2", + }, + { + fileId = "347748", + text = "helm_cloth_pvppriest_b_04_dwm.m2", + value = "helm_cloth_pvppriest_b_04_dwm.m2", + }, + { + fileId = "347749", + text = "helm_cloth_pvppriest_b_04_gnf.m2", + value = "helm_cloth_pvppriest_b_04_gnf.m2", + }, + { + fileId = "347750", + text = "helm_cloth_pvppriest_b_04_gnm.m2", + value = "helm_cloth_pvppriest_b_04_gnm.m2", + }, + { + fileId = "347751", + text = "helm_cloth_pvppriest_b_04_gof.m2", + value = "helm_cloth_pvppriest_b_04_gof.m2", + }, + { + fileId = "347752", + text = "helm_cloth_pvppriest_b_04_gom.m2", + value = "helm_cloth_pvppriest_b_04_gom.m2", + }, + { + fileId = "347753", + text = "helm_cloth_pvppriest_b_04_huf.m2", + value = "helm_cloth_pvppriest_b_04_huf.m2", + }, + { + fileId = "347754", + text = "helm_cloth_pvppriest_b_04_hum.m2", + value = "helm_cloth_pvppriest_b_04_hum.m2", + }, + { + fileId = "347755", + text = "helm_cloth_pvppriest_b_04_nif.m2", + value = "helm_cloth_pvppriest_b_04_nif.m2", + }, + { + fileId = "347756", + text = "helm_cloth_pvppriest_b_04_nim.m2", + value = "helm_cloth_pvppriest_b_04_nim.m2", + }, + { + fileId = "347757", + text = "helm_cloth_pvppriest_b_04_orf.m2", + value = "helm_cloth_pvppriest_b_04_orf.m2", + }, + { + fileId = "347758", + text = "helm_cloth_pvppriest_b_04_orm.m2", + value = "helm_cloth_pvppriest_b_04_orm.m2", + }, + { + fileId = "347759", + text = "helm_cloth_pvppriest_b_04_scf.m2", + value = "helm_cloth_pvppriest_b_04_scf.m2", + }, + { + fileId = "347760", + text = "helm_cloth_pvppriest_b_04_scm.m2", + value = "helm_cloth_pvppriest_b_04_scm.m2", + }, + { + fileId = "347761", + text = "helm_cloth_pvppriest_b_04_taf.m2", + value = "helm_cloth_pvppriest_b_04_taf.m2", + }, + { + fileId = "347762", + text = "helm_cloth_pvppriest_b_04_tam.m2", + value = "helm_cloth_pvppriest_b_04_tam.m2", + }, + { + fileId = "347763", + text = "helm_cloth_pvppriest_b_04_trf.m2", + value = "helm_cloth_pvppriest_b_04_trf.m2", + }, + { + fileId = "347764", + text = "helm_cloth_pvppriest_b_04_trm.m2", + value = "helm_cloth_pvppriest_b_04_trm.m2", + }, + { + fileId = "137850", + text = "helm_cloth_sunfest_a_01_bef.m2", + value = "helm_cloth_sunfest_a_01_bef.m2", + }, + { + fileId = "137851", + text = "helm_cloth_sunfest_a_01_bem.m2", + value = "helm_cloth_sunfest_a_01_bem.m2", + }, + { + fileId = "137852", + text = "helm_cloth_sunfest_a_01_drf.m2", + value = "helm_cloth_sunfest_a_01_drf.m2", + }, + { + fileId = "137853", + text = "helm_cloth_sunfest_a_01_drm.m2", + value = "helm_cloth_sunfest_a_01_drm.m2", + }, + { + fileId = "137854", + text = "helm_cloth_sunfest_a_01_dwf.m2", + value = "helm_cloth_sunfest_a_01_dwf.m2", + }, + { + fileId = "137855", + text = "helm_cloth_sunfest_a_01_dwm.m2", + value = "helm_cloth_sunfest_a_01_dwm.m2", + }, + { + fileId = "137856", + text = "helm_cloth_sunfest_a_01_gnf.m2", + value = "helm_cloth_sunfest_a_01_gnf.m2", + }, + { + fileId = "137857", + text = "helm_cloth_sunfest_a_01_gnm.m2", + value = "helm_cloth_sunfest_a_01_gnm.m2", + }, + { + fileId = "137858", + text = "helm_cloth_sunfest_a_01_gof.m2", + value = "helm_cloth_sunfest_a_01_gof.m2", + }, + { + fileId = "137859", + text = "helm_cloth_sunfest_a_01_gom.m2", + value = "helm_cloth_sunfest_a_01_gom.m2", + }, + { + fileId = "137860", + text = "helm_cloth_sunfest_a_01_huf.m2", + value = "helm_cloth_sunfest_a_01_huf.m2", + }, + { + fileId = "137861", + text = "helm_cloth_sunfest_a_01_hum.m2", + value = "helm_cloth_sunfest_a_01_hum.m2", + }, + { + fileId = "137862", + text = "helm_cloth_sunfest_a_01_nif.m2", + value = "helm_cloth_sunfest_a_01_nif.m2", + }, + { + fileId = "137863", + text = "helm_cloth_sunfest_a_01_nim.m2", + value = "helm_cloth_sunfest_a_01_nim.m2", + }, + { + fileId = "137864", + text = "helm_cloth_sunfest_a_01_orf.m2", + value = "helm_cloth_sunfest_a_01_orf.m2", + }, + { + fileId = "137865", + text = "helm_cloth_sunfest_a_01_orm.m2", + value = "helm_cloth_sunfest_a_01_orm.m2", + }, + { + fileId = "137866", + text = "helm_cloth_sunfest_a_01_scf.m2", + value = "helm_cloth_sunfest_a_01_scf.m2", + }, + { + fileId = "137867", + text = "helm_cloth_sunfest_a_01_scm.m2", + value = "helm_cloth_sunfest_a_01_scm.m2", + }, + { + fileId = "137868", + text = "helm_cloth_sunfest_a_01_taf.m2", + value = "helm_cloth_sunfest_a_01_taf.m2", + }, + { + fileId = "137869", + text = "helm_cloth_sunfest_a_01_tam.m2", + value = "helm_cloth_sunfest_a_01_tam.m2", + }, + { + fileId = "137870", + text = "helm_cloth_sunfest_a_01_trf.m2", + value = "helm_cloth_sunfest_a_01_trf.m2", + }, + { + fileId = "137871", + text = "helm_cloth_sunfest_a_01_trm.m2", + value = "helm_cloth_sunfest_a_01_trm.m2", + }, + { + fileId = "237834", + text = "helm_draenei_giftofnaaru_01_drm.m2", + value = "helm_draenei_giftofnaaru_01_drm.m2", + }, + { + fileId = "237835", + text = "helm_draenei_giftofnaaru_01_hum.m2", + value = "helm_draenei_giftofnaaru_01_hum.m2", + }, + { + fileId = "137874", + text = "helm_engi_b_01_bef.m2", + value = "helm_engi_b_01_bef.m2", + }, + { + fileId = "137875", + text = "helm_engi_b_01_bem.m2", + value = "helm_engi_b_01_bem.m2", + }, + { + fileId = "137876", + text = "helm_engi_b_01_drf.m2", + value = "helm_engi_b_01_drf.m2", + }, + { + fileId = "137877", + text = "helm_engi_b_01_drm.m2", + value = "helm_engi_b_01_drm.m2", + }, + { + fileId = "137878", + text = "helm_engi_b_01_dwf.m2", + value = "helm_engi_b_01_dwf.m2", + }, + { + fileId = "137879", + text = "helm_engi_b_01_dwm.m2", + value = "helm_engi_b_01_dwm.m2", + }, + { + fileId = "137880", + text = "helm_engi_b_01_gnf.m2", + value = "helm_engi_b_01_gnf.m2", + }, + { + fileId = "137881", + text = "helm_engi_b_01_gnm.m2", + value = "helm_engi_b_01_gnm.m2", + }, + { + fileId = "137882", + text = "helm_engi_b_01_gof.m2", + value = "helm_engi_b_01_gof.m2", + }, + { + fileId = "137883", + text = "helm_engi_b_01_gom.m2", + value = "helm_engi_b_01_gom.m2", + }, + { + fileId = "137884", + text = "helm_engi_b_01_huf.m2", + value = "helm_engi_b_01_huf.m2", + }, + { + fileId = "137885", + text = "helm_engi_b_01_hum.m2", + value = "helm_engi_b_01_hum.m2", + }, + { + fileId = "137886", + text = "helm_engi_b_01_nif.m2", + value = "helm_engi_b_01_nif.m2", + }, + { + fileId = "137887", + text = "helm_engi_b_01_nim.m2", + value = "helm_engi_b_01_nim.m2", + }, + { + fileId = "137888", + text = "helm_engi_b_01_orf.m2", + value = "helm_engi_b_01_orf.m2", + }, + { + fileId = "137889", + text = "helm_engi_b_01_orm.m2", + value = "helm_engi_b_01_orm.m2", + }, + { + fileId = "137890", + text = "helm_engi_b_01_scf.m2", + value = "helm_engi_b_01_scf.m2", + }, + { + fileId = "137891", + text = "helm_engi_b_01_scm.m2", + value = "helm_engi_b_01_scm.m2", + }, + { + fileId = "137892", + text = "helm_engi_b_01_taf.m2", + value = "helm_engi_b_01_taf.m2", + }, + { + fileId = "137893", + text = "helm_engi_b_01_tam.m2", + value = "helm_engi_b_01_tam.m2", + }, + { + fileId = "137894", + text = "helm_engi_b_01_trf.m2", + value = "helm_engi_b_01_trf.m2", + }, + { + fileId = "137895", + text = "helm_engi_b_01_trm.m2", + value = "helm_engi_b_01_trm.m2", + }, + { + fileId = "137897", + text = "helm_engi_b_02_bef.m2", + value = "helm_engi_b_02_bef.m2", + }, + { + fileId = "137898", + text = "helm_engi_b_02_bem.m2", + value = "helm_engi_b_02_bem.m2", + }, + { + fileId = "137899", + text = "helm_engi_b_02_drf.m2", + value = "helm_engi_b_02_drf.m2", + }, + { + fileId = "137900", + text = "helm_engi_b_02_drm.m2", + value = "helm_engi_b_02_drm.m2", + }, + { + fileId = "137901", + text = "helm_engi_b_02_dwf.m2", + value = "helm_engi_b_02_dwf.m2", + }, + { + fileId = "137902", + text = "helm_engi_b_02_dwm.m2", + value = "helm_engi_b_02_dwm.m2", + }, + { + fileId = "137903", + text = "helm_engi_b_02_gnf.m2", + value = "helm_engi_b_02_gnf.m2", + }, + { + fileId = "137904", + text = "helm_engi_b_02_gnm.m2", + value = "helm_engi_b_02_gnm.m2", + }, + { + fileId = "137905", + text = "helm_engi_b_02_gof.m2", + value = "helm_engi_b_02_gof.m2", + }, + { + fileId = "137906", + text = "helm_engi_b_02_gom.m2", + value = "helm_engi_b_02_gom.m2", + }, + { + fileId = "137907", + text = "helm_engi_b_02_huf.m2", + value = "helm_engi_b_02_huf.m2", + }, + { + fileId = "137908", + text = "helm_engi_b_02_hum.m2", + value = "helm_engi_b_02_hum.m2", + }, + { + fileId = "137909", + text = "helm_engi_b_02_nif.m2", + value = "helm_engi_b_02_nif.m2", + }, + { + fileId = "137910", + text = "helm_engi_b_02_nim.m2", + value = "helm_engi_b_02_nim.m2", + }, + { + fileId = "137911", + text = "helm_engi_b_02_orf.m2", + value = "helm_engi_b_02_orf.m2", + }, + { + fileId = "137912", + text = "helm_engi_b_02_orm.m2", + value = "helm_engi_b_02_orm.m2", + }, + { + fileId = "137913", + text = "helm_engi_b_02_scf.m2", + value = "helm_engi_b_02_scf.m2", + }, + { + fileId = "137914", + text = "helm_engi_b_02_scm.m2", + value = "helm_engi_b_02_scm.m2", + }, + { + fileId = "137915", + text = "helm_engi_b_02_taf.m2", + value = "helm_engi_b_02_taf.m2", + }, + { + fileId = "137916", + text = "helm_engi_b_02_tam.m2", + value = "helm_engi_b_02_tam.m2", + }, + { + fileId = "137917", + text = "helm_engi_b_02_trf.m2", + value = "helm_engi_b_02_trf.m2", + }, + { + fileId = "137918", + text = "helm_engi_b_02_trm.m2", + value = "helm_engi_b_02_trm.m2", + }, + { + fileId = "2199344", + text = "helm_engi_c_01diver.m2", + value = "helm_engi_c_01diver.m2", + }, + { + fileId = "137921", + text = "helm_engi_c_01diver_bef.m2", + value = "helm_engi_c_01diver_bef.m2", + }, + { + fileId = "137922", + text = "helm_engi_c_01diver_bem.m2", + value = "helm_engi_c_01diver_bem.m2", + }, + { + fileId = "137923", + text = "helm_engi_c_01diver_drf.m2", + value = "helm_engi_c_01diver_drf.m2", + }, + { + fileId = "137924", + text = "helm_engi_c_01diver_drm.m2", + value = "helm_engi_c_01diver_drm.m2", + }, + { + fileId = "137925", + text = "helm_engi_c_01diver_dwf.m2", + value = "helm_engi_c_01diver_dwf.m2", + }, + { + fileId = "137926", + text = "helm_engi_c_01diver_dwm.m2", + value = "helm_engi_c_01diver_dwm.m2", + }, + { + fileId = "137927", + text = "helm_engi_c_01diver_gnf.m2", + value = "helm_engi_c_01diver_gnf.m2", + }, + { + fileId = "137928", + text = "helm_engi_c_01diver_gnm.m2", + value = "helm_engi_c_01diver_gnm.m2", + }, + { + fileId = "137929", + text = "helm_engi_c_01diver_gof.m2", + value = "helm_engi_c_01diver_gof.m2", + }, + { + fileId = "137930", + text = "helm_engi_c_01diver_gom.m2", + value = "helm_engi_c_01diver_gom.m2", + }, + { + fileId = "137931", + text = "helm_engi_c_01diver_huf.m2", + value = "helm_engi_c_01diver_huf.m2", + }, + { + fileId = "137932", + text = "helm_engi_c_01diver_hum.m2", + value = "helm_engi_c_01diver_hum.m2", + }, + { + fileId = "137933", + text = "helm_engi_c_01diver_nif.m2", + value = "helm_engi_c_01diver_nif.m2", + }, + { + fileId = "137934", + text = "helm_engi_c_01diver_nim.m2", + value = "helm_engi_c_01diver_nim.m2", + }, + { + fileId = "137935", + text = "helm_engi_c_01diver_orf.m2", + value = "helm_engi_c_01diver_orf.m2", + }, + { + fileId = "137936", + text = "helm_engi_c_01diver_orm.m2", + value = "helm_engi_c_01diver_orm.m2", + }, + { + fileId = "137937", + text = "helm_engi_c_01diver_scf.m2", + value = "helm_engi_c_01diver_scf.m2", + }, + { + fileId = "137938", + text = "helm_engi_c_01diver_scm.m2", + value = "helm_engi_c_01diver_scm.m2", + }, + { + fileId = "137939", + text = "helm_engi_c_01diver_taf.m2", + value = "helm_engi_c_01diver_taf.m2", + }, + { + fileId = "137940", + text = "helm_engi_c_01diver_tam.m2", + value = "helm_engi_c_01diver_tam.m2", + }, + { + fileId = "137941", + text = "helm_engi_c_01diver_trf.m2", + value = "helm_engi_c_01diver_trf.m2", + }, + { + fileId = "137942", + text = "helm_engi_c_01diver_trm.m2", + value = "helm_engi_c_01diver_trm.m2", + }, + { + fileId = "137946", + text = "helm_engi_c_02space_bef.m2", + value = "helm_engi_c_02space_bef.m2", + }, + { + fileId = "137947", + text = "helm_engi_c_02space_bem.m2", + value = "helm_engi_c_02space_bem.m2", + }, + { + fileId = "137948", + text = "helm_engi_c_02space_drf.m2", + value = "helm_engi_c_02space_drf.m2", + }, + { + fileId = "137949", + text = "helm_engi_c_02space_drm.m2", + value = "helm_engi_c_02space_drm.m2", + }, + { + fileId = "137950", + text = "helm_engi_c_02space_dwf.m2", + value = "helm_engi_c_02space_dwf.m2", + }, + { + fileId = "137951", + text = "helm_engi_c_02space_dwm.m2", + value = "helm_engi_c_02space_dwm.m2", + }, + { + fileId = "137952", + text = "helm_engi_c_02space_gnf.m2", + value = "helm_engi_c_02space_gnf.m2", + }, + { + fileId = "137953", + text = "helm_engi_c_02space_gnm.m2", + value = "helm_engi_c_02space_gnm.m2", + }, + { + fileId = "137954", + text = "helm_engi_c_02space_gof.m2", + value = "helm_engi_c_02space_gof.m2", + }, + { + fileId = "137955", + text = "helm_engi_c_02space_gom.m2", + value = "helm_engi_c_02space_gom.m2", + }, + { + fileId = "137956", + text = "helm_engi_c_02space_huf.m2", + value = "helm_engi_c_02space_huf.m2", + }, + { + fileId = "137957", + text = "helm_engi_c_02space_hum.m2", + value = "helm_engi_c_02space_hum.m2", + }, + { + fileId = "137958", + text = "helm_engi_c_02space_nif.m2", + value = "helm_engi_c_02space_nif.m2", + }, + { + fileId = "137959", + text = "helm_engi_c_02space_nim.m2", + value = "helm_engi_c_02space_nim.m2", + }, + { + fileId = "137960", + text = "helm_engi_c_02space_orf.m2", + value = "helm_engi_c_02space_orf.m2", + }, + { + fileId = "137961", + text = "helm_engi_c_02space_orm.m2", + value = "helm_engi_c_02space_orm.m2", + }, + { + fileId = "137962", + text = "helm_engi_c_02space_scf.m2", + value = "helm_engi_c_02space_scf.m2", + }, + { + fileId = "137963", + text = "helm_engi_c_02space_scm.m2", + value = "helm_engi_c_02space_scm.m2", + }, + { + fileId = "137964", + text = "helm_engi_c_02space_taf.m2", + value = "helm_engi_c_02space_taf.m2", + }, + { + fileId = "137965", + text = "helm_engi_c_02space_tam.m2", + value = "helm_engi_c_02space_tam.m2", + }, + { + fileId = "137966", + text = "helm_engi_c_02space_trf.m2", + value = "helm_engi_c_02space_trf.m2", + }, + { + fileId = "137967", + text = "helm_engi_c_02space_trm.m2", + value = "helm_engi_c_02space_trm.m2", + }, + { + fileId = "137968", + text = "helm_eyepatch_a_01_bef.m2", + value = "helm_eyepatch_a_01_bef.m2", + }, + { + fileId = "137969", + text = "helm_eyepatch_a_01_bem.m2", + value = "helm_eyepatch_a_01_bem.m2", + }, + { + fileId = "137970", + text = "helm_eyepatch_a_01_drf.m2", + value = "helm_eyepatch_a_01_drf.m2", + }, + { + fileId = "137971", + text = "helm_eyepatch_a_01_drm.m2", + value = "helm_eyepatch_a_01_drm.m2", + }, + { + fileId = "137972", + text = "helm_eyepatch_a_01_dwf.m2", + value = "helm_eyepatch_a_01_dwf.m2", + }, + { + fileId = "137973", + text = "helm_eyepatch_a_01_dwm.m2", + value = "helm_eyepatch_a_01_dwm.m2", + }, + { + fileId = "137974", + text = "helm_eyepatch_a_01_gnf.m2", + value = "helm_eyepatch_a_01_gnf.m2", + }, + { + fileId = "137975", + text = "helm_eyepatch_a_01_gnm.m2", + value = "helm_eyepatch_a_01_gnm.m2", + }, + { + fileId = "137976", + text = "helm_eyepatch_a_01_gof.m2", + value = "helm_eyepatch_a_01_gof.m2", + }, + { + fileId = "137977", + text = "helm_eyepatch_a_01_gom.m2", + value = "helm_eyepatch_a_01_gom.m2", + }, + { + fileId = "137978", + text = "helm_eyepatch_a_01_huf.m2", + value = "helm_eyepatch_a_01_huf.m2", + }, + { + fileId = "137979", + text = "helm_eyepatch_a_01_hum.m2", + value = "helm_eyepatch_a_01_hum.m2", + }, + { + fileId = "137980", + text = "helm_eyepatch_a_01_nif.m2", + value = "helm_eyepatch_a_01_nif.m2", + }, + { + fileId = "137981", + text = "helm_eyepatch_a_01_nim.m2", + value = "helm_eyepatch_a_01_nim.m2", + }, + { + fileId = "137982", + text = "helm_eyepatch_a_01_orf.m2", + value = "helm_eyepatch_a_01_orf.m2", + }, + { + fileId = "137983", + text = "helm_eyepatch_a_01_orm.m2", + value = "helm_eyepatch_a_01_orm.m2", + }, + { + fileId = "137984", + text = "helm_eyepatch_a_01_scf.m2", + value = "helm_eyepatch_a_01_scf.m2", + }, + { + fileId = "137985", + text = "helm_eyepatch_a_01_scm.m2", + value = "helm_eyepatch_a_01_scm.m2", + }, + { + fileId = "137986", + text = "helm_eyepatch_a_01_taf.m2", + value = "helm_eyepatch_a_01_taf.m2", + }, + { + fileId = "137987", + text = "helm_eyepatch_a_01_tam.m2", + value = "helm_eyepatch_a_01_tam.m2", + }, + { + fileId = "137988", + text = "helm_eyepatch_a_01_trf.m2", + value = "helm_eyepatch_a_01_trf.m2", + }, + { + fileId = "137989", + text = "helm_eyepatch_a_01_trm.m2", + value = "helm_eyepatch_a_01_trm.m2", + }, + { + fileId = "137996", + text = "helm_eyepatch_a_02_bem.m2", + value = "helm_eyepatch_a_02_bem.m2", + }, + { + fileId = "137998", + text = "helm_goggles_b_01_bef.m2", + value = "helm_goggles_b_01_bef.m2", + }, + { + fileId = "137999", + text = "helm_goggles_b_01_bem.m2", + value = "helm_goggles_b_01_bem.m2", + }, + { + fileId = "138000", + text = "helm_goggles_b_01_drf.m2", + value = "helm_goggles_b_01_drf.m2", + }, + { + fileId = "138001", + text = "helm_goggles_b_01_drm.m2", + value = "helm_goggles_b_01_drm.m2", + }, + { + fileId = "138002", + text = "helm_goggles_b_01_dwf.m2", + value = "helm_goggles_b_01_dwf.m2", + }, + { + fileId = "138003", + text = "helm_goggles_b_01_dwm.m2", + value = "helm_goggles_b_01_dwm.m2", + }, + { + fileId = "138004", + text = "helm_goggles_b_01_gnf.m2", + value = "helm_goggles_b_01_gnf.m2", + }, + { + fileId = "138005", + text = "helm_goggles_b_01_gnm.m2", + value = "helm_goggles_b_01_gnm.m2", + }, + { + fileId = "138006", + text = "helm_goggles_b_01_gom.m2", + value = "helm_goggles_b_01_gom.m2", + }, + { + fileId = "138007", + text = "helm_goggles_b_01_huf.m2", + value = "helm_goggles_b_01_huf.m2", + }, + { + fileId = "138008", + text = "helm_goggles_b_01_hum.m2", + value = "helm_goggles_b_01_hum.m2", + }, + { + fileId = "138009", + text = "helm_goggles_b_01_nif.m2", + value = "helm_goggles_b_01_nif.m2", + }, + { + fileId = "138010", + text = "helm_goggles_b_01_nim.m2", + value = "helm_goggles_b_01_nim.m2", + }, + { + fileId = "138011", + text = "helm_goggles_b_01_orf.m2", + value = "helm_goggles_b_01_orf.m2", + }, + { + fileId = "138012", + text = "helm_goggles_b_01_orm.m2", + value = "helm_goggles_b_01_orm.m2", + }, + { + fileId = "138013", + text = "helm_goggles_b_01_scf.m2", + value = "helm_goggles_b_01_scf.m2", + }, + { + fileId = "138014", + text = "helm_goggles_b_01_scm.m2", + value = "helm_goggles_b_01_scm.m2", + }, + { + fileId = "138015", + text = "helm_goggles_b_01_taf.m2", + value = "helm_goggles_b_01_taf.m2", + }, + { + fileId = "138016", + text = "helm_goggles_b_01_tam.m2", + value = "helm_goggles_b_01_tam.m2", + }, + { + fileId = "138017", + text = "helm_goggles_b_01_trf.m2", + value = "helm_goggles_b_01_trf.m2", + }, + { + fileId = "138018", + text = "helm_goggles_b_01_trm.m2", + value = "helm_goggles_b_01_trm.m2", + }, + { + fileId = "138028", + text = "helm_goggles_b_02engi_bef.m2", + value = "helm_goggles_b_02engi_bef.m2", + }, + { + fileId = "138029", + text = "helm_goggles_b_02engi_bem.m2", + value = "helm_goggles_b_02engi_bem.m2", + }, + { + fileId = "138030", + text = "helm_goggles_b_02engi_drf.m2", + value = "helm_goggles_b_02engi_drf.m2", + }, + { + fileId = "138031", + text = "helm_goggles_b_02engi_drm.m2", + value = "helm_goggles_b_02engi_drm.m2", + }, + { + fileId = "138032", + text = "helm_goggles_b_02engi_dwf.m2", + value = "helm_goggles_b_02engi_dwf.m2", + }, + { + fileId = "138033", + text = "helm_goggles_b_02engi_dwm.m2", + value = "helm_goggles_b_02engi_dwm.m2", + }, + { + fileId = "138034", + text = "helm_goggles_b_02engi_gnf.m2", + value = "helm_goggles_b_02engi_gnf.m2", + }, + { + fileId = "138035", + text = "helm_goggles_b_02engi_gnm.m2", + value = "helm_goggles_b_02engi_gnm.m2", + }, + { + fileId = "138036", + text = "helm_goggles_b_02engi_gof.m2", + value = "helm_goggles_b_02engi_gof.m2", + }, + { + fileId = "138037", + text = "helm_goggles_b_02engi_gom.m2", + value = "helm_goggles_b_02engi_gom.m2", + }, + { + fileId = "138038", + text = "helm_goggles_b_02engi_huf.m2", + value = "helm_goggles_b_02engi_huf.m2", + }, + { + fileId = "138039", + text = "helm_goggles_b_02engi_hum.m2", + value = "helm_goggles_b_02engi_hum.m2", + }, + { + fileId = "138040", + text = "helm_goggles_b_02engi_nif.m2", + value = "helm_goggles_b_02engi_nif.m2", + }, + { + fileId = "138041", + text = "helm_goggles_b_02engi_nim.m2", + value = "helm_goggles_b_02engi_nim.m2", + }, + { + fileId = "138042", + text = "helm_goggles_b_02engi_orf.m2", + value = "helm_goggles_b_02engi_orf.m2", + }, + { + fileId = "138043", + text = "helm_goggles_b_02engi_orm.m2", + value = "helm_goggles_b_02engi_orm.m2", + }, + { + fileId = "138044", + text = "helm_goggles_b_02engi_scf.m2", + value = "helm_goggles_b_02engi_scf.m2", + }, + { + fileId = "138045", + text = "helm_goggles_b_02engi_scm.m2", + value = "helm_goggles_b_02engi_scm.m2", + }, + { + fileId = "138046", + text = "helm_goggles_b_02engi_taf.m2", + value = "helm_goggles_b_02engi_taf.m2", + }, + { + fileId = "138047", + text = "helm_goggles_b_02engi_tam.m2", + value = "helm_goggles_b_02engi_tam.m2", + }, + { + fileId = "138048", + text = "helm_goggles_b_02engi_trf.m2", + value = "helm_goggles_b_02engi_trf.m2", + }, + { + fileId = "138049", + text = "helm_goggles_b_02engi_trm.m2", + value = "helm_goggles_b_02engi_trm.m2", + }, + { + fileId = "138051", + text = "helm_goggles_b_03_bef.m2", + value = "helm_goggles_b_03_bef.m2", + }, + { + fileId = "138052", + text = "helm_goggles_b_03_bem.m2", + value = "helm_goggles_b_03_bem.m2", + }, + { + fileId = "138053", + text = "helm_goggles_b_03_drf.m2", + value = "helm_goggles_b_03_drf.m2", + }, + { + fileId = "138054", + text = "helm_goggles_b_03_drm.m2", + value = "helm_goggles_b_03_drm.m2", + }, + { + fileId = "138055", + text = "helm_goggles_b_03_dwf.m2", + value = "helm_goggles_b_03_dwf.m2", + }, + { + fileId = "138056", + text = "helm_goggles_b_03_dwm.m2", + value = "helm_goggles_b_03_dwm.m2", + }, + { + fileId = "138057", + text = "helm_goggles_b_03_gnf.m2", + value = "helm_goggles_b_03_gnf.m2", + }, + { + fileId = "138058", + text = "helm_goggles_b_03_gnm.m2", + value = "helm_goggles_b_03_gnm.m2", + }, + { + fileId = "138059", + text = "helm_goggles_b_03_gof.m2", + value = "helm_goggles_b_03_gof.m2", + }, + { + fileId = "138060", + text = "helm_goggles_b_03_gom.m2", + value = "helm_goggles_b_03_gom.m2", + }, + { + fileId = "138061", + text = "helm_goggles_b_03_huf.m2", + value = "helm_goggles_b_03_huf.m2", + }, + { + fileId = "138062", + text = "helm_goggles_b_03_hum.m2", + value = "helm_goggles_b_03_hum.m2", + }, + { + fileId = "138063", + text = "helm_goggles_b_03_nif.m2", + value = "helm_goggles_b_03_nif.m2", + }, + { + fileId = "138064", + text = "helm_goggles_b_03_nim.m2", + value = "helm_goggles_b_03_nim.m2", + }, + { + fileId = "138065", + text = "helm_goggles_b_03_orf.m2", + value = "helm_goggles_b_03_orf.m2", + }, + { + fileId = "138066", + text = "helm_goggles_b_03_orm.m2", + value = "helm_goggles_b_03_orm.m2", + }, + { + fileId = "138067", + text = "helm_goggles_b_03_scf.m2", + value = "helm_goggles_b_03_scf.m2", + }, + { + fileId = "138068", + text = "helm_goggles_b_03_scm.m2", + value = "helm_goggles_b_03_scm.m2", + }, + { + fileId = "138069", + text = "helm_goggles_b_03_taf.m2", + value = "helm_goggles_b_03_taf.m2", + }, + { + fileId = "138070", + text = "helm_goggles_b_03_tam.m2", + value = "helm_goggles_b_03_tam.m2", + }, + { + fileId = "138071", + text = "helm_goggles_b_03_trf.m2", + value = "helm_goggles_b_03_trf.m2", + }, + { + fileId = "138072", + text = "helm_goggles_b_03_trm.m2", + value = "helm_goggles_b_03_trm.m2", + }, + { + fileId = "138074", + text = "helm_goggles_b_04.m2", + value = "helm_goggles_b_04.m2", + }, + { + fileId = "138075", + text = "helm_goggles_b_04_dwf.m2", + value = "helm_goggles_b_04_dwf.m2", + }, + { + fileId = "138076", + text = "helm_goggles_b_04_dwm.m2", + value = "helm_goggles_b_04_dwm.m2", + }, + { + fileId = "138078", + text = "helm_goggles_c_01_bef.m2", + value = "helm_goggles_c_01_bef.m2", + }, + { + fileId = "138079", + text = "helm_goggles_c_01_bem.m2", + value = "helm_goggles_c_01_bem.m2", + }, + { + fileId = "138080", + text = "helm_goggles_c_01_drf.m2", + value = "helm_goggles_c_01_drf.m2", + }, + { + fileId = "138081", + text = "helm_goggles_c_01_drm.m2", + value = "helm_goggles_c_01_drm.m2", + }, + { + fileId = "138082", + text = "helm_goggles_c_01_dwf.m2", + value = "helm_goggles_c_01_dwf.m2", + }, + { + fileId = "138083", + text = "helm_goggles_c_01_dwm.m2", + value = "helm_goggles_c_01_dwm.m2", + }, + { + fileId = "138084", + text = "helm_goggles_c_01_gnf.m2", + value = "helm_goggles_c_01_gnf.m2", + }, + { + fileId = "138085", + text = "helm_goggles_c_01_gnm.m2", + value = "helm_goggles_c_01_gnm.m2", + }, + { + fileId = "138086", + text = "helm_goggles_c_01_gof.m2", + value = "helm_goggles_c_01_gof.m2", + }, + { + fileId = "138087", + text = "helm_goggles_c_01_gom.m2", + value = "helm_goggles_c_01_gom.m2", + }, + { + fileId = "138088", + text = "helm_goggles_c_01_huf.m2", + value = "helm_goggles_c_01_huf.m2", + }, + { + fileId = "138089", + text = "helm_goggles_c_01_hum.m2", + value = "helm_goggles_c_01_hum.m2", + }, + { + fileId = "138090", + text = "helm_goggles_c_01_nif.m2", + value = "helm_goggles_c_01_nif.m2", + }, + { + fileId = "138091", + text = "helm_goggles_c_01_nim.m2", + value = "helm_goggles_c_01_nim.m2", + }, + { + fileId = "138092", + text = "helm_goggles_c_01_orf.m2", + value = "helm_goggles_c_01_orf.m2", + }, + { + fileId = "138093", + text = "helm_goggles_c_01_orm.m2", + value = "helm_goggles_c_01_orm.m2", + }, + { + fileId = "138094", + text = "helm_goggles_c_01_scf.m2", + value = "helm_goggles_c_01_scf.m2", + }, + { + fileId = "138095", + text = "helm_goggles_c_01_scm.m2", + value = "helm_goggles_c_01_scm.m2", + }, + { + fileId = "138096", + text = "helm_goggles_c_01_taf.m2", + value = "helm_goggles_c_01_taf.m2", + }, + { + fileId = "138097", + text = "helm_goggles_c_01_tam.m2", + value = "helm_goggles_c_01_tam.m2", + }, + { + fileId = "138098", + text = "helm_goggles_c_01_trf.m2", + value = "helm_goggles_c_01_trf.m2", + }, + { + fileId = "138099", + text = "helm_goggles_c_01_trm.m2", + value = "helm_goggles_c_01_trm.m2", + }, + { + fileId = "138104", + text = "helm_goggles_d_01_bef.m2", + value = "helm_goggles_d_01_bef.m2", + }, + { + fileId = "138105", + text = "helm_goggles_d_01_bem.m2", + value = "helm_goggles_d_01_bem.m2", + }, + { + fileId = "138106", + text = "helm_goggles_d_01_drf.m2", + value = "helm_goggles_d_01_drf.m2", + }, + { + fileId = "138107", + text = "helm_goggles_d_01_drm.m2", + value = "helm_goggles_d_01_drm.m2", + }, + { + fileId = "138108", + text = "helm_goggles_d_01_dwf.m2", + value = "helm_goggles_d_01_dwf.m2", + }, + { + fileId = "138109", + text = "helm_goggles_d_01_dwm.m2", + value = "helm_goggles_d_01_dwm.m2", + }, + { + fileId = "138110", + text = "helm_goggles_d_01_gnf.m2", + value = "helm_goggles_d_01_gnf.m2", + }, + { + fileId = "138111", + text = "helm_goggles_d_01_gnm.m2", + value = "helm_goggles_d_01_gnm.m2", + }, + { + fileId = "138112", + text = "helm_goggles_d_01_gof.m2", + value = "helm_goggles_d_01_gof.m2", + }, + { + fileId = "138113", + text = "helm_goggles_d_01_gom.m2", + value = "helm_goggles_d_01_gom.m2", + }, + { + fileId = "138114", + text = "helm_goggles_d_01_huf.m2", + value = "helm_goggles_d_01_huf.m2", + }, + { + fileId = "138115", + text = "helm_goggles_d_01_hum.m2", + value = "helm_goggles_d_01_hum.m2", + }, + { + fileId = "138116", + text = "helm_goggles_d_01_nif.m2", + value = "helm_goggles_d_01_nif.m2", + }, + { + fileId = "138117", + text = "helm_goggles_d_01_nim.m2", + value = "helm_goggles_d_01_nim.m2", + }, + { + fileId = "138118", + text = "helm_goggles_d_01_orf.m2", + value = "helm_goggles_d_01_orf.m2", + }, + { + fileId = "138119", + text = "helm_goggles_d_01_orm.m2", + value = "helm_goggles_d_01_orm.m2", + }, + { + fileId = "138120", + text = "helm_goggles_d_01_scf.m2", + value = "helm_goggles_d_01_scf.m2", + }, + { + fileId = "138121", + text = "helm_goggles_d_01_scm.m2", + value = "helm_goggles_d_01_scm.m2", + }, + { + fileId = "138122", + text = "helm_goggles_d_01_taf.m2", + value = "helm_goggles_d_01_taf.m2", + }, + { + fileId = "138123", + text = "helm_goggles_d_01_tam.m2", + value = "helm_goggles_d_01_tam.m2", + }, + { + fileId = "138124", + text = "helm_goggles_d_01_trf.m2", + value = "helm_goggles_d_01_trf.m2", + }, + { + fileId = "138125", + text = "helm_goggles_d_01_trm.m2", + value = "helm_goggles_d_01_trm.m2", + }, + { + fileId = "237836", + text = "helm_goggles_xray_a_01_bef.m2", + value = "helm_goggles_xray_a_01_bef.m2", + }, + { + fileId = "237837", + text = "helm_goggles_xray_a_01_bem.m2", + value = "helm_goggles_xray_a_01_bem.m2", + }, + { + fileId = "237838", + text = "helm_goggles_xray_a_01_drf.m2", + value = "helm_goggles_xray_a_01_drf.m2", + }, + { + fileId = "237839", + text = "helm_goggles_xray_a_01_drm.m2", + value = "helm_goggles_xray_a_01_drm.m2", + }, + { + fileId = "237840", + text = "helm_goggles_xray_a_01_dwf.m2", + value = "helm_goggles_xray_a_01_dwf.m2", + }, + { + fileId = "237841", + text = "helm_goggles_xray_a_01_dwm.m2", + value = "helm_goggles_xray_a_01_dwm.m2", + }, + { + fileId = "237842", + text = "helm_goggles_xray_a_01_gnf.m2", + value = "helm_goggles_xray_a_01_gnf.m2", + }, + { + fileId = "237843", + text = "helm_goggles_xray_a_01_gnm.m2", + value = "helm_goggles_xray_a_01_gnm.m2", + }, + { + fileId = "237844", + text = "helm_goggles_xray_a_01_gof.m2", + value = "helm_goggles_xray_a_01_gof.m2", + }, + { + fileId = "237845", + text = "helm_goggles_xray_a_01_gom.m2", + value = "helm_goggles_xray_a_01_gom.m2", + }, + { + fileId = "237846", + text = "helm_goggles_xray_a_01_huf.m2", + value = "helm_goggles_xray_a_01_huf.m2", + }, + { + fileId = "237847", + text = "helm_goggles_xray_a_01_hum.m2", + value = "helm_goggles_xray_a_01_hum.m2", + }, + { + fileId = "237848", + text = "helm_goggles_xray_a_01_nif.m2", + value = "helm_goggles_xray_a_01_nif.m2", + }, + { + fileId = "237849", + text = "helm_goggles_xray_a_01_nim.m2", + value = "helm_goggles_xray_a_01_nim.m2", + }, + { + fileId = "237850", + text = "helm_goggles_xray_a_01_orf.m2", + value = "helm_goggles_xray_a_01_orf.m2", + }, + { + fileId = "237851", + text = "helm_goggles_xray_a_01_orm.m2", + value = "helm_goggles_xray_a_01_orm.m2", + }, + { + fileId = "237852", + text = "helm_goggles_xray_a_01_scf.m2", + value = "helm_goggles_xray_a_01_scf.m2", + }, + { + fileId = "237853", + text = "helm_goggles_xray_a_01_scm.m2", + value = "helm_goggles_xray_a_01_scm.m2", + }, + { + fileId = "237854", + text = "helm_goggles_xray_a_01_taf.m2", + value = "helm_goggles_xray_a_01_taf.m2", + }, + { + fileId = "237855", + text = "helm_goggles_xray_a_01_tam.m2", + value = "helm_goggles_xray_a_01_tam.m2", + }, + { + fileId = "237856", + text = "helm_goggles_xray_a_01_trf.m2", + value = "helm_goggles_xray_a_01_trf.m2", + }, + { + fileId = "237857", + text = "helm_goggles_xray_a_01_trm.m2", + value = "helm_goggles_xray_a_01_trm.m2", + }, + { + fileId = "138137", + text = "helm_leather_a_01_bef.m2", + value = "helm_leather_a_01_bef.m2", + }, + { + fileId = "138138", + text = "helm_leather_a_01_bem.m2", + value = "helm_leather_a_01_bem.m2", + }, + { + fileId = "138139", + text = "helm_leather_a_01_drf.m2", + value = "helm_leather_a_01_drf.m2", + }, + { + fileId = "138140", + text = "helm_leather_a_01_drm.m2", + value = "helm_leather_a_01_drm.m2", + }, + { + fileId = "138141", + text = "helm_leather_a_01_dwf.m2", + value = "helm_leather_a_01_dwf.m2", + }, + { + fileId = "138142", + text = "helm_leather_a_01_dwm.m2", + value = "helm_leather_a_01_dwm.m2", + }, + { + fileId = "138143", + text = "helm_leather_a_01_gnf.m2", + value = "helm_leather_a_01_gnf.m2", + }, + { + fileId = "138144", + text = "helm_leather_a_01_gnm.m2", + value = "helm_leather_a_01_gnm.m2", + }, + { + fileId = "138145", + text = "helm_leather_a_01_gof.m2", + value = "helm_leather_a_01_gof.m2", + }, + { + fileId = "138146", + text = "helm_leather_a_01_gom.m2", + value = "helm_leather_a_01_gom.m2", + }, + { + fileId = "138147", + text = "helm_leather_a_01_huf.m2", + value = "helm_leather_a_01_huf.m2", + }, + { + fileId = "138148", + text = "helm_leather_a_01_hum.m2", + value = "helm_leather_a_01_hum.m2", + }, + { + fileId = "138149", + text = "helm_leather_a_01_nif.m2", + value = "helm_leather_a_01_nif.m2", + }, + { + fileId = "138150", + text = "helm_leather_a_01_nim.m2", + value = "helm_leather_a_01_nim.m2", + }, + { + fileId = "138151", + text = "helm_leather_a_01_orf.m2", + value = "helm_leather_a_01_orf.m2", + }, + { + fileId = "138152", + text = "helm_leather_a_01_orm.m2", + value = "helm_leather_a_01_orm.m2", + }, + { + fileId = "138153", + text = "helm_leather_a_01_scf.m2", + value = "helm_leather_a_01_scf.m2", + }, + { + fileId = "138154", + text = "helm_leather_a_01_scm.m2", + value = "helm_leather_a_01_scm.m2", + }, + { + fileId = "138155", + text = "helm_leather_a_01_taf.m2", + value = "helm_leather_a_01_taf.m2", + }, + { + fileId = "138156", + text = "helm_leather_a_01_tam.m2", + value = "helm_leather_a_01_tam.m2", + }, + { + fileId = "138157", + text = "helm_leather_a_01_trf.m2", + value = "helm_leather_a_01_trf.m2", + }, + { + fileId = "138158", + text = "helm_leather_a_01_trm.m2", + value = "helm_leather_a_01_trm.m2", + }, + { + fileId = "138167", + text = "helm_leather_a_02_bef.m2", + value = "helm_leather_a_02_bef.m2", + }, + { + fileId = "138168", + text = "helm_leather_a_02_bem.m2", + value = "helm_leather_a_02_bem.m2", + }, + { + fileId = "138169", + text = "helm_leather_a_02_drf.m2", + value = "helm_leather_a_02_drf.m2", + }, + { + fileId = "138170", + text = "helm_leather_a_02_drm.m2", + value = "helm_leather_a_02_drm.m2", + }, + { + fileId = "138171", + text = "helm_leather_a_02_dwf.m2", + value = "helm_leather_a_02_dwf.m2", + }, + { + fileId = "138172", + text = "helm_leather_a_02_dwm.m2", + value = "helm_leather_a_02_dwm.m2", + }, + { + fileId = "138173", + text = "helm_leather_a_02_gnf.m2", + value = "helm_leather_a_02_gnf.m2", + }, + { + fileId = "138174", + text = "helm_leather_a_02_gnm.m2", + value = "helm_leather_a_02_gnm.m2", + }, + { + fileId = "138175", + text = "helm_leather_a_02_gof.m2", + value = "helm_leather_a_02_gof.m2", + }, + { + fileId = "138176", + text = "helm_leather_a_02_gom.m2", + value = "helm_leather_a_02_gom.m2", + }, + { + fileId = "138177", + text = "helm_leather_a_02_huf.m2", + value = "helm_leather_a_02_huf.m2", + }, + { + fileId = "138178", + text = "helm_leather_a_02_hum.m2", + value = "helm_leather_a_02_hum.m2", + }, + { + fileId = "138179", + text = "helm_leather_a_02_nif.m2", + value = "helm_leather_a_02_nif.m2", + }, + { + fileId = "138180", + text = "helm_leather_a_02_nim.m2", + value = "helm_leather_a_02_nim.m2", + }, + { + fileId = "138181", + text = "helm_leather_a_02_orf.m2", + value = "helm_leather_a_02_orf.m2", + }, + { + fileId = "138182", + text = "helm_leather_a_02_orm.m2", + value = "helm_leather_a_02_orm.m2", + }, + { + fileId = "138183", + text = "helm_leather_a_02_scf.m2", + value = "helm_leather_a_02_scf.m2", + }, + { + fileId = "138184", + text = "helm_leather_a_02_scm.m2", + value = "helm_leather_a_02_scm.m2", + }, + { + fileId = "138185", + text = "helm_leather_a_02_taf.m2", + value = "helm_leather_a_02_taf.m2", + }, + { + fileId = "138186", + text = "helm_leather_a_02_tam.m2", + value = "helm_leather_a_02_tam.m2", + }, + { + fileId = "138187", + text = "helm_leather_a_02_trf.m2", + value = "helm_leather_a_02_trf.m2", + }, + { + fileId = "138188", + text = "helm_leather_a_02_trm.m2", + value = "helm_leather_a_02_trm.m2", + }, + { + fileId = "138194", + text = "helm_leather_a_03defias_bef.m2", + value = "helm_leather_a_03defias_bef.m2", + }, + { + fileId = "138195", + text = "helm_leather_a_03defias_bem.m2", + value = "helm_leather_a_03defias_bem.m2", + }, + { + fileId = "138196", + text = "helm_leather_a_03defias_drf.m2", + value = "helm_leather_a_03defias_drf.m2", + }, + { + fileId = "138197", + text = "helm_leather_a_03defias_drm.m2", + value = "helm_leather_a_03defias_drm.m2", + }, + { + fileId = "138198", + text = "helm_leather_a_03defias_dwf.m2", + value = "helm_leather_a_03defias_dwf.m2", + }, + { + fileId = "138199", + text = "helm_leather_a_03defias_dwm.m2", + value = "helm_leather_a_03defias_dwm.m2", + }, + { + fileId = "138200", + text = "helm_leather_a_03defias_gnf.m2", + value = "helm_leather_a_03defias_gnf.m2", + }, + { + fileId = "138201", + text = "helm_leather_a_03defias_gnm.m2", + value = "helm_leather_a_03defias_gnm.m2", + }, + { + fileId = "138202", + text = "helm_leather_a_03defias_gof.m2", + value = "helm_leather_a_03defias_gof.m2", + }, + { + fileId = "138203", + text = "helm_leather_a_03defias_gom.m2", + value = "helm_leather_a_03defias_gom.m2", + }, + { + fileId = "138204", + text = "helm_leather_a_03defias_huf.m2", + value = "helm_leather_a_03defias_huf.m2", + }, + { + fileId = "138205", + text = "helm_leather_a_03defias_hum.m2", + value = "helm_leather_a_03defias_hum.m2", + }, + { + fileId = "138206", + text = "helm_leather_a_03defias_nif.m2", + value = "helm_leather_a_03defias_nif.m2", + }, + { + fileId = "138207", + text = "helm_leather_a_03defias_nim.m2", + value = "helm_leather_a_03defias_nim.m2", + }, + { + fileId = "138208", + text = "helm_leather_a_03defias_orf.m2", + value = "helm_leather_a_03defias_orf.m2", + }, + { + fileId = "138209", + text = "helm_leather_a_03defias_orm.m2", + value = "helm_leather_a_03defias_orm.m2", + }, + { + fileId = "138210", + text = "helm_leather_a_03defias_scf.m2", + value = "helm_leather_a_03defias_scf.m2", + }, + { + fileId = "138211", + text = "helm_leather_a_03defias_scm.m2", + value = "helm_leather_a_03defias_scm.m2", + }, + { + fileId = "138212", + text = "helm_leather_a_03defias_taf.m2", + value = "helm_leather_a_03defias_taf.m2", + }, + { + fileId = "138213", + text = "helm_leather_a_03defias_tam.m2", + value = "helm_leather_a_03defias_tam.m2", + }, + { + fileId = "138214", + text = "helm_leather_a_03defias_trf.m2", + value = "helm_leather_a_03defias_trf.m2", + }, + { + fileId = "138215", + text = "helm_leather_a_03defias_trm.m2", + value = "helm_leather_a_03defias_trm.m2", + }, + { + fileId = "138223", + text = "helm_leather_ahnqiraj_a_01_bef.m2", + value = "helm_leather_ahnqiraj_a_01_bef.m2", + }, + { + fileId = "138224", + text = "helm_leather_ahnqiraj_a_01_bem.m2", + value = "helm_leather_ahnqiraj_a_01_bem.m2", + }, + { + fileId = "138225", + text = "helm_leather_ahnqiraj_a_01_drf.m2", + value = "helm_leather_ahnqiraj_a_01_drf.m2", + }, + { + fileId = "138226", + text = "helm_leather_ahnqiraj_a_01_drm.m2", + value = "helm_leather_ahnqiraj_a_01_drm.m2", + }, + { + fileId = "138227", + text = "helm_leather_ahnqiraj_a_01_dwf.m2", + value = "helm_leather_ahnqiraj_a_01_dwf.m2", + }, + { + fileId = "138228", + text = "helm_leather_ahnqiraj_a_01_dwm.m2", + value = "helm_leather_ahnqiraj_a_01_dwm.m2", + }, + { + fileId = "138229", + text = "helm_leather_ahnqiraj_a_01_gnf.m2", + value = "helm_leather_ahnqiraj_a_01_gnf.m2", + }, + { + fileId = "138230", + text = "helm_leather_ahnqiraj_a_01_gnm.m2", + value = "helm_leather_ahnqiraj_a_01_gnm.m2", + }, + { + fileId = "138231", + text = "helm_leather_ahnqiraj_a_01_gof.m2", + value = "helm_leather_ahnqiraj_a_01_gof.m2", + }, + { + fileId = "138232", + text = "helm_leather_ahnqiraj_a_01_gom.m2", + value = "helm_leather_ahnqiraj_a_01_gom.m2", + }, + { + fileId = "138233", + text = "helm_leather_ahnqiraj_a_01_huf.m2", + value = "helm_leather_ahnqiraj_a_01_huf.m2", + }, + { + fileId = "138234", + text = "helm_leather_ahnqiraj_a_01_hum.m2", + value = "helm_leather_ahnqiraj_a_01_hum.m2", + }, + { + fileId = "138235", + text = "helm_leather_ahnqiraj_a_01_nif.m2", + value = "helm_leather_ahnqiraj_a_01_nif.m2", + }, + { + fileId = "138236", + text = "helm_leather_ahnqiraj_a_01_nim.m2", + value = "helm_leather_ahnqiraj_a_01_nim.m2", + }, + { + fileId = "138237", + text = "helm_leather_ahnqiraj_a_01_orf.m2", + value = "helm_leather_ahnqiraj_a_01_orf.m2", + }, + { + fileId = "138238", + text = "helm_leather_ahnqiraj_a_01_orm.m2", + value = "helm_leather_ahnqiraj_a_01_orm.m2", + }, + { + fileId = "138239", + text = "helm_leather_ahnqiraj_a_01_scf.m2", + value = "helm_leather_ahnqiraj_a_01_scf.m2", + }, + { + fileId = "138240", + text = "helm_leather_ahnqiraj_a_01_scm.m2", + value = "helm_leather_ahnqiraj_a_01_scm.m2", + }, + { + fileId = "138241", + text = "helm_leather_ahnqiraj_a_01_taf.m2", + value = "helm_leather_ahnqiraj_a_01_taf.m2", + }, + { + fileId = "138242", + text = "helm_leather_ahnqiraj_a_01_tam.m2", + value = "helm_leather_ahnqiraj_a_01_tam.m2", + }, + { + fileId = "138243", + text = "helm_leather_ahnqiraj_a_01_trf.m2", + value = "helm_leather_ahnqiraj_a_01_trf.m2", + }, + { + fileId = "138244", + text = "helm_leather_ahnqiraj_a_01_trm.m2", + value = "helm_leather_ahnqiraj_a_01_trm.m2", + }, + { + fileId = "316643", + text = "helm_leather_argentalliance_d_01_bef.m2", + value = "helm_leather_argentalliance_d_01_bef.m2", + }, + { + fileId = "316644", + text = "helm_leather_argentalliance_d_01_bem.m2", + value = "helm_leather_argentalliance_d_01_bem.m2", + }, + { + fileId = "316645", + text = "helm_leather_argentalliance_d_01_drf.m2", + value = "helm_leather_argentalliance_d_01_drf.m2", + }, + { + fileId = "316646", + text = "helm_leather_argentalliance_d_01_drm.m2", + value = "helm_leather_argentalliance_d_01_drm.m2", + }, + { + fileId = "316647", + text = "helm_leather_argentalliance_d_01_dwf.m2", + value = "helm_leather_argentalliance_d_01_dwf.m2", + }, + { + fileId = "316648", + text = "helm_leather_argentalliance_d_01_dwm.m2", + value = "helm_leather_argentalliance_d_01_dwm.m2", + }, + { + fileId = "316649", + text = "helm_leather_argentalliance_d_01_gnf.m2", + value = "helm_leather_argentalliance_d_01_gnf.m2", + }, + { + fileId = "316650", + text = "helm_leather_argentalliance_d_01_gnm.m2", + value = "helm_leather_argentalliance_d_01_gnm.m2", + }, + { + fileId = "316651", + text = "helm_leather_argentalliance_d_01_gof.m2", + value = "helm_leather_argentalliance_d_01_gof.m2", + }, + { + fileId = "316652", + text = "helm_leather_argentalliance_d_01_gom.m2", + value = "helm_leather_argentalliance_d_01_gom.m2", + }, + { + fileId = "316653", + text = "helm_leather_argentalliance_d_01_huf.m2", + value = "helm_leather_argentalliance_d_01_huf.m2", + }, + { + fileId = "316654", + text = "helm_leather_argentalliance_d_01_hum.m2", + value = "helm_leather_argentalliance_d_01_hum.m2", + }, + { + fileId = "316655", + text = "helm_leather_argentalliance_d_01_nif.m2", + value = "helm_leather_argentalliance_d_01_nif.m2", + }, + { + fileId = "316656", + text = "helm_leather_argentalliance_d_01_nim.m2", + value = "helm_leather_argentalliance_d_01_nim.m2", + }, + { + fileId = "316657", + text = "helm_leather_argentalliance_d_01_orf.m2", + value = "helm_leather_argentalliance_d_01_orf.m2", + }, + { + fileId = "316658", + text = "helm_leather_argentalliance_d_01_orm.m2", + value = "helm_leather_argentalliance_d_01_orm.m2", + }, + { + fileId = "316659", + text = "helm_leather_argentalliance_d_01_scf.m2", + value = "helm_leather_argentalliance_d_01_scf.m2", + }, + { + fileId = "316660", + text = "helm_leather_argentalliance_d_01_scm.m2", + value = "helm_leather_argentalliance_d_01_scm.m2", + }, + { + fileId = "316661", + text = "helm_leather_argentalliance_d_01_taf.m2", + value = "helm_leather_argentalliance_d_01_taf.m2", + }, + { + fileId = "316662", + text = "helm_leather_argentalliance_d_01_tam.m2", + value = "helm_leather_argentalliance_d_01_tam.m2", + }, + { + fileId = "316663", + text = "helm_leather_argentalliance_d_01_trf.m2", + value = "helm_leather_argentalliance_d_01_trf.m2", + }, + { + fileId = "316664", + text = "helm_leather_argentalliance_d_01_trm.m2", + value = "helm_leather_argentalliance_d_01_trm.m2", + }, + { + fileId = "312695", + text = "helm_leather_argenthorde_d_01_bef.m2", + value = "helm_leather_argenthorde_d_01_bef.m2", + }, + { + fileId = "312696", + text = "helm_leather_argenthorde_d_01_bem.m2", + value = "helm_leather_argenthorde_d_01_bem.m2", + }, + { + fileId = "312697", + text = "helm_leather_argenthorde_d_01_drf.m2", + value = "helm_leather_argenthorde_d_01_drf.m2", + }, + { + fileId = "312698", + text = "helm_leather_argenthorde_d_01_drm.m2", + value = "helm_leather_argenthorde_d_01_drm.m2", + }, + { + fileId = "312699", + text = "helm_leather_argenthorde_d_01_dwf.m2", + value = "helm_leather_argenthorde_d_01_dwf.m2", + }, + { + fileId = "312700", + text = "helm_leather_argenthorde_d_01_dwm.m2", + value = "helm_leather_argenthorde_d_01_dwm.m2", + }, + { + fileId = "312701", + text = "helm_leather_argenthorde_d_01_gnf.m2", + value = "helm_leather_argenthorde_d_01_gnf.m2", + }, + { + fileId = "312702", + text = "helm_leather_argenthorde_d_01_gnm.m2", + value = "helm_leather_argenthorde_d_01_gnm.m2", + }, + { + fileId = "312703", + text = "helm_leather_argenthorde_d_01_gof.m2", + value = "helm_leather_argenthorde_d_01_gof.m2", + }, + { + fileId = "312704", + text = "helm_leather_argenthorde_d_01_gom.m2", + value = "helm_leather_argenthorde_d_01_gom.m2", + }, + { + fileId = "312705", + text = "helm_leather_argenthorde_d_01_huf.m2", + value = "helm_leather_argenthorde_d_01_huf.m2", + }, + { + fileId = "312706", + text = "helm_leather_argenthorde_d_01_hum.m2", + value = "helm_leather_argenthorde_d_01_hum.m2", + }, + { + fileId = "312707", + text = "helm_leather_argenthorde_d_01_nif.m2", + value = "helm_leather_argenthorde_d_01_nif.m2", + }, + { + fileId = "312708", + text = "helm_leather_argenthorde_d_01_nim.m2", + value = "helm_leather_argenthorde_d_01_nim.m2", + }, + { + fileId = "312709", + text = "helm_leather_argenthorde_d_01_orf.m2", + value = "helm_leather_argenthorde_d_01_orf.m2", + }, + { + fileId = "312710", + text = "helm_leather_argenthorde_d_01_orm.m2", + value = "helm_leather_argenthorde_d_01_orm.m2", + }, + { + fileId = "312711", + text = "helm_leather_argenthorde_d_01_scf.m2", + value = "helm_leather_argenthorde_d_01_scf.m2", + }, + { + fileId = "312712", + text = "helm_leather_argenthorde_d_01_scm.m2", + value = "helm_leather_argenthorde_d_01_scm.m2", + }, + { + fileId = "312713", + text = "helm_leather_argenthorde_d_01_taf.m2", + value = "helm_leather_argenthorde_d_01_taf.m2", + }, + { + fileId = "312714", + text = "helm_leather_argenthorde_d_01_tam.m2", + value = "helm_leather_argenthorde_d_01_tam.m2", + }, + { + fileId = "312715", + text = "helm_leather_argenthorde_d_01_trf.m2", + value = "helm_leather_argenthorde_d_01_trf.m2", + }, + { + fileId = "312716", + text = "helm_leather_argenthorde_d_01_trm.m2", + value = "helm_leather_argenthorde_d_01_trm.m2", + }, + { + fileId = "138248", + text = "helm_leather_b_01_bef.m2", + value = "helm_leather_b_01_bef.m2", + }, + { + fileId = "138249", + text = "helm_leather_b_01_bem.m2", + value = "helm_leather_b_01_bem.m2", + }, + { + fileId = "138250", + text = "helm_leather_b_01_drf.m2", + value = "helm_leather_b_01_drf.m2", + }, + { + fileId = "138251", + text = "helm_leather_b_01_drm.m2", + value = "helm_leather_b_01_drm.m2", + }, + { + fileId = "138252", + text = "helm_leather_b_01_dwf.m2", + value = "helm_leather_b_01_dwf.m2", + }, + { + fileId = "138253", + text = "helm_leather_b_01_dwm.m2", + value = "helm_leather_b_01_dwm.m2", + }, + { + fileId = "138254", + text = "helm_leather_b_01_gnf.m2", + value = "helm_leather_b_01_gnf.m2", + }, + { + fileId = "138255", + text = "helm_leather_b_01_gnm.m2", + value = "helm_leather_b_01_gnm.m2", + }, + { + fileId = "138256", + text = "helm_leather_b_01_gof.m2", + value = "helm_leather_b_01_gof.m2", + }, + { + fileId = "138257", + text = "helm_leather_b_01_gom.m2", + value = "helm_leather_b_01_gom.m2", + }, + { + fileId = "138258", + text = "helm_leather_b_01_huf.m2", + value = "helm_leather_b_01_huf.m2", + }, + { + fileId = "138259", + text = "helm_leather_b_01_hum.m2", + value = "helm_leather_b_01_hum.m2", + }, + { + fileId = "138260", + text = "helm_leather_b_01_nif.m2", + value = "helm_leather_b_01_nif.m2", + }, + { + fileId = "138261", + text = "helm_leather_b_01_nim.m2", + value = "helm_leather_b_01_nim.m2", + }, + { + fileId = "138262", + text = "helm_leather_b_01_orf.m2", + value = "helm_leather_b_01_orf.m2", + }, + { + fileId = "138263", + text = "helm_leather_b_01_orm.m2", + value = "helm_leather_b_01_orm.m2", + }, + { + fileId = "138264", + text = "helm_leather_b_01_scf.m2", + value = "helm_leather_b_01_scf.m2", + }, + { + fileId = "138265", + text = "helm_leather_b_01_scm.m2", + value = "helm_leather_b_01_scm.m2", + }, + { + fileId = "138266", + text = "helm_leather_b_01_taf.m2", + value = "helm_leather_b_01_taf.m2", + }, + { + fileId = "138267", + text = "helm_leather_b_01_tam.m2", + value = "helm_leather_b_01_tam.m2", + }, + { + fileId = "138268", + text = "helm_leather_b_01_trf.m2", + value = "helm_leather_b_01_trf.m2", + }, + { + fileId = "138269", + text = "helm_leather_b_01_trm.m2", + value = "helm_leather_b_01_trm.m2", + }, + { + fileId = "138279", + text = "helm_leather_b_03venture_bef.m2", + value = "helm_leather_b_03venture_bef.m2", + }, + { + fileId = "138280", + text = "helm_leather_b_03venture_bem.m2", + value = "helm_leather_b_03venture_bem.m2", + }, + { + fileId = "138281", + text = "helm_leather_b_03venture_drf.m2", + value = "helm_leather_b_03venture_drf.m2", + }, + { + fileId = "138282", + text = "helm_leather_b_03venture_drm.m2", + value = "helm_leather_b_03venture_drm.m2", + }, + { + fileId = "138283", + text = "helm_leather_b_03venture_dwf.m2", + value = "helm_leather_b_03venture_dwf.m2", + }, + { + fileId = "138284", + text = "helm_leather_b_03venture_dwm.m2", + value = "helm_leather_b_03venture_dwm.m2", + }, + { + fileId = "138286", + text = "helm_leather_b_03venture_gnf.m2", + value = "helm_leather_b_03venture_gnf.m2", + }, + { + fileId = "138287", + text = "helm_leather_b_03venture_gnm.m2", + value = "helm_leather_b_03venture_gnm.m2", + }, + { + fileId = "138288", + text = "helm_leather_b_03venture_gof.m2", + value = "helm_leather_b_03venture_gof.m2", + }, + { + fileId = "138289", + text = "helm_leather_b_03venture_gom.m2", + value = "helm_leather_b_03venture_gom.m2", + }, + { + fileId = "138290", + text = "helm_leather_b_03venture_huf.m2", + value = "helm_leather_b_03venture_huf.m2", + }, + { + fileId = "138291", + text = "helm_leather_b_03venture_hum.m2", + value = "helm_leather_b_03venture_hum.m2", + }, + { + fileId = "138292", + text = "helm_leather_b_03venture_nif.m2", + value = "helm_leather_b_03venture_nif.m2", + }, + { + fileId = "138293", + text = "helm_leather_b_03venture_nim.m2", + value = "helm_leather_b_03venture_nim.m2", + }, + { + fileId = "138294", + text = "helm_leather_b_03venture_orf.m2", + value = "helm_leather_b_03venture_orf.m2", + }, + { + fileId = "138295", + text = "helm_leather_b_03venture_orm.m2", + value = "helm_leather_b_03venture_orm.m2", + }, + { + fileId = "138296", + text = "helm_leather_b_03venture_scf.m2", + value = "helm_leather_b_03venture_scf.m2", + }, + { + fileId = "138297", + text = "helm_leather_b_03venture_scm.m2", + value = "helm_leather_b_03venture_scm.m2", + }, + { + fileId = "138298", + text = "helm_leather_b_03venture_taf.m2", + value = "helm_leather_b_03venture_taf.m2", + }, + { + fileId = "138299", + text = "helm_leather_b_03venture_tam.m2", + value = "helm_leather_b_03venture_tam.m2", + }, + { + fileId = "138300", + text = "helm_leather_b_03venture_trf.m2", + value = "helm_leather_b_03venture_trf.m2", + }, + { + fileId = "138301", + text = "helm_leather_b_03venture_trm.m2", + value = "helm_leather_b_03venture_trm.m2", + }, + { + fileId = "138302", + text = "helm_leather_b_06_bef.m2", + value = "helm_leather_b_06_bef.m2", + }, + { + fileId = "138303", + text = "helm_leather_b_06_bem.m2", + value = "helm_leather_b_06_bem.m2", + }, + { + fileId = "138304", + text = "helm_leather_b_06_drf.m2", + value = "helm_leather_b_06_drf.m2", + }, + { + fileId = "138305", + text = "helm_leather_b_06_drm.m2", + value = "helm_leather_b_06_drm.m2", + }, + { + fileId = "138306", + text = "helm_leather_b_06_dwf.m2", + value = "helm_leather_b_06_dwf.m2", + }, + { + fileId = "138307", + text = "helm_leather_b_06_dwm.m2", + value = "helm_leather_b_06_dwm.m2", + }, + { + fileId = "138308", + text = "helm_leather_b_06_gnf.m2", + value = "helm_leather_b_06_gnf.m2", + }, + { + fileId = "138309", + text = "helm_leather_b_06_gnm.m2", + value = "helm_leather_b_06_gnm.m2", + }, + { + fileId = "138310", + text = "helm_leather_b_06_gof.m2", + value = "helm_leather_b_06_gof.m2", + }, + { + fileId = "138311", + text = "helm_leather_b_06_huf.m2", + value = "helm_leather_b_06_huf.m2", + }, + { + fileId = "138312", + text = "helm_leather_b_06_hum.m2", + value = "helm_leather_b_06_hum.m2", + }, + { + fileId = "138313", + text = "helm_leather_b_06_nif.m2", + value = "helm_leather_b_06_nif.m2", + }, + { + fileId = "138314", + text = "helm_leather_b_06_nim.m2", + value = "helm_leather_b_06_nim.m2", + }, + { + fileId = "138315", + text = "helm_leather_b_06_orf.m2", + value = "helm_leather_b_06_orf.m2", + }, + { + fileId = "138316", + text = "helm_leather_b_06_orm.m2", + value = "helm_leather_b_06_orm.m2", + }, + { + fileId = "138317", + text = "helm_leather_b_06_scf.m2", + value = "helm_leather_b_06_scf.m2", + }, + { + fileId = "138318", + text = "helm_leather_b_06_scm.m2", + value = "helm_leather_b_06_scm.m2", + }, + { + fileId = "138319", + text = "helm_leather_b_06_taf.m2", + value = "helm_leather_b_06_taf.m2", + }, + { + fileId = "138320", + text = "helm_leather_b_06_tam.m2", + value = "helm_leather_b_06_tam.m2", + }, + { + fileId = "138321", + text = "helm_leather_b_06_trf.m2", + value = "helm_leather_b_06_trf.m2", + }, + { + fileId = "138322", + text = "helm_leather_b_06_trm.m2", + value = "helm_leather_b_06_trm.m2", + }, + { + fileId = "138336", + text = "helm_leather_blood_c_02_bef.m2", + value = "helm_leather_blood_c_02_bef.m2", + }, + { + fileId = "138337", + text = "helm_leather_blood_c_02_bem.m2", + value = "helm_leather_blood_c_02_bem.m2", + }, + { + fileId = "138338", + text = "helm_leather_blood_c_02_drf.m2", + value = "helm_leather_blood_c_02_drf.m2", + }, + { + fileId = "138339", + text = "helm_leather_blood_c_02_drm.m2", + value = "helm_leather_blood_c_02_drm.m2", + }, + { + fileId = "138340", + text = "helm_leather_blood_c_02_dwf.m2", + value = "helm_leather_blood_c_02_dwf.m2", + }, + { + fileId = "138341", + text = "helm_leather_blood_c_02_dwm.m2", + value = "helm_leather_blood_c_02_dwm.m2", + }, + { + fileId = "138342", + text = "helm_leather_blood_c_02_gnf.m2", + value = "helm_leather_blood_c_02_gnf.m2", + }, + { + fileId = "138343", + text = "helm_leather_blood_c_02_gnm.m2", + value = "helm_leather_blood_c_02_gnm.m2", + }, + { + fileId = "138344", + text = "helm_leather_blood_c_02_gof.m2", + value = "helm_leather_blood_c_02_gof.m2", + }, + { + fileId = "138345", + text = "helm_leather_blood_c_02_gom.m2", + value = "helm_leather_blood_c_02_gom.m2", + }, + { + fileId = "138346", + text = "helm_leather_blood_c_02_huf.m2", + value = "helm_leather_blood_c_02_huf.m2", + }, + { + fileId = "138347", + text = "helm_leather_blood_c_02_hum.m2", + value = "helm_leather_blood_c_02_hum.m2", + }, + { + fileId = "138348", + text = "helm_leather_blood_c_02_nif.m2", + value = "helm_leather_blood_c_02_nif.m2", + }, + { + fileId = "138349", + text = "helm_leather_blood_c_02_nim.m2", + value = "helm_leather_blood_c_02_nim.m2", + }, + { + fileId = "138350", + text = "helm_leather_blood_c_02_orf.m2", + value = "helm_leather_blood_c_02_orf.m2", + }, + { + fileId = "138351", + text = "helm_leather_blood_c_02_orm.m2", + value = "helm_leather_blood_c_02_orm.m2", + }, + { + fileId = "138352", + text = "helm_leather_blood_c_02_scf.m2", + value = "helm_leather_blood_c_02_scf.m2", + }, + { + fileId = "138353", + text = "helm_leather_blood_c_02_scm.m2", + value = "helm_leather_blood_c_02_scm.m2", + }, + { + fileId = "138354", + text = "helm_leather_blood_c_02_taf.m2", + value = "helm_leather_blood_c_02_taf.m2", + }, + { + fileId = "138355", + text = "helm_leather_blood_c_02_tam.m2", + value = "helm_leather_blood_c_02_tam.m2", + }, + { + fileId = "138356", + text = "helm_leather_blood_c_02_trf.m2", + value = "helm_leather_blood_c_02_trf.m2", + }, + { + fileId = "138357", + text = "helm_leather_blood_c_02_trm.m2", + value = "helm_leather_blood_c_02_trm.m2", + }, + { + fileId = "138358", + text = "helm_leather_d_01_bef.m2", + value = "helm_leather_d_01_bef.m2", + }, + { + fileId = "138359", + text = "helm_leather_d_01_bem.m2", + value = "helm_leather_d_01_bem.m2", + }, + { + fileId = "138360", + text = "helm_leather_d_01_drf.m2", + value = "helm_leather_d_01_drf.m2", + }, + { + fileId = "138361", + text = "helm_leather_d_01_drm.m2", + value = "helm_leather_d_01_drm.m2", + }, + { + fileId = "138362", + text = "helm_leather_d_01_dwf.m2", + value = "helm_leather_d_01_dwf.m2", + }, + { + fileId = "138363", + text = "helm_leather_d_01_dwm.m2", + value = "helm_leather_d_01_dwm.m2", + }, + { + fileId = "138364", + text = "helm_leather_d_01_gnf.m2", + value = "helm_leather_d_01_gnf.m2", + }, + { + fileId = "138365", + text = "helm_leather_d_01_gnm.m2", + value = "helm_leather_d_01_gnm.m2", + }, + { + fileId = "138366", + text = "helm_leather_d_01_gof.m2", + value = "helm_leather_d_01_gof.m2", + }, + { + fileId = "138367", + text = "helm_leather_d_01_gom.m2", + value = "helm_leather_d_01_gom.m2", + }, + { + fileId = "138368", + text = "helm_leather_d_01_huf.m2", + value = "helm_leather_d_01_huf.m2", + }, + { + fileId = "138369", + text = "helm_leather_d_01_hum.m2", + value = "helm_leather_d_01_hum.m2", + }, + { + fileId = "138370", + text = "helm_leather_d_01_nif.m2", + value = "helm_leather_d_01_nif.m2", + }, + { + fileId = "138371", + text = "helm_leather_d_01_nim.m2", + value = "helm_leather_d_01_nim.m2", + }, + { + fileId = "138372", + text = "helm_leather_d_01_orf.m2", + value = "helm_leather_d_01_orf.m2", + }, + { + fileId = "138373", + text = "helm_leather_d_01_orm.m2", + value = "helm_leather_d_01_orm.m2", + }, + { + fileId = "138374", + text = "helm_leather_d_01_scf.m2", + value = "helm_leather_d_01_scf.m2", + }, + { + fileId = "138375", + text = "helm_leather_d_01_scm.m2", + value = "helm_leather_d_01_scm.m2", + }, + { + fileId = "138376", + text = "helm_leather_d_01_taf.m2", + value = "helm_leather_d_01_taf.m2", + }, + { + fileId = "138377", + text = "helm_leather_d_01_tam.m2", + value = "helm_leather_d_01_tam.m2", + }, + { + fileId = "138378", + text = "helm_leather_d_01_trf.m2", + value = "helm_leather_d_01_trf.m2", + }, + { + fileId = "138379", + text = "helm_leather_d_01_trm.m2", + value = "helm_leather_d_01_trm.m2", + }, + { + fileId = "138389", + text = "helm_leather_d_02_bef.m2", + value = "helm_leather_d_02_bef.m2", + }, + { + fileId = "138390", + text = "helm_leather_d_02_bem.m2", + value = "helm_leather_d_02_bem.m2", + }, + { + fileId = "138391", + text = "helm_leather_d_02_drf.m2", + value = "helm_leather_d_02_drf.m2", + }, + { + fileId = "138392", + text = "helm_leather_d_02_drm.m2", + value = "helm_leather_d_02_drm.m2", + }, + { + fileId = "138393", + text = "helm_leather_d_02_dwf.m2", + value = "helm_leather_d_02_dwf.m2", + }, + { + fileId = "138394", + text = "helm_leather_d_02_dwm.m2", + value = "helm_leather_d_02_dwm.m2", + }, + { + fileId = "138395", + text = "helm_leather_d_02_gnf.m2", + value = "helm_leather_d_02_gnf.m2", + }, + { + fileId = "138396", + text = "helm_leather_d_02_gnm.m2", + value = "helm_leather_d_02_gnm.m2", + }, + { + fileId = "138397", + text = "helm_leather_d_02_gof.m2", + value = "helm_leather_d_02_gof.m2", + }, + { + fileId = "138398", + text = "helm_leather_d_02_gom.m2", + value = "helm_leather_d_02_gom.m2", + }, + { + fileId = "138399", + text = "helm_leather_d_02_huf.m2", + value = "helm_leather_d_02_huf.m2", + }, + { + fileId = "138400", + text = "helm_leather_d_02_hum.m2", + value = "helm_leather_d_02_hum.m2", + }, + { + fileId = "138401", + text = "helm_leather_d_02_nif.m2", + value = "helm_leather_d_02_nif.m2", + }, + { + fileId = "138402", + text = "helm_leather_d_02_nim.m2", + value = "helm_leather_d_02_nim.m2", + }, + { + fileId = "138403", + text = "helm_leather_d_02_orf.m2", + value = "helm_leather_d_02_orf.m2", + }, + { + fileId = "138404", + text = "helm_leather_d_02_orm.m2", + value = "helm_leather_d_02_orm.m2", + }, + { + fileId = "138405", + text = "helm_leather_d_02_scf.m2", + value = "helm_leather_d_02_scf.m2", + }, + { + fileId = "138406", + text = "helm_leather_d_02_scm.m2", + value = "helm_leather_d_02_scm.m2", + }, + { + fileId = "138407", + text = "helm_leather_d_02_taf.m2", + value = "helm_leather_d_02_taf.m2", + }, + { + fileId = "138408", + text = "helm_leather_d_02_tam.m2", + value = "helm_leather_d_02_tam.m2", + }, + { + fileId = "138409", + text = "helm_leather_d_02_trf.m2", + value = "helm_leather_d_02_trf.m2", + }, + { + fileId = "138410", + text = "helm_leather_d_02_trm.m2", + value = "helm_leather_d_02_trm.m2", + }, + { + fileId = "138419", + text = "helm_leather_dungeondruid_a_01_bef.m2", + value = "helm_leather_dungeondruid_a_01_bef.m2", + }, + { + fileId = "138420", + text = "helm_leather_dungeondruid_a_01_bem.m2", + value = "helm_leather_dungeondruid_a_01_bem.m2", + }, + { + fileId = "138421", + text = "helm_leather_dungeondruid_a_01_drf.m2", + value = "helm_leather_dungeondruid_a_01_drf.m2", + }, + { + fileId = "138422", + text = "helm_leather_dungeondruid_a_01_drm.m2", + value = "helm_leather_dungeondruid_a_01_drm.m2", + }, + { + fileId = "138423", + text = "helm_leather_dungeondruid_a_01_dwf.m2", + value = "helm_leather_dungeondruid_a_01_dwf.m2", + }, + { + fileId = "138424", + text = "helm_leather_dungeondruid_a_01_dwm.m2", + value = "helm_leather_dungeondruid_a_01_dwm.m2", + }, + { + fileId = "138425", + text = "helm_leather_dungeondruid_a_01_gnf.m2", + value = "helm_leather_dungeondruid_a_01_gnf.m2", + }, + { + fileId = "138426", + text = "helm_leather_dungeondruid_a_01_gnm.m2", + value = "helm_leather_dungeondruid_a_01_gnm.m2", + }, + { + fileId = "138427", + text = "helm_leather_dungeondruid_a_01_gom.m2", + value = "helm_leather_dungeondruid_a_01_gom.m2", + }, + { + fileId = "138428", + text = "helm_leather_dungeondruid_a_01_huf.m2", + value = "helm_leather_dungeondruid_a_01_huf.m2", + }, + { + fileId = "138429", + text = "helm_leather_dungeondruid_a_01_hum.m2", + value = "helm_leather_dungeondruid_a_01_hum.m2", + }, + { + fileId = "138430", + text = "helm_leather_dungeondruid_a_01_nif.m2", + value = "helm_leather_dungeondruid_a_01_nif.m2", + }, + { + fileId = "138431", + text = "helm_leather_dungeondruid_a_01_nim.m2", + value = "helm_leather_dungeondruid_a_01_nim.m2", + }, + { + fileId = "138432", + text = "helm_leather_dungeondruid_a_01_orf.m2", + value = "helm_leather_dungeondruid_a_01_orf.m2", + }, + { + fileId = "138433", + text = "helm_leather_dungeondruid_a_01_orm.m2", + value = "helm_leather_dungeondruid_a_01_orm.m2", + }, + { + fileId = "138435", + text = "helm_leather_dungeondruid_a_01_scf.m2", + value = "helm_leather_dungeondruid_a_01_scf.m2", + }, + { + fileId = "138436", + text = "helm_leather_dungeondruid_a_01_scm.m2", + value = "helm_leather_dungeondruid_a_01_scm.m2", + }, + { + fileId = "138437", + text = "helm_leather_dungeondruid_a_01_taf.m2", + value = "helm_leather_dungeondruid_a_01_taf.m2", + }, + { + fileId = "138438", + text = "helm_leather_dungeondruid_a_01_tam.m2", + value = "helm_leather_dungeondruid_a_01_tam.m2", + }, + { + fileId = "138439", + text = "helm_leather_dungeondruid_a_01_trf.m2", + value = "helm_leather_dungeondruid_a_01_trf.m2", + }, + { + fileId = "138440", + text = "helm_leather_dungeondruid_a_01_trm.m2", + value = "helm_leather_dungeondruid_a_01_trm.m2", + }, + { + fileId = "138445", + text = "helm_leather_dungeondruid_b_01_bef.m2", + value = "helm_leather_dungeondruid_b_01_bef.m2", + }, + { + fileId = "138446", + text = "helm_leather_dungeondruid_b_01_bem.m2", + value = "helm_leather_dungeondruid_b_01_bem.m2", + }, + { + fileId = "138447", + text = "helm_leather_dungeondruid_b_01_drf.m2", + value = "helm_leather_dungeondruid_b_01_drf.m2", + }, + { + fileId = "138448", + text = "helm_leather_dungeondruid_b_01_drm.m2", + value = "helm_leather_dungeondruid_b_01_drm.m2", + }, + { + fileId = "138449", + text = "helm_leather_dungeondruid_b_01_dwf.m2", + value = "helm_leather_dungeondruid_b_01_dwf.m2", + }, + { + fileId = "138450", + text = "helm_leather_dungeondruid_b_01_dwm.m2", + value = "helm_leather_dungeondruid_b_01_dwm.m2", + }, + { + fileId = "138451", + text = "helm_leather_dungeondruid_b_01_gnf.m2", + value = "helm_leather_dungeondruid_b_01_gnf.m2", + }, + { + fileId = "138452", + text = "helm_leather_dungeondruid_b_01_gnm.m2", + value = "helm_leather_dungeondruid_b_01_gnm.m2", + }, + { + fileId = "138453", + text = "helm_leather_dungeondruid_b_01_gof.m2", + value = "helm_leather_dungeondruid_b_01_gof.m2", + }, + { + fileId = "138454", + text = "helm_leather_dungeondruid_b_01_gom.m2", + value = "helm_leather_dungeondruid_b_01_gom.m2", + }, + { + fileId = "138455", + text = "helm_leather_dungeondruid_b_01_huf.m2", + value = "helm_leather_dungeondruid_b_01_huf.m2", + }, + { + fileId = "138456", + text = "helm_leather_dungeondruid_b_01_hum.m2", + value = "helm_leather_dungeondruid_b_01_hum.m2", + }, + { + fileId = "138457", + text = "helm_leather_dungeondruid_b_01_nif.m2", + value = "helm_leather_dungeondruid_b_01_nif.m2", + }, + { + fileId = "138458", + text = "helm_leather_dungeondruid_b_01_nim.m2", + value = "helm_leather_dungeondruid_b_01_nim.m2", + }, + { + fileId = "138459", + text = "helm_leather_dungeondruid_b_01_orf.m2", + value = "helm_leather_dungeondruid_b_01_orf.m2", + }, + { + fileId = "138460", + text = "helm_leather_dungeondruid_b_01_orm.m2", + value = "helm_leather_dungeondruid_b_01_orm.m2", + }, + { + fileId = "138461", + text = "helm_leather_dungeondruid_b_01_scf.m2", + value = "helm_leather_dungeondruid_b_01_scf.m2", + }, + { + fileId = "138462", + text = "helm_leather_dungeondruid_b_01_scm.m2", + value = "helm_leather_dungeondruid_b_01_scm.m2", + }, + { + fileId = "138463", + text = "helm_leather_dungeondruid_b_01_taf.m2", + value = "helm_leather_dungeondruid_b_01_taf.m2", + }, + { + fileId = "138464", + text = "helm_leather_dungeondruid_b_01_tam.m2", + value = "helm_leather_dungeondruid_b_01_tam.m2", + }, + { + fileId = "138465", + text = "helm_leather_dungeondruid_b_01_trf.m2", + value = "helm_leather_dungeondruid_b_01_trf.m2", + }, + { + fileId = "138466", + text = "helm_leather_dungeondruid_b_01_trm.m2", + value = "helm_leather_dungeondruid_b_01_trm.m2", + }, + { + fileId = "237858", + text = "helm_leather_dungeonleather_c_01_bef.m2", + value = "helm_leather_dungeonleather_c_01_bef.m2", + }, + { + fileId = "237859", + text = "helm_leather_dungeonleather_c_01_bem.m2", + value = "helm_leather_dungeonleather_c_01_bem.m2", + }, + { + fileId = "237860", + text = "helm_leather_dungeonleather_c_01_drf.m2", + value = "helm_leather_dungeonleather_c_01_drf.m2", + }, + { + fileId = "237861", + text = "helm_leather_dungeonleather_c_01_drm.m2", + value = "helm_leather_dungeonleather_c_01_drm.m2", + }, + { + fileId = "237862", + text = "helm_leather_dungeonleather_c_01_dwf.m2", + value = "helm_leather_dungeonleather_c_01_dwf.m2", + }, + { + fileId = "237863", + text = "helm_leather_dungeonleather_c_01_dwm.m2", + value = "helm_leather_dungeonleather_c_01_dwm.m2", + }, + { + fileId = "237864", + text = "helm_leather_dungeonleather_c_01_gnf.m2", + value = "helm_leather_dungeonleather_c_01_gnf.m2", + }, + { + fileId = "237865", + text = "helm_leather_dungeonleather_c_01_gnm.m2", + value = "helm_leather_dungeonleather_c_01_gnm.m2", + }, + { + fileId = "237866", + text = "helm_leather_dungeonleather_c_01_gof.m2", + value = "helm_leather_dungeonleather_c_01_gof.m2", + }, + { + fileId = "237867", + text = "helm_leather_dungeonleather_c_01_gom.m2", + value = "helm_leather_dungeonleather_c_01_gom.m2", + }, + { + fileId = "237868", + text = "helm_leather_dungeonleather_c_01_huf.m2", + value = "helm_leather_dungeonleather_c_01_huf.m2", + }, + { + fileId = "237869", + text = "helm_leather_dungeonleather_c_01_hum.m2", + value = "helm_leather_dungeonleather_c_01_hum.m2", + }, + { + fileId = "237870", + text = "helm_leather_dungeonleather_c_01_nif.m2", + value = "helm_leather_dungeonleather_c_01_nif.m2", + }, + { + fileId = "237871", + text = "helm_leather_dungeonleather_c_01_nim.m2", + value = "helm_leather_dungeonleather_c_01_nim.m2", + }, + { + fileId = "237872", + text = "helm_leather_dungeonleather_c_01_orf.m2", + value = "helm_leather_dungeonleather_c_01_orf.m2", + }, + { + fileId = "237873", + text = "helm_leather_dungeonleather_c_01_orm.m2", + value = "helm_leather_dungeonleather_c_01_orm.m2", + }, + { + fileId = "237874", + text = "helm_leather_dungeonleather_c_01_scf.m2", + value = "helm_leather_dungeonleather_c_01_scf.m2", + }, + { + fileId = "237875", + text = "helm_leather_dungeonleather_c_01_scm.m2", + value = "helm_leather_dungeonleather_c_01_scm.m2", + }, + { + fileId = "237876", + text = "helm_leather_dungeonleather_c_01_taf.m2", + value = "helm_leather_dungeonleather_c_01_taf.m2", + }, + { + fileId = "237877", + text = "helm_leather_dungeonleather_c_01_tam.m2", + value = "helm_leather_dungeonleather_c_01_tam.m2", + }, + { + fileId = "237878", + text = "helm_leather_dungeonleather_c_01_trf.m2", + value = "helm_leather_dungeonleather_c_01_trf.m2", + }, + { + fileId = "237879", + text = "helm_leather_dungeonleather_c_01_trm.m2", + value = "helm_leather_dungeonleather_c_01_trm.m2", + }, + { + fileId = "340349", + text = "helm_leather_dungeonleather_c_02_bef.m2", + value = "helm_leather_dungeonleather_c_02_bef.m2", + }, + { + fileId = "340350", + text = "helm_leather_dungeonleather_c_02_bem.m2", + value = "helm_leather_dungeonleather_c_02_bem.m2", + }, + { + fileId = "340351", + text = "helm_leather_dungeonleather_c_02_drf.m2", + value = "helm_leather_dungeonleather_c_02_drf.m2", + }, + { + fileId = "340352", + text = "helm_leather_dungeonleather_c_02_drm.m2", + value = "helm_leather_dungeonleather_c_02_drm.m2", + }, + { + fileId = "340353", + text = "helm_leather_dungeonleather_c_02_dwf.m2", + value = "helm_leather_dungeonleather_c_02_dwf.m2", + }, + { + fileId = "340354", + text = "helm_leather_dungeonleather_c_02_dwm.m2", + value = "helm_leather_dungeonleather_c_02_dwm.m2", + }, + { + fileId = "340355", + text = "helm_leather_dungeonleather_c_02_gnf.m2", + value = "helm_leather_dungeonleather_c_02_gnf.m2", + }, + { + fileId = "340356", + text = "helm_leather_dungeonleather_c_02_gnm.m2", + value = "helm_leather_dungeonleather_c_02_gnm.m2", + }, + { + fileId = "340357", + text = "helm_leather_dungeonleather_c_02_gof.m2", + value = "helm_leather_dungeonleather_c_02_gof.m2", + }, + { + fileId = "340358", + text = "helm_leather_dungeonleather_c_02_gom.m2", + value = "helm_leather_dungeonleather_c_02_gom.m2", + }, + { + fileId = "340359", + text = "helm_leather_dungeonleather_c_02_huf.m2", + value = "helm_leather_dungeonleather_c_02_huf.m2", + }, + { + fileId = "340360", + text = "helm_leather_dungeonleather_c_02_hum.m2", + value = "helm_leather_dungeonleather_c_02_hum.m2", + }, + { + fileId = "340361", + text = "helm_leather_dungeonleather_c_02_nif.m2", + value = "helm_leather_dungeonleather_c_02_nif.m2", + }, + { + fileId = "340362", + text = "helm_leather_dungeonleather_c_02_nim.m2", + value = "helm_leather_dungeonleather_c_02_nim.m2", + }, + { + fileId = "340363", + text = "helm_leather_dungeonleather_c_02_orf.m2", + value = "helm_leather_dungeonleather_c_02_orf.m2", + }, + { + fileId = "340364", + text = "helm_leather_dungeonleather_c_02_orm.m2", + value = "helm_leather_dungeonleather_c_02_orm.m2", + }, + { + fileId = "340365", + text = "helm_leather_dungeonleather_c_02_scf.m2", + value = "helm_leather_dungeonleather_c_02_scf.m2", + }, + { + fileId = "340366", + text = "helm_leather_dungeonleather_c_02_scm.m2", + value = "helm_leather_dungeonleather_c_02_scm.m2", + }, + { + fileId = "340367", + text = "helm_leather_dungeonleather_c_02_taf.m2", + value = "helm_leather_dungeonleather_c_02_taf.m2", + }, + { + fileId = "340368", + text = "helm_leather_dungeonleather_c_02_tam.m2", + value = "helm_leather_dungeonleather_c_02_tam.m2", + }, + { + fileId = "340369", + text = "helm_leather_dungeonleather_c_02_trf.m2", + value = "helm_leather_dungeonleather_c_02_trf.m2", + }, + { + fileId = "340370", + text = "helm_leather_dungeonleather_c_02_trm.m2", + value = "helm_leather_dungeonleather_c_02_trm.m2", + }, + { + fileId = "138471", + text = "helm_leather_dungeonrogue_b_01_bef.m2", + value = "helm_leather_dungeonrogue_b_01_bef.m2", + }, + { + fileId = "138472", + text = "helm_leather_dungeonrogue_b_01_bem.m2", + value = "helm_leather_dungeonrogue_b_01_bem.m2", + }, + { + fileId = "138473", + text = "helm_leather_dungeonrogue_b_01_drf.m2", + value = "helm_leather_dungeonrogue_b_01_drf.m2", + }, + { + fileId = "138474", + text = "helm_leather_dungeonrogue_b_01_drm.m2", + value = "helm_leather_dungeonrogue_b_01_drm.m2", + }, + { + fileId = "138475", + text = "helm_leather_dungeonrogue_b_01_dwf.m2", + value = "helm_leather_dungeonrogue_b_01_dwf.m2", + }, + { + fileId = "138476", + text = "helm_leather_dungeonrogue_b_01_dwm.m2", + value = "helm_leather_dungeonrogue_b_01_dwm.m2", + }, + { + fileId = "138477", + text = "helm_leather_dungeonrogue_b_01_gnf.m2", + value = "helm_leather_dungeonrogue_b_01_gnf.m2", + }, + { + fileId = "138478", + text = "helm_leather_dungeonrogue_b_01_gnm.m2", + value = "helm_leather_dungeonrogue_b_01_gnm.m2", + }, + { + fileId = "138479", + text = "helm_leather_dungeonrogue_b_01_gof.m2", + value = "helm_leather_dungeonrogue_b_01_gof.m2", + }, + { + fileId = "138480", + text = "helm_leather_dungeonrogue_b_01_gom.m2", + value = "helm_leather_dungeonrogue_b_01_gom.m2", + }, + { + fileId = "138481", + text = "helm_leather_dungeonrogue_b_01_huf.m2", + value = "helm_leather_dungeonrogue_b_01_huf.m2", + }, + { + fileId = "138482", + text = "helm_leather_dungeonrogue_b_01_hum.m2", + value = "helm_leather_dungeonrogue_b_01_hum.m2", + }, + { + fileId = "138483", + text = "helm_leather_dungeonrogue_b_01_nif.m2", + value = "helm_leather_dungeonrogue_b_01_nif.m2", + }, + { + fileId = "138484", + text = "helm_leather_dungeonrogue_b_01_nim.m2", + value = "helm_leather_dungeonrogue_b_01_nim.m2", + }, + { + fileId = "138485", + text = "helm_leather_dungeonrogue_b_01_orf.m2", + value = "helm_leather_dungeonrogue_b_01_orf.m2", + }, + { + fileId = "138486", + text = "helm_leather_dungeonrogue_b_01_orm.m2", + value = "helm_leather_dungeonrogue_b_01_orm.m2", + }, + { + fileId = "138487", + text = "helm_leather_dungeonrogue_b_01_scf.m2", + value = "helm_leather_dungeonrogue_b_01_scf.m2", + }, + { + fileId = "138488", + text = "helm_leather_dungeonrogue_b_01_scm.m2", + value = "helm_leather_dungeonrogue_b_01_scm.m2", + }, + { + fileId = "138489", + text = "helm_leather_dungeonrogue_b_01_taf.m2", + value = "helm_leather_dungeonrogue_b_01_taf.m2", + }, + { + fileId = "138490", + text = "helm_leather_dungeonrogue_b_01_tam.m2", + value = "helm_leather_dungeonrogue_b_01_tam.m2", + }, + { + fileId = "138491", + text = "helm_leather_dungeonrogue_b_01_trf.m2", + value = "helm_leather_dungeonrogue_b_01_trf.m2", + }, + { + fileId = "138492", + text = "helm_leather_dungeonrogue_b_01_trm.m2", + value = "helm_leather_dungeonrogue_b_01_trm.m2", + }, + { + fileId = "138498", + text = "helm_leather_northrend_b_01_bef.m2", + value = "helm_leather_northrend_b_01_bef.m2", + }, + { + fileId = "138499", + text = "helm_leather_northrend_b_01_bem.m2", + value = "helm_leather_northrend_b_01_bem.m2", + }, + { + fileId = "138500", + text = "helm_leather_northrend_b_01_drf.m2", + value = "helm_leather_northrend_b_01_drf.m2", + }, + { + fileId = "138501", + text = "helm_leather_northrend_b_01_drm.m2", + value = "helm_leather_northrend_b_01_drm.m2", + }, + { + fileId = "138502", + text = "helm_leather_northrend_b_01_dwf.m2", + value = "helm_leather_northrend_b_01_dwf.m2", + }, + { + fileId = "138503", + text = "helm_leather_northrend_b_01_dwm.m2", + value = "helm_leather_northrend_b_01_dwm.m2", + }, + { + fileId = "138504", + text = "helm_leather_northrend_b_01_gnf.m2", + value = "helm_leather_northrend_b_01_gnf.m2", + }, + { + fileId = "138505", + text = "helm_leather_northrend_b_01_gnm.m2", + value = "helm_leather_northrend_b_01_gnm.m2", + }, + { + fileId = "138506", + text = "helm_leather_northrend_b_01_gof.m2", + value = "helm_leather_northrend_b_01_gof.m2", + }, + { + fileId = "138507", + text = "helm_leather_northrend_b_01_gom.m2", + value = "helm_leather_northrend_b_01_gom.m2", + }, + { + fileId = "138508", + text = "helm_leather_northrend_b_01_huf.m2", + value = "helm_leather_northrend_b_01_huf.m2", + }, + { + fileId = "138509", + text = "helm_leather_northrend_b_01_hum.m2", + value = "helm_leather_northrend_b_01_hum.m2", + }, + { + fileId = "138510", + text = "helm_leather_northrend_b_01_nif.m2", + value = "helm_leather_northrend_b_01_nif.m2", + }, + { + fileId = "138511", + text = "helm_leather_northrend_b_01_nim.m2", + value = "helm_leather_northrend_b_01_nim.m2", + }, + { + fileId = "138512", + text = "helm_leather_northrend_b_01_orf.m2", + value = "helm_leather_northrend_b_01_orf.m2", + }, + { + fileId = "138513", + text = "helm_leather_northrend_b_01_orm.m2", + value = "helm_leather_northrend_b_01_orm.m2", + }, + { + fileId = "138514", + text = "helm_leather_northrend_b_01_scf.m2", + value = "helm_leather_northrend_b_01_scf.m2", + }, + { + fileId = "138515", + text = "helm_leather_northrend_b_01_scm.m2", + value = "helm_leather_northrend_b_01_scm.m2", + }, + { + fileId = "138516", + text = "helm_leather_northrend_b_01_taf.m2", + value = "helm_leather_northrend_b_01_taf.m2", + }, + { + fileId = "138517", + text = "helm_leather_northrend_b_01_tam.m2", + value = "helm_leather_northrend_b_01_tam.m2", + }, + { + fileId = "138518", + text = "helm_leather_northrend_b_01_trf.m2", + value = "helm_leather_northrend_b_01_trf.m2", + }, + { + fileId = "138519", + text = "helm_leather_northrend_b_01_trm.m2", + value = "helm_leather_northrend_b_01_trm.m2", + }, + { + fileId = "138524", + text = "helm_leather_northrend_b_02_bef.m2", + value = "helm_leather_northrend_b_02_bef.m2", + }, + { + fileId = "138525", + text = "helm_leather_northrend_b_02_bem.m2", + value = "helm_leather_northrend_b_02_bem.m2", + }, + { + fileId = "138526", + text = "helm_leather_northrend_b_02_drf.m2", + value = "helm_leather_northrend_b_02_drf.m2", + }, + { + fileId = "138527", + text = "helm_leather_northrend_b_02_drm.m2", + value = "helm_leather_northrend_b_02_drm.m2", + }, + { + fileId = "138528", + text = "helm_leather_northrend_b_02_dwf.m2", + value = "helm_leather_northrend_b_02_dwf.m2", + }, + { + fileId = "138529", + text = "helm_leather_northrend_b_02_dwm.m2", + value = "helm_leather_northrend_b_02_dwm.m2", + }, + { + fileId = "138530", + text = "helm_leather_northrend_b_02_gnf.m2", + value = "helm_leather_northrend_b_02_gnf.m2", + }, + { + fileId = "138531", + text = "helm_leather_northrend_b_02_gnm.m2", + value = "helm_leather_northrend_b_02_gnm.m2", + }, + { + fileId = "138532", + text = "helm_leather_northrend_b_02_huf.m2", + value = "helm_leather_northrend_b_02_huf.m2", + }, + { + fileId = "138533", + text = "helm_leather_northrend_b_02_hum.m2", + value = "helm_leather_northrend_b_02_hum.m2", + }, + { + fileId = "138534", + text = "helm_leather_northrend_b_02_nif.m2", + value = "helm_leather_northrend_b_02_nif.m2", + }, + { + fileId = "138535", + text = "helm_leather_northrend_b_02_nim.m2", + value = "helm_leather_northrend_b_02_nim.m2", + }, + { + fileId = "138536", + text = "helm_leather_northrend_b_02_orf.m2", + value = "helm_leather_northrend_b_02_orf.m2", + }, + { + fileId = "138537", + text = "helm_leather_northrend_b_02_orm.m2", + value = "helm_leather_northrend_b_02_orm.m2", + }, + { + fileId = "138538", + text = "helm_leather_northrend_b_02_scf.m2", + value = "helm_leather_northrend_b_02_scf.m2", + }, + { + fileId = "138539", + text = "helm_leather_northrend_b_02_scm.m2", + value = "helm_leather_northrend_b_02_scm.m2", + }, + { + fileId = "138540", + text = "helm_leather_northrend_b_02_taf.m2", + value = "helm_leather_northrend_b_02_taf.m2", + }, + { + fileId = "138541", + text = "helm_leather_northrend_b_02_tam.m2", + value = "helm_leather_northrend_b_02_tam.m2", + }, + { + fileId = "138542", + text = "helm_leather_northrend_b_02_trf.m2", + value = "helm_leather_northrend_b_02_trf.m2", + }, + { + fileId = "138543", + text = "helm_leather_northrend_b_02_trm.m2", + value = "helm_leather_northrend_b_02_trm.m2", + }, + { + fileId = "138545", + text = "helm_leather_northrend_b_03_bef.m2", + value = "helm_leather_northrend_b_03_bef.m2", + }, + { + fileId = "138546", + text = "helm_leather_northrend_b_03_bem.m2", + value = "helm_leather_northrend_b_03_bem.m2", + }, + { + fileId = "138547", + text = "helm_leather_northrend_b_03_drf.m2", + value = "helm_leather_northrend_b_03_drf.m2", + }, + { + fileId = "138548", + text = "helm_leather_northrend_b_03_drm.m2", + value = "helm_leather_northrend_b_03_drm.m2", + }, + { + fileId = "138549", + text = "helm_leather_northrend_b_03_dwf.m2", + value = "helm_leather_northrend_b_03_dwf.m2", + }, + { + fileId = "138550", + text = "helm_leather_northrend_b_03_dwm.m2", + value = "helm_leather_northrend_b_03_dwm.m2", + }, + { + fileId = "138551", + text = "helm_leather_northrend_b_03_gnf.m2", + value = "helm_leather_northrend_b_03_gnf.m2", + }, + { + fileId = "138552", + text = "helm_leather_northrend_b_03_gnm.m2", + value = "helm_leather_northrend_b_03_gnm.m2", + }, + { + fileId = "138553", + text = "helm_leather_northrend_b_03_huf.m2", + value = "helm_leather_northrend_b_03_huf.m2", + }, + { + fileId = "138554", + text = "helm_leather_northrend_b_03_hum.m2", + value = "helm_leather_northrend_b_03_hum.m2", + }, + { + fileId = "138555", + text = "helm_leather_northrend_b_03_nif.m2", + value = "helm_leather_northrend_b_03_nif.m2", + }, + { + fileId = "138556", + text = "helm_leather_northrend_b_03_nim.m2", + value = "helm_leather_northrend_b_03_nim.m2", + }, + { + fileId = "138557", + text = "helm_leather_northrend_b_03_orf.m2", + value = "helm_leather_northrend_b_03_orf.m2", + }, + { + fileId = "138558", + text = "helm_leather_northrend_b_03_orm.m2", + value = "helm_leather_northrend_b_03_orm.m2", + }, + { + fileId = "138559", + text = "helm_leather_northrend_b_03_scf.m2", + value = "helm_leather_northrend_b_03_scf.m2", + }, + { + fileId = "138560", + text = "helm_leather_northrend_b_03_scm.m2", + value = "helm_leather_northrend_b_03_scm.m2", + }, + { + fileId = "138561", + text = "helm_leather_northrend_b_03_taf.m2", + value = "helm_leather_northrend_b_03_taf.m2", + }, + { + fileId = "138562", + text = "helm_leather_northrend_b_03_tam.m2", + value = "helm_leather_northrend_b_03_tam.m2", + }, + { + fileId = "138563", + text = "helm_leather_northrend_b_03_trf.m2", + value = "helm_leather_northrend_b_03_trf.m2", + }, + { + fileId = "138564", + text = "helm_leather_northrend_b_03_trm.m2", + value = "helm_leather_northrend_b_03_trm.m2", + }, + { + fileId = "138568", + text = "helm_leather_northrend_c_02_bef.m2", + value = "helm_leather_northrend_c_02_bef.m2", + }, + { + fileId = "138569", + text = "helm_leather_northrend_c_02_bem.m2", + value = "helm_leather_northrend_c_02_bem.m2", + }, + { + fileId = "138570", + text = "helm_leather_northrend_c_02_drf.m2", + value = "helm_leather_northrend_c_02_drf.m2", + }, + { + fileId = "138571", + text = "helm_leather_northrend_c_02_drm.m2", + value = "helm_leather_northrend_c_02_drm.m2", + }, + { + fileId = "138572", + text = "helm_leather_northrend_c_02_dwf.m2", + value = "helm_leather_northrend_c_02_dwf.m2", + }, + { + fileId = "138573", + text = "helm_leather_northrend_c_02_dwm.m2", + value = "helm_leather_northrend_c_02_dwm.m2", + }, + { + fileId = "138574", + text = "helm_leather_northrend_c_02_gnf.m2", + value = "helm_leather_northrend_c_02_gnf.m2", + }, + { + fileId = "138575", + text = "helm_leather_northrend_c_02_gnm.m2", + value = "helm_leather_northrend_c_02_gnm.m2", + }, + { + fileId = "138576", + text = "helm_leather_northrend_c_02_gof.m2", + value = "helm_leather_northrend_c_02_gof.m2", + }, + { + fileId = "138577", + text = "helm_leather_northrend_c_02_gom.m2", + value = "helm_leather_northrend_c_02_gom.m2", + }, + { + fileId = "138578", + text = "helm_leather_northrend_c_02_huf.m2", + value = "helm_leather_northrend_c_02_huf.m2", + }, + { + fileId = "138579", + text = "helm_leather_northrend_c_02_hum.m2", + value = "helm_leather_northrend_c_02_hum.m2", + }, + { + fileId = "138580", + text = "helm_leather_northrend_c_02_nif.m2", + value = "helm_leather_northrend_c_02_nif.m2", + }, + { + fileId = "138581", + text = "helm_leather_northrend_c_02_nim.m2", + value = "helm_leather_northrend_c_02_nim.m2", + }, + { + fileId = "138582", + text = "helm_leather_northrend_c_02_orf.m2", + value = "helm_leather_northrend_c_02_orf.m2", + }, + { + fileId = "138583", + text = "helm_leather_northrend_c_02_orm.m2", + value = "helm_leather_northrend_c_02_orm.m2", + }, + { + fileId = "138584", + text = "helm_leather_northrend_c_02_scf.m2", + value = "helm_leather_northrend_c_02_scf.m2", + }, + { + fileId = "138585", + text = "helm_leather_northrend_c_02_scm.m2", + value = "helm_leather_northrend_c_02_scm.m2", + }, + { + fileId = "138586", + text = "helm_leather_northrend_c_02_taf.m2", + value = "helm_leather_northrend_c_02_taf.m2", + }, + { + fileId = "138587", + text = "helm_leather_northrend_c_02_tam.m2", + value = "helm_leather_northrend_c_02_tam.m2", + }, + { + fileId = "138588", + text = "helm_leather_northrend_c_02_trf.m2", + value = "helm_leather_northrend_c_02_trf.m2", + }, + { + fileId = "138589", + text = "helm_leather_northrend_c_02_trm.m2", + value = "helm_leather_northrend_c_02_trm.m2", + }, + { + fileId = "138595", + text = "helm_leather_northrend_d_01_bef.m2", + value = "helm_leather_northrend_d_01_bef.m2", + }, + { + fileId = "138596", + text = "helm_leather_northrend_d_01_bem.m2", + value = "helm_leather_northrend_d_01_bem.m2", + }, + { + fileId = "138597", + text = "helm_leather_northrend_d_01_drf.m2", + value = "helm_leather_northrend_d_01_drf.m2", + }, + { + fileId = "138598", + text = "helm_leather_northrend_d_01_drm.m2", + value = "helm_leather_northrend_d_01_drm.m2", + }, + { + fileId = "138599", + text = "helm_leather_northrend_d_01_dwf.m2", + value = "helm_leather_northrend_d_01_dwf.m2", + }, + { + fileId = "138600", + text = "helm_leather_northrend_d_01_dwm.m2", + value = "helm_leather_northrend_d_01_dwm.m2", + }, + { + fileId = "138601", + text = "helm_leather_northrend_d_01_gnf.m2", + value = "helm_leather_northrend_d_01_gnf.m2", + }, + { + fileId = "138602", + text = "helm_leather_northrend_d_01_gnm.m2", + value = "helm_leather_northrend_d_01_gnm.m2", + }, + { + fileId = "138603", + text = "helm_leather_northrend_d_01_huf.m2", + value = "helm_leather_northrend_d_01_huf.m2", + }, + { + fileId = "138604", + text = "helm_leather_northrend_d_01_hum.m2", + value = "helm_leather_northrend_d_01_hum.m2", + }, + { + fileId = "138605", + text = "helm_leather_northrend_d_01_nif.m2", + value = "helm_leather_northrend_d_01_nif.m2", + }, + { + fileId = "138606", + text = "helm_leather_northrend_d_01_nim.m2", + value = "helm_leather_northrend_d_01_nim.m2", + }, + { + fileId = "138607", + text = "helm_leather_northrend_d_01_orf.m2", + value = "helm_leather_northrend_d_01_orf.m2", + }, + { + fileId = "138608", + text = "helm_leather_northrend_d_01_orm.m2", + value = "helm_leather_northrend_d_01_orm.m2", + }, + { + fileId = "138609", + text = "helm_leather_northrend_d_01_scf.m2", + value = "helm_leather_northrend_d_01_scf.m2", + }, + { + fileId = "138610", + text = "helm_leather_northrend_d_01_scm.m2", + value = "helm_leather_northrend_d_01_scm.m2", + }, + { + fileId = "138611", + text = "helm_leather_northrend_d_01_taf.m2", + value = "helm_leather_northrend_d_01_taf.m2", + }, + { + fileId = "138612", + text = "helm_leather_northrend_d_01_tam.m2", + value = "helm_leather_northrend_d_01_tam.m2", + }, + { + fileId = "138613", + text = "helm_leather_northrend_d_01_trf.m2", + value = "helm_leather_northrend_d_01_trf.m2", + }, + { + fileId = "138614", + text = "helm_leather_northrend_d_01_trm.m2", + value = "helm_leather_northrend_d_01_trm.m2", + }, + { + fileId = "138618", + text = "helm_leather_pvpalliance_a_01_bef.m2", + value = "helm_leather_pvpalliance_a_01_bef.m2", + }, + { + fileId = "138619", + text = "helm_leather_pvpalliance_a_01_bem.m2", + value = "helm_leather_pvpalliance_a_01_bem.m2", + }, + { + fileId = "138620", + text = "helm_leather_pvpalliance_a_01_drf.m2", + value = "helm_leather_pvpalliance_a_01_drf.m2", + }, + { + fileId = "138621", + text = "helm_leather_pvpalliance_a_01_drm.m2", + value = "helm_leather_pvpalliance_a_01_drm.m2", + }, + { + fileId = "138622", + text = "helm_leather_pvpalliance_a_01_dwf.m2", + value = "helm_leather_pvpalliance_a_01_dwf.m2", + }, + { + fileId = "138623", + text = "helm_leather_pvpalliance_a_01_dwm.m2", + value = "helm_leather_pvpalliance_a_01_dwm.m2", + }, + { + fileId = "138624", + text = "helm_leather_pvpalliance_a_01_gnf.m2", + value = "helm_leather_pvpalliance_a_01_gnf.m2", + }, + { + fileId = "138625", + text = "helm_leather_pvpalliance_a_01_gnm.m2", + value = "helm_leather_pvpalliance_a_01_gnm.m2", + }, + { + fileId = "138626", + text = "helm_leather_pvpalliance_a_01_gof.m2", + value = "helm_leather_pvpalliance_a_01_gof.m2", + }, + { + fileId = "138627", + text = "helm_leather_pvpalliance_a_01_gom.m2", + value = "helm_leather_pvpalliance_a_01_gom.m2", + }, + { + fileId = "138628", + text = "helm_leather_pvpalliance_a_01_huf.m2", + value = "helm_leather_pvpalliance_a_01_huf.m2", + }, + { + fileId = "138629", + text = "helm_leather_pvpalliance_a_01_hum.m2", + value = "helm_leather_pvpalliance_a_01_hum.m2", + }, + { + fileId = "138630", + text = "helm_leather_pvpalliance_a_01_nif.m2", + value = "helm_leather_pvpalliance_a_01_nif.m2", + }, + { + fileId = "138631", + text = "helm_leather_pvpalliance_a_01_nim.m2", + value = "helm_leather_pvpalliance_a_01_nim.m2", + }, + { + fileId = "138632", + text = "helm_leather_pvpalliance_a_01_orf.m2", + value = "helm_leather_pvpalliance_a_01_orf.m2", + }, + { + fileId = "138633", + text = "helm_leather_pvpalliance_a_01_orm.m2", + value = "helm_leather_pvpalliance_a_01_orm.m2", + }, + { + fileId = "138634", + text = "helm_leather_pvpalliance_a_01_scf.m2", + value = "helm_leather_pvpalliance_a_01_scf.m2", + }, + { + fileId = "138635", + text = "helm_leather_pvpalliance_a_01_scm.m2", + value = "helm_leather_pvpalliance_a_01_scm.m2", + }, + { + fileId = "138636", + text = "helm_leather_pvpalliance_a_01_taf.m2", + value = "helm_leather_pvpalliance_a_01_taf.m2", + }, + { + fileId = "138637", + text = "helm_leather_pvpalliance_a_01_tam.m2", + value = "helm_leather_pvpalliance_a_01_tam.m2", + }, + { + fileId = "138638", + text = "helm_leather_pvpalliance_a_01_trf.m2", + value = "helm_leather_pvpalliance_a_01_trf.m2", + }, + { + fileId = "138639", + text = "helm_leather_pvpalliance_a_01_trm.m2", + value = "helm_leather_pvpalliance_a_01_trm.m2", + }, + { + fileId = "138642", + text = "helm_leather_pvpalliance_c_01_bef.m2", + value = "helm_leather_pvpalliance_c_01_bef.m2", + }, + { + fileId = "138643", + text = "helm_leather_pvpalliance_c_01_drf.m2", + value = "helm_leather_pvpalliance_c_01_drf.m2", + }, + { + fileId = "138644", + text = "helm_leather_pvpalliance_c_01_drm.m2", + value = "helm_leather_pvpalliance_c_01_drm.m2", + }, + { + fileId = "138645", + text = "helm_leather_pvpalliance_c_01_gof.m2", + value = "helm_leather_pvpalliance_c_01_gof.m2", + }, + { + fileId = "237883", + text = "helm_leather_pvpdruid_b_01_bef.m2", + value = "helm_leather_pvpdruid_b_01_bef.m2", + }, + { + fileId = "237884", + text = "helm_leather_pvpdruid_b_01_bem.m2", + value = "helm_leather_pvpdruid_b_01_bem.m2", + }, + { + fileId = "237885", + text = "helm_leather_pvpdruid_b_01_drf.m2", + value = "helm_leather_pvpdruid_b_01_drf.m2", + }, + { + fileId = "237886", + text = "helm_leather_pvpdruid_b_01_drm.m2", + value = "helm_leather_pvpdruid_b_01_drm.m2", + }, + { + fileId = "237887", + text = "helm_leather_pvpdruid_b_01_dwf.m2", + value = "helm_leather_pvpdruid_b_01_dwf.m2", + }, + { + fileId = "237888", + text = "helm_leather_pvpdruid_b_01_dwm.m2", + value = "helm_leather_pvpdruid_b_01_dwm.m2", + }, + { + fileId = "237889", + text = "helm_leather_pvpdruid_b_01_gnf.m2", + value = "helm_leather_pvpdruid_b_01_gnf.m2", + }, + { + fileId = "237890", + text = "helm_leather_pvpdruid_b_01_gnm.m2", + value = "helm_leather_pvpdruid_b_01_gnm.m2", + }, + { + fileId = "237891", + text = "helm_leather_pvpdruid_b_01_gof.m2", + value = "helm_leather_pvpdruid_b_01_gof.m2", + }, + { + fileId = "237892", + text = "helm_leather_pvpdruid_b_01_gom.m2", + value = "helm_leather_pvpdruid_b_01_gom.m2", + }, + { + fileId = "237893", + text = "helm_leather_pvpdruid_b_01_huf.m2", + value = "helm_leather_pvpdruid_b_01_huf.m2", + }, + { + fileId = "237894", + text = "helm_leather_pvpdruid_b_01_hum.m2", + value = "helm_leather_pvpdruid_b_01_hum.m2", + }, + { + fileId = "237895", + text = "helm_leather_pvpdruid_b_01_nif.m2", + value = "helm_leather_pvpdruid_b_01_nif.m2", + }, + { + fileId = "237896", + text = "helm_leather_pvpdruid_b_01_nim.m2", + value = "helm_leather_pvpdruid_b_01_nim.m2", + }, + { + fileId = "237897", + text = "helm_leather_pvpdruid_b_01_orf.m2", + value = "helm_leather_pvpdruid_b_01_orf.m2", + }, + { + fileId = "237898", + text = "helm_leather_pvpdruid_b_01_orm.m2", + value = "helm_leather_pvpdruid_b_01_orm.m2", + }, + { + fileId = "237899", + text = "helm_leather_pvpdruid_b_01_scf.m2", + value = "helm_leather_pvpdruid_b_01_scf.m2", + }, + { + fileId = "237900", + text = "helm_leather_pvpdruid_b_01_scm.m2", + value = "helm_leather_pvpdruid_b_01_scm.m2", + }, + { + fileId = "237901", + text = "helm_leather_pvpdruid_b_01_taf.m2", + value = "helm_leather_pvpdruid_b_01_taf.m2", + }, + { + fileId = "237902", + text = "helm_leather_pvpdruid_b_01_tam.m2", + value = "helm_leather_pvpdruid_b_01_tam.m2", + }, + { + fileId = "237903", + text = "helm_leather_pvpdruid_b_01_trf.m2", + value = "helm_leather_pvpdruid_b_01_trf.m2", + }, + { + fileId = "237904", + text = "helm_leather_pvpdruid_b_01_trm.m2", + value = "helm_leather_pvpdruid_b_01_trm.m2", + }, + { + fileId = "294403", + text = "helm_leather_pvpdruid_b_02_bef.m2", + value = "helm_leather_pvpdruid_b_02_bef.m2", + }, + { + fileId = "294404", + text = "helm_leather_pvpdruid_b_02_bem.m2", + value = "helm_leather_pvpdruid_b_02_bem.m2", + }, + { + fileId = "294405", + text = "helm_leather_pvpdruid_b_02_drf.m2", + value = "helm_leather_pvpdruid_b_02_drf.m2", + }, + { + fileId = "294406", + text = "helm_leather_pvpdruid_b_02_drm.m2", + value = "helm_leather_pvpdruid_b_02_drm.m2", + }, + { + fileId = "294407", + text = "helm_leather_pvpdruid_b_02_dwf.m2", + value = "helm_leather_pvpdruid_b_02_dwf.m2", + }, + { + fileId = "294408", + text = "helm_leather_pvpdruid_b_02_dwm.m2", + value = "helm_leather_pvpdruid_b_02_dwm.m2", + }, + { + fileId = "294409", + text = "helm_leather_pvpdruid_b_02_gnf.m2", + value = "helm_leather_pvpdruid_b_02_gnf.m2", + }, + { + fileId = "294410", + text = "helm_leather_pvpdruid_b_02_gnm.m2", + value = "helm_leather_pvpdruid_b_02_gnm.m2", + }, + { + fileId = "294411", + text = "helm_leather_pvpdruid_b_02_gof.m2", + value = "helm_leather_pvpdruid_b_02_gof.m2", + }, + { + fileId = "294412", + text = "helm_leather_pvpdruid_b_02_gom.m2", + value = "helm_leather_pvpdruid_b_02_gom.m2", + }, + { + fileId = "294413", + text = "helm_leather_pvpdruid_b_02_huf.m2", + value = "helm_leather_pvpdruid_b_02_huf.m2", + }, + { + fileId = "294414", + text = "helm_leather_pvpdruid_b_02_hum.m2", + value = "helm_leather_pvpdruid_b_02_hum.m2", + }, + { + fileId = "294415", + text = "helm_leather_pvpdruid_b_02_nif.m2", + value = "helm_leather_pvpdruid_b_02_nif.m2", + }, + { + fileId = "294416", + text = "helm_leather_pvpdruid_b_02_nim.m2", + value = "helm_leather_pvpdruid_b_02_nim.m2", + }, + { + fileId = "294417", + text = "helm_leather_pvpdruid_b_02_orf.m2", + value = "helm_leather_pvpdruid_b_02_orf.m2", + }, + { + fileId = "294418", + text = "helm_leather_pvpdruid_b_02_orm.m2", + value = "helm_leather_pvpdruid_b_02_orm.m2", + }, + { + fileId = "294419", + text = "helm_leather_pvpdruid_b_02_scf.m2", + value = "helm_leather_pvpdruid_b_02_scf.m2", + }, + { + fileId = "294420", + text = "helm_leather_pvpdruid_b_02_scm.m2", + value = "helm_leather_pvpdruid_b_02_scm.m2", + }, + { + fileId = "294421", + text = "helm_leather_pvpdruid_b_02_taf.m2", + value = "helm_leather_pvpdruid_b_02_taf.m2", + }, + { + fileId = "294422", + text = "helm_leather_pvpdruid_b_02_tam.m2", + value = "helm_leather_pvpdruid_b_02_tam.m2", + }, + { + fileId = "294423", + text = "helm_leather_pvpdruid_b_02_trf.m2", + value = "helm_leather_pvpdruid_b_02_trf.m2", + }, + { + fileId = "294424", + text = "helm_leather_pvpdruid_b_02_trm.m2", + value = "helm_leather_pvpdruid_b_02_trm.m2", + }, + { + fileId = "304551", + text = "helm_leather_pvpdruid_b_03_bef.m2", + value = "helm_leather_pvpdruid_b_03_bef.m2", + }, + { + fileId = "304552", + text = "helm_leather_pvpdruid_b_03_bem.m2", + value = "helm_leather_pvpdruid_b_03_bem.m2", + }, + { + fileId = "304553", + text = "helm_leather_pvpdruid_b_03_drf.m2", + value = "helm_leather_pvpdruid_b_03_drf.m2", + }, + { + fileId = "304554", + text = "helm_leather_pvpdruid_b_03_drm.m2", + value = "helm_leather_pvpdruid_b_03_drm.m2", + }, + { + fileId = "304555", + text = "helm_leather_pvpdruid_b_03_dwf.m2", + value = "helm_leather_pvpdruid_b_03_dwf.m2", + }, + { + fileId = "304556", + text = "helm_leather_pvpdruid_b_03_dwm.m2", + value = "helm_leather_pvpdruid_b_03_dwm.m2", + }, + { + fileId = "304557", + text = "helm_leather_pvpdruid_b_03_gnf.m2", + value = "helm_leather_pvpdruid_b_03_gnf.m2", + }, + { + fileId = "304558", + text = "helm_leather_pvpdruid_b_03_gnm.m2", + value = "helm_leather_pvpdruid_b_03_gnm.m2", + }, + { + fileId = "304559", + text = "helm_leather_pvpdruid_b_03_gof.m2", + value = "helm_leather_pvpdruid_b_03_gof.m2", + }, + { + fileId = "304560", + text = "helm_leather_pvpdruid_b_03_gom.m2", + value = "helm_leather_pvpdruid_b_03_gom.m2", + }, + { + fileId = "304561", + text = "helm_leather_pvpdruid_b_03_huf.m2", + value = "helm_leather_pvpdruid_b_03_huf.m2", + }, + { + fileId = "304562", + text = "helm_leather_pvpdruid_b_03_hum.m2", + value = "helm_leather_pvpdruid_b_03_hum.m2", + }, + { + fileId = "304563", + text = "helm_leather_pvpdruid_b_03_nif.m2", + value = "helm_leather_pvpdruid_b_03_nif.m2", + }, + { + fileId = "304564", + text = "helm_leather_pvpdruid_b_03_nim.m2", + value = "helm_leather_pvpdruid_b_03_nim.m2", + }, + { + fileId = "304565", + text = "helm_leather_pvpdruid_b_03_orf.m2", + value = "helm_leather_pvpdruid_b_03_orf.m2", + }, + { + fileId = "304566", + text = "helm_leather_pvpdruid_b_03_orm.m2", + value = "helm_leather_pvpdruid_b_03_orm.m2", + }, + { + fileId = "304567", + text = "helm_leather_pvpdruid_b_03_scf.m2", + value = "helm_leather_pvpdruid_b_03_scf.m2", + }, + { + fileId = "304568", + text = "helm_leather_pvpdruid_b_03_scm.m2", + value = "helm_leather_pvpdruid_b_03_scm.m2", + }, + { + fileId = "304569", + text = "helm_leather_pvpdruid_b_03_taf.m2", + value = "helm_leather_pvpdruid_b_03_taf.m2", + }, + { + fileId = "304570", + text = "helm_leather_pvpdruid_b_03_tam.m2", + value = "helm_leather_pvpdruid_b_03_tam.m2", + }, + { + fileId = "304571", + text = "helm_leather_pvpdruid_b_03_trf.m2", + value = "helm_leather_pvpdruid_b_03_trf.m2", + }, + { + fileId = "304572", + text = "helm_leather_pvpdruid_b_03_trm.m2", + value = "helm_leather_pvpdruid_b_03_trm.m2", + }, + { + fileId = "348109", + text = "helm_leather_pvpdruid_b_04_bef.m2", + value = "helm_leather_pvpdruid_b_04_bef.m2", + }, + { + fileId = "348110", + text = "helm_leather_pvpdruid_b_04_bem.m2", + value = "helm_leather_pvpdruid_b_04_bem.m2", + }, + { + fileId = "348111", + text = "helm_leather_pvpdruid_b_04_drf.m2", + value = "helm_leather_pvpdruid_b_04_drf.m2", + }, + { + fileId = "348112", + text = "helm_leather_pvpdruid_b_04_drm.m2", + value = "helm_leather_pvpdruid_b_04_drm.m2", + }, + { + fileId = "348113", + text = "helm_leather_pvpdruid_b_04_dwf.m2", + value = "helm_leather_pvpdruid_b_04_dwf.m2", + }, + { + fileId = "348114", + text = "helm_leather_pvpdruid_b_04_dwm.m2", + value = "helm_leather_pvpdruid_b_04_dwm.m2", + }, + { + fileId = "348115", + text = "helm_leather_pvpdruid_b_04_gnf.m2", + value = "helm_leather_pvpdruid_b_04_gnf.m2", + }, + { + fileId = "348116", + text = "helm_leather_pvpdruid_b_04_gnm.m2", + value = "helm_leather_pvpdruid_b_04_gnm.m2", + }, + { + fileId = "348117", + text = "helm_leather_pvpdruid_b_04_gof.m2", + value = "helm_leather_pvpdruid_b_04_gof.m2", + }, + { + fileId = "348118", + text = "helm_leather_pvpdruid_b_04_gom.m2", + value = "helm_leather_pvpdruid_b_04_gom.m2", + }, + { + fileId = "348119", + text = "helm_leather_pvpdruid_b_04_huf.m2", + value = "helm_leather_pvpdruid_b_04_huf.m2", + }, + { + fileId = "348120", + text = "helm_leather_pvpdruid_b_04_hum.m2", + value = "helm_leather_pvpdruid_b_04_hum.m2", + }, + { + fileId = "348121", + text = "helm_leather_pvpdruid_b_04_nif.m2", + value = "helm_leather_pvpdruid_b_04_nif.m2", + }, + { + fileId = "348122", + text = "helm_leather_pvpdruid_b_04_nim.m2", + value = "helm_leather_pvpdruid_b_04_nim.m2", + }, + { + fileId = "348123", + text = "helm_leather_pvpdruid_b_04_orf.m2", + value = "helm_leather_pvpdruid_b_04_orf.m2", + }, + { + fileId = "348124", + text = "helm_leather_pvpdruid_b_04_orm.m2", + value = "helm_leather_pvpdruid_b_04_orm.m2", + }, + { + fileId = "348125", + text = "helm_leather_pvpdruid_b_04_scf.m2", + value = "helm_leather_pvpdruid_b_04_scf.m2", + }, + { + fileId = "348773", + text = "helm_leather_pvpdruid_b_04_scm.m2", + value = "helm_leather_pvpdruid_b_04_scm.m2", + }, + { + fileId = "348774", + text = "helm_leather_pvpdruid_b_04_taf.m2", + value = "helm_leather_pvpdruid_b_04_taf.m2", + }, + { + fileId = "348775", + text = "helm_leather_pvpdruid_b_04_tam.m2", + value = "helm_leather_pvpdruid_b_04_tam.m2", + }, + { + fileId = "348776", + text = "helm_leather_pvpdruid_b_04_trf.m2", + value = "helm_leather_pvpdruid_b_04_trf.m2", + }, + { + fileId = "348777", + text = "helm_leather_pvpdruid_b_04_trm.m2", + value = "helm_leather_pvpdruid_b_04_trm.m2", + }, + { + fileId = "138646", + text = "helm_leather_pvphorde_a_01_bef.m2", + value = "helm_leather_pvphorde_a_01_bef.m2", + }, + { + fileId = "138647", + text = "helm_leather_pvphorde_a_01_bem.m2", + value = "helm_leather_pvphorde_a_01_bem.m2", + }, + { + fileId = "138648", + text = "helm_leather_pvphorde_a_01_drf.m2", + value = "helm_leather_pvphorde_a_01_drf.m2", + }, + { + fileId = "138649", + text = "helm_leather_pvphorde_a_01_drm.m2", + value = "helm_leather_pvphorde_a_01_drm.m2", + }, + { + fileId = "138650", + text = "helm_leather_pvphorde_a_01_dwf.m2", + value = "helm_leather_pvphorde_a_01_dwf.m2", + }, + { + fileId = "138651", + text = "helm_leather_pvphorde_a_01_dwm.m2", + value = "helm_leather_pvphorde_a_01_dwm.m2", + }, + { + fileId = "138652", + text = "helm_leather_pvphorde_a_01_gnf.m2", + value = "helm_leather_pvphorde_a_01_gnf.m2", + }, + { + fileId = "138653", + text = "helm_leather_pvphorde_a_01_gnm.m2", + value = "helm_leather_pvphorde_a_01_gnm.m2", + }, + { + fileId = "138654", + text = "helm_leather_pvphorde_a_01_gof.m2", + value = "helm_leather_pvphorde_a_01_gof.m2", + }, + { + fileId = "138655", + text = "helm_leather_pvphorde_a_01_gom.m2", + value = "helm_leather_pvphorde_a_01_gom.m2", + }, + { + fileId = "138656", + text = "helm_leather_pvphorde_a_01_huf.m2", + value = "helm_leather_pvphorde_a_01_huf.m2", + }, + { + fileId = "138657", + text = "helm_leather_pvphorde_a_01_hum.m2", + value = "helm_leather_pvphorde_a_01_hum.m2", + }, + { + fileId = "138658", + text = "helm_leather_pvphorde_a_01_nif.m2", + value = "helm_leather_pvphorde_a_01_nif.m2", + }, + { + fileId = "138659", + text = "helm_leather_pvphorde_a_01_nim.m2", + value = "helm_leather_pvphorde_a_01_nim.m2", + }, + { + fileId = "138660", + text = "helm_leather_pvphorde_a_01_orf.m2", + value = "helm_leather_pvphorde_a_01_orf.m2", + }, + { + fileId = "138661", + text = "helm_leather_pvphorde_a_01_orm.m2", + value = "helm_leather_pvphorde_a_01_orm.m2", + }, + { + fileId = "138662", + text = "helm_leather_pvphorde_a_01_scf.m2", + value = "helm_leather_pvphorde_a_01_scf.m2", + }, + { + fileId = "138663", + text = "helm_leather_pvphorde_a_01_scm.m2", + value = "helm_leather_pvphorde_a_01_scm.m2", + }, + { + fileId = "138664", + text = "helm_leather_pvphorde_a_01_taf.m2", + value = "helm_leather_pvphorde_a_01_taf.m2", + }, + { + fileId = "138665", + text = "helm_leather_pvphorde_a_01_tam.m2", + value = "helm_leather_pvphorde_a_01_tam.m2", + }, + { + fileId = "138666", + text = "helm_leather_pvphorde_a_01_trf.m2", + value = "helm_leather_pvphorde_a_01_trf.m2", + }, + { + fileId = "138667", + text = "helm_leather_pvphorde_a_01_trm.m2", + value = "helm_leather_pvphorde_a_01_trm.m2", + }, + { + fileId = "138670", + text = "helm_leather_pvphorde_c_01_bef.m2", + value = "helm_leather_pvphorde_c_01_bef.m2", + }, + { + fileId = "138671", + text = "helm_leather_pvphorde_c_01_bem.m2", + value = "helm_leather_pvphorde_c_01_bem.m2", + }, + { + fileId = "138672", + text = "helm_leather_pvphorde_c_01_drf.m2", + value = "helm_leather_pvphorde_c_01_drf.m2", + }, + { + fileId = "138673", + text = "helm_leather_pvphorde_c_01_drm.m2", + value = "helm_leather_pvphorde_c_01_drm.m2", + }, + { + fileId = "138674", + text = "helm_leather_pvphorde_c_01_dwf.m2", + value = "helm_leather_pvphorde_c_01_dwf.m2", + }, + { + fileId = "138675", + text = "helm_leather_pvphorde_c_01_dwm.m2", + value = "helm_leather_pvphorde_c_01_dwm.m2", + }, + { + fileId = "138676", + text = "helm_leather_pvphorde_c_01_gnf.m2", + value = "helm_leather_pvphorde_c_01_gnf.m2", + }, + { + fileId = "138677", + text = "helm_leather_pvphorde_c_01_gnm.m2", + value = "helm_leather_pvphorde_c_01_gnm.m2", + }, + { + fileId = "138678", + text = "helm_leather_pvphorde_c_01_gof.m2", + value = "helm_leather_pvphorde_c_01_gof.m2", + }, + { + fileId = "138679", + text = "helm_leather_pvphorde_c_01_gom.m2", + value = "helm_leather_pvphorde_c_01_gom.m2", + }, + { + fileId = "138680", + text = "helm_leather_pvphorde_c_01_huf.m2", + value = "helm_leather_pvphorde_c_01_huf.m2", + }, + { + fileId = "138681", + text = "helm_leather_pvphorde_c_01_hum.m2", + value = "helm_leather_pvphorde_c_01_hum.m2", + }, + { + fileId = "138682", + text = "helm_leather_pvphorde_c_01_nif.m2", + value = "helm_leather_pvphorde_c_01_nif.m2", + }, + { + fileId = "138683", + text = "helm_leather_pvphorde_c_01_nim.m2", + value = "helm_leather_pvphorde_c_01_nim.m2", + }, + { + fileId = "138684", + text = "helm_leather_pvphorde_c_01_orf.m2", + value = "helm_leather_pvphorde_c_01_orf.m2", + }, + { + fileId = "138685", + text = "helm_leather_pvphorde_c_01_orm.m2", + value = "helm_leather_pvphorde_c_01_orm.m2", + }, + { + fileId = "138686", + text = "helm_leather_pvphorde_c_01_scf.m2", + value = "helm_leather_pvphorde_c_01_scf.m2", + }, + { + fileId = "138687", + text = "helm_leather_pvphorde_c_01_scm.m2", + value = "helm_leather_pvphorde_c_01_scm.m2", + }, + { + fileId = "138688", + text = "helm_leather_pvphorde_c_01_taf.m2", + value = "helm_leather_pvphorde_c_01_taf.m2", + }, + { + fileId = "138689", + text = "helm_leather_pvphorde_c_01_tam.m2", + value = "helm_leather_pvphorde_c_01_tam.m2", + }, + { + fileId = "138690", + text = "helm_leather_pvphorde_c_01_trf.m2", + value = "helm_leather_pvphorde_c_01_trf.m2", + }, + { + fileId = "138691", + text = "helm_leather_pvphorde_c_01_trm.m2", + value = "helm_leather_pvphorde_c_01_trm.m2", + }, + { + fileId = "237909", + text = "helm_leather_pvprogue_b_01_bef.m2", + value = "helm_leather_pvprogue_b_01_bef.m2", + }, + { + fileId = "237910", + text = "helm_leather_pvprogue_b_01_bem.m2", + value = "helm_leather_pvprogue_b_01_bem.m2", + }, + { + fileId = "237911", + text = "helm_leather_pvprogue_b_01_drf.m2", + value = "helm_leather_pvprogue_b_01_drf.m2", + }, + { + fileId = "237912", + text = "helm_leather_pvprogue_b_01_drm.m2", + value = "helm_leather_pvprogue_b_01_drm.m2", + }, + { + fileId = "237913", + text = "helm_leather_pvprogue_b_01_dwf.m2", + value = "helm_leather_pvprogue_b_01_dwf.m2", + }, + { + fileId = "237914", + text = "helm_leather_pvprogue_b_01_dwm.m2", + value = "helm_leather_pvprogue_b_01_dwm.m2", + }, + { + fileId = "237915", + text = "helm_leather_pvprogue_b_01_gnf.m2", + value = "helm_leather_pvprogue_b_01_gnf.m2", + }, + { + fileId = "237916", + text = "helm_leather_pvprogue_b_01_gnm.m2", + value = "helm_leather_pvprogue_b_01_gnm.m2", + }, + { + fileId = "237917", + text = "helm_leather_pvprogue_b_01_gof.m2", + value = "helm_leather_pvprogue_b_01_gof.m2", + }, + { + fileId = "237918", + text = "helm_leather_pvprogue_b_01_gom.m2", + value = "helm_leather_pvprogue_b_01_gom.m2", + }, + { + fileId = "237919", + text = "helm_leather_pvprogue_b_01_huf.m2", + value = "helm_leather_pvprogue_b_01_huf.m2", + }, + { + fileId = "237920", + text = "helm_leather_pvprogue_b_01_hum.m2", + value = "helm_leather_pvprogue_b_01_hum.m2", + }, + { + fileId = "237921", + text = "helm_leather_pvprogue_b_01_nif.m2", + value = "helm_leather_pvprogue_b_01_nif.m2", + }, + { + fileId = "237922", + text = "helm_leather_pvprogue_b_01_nim.m2", + value = "helm_leather_pvprogue_b_01_nim.m2", + }, + { + fileId = "237923", + text = "helm_leather_pvprogue_b_01_orf.m2", + value = "helm_leather_pvprogue_b_01_orf.m2", + }, + { + fileId = "237924", + text = "helm_leather_pvprogue_b_01_orm.m2", + value = "helm_leather_pvprogue_b_01_orm.m2", + }, + { + fileId = "237925", + text = "helm_leather_pvprogue_b_01_scf.m2", + value = "helm_leather_pvprogue_b_01_scf.m2", + }, + { + fileId = "237926", + text = "helm_leather_pvprogue_b_01_scm.m2", + value = "helm_leather_pvprogue_b_01_scm.m2", + }, + { + fileId = "237927", + text = "helm_leather_pvprogue_b_01_taf.m2", + value = "helm_leather_pvprogue_b_01_taf.m2", + }, + { + fileId = "237928", + text = "helm_leather_pvprogue_b_01_tam.m2", + value = "helm_leather_pvprogue_b_01_tam.m2", + }, + { + fileId = "237929", + text = "helm_leather_pvprogue_b_01_trf.m2", + value = "helm_leather_pvprogue_b_01_trf.m2", + }, + { + fileId = "237930", + text = "helm_leather_pvprogue_b_01_trm.m2", + value = "helm_leather_pvprogue_b_01_trm.m2", + }, + { + fileId = "254583", + text = "helm_leather_pvprogue_b_02_bef.m2", + value = "helm_leather_pvprogue_b_02_bef.m2", + }, + { + fileId = "254584", + text = "helm_leather_pvprogue_b_02_bem.m2", + value = "helm_leather_pvprogue_b_02_bem.m2", + }, + { + fileId = "254585", + text = "helm_leather_pvprogue_b_02_drf.m2", + value = "helm_leather_pvprogue_b_02_drf.m2", + }, + { + fileId = "254586", + text = "helm_leather_pvprogue_b_02_drm.m2", + value = "helm_leather_pvprogue_b_02_drm.m2", + }, + { + fileId = "254587", + text = "helm_leather_pvprogue_b_02_dwf.m2", + value = "helm_leather_pvprogue_b_02_dwf.m2", + }, + { + fileId = "254588", + text = "helm_leather_pvprogue_b_02_dwm.m2", + value = "helm_leather_pvprogue_b_02_dwm.m2", + }, + { + fileId = "254589", + text = "helm_leather_pvprogue_b_02_gnf.m2", + value = "helm_leather_pvprogue_b_02_gnf.m2", + }, + { + fileId = "254590", + text = "helm_leather_pvprogue_b_02_gnm.m2", + value = "helm_leather_pvprogue_b_02_gnm.m2", + }, + { + fileId = "254591", + text = "helm_leather_pvprogue_b_02_gof.m2", + value = "helm_leather_pvprogue_b_02_gof.m2", + }, + { + fileId = "254592", + text = "helm_leather_pvprogue_b_02_gom.m2", + value = "helm_leather_pvprogue_b_02_gom.m2", + }, + { + fileId = "254593", + text = "helm_leather_pvprogue_b_02_huf.m2", + value = "helm_leather_pvprogue_b_02_huf.m2", + }, + { + fileId = "254594", + text = "helm_leather_pvprogue_b_02_hum.m2", + value = "helm_leather_pvprogue_b_02_hum.m2", + }, + { + fileId = "254595", + text = "helm_leather_pvprogue_b_02_nif.m2", + value = "helm_leather_pvprogue_b_02_nif.m2", + }, + { + fileId = "254596", + text = "helm_leather_pvprogue_b_02_nim.m2", + value = "helm_leather_pvprogue_b_02_nim.m2", + }, + { + fileId = "254597", + text = "helm_leather_pvprogue_b_02_orf.m2", + value = "helm_leather_pvprogue_b_02_orf.m2", + }, + { + fileId = "254598", + text = "helm_leather_pvprogue_b_02_orm.m2", + value = "helm_leather_pvprogue_b_02_orm.m2", + }, + { + fileId = "254599", + text = "helm_leather_pvprogue_b_02_scf.m2", + value = "helm_leather_pvprogue_b_02_scf.m2", + }, + { + fileId = "254600", + text = "helm_leather_pvprogue_b_02_scm.m2", + value = "helm_leather_pvprogue_b_02_scm.m2", + }, + { + fileId = "254601", + text = "helm_leather_pvprogue_b_02_taf.m2", + value = "helm_leather_pvprogue_b_02_taf.m2", + }, + { + fileId = "254602", + text = "helm_leather_pvprogue_b_02_tam.m2", + value = "helm_leather_pvprogue_b_02_tam.m2", + }, + { + fileId = "254603", + text = "helm_leather_pvprogue_b_02_trf.m2", + value = "helm_leather_pvprogue_b_02_trf.m2", + }, + { + fileId = "254604", + text = "helm_leather_pvprogue_b_02_trm.m2", + value = "helm_leather_pvprogue_b_02_trm.m2", + }, + { + fileId = "304469", + text = "helm_leather_pvprogue_b_03_bef.m2", + value = "helm_leather_pvprogue_b_03_bef.m2", + }, + { + fileId = "304470", + text = "helm_leather_pvprogue_b_03_bem.m2", + value = "helm_leather_pvprogue_b_03_bem.m2", + }, + { + fileId = "304471", + text = "helm_leather_pvprogue_b_03_drf.m2", + value = "helm_leather_pvprogue_b_03_drf.m2", + }, + { + fileId = "304472", + text = "helm_leather_pvprogue_b_03_drm.m2", + value = "helm_leather_pvprogue_b_03_drm.m2", + }, + { + fileId = "304473", + text = "helm_leather_pvprogue_b_03_dwf.m2", + value = "helm_leather_pvprogue_b_03_dwf.m2", + }, + { + fileId = "304474", + text = "helm_leather_pvprogue_b_03_dwm.m2", + value = "helm_leather_pvprogue_b_03_dwm.m2", + }, + { + fileId = "304475", + text = "helm_leather_pvprogue_b_03_gnf.m2", + value = "helm_leather_pvprogue_b_03_gnf.m2", + }, + { + fileId = "304476", + text = "helm_leather_pvprogue_b_03_gnm.m2", + value = "helm_leather_pvprogue_b_03_gnm.m2", + }, + { + fileId = "304477", + text = "helm_leather_pvprogue_b_03_gof.m2", + value = "helm_leather_pvprogue_b_03_gof.m2", + }, + { + fileId = "304478", + text = "helm_leather_pvprogue_b_03_gom.m2", + value = "helm_leather_pvprogue_b_03_gom.m2", + }, + { + fileId = "304479", + text = "helm_leather_pvprogue_b_03_huf.m2", + value = "helm_leather_pvprogue_b_03_huf.m2", + }, + { + fileId = "304480", + text = "helm_leather_pvprogue_b_03_hum.m2", + value = "helm_leather_pvprogue_b_03_hum.m2", + }, + { + fileId = "304481", + text = "helm_leather_pvprogue_b_03_nif.m2", + value = "helm_leather_pvprogue_b_03_nif.m2", + }, + { + fileId = "304482", + text = "helm_leather_pvprogue_b_03_nim.m2", + value = "helm_leather_pvprogue_b_03_nim.m2", + }, + { + fileId = "304483", + text = "helm_leather_pvprogue_b_03_orf.m2", + value = "helm_leather_pvprogue_b_03_orf.m2", + }, + { + fileId = "304484", + text = "helm_leather_pvprogue_b_03_orm.m2", + value = "helm_leather_pvprogue_b_03_orm.m2", + }, + { + fileId = "304485", + text = "helm_leather_pvprogue_b_03_scf.m2", + value = "helm_leather_pvprogue_b_03_scf.m2", + }, + { + fileId = "304486", + text = "helm_leather_pvprogue_b_03_scm.m2", + value = "helm_leather_pvprogue_b_03_scm.m2", + }, + { + fileId = "304487", + text = "helm_leather_pvprogue_b_03_taf.m2", + value = "helm_leather_pvprogue_b_03_taf.m2", + }, + { + fileId = "304488", + text = "helm_leather_pvprogue_b_03_tam.m2", + value = "helm_leather_pvprogue_b_03_tam.m2", + }, + { + fileId = "304489", + text = "helm_leather_pvprogue_b_03_trf.m2", + value = "helm_leather_pvprogue_b_03_trf.m2", + }, + { + fileId = "304490", + text = "helm_leather_pvprogue_b_03_trm.m2", + value = "helm_leather_pvprogue_b_03_trm.m2", + }, + { + fileId = "346054", + text = "helm_leather_pvprogue_b_04_bef.m2", + value = "helm_leather_pvprogue_b_04_bef.m2", + }, + { + fileId = "346055", + text = "helm_leather_pvprogue_b_04_bem.m2", + value = "helm_leather_pvprogue_b_04_bem.m2", + }, + { + fileId = "346056", + text = "helm_leather_pvprogue_b_04_drf.m2", + value = "helm_leather_pvprogue_b_04_drf.m2", + }, + { + fileId = "346057", + text = "helm_leather_pvprogue_b_04_drm.m2", + value = "helm_leather_pvprogue_b_04_drm.m2", + }, + { + fileId = "346058", + text = "helm_leather_pvprogue_b_04_dwf.m2", + value = "helm_leather_pvprogue_b_04_dwf.m2", + }, + { + fileId = "346059", + text = "helm_leather_pvprogue_b_04_dwm.m2", + value = "helm_leather_pvprogue_b_04_dwm.m2", + }, + { + fileId = "346060", + text = "helm_leather_pvprogue_b_04_gnf.m2", + value = "helm_leather_pvprogue_b_04_gnf.m2", + }, + { + fileId = "346061", + text = "helm_leather_pvprogue_b_04_gnm.m2", + value = "helm_leather_pvprogue_b_04_gnm.m2", + }, + { + fileId = "346062", + text = "helm_leather_pvprogue_b_04_gof.m2", + value = "helm_leather_pvprogue_b_04_gof.m2", + }, + { + fileId = "346063", + text = "helm_leather_pvprogue_b_04_gom.m2", + value = "helm_leather_pvprogue_b_04_gom.m2", + }, + { + fileId = "346064", + text = "helm_leather_pvprogue_b_04_huf.m2", + value = "helm_leather_pvprogue_b_04_huf.m2", + }, + { + fileId = "346065", + text = "helm_leather_pvprogue_b_04_hum.m2", + value = "helm_leather_pvprogue_b_04_hum.m2", + }, + { + fileId = "346066", + text = "helm_leather_pvprogue_b_04_nif.m2", + value = "helm_leather_pvprogue_b_04_nif.m2", + }, + { + fileId = "346067", + text = "helm_leather_pvprogue_b_04_nim.m2", + value = "helm_leather_pvprogue_b_04_nim.m2", + }, + { + fileId = "346068", + text = "helm_leather_pvprogue_b_04_orf.m2", + value = "helm_leather_pvprogue_b_04_orf.m2", + }, + { + fileId = "346069", + text = "helm_leather_pvprogue_b_04_orm.m2", + value = "helm_leather_pvprogue_b_04_orm.m2", + }, + { + fileId = "346070", + text = "helm_leather_pvprogue_b_04_scf.m2", + value = "helm_leather_pvprogue_b_04_scf.m2", + }, + { + fileId = "346071", + text = "helm_leather_pvprogue_b_04_scm.m2", + value = "helm_leather_pvprogue_b_04_scm.m2", + }, + { + fileId = "346072", + text = "helm_leather_pvprogue_b_04_taf.m2", + value = "helm_leather_pvprogue_b_04_taf.m2", + }, + { + fileId = "346073", + text = "helm_leather_pvprogue_b_04_tam.m2", + value = "helm_leather_pvprogue_b_04_tam.m2", + }, + { + fileId = "346074", + text = "helm_leather_pvprogue_b_04_trf.m2", + value = "helm_leather_pvprogue_b_04_trf.m2", + }, + { + fileId = "346075", + text = "helm_leather_pvprogue_b_04_trm.m2", + value = "helm_leather_pvprogue_b_04_trm.m2", + }, + { + fileId = "138695", + text = "helm_leather_raiddruid_a_01_bef.m2", + value = "helm_leather_raiddruid_a_01_bef.m2", + }, + { + fileId = "138696", + text = "helm_leather_raiddruid_a_01_bem.m2", + value = "helm_leather_raiddruid_a_01_bem.m2", + }, + { + fileId = "138697", + text = "helm_leather_raiddruid_a_01_drf.m2", + value = "helm_leather_raiddruid_a_01_drf.m2", + }, + { + fileId = "138698", + text = "helm_leather_raiddruid_a_01_drm.m2", + value = "helm_leather_raiddruid_a_01_drm.m2", + }, + { + fileId = "138699", + text = "helm_leather_raiddruid_a_01_dwf.m2", + value = "helm_leather_raiddruid_a_01_dwf.m2", + }, + { + fileId = "138700", + text = "helm_leather_raiddruid_a_01_dwm.m2", + value = "helm_leather_raiddruid_a_01_dwm.m2", + }, + { + fileId = "138701", + text = "helm_leather_raiddruid_a_01_gnf.m2", + value = "helm_leather_raiddruid_a_01_gnf.m2", + }, + { + fileId = "138702", + text = "helm_leather_raiddruid_a_01_gnm.m2", + value = "helm_leather_raiddruid_a_01_gnm.m2", + }, + { + fileId = "138703", + text = "helm_leather_raiddruid_a_01_gof.m2", + value = "helm_leather_raiddruid_a_01_gof.m2", + }, + { + fileId = "138704", + text = "helm_leather_raiddruid_a_01_huf.m2", + value = "helm_leather_raiddruid_a_01_huf.m2", + }, + { + fileId = "138705", + text = "helm_leather_raiddruid_a_01_hum.m2", + value = "helm_leather_raiddruid_a_01_hum.m2", + }, + { + fileId = "138706", + text = "helm_leather_raiddruid_a_01_nif.m2", + value = "helm_leather_raiddruid_a_01_nif.m2", + }, + { + fileId = "138707", + text = "helm_leather_raiddruid_a_01_nim.m2", + value = "helm_leather_raiddruid_a_01_nim.m2", + }, + { + fileId = "138708", + text = "helm_leather_raiddruid_a_01_orf.m2", + value = "helm_leather_raiddruid_a_01_orf.m2", + }, + { + fileId = "138709", + text = "helm_leather_raiddruid_a_01_orm.m2", + value = "helm_leather_raiddruid_a_01_orm.m2", + }, + { + fileId = "138710", + text = "helm_leather_raiddruid_a_01_scf.m2", + value = "helm_leather_raiddruid_a_01_scf.m2", + }, + { + fileId = "138711", + text = "helm_leather_raiddruid_a_01_scm.m2", + value = "helm_leather_raiddruid_a_01_scm.m2", + }, + { + fileId = "138712", + text = "helm_leather_raiddruid_a_01_taf.m2", + value = "helm_leather_raiddruid_a_01_taf.m2", + }, + { + fileId = "138713", + text = "helm_leather_raiddruid_a_01_tam.m2", + value = "helm_leather_raiddruid_a_01_tam.m2", + }, + { + fileId = "138714", + text = "helm_leather_raiddruid_a_01_trf.m2", + value = "helm_leather_raiddruid_a_01_trf.m2", + }, + { + fileId = "138715", + text = "helm_leather_raiddruid_a_01_trm.m2", + value = "helm_leather_raiddruid_a_01_trm.m2", + }, + { + fileId = "138720", + text = "helm_leather_raiddruid_b_01_bef.m2", + value = "helm_leather_raiddruid_b_01_bef.m2", + }, + { + fileId = "138721", + text = "helm_leather_raiddruid_b_01_bem.m2", + value = "helm_leather_raiddruid_b_01_bem.m2", + }, + { + fileId = "138722", + text = "helm_leather_raiddruid_b_01_drf.m2", + value = "helm_leather_raiddruid_b_01_drf.m2", + }, + { + fileId = "138723", + text = "helm_leather_raiddruid_b_01_drm.m2", + value = "helm_leather_raiddruid_b_01_drm.m2", + }, + { + fileId = "138724", + text = "helm_leather_raiddruid_b_01_dwf.m2", + value = "helm_leather_raiddruid_b_01_dwf.m2", + }, + { + fileId = "138725", + text = "helm_leather_raiddruid_b_01_dwm.m2", + value = "helm_leather_raiddruid_b_01_dwm.m2", + }, + { + fileId = "138726", + text = "helm_leather_raiddruid_b_01_gnf.m2", + value = "helm_leather_raiddruid_b_01_gnf.m2", + }, + { + fileId = "138727", + text = "helm_leather_raiddruid_b_01_gnm.m2", + value = "helm_leather_raiddruid_b_01_gnm.m2", + }, + { + fileId = "138728", + text = "helm_leather_raiddruid_b_01_gof.m2", + value = "helm_leather_raiddruid_b_01_gof.m2", + }, + { + fileId = "138729", + text = "helm_leather_raiddruid_b_01_gom.m2", + value = "helm_leather_raiddruid_b_01_gom.m2", + }, + { + fileId = "138730", + text = "helm_leather_raiddruid_b_01_huf.m2", + value = "helm_leather_raiddruid_b_01_huf.m2", + }, + { + fileId = "138731", + text = "helm_leather_raiddruid_b_01_hum.m2", + value = "helm_leather_raiddruid_b_01_hum.m2", + }, + { + fileId = "138732", + text = "helm_leather_raiddruid_b_01_nif.m2", + value = "helm_leather_raiddruid_b_01_nif.m2", + }, + { + fileId = "138733", + text = "helm_leather_raiddruid_b_01_nim.m2", + value = "helm_leather_raiddruid_b_01_nim.m2", + }, + { + fileId = "138734", + text = "helm_leather_raiddruid_b_01_orf.m2", + value = "helm_leather_raiddruid_b_01_orf.m2", + }, + { + fileId = "138735", + text = "helm_leather_raiddruid_b_01_orm.m2", + value = "helm_leather_raiddruid_b_01_orm.m2", + }, + { + fileId = "138736", + text = "helm_leather_raiddruid_b_01_scf.m2", + value = "helm_leather_raiddruid_b_01_scf.m2", + }, + { + fileId = "138737", + text = "helm_leather_raiddruid_b_01_scm.m2", + value = "helm_leather_raiddruid_b_01_scm.m2", + }, + { + fileId = "138738", + text = "helm_leather_raiddruid_b_01_taf.m2", + value = "helm_leather_raiddruid_b_01_taf.m2", + }, + { + fileId = "138739", + text = "helm_leather_raiddruid_b_01_tam.m2", + value = "helm_leather_raiddruid_b_01_tam.m2", + }, + { + fileId = "138740", + text = "helm_leather_raiddruid_b_01_trf.m2", + value = "helm_leather_raiddruid_b_01_trf.m2", + }, + { + fileId = "138741", + text = "helm_leather_raiddruid_b_01_trm.m2", + value = "helm_leather_raiddruid_b_01_trm.m2", + }, + { + fileId = "138746", + text = "helm_leather_raiddruid_c_01_bef.m2", + value = "helm_leather_raiddruid_c_01_bef.m2", + }, + { + fileId = "138747", + text = "helm_leather_raiddruid_c_01_bem.m2", + value = "helm_leather_raiddruid_c_01_bem.m2", + }, + { + fileId = "138748", + text = "helm_leather_raiddruid_c_01_drf.m2", + value = "helm_leather_raiddruid_c_01_drf.m2", + }, + { + fileId = "138749", + text = "helm_leather_raiddruid_c_01_drm.m2", + value = "helm_leather_raiddruid_c_01_drm.m2", + }, + { + fileId = "138750", + text = "helm_leather_raiddruid_c_01_dwf.m2", + value = "helm_leather_raiddruid_c_01_dwf.m2", + }, + { + fileId = "138751", + text = "helm_leather_raiddruid_c_01_dwm.m2", + value = "helm_leather_raiddruid_c_01_dwm.m2", + }, + { + fileId = "138752", + text = "helm_leather_raiddruid_c_01_gnf.m2", + value = "helm_leather_raiddruid_c_01_gnf.m2", + }, + { + fileId = "138753", + text = "helm_leather_raiddruid_c_01_gnm.m2", + value = "helm_leather_raiddruid_c_01_gnm.m2", + }, + { + fileId = "138754", + text = "helm_leather_raiddruid_c_01_gof.m2", + value = "helm_leather_raiddruid_c_01_gof.m2", + }, + { + fileId = "138755", + text = "helm_leather_raiddruid_c_01_gom.m2", + value = "helm_leather_raiddruid_c_01_gom.m2", + }, + { + fileId = "138756", + text = "helm_leather_raiddruid_c_01_huf.m2", + value = "helm_leather_raiddruid_c_01_huf.m2", + }, + { + fileId = "138757", + text = "helm_leather_raiddruid_c_01_hum.m2", + value = "helm_leather_raiddruid_c_01_hum.m2", + }, + { + fileId = "138758", + text = "helm_leather_raiddruid_c_01_nif.m2", + value = "helm_leather_raiddruid_c_01_nif.m2", + }, + { + fileId = "138759", + text = "helm_leather_raiddruid_c_01_nim.m2", + value = "helm_leather_raiddruid_c_01_nim.m2", + }, + { + fileId = "138760", + text = "helm_leather_raiddruid_c_01_orf.m2", + value = "helm_leather_raiddruid_c_01_orf.m2", + }, + { + fileId = "138761", + text = "helm_leather_raiddruid_c_01_orm.m2", + value = "helm_leather_raiddruid_c_01_orm.m2", + }, + { + fileId = "138762", + text = "helm_leather_raiddruid_c_01_scf.m2", + value = "helm_leather_raiddruid_c_01_scf.m2", + }, + { + fileId = "138763", + text = "helm_leather_raiddruid_c_01_scm.m2", + value = "helm_leather_raiddruid_c_01_scm.m2", + }, + { + fileId = "138764", + text = "helm_leather_raiddruid_c_01_taf.m2", + value = "helm_leather_raiddruid_c_01_taf.m2", + }, + { + fileId = "138765", + text = "helm_leather_raiddruid_c_01_tam.m2", + value = "helm_leather_raiddruid_c_01_tam.m2", + }, + { + fileId = "138766", + text = "helm_leather_raiddruid_c_01_trf.m2", + value = "helm_leather_raiddruid_c_01_trf.m2", + }, + { + fileId = "138767", + text = "helm_leather_raiddruid_c_01_trm.m2", + value = "helm_leather_raiddruid_c_01_trm.m2", + }, + { + fileId = "138769", + text = "helm_leather_raiddruid_d_01_bef.m2", + value = "helm_leather_raiddruid_d_01_bef.m2", + }, + { + fileId = "138770", + text = "helm_leather_raiddruid_d_01_bem.m2", + value = "helm_leather_raiddruid_d_01_bem.m2", + }, + { + fileId = "138771", + text = "helm_leather_raiddruid_d_01_drf.m2", + value = "helm_leather_raiddruid_d_01_drf.m2", + }, + { + fileId = "138772", + text = "helm_leather_raiddruid_d_01_drm.m2", + value = "helm_leather_raiddruid_d_01_drm.m2", + }, + { + fileId = "138773", + text = "helm_leather_raiddruid_d_01_dwf.m2", + value = "helm_leather_raiddruid_d_01_dwf.m2", + }, + { + fileId = "138774", + text = "helm_leather_raiddruid_d_01_dwm.m2", + value = "helm_leather_raiddruid_d_01_dwm.m2", + }, + { + fileId = "138775", + text = "helm_leather_raiddruid_d_01_gnf.m2", + value = "helm_leather_raiddruid_d_01_gnf.m2", + }, + { + fileId = "138776", + text = "helm_leather_raiddruid_d_01_gnm.m2", + value = "helm_leather_raiddruid_d_01_gnm.m2", + }, + { + fileId = "138777", + text = "helm_leather_raiddruid_d_01_huf.m2", + value = "helm_leather_raiddruid_d_01_huf.m2", + }, + { + fileId = "138778", + text = "helm_leather_raiddruid_d_01_hum.m2", + value = "helm_leather_raiddruid_d_01_hum.m2", + }, + { + fileId = "138779", + text = "helm_leather_raiddruid_d_01_nif.m2", + value = "helm_leather_raiddruid_d_01_nif.m2", + }, + { + fileId = "138780", + text = "helm_leather_raiddruid_d_01_nim.m2", + value = "helm_leather_raiddruid_d_01_nim.m2", + }, + { + fileId = "138781", + text = "helm_leather_raiddruid_d_01_orf.m2", + value = "helm_leather_raiddruid_d_01_orf.m2", + }, + { + fileId = "138782", + text = "helm_leather_raiddruid_d_01_orm.m2", + value = "helm_leather_raiddruid_d_01_orm.m2", + }, + { + fileId = "138783", + text = "helm_leather_raiddruid_d_01_scf.m2", + value = "helm_leather_raiddruid_d_01_scf.m2", + }, + { + fileId = "138784", + text = "helm_leather_raiddruid_d_01_scm.m2", + value = "helm_leather_raiddruid_d_01_scm.m2", + }, + { + fileId = "138785", + text = "helm_leather_raiddruid_d_01_taf.m2", + value = "helm_leather_raiddruid_d_01_taf.m2", + }, + { + fileId = "138786", + text = "helm_leather_raiddruid_d_01_tam.m2", + value = "helm_leather_raiddruid_d_01_tam.m2", + }, + { + fileId = "138787", + text = "helm_leather_raiddruid_d_01_trf.m2", + value = "helm_leather_raiddruid_d_01_trf.m2", + }, + { + fileId = "138788", + text = "helm_leather_raiddruid_d_01_trm.m2", + value = "helm_leather_raiddruid_d_01_trm.m2", + }, + { + fileId = "138791", + text = "helm_leather_raiddruid_e_01_bef.m2", + value = "helm_leather_raiddruid_e_01_bef.m2", + }, + { + fileId = "138792", + text = "helm_leather_raiddruid_e_01_bem.m2", + value = "helm_leather_raiddruid_e_01_bem.m2", + }, + { + fileId = "138793", + text = "helm_leather_raiddruid_e_01_drf.m2", + value = "helm_leather_raiddruid_e_01_drf.m2", + }, + { + fileId = "138794", + text = "helm_leather_raiddruid_e_01_drm.m2", + value = "helm_leather_raiddruid_e_01_drm.m2", + }, + { + fileId = "138795", + text = "helm_leather_raiddruid_e_01_dwf.m2", + value = "helm_leather_raiddruid_e_01_dwf.m2", + }, + { + fileId = "138796", + text = "helm_leather_raiddruid_e_01_dwm.m2", + value = "helm_leather_raiddruid_e_01_dwm.m2", + }, + { + fileId = "138797", + text = "helm_leather_raiddruid_e_01_gnf.m2", + value = "helm_leather_raiddruid_e_01_gnf.m2", + }, + { + fileId = "138798", + text = "helm_leather_raiddruid_e_01_gnm.m2", + value = "helm_leather_raiddruid_e_01_gnm.m2", + }, + { + fileId = "138799", + text = "helm_leather_raiddruid_e_01_gof.m2", + value = "helm_leather_raiddruid_e_01_gof.m2", + }, + { + fileId = "138800", + text = "helm_leather_raiddruid_e_01_gom.m2", + value = "helm_leather_raiddruid_e_01_gom.m2", + }, + { + fileId = "138801", + text = "helm_leather_raiddruid_e_01_huf.m2", + value = "helm_leather_raiddruid_e_01_huf.m2", + }, + { + fileId = "138802", + text = "helm_leather_raiddruid_e_01_hum.m2", + value = "helm_leather_raiddruid_e_01_hum.m2", + }, + { + fileId = "138803", + text = "helm_leather_raiddruid_e_01_nif.m2", + value = "helm_leather_raiddruid_e_01_nif.m2", + }, + { + fileId = "138804", + text = "helm_leather_raiddruid_e_01_nim.m2", + value = "helm_leather_raiddruid_e_01_nim.m2", + }, + { + fileId = "138805", + text = "helm_leather_raiddruid_e_01_orf.m2", + value = "helm_leather_raiddruid_e_01_orf.m2", + }, + { + fileId = "138806", + text = "helm_leather_raiddruid_e_01_orm.m2", + value = "helm_leather_raiddruid_e_01_orm.m2", + }, + { + fileId = "138807", + text = "helm_leather_raiddruid_e_01_scf.m2", + value = "helm_leather_raiddruid_e_01_scf.m2", + }, + { + fileId = "138808", + text = "helm_leather_raiddruid_e_01_scm.m2", + value = "helm_leather_raiddruid_e_01_scm.m2", + }, + { + fileId = "138809", + text = "helm_leather_raiddruid_e_01_taf.m2", + value = "helm_leather_raiddruid_e_01_taf.m2", + }, + { + fileId = "138810", + text = "helm_leather_raiddruid_e_01_tam.m2", + value = "helm_leather_raiddruid_e_01_tam.m2", + }, + { + fileId = "138811", + text = "helm_leather_raiddruid_e_01_trf.m2", + value = "helm_leather_raiddruid_e_01_trf.m2", + }, + { + fileId = "138812", + text = "helm_leather_raiddruid_e_01_trm.m2", + value = "helm_leather_raiddruid_e_01_trm.m2", + }, + { + fileId = "138816", + text = "helm_leather_raiddruid_f_01_bef.m2", + value = "helm_leather_raiddruid_f_01_bef.m2", + }, + { + fileId = "138817", + text = "helm_leather_raiddruid_f_01_bem.m2", + value = "helm_leather_raiddruid_f_01_bem.m2", + }, + { + fileId = "138818", + text = "helm_leather_raiddruid_f_01_drf.m2", + value = "helm_leather_raiddruid_f_01_drf.m2", + }, + { + fileId = "138819", + text = "helm_leather_raiddruid_f_01_drm.m2", + value = "helm_leather_raiddruid_f_01_drm.m2", + }, + { + fileId = "138820", + text = "helm_leather_raiddruid_f_01_dwf.m2", + value = "helm_leather_raiddruid_f_01_dwf.m2", + }, + { + fileId = "138821", + text = "helm_leather_raiddruid_f_01_dwm.m2", + value = "helm_leather_raiddruid_f_01_dwm.m2", + }, + { + fileId = "138822", + text = "helm_leather_raiddruid_f_01_gnf.m2", + value = "helm_leather_raiddruid_f_01_gnf.m2", + }, + { + fileId = "138823", + text = "helm_leather_raiddruid_f_01_gnm.m2", + value = "helm_leather_raiddruid_f_01_gnm.m2", + }, + { + fileId = "138824", + text = "helm_leather_raiddruid_f_01_gof.m2", + value = "helm_leather_raiddruid_f_01_gof.m2", + }, + { + fileId = "138825", + text = "helm_leather_raiddruid_f_01_gom.m2", + value = "helm_leather_raiddruid_f_01_gom.m2", + }, + { + fileId = "138826", + text = "helm_leather_raiddruid_f_01_huf.m2", + value = "helm_leather_raiddruid_f_01_huf.m2", + }, + { + fileId = "138827", + text = "helm_leather_raiddruid_f_01_hum.m2", + value = "helm_leather_raiddruid_f_01_hum.m2", + }, + { + fileId = "138828", + text = "helm_leather_raiddruid_f_01_nif.m2", + value = "helm_leather_raiddruid_f_01_nif.m2", + }, + { + fileId = "138829", + text = "helm_leather_raiddruid_f_01_nim.m2", + value = "helm_leather_raiddruid_f_01_nim.m2", + }, + { + fileId = "138830", + text = "helm_leather_raiddruid_f_01_orf.m2", + value = "helm_leather_raiddruid_f_01_orf.m2", + }, + { + fileId = "138831", + text = "helm_leather_raiddruid_f_01_orm.m2", + value = "helm_leather_raiddruid_f_01_orm.m2", + }, + { + fileId = "138832", + text = "helm_leather_raiddruid_f_01_scf.m2", + value = "helm_leather_raiddruid_f_01_scf.m2", + }, + { + fileId = "138833", + text = "helm_leather_raiddruid_f_01_scm.m2", + value = "helm_leather_raiddruid_f_01_scm.m2", + }, + { + fileId = "138834", + text = "helm_leather_raiddruid_f_01_taf.m2", + value = "helm_leather_raiddruid_f_01_taf.m2", + }, + { + fileId = "138835", + text = "helm_leather_raiddruid_f_01_tam.m2", + value = "helm_leather_raiddruid_f_01_tam.m2", + }, + { + fileId = "138836", + text = "helm_leather_raiddruid_f_01_trf.m2", + value = "helm_leather_raiddruid_f_01_trf.m2", + }, + { + fileId = "138837", + text = "helm_leather_raiddruid_f_01_trm.m2", + value = "helm_leather_raiddruid_f_01_trm.m2", + }, + { + fileId = "249185", + text = "helm_leather_raiddruid_g_01_bef.m2", + value = "helm_leather_raiddruid_g_01_bef.m2", + }, + { + fileId = "249186", + text = "helm_leather_raiddruid_g_01_bem.m2", + value = "helm_leather_raiddruid_g_01_bem.m2", + }, + { + fileId = "249187", + text = "helm_leather_raiddruid_g_01_drf.m2", + value = "helm_leather_raiddruid_g_01_drf.m2", + }, + { + fileId = "249188", + text = "helm_leather_raiddruid_g_01_drm.m2", + value = "helm_leather_raiddruid_g_01_drm.m2", + }, + { + fileId = "249189", + text = "helm_leather_raiddruid_g_01_dwf.m2", + value = "helm_leather_raiddruid_g_01_dwf.m2", + }, + { + fileId = "249190", + text = "helm_leather_raiddruid_g_01_dwm.m2", + value = "helm_leather_raiddruid_g_01_dwm.m2", + }, + { + fileId = "249191", + text = "helm_leather_raiddruid_g_01_gnf.m2", + value = "helm_leather_raiddruid_g_01_gnf.m2", + }, + { + fileId = "249192", + text = "helm_leather_raiddruid_g_01_gnm.m2", + value = "helm_leather_raiddruid_g_01_gnm.m2", + }, + { + fileId = "249193", + text = "helm_leather_raiddruid_g_01_gof.m2", + value = "helm_leather_raiddruid_g_01_gof.m2", + }, + { + fileId = "249194", + text = "helm_leather_raiddruid_g_01_gom.m2", + value = "helm_leather_raiddruid_g_01_gom.m2", + }, + { + fileId = "249195", + text = "helm_leather_raiddruid_g_01_huf.m2", + value = "helm_leather_raiddruid_g_01_huf.m2", + }, + { + fileId = "249196", + text = "helm_leather_raiddruid_g_01_hum.m2", + value = "helm_leather_raiddruid_g_01_hum.m2", + }, + { + fileId = "249197", + text = "helm_leather_raiddruid_g_01_nif.m2", + value = "helm_leather_raiddruid_g_01_nif.m2", + }, + { + fileId = "249198", + text = "helm_leather_raiddruid_g_01_nim.m2", + value = "helm_leather_raiddruid_g_01_nim.m2", + }, + { + fileId = "249199", + text = "helm_leather_raiddruid_g_01_orf.m2", + value = "helm_leather_raiddruid_g_01_orf.m2", + }, + { + fileId = "249200", + text = "helm_leather_raiddruid_g_01_orm.m2", + value = "helm_leather_raiddruid_g_01_orm.m2", + }, + { + fileId = "249201", + text = "helm_leather_raiddruid_g_01_scf.m2", + value = "helm_leather_raiddruid_g_01_scf.m2", + }, + { + fileId = "249202", + text = "helm_leather_raiddruid_g_01_scm.m2", + value = "helm_leather_raiddruid_g_01_scm.m2", + }, + { + fileId = "249203", + text = "helm_leather_raiddruid_g_01_taf.m2", + value = "helm_leather_raiddruid_g_01_taf.m2", + }, + { + fileId = "249204", + text = "helm_leather_raiddruid_g_01_tam.m2", + value = "helm_leather_raiddruid_g_01_tam.m2", + }, + { + fileId = "249205", + text = "helm_leather_raiddruid_g_01_trf.m2", + value = "helm_leather_raiddruid_g_01_trf.m2", + }, + { + fileId = "249206", + text = "helm_leather_raiddruid_g_01_trm.m2", + value = "helm_leather_raiddruid_g_01_trm.m2", + }, + { + fileId = "336795", + text = "helm_leather_raiddruid_h_01_bef.m2", + value = "helm_leather_raiddruid_h_01_bef.m2", + }, + { + fileId = "336796", + text = "helm_leather_raiddruid_h_01_bem.m2", + value = "helm_leather_raiddruid_h_01_bem.m2", + }, + { + fileId = "336797", + text = "helm_leather_raiddruid_h_01_drf.m2", + value = "helm_leather_raiddruid_h_01_drf.m2", + }, + { + fileId = "336798", + text = "helm_leather_raiddruid_h_01_drm.m2", + value = "helm_leather_raiddruid_h_01_drm.m2", + }, + { + fileId = "336799", + text = "helm_leather_raiddruid_h_01_dwf.m2", + value = "helm_leather_raiddruid_h_01_dwf.m2", + }, + { + fileId = "336800", + text = "helm_leather_raiddruid_h_01_dwm.m2", + value = "helm_leather_raiddruid_h_01_dwm.m2", + }, + { + fileId = "336801", + text = "helm_leather_raiddruid_h_01_gnf.m2", + value = "helm_leather_raiddruid_h_01_gnf.m2", + }, + { + fileId = "336802", + text = "helm_leather_raiddruid_h_01_gnm.m2", + value = "helm_leather_raiddruid_h_01_gnm.m2", + }, + { + fileId = "336803", + text = "helm_leather_raiddruid_h_01_gof.m2", + value = "helm_leather_raiddruid_h_01_gof.m2", + }, + { + fileId = "336804", + text = "helm_leather_raiddruid_h_01_gom.m2", + value = "helm_leather_raiddruid_h_01_gom.m2", + }, + { + fileId = "336805", + text = "helm_leather_raiddruid_h_01_huf.m2", + value = "helm_leather_raiddruid_h_01_huf.m2", + }, + { + fileId = "336806", + text = "helm_leather_raiddruid_h_01_hum.m2", + value = "helm_leather_raiddruid_h_01_hum.m2", + }, + { + fileId = "336807", + text = "helm_leather_raiddruid_h_01_nif.m2", + value = "helm_leather_raiddruid_h_01_nif.m2", + }, + { + fileId = "336808", + text = "helm_leather_raiddruid_h_01_nim.m2", + value = "helm_leather_raiddruid_h_01_nim.m2", + }, + { + fileId = "336809", + text = "helm_leather_raiddruid_h_01_orf.m2", + value = "helm_leather_raiddruid_h_01_orf.m2", + }, + { + fileId = "336810", + text = "helm_leather_raiddruid_h_01_orm.m2", + value = "helm_leather_raiddruid_h_01_orm.m2", + }, + { + fileId = "336811", + text = "helm_leather_raiddruid_h_01_scf.m2", + value = "helm_leather_raiddruid_h_01_scf.m2", + }, + { + fileId = "336812", + text = "helm_leather_raiddruid_h_01_scm.m2", + value = "helm_leather_raiddruid_h_01_scm.m2", + }, + { + fileId = "336813", + text = "helm_leather_raiddruid_h_01_taf.m2", + value = "helm_leather_raiddruid_h_01_taf.m2", + }, + { + fileId = "336814", + text = "helm_leather_raiddruid_h_01_tam.m2", + value = "helm_leather_raiddruid_h_01_tam.m2", + }, + { + fileId = "336815", + text = "helm_leather_raiddruid_h_01_trf.m2", + value = "helm_leather_raiddruid_h_01_trf.m2", + }, + { + fileId = "336816", + text = "helm_leather_raiddruid_h_01_trm.m2", + value = "helm_leather_raiddruid_h_01_trm.m2", + }, + { + fileId = "138842", + text = "helm_leather_raidrogue_a_01_bef.m2", + value = "helm_leather_raidrogue_a_01_bef.m2", + }, + { + fileId = "138843", + text = "helm_leather_raidrogue_a_01_bem.m2", + value = "helm_leather_raidrogue_a_01_bem.m2", + }, + { + fileId = "138844", + text = "helm_leather_raidrogue_a_01_drf.m2", + value = "helm_leather_raidrogue_a_01_drf.m2", + }, + { + fileId = "138845", + text = "helm_leather_raidrogue_a_01_drm.m2", + value = "helm_leather_raidrogue_a_01_drm.m2", + }, + { + fileId = "138846", + text = "helm_leather_raidrogue_a_01_dwf.m2", + value = "helm_leather_raidrogue_a_01_dwf.m2", + }, + { + fileId = "138847", + text = "helm_leather_raidrogue_a_01_dwm.m2", + value = "helm_leather_raidrogue_a_01_dwm.m2", + }, + { + fileId = "138848", + text = "helm_leather_raidrogue_a_01_gnf.m2", + value = "helm_leather_raidrogue_a_01_gnf.m2", + }, + { + fileId = "138849", + text = "helm_leather_raidrogue_a_01_gnm.m2", + value = "helm_leather_raidrogue_a_01_gnm.m2", + }, + { + fileId = "138850", + text = "helm_leather_raidrogue_a_01_gof.m2", + value = "helm_leather_raidrogue_a_01_gof.m2", + }, + { + fileId = "138851", + text = "helm_leather_raidrogue_a_01_gom.m2", + value = "helm_leather_raidrogue_a_01_gom.m2", + }, + { + fileId = "138852", + text = "helm_leather_raidrogue_a_01_huf.m2", + value = "helm_leather_raidrogue_a_01_huf.m2", + }, + { + fileId = "138853", + text = "helm_leather_raidrogue_a_01_hum.m2", + value = "helm_leather_raidrogue_a_01_hum.m2", + }, + { + fileId = "138854", + text = "helm_leather_raidrogue_a_01_nif.m2", + value = "helm_leather_raidrogue_a_01_nif.m2", + }, + { + fileId = "138855", + text = "helm_leather_raidrogue_a_01_nim.m2", + value = "helm_leather_raidrogue_a_01_nim.m2", + }, + { + fileId = "138856", + text = "helm_leather_raidrogue_a_01_orf.m2", + value = "helm_leather_raidrogue_a_01_orf.m2", + }, + { + fileId = "138857", + text = "helm_leather_raidrogue_a_01_orm.m2", + value = "helm_leather_raidrogue_a_01_orm.m2", + }, + { + fileId = "138858", + text = "helm_leather_raidrogue_a_01_scf.m2", + value = "helm_leather_raidrogue_a_01_scf.m2", + }, + { + fileId = "138859", + text = "helm_leather_raidrogue_a_01_scm.m2", + value = "helm_leather_raidrogue_a_01_scm.m2", + }, + { + fileId = "138860", + text = "helm_leather_raidrogue_a_01_taf.m2", + value = "helm_leather_raidrogue_a_01_taf.m2", + }, + { + fileId = "138861", + text = "helm_leather_raidrogue_a_01_tam.m2", + value = "helm_leather_raidrogue_a_01_tam.m2", + }, + { + fileId = "138862", + text = "helm_leather_raidrogue_a_01_trf.m2", + value = "helm_leather_raidrogue_a_01_trf.m2", + }, + { + fileId = "138863", + text = "helm_leather_raidrogue_a_01_trm.m2", + value = "helm_leather_raidrogue_a_01_trm.m2", + }, + { + fileId = "138867", + text = "helm_leather_raidrogue_b_01_bef.m2", + value = "helm_leather_raidrogue_b_01_bef.m2", + }, + { + fileId = "138868", + text = "helm_leather_raidrogue_b_01_bem.m2", + value = "helm_leather_raidrogue_b_01_bem.m2", + }, + { + fileId = "138869", + text = "helm_leather_raidrogue_b_01_drf.m2", + value = "helm_leather_raidrogue_b_01_drf.m2", + }, + { + fileId = "138870", + text = "helm_leather_raidrogue_b_01_drm.m2", + value = "helm_leather_raidrogue_b_01_drm.m2", + }, + { + fileId = "138871", + text = "helm_leather_raidrogue_b_01_dwf.m2", + value = "helm_leather_raidrogue_b_01_dwf.m2", + }, + { + fileId = "138872", + text = "helm_leather_raidrogue_b_01_dwm.m2", + value = "helm_leather_raidrogue_b_01_dwm.m2", + }, + { + fileId = "138873", + text = "helm_leather_raidrogue_b_01_gnf.m2", + value = "helm_leather_raidrogue_b_01_gnf.m2", + }, + { + fileId = "138874", + text = "helm_leather_raidrogue_b_01_gnm.m2", + value = "helm_leather_raidrogue_b_01_gnm.m2", + }, + { + fileId = "138875", + text = "helm_leather_raidrogue_b_01_gof.m2", + value = "helm_leather_raidrogue_b_01_gof.m2", + }, + { + fileId = "138876", + text = "helm_leather_raidrogue_b_01_gom.m2", + value = "helm_leather_raidrogue_b_01_gom.m2", + }, + { + fileId = "138877", + text = "helm_leather_raidrogue_b_01_huf.m2", + value = "helm_leather_raidrogue_b_01_huf.m2", + }, + { + fileId = "138878", + text = "helm_leather_raidrogue_b_01_hum.m2", + value = "helm_leather_raidrogue_b_01_hum.m2", + }, + { + fileId = "138879", + text = "helm_leather_raidrogue_b_01_nif.m2", + value = "helm_leather_raidrogue_b_01_nif.m2", + }, + { + fileId = "138880", + text = "helm_leather_raidrogue_b_01_nim.m2", + value = "helm_leather_raidrogue_b_01_nim.m2", + }, + { + fileId = "138881", + text = "helm_leather_raidrogue_b_01_orf.m2", + value = "helm_leather_raidrogue_b_01_orf.m2", + }, + { + fileId = "138882", + text = "helm_leather_raidrogue_b_01_orm.m2", + value = "helm_leather_raidrogue_b_01_orm.m2", + }, + { + fileId = "138883", + text = "helm_leather_raidrogue_b_01_scf.m2", + value = "helm_leather_raidrogue_b_01_scf.m2", + }, + { + fileId = "138884", + text = "helm_leather_raidrogue_b_01_scm.m2", + value = "helm_leather_raidrogue_b_01_scm.m2", + }, + { + fileId = "138885", + text = "helm_leather_raidrogue_b_01_taf.m2", + value = "helm_leather_raidrogue_b_01_taf.m2", + }, + { + fileId = "138886", + text = "helm_leather_raidrogue_b_01_tam.m2", + value = "helm_leather_raidrogue_b_01_tam.m2", + }, + { + fileId = "138887", + text = "helm_leather_raidrogue_b_01_trf.m2", + value = "helm_leather_raidrogue_b_01_trf.m2", + }, + { + fileId = "138888", + text = "helm_leather_raidrogue_b_01_trm.m2", + value = "helm_leather_raidrogue_b_01_trm.m2", + }, + { + fileId = "138893", + text = "helm_leather_raidrogue_c_01_bef.m2", + value = "helm_leather_raidrogue_c_01_bef.m2", + }, + { + fileId = "138894", + text = "helm_leather_raidrogue_c_01_bem.m2", + value = "helm_leather_raidrogue_c_01_bem.m2", + }, + { + fileId = "138895", + text = "helm_leather_raidrogue_c_01_drf.m2", + value = "helm_leather_raidrogue_c_01_drf.m2", + }, + { + fileId = "138896", + text = "helm_leather_raidrogue_c_01_drm.m2", + value = "helm_leather_raidrogue_c_01_drm.m2", + }, + { + fileId = "138897", + text = "helm_leather_raidrogue_c_01_dwf.m2", + value = "helm_leather_raidrogue_c_01_dwf.m2", + }, + { + fileId = "138898", + text = "helm_leather_raidrogue_c_01_dwm.m2", + value = "helm_leather_raidrogue_c_01_dwm.m2", + }, + { + fileId = "138899", + text = "helm_leather_raidrogue_c_01_gnf.m2", + value = "helm_leather_raidrogue_c_01_gnf.m2", + }, + { + fileId = "138900", + text = "helm_leather_raidrogue_c_01_gnm.m2", + value = "helm_leather_raidrogue_c_01_gnm.m2", + }, + { + fileId = "138901", + text = "helm_leather_raidrogue_c_01_gof.m2", + value = "helm_leather_raidrogue_c_01_gof.m2", + }, + { + fileId = "138902", + text = "helm_leather_raidrogue_c_01_gom.m2", + value = "helm_leather_raidrogue_c_01_gom.m2", + }, + { + fileId = "138903", + text = "helm_leather_raidrogue_c_01_huf.m2", + value = "helm_leather_raidrogue_c_01_huf.m2", + }, + { + fileId = "138904", + text = "helm_leather_raidrogue_c_01_hum.m2", + value = "helm_leather_raidrogue_c_01_hum.m2", + }, + { + fileId = "138905", + text = "helm_leather_raidrogue_c_01_nif.m2", + value = "helm_leather_raidrogue_c_01_nif.m2", + }, + { + fileId = "138906", + text = "helm_leather_raidrogue_c_01_nim.m2", + value = "helm_leather_raidrogue_c_01_nim.m2", + }, + { + fileId = "138907", + text = "helm_leather_raidrogue_c_01_orf.m2", + value = "helm_leather_raidrogue_c_01_orf.m2", + }, + { + fileId = "138908", + text = "helm_leather_raidrogue_c_01_orm.m2", + value = "helm_leather_raidrogue_c_01_orm.m2", + }, + { + fileId = "138909", + text = "helm_leather_raidrogue_c_01_scf.m2", + value = "helm_leather_raidrogue_c_01_scf.m2", + }, + { + fileId = "138910", + text = "helm_leather_raidrogue_c_01_scm.m2", + value = "helm_leather_raidrogue_c_01_scm.m2", + }, + { + fileId = "138911", + text = "helm_leather_raidrogue_c_01_taf.m2", + value = "helm_leather_raidrogue_c_01_taf.m2", + }, + { + fileId = "138912", + text = "helm_leather_raidrogue_c_01_tam.m2", + value = "helm_leather_raidrogue_c_01_tam.m2", + }, + { + fileId = "138913", + text = "helm_leather_raidrogue_c_01_trf.m2", + value = "helm_leather_raidrogue_c_01_trf.m2", + }, + { + fileId = "138914", + text = "helm_leather_raidrogue_c_01_trm.m2", + value = "helm_leather_raidrogue_c_01_trm.m2", + }, + { + fileId = "138918", + text = "helm_leather_raidrogue_d_01_bef.m2", + value = "helm_leather_raidrogue_d_01_bef.m2", + }, + { + fileId = "138919", + text = "helm_leather_raidrogue_d_01_bem.m2", + value = "helm_leather_raidrogue_d_01_bem.m2", + }, + { + fileId = "138920", + text = "helm_leather_raidrogue_d_01_drf.m2", + value = "helm_leather_raidrogue_d_01_drf.m2", + }, + { + fileId = "138921", + text = "helm_leather_raidrogue_d_01_drm.m2", + value = "helm_leather_raidrogue_d_01_drm.m2", + }, + { + fileId = "138922", + text = "helm_leather_raidrogue_d_01_dwf.m2", + value = "helm_leather_raidrogue_d_01_dwf.m2", + }, + { + fileId = "138923", + text = "helm_leather_raidrogue_d_01_dwm.m2", + value = "helm_leather_raidrogue_d_01_dwm.m2", + }, + { + fileId = "138924", + text = "helm_leather_raidrogue_d_01_gnf.m2", + value = "helm_leather_raidrogue_d_01_gnf.m2", + }, + { + fileId = "138925", + text = "helm_leather_raidrogue_d_01_gnm.m2", + value = "helm_leather_raidrogue_d_01_gnm.m2", + }, + { + fileId = "138926", + text = "helm_leather_raidrogue_d_01_gof.m2", + value = "helm_leather_raidrogue_d_01_gof.m2", + }, + { + fileId = "138927", + text = "helm_leather_raidrogue_d_01_gom.m2", + value = "helm_leather_raidrogue_d_01_gom.m2", + }, + { + fileId = "138928", + text = "helm_leather_raidrogue_d_01_huf.m2", + value = "helm_leather_raidrogue_d_01_huf.m2", + }, + { + fileId = "138929", + text = "helm_leather_raidrogue_d_01_hum.m2", + value = "helm_leather_raidrogue_d_01_hum.m2", + }, + { + fileId = "138930", + text = "helm_leather_raidrogue_d_01_nif.m2", + value = "helm_leather_raidrogue_d_01_nif.m2", + }, + { + fileId = "138931", + text = "helm_leather_raidrogue_d_01_nim.m2", + value = "helm_leather_raidrogue_d_01_nim.m2", + }, + { + fileId = "138932", + text = "helm_leather_raidrogue_d_01_orf.m2", + value = "helm_leather_raidrogue_d_01_orf.m2", + }, + { + fileId = "138933", + text = "helm_leather_raidrogue_d_01_orm.m2", + value = "helm_leather_raidrogue_d_01_orm.m2", + }, + { + fileId = "138934", + text = "helm_leather_raidrogue_d_01_scf.m2", + value = "helm_leather_raidrogue_d_01_scf.m2", + }, + { + fileId = "138935", + text = "helm_leather_raidrogue_d_01_scm.m2", + value = "helm_leather_raidrogue_d_01_scm.m2", + }, + { + fileId = "138936", + text = "helm_leather_raidrogue_d_01_taf.m2", + value = "helm_leather_raidrogue_d_01_taf.m2", + }, + { + fileId = "138937", + text = "helm_leather_raidrogue_d_01_tam.m2", + value = "helm_leather_raidrogue_d_01_tam.m2", + }, + { + fileId = "138938", + text = "helm_leather_raidrogue_d_01_trf.m2", + value = "helm_leather_raidrogue_d_01_trf.m2", + }, + { + fileId = "138939", + text = "helm_leather_raidrogue_d_01_trm.m2", + value = "helm_leather_raidrogue_d_01_trm.m2", + }, + { + fileId = "138941", + text = "helm_leather_raidrogue_e_01_bef.m2", + value = "helm_leather_raidrogue_e_01_bef.m2", + }, + { + fileId = "138942", + text = "helm_leather_raidrogue_e_01_bem.m2", + value = "helm_leather_raidrogue_e_01_bem.m2", + }, + { + fileId = "138943", + text = "helm_leather_raidrogue_e_01_drf.m2", + value = "helm_leather_raidrogue_e_01_drf.m2", + }, + { + fileId = "138944", + text = "helm_leather_raidrogue_e_01_drm.m2", + value = "helm_leather_raidrogue_e_01_drm.m2", + }, + { + fileId = "138945", + text = "helm_leather_raidrogue_e_01_dwf.m2", + value = "helm_leather_raidrogue_e_01_dwf.m2", + }, + { + fileId = "138946", + text = "helm_leather_raidrogue_e_01_dwm.m2", + value = "helm_leather_raidrogue_e_01_dwm.m2", + }, + { + fileId = "138947", + text = "helm_leather_raidrogue_e_01_gnf.m2", + value = "helm_leather_raidrogue_e_01_gnf.m2", + }, + { + fileId = "138948", + text = "helm_leather_raidrogue_e_01_gnm.m2", + value = "helm_leather_raidrogue_e_01_gnm.m2", + }, + { + fileId = "138949", + text = "helm_leather_raidrogue_e_01_gof.m2", + value = "helm_leather_raidrogue_e_01_gof.m2", + }, + { + fileId = "138950", + text = "helm_leather_raidrogue_e_01_gom.m2", + value = "helm_leather_raidrogue_e_01_gom.m2", + }, + { + fileId = "138951", + text = "helm_leather_raidrogue_e_01_huf.m2", + value = "helm_leather_raidrogue_e_01_huf.m2", + }, + { + fileId = "138952", + text = "helm_leather_raidrogue_e_01_hum.m2", + value = "helm_leather_raidrogue_e_01_hum.m2", + }, + { + fileId = "138953", + text = "helm_leather_raidrogue_e_01_nif.m2", + value = "helm_leather_raidrogue_e_01_nif.m2", + }, + { + fileId = "138954", + text = "helm_leather_raidrogue_e_01_nim.m2", + value = "helm_leather_raidrogue_e_01_nim.m2", + }, + { + fileId = "138955", + text = "helm_leather_raidrogue_e_01_orf.m2", + value = "helm_leather_raidrogue_e_01_orf.m2", + }, + { + fileId = "138956", + text = "helm_leather_raidrogue_e_01_orm.m2", + value = "helm_leather_raidrogue_e_01_orm.m2", + }, + { + fileId = "138957", + text = "helm_leather_raidrogue_e_01_scf.m2", + value = "helm_leather_raidrogue_e_01_scf.m2", + }, + { + fileId = "138958", + text = "helm_leather_raidrogue_e_01_scm.m2", + value = "helm_leather_raidrogue_e_01_scm.m2", + }, + { + fileId = "138959", + text = "helm_leather_raidrogue_e_01_taf.m2", + value = "helm_leather_raidrogue_e_01_taf.m2", + }, + { + fileId = "138960", + text = "helm_leather_raidrogue_e_01_tam.m2", + value = "helm_leather_raidrogue_e_01_tam.m2", + }, + { + fileId = "138961", + text = "helm_leather_raidrogue_e_01_trf.m2", + value = "helm_leather_raidrogue_e_01_trf.m2", + }, + { + fileId = "138962", + text = "helm_leather_raidrogue_e_01_trm.m2", + value = "helm_leather_raidrogue_e_01_trm.m2", + }, + { + fileId = "138967", + text = "helm_leather_raidrogue_f_01_bef.m2", + value = "helm_leather_raidrogue_f_01_bef.m2", + }, + { + fileId = "138968", + text = "helm_leather_raidrogue_f_01_bem.m2", + value = "helm_leather_raidrogue_f_01_bem.m2", + }, + { + fileId = "138969", + text = "helm_leather_raidrogue_f_01_drf.m2", + value = "helm_leather_raidrogue_f_01_drf.m2", + }, + { + fileId = "138970", + text = "helm_leather_raidrogue_f_01_drm.m2", + value = "helm_leather_raidrogue_f_01_drm.m2", + }, + { + fileId = "138971", + text = "helm_leather_raidrogue_f_01_dwf.m2", + value = "helm_leather_raidrogue_f_01_dwf.m2", + }, + { + fileId = "138972", + text = "helm_leather_raidrogue_f_01_dwm.m2", + value = "helm_leather_raidrogue_f_01_dwm.m2", + }, + { + fileId = "138973", + text = "helm_leather_raidrogue_f_01_gnf.m2", + value = "helm_leather_raidrogue_f_01_gnf.m2", + }, + { + fileId = "138974", + text = "helm_leather_raidrogue_f_01_gnm.m2", + value = "helm_leather_raidrogue_f_01_gnm.m2", + }, + { + fileId = "138975", + text = "helm_leather_raidrogue_f_01_gom.m2", + value = "helm_leather_raidrogue_f_01_gom.m2", + }, + { + fileId = "138976", + text = "helm_leather_raidrogue_f_01_huf.m2", + value = "helm_leather_raidrogue_f_01_huf.m2", + }, + { + fileId = "138977", + text = "helm_leather_raidrogue_f_01_hum.m2", + value = "helm_leather_raidrogue_f_01_hum.m2", + }, + { + fileId = "138978", + text = "helm_leather_raidrogue_f_01_nif.m2", + value = "helm_leather_raidrogue_f_01_nif.m2", + }, + { + fileId = "138979", + text = "helm_leather_raidrogue_f_01_nim.m2", + value = "helm_leather_raidrogue_f_01_nim.m2", + }, + { + fileId = "138980", + text = "helm_leather_raidrogue_f_01_orf.m2", + value = "helm_leather_raidrogue_f_01_orf.m2", + }, + { + fileId = "138981", + text = "helm_leather_raidrogue_f_01_orm.m2", + value = "helm_leather_raidrogue_f_01_orm.m2", + }, + { + fileId = "138982", + text = "helm_leather_raidrogue_f_01_scf.m2", + value = "helm_leather_raidrogue_f_01_scf.m2", + }, + { + fileId = "138983", + text = "helm_leather_raidrogue_f_01_scm.m2", + value = "helm_leather_raidrogue_f_01_scm.m2", + }, + { + fileId = "138984", + text = "helm_leather_raidrogue_f_01_taf.m2", + value = "helm_leather_raidrogue_f_01_taf.m2", + }, + { + fileId = "138985", + text = "helm_leather_raidrogue_f_01_tam.m2", + value = "helm_leather_raidrogue_f_01_tam.m2", + }, + { + fileId = "138986", + text = "helm_leather_raidrogue_f_01_trf.m2", + value = "helm_leather_raidrogue_f_01_trf.m2", + }, + { + fileId = "138987", + text = "helm_leather_raidrogue_f_01_trm.m2", + value = "helm_leather_raidrogue_f_01_trm.m2", + }, + { + fileId = "138991", + text = "helm_leather_raidrogue_g_01_bef.m2", + value = "helm_leather_raidrogue_g_01_bef.m2", + }, + { + fileId = "138992", + text = "helm_leather_raidrogue_g_01_bem.m2", + value = "helm_leather_raidrogue_g_01_bem.m2", + }, + { + fileId = "138993", + text = "helm_leather_raidrogue_g_01_drf.m2", + value = "helm_leather_raidrogue_g_01_drf.m2", + }, + { + fileId = "138994", + text = "helm_leather_raidrogue_g_01_drm.m2", + value = "helm_leather_raidrogue_g_01_drm.m2", + }, + { + fileId = "138995", + text = "helm_leather_raidrogue_g_01_dwf.m2", + value = "helm_leather_raidrogue_g_01_dwf.m2", + }, + { + fileId = "138996", + text = "helm_leather_raidrogue_g_01_dwm.m2", + value = "helm_leather_raidrogue_g_01_dwm.m2", + }, + { + fileId = "138997", + text = "helm_leather_raidrogue_g_01_gnf.m2", + value = "helm_leather_raidrogue_g_01_gnf.m2", + }, + { + fileId = "138998", + text = "helm_leather_raidrogue_g_01_gnm.m2", + value = "helm_leather_raidrogue_g_01_gnm.m2", + }, + { + fileId = "138999", + text = "helm_leather_raidrogue_g_01_gof.m2", + value = "helm_leather_raidrogue_g_01_gof.m2", + }, + { + fileId = "139000", + text = "helm_leather_raidrogue_g_01_gom.m2", + value = "helm_leather_raidrogue_g_01_gom.m2", + }, + { + fileId = "139001", + text = "helm_leather_raidrogue_g_01_huf.m2", + value = "helm_leather_raidrogue_g_01_huf.m2", + }, + { + fileId = "139002", + text = "helm_leather_raidrogue_g_01_hum.m2", + value = "helm_leather_raidrogue_g_01_hum.m2", + }, + { + fileId = "139003", + text = "helm_leather_raidrogue_g_01_nif.m2", + value = "helm_leather_raidrogue_g_01_nif.m2", + }, + { + fileId = "139004", + text = "helm_leather_raidrogue_g_01_nim.m2", + value = "helm_leather_raidrogue_g_01_nim.m2", + }, + { + fileId = "139005", + text = "helm_leather_raidrogue_g_01_orf.m2", + value = "helm_leather_raidrogue_g_01_orf.m2", + }, + { + fileId = "139006", + text = "helm_leather_raidrogue_g_01_orm.m2", + value = "helm_leather_raidrogue_g_01_orm.m2", + }, + { + fileId = "304116", + text = "helm_leather_raidrogue_g_01_scf.m2", + value = "helm_leather_raidrogue_g_01_scf.m2", + }, + { + fileId = "139007", + text = "helm_leather_raidrogue_g_01_scm.m2", + value = "helm_leather_raidrogue_g_01_scm.m2", + }, + { + fileId = "139008", + text = "helm_leather_raidrogue_g_01_taf.m2", + value = "helm_leather_raidrogue_g_01_taf.m2", + }, + { + fileId = "139009", + text = "helm_leather_raidrogue_g_01_tam.m2", + value = "helm_leather_raidrogue_g_01_tam.m2", + }, + { + fileId = "139010", + text = "helm_leather_raidrogue_g_01_trf.m2", + value = "helm_leather_raidrogue_g_01_trf.m2", + }, + { + fileId = "139011", + text = "helm_leather_raidrogue_g_01_trm.m2", + value = "helm_leather_raidrogue_g_01_trm.m2", + }, + { + fileId = "336820", + text = "helm_leather_raidrogue_h_01_bef.m2", + value = "helm_leather_raidrogue_h_01_bef.m2", + }, + { + fileId = "336821", + text = "helm_leather_raidrogue_h_01_bem.m2", + value = "helm_leather_raidrogue_h_01_bem.m2", + }, + { + fileId = "336822", + text = "helm_leather_raidrogue_h_01_drf.m2", + value = "helm_leather_raidrogue_h_01_drf.m2", + }, + { + fileId = "336823", + text = "helm_leather_raidrogue_h_01_drm.m2", + value = "helm_leather_raidrogue_h_01_drm.m2", + }, + { + fileId = "336824", + text = "helm_leather_raidrogue_h_01_dwf.m2", + value = "helm_leather_raidrogue_h_01_dwf.m2", + }, + { + fileId = "336825", + text = "helm_leather_raidrogue_h_01_dwm.m2", + value = "helm_leather_raidrogue_h_01_dwm.m2", + }, + { + fileId = "336826", + text = "helm_leather_raidrogue_h_01_gnf.m2", + value = "helm_leather_raidrogue_h_01_gnf.m2", + }, + { + fileId = "336827", + text = "helm_leather_raidrogue_h_01_gnm.m2", + value = "helm_leather_raidrogue_h_01_gnm.m2", + }, + { + fileId = "336828", + text = "helm_leather_raidrogue_h_01_gof.m2", + value = "helm_leather_raidrogue_h_01_gof.m2", + }, + { + fileId = "336829", + text = "helm_leather_raidrogue_h_01_gom.m2", + value = "helm_leather_raidrogue_h_01_gom.m2", + }, + { + fileId = "336830", + text = "helm_leather_raidrogue_h_01_huf.m2", + value = "helm_leather_raidrogue_h_01_huf.m2", + }, + { + fileId = "336831", + text = "helm_leather_raidrogue_h_01_hum.m2", + value = "helm_leather_raidrogue_h_01_hum.m2", + }, + { + fileId = "336832", + text = "helm_leather_raidrogue_h_01_nif.m2", + value = "helm_leather_raidrogue_h_01_nif.m2", + }, + { + fileId = "336833", + text = "helm_leather_raidrogue_h_01_nim.m2", + value = "helm_leather_raidrogue_h_01_nim.m2", + }, + { + fileId = "336834", + text = "helm_leather_raidrogue_h_01_orf.m2", + value = "helm_leather_raidrogue_h_01_orf.m2", + }, + { + fileId = "336835", + text = "helm_leather_raidrogue_h_01_orm.m2", + value = "helm_leather_raidrogue_h_01_orm.m2", + }, + { + fileId = "336836", + text = "helm_leather_raidrogue_h_01_scf.m2", + value = "helm_leather_raidrogue_h_01_scf.m2", + }, + { + fileId = "336837", + text = "helm_leather_raidrogue_h_01_scm.m2", + value = "helm_leather_raidrogue_h_01_scm.m2", + }, + { + fileId = "336838", + text = "helm_leather_raidrogue_h_01_taf.m2", + value = "helm_leather_raidrogue_h_01_taf.m2", + }, + { + fileId = "336839", + text = "helm_leather_raidrogue_h_01_tam.m2", + value = "helm_leather_raidrogue_h_01_tam.m2", + }, + { + fileId = "336840", + text = "helm_leather_raidrogue_h_01_trf.m2", + value = "helm_leather_raidrogue_h_01_trf.m2", + }, + { + fileId = "336841", + text = "helm_leather_raidrogue_h_01_trm.m2", + value = "helm_leather_raidrogue_h_01_trm.m2", + }, + { + fileId = "139018", + text = "helm_leather_sunwell_d_01_bef.m2", + value = "helm_leather_sunwell_d_01_bef.m2", + }, + { + fileId = "139019", + text = "helm_leather_sunwell_d_01_bem.m2", + value = "helm_leather_sunwell_d_01_bem.m2", + }, + { + fileId = "139020", + text = "helm_leather_sunwell_d_01_drf.m2", + value = "helm_leather_sunwell_d_01_drf.m2", + }, + { + fileId = "139021", + text = "helm_leather_sunwell_d_01_drm.m2", + value = "helm_leather_sunwell_d_01_drm.m2", + }, + { + fileId = "139022", + text = "helm_leather_sunwell_d_01_dwf.m2", + value = "helm_leather_sunwell_d_01_dwf.m2", + }, + { + fileId = "139023", + text = "helm_leather_sunwell_d_01_dwm.m2", + value = "helm_leather_sunwell_d_01_dwm.m2", + }, + { + fileId = "139024", + text = "helm_leather_sunwell_d_01_gnf.m2", + value = "helm_leather_sunwell_d_01_gnf.m2", + }, + { + fileId = "139025", + text = "helm_leather_sunwell_d_01_gnm.m2", + value = "helm_leather_sunwell_d_01_gnm.m2", + }, + { + fileId = "139026", + text = "helm_leather_sunwell_d_01_gof.m2", + value = "helm_leather_sunwell_d_01_gof.m2", + }, + { + fileId = "139027", + text = "helm_leather_sunwell_d_01_gom.m2", + value = "helm_leather_sunwell_d_01_gom.m2", + }, + { + fileId = "139028", + text = "helm_leather_sunwell_d_01_huf.m2", + value = "helm_leather_sunwell_d_01_huf.m2", + }, + { + fileId = "139029", + text = "helm_leather_sunwell_d_01_hum.m2", + value = "helm_leather_sunwell_d_01_hum.m2", + }, + { + fileId = "139030", + text = "helm_leather_sunwell_d_01_nif.m2", + value = "helm_leather_sunwell_d_01_nif.m2", + }, + { + fileId = "139031", + text = "helm_leather_sunwell_d_01_nim.m2", + value = "helm_leather_sunwell_d_01_nim.m2", + }, + { + fileId = "139032", + text = "helm_leather_sunwell_d_01_orf.m2", + value = "helm_leather_sunwell_d_01_orf.m2", + }, + { + fileId = "139033", + text = "helm_leather_sunwell_d_01_orm.m2", + value = "helm_leather_sunwell_d_01_orm.m2", + }, + { + fileId = "139034", + text = "helm_leather_sunwell_d_01_scf.m2", + value = "helm_leather_sunwell_d_01_scf.m2", + }, + { + fileId = "139035", + text = "helm_leather_sunwell_d_01_scm.m2", + value = "helm_leather_sunwell_d_01_scm.m2", + }, + { + fileId = "139036", + text = "helm_leather_sunwell_d_01_taf.m2", + value = "helm_leather_sunwell_d_01_taf.m2", + }, + { + fileId = "139037", + text = "helm_leather_sunwell_d_01_tam.m2", + value = "helm_leather_sunwell_d_01_tam.m2", + }, + { + fileId = "139038", + text = "helm_leather_sunwell_d_01_trf.m2", + value = "helm_leather_sunwell_d_01_trf.m2", + }, + { + fileId = "139039", + text = "helm_leather_sunwell_d_01_trm.m2", + value = "helm_leather_sunwell_d_01_trm.m2", + }, + { + fileId = "237943", + text = "helm_leather_tuskarr_01_tum.m2", + value = "helm_leather_tuskarr_01_tum.m2", + }, + { + fileId = "237945", + text = "helm_leather_tuskarr_02_tum.m2", + value = "helm_leather_tuskarr_02_tum.m2", + }, + { + fileId = "237947", + text = "helm_leather_tuskarr_03_tum.m2", + value = "helm_leather_tuskarr_03_tum.m2", + }, + { + fileId = "237949", + text = "helm_leather_tuskarr_04_tum.m2", + value = "helm_leather_tuskarr_04_tum.m2", + }, + { + fileId = "139044", + text = "helm_leather_zulaman_d_01_bef.m2", + value = "helm_leather_zulaman_d_01_bef.m2", + }, + { + fileId = "139045", + text = "helm_leather_zulaman_d_01_bem.m2", + value = "helm_leather_zulaman_d_01_bem.m2", + }, + { + fileId = "139046", + text = "helm_leather_zulaman_d_01_drf.m2", + value = "helm_leather_zulaman_d_01_drf.m2", + }, + { + fileId = "139047", + text = "helm_leather_zulaman_d_01_drm.m2", + value = "helm_leather_zulaman_d_01_drm.m2", + }, + { + fileId = "139048", + text = "helm_leather_zulaman_d_01_dwf.m2", + value = "helm_leather_zulaman_d_01_dwf.m2", + }, + { + fileId = "139049", + text = "helm_leather_zulaman_d_01_dwm.m2", + value = "helm_leather_zulaman_d_01_dwm.m2", + }, + { + fileId = "139050", + text = "helm_leather_zulaman_d_01_gnf.m2", + value = "helm_leather_zulaman_d_01_gnf.m2", + }, + { + fileId = "139051", + text = "helm_leather_zulaman_d_01_gnm.m2", + value = "helm_leather_zulaman_d_01_gnm.m2", + }, + { + fileId = "139052", + text = "helm_leather_zulaman_d_01_huf.m2", + value = "helm_leather_zulaman_d_01_huf.m2", + }, + { + fileId = "139053", + text = "helm_leather_zulaman_d_01_hum.m2", + value = "helm_leather_zulaman_d_01_hum.m2", + }, + { + fileId = "139054", + text = "helm_leather_zulaman_d_01_nif.m2", + value = "helm_leather_zulaman_d_01_nif.m2", + }, + { + fileId = "139055", + text = "helm_leather_zulaman_d_01_nim.m2", + value = "helm_leather_zulaman_d_01_nim.m2", + }, + { + fileId = "139056", + text = "helm_leather_zulaman_d_01_orf.m2", + value = "helm_leather_zulaman_d_01_orf.m2", + }, + { + fileId = "139057", + text = "helm_leather_zulaman_d_01_orm.m2", + value = "helm_leather_zulaman_d_01_orm.m2", + }, + { + fileId = "139058", + text = "helm_leather_zulaman_d_01_scf.m2", + value = "helm_leather_zulaman_d_01_scf.m2", + }, + { + fileId = "139059", + text = "helm_leather_zulaman_d_01_scm.m2", + value = "helm_leather_zulaman_d_01_scm.m2", + }, + { + fileId = "139060", + text = "helm_leather_zulaman_d_01_taf.m2", + value = "helm_leather_zulaman_d_01_taf.m2", + }, + { + fileId = "139061", + text = "helm_leather_zulaman_d_01_tam.m2", + value = "helm_leather_zulaman_d_01_tam.m2", + }, + { + fileId = "139062", + text = "helm_leather_zulaman_d_01_trf.m2", + value = "helm_leather_zulaman_d_01_trf.m2", + }, + { + fileId = "139063", + text = "helm_leather_zulaman_d_01_trm.m2", + value = "helm_leather_zulaman_d_01_trm.m2", + }, + { + fileId = "139067", + text = "helm_leather_zulaman_d_02_bef.m2", + value = "helm_leather_zulaman_d_02_bef.m2", + }, + { + fileId = "139068", + text = "helm_leather_zulaman_d_02_bem.m2", + value = "helm_leather_zulaman_d_02_bem.m2", + }, + { + fileId = "139069", + text = "helm_leather_zulaman_d_02_drf.m2", + value = "helm_leather_zulaman_d_02_drf.m2", + }, + { + fileId = "139070", + text = "helm_leather_zulaman_d_02_drm.m2", + value = "helm_leather_zulaman_d_02_drm.m2", + }, + { + fileId = "139071", + text = "helm_leather_zulaman_d_02_dwf.m2", + value = "helm_leather_zulaman_d_02_dwf.m2", + }, + { + fileId = "139072", + text = "helm_leather_zulaman_d_02_dwm.m2", + value = "helm_leather_zulaman_d_02_dwm.m2", + }, + { + fileId = "139073", + text = "helm_leather_zulaman_d_02_gnf.m2", + value = "helm_leather_zulaman_d_02_gnf.m2", + }, + { + fileId = "139074", + text = "helm_leather_zulaman_d_02_gnm.m2", + value = "helm_leather_zulaman_d_02_gnm.m2", + }, + { + fileId = "139075", + text = "helm_leather_zulaman_d_02_gof.m2", + value = "helm_leather_zulaman_d_02_gof.m2", + }, + { + fileId = "139076", + text = "helm_leather_zulaman_d_02_gom.m2", + value = "helm_leather_zulaman_d_02_gom.m2", + }, + { + fileId = "139077", + text = "helm_leather_zulaman_d_02_huf.m2", + value = "helm_leather_zulaman_d_02_huf.m2", + }, + { + fileId = "139078", + text = "helm_leather_zulaman_d_02_hum.m2", + value = "helm_leather_zulaman_d_02_hum.m2", + }, + { + fileId = "139079", + text = "helm_leather_zulaman_d_02_nif.m2", + value = "helm_leather_zulaman_d_02_nif.m2", + }, + { + fileId = "139080", + text = "helm_leather_zulaman_d_02_nim.m2", + value = "helm_leather_zulaman_d_02_nim.m2", + }, + { + fileId = "139081", + text = "helm_leather_zulaman_d_02_orf.m2", + value = "helm_leather_zulaman_d_02_orf.m2", + }, + { + fileId = "139082", + text = "helm_leather_zulaman_d_02_orm.m2", + value = "helm_leather_zulaman_d_02_orm.m2", + }, + { + fileId = "139083", + text = "helm_leather_zulaman_d_02_scf.m2", + value = "helm_leather_zulaman_d_02_scf.m2", + }, + { + fileId = "139084", + text = "helm_leather_zulaman_d_02_scm.m2", + value = "helm_leather_zulaman_d_02_scm.m2", + }, + { + fileId = "139085", + text = "helm_leather_zulaman_d_02_taf.m2", + value = "helm_leather_zulaman_d_02_taf.m2", + }, + { + fileId = "139086", + text = "helm_leather_zulaman_d_02_tam.m2", + value = "helm_leather_zulaman_d_02_tam.m2", + }, + { + fileId = "139087", + text = "helm_leather_zulaman_d_02_trf.m2", + value = "helm_leather_zulaman_d_02_trf.m2", + }, + { + fileId = "139088", + text = "helm_leather_zulaman_d_02_trm.m2", + value = "helm_leather_zulaman_d_02_trm.m2", + }, + { + fileId = "139093", + text = "helm_magic_b_01_bef.m2", + value = "helm_magic_b_01_bef.m2", + }, + { + fileId = "139094", + text = "helm_magic_b_01_bem.m2", + value = "helm_magic_b_01_bem.m2", + }, + { + fileId = "139095", + text = "helm_magic_b_01_drf.m2", + value = "helm_magic_b_01_drf.m2", + }, + { + fileId = "139096", + text = "helm_magic_b_01_drm.m2", + value = "helm_magic_b_01_drm.m2", + }, + { + fileId = "139097", + text = "helm_magic_b_01_dwf.m2", + value = "helm_magic_b_01_dwf.m2", + }, + { + fileId = "139098", + text = "helm_magic_b_01_dwm.m2", + value = "helm_magic_b_01_dwm.m2", + }, + { + fileId = "139099", + text = "helm_magic_b_01_gnf.m2", + value = "helm_magic_b_01_gnf.m2", + }, + { + fileId = "139100", + text = "helm_magic_b_01_gnm.m2", + value = "helm_magic_b_01_gnm.m2", + }, + { + fileId = "139101", + text = "helm_magic_b_01_gof.m2", + value = "helm_magic_b_01_gof.m2", + }, + { + fileId = "139102", + text = "helm_magic_b_01_gom.m2", + value = "helm_magic_b_01_gom.m2", + }, + { + fileId = "139103", + text = "helm_magic_b_01_huf.m2", + value = "helm_magic_b_01_huf.m2", + }, + { + fileId = "139104", + text = "helm_magic_b_01_hum.m2", + value = "helm_magic_b_01_hum.m2", + }, + { + fileId = "139105", + text = "helm_magic_b_01_nif.m2", + value = "helm_magic_b_01_nif.m2", + }, + { + fileId = "139106", + text = "helm_magic_b_01_nim.m2", + value = "helm_magic_b_01_nim.m2", + }, + { + fileId = "139107", + text = "helm_magic_b_01_orf.m2", + value = "helm_magic_b_01_orf.m2", + }, + { + fileId = "139108", + text = "helm_magic_b_01_orm.m2", + value = "helm_magic_b_01_orm.m2", + }, + { + fileId = "139109", + text = "helm_magic_b_01_scf.m2", + value = "helm_magic_b_01_scf.m2", + }, + { + fileId = "139110", + text = "helm_magic_b_01_scm.m2", + value = "helm_magic_b_01_scm.m2", + }, + { + fileId = "139111", + text = "helm_magic_b_01_taf.m2", + value = "helm_magic_b_01_taf.m2", + }, + { + fileId = "139112", + text = "helm_magic_b_01_tam.m2", + value = "helm_magic_b_01_tam.m2", + }, + { + fileId = "139113", + text = "helm_magic_b_01_trf.m2", + value = "helm_magic_b_01_trf.m2", + }, + { + fileId = "139114", + text = "helm_magic_b_01_trm.m2", + value = "helm_magic_b_01_trm.m2", + }, + { + fileId = "139116", + text = "helm_magic_b_02_bef.m2", + value = "helm_magic_b_02_bef.m2", + }, + { + fileId = "139117", + text = "helm_magic_b_02_bem.m2", + value = "helm_magic_b_02_bem.m2", + }, + { + fileId = "139118", + text = "helm_magic_b_02_drf.m2", + value = "helm_magic_b_02_drf.m2", + }, + { + fileId = "139119", + text = "helm_magic_b_02_drm.m2", + value = "helm_magic_b_02_drm.m2", + }, + { + fileId = "139120", + text = "helm_magic_b_02_dwf.m2", + value = "helm_magic_b_02_dwf.m2", + }, + { + fileId = "139121", + text = "helm_magic_b_02_dwm.m2", + value = "helm_magic_b_02_dwm.m2", + }, + { + fileId = "139122", + text = "helm_magic_b_02_gnf.m2", + value = "helm_magic_b_02_gnf.m2", + }, + { + fileId = "139123", + text = "helm_magic_b_02_gnm.m2", + value = "helm_magic_b_02_gnm.m2", + }, + { + fileId = "139124", + text = "helm_magic_b_02_gof.m2", + value = "helm_magic_b_02_gof.m2", + }, + { + fileId = "139125", + text = "helm_magic_b_02_gom.m2", + value = "helm_magic_b_02_gom.m2", + }, + { + fileId = "139126", + text = "helm_magic_b_02_huf.m2", + value = "helm_magic_b_02_huf.m2", + }, + { + fileId = "139127", + text = "helm_magic_b_02_hum.m2", + value = "helm_magic_b_02_hum.m2", + }, + { + fileId = "139128", + text = "helm_magic_b_02_nif.m2", + value = "helm_magic_b_02_nif.m2", + }, + { + fileId = "139129", + text = "helm_magic_b_02_nim.m2", + value = "helm_magic_b_02_nim.m2", + }, + { + fileId = "139130", + text = "helm_magic_b_02_orf.m2", + value = "helm_magic_b_02_orf.m2", + }, + { + fileId = "139131", + text = "helm_magic_b_02_orm.m2", + value = "helm_magic_b_02_orm.m2", + }, + { + fileId = "139132", + text = "helm_magic_b_02_scf.m2", + value = "helm_magic_b_02_scf.m2", + }, + { + fileId = "139133", + text = "helm_magic_b_02_scm.m2", + value = "helm_magic_b_02_scm.m2", + }, + { + fileId = "139134", + text = "helm_magic_b_02_taf.m2", + value = "helm_magic_b_02_taf.m2", + }, + { + fileId = "139135", + text = "helm_magic_b_02_tam.m2", + value = "helm_magic_b_02_tam.m2", + }, + { + fileId = "139136", + text = "helm_magic_b_02_trf.m2", + value = "helm_magic_b_02_trf.m2", + }, + { + fileId = "139137", + text = "helm_magic_b_02_trm.m2", + value = "helm_magic_b_02_trm.m2", + }, + { + fileId = "139139", + text = "helm_magic_c_01_bef.m2", + value = "helm_magic_c_01_bef.m2", + }, + { + fileId = "139140", + text = "helm_magic_c_01_bem.m2", + value = "helm_magic_c_01_bem.m2", + }, + { + fileId = "139141", + text = "helm_magic_c_01_drf.m2", + value = "helm_magic_c_01_drf.m2", + }, + { + fileId = "139142", + text = "helm_magic_c_01_drm.m2", + value = "helm_magic_c_01_drm.m2", + }, + { + fileId = "139143", + text = "helm_magic_c_01_dwf.m2", + value = "helm_magic_c_01_dwf.m2", + }, + { + fileId = "139144", + text = "helm_magic_c_01_dwm.m2", + value = "helm_magic_c_01_dwm.m2", + }, + { + fileId = "139145", + text = "helm_magic_c_01_gnf.m2", + value = "helm_magic_c_01_gnf.m2", + }, + { + fileId = "139146", + text = "helm_magic_c_01_gnm.m2", + value = "helm_magic_c_01_gnm.m2", + }, + { + fileId = "139147", + text = "helm_magic_c_01_gof.m2", + value = "helm_magic_c_01_gof.m2", + }, + { + fileId = "139148", + text = "helm_magic_c_01_gom.m2", + value = "helm_magic_c_01_gom.m2", + }, + { + fileId = "139149", + text = "helm_magic_c_01_huf.m2", + value = "helm_magic_c_01_huf.m2", + }, + { + fileId = "139150", + text = "helm_magic_c_01_hum.m2", + value = "helm_magic_c_01_hum.m2", + }, + { + fileId = "139151", + text = "helm_magic_c_01_nif.m2", + value = "helm_magic_c_01_nif.m2", + }, + { + fileId = "139152", + text = "helm_magic_c_01_nim.m2", + value = "helm_magic_c_01_nim.m2", + }, + { + fileId = "139153", + text = "helm_magic_c_01_orf.m2", + value = "helm_magic_c_01_orf.m2", + }, + { + fileId = "139154", + text = "helm_magic_c_01_orm.m2", + value = "helm_magic_c_01_orm.m2", + }, + { + fileId = "139155", + text = "helm_magic_c_01_scf.m2", + value = "helm_magic_c_01_scf.m2", + }, + { + fileId = "139156", + text = "helm_magic_c_01_scm.m2", + value = "helm_magic_c_01_scm.m2", + }, + { + fileId = "139157", + text = "helm_magic_c_01_taf.m2", + value = "helm_magic_c_01_taf.m2", + }, + { + fileId = "139158", + text = "helm_magic_c_01_tam.m2", + value = "helm_magic_c_01_tam.m2", + }, + { + fileId = "139159", + text = "helm_magic_c_01_trf.m2", + value = "helm_magic_c_01_trf.m2", + }, + { + fileId = "139160", + text = "helm_magic_c_01_trm.m2", + value = "helm_magic_c_01_trm.m2", + }, + { + fileId = "139163", + text = "helm_mail_a_01_bef.m2", + value = "helm_mail_a_01_bef.m2", + }, + { + fileId = "139164", + text = "helm_mail_a_01_bem.m2", + value = "helm_mail_a_01_bem.m2", + }, + { + fileId = "139165", + text = "helm_mail_a_01_drf.m2", + value = "helm_mail_a_01_drf.m2", + }, + { + fileId = "139166", + text = "helm_mail_a_01_drm.m2", + value = "helm_mail_a_01_drm.m2", + }, + { + fileId = "139167", + text = "helm_mail_a_01_dwf.m2", + value = "helm_mail_a_01_dwf.m2", + }, + { + fileId = "139168", + text = "helm_mail_a_01_dwm.m2", + value = "helm_mail_a_01_dwm.m2", + }, + { + fileId = "139169", + text = "helm_mail_a_01_gnf.m2", + value = "helm_mail_a_01_gnf.m2", + }, + { + fileId = "139170", + text = "helm_mail_a_01_gnm.m2", + value = "helm_mail_a_01_gnm.m2", + }, + { + fileId = "139171", + text = "helm_mail_a_01_gof.m2", + value = "helm_mail_a_01_gof.m2", + }, + { + fileId = "139172", + text = "helm_mail_a_01_gom.m2", + value = "helm_mail_a_01_gom.m2", + }, + { + fileId = "139173", + text = "helm_mail_a_01_huf.m2", + value = "helm_mail_a_01_huf.m2", + }, + { + fileId = "139174", + text = "helm_mail_a_01_hum.m2", + value = "helm_mail_a_01_hum.m2", + }, + { + fileId = "139175", + text = "helm_mail_a_01_nif.m2", + value = "helm_mail_a_01_nif.m2", + }, + { + fileId = "139176", + text = "helm_mail_a_01_nim.m2", + value = "helm_mail_a_01_nim.m2", + }, + { + fileId = "139177", + text = "helm_mail_a_01_orf.m2", + value = "helm_mail_a_01_orf.m2", + }, + { + fileId = "139178", + text = "helm_mail_a_01_orm.m2", + value = "helm_mail_a_01_orm.m2", + }, + { + fileId = "139179", + text = "helm_mail_a_01_scf.m2", + value = "helm_mail_a_01_scf.m2", + }, + { + fileId = "139180", + text = "helm_mail_a_01_scm.m2", + value = "helm_mail_a_01_scm.m2", + }, + { + fileId = "139181", + text = "helm_mail_a_01_taf.m2", + value = "helm_mail_a_01_taf.m2", + }, + { + fileId = "139182", + text = "helm_mail_a_01_tam.m2", + value = "helm_mail_a_01_tam.m2", + }, + { + fileId = "139183", + text = "helm_mail_a_01_trf.m2", + value = "helm_mail_a_01_trf.m2", + }, + { + fileId = "139184", + text = "helm_mail_a_01_trm.m2", + value = "helm_mail_a_01_trm.m2", + }, + { + fileId = "139191", + text = "helm_mail_a_02_bef.m2", + value = "helm_mail_a_02_bef.m2", + }, + { + fileId = "139192", + text = "helm_mail_a_02_bem.m2", + value = "helm_mail_a_02_bem.m2", + }, + { + fileId = "139193", + text = "helm_mail_a_02_drf.m2", + value = "helm_mail_a_02_drf.m2", + }, + { + fileId = "139194", + text = "helm_mail_a_02_drm.m2", + value = "helm_mail_a_02_drm.m2", + }, + { + fileId = "139195", + text = "helm_mail_a_02_dwf.m2", + value = "helm_mail_a_02_dwf.m2", + }, + { + fileId = "139196", + text = "helm_mail_a_02_dwm.m2", + value = "helm_mail_a_02_dwm.m2", + }, + { + fileId = "139197", + text = "helm_mail_a_02_gnf.m2", + value = "helm_mail_a_02_gnf.m2", + }, + { + fileId = "139198", + text = "helm_mail_a_02_gnm.m2", + value = "helm_mail_a_02_gnm.m2", + }, + { + fileId = "139199", + text = "helm_mail_a_02_gof.m2", + value = "helm_mail_a_02_gof.m2", + }, + { + fileId = "139200", + text = "helm_mail_a_02_gom.m2", + value = "helm_mail_a_02_gom.m2", + }, + { + fileId = "139201", + text = "helm_mail_a_02_huf.m2", + value = "helm_mail_a_02_huf.m2", + }, + { + fileId = "139202", + text = "helm_mail_a_02_hum.m2", + value = "helm_mail_a_02_hum.m2", + }, + { + fileId = "139203", + text = "helm_mail_a_02_nif.m2", + value = "helm_mail_a_02_nif.m2", + }, + { + fileId = "139204", + text = "helm_mail_a_02_nim.m2", + value = "helm_mail_a_02_nim.m2", + }, + { + fileId = "139205", + text = "helm_mail_a_02_orf.m2", + value = "helm_mail_a_02_orf.m2", + }, + { + fileId = "139206", + text = "helm_mail_a_02_orm.m2", + value = "helm_mail_a_02_orm.m2", + }, + { + fileId = "139207", + text = "helm_mail_a_02_scf.m2", + value = "helm_mail_a_02_scf.m2", + }, + { + fileId = "139208", + text = "helm_mail_a_02_scm.m2", + value = "helm_mail_a_02_scm.m2", + }, + { + fileId = "139209", + text = "helm_mail_a_02_taf.m2", + value = "helm_mail_a_02_taf.m2", + }, + { + fileId = "139210", + text = "helm_mail_a_02_tam.m2", + value = "helm_mail_a_02_tam.m2", + }, + { + fileId = "139211", + text = "helm_mail_a_02_trf.m2", + value = "helm_mail_a_02_trf.m2", + }, + { + fileId = "139212", + text = "helm_mail_a_02_trm.m2", + value = "helm_mail_a_02_trm.m2", + }, + { + fileId = "139217", + text = "helm_mail_ahnqiraj_a_01_bef.m2", + value = "helm_mail_ahnqiraj_a_01_bef.m2", + }, + { + fileId = "139218", + text = "helm_mail_ahnqiraj_a_01_bem.m2", + value = "helm_mail_ahnqiraj_a_01_bem.m2", + }, + { + fileId = "139219", + text = "helm_mail_ahnqiraj_a_01_drf.m2", + value = "helm_mail_ahnqiraj_a_01_drf.m2", + }, + { + fileId = "139220", + text = "helm_mail_ahnqiraj_a_01_drm.m2", + value = "helm_mail_ahnqiraj_a_01_drm.m2", + }, + { + fileId = "139221", + text = "helm_mail_ahnqiraj_a_01_dwf.m2", + value = "helm_mail_ahnqiraj_a_01_dwf.m2", + }, + { + fileId = "139222", + text = "helm_mail_ahnqiraj_a_01_dwm.m2", + value = "helm_mail_ahnqiraj_a_01_dwm.m2", + }, + { + fileId = "139223", + text = "helm_mail_ahnqiraj_a_01_gnf.m2", + value = "helm_mail_ahnqiraj_a_01_gnf.m2", + }, + { + fileId = "139224", + text = "helm_mail_ahnqiraj_a_01_gnm.m2", + value = "helm_mail_ahnqiraj_a_01_gnm.m2", + }, + { + fileId = "139225", + text = "helm_mail_ahnqiraj_a_01_gof.m2", + value = "helm_mail_ahnqiraj_a_01_gof.m2", + }, + { + fileId = "139226", + text = "helm_mail_ahnqiraj_a_01_gom.m2", + value = "helm_mail_ahnqiraj_a_01_gom.m2", + }, + { + fileId = "139227", + text = "helm_mail_ahnqiraj_a_01_huf.m2", + value = "helm_mail_ahnqiraj_a_01_huf.m2", + }, + { + fileId = "139228", + text = "helm_mail_ahnqiraj_a_01_hum.m2", + value = "helm_mail_ahnqiraj_a_01_hum.m2", + }, + { + fileId = "139229", + text = "helm_mail_ahnqiraj_a_01_nif.m2", + value = "helm_mail_ahnqiraj_a_01_nif.m2", + }, + { + fileId = "139230", + text = "helm_mail_ahnqiraj_a_01_nim.m2", + value = "helm_mail_ahnqiraj_a_01_nim.m2", + }, + { + fileId = "139231", + text = "helm_mail_ahnqiraj_a_01_orf.m2", + value = "helm_mail_ahnqiraj_a_01_orf.m2", + }, + { + fileId = "139232", + text = "helm_mail_ahnqiraj_a_01_orm.m2", + value = "helm_mail_ahnqiraj_a_01_orm.m2", + }, + { + fileId = "139233", + text = "helm_mail_ahnqiraj_a_01_scf.m2", + value = "helm_mail_ahnqiraj_a_01_scf.m2", + }, + { + fileId = "139234", + text = "helm_mail_ahnqiraj_a_01_scm.m2", + value = "helm_mail_ahnqiraj_a_01_scm.m2", + }, + { + fileId = "139235", + text = "helm_mail_ahnqiraj_a_01_taf.m2", + value = "helm_mail_ahnqiraj_a_01_taf.m2", + }, + { + fileId = "139236", + text = "helm_mail_ahnqiraj_a_01_tam.m2", + value = "helm_mail_ahnqiraj_a_01_tam.m2", + }, + { + fileId = "139237", + text = "helm_mail_ahnqiraj_a_01_trf.m2", + value = "helm_mail_ahnqiraj_a_01_trf.m2", + }, + { + fileId = "139238", + text = "helm_mail_ahnqiraj_a_01_trm.m2", + value = "helm_mail_ahnqiraj_a_01_trm.m2", + }, + { + fileId = "317580", + text = "helm_mail_argentalliance_d_01_bef.m2", + value = "helm_mail_argentalliance_d_01_bef.m2", + }, + { + fileId = "317581", + text = "helm_mail_argentalliance_d_01_bem.m2", + value = "helm_mail_argentalliance_d_01_bem.m2", + }, + { + fileId = "317582", + text = "helm_mail_argentalliance_d_01_drf.m2", + value = "helm_mail_argentalliance_d_01_drf.m2", + }, + { + fileId = "317583", + text = "helm_mail_argentalliance_d_01_drm.m2", + value = "helm_mail_argentalliance_d_01_drm.m2", + }, + { + fileId = "317584", + text = "helm_mail_argentalliance_d_01_dwf.m2", + value = "helm_mail_argentalliance_d_01_dwf.m2", + }, + { + fileId = "317585", + text = "helm_mail_argentalliance_d_01_dwm.m2", + value = "helm_mail_argentalliance_d_01_dwm.m2", + }, + { + fileId = "317586", + text = "helm_mail_argentalliance_d_01_gnf.m2", + value = "helm_mail_argentalliance_d_01_gnf.m2", + }, + { + fileId = "317587", + text = "helm_mail_argentalliance_d_01_gnm.m2", + value = "helm_mail_argentalliance_d_01_gnm.m2", + }, + { + fileId = "317588", + text = "helm_mail_argentalliance_d_01_gof.m2", + value = "helm_mail_argentalliance_d_01_gof.m2", + }, + { + fileId = "317589", + text = "helm_mail_argentalliance_d_01_gom.m2", + value = "helm_mail_argentalliance_d_01_gom.m2", + }, + { + fileId = "317590", + text = "helm_mail_argentalliance_d_01_huf.m2", + value = "helm_mail_argentalliance_d_01_huf.m2", + }, + { + fileId = "317591", + text = "helm_mail_argentalliance_d_01_hum.m2", + value = "helm_mail_argentalliance_d_01_hum.m2", + }, + { + fileId = "317592", + text = "helm_mail_argentalliance_d_01_nif.m2", + value = "helm_mail_argentalliance_d_01_nif.m2", + }, + { + fileId = "317593", + text = "helm_mail_argentalliance_d_01_nim.m2", + value = "helm_mail_argentalliance_d_01_nim.m2", + }, + { + fileId = "317594", + text = "helm_mail_argentalliance_d_01_orf.m2", + value = "helm_mail_argentalliance_d_01_orf.m2", + }, + { + fileId = "317595", + text = "helm_mail_argentalliance_d_01_orm.m2", + value = "helm_mail_argentalliance_d_01_orm.m2", + }, + { + fileId = "317596", + text = "helm_mail_argentalliance_d_01_scf.m2", + value = "helm_mail_argentalliance_d_01_scf.m2", + }, + { + fileId = "317597", + text = "helm_mail_argentalliance_d_01_scm.m2", + value = "helm_mail_argentalliance_d_01_scm.m2", + }, + { + fileId = "317598", + text = "helm_mail_argentalliance_d_01_taf.m2", + value = "helm_mail_argentalliance_d_01_taf.m2", + }, + { + fileId = "317599", + text = "helm_mail_argentalliance_d_01_tam.m2", + value = "helm_mail_argentalliance_d_01_tam.m2", + }, + { + fileId = "317600", + text = "helm_mail_argentalliance_d_01_trf.m2", + value = "helm_mail_argentalliance_d_01_trf.m2", + }, + { + fileId = "317601", + text = "helm_mail_argentalliance_d_01_trm.m2", + value = "helm_mail_argentalliance_d_01_trm.m2", + }, + { + fileId = "315282", + text = "helm_mail_argenthorde_d_01_bef.m2", + value = "helm_mail_argenthorde_d_01_bef.m2", + }, + { + fileId = "315283", + text = "helm_mail_argenthorde_d_01_bem.m2", + value = "helm_mail_argenthorde_d_01_bem.m2", + }, + { + fileId = "315284", + text = "helm_mail_argenthorde_d_01_drf.m2", + value = "helm_mail_argenthorde_d_01_drf.m2", + }, + { + fileId = "315285", + text = "helm_mail_argenthorde_d_01_drm.m2", + value = "helm_mail_argenthorde_d_01_drm.m2", + }, + { + fileId = "315286", + text = "helm_mail_argenthorde_d_01_dwf.m2", + value = "helm_mail_argenthorde_d_01_dwf.m2", + }, + { + fileId = "315287", + text = "helm_mail_argenthorde_d_01_dwm.m2", + value = "helm_mail_argenthorde_d_01_dwm.m2", + }, + { + fileId = "315288", + text = "helm_mail_argenthorde_d_01_gnf.m2", + value = "helm_mail_argenthorde_d_01_gnf.m2", + }, + { + fileId = "315289", + text = "helm_mail_argenthorde_d_01_gnm.m2", + value = "helm_mail_argenthorde_d_01_gnm.m2", + }, + { + fileId = "315290", + text = "helm_mail_argenthorde_d_01_gof.m2", + value = "helm_mail_argenthorde_d_01_gof.m2", + }, + { + fileId = "315291", + text = "helm_mail_argenthorde_d_01_gom.m2", + value = "helm_mail_argenthorde_d_01_gom.m2", + }, + { + fileId = "315292", + text = "helm_mail_argenthorde_d_01_huf.m2", + value = "helm_mail_argenthorde_d_01_huf.m2", + }, + { + fileId = "315293", + text = "helm_mail_argenthorde_d_01_hum.m2", + value = "helm_mail_argenthorde_d_01_hum.m2", + }, + { + fileId = "315294", + text = "helm_mail_argenthorde_d_01_nif.m2", + value = "helm_mail_argenthorde_d_01_nif.m2", + }, + { + fileId = "315295", + text = "helm_mail_argenthorde_d_01_nim.m2", + value = "helm_mail_argenthorde_d_01_nim.m2", + }, + { + fileId = "315297", + text = "helm_mail_argenthorde_d_01_orf.m2", + value = "helm_mail_argenthorde_d_01_orf.m2", + }, + { + fileId = "315298", + text = "helm_mail_argenthorde_d_01_orm.m2", + value = "helm_mail_argenthorde_d_01_orm.m2", + }, + { + fileId = "315299", + text = "helm_mail_argenthorde_d_01_scf.m2", + value = "helm_mail_argenthorde_d_01_scf.m2", + }, + { + fileId = "315300", + text = "helm_mail_argenthorde_d_01_scm.m2", + value = "helm_mail_argenthorde_d_01_scm.m2", + }, + { + fileId = "315301", + text = "helm_mail_argenthorde_d_01_taf.m2", + value = "helm_mail_argenthorde_d_01_taf.m2", + }, + { + fileId = "315302", + text = "helm_mail_argenthorde_d_01_tam.m2", + value = "helm_mail_argenthorde_d_01_tam.m2", + }, + { + fileId = "315303", + text = "helm_mail_argenthorde_d_01_trf.m2", + value = "helm_mail_argenthorde_d_01_trf.m2", + }, + { + fileId = "315304", + text = "helm_mail_argenthorde_d_01_trm.m2", + value = "helm_mail_argenthorde_d_01_trm.m2", + }, + { + fileId = "139243", + text = "helm_mail_b_01_bef.m2", + value = "helm_mail_b_01_bef.m2", + }, + { + fileId = "139244", + text = "helm_mail_b_01_bem.m2", + value = "helm_mail_b_01_bem.m2", + }, + { + fileId = "139245", + text = "helm_mail_b_01_drf.m2", + value = "helm_mail_b_01_drf.m2", + }, + { + fileId = "139246", + text = "helm_mail_b_01_drm.m2", + value = "helm_mail_b_01_drm.m2", + }, + { + fileId = "139247", + text = "helm_mail_b_01_dwf.m2", + value = "helm_mail_b_01_dwf.m2", + }, + { + fileId = "139248", + text = "helm_mail_b_01_dwm.m2", + value = "helm_mail_b_01_dwm.m2", + }, + { + fileId = "139249", + text = "helm_mail_b_01_gnf.m2", + value = "helm_mail_b_01_gnf.m2", + }, + { + fileId = "139250", + text = "helm_mail_b_01_gnm.m2", + value = "helm_mail_b_01_gnm.m2", + }, + { + fileId = "139251", + text = "helm_mail_b_01_gof.m2", + value = "helm_mail_b_01_gof.m2", + }, + { + fileId = "139252", + text = "helm_mail_b_01_gom.m2", + value = "helm_mail_b_01_gom.m2", + }, + { + fileId = "139253", + text = "helm_mail_b_01_huf.m2", + value = "helm_mail_b_01_huf.m2", + }, + { + fileId = "139254", + text = "helm_mail_b_01_hum.m2", + value = "helm_mail_b_01_hum.m2", + }, + { + fileId = "139255", + text = "helm_mail_b_01_nif.m2", + value = "helm_mail_b_01_nif.m2", + }, + { + fileId = "139256", + text = "helm_mail_b_01_nim.m2", + value = "helm_mail_b_01_nim.m2", + }, + { + fileId = "139257", + text = "helm_mail_b_01_orf.m2", + value = "helm_mail_b_01_orf.m2", + }, + { + fileId = "139258", + text = "helm_mail_b_01_orm.m2", + value = "helm_mail_b_01_orm.m2", + }, + { + fileId = "139259", + text = "helm_mail_b_01_scf.m2", + value = "helm_mail_b_01_scf.m2", + }, + { + fileId = "139260", + text = "helm_mail_b_01_scm.m2", + value = "helm_mail_b_01_scm.m2", + }, + { + fileId = "139261", + text = "helm_mail_b_01_taf.m2", + value = "helm_mail_b_01_taf.m2", + }, + { + fileId = "139262", + text = "helm_mail_b_01_tam.m2", + value = "helm_mail_b_01_tam.m2", + }, + { + fileId = "139263", + text = "helm_mail_b_01_trf.m2", + value = "helm_mail_b_01_trf.m2", + }, + { + fileId = "139264", + text = "helm_mail_b_01_trm.m2", + value = "helm_mail_b_01_trm.m2", + }, + { + fileId = "139265", + text = "helm_mail_c_01_bem.m2", + value = "helm_mail_c_01_bem.m2", + }, + { + fileId = "139266", + text = "helm_mail_c_01_drm.m2", + value = "helm_mail_c_01_drm.m2", + }, + { + fileId = "139267", + text = "helm_mail_c_01_gof.m2", + value = "helm_mail_c_01_gof.m2", + }, + { + fileId = "139268", + text = "helm_mail_c_02_bef.m2", + value = "helm_mail_c_02_bef.m2", + }, + { + fileId = "139269", + text = "helm_mail_c_02_bem.m2", + value = "helm_mail_c_02_bem.m2", + }, + { + fileId = "139270", + text = "helm_mail_c_02_drf.m2", + value = "helm_mail_c_02_drf.m2", + }, + { + fileId = "139271", + text = "helm_mail_c_02_drm.m2", + value = "helm_mail_c_02_drm.m2", + }, + { + fileId = "139272", + text = "helm_mail_c_02_dwf.m2", + value = "helm_mail_c_02_dwf.m2", + }, + { + fileId = "139273", + text = "helm_mail_c_02_dwm.m2", + value = "helm_mail_c_02_dwm.m2", + }, + { + fileId = "139274", + text = "helm_mail_c_02_gnf.m2", + value = "helm_mail_c_02_gnf.m2", + }, + { + fileId = "139275", + text = "helm_mail_c_02_gnm.m2", + value = "helm_mail_c_02_gnm.m2", + }, + { + fileId = "139276", + text = "helm_mail_c_02_gof.m2", + value = "helm_mail_c_02_gof.m2", + }, + { + fileId = "139277", + text = "helm_mail_c_02_huf.m2", + value = "helm_mail_c_02_huf.m2", + }, + { + fileId = "139278", + text = "helm_mail_c_02_hum.m2", + value = "helm_mail_c_02_hum.m2", + }, + { + fileId = "139279", + text = "helm_mail_c_02_nif.m2", + value = "helm_mail_c_02_nif.m2", + }, + { + fileId = "139280", + text = "helm_mail_c_02_nim.m2", + value = "helm_mail_c_02_nim.m2", + }, + { + fileId = "139281", + text = "helm_mail_c_02_orf.m2", + value = "helm_mail_c_02_orf.m2", + }, + { + fileId = "139282", + text = "helm_mail_c_02_orm.m2", + value = "helm_mail_c_02_orm.m2", + }, + { + fileId = "139283", + text = "helm_mail_c_02_scf.m2", + value = "helm_mail_c_02_scf.m2", + }, + { + fileId = "139284", + text = "helm_mail_c_02_scm.m2", + value = "helm_mail_c_02_scm.m2", + }, + { + fileId = "139285", + text = "helm_mail_c_02_taf.m2", + value = "helm_mail_c_02_taf.m2", + }, + { + fileId = "139286", + text = "helm_mail_c_02_tam.m2", + value = "helm_mail_c_02_tam.m2", + }, + { + fileId = "139287", + text = "helm_mail_c_02_trf.m2", + value = "helm_mail_c_02_trf.m2", + }, + { + fileId = "139288", + text = "helm_mail_c_02_trm.m2", + value = "helm_mail_c_02_trm.m2", + }, + { + fileId = "139293", + text = "helm_mail_d_01_bef.m2", + value = "helm_mail_d_01_bef.m2", + }, + { + fileId = "139294", + text = "helm_mail_d_01_bem.m2", + value = "helm_mail_d_01_bem.m2", + }, + { + fileId = "139295", + text = "helm_mail_d_01_drf.m2", + value = "helm_mail_d_01_drf.m2", + }, + { + fileId = "139296", + text = "helm_mail_d_01_drm.m2", + value = "helm_mail_d_01_drm.m2", + }, + { + fileId = "139297", + text = "helm_mail_d_01_dwf.m2", + value = "helm_mail_d_01_dwf.m2", + }, + { + fileId = "139298", + text = "helm_mail_d_01_dwm.m2", + value = "helm_mail_d_01_dwm.m2", + }, + { + fileId = "139299", + text = "helm_mail_d_01_gnf.m2", + value = "helm_mail_d_01_gnf.m2", + }, + { + fileId = "139300", + text = "helm_mail_d_01_gnm.m2", + value = "helm_mail_d_01_gnm.m2", + }, + { + fileId = "139301", + text = "helm_mail_d_01_gof.m2", + value = "helm_mail_d_01_gof.m2", + }, + { + fileId = "139302", + text = "helm_mail_d_01_gom.m2", + value = "helm_mail_d_01_gom.m2", + }, + { + fileId = "139303", + text = "helm_mail_d_01_huf.m2", + value = "helm_mail_d_01_huf.m2", + }, + { + fileId = "139304", + text = "helm_mail_d_01_hum.m2", + value = "helm_mail_d_01_hum.m2", + }, + { + fileId = "139305", + text = "helm_mail_d_01_nif.m2", + value = "helm_mail_d_01_nif.m2", + }, + { + fileId = "139306", + text = "helm_mail_d_01_nim.m2", + value = "helm_mail_d_01_nim.m2", + }, + { + fileId = "139307", + text = "helm_mail_d_01_orf.m2", + value = "helm_mail_d_01_orf.m2", + }, + { + fileId = "139308", + text = "helm_mail_d_01_orm.m2", + value = "helm_mail_d_01_orm.m2", + }, + { + fileId = "139309", + text = "helm_mail_d_01_scf.m2", + value = "helm_mail_d_01_scf.m2", + }, + { + fileId = "139310", + text = "helm_mail_d_01_scm.m2", + value = "helm_mail_d_01_scm.m2", + }, + { + fileId = "139311", + text = "helm_mail_d_01_taf.m2", + value = "helm_mail_d_01_taf.m2", + }, + { + fileId = "139312", + text = "helm_mail_d_01_tam.m2", + value = "helm_mail_d_01_tam.m2", + }, + { + fileId = "139313", + text = "helm_mail_d_01_trf.m2", + value = "helm_mail_d_01_trf.m2", + }, + { + fileId = "139314", + text = "helm_mail_d_01_trm.m2", + value = "helm_mail_d_01_trm.m2", + }, + { + fileId = "139321", + text = "helm_mail_dungeonhunter_a_01_bef.m2", + value = "helm_mail_dungeonhunter_a_01_bef.m2", + }, + { + fileId = "139322", + text = "helm_mail_dungeonhunter_a_01_bem.m2", + value = "helm_mail_dungeonhunter_a_01_bem.m2", + }, + { + fileId = "139323", + text = "helm_mail_dungeonhunter_a_01_drf.m2", + value = "helm_mail_dungeonhunter_a_01_drf.m2", + }, + { + fileId = "139324", + text = "helm_mail_dungeonhunter_a_01_drm.m2", + value = "helm_mail_dungeonhunter_a_01_drm.m2", + }, + { + fileId = "139325", + text = "helm_mail_dungeonhunter_a_01_dwf.m2", + value = "helm_mail_dungeonhunter_a_01_dwf.m2", + }, + { + fileId = "139326", + text = "helm_mail_dungeonhunter_a_01_dwm.m2", + value = "helm_mail_dungeonhunter_a_01_dwm.m2", + }, + { + fileId = "139327", + text = "helm_mail_dungeonhunter_a_01_gnf.m2", + value = "helm_mail_dungeonhunter_a_01_gnf.m2", + }, + { + fileId = "139328", + text = "helm_mail_dungeonhunter_a_01_gnm.m2", + value = "helm_mail_dungeonhunter_a_01_gnm.m2", + }, + { + fileId = "139329", + text = "helm_mail_dungeonhunter_a_01_gof.m2", + value = "helm_mail_dungeonhunter_a_01_gof.m2", + }, + { + fileId = "139330", + text = "helm_mail_dungeonhunter_a_01_huf.m2", + value = "helm_mail_dungeonhunter_a_01_huf.m2", + }, + { + fileId = "139331", + text = "helm_mail_dungeonhunter_a_01_hum.m2", + value = "helm_mail_dungeonhunter_a_01_hum.m2", + }, + { + fileId = "139332", + text = "helm_mail_dungeonhunter_a_01_nif.m2", + value = "helm_mail_dungeonhunter_a_01_nif.m2", + }, + { + fileId = "139333", + text = "helm_mail_dungeonhunter_a_01_nim.m2", + value = "helm_mail_dungeonhunter_a_01_nim.m2", + }, + { + fileId = "139334", + text = "helm_mail_dungeonhunter_a_01_orf.m2", + value = "helm_mail_dungeonhunter_a_01_orf.m2", + }, + { + fileId = "139335", + text = "helm_mail_dungeonhunter_a_01_orm.m2", + value = "helm_mail_dungeonhunter_a_01_orm.m2", + }, + { + fileId = "139336", + text = "helm_mail_dungeonhunter_a_01_scf.m2", + value = "helm_mail_dungeonhunter_a_01_scf.m2", + }, + { + fileId = "139337", + text = "helm_mail_dungeonhunter_a_01_scm.m2", + value = "helm_mail_dungeonhunter_a_01_scm.m2", + }, + { + fileId = "139338", + text = "helm_mail_dungeonhunter_a_01_taf.m2", + value = "helm_mail_dungeonhunter_a_01_taf.m2", + }, + { + fileId = "139339", + text = "helm_mail_dungeonhunter_a_01_tam.m2", + value = "helm_mail_dungeonhunter_a_01_tam.m2", + }, + { + fileId = "139340", + text = "helm_mail_dungeonhunter_a_01_trf.m2", + value = "helm_mail_dungeonhunter_a_01_trf.m2", + }, + { + fileId = "139341", + text = "helm_mail_dungeonhunter_a_01_trm.m2", + value = "helm_mail_dungeonhunter_a_01_trm.m2", + }, + { + fileId = "139346", + text = "helm_mail_dungeonhunter_b_02_bef.m2", + value = "helm_mail_dungeonhunter_b_02_bef.m2", + }, + { + fileId = "139347", + text = "helm_mail_dungeonhunter_b_02_bem.m2", + value = "helm_mail_dungeonhunter_b_02_bem.m2", + }, + { + fileId = "139348", + text = "helm_mail_dungeonhunter_b_02_drf.m2", + value = "helm_mail_dungeonhunter_b_02_drf.m2", + }, + { + fileId = "139349", + text = "helm_mail_dungeonhunter_b_02_drm.m2", + value = "helm_mail_dungeonhunter_b_02_drm.m2", + }, + { + fileId = "139350", + text = "helm_mail_dungeonhunter_b_02_dwf.m2", + value = "helm_mail_dungeonhunter_b_02_dwf.m2", + }, + { + fileId = "139351", + text = "helm_mail_dungeonhunter_b_02_dwm.m2", + value = "helm_mail_dungeonhunter_b_02_dwm.m2", + }, + { + fileId = "139352", + text = "helm_mail_dungeonhunter_b_02_gnf.m2", + value = "helm_mail_dungeonhunter_b_02_gnf.m2", + }, + { + fileId = "139353", + text = "helm_mail_dungeonhunter_b_02_gnm.m2", + value = "helm_mail_dungeonhunter_b_02_gnm.m2", + }, + { + fileId = "139354", + text = "helm_mail_dungeonhunter_b_02_gof.m2", + value = "helm_mail_dungeonhunter_b_02_gof.m2", + }, + { + fileId = "139355", + text = "helm_mail_dungeonhunter_b_02_gom.m2", + value = "helm_mail_dungeonhunter_b_02_gom.m2", + }, + { + fileId = "139356", + text = "helm_mail_dungeonhunter_b_02_huf.m2", + value = "helm_mail_dungeonhunter_b_02_huf.m2", + }, + { + fileId = "139357", + text = "helm_mail_dungeonhunter_b_02_hum.m2", + value = "helm_mail_dungeonhunter_b_02_hum.m2", + }, + { + fileId = "139358", + text = "helm_mail_dungeonhunter_b_02_nif.m2", + value = "helm_mail_dungeonhunter_b_02_nif.m2", + }, + { + fileId = "139359", + text = "helm_mail_dungeonhunter_b_02_nim.m2", + value = "helm_mail_dungeonhunter_b_02_nim.m2", + }, + { + fileId = "139360", + text = "helm_mail_dungeonhunter_b_02_orf.m2", + value = "helm_mail_dungeonhunter_b_02_orf.m2", + }, + { + fileId = "139361", + text = "helm_mail_dungeonhunter_b_02_orm.m2", + value = "helm_mail_dungeonhunter_b_02_orm.m2", + }, + { + fileId = "139362", + text = "helm_mail_dungeonhunter_b_02_scf.m2", + value = "helm_mail_dungeonhunter_b_02_scf.m2", + }, + { + fileId = "139363", + text = "helm_mail_dungeonhunter_b_02_scm.m2", + value = "helm_mail_dungeonhunter_b_02_scm.m2", + }, + { + fileId = "139364", + text = "helm_mail_dungeonhunter_b_02_taf.m2", + value = "helm_mail_dungeonhunter_b_02_taf.m2", + }, + { + fileId = "139365", + text = "helm_mail_dungeonhunter_b_02_tam.m2", + value = "helm_mail_dungeonhunter_b_02_tam.m2", + }, + { + fileId = "139366", + text = "helm_mail_dungeonhunter_b_02_trf.m2", + value = "helm_mail_dungeonhunter_b_02_trf.m2", + }, + { + fileId = "139367", + text = "helm_mail_dungeonhunter_b_02_trm.m2", + value = "helm_mail_dungeonhunter_b_02_trm.m2", + }, + { + fileId = "237950", + text = "helm_mail_dungeonmail_c_01_bef.m2", + value = "helm_mail_dungeonmail_c_01_bef.m2", + }, + { + fileId = "237951", + text = "helm_mail_dungeonmail_c_01_bem.m2", + value = "helm_mail_dungeonmail_c_01_bem.m2", + }, + { + fileId = "237952", + text = "helm_mail_dungeonmail_c_01_drf.m2", + value = "helm_mail_dungeonmail_c_01_drf.m2", + }, + { + fileId = "237953", + text = "helm_mail_dungeonmail_c_01_drm.m2", + value = "helm_mail_dungeonmail_c_01_drm.m2", + }, + { + fileId = "237954", + text = "helm_mail_dungeonmail_c_01_dwf.m2", + value = "helm_mail_dungeonmail_c_01_dwf.m2", + }, + { + fileId = "237955", + text = "helm_mail_dungeonmail_c_01_dwm.m2", + value = "helm_mail_dungeonmail_c_01_dwm.m2", + }, + { + fileId = "237956", + text = "helm_mail_dungeonmail_c_01_gnf.m2", + value = "helm_mail_dungeonmail_c_01_gnf.m2", + }, + { + fileId = "237957", + text = "helm_mail_dungeonmail_c_01_gnm.m2", + value = "helm_mail_dungeonmail_c_01_gnm.m2", + }, + { + fileId = "237958", + text = "helm_mail_dungeonmail_c_01_gof.m2", + value = "helm_mail_dungeonmail_c_01_gof.m2", + }, + { + fileId = "237959", + text = "helm_mail_dungeonmail_c_01_gom.m2", + value = "helm_mail_dungeonmail_c_01_gom.m2", + }, + { + fileId = "237960", + text = "helm_mail_dungeonmail_c_01_huf.m2", + value = "helm_mail_dungeonmail_c_01_huf.m2", + }, + { + fileId = "237961", + text = "helm_mail_dungeonmail_c_01_hum.m2", + value = "helm_mail_dungeonmail_c_01_hum.m2", + }, + { + fileId = "237962", + text = "helm_mail_dungeonmail_c_01_nif.m2", + value = "helm_mail_dungeonmail_c_01_nif.m2", + }, + { + fileId = "237963", + text = "helm_mail_dungeonmail_c_01_nim.m2", + value = "helm_mail_dungeonmail_c_01_nim.m2", + }, + { + fileId = "237964", + text = "helm_mail_dungeonmail_c_01_orf.m2", + value = "helm_mail_dungeonmail_c_01_orf.m2", + }, + { + fileId = "237965", + text = "helm_mail_dungeonmail_c_01_orm.m2", + value = "helm_mail_dungeonmail_c_01_orm.m2", + }, + { + fileId = "237966", + text = "helm_mail_dungeonmail_c_01_scf.m2", + value = "helm_mail_dungeonmail_c_01_scf.m2", + }, + { + fileId = "237967", + text = "helm_mail_dungeonmail_c_01_scm.m2", + value = "helm_mail_dungeonmail_c_01_scm.m2", + }, + { + fileId = "237968", + text = "helm_mail_dungeonmail_c_01_taf.m2", + value = "helm_mail_dungeonmail_c_01_taf.m2", + }, + { + fileId = "237969", + text = "helm_mail_dungeonmail_c_01_tam.m2", + value = "helm_mail_dungeonmail_c_01_tam.m2", + }, + { + fileId = "237970", + text = "helm_mail_dungeonmail_c_01_trf.m2", + value = "helm_mail_dungeonmail_c_01_trf.m2", + }, + { + fileId = "237971", + text = "helm_mail_dungeonmail_c_01_trm.m2", + value = "helm_mail_dungeonmail_c_01_trm.m2", + }, + { + fileId = "342534", + text = "helm_mail_dungeonmail_c_02_bef.m2", + value = "helm_mail_dungeonmail_c_02_bef.m2", + }, + { + fileId = "342535", + text = "helm_mail_dungeonmail_c_02_bem.m2", + value = "helm_mail_dungeonmail_c_02_bem.m2", + }, + { + fileId = "342536", + text = "helm_mail_dungeonmail_c_02_drf.m2", + value = "helm_mail_dungeonmail_c_02_drf.m2", + }, + { + fileId = "342537", + text = "helm_mail_dungeonmail_c_02_drm.m2", + value = "helm_mail_dungeonmail_c_02_drm.m2", + }, + { + fileId = "342538", + text = "helm_mail_dungeonmail_c_02_dwf.m2", + value = "helm_mail_dungeonmail_c_02_dwf.m2", + }, + { + fileId = "342539", + text = "helm_mail_dungeonmail_c_02_dwm.m2", + value = "helm_mail_dungeonmail_c_02_dwm.m2", + }, + { + fileId = "342540", + text = "helm_mail_dungeonmail_c_02_gnf.m2", + value = "helm_mail_dungeonmail_c_02_gnf.m2", + }, + { + fileId = "342541", + text = "helm_mail_dungeonmail_c_02_gnm.m2", + value = "helm_mail_dungeonmail_c_02_gnm.m2", + }, + { + fileId = "342542", + text = "helm_mail_dungeonmail_c_02_huf.m2", + value = "helm_mail_dungeonmail_c_02_huf.m2", + }, + { + fileId = "342543", + text = "helm_mail_dungeonmail_c_02_hum.m2", + value = "helm_mail_dungeonmail_c_02_hum.m2", + }, + { + fileId = "342544", + text = "helm_mail_dungeonmail_c_02_nif.m2", + value = "helm_mail_dungeonmail_c_02_nif.m2", + }, + { + fileId = "342545", + text = "helm_mail_dungeonmail_c_02_nim.m2", + value = "helm_mail_dungeonmail_c_02_nim.m2", + }, + { + fileId = "342546", + text = "helm_mail_dungeonmail_c_02_orf.m2", + value = "helm_mail_dungeonmail_c_02_orf.m2", + }, + { + fileId = "342547", + text = "helm_mail_dungeonmail_c_02_orm.m2", + value = "helm_mail_dungeonmail_c_02_orm.m2", + }, + { + fileId = "342548", + text = "helm_mail_dungeonmail_c_02_scf.m2", + value = "helm_mail_dungeonmail_c_02_scf.m2", + }, + { + fileId = "342549", + text = "helm_mail_dungeonmail_c_02_scm.m2", + value = "helm_mail_dungeonmail_c_02_scm.m2", + }, + { + fileId = "342550", + text = "helm_mail_dungeonmail_c_02_taf.m2", + value = "helm_mail_dungeonmail_c_02_taf.m2", + }, + { + fileId = "342551", + text = "helm_mail_dungeonmail_c_02_tam.m2", + value = "helm_mail_dungeonmail_c_02_tam.m2", + }, + { + fileId = "342552", + text = "helm_mail_dungeonmail_c_02_trf.m2", + value = "helm_mail_dungeonmail_c_02_trf.m2", + }, + { + fileId = "342553", + text = "helm_mail_dungeonmail_c_02_trm.m2", + value = "helm_mail_dungeonmail_c_02_trm.m2", + }, + { + fileId = "139373", + text = "helm_mail_dungeonshaman_a_01_bef.m2", + value = "helm_mail_dungeonshaman_a_01_bef.m2", + }, + { + fileId = "139374", + text = "helm_mail_dungeonshaman_a_01_bem.m2", + value = "helm_mail_dungeonshaman_a_01_bem.m2", + }, + { + fileId = "139375", + text = "helm_mail_dungeonshaman_a_01_drf.m2", + value = "helm_mail_dungeonshaman_a_01_drf.m2", + }, + { + fileId = "139376", + text = "helm_mail_dungeonshaman_a_01_drm.m2", + value = "helm_mail_dungeonshaman_a_01_drm.m2", + }, + { + fileId = "139377", + text = "helm_mail_dungeonshaman_a_01_dwf.m2", + value = "helm_mail_dungeonshaman_a_01_dwf.m2", + }, + { + fileId = "139378", + text = "helm_mail_dungeonshaman_a_01_dwm.m2", + value = "helm_mail_dungeonshaman_a_01_dwm.m2", + }, + { + fileId = "139379", + text = "helm_mail_dungeonshaman_a_01_gnf.m2", + value = "helm_mail_dungeonshaman_a_01_gnf.m2", + }, + { + fileId = "139380", + text = "helm_mail_dungeonshaman_a_01_gnm.m2", + value = "helm_mail_dungeonshaman_a_01_gnm.m2", + }, + { + fileId = "139381", + text = "helm_mail_dungeonshaman_a_01_gof.m2", + value = "helm_mail_dungeonshaman_a_01_gof.m2", + }, + { + fileId = "139382", + text = "helm_mail_dungeonshaman_a_01_gom.m2", + value = "helm_mail_dungeonshaman_a_01_gom.m2", + }, + { + fileId = "139383", + text = "helm_mail_dungeonshaman_a_01_huf.m2", + value = "helm_mail_dungeonshaman_a_01_huf.m2", + }, + { + fileId = "139384", + text = "helm_mail_dungeonshaman_a_01_hum.m2", + value = "helm_mail_dungeonshaman_a_01_hum.m2", + }, + { + fileId = "139385", + text = "helm_mail_dungeonshaman_a_01_nif.m2", + value = "helm_mail_dungeonshaman_a_01_nif.m2", + }, + { + fileId = "139386", + text = "helm_mail_dungeonshaman_a_01_nim.m2", + value = "helm_mail_dungeonshaman_a_01_nim.m2", + }, + { + fileId = "139387", + text = "helm_mail_dungeonshaman_a_01_orf.m2", + value = "helm_mail_dungeonshaman_a_01_orf.m2", + }, + { + fileId = "139388", + text = "helm_mail_dungeonshaman_a_01_orm.m2", + value = "helm_mail_dungeonshaman_a_01_orm.m2", + }, + { + fileId = "139389", + text = "helm_mail_dungeonshaman_a_01_scf.m2", + value = "helm_mail_dungeonshaman_a_01_scf.m2", + }, + { + fileId = "139390", + text = "helm_mail_dungeonshaman_a_01_scm.m2", + value = "helm_mail_dungeonshaman_a_01_scm.m2", + }, + { + fileId = "139391", + text = "helm_mail_dungeonshaman_a_01_taf.m2", + value = "helm_mail_dungeonshaman_a_01_taf.m2", + }, + { + fileId = "139392", + text = "helm_mail_dungeonshaman_a_01_tam.m2", + value = "helm_mail_dungeonshaman_a_01_tam.m2", + }, + { + fileId = "139393", + text = "helm_mail_dungeonshaman_a_01_trf.m2", + value = "helm_mail_dungeonshaman_a_01_trf.m2", + }, + { + fileId = "139394", + text = "helm_mail_dungeonshaman_a_01_trm.m2", + value = "helm_mail_dungeonshaman_a_01_trm.m2", + }, + { + fileId = "139400", + text = "helm_mail_dungeonshaman_b_01_bef.m2", + value = "helm_mail_dungeonshaman_b_01_bef.m2", + }, + { + fileId = "139401", + text = "helm_mail_dungeonshaman_b_01_bem.m2", + value = "helm_mail_dungeonshaman_b_01_bem.m2", + }, + { + fileId = "139402", + text = "helm_mail_dungeonshaman_b_01_drf.m2", + value = "helm_mail_dungeonshaman_b_01_drf.m2", + }, + { + fileId = "139403", + text = "helm_mail_dungeonshaman_b_01_drm.m2", + value = "helm_mail_dungeonshaman_b_01_drm.m2", + }, + { + fileId = "139404", + text = "helm_mail_dungeonshaman_b_01_dwf.m2", + value = "helm_mail_dungeonshaman_b_01_dwf.m2", + }, + { + fileId = "139405", + text = "helm_mail_dungeonshaman_b_01_dwm.m2", + value = "helm_mail_dungeonshaman_b_01_dwm.m2", + }, + { + fileId = "139406", + text = "helm_mail_dungeonshaman_b_01_gnf.m2", + value = "helm_mail_dungeonshaman_b_01_gnf.m2", + }, + { + fileId = "139407", + text = "helm_mail_dungeonshaman_b_01_gnm.m2", + value = "helm_mail_dungeonshaman_b_01_gnm.m2", + }, + { + fileId = "139408", + text = "helm_mail_dungeonshaman_b_01_gof.m2", + value = "helm_mail_dungeonshaman_b_01_gof.m2", + }, + { + fileId = "139409", + text = "helm_mail_dungeonshaman_b_01_gom.m2", + value = "helm_mail_dungeonshaman_b_01_gom.m2", + }, + { + fileId = "139410", + text = "helm_mail_dungeonshaman_b_01_huf.m2", + value = "helm_mail_dungeonshaman_b_01_huf.m2", + }, + { + fileId = "139411", + text = "helm_mail_dungeonshaman_b_01_hum.m2", + value = "helm_mail_dungeonshaman_b_01_hum.m2", + }, + { + fileId = "139412", + text = "helm_mail_dungeonshaman_b_01_nif.m2", + value = "helm_mail_dungeonshaman_b_01_nif.m2", + }, + { + fileId = "139413", + text = "helm_mail_dungeonshaman_b_01_nim.m2", + value = "helm_mail_dungeonshaman_b_01_nim.m2", + }, + { + fileId = "139414", + text = "helm_mail_dungeonshaman_b_01_orf.m2", + value = "helm_mail_dungeonshaman_b_01_orf.m2", + }, + { + fileId = "139415", + text = "helm_mail_dungeonshaman_b_01_orm.m2", + value = "helm_mail_dungeonshaman_b_01_orm.m2", + }, + { + fileId = "139416", + text = "helm_mail_dungeonshaman_b_01_scf.m2", + value = "helm_mail_dungeonshaman_b_01_scf.m2", + }, + { + fileId = "139417", + text = "helm_mail_dungeonshaman_b_01_scm.m2", + value = "helm_mail_dungeonshaman_b_01_scm.m2", + }, + { + fileId = "139418", + text = "helm_mail_dungeonshaman_b_01_taf.m2", + value = "helm_mail_dungeonshaman_b_01_taf.m2", + }, + { + fileId = "139419", + text = "helm_mail_dungeonshaman_b_01_tam.m2", + value = "helm_mail_dungeonshaman_b_01_tam.m2", + }, + { + fileId = "139420", + text = "helm_mail_dungeonshaman_b_01_trf.m2", + value = "helm_mail_dungeonshaman_b_01_trf.m2", + }, + { + fileId = "139421", + text = "helm_mail_dungeonshaman_b_01_trm.m2", + value = "helm_mail_dungeonshaman_b_01_trm.m2", + }, + { + fileId = "139427", + text = "helm_mail_northrend_b_01_bef.m2", + value = "helm_mail_northrend_b_01_bef.m2", + }, + { + fileId = "139428", + text = "helm_mail_northrend_b_01_bem.m2", + value = "helm_mail_northrend_b_01_bem.m2", + }, + { + fileId = "139429", + text = "helm_mail_northrend_b_01_drf.m2", + value = "helm_mail_northrend_b_01_drf.m2", + }, + { + fileId = "139430", + text = "helm_mail_northrend_b_01_drm.m2", + value = "helm_mail_northrend_b_01_drm.m2", + }, + { + fileId = "139431", + text = "helm_mail_northrend_b_01_dwf.m2", + value = "helm_mail_northrend_b_01_dwf.m2", + }, + { + fileId = "139432", + text = "helm_mail_northrend_b_01_dwm.m2", + value = "helm_mail_northrend_b_01_dwm.m2", + }, + { + fileId = "139433", + text = "helm_mail_northrend_b_01_gnf.m2", + value = "helm_mail_northrend_b_01_gnf.m2", + }, + { + fileId = "139434", + text = "helm_mail_northrend_b_01_gnm.m2", + value = "helm_mail_northrend_b_01_gnm.m2", + }, + { + fileId = "139435", + text = "helm_mail_northrend_b_01_huf.m2", + value = "helm_mail_northrend_b_01_huf.m2", + }, + { + fileId = "139436", + text = "helm_mail_northrend_b_01_hum.m2", + value = "helm_mail_northrend_b_01_hum.m2", + }, + { + fileId = "139437", + text = "helm_mail_northrend_b_01_nif.m2", + value = "helm_mail_northrend_b_01_nif.m2", + }, + { + fileId = "139438", + text = "helm_mail_northrend_b_01_nim.m2", + value = "helm_mail_northrend_b_01_nim.m2", + }, + { + fileId = "139439", + text = "helm_mail_northrend_b_01_orf.m2", + value = "helm_mail_northrend_b_01_orf.m2", + }, + { + fileId = "139440", + text = "helm_mail_northrend_b_01_orm.m2", + value = "helm_mail_northrend_b_01_orm.m2", + }, + { + fileId = "139441", + text = "helm_mail_northrend_b_01_scf.m2", + value = "helm_mail_northrend_b_01_scf.m2", + }, + { + fileId = "139442", + text = "helm_mail_northrend_b_01_scm.m2", + value = "helm_mail_northrend_b_01_scm.m2", + }, + { + fileId = "139443", + text = "helm_mail_northrend_b_01_taf.m2", + value = "helm_mail_northrend_b_01_taf.m2", + }, + { + fileId = "139444", + text = "helm_mail_northrend_b_01_tam.m2", + value = "helm_mail_northrend_b_01_tam.m2", + }, + { + fileId = "139445", + text = "helm_mail_northrend_b_01_trf.m2", + value = "helm_mail_northrend_b_01_trf.m2", + }, + { + fileId = "139446", + text = "helm_mail_northrend_b_01_trm.m2", + value = "helm_mail_northrend_b_01_trm.m2", + }, + { + fileId = "139452", + text = "helm_mail_northrend_b_02_bef.m2", + value = "helm_mail_northrend_b_02_bef.m2", + }, + { + fileId = "139453", + text = "helm_mail_northrend_b_02_bem.m2", + value = "helm_mail_northrend_b_02_bem.m2", + }, + { + fileId = "139454", + text = "helm_mail_northrend_b_02_drf.m2", + value = "helm_mail_northrend_b_02_drf.m2", + }, + { + fileId = "139455", + text = "helm_mail_northrend_b_02_drm.m2", + value = "helm_mail_northrend_b_02_drm.m2", + }, + { + fileId = "139456", + text = "helm_mail_northrend_b_02_dwf.m2", + value = "helm_mail_northrend_b_02_dwf.m2", + }, + { + fileId = "139457", + text = "helm_mail_northrend_b_02_dwm.m2", + value = "helm_mail_northrend_b_02_dwm.m2", + }, + { + fileId = "139458", + text = "helm_mail_northrend_b_02_gnf.m2", + value = "helm_mail_northrend_b_02_gnf.m2", + }, + { + fileId = "139459", + text = "helm_mail_northrend_b_02_gnm.m2", + value = "helm_mail_northrend_b_02_gnm.m2", + }, + { + fileId = "139460", + text = "helm_mail_northrend_b_02_huf.m2", + value = "helm_mail_northrend_b_02_huf.m2", + }, + { + fileId = "139461", + text = "helm_mail_northrend_b_02_hum.m2", + value = "helm_mail_northrend_b_02_hum.m2", + }, + { + fileId = "139462", + text = "helm_mail_northrend_b_02_nif.m2", + value = "helm_mail_northrend_b_02_nif.m2", + }, + { + fileId = "139463", + text = "helm_mail_northrend_b_02_nim.m2", + value = "helm_mail_northrend_b_02_nim.m2", + }, + { + fileId = "139464", + text = "helm_mail_northrend_b_02_orf.m2", + value = "helm_mail_northrend_b_02_orf.m2", + }, + { + fileId = "139465", + text = "helm_mail_northrend_b_02_orm.m2", + value = "helm_mail_northrend_b_02_orm.m2", + }, + { + fileId = "139466", + text = "helm_mail_northrend_b_02_scf.m2", + value = "helm_mail_northrend_b_02_scf.m2", + }, + { + fileId = "139467", + text = "helm_mail_northrend_b_02_scm.m2", + value = "helm_mail_northrend_b_02_scm.m2", + }, + { + fileId = "139468", + text = "helm_mail_northrend_b_02_taf.m2", + value = "helm_mail_northrend_b_02_taf.m2", + }, + { + fileId = "139469", + text = "helm_mail_northrend_b_02_tam.m2", + value = "helm_mail_northrend_b_02_tam.m2", + }, + { + fileId = "139470", + text = "helm_mail_northrend_b_02_trf.m2", + value = "helm_mail_northrend_b_02_trf.m2", + }, + { + fileId = "139471", + text = "helm_mail_northrend_b_02_trm.m2", + value = "helm_mail_northrend_b_02_trm.m2", + }, + { + fileId = "139478", + text = "helm_mail_northrend_b_03_bef.m2", + value = "helm_mail_northrend_b_03_bef.m2", + }, + { + fileId = "139479", + text = "helm_mail_northrend_b_03_bem.m2", + value = "helm_mail_northrend_b_03_bem.m2", + }, + { + fileId = "139480", + text = "helm_mail_northrend_b_03_drf.m2", + value = "helm_mail_northrend_b_03_drf.m2", + }, + { + fileId = "139481", + text = "helm_mail_northrend_b_03_drm.m2", + value = "helm_mail_northrend_b_03_drm.m2", + }, + { + fileId = "139482", + text = "helm_mail_northrend_b_03_dwf.m2", + value = "helm_mail_northrend_b_03_dwf.m2", + }, + { + fileId = "139483", + text = "helm_mail_northrend_b_03_dwm.m2", + value = "helm_mail_northrend_b_03_dwm.m2", + }, + { + fileId = "139484", + text = "helm_mail_northrend_b_03_gnf.m2", + value = "helm_mail_northrend_b_03_gnf.m2", + }, + { + fileId = "139485", + text = "helm_mail_northrend_b_03_gnm.m2", + value = "helm_mail_northrend_b_03_gnm.m2", + }, + { + fileId = "139486", + text = "helm_mail_northrend_b_03_huf.m2", + value = "helm_mail_northrend_b_03_huf.m2", + }, + { + fileId = "139487", + text = "helm_mail_northrend_b_03_hum.m2", + value = "helm_mail_northrend_b_03_hum.m2", + }, + { + fileId = "139488", + text = "helm_mail_northrend_b_03_nif.m2", + value = "helm_mail_northrend_b_03_nif.m2", + }, + { + fileId = "139489", + text = "helm_mail_northrend_b_03_nim.m2", + value = "helm_mail_northrend_b_03_nim.m2", + }, + { + fileId = "139490", + text = "helm_mail_northrend_b_03_orf.m2", + value = "helm_mail_northrend_b_03_orf.m2", + }, + { + fileId = "139491", + text = "helm_mail_northrend_b_03_orm.m2", + value = "helm_mail_northrend_b_03_orm.m2", + }, + { + fileId = "139492", + text = "helm_mail_northrend_b_03_scf.m2", + value = "helm_mail_northrend_b_03_scf.m2", + }, + { + fileId = "139493", + text = "helm_mail_northrend_b_03_scm.m2", + value = "helm_mail_northrend_b_03_scm.m2", + }, + { + fileId = "139494", + text = "helm_mail_northrend_b_03_taf.m2", + value = "helm_mail_northrend_b_03_taf.m2", + }, + { + fileId = "139495", + text = "helm_mail_northrend_b_03_tam.m2", + value = "helm_mail_northrend_b_03_tam.m2", + }, + { + fileId = "139496", + text = "helm_mail_northrend_b_03_trf.m2", + value = "helm_mail_northrend_b_03_trf.m2", + }, + { + fileId = "139497", + text = "helm_mail_northrend_b_03_trm.m2", + value = "helm_mail_northrend_b_03_trm.m2", + }, + { + fileId = "139502", + text = "helm_mail_northrend_d_01_bef.m2", + value = "helm_mail_northrend_d_01_bef.m2", + }, + { + fileId = "139503", + text = "helm_mail_northrend_d_01_bem.m2", + value = "helm_mail_northrend_d_01_bem.m2", + }, + { + fileId = "139504", + text = "helm_mail_northrend_d_01_drf.m2", + value = "helm_mail_northrend_d_01_drf.m2", + }, + { + fileId = "139505", + text = "helm_mail_northrend_d_01_drm.m2", + value = "helm_mail_northrend_d_01_drm.m2", + }, + { + fileId = "139506", + text = "helm_mail_northrend_d_01_dwf.m2", + value = "helm_mail_northrend_d_01_dwf.m2", + }, + { + fileId = "139507", + text = "helm_mail_northrend_d_01_dwm.m2", + value = "helm_mail_northrend_d_01_dwm.m2", + }, + { + fileId = "139508", + text = "helm_mail_northrend_d_01_gnf.m2", + value = "helm_mail_northrend_d_01_gnf.m2", + }, + { + fileId = "139509", + text = "helm_mail_northrend_d_01_gnm.m2", + value = "helm_mail_northrend_d_01_gnm.m2", + }, + { + fileId = "139510", + text = "helm_mail_northrend_d_01_huf.m2", + value = "helm_mail_northrend_d_01_huf.m2", + }, + { + fileId = "139511", + text = "helm_mail_northrend_d_01_hum.m2", + value = "helm_mail_northrend_d_01_hum.m2", + }, + { + fileId = "139512", + text = "helm_mail_northrend_d_01_nif.m2", + value = "helm_mail_northrend_d_01_nif.m2", + }, + { + fileId = "139513", + text = "helm_mail_northrend_d_01_nim.m2", + value = "helm_mail_northrend_d_01_nim.m2", + }, + { + fileId = "139514", + text = "helm_mail_northrend_d_01_orf.m2", + value = "helm_mail_northrend_d_01_orf.m2", + }, + { + fileId = "139515", + text = "helm_mail_northrend_d_01_orm.m2", + value = "helm_mail_northrend_d_01_orm.m2", + }, + { + fileId = "139516", + text = "helm_mail_northrend_d_01_scf.m2", + value = "helm_mail_northrend_d_01_scf.m2", + }, + { + fileId = "139517", + text = "helm_mail_northrend_d_01_scm.m2", + value = "helm_mail_northrend_d_01_scm.m2", + }, + { + fileId = "139518", + text = "helm_mail_northrend_d_01_taf.m2", + value = "helm_mail_northrend_d_01_taf.m2", + }, + { + fileId = "139519", + text = "helm_mail_northrend_d_01_tam.m2", + value = "helm_mail_northrend_d_01_tam.m2", + }, + { + fileId = "139520", + text = "helm_mail_northrend_d_01_trf.m2", + value = "helm_mail_northrend_d_01_trf.m2", + }, + { + fileId = "139521", + text = "helm_mail_northrend_d_01_trm.m2", + value = "helm_mail_northrend_d_01_trm.m2", + }, + { + fileId = "139526", + text = "helm_mail_pvpalliance_a_01_bef.m2", + value = "helm_mail_pvpalliance_a_01_bef.m2", + }, + { + fileId = "139527", + text = "helm_mail_pvpalliance_a_01_bem.m2", + value = "helm_mail_pvpalliance_a_01_bem.m2", + }, + { + fileId = "139528", + text = "helm_mail_pvpalliance_a_01_drf.m2", + value = "helm_mail_pvpalliance_a_01_drf.m2", + }, + { + fileId = "139529", + text = "helm_mail_pvpalliance_a_01_drm.m2", + value = "helm_mail_pvpalliance_a_01_drm.m2", + }, + { + fileId = "139530", + text = "helm_mail_pvpalliance_a_01_dwf.m2", + value = "helm_mail_pvpalliance_a_01_dwf.m2", + }, + { + fileId = "139531", + text = "helm_mail_pvpalliance_a_01_dwm.m2", + value = "helm_mail_pvpalliance_a_01_dwm.m2", + }, + { + fileId = "139532", + text = "helm_mail_pvpalliance_a_01_gnf.m2", + value = "helm_mail_pvpalliance_a_01_gnf.m2", + }, + { + fileId = "139533", + text = "helm_mail_pvpalliance_a_01_gnm.m2", + value = "helm_mail_pvpalliance_a_01_gnm.m2", + }, + { + fileId = "139534", + text = "helm_mail_pvpalliance_a_01_gof.m2", + value = "helm_mail_pvpalliance_a_01_gof.m2", + }, + { + fileId = "139535", + text = "helm_mail_pvpalliance_a_01_gom.m2", + value = "helm_mail_pvpalliance_a_01_gom.m2", + }, + { + fileId = "139536", + text = "helm_mail_pvpalliance_a_01_huf.m2", + value = "helm_mail_pvpalliance_a_01_huf.m2", + }, + { + fileId = "139537", + text = "helm_mail_pvpalliance_a_01_hum.m2", + value = "helm_mail_pvpalliance_a_01_hum.m2", + }, + { + fileId = "139538", + text = "helm_mail_pvpalliance_a_01_nif.m2", + value = "helm_mail_pvpalliance_a_01_nif.m2", + }, + { + fileId = "139539", + text = "helm_mail_pvpalliance_a_01_nim.m2", + value = "helm_mail_pvpalliance_a_01_nim.m2", + }, + { + fileId = "139540", + text = "helm_mail_pvpalliance_a_01_orf.m2", + value = "helm_mail_pvpalliance_a_01_orf.m2", + }, + { + fileId = "139541", + text = "helm_mail_pvpalliance_a_01_orm.m2", + value = "helm_mail_pvpalliance_a_01_orm.m2", + }, + { + fileId = "139542", + text = "helm_mail_pvpalliance_a_01_scf.m2", + value = "helm_mail_pvpalliance_a_01_scf.m2", + }, + { + fileId = "139543", + text = "helm_mail_pvpalliance_a_01_scm.m2", + value = "helm_mail_pvpalliance_a_01_scm.m2", + }, + { + fileId = "139544", + text = "helm_mail_pvpalliance_a_01_taf.m2", + value = "helm_mail_pvpalliance_a_01_taf.m2", + }, + { + fileId = "139545", + text = "helm_mail_pvpalliance_a_01_tam.m2", + value = "helm_mail_pvpalliance_a_01_tam.m2", + }, + { + fileId = "139546", + text = "helm_mail_pvpalliance_a_01_trf.m2", + value = "helm_mail_pvpalliance_a_01_trf.m2", + }, + { + fileId = "139547", + text = "helm_mail_pvpalliance_a_01_trm.m2", + value = "helm_mail_pvpalliance_a_01_trm.m2", + }, + { + fileId = "139551", + text = "helm_mail_pvpalliance_c_01_bef.m2", + value = "helm_mail_pvpalliance_c_01_bef.m2", + }, + { + fileId = "139552", + text = "helm_mail_pvpalliance_c_01_bem.m2", + value = "helm_mail_pvpalliance_c_01_bem.m2", + }, + { + fileId = "139553", + text = "helm_mail_pvpalliance_c_01_drf.m2", + value = "helm_mail_pvpalliance_c_01_drf.m2", + }, + { + fileId = "139554", + text = "helm_mail_pvpalliance_c_01_drm.m2", + value = "helm_mail_pvpalliance_c_01_drm.m2", + }, + { + fileId = "139555", + text = "helm_mail_pvpalliance_c_01_dwf.m2", + value = "helm_mail_pvpalliance_c_01_dwf.m2", + }, + { + fileId = "139556", + text = "helm_mail_pvpalliance_c_01_dwm.m2", + value = "helm_mail_pvpalliance_c_01_dwm.m2", + }, + { + fileId = "139557", + text = "helm_mail_pvpalliance_c_01_gnf.m2", + value = "helm_mail_pvpalliance_c_01_gnf.m2", + }, + { + fileId = "139558", + text = "helm_mail_pvpalliance_c_01_gnm.m2", + value = "helm_mail_pvpalliance_c_01_gnm.m2", + }, + { + fileId = "139559", + text = "helm_mail_pvpalliance_c_01_gof.m2", + value = "helm_mail_pvpalliance_c_01_gof.m2", + }, + { + fileId = "139560", + text = "helm_mail_pvpalliance_c_01_gom.m2", + value = "helm_mail_pvpalliance_c_01_gom.m2", + }, + { + fileId = "139561", + text = "helm_mail_pvpalliance_c_01_huf.m2", + value = "helm_mail_pvpalliance_c_01_huf.m2", + }, + { + fileId = "139562", + text = "helm_mail_pvpalliance_c_01_hum.m2", + value = "helm_mail_pvpalliance_c_01_hum.m2", + }, + { + fileId = "139563", + text = "helm_mail_pvpalliance_c_01_nif.m2", + value = "helm_mail_pvpalliance_c_01_nif.m2", + }, + { + fileId = "139564", + text = "helm_mail_pvpalliance_c_01_nim.m2", + value = "helm_mail_pvpalliance_c_01_nim.m2", + }, + { + fileId = "139565", + text = "helm_mail_pvpalliance_c_01_orf.m2", + value = "helm_mail_pvpalliance_c_01_orf.m2", + }, + { + fileId = "139566", + text = "helm_mail_pvpalliance_c_01_orm.m2", + value = "helm_mail_pvpalliance_c_01_orm.m2", + }, + { + fileId = "139567", + text = "helm_mail_pvpalliance_c_01_scf.m2", + value = "helm_mail_pvpalliance_c_01_scf.m2", + }, + { + fileId = "139568", + text = "helm_mail_pvpalliance_c_01_scm.m2", + value = "helm_mail_pvpalliance_c_01_scm.m2", + }, + { + fileId = "139569", + text = "helm_mail_pvpalliance_c_01_taf.m2", + value = "helm_mail_pvpalliance_c_01_taf.m2", + }, + { + fileId = "139570", + text = "helm_mail_pvpalliance_c_01_tam.m2", + value = "helm_mail_pvpalliance_c_01_tam.m2", + }, + { + fileId = "139571", + text = "helm_mail_pvpalliance_c_01_trf.m2", + value = "helm_mail_pvpalliance_c_01_trf.m2", + }, + { + fileId = "139572", + text = "helm_mail_pvpalliance_c_01_trm.m2", + value = "helm_mail_pvpalliance_c_01_trm.m2", + }, + { + fileId = "139573", + text = "helm_mail_pvphorde_a_01_bef.m2", + value = "helm_mail_pvphorde_a_01_bef.m2", + }, + { + fileId = "139574", + text = "helm_mail_pvphorde_a_01_bem.m2", + value = "helm_mail_pvphorde_a_01_bem.m2", + }, + { + fileId = "139575", + text = "helm_mail_pvphorde_a_01_drf.m2", + value = "helm_mail_pvphorde_a_01_drf.m2", + }, + { + fileId = "139576", + text = "helm_mail_pvphorde_a_01_drm.m2", + value = "helm_mail_pvphorde_a_01_drm.m2", + }, + { + fileId = "139577", + text = "helm_mail_pvphorde_a_01_dwf.m2", + value = "helm_mail_pvphorde_a_01_dwf.m2", + }, + { + fileId = "139578", + text = "helm_mail_pvphorde_a_01_dwm.m2", + value = "helm_mail_pvphorde_a_01_dwm.m2", + }, + { + fileId = "139579", + text = "helm_mail_pvphorde_a_01_gnf.m2", + value = "helm_mail_pvphorde_a_01_gnf.m2", + }, + { + fileId = "139580", + text = "helm_mail_pvphorde_a_01_gnm.m2", + value = "helm_mail_pvphorde_a_01_gnm.m2", + }, + { + fileId = "139581", + text = "helm_mail_pvphorde_a_01_gof.m2", + value = "helm_mail_pvphorde_a_01_gof.m2", + }, + { + fileId = "139582", + text = "helm_mail_pvphorde_a_01_huf.m2", + value = "helm_mail_pvphorde_a_01_huf.m2", + }, + { + fileId = "139583", + text = "helm_mail_pvphorde_a_01_hum.m2", + value = "helm_mail_pvphorde_a_01_hum.m2", + }, + { + fileId = "139584", + text = "helm_mail_pvphorde_a_01_nif.m2", + value = "helm_mail_pvphorde_a_01_nif.m2", + }, + { + fileId = "139585", + text = "helm_mail_pvphorde_a_01_nim.m2", + value = "helm_mail_pvphorde_a_01_nim.m2", + }, + { + fileId = "139586", + text = "helm_mail_pvphorde_a_01_orf.m2", + value = "helm_mail_pvphorde_a_01_orf.m2", + }, + { + fileId = "139587", + text = "helm_mail_pvphorde_a_01_orm.m2", + value = "helm_mail_pvphorde_a_01_orm.m2", + }, + { + fileId = "139588", + text = "helm_mail_pvphorde_a_01_scf.m2", + value = "helm_mail_pvphorde_a_01_scf.m2", + }, + { + fileId = "139589", + text = "helm_mail_pvphorde_a_01_scm.m2", + value = "helm_mail_pvphorde_a_01_scm.m2", + }, + { + fileId = "139590", + text = "helm_mail_pvphorde_a_01_taf.m2", + value = "helm_mail_pvphorde_a_01_taf.m2", + }, + { + fileId = "139591", + text = "helm_mail_pvphorde_a_01_tam.m2", + value = "helm_mail_pvphorde_a_01_tam.m2", + }, + { + fileId = "139592", + text = "helm_mail_pvphorde_a_01_trf.m2", + value = "helm_mail_pvphorde_a_01_trf.m2", + }, + { + fileId = "139593", + text = "helm_mail_pvphorde_a_01_trm.m2", + value = "helm_mail_pvphorde_a_01_trm.m2", + }, + { + fileId = "139596", + text = "helm_mail_pvphorde_c_01_bef.m2", + value = "helm_mail_pvphorde_c_01_bef.m2", + }, + { + fileId = "139597", + text = "helm_mail_pvphorde_c_01_bem.m2", + value = "helm_mail_pvphorde_c_01_bem.m2", + }, + { + fileId = "139598", + text = "helm_mail_pvphorde_c_01_drf.m2", + value = "helm_mail_pvphorde_c_01_drf.m2", + }, + { + fileId = "139599", + text = "helm_mail_pvphorde_c_01_drm.m2", + value = "helm_mail_pvphorde_c_01_drm.m2", + }, + { + fileId = "139600", + text = "helm_mail_pvphorde_c_01_dwf.m2", + value = "helm_mail_pvphorde_c_01_dwf.m2", + }, + { + fileId = "139601", + text = "helm_mail_pvphorde_c_01_dwm.m2", + value = "helm_mail_pvphorde_c_01_dwm.m2", + }, + { + fileId = "139602", + text = "helm_mail_pvphorde_c_01_gnf.m2", + value = "helm_mail_pvphorde_c_01_gnf.m2", + }, + { + fileId = "139603", + text = "helm_mail_pvphorde_c_01_gnm.m2", + value = "helm_mail_pvphorde_c_01_gnm.m2", + }, + { + fileId = "139604", + text = "helm_mail_pvphorde_c_01_gof.m2", + value = "helm_mail_pvphorde_c_01_gof.m2", + }, + { + fileId = "139605", + text = "helm_mail_pvphorde_c_01_gom.m2", + value = "helm_mail_pvphorde_c_01_gom.m2", + }, + { + fileId = "139606", + text = "helm_mail_pvphorde_c_01_huf.m2", + value = "helm_mail_pvphorde_c_01_huf.m2", + }, + { + fileId = "139607", + text = "helm_mail_pvphorde_c_01_hum.m2", + value = "helm_mail_pvphorde_c_01_hum.m2", + }, + { + fileId = "139608", + text = "helm_mail_pvphorde_c_01_nif.m2", + value = "helm_mail_pvphorde_c_01_nif.m2", + }, + { + fileId = "139609", + text = "helm_mail_pvphorde_c_01_nim.m2", + value = "helm_mail_pvphorde_c_01_nim.m2", + }, + { + fileId = "139610", + text = "helm_mail_pvphorde_c_01_orf.m2", + value = "helm_mail_pvphorde_c_01_orf.m2", + }, + { + fileId = "139611", + text = "helm_mail_pvphorde_c_01_orm.m2", + value = "helm_mail_pvphorde_c_01_orm.m2", + }, + { + fileId = "139612", + text = "helm_mail_pvphorde_c_01_scf.m2", + value = "helm_mail_pvphorde_c_01_scf.m2", + }, + { + fileId = "139613", + text = "helm_mail_pvphorde_c_01_scm.m2", + value = "helm_mail_pvphorde_c_01_scm.m2", + }, + { + fileId = "139614", + text = "helm_mail_pvphorde_c_01_taf.m2", + value = "helm_mail_pvphorde_c_01_taf.m2", + }, + { + fileId = "139615", + text = "helm_mail_pvphorde_c_01_tam.m2", + value = "helm_mail_pvphorde_c_01_tam.m2", + }, + { + fileId = "139616", + text = "helm_mail_pvphorde_c_01_trf.m2", + value = "helm_mail_pvphorde_c_01_trf.m2", + }, + { + fileId = "139617", + text = "helm_mail_pvphorde_c_01_trm.m2", + value = "helm_mail_pvphorde_c_01_trm.m2", + }, + { + fileId = "237975", + text = "helm_mail_pvphunter_b_01_bef.m2", + value = "helm_mail_pvphunter_b_01_bef.m2", + }, + { + fileId = "237976", + text = "helm_mail_pvphunter_b_01_bem.m2", + value = "helm_mail_pvphunter_b_01_bem.m2", + }, + { + fileId = "237977", + text = "helm_mail_pvphunter_b_01_drf.m2", + value = "helm_mail_pvphunter_b_01_drf.m2", + }, + { + fileId = "237978", + text = "helm_mail_pvphunter_b_01_drm.m2", + value = "helm_mail_pvphunter_b_01_drm.m2", + }, + { + fileId = "237979", + text = "helm_mail_pvphunter_b_01_dwf.m2", + value = "helm_mail_pvphunter_b_01_dwf.m2", + }, + { + fileId = "237980", + text = "helm_mail_pvphunter_b_01_dwm.m2", + value = "helm_mail_pvphunter_b_01_dwm.m2", + }, + { + fileId = "237981", + text = "helm_mail_pvphunter_b_01_gnf.m2", + value = "helm_mail_pvphunter_b_01_gnf.m2", + }, + { + fileId = "237982", + text = "helm_mail_pvphunter_b_01_gnm.m2", + value = "helm_mail_pvphunter_b_01_gnm.m2", + }, + { + fileId = "237983", + text = "helm_mail_pvphunter_b_01_gof.m2", + value = "helm_mail_pvphunter_b_01_gof.m2", + }, + { + fileId = "237984", + text = "helm_mail_pvphunter_b_01_gom.m2", + value = "helm_mail_pvphunter_b_01_gom.m2", + }, + { + fileId = "237985", + text = "helm_mail_pvphunter_b_01_huf.m2", + value = "helm_mail_pvphunter_b_01_huf.m2", + }, + { + fileId = "237986", + text = "helm_mail_pvphunter_b_01_hum.m2", + value = "helm_mail_pvphunter_b_01_hum.m2", + }, + { + fileId = "237987", + text = "helm_mail_pvphunter_b_01_nif.m2", + value = "helm_mail_pvphunter_b_01_nif.m2", + }, + { + fileId = "237988", + text = "helm_mail_pvphunter_b_01_nim.m2", + value = "helm_mail_pvphunter_b_01_nim.m2", + }, + { + fileId = "237989", + text = "helm_mail_pvphunter_b_01_orf.m2", + value = "helm_mail_pvphunter_b_01_orf.m2", + }, + { + fileId = "237990", + text = "helm_mail_pvphunter_b_01_orm.m2", + value = "helm_mail_pvphunter_b_01_orm.m2", + }, + { + fileId = "237991", + text = "helm_mail_pvphunter_b_01_scf.m2", + value = "helm_mail_pvphunter_b_01_scf.m2", + }, + { + fileId = "237992", + text = "helm_mail_pvphunter_b_01_scm.m2", + value = "helm_mail_pvphunter_b_01_scm.m2", + }, + { + fileId = "237993", + text = "helm_mail_pvphunter_b_01_taf.m2", + value = "helm_mail_pvphunter_b_01_taf.m2", + }, + { + fileId = "237994", + text = "helm_mail_pvphunter_b_01_tam.m2", + value = "helm_mail_pvphunter_b_01_tam.m2", + }, + { + fileId = "237995", + text = "helm_mail_pvphunter_b_01_trf.m2", + value = "helm_mail_pvphunter_b_01_trf.m2", + }, + { + fileId = "237996", + text = "helm_mail_pvphunter_b_01_trm.m2", + value = "helm_mail_pvphunter_b_01_trm.m2", + }, + { + fileId = "254120", + text = "helm_mail_pvphunter_b_02_bef.m2", + value = "helm_mail_pvphunter_b_02_bef.m2", + }, + { + fileId = "254121", + text = "helm_mail_pvphunter_b_02_bem.m2", + value = "helm_mail_pvphunter_b_02_bem.m2", + }, + { + fileId = "254122", + text = "helm_mail_pvphunter_b_02_drf.m2", + value = "helm_mail_pvphunter_b_02_drf.m2", + }, + { + fileId = "254123", + text = "helm_mail_pvphunter_b_02_drm.m2", + value = "helm_mail_pvphunter_b_02_drm.m2", + }, + { + fileId = "254124", + text = "helm_mail_pvphunter_b_02_dwf.m2", + value = "helm_mail_pvphunter_b_02_dwf.m2", + }, + { + fileId = "254125", + text = "helm_mail_pvphunter_b_02_dwm.m2", + value = "helm_mail_pvphunter_b_02_dwm.m2", + }, + { + fileId = "254126", + text = "helm_mail_pvphunter_b_02_gnf.m2", + value = "helm_mail_pvphunter_b_02_gnf.m2", + }, + { + fileId = "254127", + text = "helm_mail_pvphunter_b_02_gnm.m2", + value = "helm_mail_pvphunter_b_02_gnm.m2", + }, + { + fileId = "254128", + text = "helm_mail_pvphunter_b_02_gof.m2", + value = "helm_mail_pvphunter_b_02_gof.m2", + }, + { + fileId = "254129", + text = "helm_mail_pvphunter_b_02_gom.m2", + value = "helm_mail_pvphunter_b_02_gom.m2", + }, + { + fileId = "254130", + text = "helm_mail_pvphunter_b_02_huf.m2", + value = "helm_mail_pvphunter_b_02_huf.m2", + }, + { + fileId = "254131", + text = "helm_mail_pvphunter_b_02_hum.m2", + value = "helm_mail_pvphunter_b_02_hum.m2", + }, + { + fileId = "254132", + text = "helm_mail_pvphunter_b_02_nif.m2", + value = "helm_mail_pvphunter_b_02_nif.m2", + }, + { + fileId = "254133", + text = "helm_mail_pvphunter_b_02_nim.m2", + value = "helm_mail_pvphunter_b_02_nim.m2", + }, + { + fileId = "254134", + text = "helm_mail_pvphunter_b_02_orf.m2", + value = "helm_mail_pvphunter_b_02_orf.m2", + }, + { + fileId = "254135", + text = "helm_mail_pvphunter_b_02_orm.m2", + value = "helm_mail_pvphunter_b_02_orm.m2", + }, + { + fileId = "254136", + text = "helm_mail_pvphunter_b_02_scf.m2", + value = "helm_mail_pvphunter_b_02_scf.m2", + }, + { + fileId = "254137", + text = "helm_mail_pvphunter_b_02_scm.m2", + value = "helm_mail_pvphunter_b_02_scm.m2", + }, + { + fileId = "254138", + text = "helm_mail_pvphunter_b_02_taf.m2", + value = "helm_mail_pvphunter_b_02_taf.m2", + }, + { + fileId = "254139", + text = "helm_mail_pvphunter_b_02_tam.m2", + value = "helm_mail_pvphunter_b_02_tam.m2", + }, + { + fileId = "254140", + text = "helm_mail_pvphunter_b_02_trf.m2", + value = "helm_mail_pvphunter_b_02_trf.m2", + }, + { + fileId = "254141", + text = "helm_mail_pvphunter_b_02_trm.m2", + value = "helm_mail_pvphunter_b_02_trm.m2", + }, + { + fileId = "307178", + text = "helm_mail_pvphunter_b_03_bef.m2", + value = "helm_mail_pvphunter_b_03_bef.m2", + }, + { + fileId = "307179", + text = "helm_mail_pvphunter_b_03_bem.m2", + value = "helm_mail_pvphunter_b_03_bem.m2", + }, + { + fileId = "307180", + text = "helm_mail_pvphunter_b_03_drf.m2", + value = "helm_mail_pvphunter_b_03_drf.m2", + }, + { + fileId = "307181", + text = "helm_mail_pvphunter_b_03_drm.m2", + value = "helm_mail_pvphunter_b_03_drm.m2", + }, + { + fileId = "307182", + text = "helm_mail_pvphunter_b_03_dwf.m2", + value = "helm_mail_pvphunter_b_03_dwf.m2", + }, + { + fileId = "307183", + text = "helm_mail_pvphunter_b_03_dwm.m2", + value = "helm_mail_pvphunter_b_03_dwm.m2", + }, + { + fileId = "307184", + text = "helm_mail_pvphunter_b_03_gnf.m2", + value = "helm_mail_pvphunter_b_03_gnf.m2", + }, + { + fileId = "307185", + text = "helm_mail_pvphunter_b_03_gnm.m2", + value = "helm_mail_pvphunter_b_03_gnm.m2", + }, + { + fileId = "307186", + text = "helm_mail_pvphunter_b_03_gof.m2", + value = "helm_mail_pvphunter_b_03_gof.m2", + }, + { + fileId = "307187", + text = "helm_mail_pvphunter_b_03_gom.m2", + value = "helm_mail_pvphunter_b_03_gom.m2", + }, + { + fileId = "307188", + text = "helm_mail_pvphunter_b_03_huf.m2", + value = "helm_mail_pvphunter_b_03_huf.m2", + }, + { + fileId = "307189", + text = "helm_mail_pvphunter_b_03_hum.m2", + value = "helm_mail_pvphunter_b_03_hum.m2", + }, + { + fileId = "307190", + text = "helm_mail_pvphunter_b_03_nif.m2", + value = "helm_mail_pvphunter_b_03_nif.m2", + }, + { + fileId = "307191", + text = "helm_mail_pvphunter_b_03_nim.m2", + value = "helm_mail_pvphunter_b_03_nim.m2", + }, + { + fileId = "307192", + text = "helm_mail_pvphunter_b_03_orf.m2", + value = "helm_mail_pvphunter_b_03_orf.m2", + }, + { + fileId = "307193", + text = "helm_mail_pvphunter_b_03_orm.m2", + value = "helm_mail_pvphunter_b_03_orm.m2", + }, + { + fileId = "307194", + text = "helm_mail_pvphunter_b_03_scf.m2", + value = "helm_mail_pvphunter_b_03_scf.m2", + }, + { + fileId = "307195", + text = "helm_mail_pvphunter_b_03_scm.m2", + value = "helm_mail_pvphunter_b_03_scm.m2", + }, + { + fileId = "307196", + text = "helm_mail_pvphunter_b_03_taf.m2", + value = "helm_mail_pvphunter_b_03_taf.m2", + }, + { + fileId = "307197", + text = "helm_mail_pvphunter_b_03_tam.m2", + value = "helm_mail_pvphunter_b_03_tam.m2", + }, + { + fileId = "307198", + text = "helm_mail_pvphunter_b_03_trf.m2", + value = "helm_mail_pvphunter_b_03_trf.m2", + }, + { + fileId = "307199", + text = "helm_mail_pvphunter_b_03_trm.m2", + value = "helm_mail_pvphunter_b_03_trm.m2", + }, + { + fileId = "344183", + text = "helm_mail_pvphunter_b_04_bef.m2", + value = "helm_mail_pvphunter_b_04_bef.m2", + }, + { + fileId = "344184", + text = "helm_mail_pvphunter_b_04_bem.m2", + value = "helm_mail_pvphunter_b_04_bem.m2", + }, + { + fileId = "344185", + text = "helm_mail_pvphunter_b_04_drf.m2", + value = "helm_mail_pvphunter_b_04_drf.m2", + }, + { + fileId = "344186", + text = "helm_mail_pvphunter_b_04_drm.m2", + value = "helm_mail_pvphunter_b_04_drm.m2", + }, + { + fileId = "344187", + text = "helm_mail_pvphunter_b_04_dwf.m2", + value = "helm_mail_pvphunter_b_04_dwf.m2", + }, + { + fileId = "344188", + text = "helm_mail_pvphunter_b_04_dwm.m2", + value = "helm_mail_pvphunter_b_04_dwm.m2", + }, + { + fileId = "344189", + text = "helm_mail_pvphunter_b_04_gnf.m2", + value = "helm_mail_pvphunter_b_04_gnf.m2", + }, + { + fileId = "344190", + text = "helm_mail_pvphunter_b_04_gnm.m2", + value = "helm_mail_pvphunter_b_04_gnm.m2", + }, + { + fileId = "344191", + text = "helm_mail_pvphunter_b_04_gof.m2", + value = "helm_mail_pvphunter_b_04_gof.m2", + }, + { + fileId = "344192", + text = "helm_mail_pvphunter_b_04_gom.m2", + value = "helm_mail_pvphunter_b_04_gom.m2", + }, + { + fileId = "344193", + text = "helm_mail_pvphunter_b_04_huf.m2", + value = "helm_mail_pvphunter_b_04_huf.m2", + }, + { + fileId = "344194", + text = "helm_mail_pvphunter_b_04_hum.m2", + value = "helm_mail_pvphunter_b_04_hum.m2", + }, + { + fileId = "344195", + text = "helm_mail_pvphunter_b_04_nif.m2", + value = "helm_mail_pvphunter_b_04_nif.m2", + }, + { + fileId = "344196", + text = "helm_mail_pvphunter_b_04_nim.m2", + value = "helm_mail_pvphunter_b_04_nim.m2", + }, + { + fileId = "344197", + text = "helm_mail_pvphunter_b_04_orf.m2", + value = "helm_mail_pvphunter_b_04_orf.m2", + }, + { + fileId = "344198", + text = "helm_mail_pvphunter_b_04_orm.m2", + value = "helm_mail_pvphunter_b_04_orm.m2", + }, + { + fileId = "344199", + text = "helm_mail_pvphunter_b_04_scf.m2", + value = "helm_mail_pvphunter_b_04_scf.m2", + }, + { + fileId = "344200", + text = "helm_mail_pvphunter_b_04_scm.m2", + value = "helm_mail_pvphunter_b_04_scm.m2", + }, + { + fileId = "344201", + text = "helm_mail_pvphunter_b_04_taf.m2", + value = "helm_mail_pvphunter_b_04_taf.m2", + }, + { + fileId = "344202", + text = "helm_mail_pvphunter_b_04_tam.m2", + value = "helm_mail_pvphunter_b_04_tam.m2", + }, + { + fileId = "344203", + text = "helm_mail_pvphunter_b_04_trf.m2", + value = "helm_mail_pvphunter_b_04_trf.m2", + }, + { + fileId = "344204", + text = "helm_mail_pvphunter_b_04_trm.m2", + value = "helm_mail_pvphunter_b_04_trm.m2", + }, + { + fileId = "238000", + text = "helm_mail_pvpshaman_b_01_bef.m2", + value = "helm_mail_pvpshaman_b_01_bef.m2", + }, + { + fileId = "238001", + text = "helm_mail_pvpshaman_b_01_bem.m2", + value = "helm_mail_pvpshaman_b_01_bem.m2", + }, + { + fileId = "238002", + text = "helm_mail_pvpshaman_b_01_drf.m2", + value = "helm_mail_pvpshaman_b_01_drf.m2", + }, + { + fileId = "238003", + text = "helm_mail_pvpshaman_b_01_drm.m2", + value = "helm_mail_pvpshaman_b_01_drm.m2", + }, + { + fileId = "238004", + text = "helm_mail_pvpshaman_b_01_dwf.m2", + value = "helm_mail_pvpshaman_b_01_dwf.m2", + }, + { + fileId = "238005", + text = "helm_mail_pvpshaman_b_01_dwm.m2", + value = "helm_mail_pvpshaman_b_01_dwm.m2", + }, + { + fileId = "238006", + text = "helm_mail_pvpshaman_b_01_gnf.m2", + value = "helm_mail_pvpshaman_b_01_gnf.m2", + }, + { + fileId = "238007", + text = "helm_mail_pvpshaman_b_01_gnm.m2", + value = "helm_mail_pvpshaman_b_01_gnm.m2", + }, + { + fileId = "238008", + text = "helm_mail_pvpshaman_b_01_gof.m2", + value = "helm_mail_pvpshaman_b_01_gof.m2", + }, + { + fileId = "238009", + text = "helm_mail_pvpshaman_b_01_gom.m2", + value = "helm_mail_pvpshaman_b_01_gom.m2", + }, + { + fileId = "238010", + text = "helm_mail_pvpshaman_b_01_huf.m2", + value = "helm_mail_pvpshaman_b_01_huf.m2", + }, + { + fileId = "238011", + text = "helm_mail_pvpshaman_b_01_hum.m2", + value = "helm_mail_pvpshaman_b_01_hum.m2", + }, + { + fileId = "238012", + text = "helm_mail_pvpshaman_b_01_nif.m2", + value = "helm_mail_pvpshaman_b_01_nif.m2", + }, + { + fileId = "238013", + text = "helm_mail_pvpshaman_b_01_nim.m2", + value = "helm_mail_pvpshaman_b_01_nim.m2", + }, + { + fileId = "238014", + text = "helm_mail_pvpshaman_b_01_orf.m2", + value = "helm_mail_pvpshaman_b_01_orf.m2", + }, + { + fileId = "238015", + text = "helm_mail_pvpshaman_b_01_orm.m2", + value = "helm_mail_pvpshaman_b_01_orm.m2", + }, + { + fileId = "238016", + text = "helm_mail_pvpshaman_b_01_scf.m2", + value = "helm_mail_pvpshaman_b_01_scf.m2", + }, + { + fileId = "238017", + text = "helm_mail_pvpshaman_b_01_scm.m2", + value = "helm_mail_pvpshaman_b_01_scm.m2", + }, + { + fileId = "238018", + text = "helm_mail_pvpshaman_b_01_taf.m2", + value = "helm_mail_pvpshaman_b_01_taf.m2", + }, + { + fileId = "238019", + text = "helm_mail_pvpshaman_b_01_tam.m2", + value = "helm_mail_pvpshaman_b_01_tam.m2", + }, + { + fileId = "238020", + text = "helm_mail_pvpshaman_b_01_trf.m2", + value = "helm_mail_pvpshaman_b_01_trf.m2", + }, + { + fileId = "238021", + text = "helm_mail_pvpshaman_b_01_trm.m2", + value = "helm_mail_pvpshaman_b_01_trm.m2", + }, + { + fileId = "255211", + text = "helm_mail_pvpshaman_b_02_bef.m2", + value = "helm_mail_pvpshaman_b_02_bef.m2", + }, + { + fileId = "255212", + text = "helm_mail_pvpshaman_b_02_bem.m2", + value = "helm_mail_pvpshaman_b_02_bem.m2", + }, + { + fileId = "255213", + text = "helm_mail_pvpshaman_b_02_drf.m2", + value = "helm_mail_pvpshaman_b_02_drf.m2", + }, + { + fileId = "255214", + text = "helm_mail_pvpshaman_b_02_drm.m2", + value = "helm_mail_pvpshaman_b_02_drm.m2", + }, + { + fileId = "255215", + text = "helm_mail_pvpshaman_b_02_dwf.m2", + value = "helm_mail_pvpshaman_b_02_dwf.m2", + }, + { + fileId = "255216", + text = "helm_mail_pvpshaman_b_02_dwm.m2", + value = "helm_mail_pvpshaman_b_02_dwm.m2", + }, + { + fileId = "255217", + text = "helm_mail_pvpshaman_b_02_gnf.m2", + value = "helm_mail_pvpshaman_b_02_gnf.m2", + }, + { + fileId = "255218", + text = "helm_mail_pvpshaman_b_02_gnm.m2", + value = "helm_mail_pvpshaman_b_02_gnm.m2", + }, + { + fileId = "255219", + text = "helm_mail_pvpshaman_b_02_gof.m2", + value = "helm_mail_pvpshaman_b_02_gof.m2", + }, + { + fileId = "255220", + text = "helm_mail_pvpshaman_b_02_gom.m2", + value = "helm_mail_pvpshaman_b_02_gom.m2", + }, + { + fileId = "255221", + text = "helm_mail_pvpshaman_b_02_huf.m2", + value = "helm_mail_pvpshaman_b_02_huf.m2", + }, + { + fileId = "255222", + text = "helm_mail_pvpshaman_b_02_hum.m2", + value = "helm_mail_pvpshaman_b_02_hum.m2", + }, + { + fileId = "255223", + text = "helm_mail_pvpshaman_b_02_nif.m2", + value = "helm_mail_pvpshaman_b_02_nif.m2", + }, + { + fileId = "255224", + text = "helm_mail_pvpshaman_b_02_nim.m2", + value = "helm_mail_pvpshaman_b_02_nim.m2", + }, + { + fileId = "255225", + text = "helm_mail_pvpshaman_b_02_orf.m2", + value = "helm_mail_pvpshaman_b_02_orf.m2", + }, + { + fileId = "255226", + text = "helm_mail_pvpshaman_b_02_orm.m2", + value = "helm_mail_pvpshaman_b_02_orm.m2", + }, + { + fileId = "255227", + text = "helm_mail_pvpshaman_b_02_scf.m2", + value = "helm_mail_pvpshaman_b_02_scf.m2", + }, + { + fileId = "255228", + text = "helm_mail_pvpshaman_b_02_scm.m2", + value = "helm_mail_pvpshaman_b_02_scm.m2", + }, + { + fileId = "255229", + text = "helm_mail_pvpshaman_b_02_taf.m2", + value = "helm_mail_pvpshaman_b_02_taf.m2", + }, + { + fileId = "255230", + text = "helm_mail_pvpshaman_b_02_tam.m2", + value = "helm_mail_pvpshaman_b_02_tam.m2", + }, + { + fileId = "255231", + text = "helm_mail_pvpshaman_b_02_trf.m2", + value = "helm_mail_pvpshaman_b_02_trf.m2", + }, + { + fileId = "255232", + text = "helm_mail_pvpshaman_b_02_trm.m2", + value = "helm_mail_pvpshaman_b_02_trm.m2", + }, + { + fileId = "306711", + text = "helm_mail_pvpshaman_b_03_bef.m2", + value = "helm_mail_pvpshaman_b_03_bef.m2", + }, + { + fileId = "306712", + text = "helm_mail_pvpshaman_b_03_bem.m2", + value = "helm_mail_pvpshaman_b_03_bem.m2", + }, + { + fileId = "306713", + text = "helm_mail_pvpshaman_b_03_drf.m2", + value = "helm_mail_pvpshaman_b_03_drf.m2", + }, + { + fileId = "306714", + text = "helm_mail_pvpshaman_b_03_drm.m2", + value = "helm_mail_pvpshaman_b_03_drm.m2", + }, + { + fileId = "306715", + text = "helm_mail_pvpshaman_b_03_dwf.m2", + value = "helm_mail_pvpshaman_b_03_dwf.m2", + }, + { + fileId = "306716", + text = "helm_mail_pvpshaman_b_03_dwm.m2", + value = "helm_mail_pvpshaman_b_03_dwm.m2", + }, + { + fileId = "306717", + text = "helm_mail_pvpshaman_b_03_gnf.m2", + value = "helm_mail_pvpshaman_b_03_gnf.m2", + }, + { + fileId = "306718", + text = "helm_mail_pvpshaman_b_03_gnm.m2", + value = "helm_mail_pvpshaman_b_03_gnm.m2", + }, + { + fileId = "306719", + text = "helm_mail_pvpshaman_b_03_gof.m2", + value = "helm_mail_pvpshaman_b_03_gof.m2", + }, + { + fileId = "306720", + text = "helm_mail_pvpshaman_b_03_gom.m2", + value = "helm_mail_pvpshaman_b_03_gom.m2", + }, + { + fileId = "306721", + text = "helm_mail_pvpshaman_b_03_huf.m2", + value = "helm_mail_pvpshaman_b_03_huf.m2", + }, + { + fileId = "306722", + text = "helm_mail_pvpshaman_b_03_hum.m2", + value = "helm_mail_pvpshaman_b_03_hum.m2", + }, + { + fileId = "306723", + text = "helm_mail_pvpshaman_b_03_nif.m2", + value = "helm_mail_pvpshaman_b_03_nif.m2", + }, + { + fileId = "306724", + text = "helm_mail_pvpshaman_b_03_nim.m2", + value = "helm_mail_pvpshaman_b_03_nim.m2", + }, + { + fileId = "306725", + text = "helm_mail_pvpshaman_b_03_orf.m2", + value = "helm_mail_pvpshaman_b_03_orf.m2", + }, + { + fileId = "306726", + text = "helm_mail_pvpshaman_b_03_orm.m2", + value = "helm_mail_pvpshaman_b_03_orm.m2", + }, + { + fileId = "306727", + text = "helm_mail_pvpshaman_b_03_scf.m2", + value = "helm_mail_pvpshaman_b_03_scf.m2", + }, + { + fileId = "306728", + text = "helm_mail_pvpshaman_b_03_scm.m2", + value = "helm_mail_pvpshaman_b_03_scm.m2", + }, + { + fileId = "306729", + text = "helm_mail_pvpshaman_b_03_taf.m2", + value = "helm_mail_pvpshaman_b_03_taf.m2", + }, + { + fileId = "306730", + text = "helm_mail_pvpshaman_b_03_tam.m2", + value = "helm_mail_pvpshaman_b_03_tam.m2", + }, + { + fileId = "306731", + text = "helm_mail_pvpshaman_b_03_trf.m2", + value = "helm_mail_pvpshaman_b_03_trf.m2", + }, + { + fileId = "306732", + text = "helm_mail_pvpshaman_b_03_trm.m2", + value = "helm_mail_pvpshaman_b_03_trm.m2", + }, + { + fileId = "349962", + text = "helm_mail_pvpshaman_b_04_bef.m2", + value = "helm_mail_pvpshaman_b_04_bef.m2", + }, + { + fileId = "349963", + text = "helm_mail_pvpshaman_b_04_bem.m2", + value = "helm_mail_pvpshaman_b_04_bem.m2", + }, + { + fileId = "349964", + text = "helm_mail_pvpshaman_b_04_drf.m2", + value = "helm_mail_pvpshaman_b_04_drf.m2", + }, + { + fileId = "349965", + text = "helm_mail_pvpshaman_b_04_drm.m2", + value = "helm_mail_pvpshaman_b_04_drm.m2", + }, + { + fileId = "349966", + text = "helm_mail_pvpshaman_b_04_dwf.m2", + value = "helm_mail_pvpshaman_b_04_dwf.m2", + }, + { + fileId = "349967", + text = "helm_mail_pvpshaman_b_04_dwm.m2", + value = "helm_mail_pvpshaman_b_04_dwm.m2", + }, + { + fileId = "349968", + text = "helm_mail_pvpshaman_b_04_gnf.m2", + value = "helm_mail_pvpshaman_b_04_gnf.m2", + }, + { + fileId = "349969", + text = "helm_mail_pvpshaman_b_04_gnm.m2", + value = "helm_mail_pvpshaman_b_04_gnm.m2", + }, + { + fileId = "349970", + text = "helm_mail_pvpshaman_b_04_gof.m2", + value = "helm_mail_pvpshaman_b_04_gof.m2", + }, + { + fileId = "349971", + text = "helm_mail_pvpshaman_b_04_gom.m2", + value = "helm_mail_pvpshaman_b_04_gom.m2", + }, + { + fileId = "349972", + text = "helm_mail_pvpshaman_b_04_huf.m2", + value = "helm_mail_pvpshaman_b_04_huf.m2", + }, + { + fileId = "349973", + text = "helm_mail_pvpshaman_b_04_hum.m2", + value = "helm_mail_pvpshaman_b_04_hum.m2", + }, + { + fileId = "349974", + text = "helm_mail_pvpshaman_b_04_nif.m2", + value = "helm_mail_pvpshaman_b_04_nif.m2", + }, + { + fileId = "349975", + text = "helm_mail_pvpshaman_b_04_nim.m2", + value = "helm_mail_pvpshaman_b_04_nim.m2", + }, + { + fileId = "349976", + text = "helm_mail_pvpshaman_b_04_orf.m2", + value = "helm_mail_pvpshaman_b_04_orf.m2", + }, + { + fileId = "349977", + text = "helm_mail_pvpshaman_b_04_orm.m2", + value = "helm_mail_pvpshaman_b_04_orm.m2", + }, + { + fileId = "349978", + text = "helm_mail_pvpshaman_b_04_scf.m2", + value = "helm_mail_pvpshaman_b_04_scf.m2", + }, + { + fileId = "349979", + text = "helm_mail_pvpshaman_b_04_scm.m2", + value = "helm_mail_pvpshaman_b_04_scm.m2", + }, + { + fileId = "349980", + text = "helm_mail_pvpshaman_b_04_taf.m2", + value = "helm_mail_pvpshaman_b_04_taf.m2", + }, + { + fileId = "349981", + text = "helm_mail_pvpshaman_b_04_tam.m2", + value = "helm_mail_pvpshaman_b_04_tam.m2", + }, + { + fileId = "349982", + text = "helm_mail_pvpshaman_b_04_trf.m2", + value = "helm_mail_pvpshaman_b_04_trf.m2", + }, + { + fileId = "349983", + text = "helm_mail_pvpshaman_b_04_trm.m2", + value = "helm_mail_pvpshaman_b_04_trm.m2", + }, + { + fileId = "139621", + text = "helm_mail_raidhunter_a_01_bef.m2", + value = "helm_mail_raidhunter_a_01_bef.m2", + }, + { + fileId = "139622", + text = "helm_mail_raidhunter_a_01_bem.m2", + value = "helm_mail_raidhunter_a_01_bem.m2", + }, + { + fileId = "139623", + text = "helm_mail_raidhunter_a_01_drf.m2", + value = "helm_mail_raidhunter_a_01_drf.m2", + }, + { + fileId = "139624", + text = "helm_mail_raidhunter_a_01_drm.m2", + value = "helm_mail_raidhunter_a_01_drm.m2", + }, + { + fileId = "139625", + text = "helm_mail_raidhunter_a_01_dwf.m2", + value = "helm_mail_raidhunter_a_01_dwf.m2", + }, + { + fileId = "139626", + text = "helm_mail_raidhunter_a_01_dwm.m2", + value = "helm_mail_raidhunter_a_01_dwm.m2", + }, + { + fileId = "139627", + text = "helm_mail_raidhunter_a_01_gnf.m2", + value = "helm_mail_raidhunter_a_01_gnf.m2", + }, + { + fileId = "139628", + text = "helm_mail_raidhunter_a_01_gnm.m2", + value = "helm_mail_raidhunter_a_01_gnm.m2", + }, + { + fileId = "139629", + text = "helm_mail_raidhunter_a_01_huf.m2", + value = "helm_mail_raidhunter_a_01_huf.m2", + }, + { + fileId = "139630", + text = "helm_mail_raidhunter_a_01_hum.m2", + value = "helm_mail_raidhunter_a_01_hum.m2", + }, + { + fileId = "139631", + text = "helm_mail_raidhunter_a_01_nif.m2", + value = "helm_mail_raidhunter_a_01_nif.m2", + }, + { + fileId = "139632", + text = "helm_mail_raidhunter_a_01_nim.m2", + value = "helm_mail_raidhunter_a_01_nim.m2", + }, + { + fileId = "139633", + text = "helm_mail_raidhunter_a_01_orf.m2", + value = "helm_mail_raidhunter_a_01_orf.m2", + }, + { + fileId = "139634", + text = "helm_mail_raidhunter_a_01_orm.m2", + value = "helm_mail_raidhunter_a_01_orm.m2", + }, + { + fileId = "139635", + text = "helm_mail_raidhunter_a_01_scf.m2", + value = "helm_mail_raidhunter_a_01_scf.m2", + }, + { + fileId = "139636", + text = "helm_mail_raidhunter_a_01_scm.m2", + value = "helm_mail_raidhunter_a_01_scm.m2", + }, + { + fileId = "139637", + text = "helm_mail_raidhunter_a_01_taf.m2", + value = "helm_mail_raidhunter_a_01_taf.m2", + }, + { + fileId = "139638", + text = "helm_mail_raidhunter_a_01_tam.m2", + value = "helm_mail_raidhunter_a_01_tam.m2", + }, + { + fileId = "139639", + text = "helm_mail_raidhunter_a_01_trf.m2", + value = "helm_mail_raidhunter_a_01_trf.m2", + }, + { + fileId = "139640", + text = "helm_mail_raidhunter_a_01_trm.m2", + value = "helm_mail_raidhunter_a_01_trm.m2", + }, + { + fileId = "139645", + text = "helm_mail_raidhunter_b_01_bef.m2", + value = "helm_mail_raidhunter_b_01_bef.m2", + }, + { + fileId = "139646", + text = "helm_mail_raidhunter_b_01_bem.m2", + value = "helm_mail_raidhunter_b_01_bem.m2", + }, + { + fileId = "139647", + text = "helm_mail_raidhunter_b_01_drf.m2", + value = "helm_mail_raidhunter_b_01_drf.m2", + }, + { + fileId = "139648", + text = "helm_mail_raidhunter_b_01_drm.m2", + value = "helm_mail_raidhunter_b_01_drm.m2", + }, + { + fileId = "139649", + text = "helm_mail_raidhunter_b_01_dwf.m2", + value = "helm_mail_raidhunter_b_01_dwf.m2", + }, + { + fileId = "139650", + text = "helm_mail_raidhunter_b_01_dwm.m2", + value = "helm_mail_raidhunter_b_01_dwm.m2", + }, + { + fileId = "139651", + text = "helm_mail_raidhunter_b_01_gnf.m2", + value = "helm_mail_raidhunter_b_01_gnf.m2", + }, + { + fileId = "139652", + text = "helm_mail_raidhunter_b_01_gnm.m2", + value = "helm_mail_raidhunter_b_01_gnm.m2", + }, + { + fileId = "139653", + text = "helm_mail_raidhunter_b_01_gof.m2", + value = "helm_mail_raidhunter_b_01_gof.m2", + }, + { + fileId = "139654", + text = "helm_mail_raidhunter_b_01_gom.m2", + value = "helm_mail_raidhunter_b_01_gom.m2", + }, + { + fileId = "139655", + text = "helm_mail_raidhunter_b_01_huf.m2", + value = "helm_mail_raidhunter_b_01_huf.m2", + }, + { + fileId = "139656", + text = "helm_mail_raidhunter_b_01_hum.m2", + value = "helm_mail_raidhunter_b_01_hum.m2", + }, + { + fileId = "139657", + text = "helm_mail_raidhunter_b_01_nif.m2", + value = "helm_mail_raidhunter_b_01_nif.m2", + }, + { + fileId = "139658", + text = "helm_mail_raidhunter_b_01_nim.m2", + value = "helm_mail_raidhunter_b_01_nim.m2", + }, + { + fileId = "139659", + text = "helm_mail_raidhunter_b_01_orf.m2", + value = "helm_mail_raidhunter_b_01_orf.m2", + }, + { + fileId = "139660", + text = "helm_mail_raidhunter_b_01_orm.m2", + value = "helm_mail_raidhunter_b_01_orm.m2", + }, + { + fileId = "139661", + text = "helm_mail_raidhunter_b_01_scf.m2", + value = "helm_mail_raidhunter_b_01_scf.m2", + }, + { + fileId = "139662", + text = "helm_mail_raidhunter_b_01_scm.m2", + value = "helm_mail_raidhunter_b_01_scm.m2", + }, + { + fileId = "139663", + text = "helm_mail_raidhunter_b_01_taf.m2", + value = "helm_mail_raidhunter_b_01_taf.m2", + }, + { + fileId = "139664", + text = "helm_mail_raidhunter_b_01_tam.m2", + value = "helm_mail_raidhunter_b_01_tam.m2", + }, + { + fileId = "139665", + text = "helm_mail_raidhunter_b_01_trf.m2", + value = "helm_mail_raidhunter_b_01_trf.m2", + }, + { + fileId = "139666", + text = "helm_mail_raidhunter_b_01_trm.m2", + value = "helm_mail_raidhunter_b_01_trm.m2", + }, + { + fileId = "139672", + text = "helm_mail_raidhunter_c_01_bef.m2", + value = "helm_mail_raidhunter_c_01_bef.m2", + }, + { + fileId = "139673", + text = "helm_mail_raidhunter_c_01_bem.m2", + value = "helm_mail_raidhunter_c_01_bem.m2", + }, + { + fileId = "139674", + text = "helm_mail_raidhunter_c_01_drf.m2", + value = "helm_mail_raidhunter_c_01_drf.m2", + }, + { + fileId = "139675", + text = "helm_mail_raidhunter_c_01_drm.m2", + value = "helm_mail_raidhunter_c_01_drm.m2", + }, + { + fileId = "139676", + text = "helm_mail_raidhunter_c_01_dwf.m2", + value = "helm_mail_raidhunter_c_01_dwf.m2", + }, + { + fileId = "139677", + text = "helm_mail_raidhunter_c_01_dwm.m2", + value = "helm_mail_raidhunter_c_01_dwm.m2", + }, + { + fileId = "139678", + text = "helm_mail_raidhunter_c_01_gnf.m2", + value = "helm_mail_raidhunter_c_01_gnf.m2", + }, + { + fileId = "139679", + text = "helm_mail_raidhunter_c_01_gnm.m2", + value = "helm_mail_raidhunter_c_01_gnm.m2", + }, + { + fileId = "139680", + text = "helm_mail_raidhunter_c_01_gof.m2", + value = "helm_mail_raidhunter_c_01_gof.m2", + }, + { + fileId = "139681", + text = "helm_mail_raidhunter_c_01_gom.m2", + value = "helm_mail_raidhunter_c_01_gom.m2", + }, + { + fileId = "139682", + text = "helm_mail_raidhunter_c_01_huf.m2", + value = "helm_mail_raidhunter_c_01_huf.m2", + }, + { + fileId = "139683", + text = "helm_mail_raidhunter_c_01_hum.m2", + value = "helm_mail_raidhunter_c_01_hum.m2", + }, + { + fileId = "139684", + text = "helm_mail_raidhunter_c_01_nif.m2", + value = "helm_mail_raidhunter_c_01_nif.m2", + }, + { + fileId = "139685", + text = "helm_mail_raidhunter_c_01_nim.m2", + value = "helm_mail_raidhunter_c_01_nim.m2", + }, + { + fileId = "139686", + text = "helm_mail_raidhunter_c_01_orf.m2", + value = "helm_mail_raidhunter_c_01_orf.m2", + }, + { + fileId = "139687", + text = "helm_mail_raidhunter_c_01_orm.m2", + value = "helm_mail_raidhunter_c_01_orm.m2", + }, + { + fileId = "139688", + text = "helm_mail_raidhunter_c_01_scf.m2", + value = "helm_mail_raidhunter_c_01_scf.m2", + }, + { + fileId = "139689", + text = "helm_mail_raidhunter_c_01_scm.m2", + value = "helm_mail_raidhunter_c_01_scm.m2", + }, + { + fileId = "139690", + text = "helm_mail_raidhunter_c_01_taf.m2", + value = "helm_mail_raidhunter_c_01_taf.m2", + }, + { + fileId = "139691", + text = "helm_mail_raidhunter_c_01_tam.m2", + value = "helm_mail_raidhunter_c_01_tam.m2", + }, + { + fileId = "139692", + text = "helm_mail_raidhunter_c_01_trf.m2", + value = "helm_mail_raidhunter_c_01_trf.m2", + }, + { + fileId = "139693", + text = "helm_mail_raidhunter_c_01_trm.m2", + value = "helm_mail_raidhunter_c_01_trm.m2", + }, + { + fileId = "139696", + text = "helm_mail_raidhunter_d_01_bef.m2", + value = "helm_mail_raidhunter_d_01_bef.m2", + }, + { + fileId = "139697", + text = "helm_mail_raidhunter_d_01_bem.m2", + value = "helm_mail_raidhunter_d_01_bem.m2", + }, + { + fileId = "139698", + text = "helm_mail_raidhunter_d_01_drf.m2", + value = "helm_mail_raidhunter_d_01_drf.m2", + }, + { + fileId = "139699", + text = "helm_mail_raidhunter_d_01_drm.m2", + value = "helm_mail_raidhunter_d_01_drm.m2", + }, + { + fileId = "139700", + text = "helm_mail_raidhunter_d_01_dwf.m2", + value = "helm_mail_raidhunter_d_01_dwf.m2", + }, + { + fileId = "139701", + text = "helm_mail_raidhunter_d_01_dwm.m2", + value = "helm_mail_raidhunter_d_01_dwm.m2", + }, + { + fileId = "139702", + text = "helm_mail_raidhunter_d_01_gnf.m2", + value = "helm_mail_raidhunter_d_01_gnf.m2", + }, + { + fileId = "139703", + text = "helm_mail_raidhunter_d_01_gnm.m2", + value = "helm_mail_raidhunter_d_01_gnm.m2", + }, + { + fileId = "139704", + text = "helm_mail_raidhunter_d_01_gom.m2", + value = "helm_mail_raidhunter_d_01_gom.m2", + }, + { + fileId = "139705", + text = "helm_mail_raidhunter_d_01_huf.m2", + value = "helm_mail_raidhunter_d_01_huf.m2", + }, + { + fileId = "139706", + text = "helm_mail_raidhunter_d_01_hum.m2", + value = "helm_mail_raidhunter_d_01_hum.m2", + }, + { + fileId = "139707", + text = "helm_mail_raidhunter_d_01_nif.m2", + value = "helm_mail_raidhunter_d_01_nif.m2", + }, + { + fileId = "139708", + text = "helm_mail_raidhunter_d_01_nim.m2", + value = "helm_mail_raidhunter_d_01_nim.m2", + }, + { + fileId = "139709", + text = "helm_mail_raidhunter_d_01_orf.m2", + value = "helm_mail_raidhunter_d_01_orf.m2", + }, + { + fileId = "139710", + text = "helm_mail_raidhunter_d_01_orm.m2", + value = "helm_mail_raidhunter_d_01_orm.m2", + }, + { + fileId = "139711", + text = "helm_mail_raidhunter_d_01_scf.m2", + value = "helm_mail_raidhunter_d_01_scf.m2", + }, + { + fileId = "139712", + text = "helm_mail_raidhunter_d_01_scm.m2", + value = "helm_mail_raidhunter_d_01_scm.m2", + }, + { + fileId = "139713", + text = "helm_mail_raidhunter_d_01_taf.m2", + value = "helm_mail_raidhunter_d_01_taf.m2", + }, + { + fileId = "139714", + text = "helm_mail_raidhunter_d_01_tam.m2", + value = "helm_mail_raidhunter_d_01_tam.m2", + }, + { + fileId = "139715", + text = "helm_mail_raidhunter_d_01_trf.m2", + value = "helm_mail_raidhunter_d_01_trf.m2", + }, + { + fileId = "139716", + text = "helm_mail_raidhunter_d_01_trm.m2", + value = "helm_mail_raidhunter_d_01_trm.m2", + }, + { + fileId = "139719", + text = "helm_mail_raidhunter_e_01_bef.m2", + value = "helm_mail_raidhunter_e_01_bef.m2", + }, + { + fileId = "139720", + text = "helm_mail_raidhunter_e_01_bem.m2", + value = "helm_mail_raidhunter_e_01_bem.m2", + }, + { + fileId = "139721", + text = "helm_mail_raidhunter_e_01_drf.m2", + value = "helm_mail_raidhunter_e_01_drf.m2", + }, + { + fileId = "139722", + text = "helm_mail_raidhunter_e_01_drm.m2", + value = "helm_mail_raidhunter_e_01_drm.m2", + }, + { + fileId = "139723", + text = "helm_mail_raidhunter_e_01_dwf.m2", + value = "helm_mail_raidhunter_e_01_dwf.m2", + }, + { + fileId = "139724", + text = "helm_mail_raidhunter_e_01_dwm.m2", + value = "helm_mail_raidhunter_e_01_dwm.m2", + }, + { + fileId = "139725", + text = "helm_mail_raidhunter_e_01_gnf.m2", + value = "helm_mail_raidhunter_e_01_gnf.m2", + }, + { + fileId = "139726", + text = "helm_mail_raidhunter_e_01_gnm.m2", + value = "helm_mail_raidhunter_e_01_gnm.m2", + }, + { + fileId = "139727", + text = "helm_mail_raidhunter_e_01_gof.m2", + value = "helm_mail_raidhunter_e_01_gof.m2", + }, + { + fileId = "139728", + text = "helm_mail_raidhunter_e_01_gom.m2", + value = "helm_mail_raidhunter_e_01_gom.m2", + }, + { + fileId = "139729", + text = "helm_mail_raidhunter_e_01_huf.m2", + value = "helm_mail_raidhunter_e_01_huf.m2", + }, + { + fileId = "139730", + text = "helm_mail_raidhunter_e_01_hum.m2", + value = "helm_mail_raidhunter_e_01_hum.m2", + }, + { + fileId = "139731", + text = "helm_mail_raidhunter_e_01_nif.m2", + value = "helm_mail_raidhunter_e_01_nif.m2", + }, + { + fileId = "139732", + text = "helm_mail_raidhunter_e_01_nim.m2", + value = "helm_mail_raidhunter_e_01_nim.m2", + }, + { + fileId = "139733", + text = "helm_mail_raidhunter_e_01_orf.m2", + value = "helm_mail_raidhunter_e_01_orf.m2", + }, + { + fileId = "139734", + text = "helm_mail_raidhunter_e_01_orm.m2", + value = "helm_mail_raidhunter_e_01_orm.m2", + }, + { + fileId = "139735", + text = "helm_mail_raidhunter_e_01_scf.m2", + value = "helm_mail_raidhunter_e_01_scf.m2", + }, + { + fileId = "139736", + text = "helm_mail_raidhunter_e_01_scm.m2", + value = "helm_mail_raidhunter_e_01_scm.m2", + }, + { + fileId = "139737", + text = "helm_mail_raidhunter_e_01_taf.m2", + value = "helm_mail_raidhunter_e_01_taf.m2", + }, + { + fileId = "139738", + text = "helm_mail_raidhunter_e_01_tam.m2", + value = "helm_mail_raidhunter_e_01_tam.m2", + }, + { + fileId = "139739", + text = "helm_mail_raidhunter_e_01_trf.m2", + value = "helm_mail_raidhunter_e_01_trf.m2", + }, + { + fileId = "139740", + text = "helm_mail_raidhunter_e_01_trm.m2", + value = "helm_mail_raidhunter_e_01_trm.m2", + }, + { + fileId = "139743", + text = "helm_mail_raidhunter_f_01_bef.m2", + value = "helm_mail_raidhunter_f_01_bef.m2", + }, + { + fileId = "139744", + text = "helm_mail_raidhunter_f_01_bem.m2", + value = "helm_mail_raidhunter_f_01_bem.m2", + }, + { + fileId = "139745", + text = "helm_mail_raidhunter_f_01_drf.m2", + value = "helm_mail_raidhunter_f_01_drf.m2", + }, + { + fileId = "139746", + text = "helm_mail_raidhunter_f_01_drm.m2", + value = "helm_mail_raidhunter_f_01_drm.m2", + }, + { + fileId = "139747", + text = "helm_mail_raidhunter_f_01_dwf.m2", + value = "helm_mail_raidhunter_f_01_dwf.m2", + }, + { + fileId = "139748", + text = "helm_mail_raidhunter_f_01_dwm.m2", + value = "helm_mail_raidhunter_f_01_dwm.m2", + }, + { + fileId = "139749", + text = "helm_mail_raidhunter_f_01_gnf.m2", + value = "helm_mail_raidhunter_f_01_gnf.m2", + }, + { + fileId = "139750", + text = "helm_mail_raidhunter_f_01_gnm.m2", + value = "helm_mail_raidhunter_f_01_gnm.m2", + }, + { + fileId = "139751", + text = "helm_mail_raidhunter_f_01_gof.m2", + value = "helm_mail_raidhunter_f_01_gof.m2", + }, + { + fileId = "139752", + text = "helm_mail_raidhunter_f_01_gom.m2", + value = "helm_mail_raidhunter_f_01_gom.m2", + }, + { + fileId = "139753", + text = "helm_mail_raidhunter_f_01_huf.m2", + value = "helm_mail_raidhunter_f_01_huf.m2", + }, + { + fileId = "139754", + text = "helm_mail_raidhunter_f_01_hum.m2", + value = "helm_mail_raidhunter_f_01_hum.m2", + }, + { + fileId = "139755", + text = "helm_mail_raidhunter_f_01_nif.m2", + value = "helm_mail_raidhunter_f_01_nif.m2", + }, + { + fileId = "139756", + text = "helm_mail_raidhunter_f_01_nim.m2", + value = "helm_mail_raidhunter_f_01_nim.m2", + }, + { + fileId = "139757", + text = "helm_mail_raidhunter_f_01_orf.m2", + value = "helm_mail_raidhunter_f_01_orf.m2", + }, + { + fileId = "139758", + text = "helm_mail_raidhunter_f_01_orm.m2", + value = "helm_mail_raidhunter_f_01_orm.m2", + }, + { + fileId = "139759", + text = "helm_mail_raidhunter_f_01_scf.m2", + value = "helm_mail_raidhunter_f_01_scf.m2", + }, + { + fileId = "139760", + text = "helm_mail_raidhunter_f_01_scm.m2", + value = "helm_mail_raidhunter_f_01_scm.m2", + }, + { + fileId = "139761", + text = "helm_mail_raidhunter_f_01_taf.m2", + value = "helm_mail_raidhunter_f_01_taf.m2", + }, + { + fileId = "139762", + text = "helm_mail_raidhunter_f_01_tam.m2", + value = "helm_mail_raidhunter_f_01_tam.m2", + }, + { + fileId = "139763", + text = "helm_mail_raidhunter_f_01_trf.m2", + value = "helm_mail_raidhunter_f_01_trf.m2", + }, + { + fileId = "139764", + text = "helm_mail_raidhunter_f_01_trm.m2", + value = "helm_mail_raidhunter_f_01_trm.m2", + }, + { + fileId = "139770", + text = "helm_mail_raidhunter_g_01_bef.m2", + value = "helm_mail_raidhunter_g_01_bef.m2", + }, + { + fileId = "139771", + text = "helm_mail_raidhunter_g_01_bem.m2", + value = "helm_mail_raidhunter_g_01_bem.m2", + }, + { + fileId = "139772", + text = "helm_mail_raidhunter_g_01_drf.m2", + value = "helm_mail_raidhunter_g_01_drf.m2", + }, + { + fileId = "139773", + text = "helm_mail_raidhunter_g_01_drm.m2", + value = "helm_mail_raidhunter_g_01_drm.m2", + }, + { + fileId = "139774", + text = "helm_mail_raidhunter_g_01_dwf.m2", + value = "helm_mail_raidhunter_g_01_dwf.m2", + }, + { + fileId = "139775", + text = "helm_mail_raidhunter_g_01_dwm.m2", + value = "helm_mail_raidhunter_g_01_dwm.m2", + }, + { + fileId = "139776", + text = "helm_mail_raidhunter_g_01_gnf.m2", + value = "helm_mail_raidhunter_g_01_gnf.m2", + }, + { + fileId = "139777", + text = "helm_mail_raidhunter_g_01_gnm.m2", + value = "helm_mail_raidhunter_g_01_gnm.m2", + }, + { + fileId = "139778", + text = "helm_mail_raidhunter_g_01_gof.m2", + value = "helm_mail_raidhunter_g_01_gof.m2", + }, + { + fileId = "139779", + text = "helm_mail_raidhunter_g_01_gom.m2", + value = "helm_mail_raidhunter_g_01_gom.m2", + }, + { + fileId = "139780", + text = "helm_mail_raidhunter_g_01_huf.m2", + value = "helm_mail_raidhunter_g_01_huf.m2", + }, + { + fileId = "139781", + text = "helm_mail_raidhunter_g_01_hum.m2", + value = "helm_mail_raidhunter_g_01_hum.m2", + }, + { + fileId = "139782", + text = "helm_mail_raidhunter_g_01_nif.m2", + value = "helm_mail_raidhunter_g_01_nif.m2", + }, + { + fileId = "139783", + text = "helm_mail_raidhunter_g_01_nim.m2", + value = "helm_mail_raidhunter_g_01_nim.m2", + }, + { + fileId = "139784", + text = "helm_mail_raidhunter_g_01_orf.m2", + value = "helm_mail_raidhunter_g_01_orf.m2", + }, + { + fileId = "139785", + text = "helm_mail_raidhunter_g_01_orm.m2", + value = "helm_mail_raidhunter_g_01_orm.m2", + }, + { + fileId = "139786", + text = "helm_mail_raidhunter_g_01_scf.m2", + value = "helm_mail_raidhunter_g_01_scf.m2", + }, + { + fileId = "139787", + text = "helm_mail_raidhunter_g_01_scm.m2", + value = "helm_mail_raidhunter_g_01_scm.m2", + }, + { + fileId = "139788", + text = "helm_mail_raidhunter_g_01_taf.m2", + value = "helm_mail_raidhunter_g_01_taf.m2", + }, + { + fileId = "139789", + text = "helm_mail_raidhunter_g_01_tam.m2", + value = "helm_mail_raidhunter_g_01_tam.m2", + }, + { + fileId = "139790", + text = "helm_mail_raidhunter_g_01_trf.m2", + value = "helm_mail_raidhunter_g_01_trf.m2", + }, + { + fileId = "139791", + text = "helm_mail_raidhunter_g_01_trm.m2", + value = "helm_mail_raidhunter_g_01_trm.m2", + }, + { + fileId = "337168", + text = "helm_mail_raidhunter_h_01_bef.m2", + value = "helm_mail_raidhunter_h_01_bef.m2", + }, + { + fileId = "337169", + text = "helm_mail_raidhunter_h_01_bem.m2", + value = "helm_mail_raidhunter_h_01_bem.m2", + }, + { + fileId = "337170", + text = "helm_mail_raidhunter_h_01_drf.m2", + value = "helm_mail_raidhunter_h_01_drf.m2", + }, + { + fileId = "337171", + text = "helm_mail_raidhunter_h_01_drm.m2", + value = "helm_mail_raidhunter_h_01_drm.m2", + }, + { + fileId = "337172", + text = "helm_mail_raidhunter_h_01_dwf.m2", + value = "helm_mail_raidhunter_h_01_dwf.m2", + }, + { + fileId = "337173", + text = "helm_mail_raidhunter_h_01_dwm.m2", + value = "helm_mail_raidhunter_h_01_dwm.m2", + }, + { + fileId = "337174", + text = "helm_mail_raidhunter_h_01_gnf.m2", + value = "helm_mail_raidhunter_h_01_gnf.m2", + }, + { + fileId = "337175", + text = "helm_mail_raidhunter_h_01_gnm.m2", + value = "helm_mail_raidhunter_h_01_gnm.m2", + }, + { + fileId = "337176", + text = "helm_mail_raidhunter_h_01_gof.m2", + value = "helm_mail_raidhunter_h_01_gof.m2", + }, + { + fileId = "337177", + text = "helm_mail_raidhunter_h_01_gom.m2", + value = "helm_mail_raidhunter_h_01_gom.m2", + }, + { + fileId = "337178", + text = "helm_mail_raidhunter_h_01_huf.m2", + value = "helm_mail_raidhunter_h_01_huf.m2", + }, + { + fileId = "337179", + text = "helm_mail_raidhunter_h_01_hum.m2", + value = "helm_mail_raidhunter_h_01_hum.m2", + }, + { + fileId = "337180", + text = "helm_mail_raidhunter_h_01_nif.m2", + value = "helm_mail_raidhunter_h_01_nif.m2", + }, + { + fileId = "337181", + text = "helm_mail_raidhunter_h_01_nim.m2", + value = "helm_mail_raidhunter_h_01_nim.m2", + }, + { + fileId = "337182", + text = "helm_mail_raidhunter_h_01_orf.m2", + value = "helm_mail_raidhunter_h_01_orf.m2", + }, + { + fileId = "337183", + text = "helm_mail_raidhunter_h_01_orm.m2", + value = "helm_mail_raidhunter_h_01_orm.m2", + }, + { + fileId = "337184", + text = "helm_mail_raidhunter_h_01_scf.m2", + value = "helm_mail_raidhunter_h_01_scf.m2", + }, + { + fileId = "337185", + text = "helm_mail_raidhunter_h_01_scm.m2", + value = "helm_mail_raidhunter_h_01_scm.m2", + }, + { + fileId = "337186", + text = "helm_mail_raidhunter_h_01_taf.m2", + value = "helm_mail_raidhunter_h_01_taf.m2", + }, + { + fileId = "337187", + text = "helm_mail_raidhunter_h_01_tam.m2", + value = "helm_mail_raidhunter_h_01_tam.m2", + }, + { + fileId = "337188", + text = "helm_mail_raidhunter_h_01_trf.m2", + value = "helm_mail_raidhunter_h_01_trf.m2", + }, + { + fileId = "337189", + text = "helm_mail_raidhunter_h_01_trm.m2", + value = "helm_mail_raidhunter_h_01_trm.m2", + }, + { + fileId = "139796", + text = "helm_mail_raidshaman_a_01_bef.m2", + value = "helm_mail_raidshaman_a_01_bef.m2", + }, + { + fileId = "139797", + text = "helm_mail_raidshaman_a_01_bem.m2", + value = "helm_mail_raidshaman_a_01_bem.m2", + }, + { + fileId = "139798", + text = "helm_mail_raidshaman_a_01_drf.m2", + value = "helm_mail_raidshaman_a_01_drf.m2", + }, + { + fileId = "139799", + text = "helm_mail_raidshaman_a_01_drm.m2", + value = "helm_mail_raidshaman_a_01_drm.m2", + }, + { + fileId = "139800", + text = "helm_mail_raidshaman_a_01_dwf.m2", + value = "helm_mail_raidshaman_a_01_dwf.m2", + }, + { + fileId = "139801", + text = "helm_mail_raidshaman_a_01_dwm.m2", + value = "helm_mail_raidshaman_a_01_dwm.m2", + }, + { + fileId = "139802", + text = "helm_mail_raidshaman_a_01_gnf.m2", + value = "helm_mail_raidshaman_a_01_gnf.m2", + }, + { + fileId = "139803", + text = "helm_mail_raidshaman_a_01_gnm.m2", + value = "helm_mail_raidshaman_a_01_gnm.m2", + }, + { + fileId = "139804", + text = "helm_mail_raidshaman_a_01_gof.m2", + value = "helm_mail_raidshaman_a_01_gof.m2", + }, + { + fileId = "139805", + text = "helm_mail_raidshaman_a_01_gom.m2", + value = "helm_mail_raidshaman_a_01_gom.m2", + }, + { + fileId = "139806", + text = "helm_mail_raidshaman_a_01_huf.m2", + value = "helm_mail_raidshaman_a_01_huf.m2", + }, + { + fileId = "139807", + text = "helm_mail_raidshaman_a_01_hum.m2", + value = "helm_mail_raidshaman_a_01_hum.m2", + }, + { + fileId = "139808", + text = "helm_mail_raidshaman_a_01_nif.m2", + value = "helm_mail_raidshaman_a_01_nif.m2", + }, + { + fileId = "139809", + text = "helm_mail_raidshaman_a_01_nim.m2", + value = "helm_mail_raidshaman_a_01_nim.m2", + }, + { + fileId = "139810", + text = "helm_mail_raidshaman_a_01_orf.m2", + value = "helm_mail_raidshaman_a_01_orf.m2", + }, + { + fileId = "139811", + text = "helm_mail_raidshaman_a_01_orm.m2", + value = "helm_mail_raidshaman_a_01_orm.m2", + }, + { + fileId = "139812", + text = "helm_mail_raidshaman_a_01_scf.m2", + value = "helm_mail_raidshaman_a_01_scf.m2", + }, + { + fileId = "139813", + text = "helm_mail_raidshaman_a_01_scm.m2", + value = "helm_mail_raidshaman_a_01_scm.m2", + }, + { + fileId = "139814", + text = "helm_mail_raidshaman_a_01_taf.m2", + value = "helm_mail_raidshaman_a_01_taf.m2", + }, + { + fileId = "139815", + text = "helm_mail_raidshaman_a_01_tam.m2", + value = "helm_mail_raidshaman_a_01_tam.m2", + }, + { + fileId = "139816", + text = "helm_mail_raidshaman_a_01_trf.m2", + value = "helm_mail_raidshaman_a_01_trf.m2", + }, + { + fileId = "139817", + text = "helm_mail_raidshaman_a_01_trm.m2", + value = "helm_mail_raidshaman_a_01_trm.m2", + }, + { + fileId = "139824", + text = "helm_mail_raidshaman_b_01_bef.m2", + value = "helm_mail_raidshaman_b_01_bef.m2", + }, + { + fileId = "139825", + text = "helm_mail_raidshaman_b_01_bem.m2", + value = "helm_mail_raidshaman_b_01_bem.m2", + }, + { + fileId = "139826", + text = "helm_mail_raidshaman_b_01_drf.m2", + value = "helm_mail_raidshaman_b_01_drf.m2", + }, + { + fileId = "139827", + text = "helm_mail_raidshaman_b_01_drm.m2", + value = "helm_mail_raidshaman_b_01_drm.m2", + }, + { + fileId = "139828", + text = "helm_mail_raidshaman_b_01_dwf.m2", + value = "helm_mail_raidshaman_b_01_dwf.m2", + }, + { + fileId = "139829", + text = "helm_mail_raidshaman_b_01_dwm.m2", + value = "helm_mail_raidshaman_b_01_dwm.m2", + }, + { + fileId = "139830", + text = "helm_mail_raidshaman_b_01_gnf.m2", + value = "helm_mail_raidshaman_b_01_gnf.m2", + }, + { + fileId = "139831", + text = "helm_mail_raidshaman_b_01_gnm.m2", + value = "helm_mail_raidshaman_b_01_gnm.m2", + }, + { + fileId = "139832", + text = "helm_mail_raidshaman_b_01_gof.m2", + value = "helm_mail_raidshaman_b_01_gof.m2", + }, + { + fileId = "139833", + text = "helm_mail_raidshaman_b_01_gom.m2", + value = "helm_mail_raidshaman_b_01_gom.m2", + }, + { + fileId = "139834", + text = "helm_mail_raidshaman_b_01_huf.m2", + value = "helm_mail_raidshaman_b_01_huf.m2", + }, + { + fileId = "139835", + text = "helm_mail_raidshaman_b_01_hum.m2", + value = "helm_mail_raidshaman_b_01_hum.m2", + }, + { + fileId = "139836", + text = "helm_mail_raidshaman_b_01_nif.m2", + value = "helm_mail_raidshaman_b_01_nif.m2", + }, + { + fileId = "139837", + text = "helm_mail_raidshaman_b_01_nim.m2", + value = "helm_mail_raidshaman_b_01_nim.m2", + }, + { + fileId = "139838", + text = "helm_mail_raidshaman_b_01_orf.m2", + value = "helm_mail_raidshaman_b_01_orf.m2", + }, + { + fileId = "139839", + text = "helm_mail_raidshaman_b_01_orm.m2", + value = "helm_mail_raidshaman_b_01_orm.m2", + }, + { + fileId = "139840", + text = "helm_mail_raidshaman_b_01_scf.m2", + value = "helm_mail_raidshaman_b_01_scf.m2", + }, + { + fileId = "139841", + text = "helm_mail_raidshaman_b_01_scm.m2", + value = "helm_mail_raidshaman_b_01_scm.m2", + }, + { + fileId = "139842", + text = "helm_mail_raidshaman_b_01_taf.m2", + value = "helm_mail_raidshaman_b_01_taf.m2", + }, + { + fileId = "139843", + text = "helm_mail_raidshaman_b_01_tam.m2", + value = "helm_mail_raidshaman_b_01_tam.m2", + }, + { + fileId = "139844", + text = "helm_mail_raidshaman_b_01_trf.m2", + value = "helm_mail_raidshaman_b_01_trf.m2", + }, + { + fileId = "139845", + text = "helm_mail_raidshaman_b_01_trm.m2", + value = "helm_mail_raidshaman_b_01_trm.m2", + }, + { + fileId = "139851", + text = "helm_mail_raidshaman_d_01_bef.m2", + value = "helm_mail_raidshaman_d_01_bef.m2", + }, + { + fileId = "139852", + text = "helm_mail_raidshaman_d_01_bem.m2", + value = "helm_mail_raidshaman_d_01_bem.m2", + }, + { + fileId = "139853", + text = "helm_mail_raidshaman_d_01_drf.m2", + value = "helm_mail_raidshaman_d_01_drf.m2", + }, + { + fileId = "139854", + text = "helm_mail_raidshaman_d_01_drm.m2", + value = "helm_mail_raidshaman_d_01_drm.m2", + }, + { + fileId = "139855", + text = "helm_mail_raidshaman_d_01_dwf.m2", + value = "helm_mail_raidshaman_d_01_dwf.m2", + }, + { + fileId = "139856", + text = "helm_mail_raidshaman_d_01_dwm.m2", + value = "helm_mail_raidshaman_d_01_dwm.m2", + }, + { + fileId = "139857", + text = "helm_mail_raidshaman_d_01_gnf.m2", + value = "helm_mail_raidshaman_d_01_gnf.m2", + }, + { + fileId = "139858", + text = "helm_mail_raidshaman_d_01_gnm.m2", + value = "helm_mail_raidshaman_d_01_gnm.m2", + }, + { + fileId = "139859", + text = "helm_mail_raidshaman_d_01_gof.m2", + value = "helm_mail_raidshaman_d_01_gof.m2", + }, + { + fileId = "139860", + text = "helm_mail_raidshaman_d_01_gom.m2", + value = "helm_mail_raidshaman_d_01_gom.m2", + }, + { + fileId = "139862", + text = "helm_mail_raidshaman_d_01_huf.m2", + value = "helm_mail_raidshaman_d_01_huf.m2", + }, + { + fileId = "139863", + text = "helm_mail_raidshaman_d_01_hum.m2", + value = "helm_mail_raidshaman_d_01_hum.m2", + }, + { + fileId = "139864", + text = "helm_mail_raidshaman_d_01_nif.m2", + value = "helm_mail_raidshaman_d_01_nif.m2", + }, + { + fileId = "139865", + text = "helm_mail_raidshaman_d_01_nim.m2", + value = "helm_mail_raidshaman_d_01_nim.m2", + }, + { + fileId = "139866", + text = "helm_mail_raidshaman_d_01_orf.m2", + value = "helm_mail_raidshaman_d_01_orf.m2", + }, + { + fileId = "139867", + text = "helm_mail_raidshaman_d_01_orm.m2", + value = "helm_mail_raidshaman_d_01_orm.m2", + }, + { + fileId = "139868", + text = "helm_mail_raidshaman_d_01_scf.m2", + value = "helm_mail_raidshaman_d_01_scf.m2", + }, + { + fileId = "139869", + text = "helm_mail_raidshaman_d_01_scm.m2", + value = "helm_mail_raidshaman_d_01_scm.m2", + }, + { + fileId = "139870", + text = "helm_mail_raidshaman_d_01_taf.m2", + value = "helm_mail_raidshaman_d_01_taf.m2", + }, + { + fileId = "139871", + text = "helm_mail_raidshaman_d_01_tam.m2", + value = "helm_mail_raidshaman_d_01_tam.m2", + }, + { + fileId = "139872", + text = "helm_mail_raidshaman_d_01_trf.m2", + value = "helm_mail_raidshaman_d_01_trf.m2", + }, + { + fileId = "139873", + text = "helm_mail_raidshaman_d_01_trm.m2", + value = "helm_mail_raidshaman_d_01_trm.m2", + }, + { + fileId = "139876", + text = "helm_mail_raidshaman_e_01_bef.m2", + value = "helm_mail_raidshaman_e_01_bef.m2", + }, + { + fileId = "139877", + text = "helm_mail_raidshaman_e_01_bem.m2", + value = "helm_mail_raidshaman_e_01_bem.m2", + }, + { + fileId = "139878", + text = "helm_mail_raidshaman_e_01_drf.m2", + value = "helm_mail_raidshaman_e_01_drf.m2", + }, + { + fileId = "139879", + text = "helm_mail_raidshaman_e_01_drm.m2", + value = "helm_mail_raidshaman_e_01_drm.m2", + }, + { + fileId = "139880", + text = "helm_mail_raidshaman_e_01_dwf.m2", + value = "helm_mail_raidshaman_e_01_dwf.m2", + }, + { + fileId = "139881", + text = "helm_mail_raidshaman_e_01_dwm.m2", + value = "helm_mail_raidshaman_e_01_dwm.m2", + }, + { + fileId = "139882", + text = "helm_mail_raidshaman_e_01_gnf.m2", + value = "helm_mail_raidshaman_e_01_gnf.m2", + }, + { + fileId = "139883", + text = "helm_mail_raidshaman_e_01_gnm.m2", + value = "helm_mail_raidshaman_e_01_gnm.m2", + }, + { + fileId = "139884", + text = "helm_mail_raidshaman_e_01_gof.m2", + value = "helm_mail_raidshaman_e_01_gof.m2", + }, + { + fileId = "139885", + text = "helm_mail_raidshaman_e_01_gom.m2", + value = "helm_mail_raidshaman_e_01_gom.m2", + }, + { + fileId = "139886", + text = "helm_mail_raidshaman_e_01_huf.m2", + value = "helm_mail_raidshaman_e_01_huf.m2", + }, + { + fileId = "139887", + text = "helm_mail_raidshaman_e_01_hum.m2", + value = "helm_mail_raidshaman_e_01_hum.m2", + }, + { + fileId = "139888", + text = "helm_mail_raidshaman_e_01_nif.m2", + value = "helm_mail_raidshaman_e_01_nif.m2", + }, + { + fileId = "139889", + text = "helm_mail_raidshaman_e_01_nim.m2", + value = "helm_mail_raidshaman_e_01_nim.m2", + }, + { + fileId = "139890", + text = "helm_mail_raidshaman_e_01_orf.m2", + value = "helm_mail_raidshaman_e_01_orf.m2", + }, + { + fileId = "139891", + text = "helm_mail_raidshaman_e_01_orm.m2", + value = "helm_mail_raidshaman_e_01_orm.m2", + }, + { + fileId = "139892", + text = "helm_mail_raidshaman_e_01_scf.m2", + value = "helm_mail_raidshaman_e_01_scf.m2", + }, + { + fileId = "139893", + text = "helm_mail_raidshaman_e_01_scm.m2", + value = "helm_mail_raidshaman_e_01_scm.m2", + }, + { + fileId = "139894", + text = "helm_mail_raidshaman_e_01_taf.m2", + value = "helm_mail_raidshaman_e_01_taf.m2", + }, + { + fileId = "139895", + text = "helm_mail_raidshaman_e_01_tam.m2", + value = "helm_mail_raidshaman_e_01_tam.m2", + }, + { + fileId = "139896", + text = "helm_mail_raidshaman_e_01_trf.m2", + value = "helm_mail_raidshaman_e_01_trf.m2", + }, + { + fileId = "139897", + text = "helm_mail_raidshaman_e_01_trm.m2", + value = "helm_mail_raidshaman_e_01_trm.m2", + }, + { + fileId = "139900", + text = "helm_mail_raidshaman_f_01_bef.m2", + value = "helm_mail_raidshaman_f_01_bef.m2", + }, + { + fileId = "139901", + text = "helm_mail_raidshaman_f_01_bem.m2", + value = "helm_mail_raidshaman_f_01_bem.m2", + }, + { + fileId = "139902", + text = "helm_mail_raidshaman_f_01_drf.m2", + value = "helm_mail_raidshaman_f_01_drf.m2", + }, + { + fileId = "139903", + text = "helm_mail_raidshaman_f_01_drm.m2", + value = "helm_mail_raidshaman_f_01_drm.m2", + }, + { + fileId = "139904", + text = "helm_mail_raidshaman_f_01_dwf.m2", + value = "helm_mail_raidshaman_f_01_dwf.m2", + }, + { + fileId = "139905", + text = "helm_mail_raidshaman_f_01_dwm.m2", + value = "helm_mail_raidshaman_f_01_dwm.m2", + }, + { + fileId = "139906", + text = "helm_mail_raidshaman_f_01_gnf.m2", + value = "helm_mail_raidshaman_f_01_gnf.m2", + }, + { + fileId = "139907", + text = "helm_mail_raidshaman_f_01_gnm.m2", + value = "helm_mail_raidshaman_f_01_gnm.m2", + }, + { + fileId = "139908", + text = "helm_mail_raidshaman_f_01_gof.m2", + value = "helm_mail_raidshaman_f_01_gof.m2", + }, + { + fileId = "139909", + text = "helm_mail_raidshaman_f_01_gom.m2", + value = "helm_mail_raidshaman_f_01_gom.m2", + }, + { + fileId = "139910", + text = "helm_mail_raidshaman_f_01_huf.m2", + value = "helm_mail_raidshaman_f_01_huf.m2", + }, + { + fileId = "139911", + text = "helm_mail_raidshaman_f_01_hum.m2", + value = "helm_mail_raidshaman_f_01_hum.m2", + }, + { + fileId = "139912", + text = "helm_mail_raidshaman_f_01_nif.m2", + value = "helm_mail_raidshaman_f_01_nif.m2", + }, + { + fileId = "139913", + text = "helm_mail_raidshaman_f_01_nim.m2", + value = "helm_mail_raidshaman_f_01_nim.m2", + }, + { + fileId = "139914", + text = "helm_mail_raidshaman_f_01_orf.m2", + value = "helm_mail_raidshaman_f_01_orf.m2", + }, + { + fileId = "139915", + text = "helm_mail_raidshaman_f_01_orm.m2", + value = "helm_mail_raidshaman_f_01_orm.m2", + }, + { + fileId = "139916", + text = "helm_mail_raidshaman_f_01_scf.m2", + value = "helm_mail_raidshaman_f_01_scf.m2", + }, + { + fileId = "139917", + text = "helm_mail_raidshaman_f_01_scm.m2", + value = "helm_mail_raidshaman_f_01_scm.m2", + }, + { + fileId = "139918", + text = "helm_mail_raidshaman_f_01_taf.m2", + value = "helm_mail_raidshaman_f_01_taf.m2", + }, + { + fileId = "139919", + text = "helm_mail_raidshaman_f_01_tam.m2", + value = "helm_mail_raidshaman_f_01_tam.m2", + }, + { + fileId = "139920", + text = "helm_mail_raidshaman_f_01_trf.m2", + value = "helm_mail_raidshaman_f_01_trf.m2", + }, + { + fileId = "139921", + text = "helm_mail_raidshaman_f_01_trm.m2", + value = "helm_mail_raidshaman_f_01_trm.m2", + }, + { + fileId = "249211", + text = "helm_mail_raidshaman_g_01_bef.m2", + value = "helm_mail_raidshaman_g_01_bef.m2", + }, + { + fileId = "249212", + text = "helm_mail_raidshaman_g_01_bem.m2", + value = "helm_mail_raidshaman_g_01_bem.m2", + }, + { + fileId = "249213", + text = "helm_mail_raidshaman_g_01_drf.m2", + value = "helm_mail_raidshaman_g_01_drf.m2", + }, + { + fileId = "249214", + text = "helm_mail_raidshaman_g_01_drm.m2", + value = "helm_mail_raidshaman_g_01_drm.m2", + }, + { + fileId = "249215", + text = "helm_mail_raidshaman_g_01_dwf.m2", + value = "helm_mail_raidshaman_g_01_dwf.m2", + }, + { + fileId = "249216", + text = "helm_mail_raidshaman_g_01_dwm.m2", + value = "helm_mail_raidshaman_g_01_dwm.m2", + }, + { + fileId = "249217", + text = "helm_mail_raidshaman_g_01_gnf.m2", + value = "helm_mail_raidshaman_g_01_gnf.m2", + }, + { + fileId = "249218", + text = "helm_mail_raidshaman_g_01_gnm.m2", + value = "helm_mail_raidshaman_g_01_gnm.m2", + }, + { + fileId = "249219", + text = "helm_mail_raidshaman_g_01_gof.m2", + value = "helm_mail_raidshaman_g_01_gof.m2", + }, + { + fileId = "249220", + text = "helm_mail_raidshaman_g_01_gom.m2", + value = "helm_mail_raidshaman_g_01_gom.m2", + }, + { + fileId = "249221", + text = "helm_mail_raidshaman_g_01_huf.m2", + value = "helm_mail_raidshaman_g_01_huf.m2", + }, + { + fileId = "249222", + text = "helm_mail_raidshaman_g_01_hum.m2", + value = "helm_mail_raidshaman_g_01_hum.m2", + }, + { + fileId = "249223", + text = "helm_mail_raidshaman_g_01_nif.m2", + value = "helm_mail_raidshaman_g_01_nif.m2", + }, + { + fileId = "249224", + text = "helm_mail_raidshaman_g_01_nim.m2", + value = "helm_mail_raidshaman_g_01_nim.m2", + }, + { + fileId = "249225", + text = "helm_mail_raidshaman_g_01_orf.m2", + value = "helm_mail_raidshaman_g_01_orf.m2", + }, + { + fileId = "249226", + text = "helm_mail_raidshaman_g_01_orm.m2", + value = "helm_mail_raidshaman_g_01_orm.m2", + }, + { + fileId = "249227", + text = "helm_mail_raidshaman_g_01_scf.m2", + value = "helm_mail_raidshaman_g_01_scf.m2", + }, + { + fileId = "249228", + text = "helm_mail_raidshaman_g_01_scm.m2", + value = "helm_mail_raidshaman_g_01_scm.m2", + }, + { + fileId = "249229", + text = "helm_mail_raidshaman_g_01_taf.m2", + value = "helm_mail_raidshaman_g_01_taf.m2", + }, + { + fileId = "249230", + text = "helm_mail_raidshaman_g_01_tam.m2", + value = "helm_mail_raidshaman_g_01_tam.m2", + }, + { + fileId = "249231", + text = "helm_mail_raidshaman_g_01_trf.m2", + value = "helm_mail_raidshaman_g_01_trf.m2", + }, + { + fileId = "249232", + text = "helm_mail_raidshaman_g_01_trm.m2", + value = "helm_mail_raidshaman_g_01_trm.m2", + }, + { + fileId = "349421", + text = "helm_mail_raidshaman_h_01_bef.m2", + value = "helm_mail_raidshaman_h_01_bef.m2", + }, + { + fileId = "349422", + text = "helm_mail_raidshaman_h_01_bem.m2", + value = "helm_mail_raidshaman_h_01_bem.m2", + }, + { + fileId = "349423", + text = "helm_mail_raidshaman_h_01_drf.m2", + value = "helm_mail_raidshaman_h_01_drf.m2", + }, + { + fileId = "349424", + text = "helm_mail_raidshaman_h_01_drm.m2", + value = "helm_mail_raidshaman_h_01_drm.m2", + }, + { + fileId = "349425", + text = "helm_mail_raidshaman_h_01_dwf.m2", + value = "helm_mail_raidshaman_h_01_dwf.m2", + }, + { + fileId = "349426", + text = "helm_mail_raidshaman_h_01_dwm.m2", + value = "helm_mail_raidshaman_h_01_dwm.m2", + }, + { + fileId = "349427", + text = "helm_mail_raidshaman_h_01_gnf.m2", + value = "helm_mail_raidshaman_h_01_gnf.m2", + }, + { + fileId = "349428", + text = "helm_mail_raidshaman_h_01_gnm.m2", + value = "helm_mail_raidshaman_h_01_gnm.m2", + }, + { + fileId = "349429", + text = "helm_mail_raidshaman_h_01_gof.m2", + value = "helm_mail_raidshaman_h_01_gof.m2", + }, + { + fileId = "349430", + text = "helm_mail_raidshaman_h_01_gom.m2", + value = "helm_mail_raidshaman_h_01_gom.m2", + }, + { + fileId = "349431", + text = "helm_mail_raidshaman_h_01_huf.m2", + value = "helm_mail_raidshaman_h_01_huf.m2", + }, + { + fileId = "349432", + text = "helm_mail_raidshaman_h_01_hum.m2", + value = "helm_mail_raidshaman_h_01_hum.m2", + }, + { + fileId = "349433", + text = "helm_mail_raidshaman_h_01_nif.m2", + value = "helm_mail_raidshaman_h_01_nif.m2", + }, + { + fileId = "349434", + text = "helm_mail_raidshaman_h_01_nim.m2", + value = "helm_mail_raidshaman_h_01_nim.m2", + }, + { + fileId = "349435", + text = "helm_mail_raidshaman_h_01_orf.m2", + value = "helm_mail_raidshaman_h_01_orf.m2", + }, + { + fileId = "349436", + text = "helm_mail_raidshaman_h_01_orm.m2", + value = "helm_mail_raidshaman_h_01_orm.m2", + }, + { + fileId = "349437", + text = "helm_mail_raidshaman_h_01_scf.m2", + value = "helm_mail_raidshaman_h_01_scf.m2", + }, + { + fileId = "349438", + text = "helm_mail_raidshaman_h_01_scm.m2", + value = "helm_mail_raidshaman_h_01_scm.m2", + }, + { + fileId = "349439", + text = "helm_mail_raidshaman_h_01_taf.m2", + value = "helm_mail_raidshaman_h_01_taf.m2", + }, + { + fileId = "349440", + text = "helm_mail_raidshaman_h_01_tam.m2", + value = "helm_mail_raidshaman_h_01_tam.m2", + }, + { + fileId = "349441", + text = "helm_mail_raidshaman_h_01_trf.m2", + value = "helm_mail_raidshaman_h_01_trf.m2", + }, + { + fileId = "349442", + text = "helm_mail_raidshaman_h_01_trm.m2", + value = "helm_mail_raidshaman_h_01_trm.m2", + }, + { + fileId = "353015", + text = "helm_mail_raidshaman_h_02_bef.m2", + value = "helm_mail_raidshaman_h_02_bef.m2", + }, + { + fileId = "353016", + text = "helm_mail_raidshaman_h_02_bem.m2", + value = "helm_mail_raidshaman_h_02_bem.m2", + }, + { + fileId = "353017", + text = "helm_mail_raidshaman_h_02_drf.m2", + value = "helm_mail_raidshaman_h_02_drf.m2", + }, + { + fileId = "353018", + text = "helm_mail_raidshaman_h_02_drm.m2", + value = "helm_mail_raidshaman_h_02_drm.m2", + }, + { + fileId = "353019", + text = "helm_mail_raidshaman_h_02_dwf.m2", + value = "helm_mail_raidshaman_h_02_dwf.m2", + }, + { + fileId = "353020", + text = "helm_mail_raidshaman_h_02_dwm.m2", + value = "helm_mail_raidshaman_h_02_dwm.m2", + }, + { + fileId = "353021", + text = "helm_mail_raidshaman_h_02_gnf.m2", + value = "helm_mail_raidshaman_h_02_gnf.m2", + }, + { + fileId = "353022", + text = "helm_mail_raidshaman_h_02_gnm.m2", + value = "helm_mail_raidshaman_h_02_gnm.m2", + }, + { + fileId = "353023", + text = "helm_mail_raidshaman_h_02_gof.m2", + value = "helm_mail_raidshaman_h_02_gof.m2", + }, + { + fileId = "353024", + text = "helm_mail_raidshaman_h_02_gom.m2", + value = "helm_mail_raidshaman_h_02_gom.m2", + }, + { + fileId = "353025", + text = "helm_mail_raidshaman_h_02_huf.m2", + value = "helm_mail_raidshaman_h_02_huf.m2", + }, + { + fileId = "353026", + text = "helm_mail_raidshaman_h_02_hum.m2", + value = "helm_mail_raidshaman_h_02_hum.m2", + }, + { + fileId = "353027", + text = "helm_mail_raidshaman_h_02_nif.m2", + value = "helm_mail_raidshaman_h_02_nif.m2", + }, + { + fileId = "353028", + text = "helm_mail_raidshaman_h_02_nim.m2", + value = "helm_mail_raidshaman_h_02_nim.m2", + }, + { + fileId = "353029", + text = "helm_mail_raidshaman_h_02_orf.m2", + value = "helm_mail_raidshaman_h_02_orf.m2", + }, + { + fileId = "354938", + text = "helm_mail_raidshaman_h_02_orm.m2", + value = "helm_mail_raidshaman_h_02_orm.m2", + }, + { + fileId = "353030", + text = "helm_mail_raidshaman_h_02_scf.m2", + value = "helm_mail_raidshaman_h_02_scf.m2", + }, + { + fileId = "353031", + text = "helm_mail_raidshaman_h_02_scm.m2", + value = "helm_mail_raidshaman_h_02_scm.m2", + }, + { + fileId = "353032", + text = "helm_mail_raidshaman_h_02_taf.m2", + value = "helm_mail_raidshaman_h_02_taf.m2", + }, + { + fileId = "353033", + text = "helm_mail_raidshaman_h_02_tam.m2", + value = "helm_mail_raidshaman_h_02_tam.m2", + }, + { + fileId = "353034", + text = "helm_mail_raidshaman_h_02_trf.m2", + value = "helm_mail_raidshaman_h_02_trf.m2", + }, + { + fileId = "353035", + text = "helm_mail_raidshaman_h_02_trm.m2", + value = "helm_mail_raidshaman_h_02_trm.m2", + }, + { + fileId = "139926", + text = "helm_mail_sunwell_d_01_bef.m2", + value = "helm_mail_sunwell_d_01_bef.m2", + }, + { + fileId = "139927", + text = "helm_mail_sunwell_d_01_bem.m2", + value = "helm_mail_sunwell_d_01_bem.m2", + }, + { + fileId = "139928", + text = "helm_mail_sunwell_d_01_drf.m2", + value = "helm_mail_sunwell_d_01_drf.m2", + }, + { + fileId = "139929", + text = "helm_mail_sunwell_d_01_drm.m2", + value = "helm_mail_sunwell_d_01_drm.m2", + }, + { + fileId = "139930", + text = "helm_mail_sunwell_d_01_dwf.m2", + value = "helm_mail_sunwell_d_01_dwf.m2", + }, + { + fileId = "139931", + text = "helm_mail_sunwell_d_01_dwm.m2", + value = "helm_mail_sunwell_d_01_dwm.m2", + }, + { + fileId = "139932", + text = "helm_mail_sunwell_d_01_gnf.m2", + value = "helm_mail_sunwell_d_01_gnf.m2", + }, + { + fileId = "139933", + text = "helm_mail_sunwell_d_01_gnm.m2", + value = "helm_mail_sunwell_d_01_gnm.m2", + }, + { + fileId = "139934", + text = "helm_mail_sunwell_d_01_gof.m2", + value = "helm_mail_sunwell_d_01_gof.m2", + }, + { + fileId = "139935", + text = "helm_mail_sunwell_d_01_gom.m2", + value = "helm_mail_sunwell_d_01_gom.m2", + }, + { + fileId = "139936", + text = "helm_mail_sunwell_d_01_huf.m2", + value = "helm_mail_sunwell_d_01_huf.m2", + }, + { + fileId = "139937", + text = "helm_mail_sunwell_d_01_hum.m2", + value = "helm_mail_sunwell_d_01_hum.m2", + }, + { + fileId = "139938", + text = "helm_mail_sunwell_d_01_nif.m2", + value = "helm_mail_sunwell_d_01_nif.m2", + }, + { + fileId = "139939", + text = "helm_mail_sunwell_d_01_nim.m2", + value = "helm_mail_sunwell_d_01_nim.m2", + }, + { + fileId = "139940", + text = "helm_mail_sunwell_d_01_orf.m2", + value = "helm_mail_sunwell_d_01_orf.m2", + }, + { + fileId = "139941", + text = "helm_mail_sunwell_d_01_orm.m2", + value = "helm_mail_sunwell_d_01_orm.m2", + }, + { + fileId = "139942", + text = "helm_mail_sunwell_d_01_scf.m2", + value = "helm_mail_sunwell_d_01_scf.m2", + }, + { + fileId = "139943", + text = "helm_mail_sunwell_d_01_scm.m2", + value = "helm_mail_sunwell_d_01_scm.m2", + }, + { + fileId = "139944", + text = "helm_mail_sunwell_d_01_taf.m2", + value = "helm_mail_sunwell_d_01_taf.m2", + }, + { + fileId = "139945", + text = "helm_mail_sunwell_d_01_tam.m2", + value = "helm_mail_sunwell_d_01_tam.m2", + }, + { + fileId = "139946", + text = "helm_mail_sunwell_d_01_trf.m2", + value = "helm_mail_sunwell_d_01_trf.m2", + }, + { + fileId = "139947", + text = "helm_mail_sunwell_d_01_trm.m2", + value = "helm_mail_sunwell_d_01_trm.m2", + }, + { + fileId = "238031", + text = "helm_mail_vrykul_01_nsm.m2", + value = "helm_mail_vrykul_01_nsm.m2", + }, + { + fileId = "238032", + text = "helm_mail_vrykul_01_vrm.m2", + value = "helm_mail_vrykul_01_vrm.m2", + }, + { + fileId = "139953", + text = "helm_mail_zulaman_d_01_bef.m2", + value = "helm_mail_zulaman_d_01_bef.m2", + }, + { + fileId = "139954", + text = "helm_mail_zulaman_d_01_bem.m2", + value = "helm_mail_zulaman_d_01_bem.m2", + }, + { + fileId = "139955", + text = "helm_mail_zulaman_d_01_drf.m2", + value = "helm_mail_zulaman_d_01_drf.m2", + }, + { + fileId = "139956", + text = "helm_mail_zulaman_d_01_drm.m2", + value = "helm_mail_zulaman_d_01_drm.m2", + }, + { + fileId = "139957", + text = "helm_mail_zulaman_d_01_dwf.m2", + value = "helm_mail_zulaman_d_01_dwf.m2", + }, + { + fileId = "139958", + text = "helm_mail_zulaman_d_01_dwm.m2", + value = "helm_mail_zulaman_d_01_dwm.m2", + }, + { + fileId = "139959", + text = "helm_mail_zulaman_d_01_gnf.m2", + value = "helm_mail_zulaman_d_01_gnf.m2", + }, + { + fileId = "139960", + text = "helm_mail_zulaman_d_01_gnm.m2", + value = "helm_mail_zulaman_d_01_gnm.m2", + }, + { + fileId = "139961", + text = "helm_mail_zulaman_d_01_huf.m2", + value = "helm_mail_zulaman_d_01_huf.m2", + }, + { + fileId = "139962", + text = "helm_mail_zulaman_d_01_hum.m2", + value = "helm_mail_zulaman_d_01_hum.m2", + }, + { + fileId = "139963", + text = "helm_mail_zulaman_d_01_nif.m2", + value = "helm_mail_zulaman_d_01_nif.m2", + }, + { + fileId = "139964", + text = "helm_mail_zulaman_d_01_nim.m2", + value = "helm_mail_zulaman_d_01_nim.m2", + }, + { + fileId = "139965", + text = "helm_mail_zulaman_d_01_orf.m2", + value = "helm_mail_zulaman_d_01_orf.m2", + }, + { + fileId = "139966", + text = "helm_mail_zulaman_d_01_orm.m2", + value = "helm_mail_zulaman_d_01_orm.m2", + }, + { + fileId = "139967", + text = "helm_mail_zulaman_d_01_scf.m2", + value = "helm_mail_zulaman_d_01_scf.m2", + }, + { + fileId = "139968", + text = "helm_mail_zulaman_d_01_scm.m2", + value = "helm_mail_zulaman_d_01_scm.m2", + }, + { + fileId = "139969", + text = "helm_mail_zulaman_d_01_taf.m2", + value = "helm_mail_zulaman_d_01_taf.m2", + }, + { + fileId = "139970", + text = "helm_mail_zulaman_d_01_tam.m2", + value = "helm_mail_zulaman_d_01_tam.m2", + }, + { + fileId = "139971", + text = "helm_mail_zulaman_d_01_trf.m2", + value = "helm_mail_zulaman_d_01_trf.m2", + }, + { + fileId = "139972", + text = "helm_mail_zulaman_d_01_trm.m2", + value = "helm_mail_zulaman_d_01_trm.m2", + }, + { + fileId = "139978", + text = "helm_mail_zulaman_d_02_bef.m2", + value = "helm_mail_zulaman_d_02_bef.m2", + }, + { + fileId = "139979", + text = "helm_mail_zulaman_d_02_bem.m2", + value = "helm_mail_zulaman_d_02_bem.m2", + }, + { + fileId = "139980", + text = "helm_mail_zulaman_d_02_drf.m2", + value = "helm_mail_zulaman_d_02_drf.m2", + }, + { + fileId = "139981", + text = "helm_mail_zulaman_d_02_drm.m2", + value = "helm_mail_zulaman_d_02_drm.m2", + }, + { + fileId = "139982", + text = "helm_mail_zulaman_d_02_dwf.m2", + value = "helm_mail_zulaman_d_02_dwf.m2", + }, + { + fileId = "139983", + text = "helm_mail_zulaman_d_02_dwm.m2", + value = "helm_mail_zulaman_d_02_dwm.m2", + }, + { + fileId = "139984", + text = "helm_mail_zulaman_d_02_gnf.m2", + value = "helm_mail_zulaman_d_02_gnf.m2", + }, + { + fileId = "139985", + text = "helm_mail_zulaman_d_02_gnm.m2", + value = "helm_mail_zulaman_d_02_gnm.m2", + }, + { + fileId = "139986", + text = "helm_mail_zulaman_d_02_huf.m2", + value = "helm_mail_zulaman_d_02_huf.m2", + }, + { + fileId = "139987", + text = "helm_mail_zulaman_d_02_hum.m2", + value = "helm_mail_zulaman_d_02_hum.m2", + }, + { + fileId = "139988", + text = "helm_mail_zulaman_d_02_nif.m2", + value = "helm_mail_zulaman_d_02_nif.m2", + }, + { + fileId = "139989", + text = "helm_mail_zulaman_d_02_nim.m2", + value = "helm_mail_zulaman_d_02_nim.m2", + }, + { + fileId = "139990", + text = "helm_mail_zulaman_d_02_orf.m2", + value = "helm_mail_zulaman_d_02_orf.m2", + }, + { + fileId = "139991", + text = "helm_mail_zulaman_d_02_orm.m2", + value = "helm_mail_zulaman_d_02_orm.m2", + }, + { + fileId = "139992", + text = "helm_mail_zulaman_d_02_scf.m2", + value = "helm_mail_zulaman_d_02_scf.m2", + }, + { + fileId = "139993", + text = "helm_mail_zulaman_d_02_scm.m2", + value = "helm_mail_zulaman_d_02_scm.m2", + }, + { + fileId = "139994", + text = "helm_mail_zulaman_d_02_taf.m2", + value = "helm_mail_zulaman_d_02_taf.m2", + }, + { + fileId = "139995", + text = "helm_mail_zulaman_d_02_tam.m2", + value = "helm_mail_zulaman_d_02_tam.m2", + }, + { + fileId = "139996", + text = "helm_mail_zulaman_d_02_trf.m2", + value = "helm_mail_zulaman_d_02_trf.m2", + }, + { + fileId = "139997", + text = "helm_mail_zulaman_d_02_trm.m2", + value = "helm_mail_zulaman_d_02_trm.m2", + }, + { + fileId = "140002", + text = "helm_mask_a_01troll_bef.m2", + value = "helm_mask_a_01troll_bef.m2", + }, + { + fileId = "140003", + text = "helm_mask_a_01troll_bem.m2", + value = "helm_mask_a_01troll_bem.m2", + }, + { + fileId = "140004", + text = "helm_mask_a_01troll_drf.m2", + value = "helm_mask_a_01troll_drf.m2", + }, + { + fileId = "140005", + text = "helm_mask_a_01troll_drm.m2", + value = "helm_mask_a_01troll_drm.m2", + }, + { + fileId = "140006", + text = "helm_mask_a_01troll_dwf.m2", + value = "helm_mask_a_01troll_dwf.m2", + }, + { + fileId = "140007", + text = "helm_mask_a_01troll_dwm.m2", + value = "helm_mask_a_01troll_dwm.m2", + }, + { + fileId = "238035", + text = "helm_mask_a_01troll_ftm.m2", + value = "helm_mask_a_01troll_ftm.m2", + }, + { + fileId = "140008", + text = "helm_mask_a_01troll_gnf.m2", + value = "helm_mask_a_01troll_gnf.m2", + }, + { + fileId = "140009", + text = "helm_mask_a_01troll_gnm.m2", + value = "helm_mask_a_01troll_gnm.m2", + }, + { + fileId = "140010", + text = "helm_mask_a_01troll_gof.m2", + value = "helm_mask_a_01troll_gof.m2", + }, + { + fileId = "140011", + text = "helm_mask_a_01troll_gom.m2", + value = "helm_mask_a_01troll_gom.m2", + }, + { + fileId = "140012", + text = "helm_mask_a_01troll_huf.m2", + value = "helm_mask_a_01troll_huf.m2", + }, + { + fileId = "140013", + text = "helm_mask_a_01troll_hum.m2", + value = "helm_mask_a_01troll_hum.m2", + }, + { + fileId = "238036", + text = "helm_mask_a_01troll_itm.m2", + value = "helm_mask_a_01troll_itm.m2", + }, + { + fileId = "140014", + text = "helm_mask_a_01troll_nif.m2", + value = "helm_mask_a_01troll_nif.m2", + }, + { + fileId = "140015", + text = "helm_mask_a_01troll_nim.m2", + value = "helm_mask_a_01troll_nim.m2", + }, + { + fileId = "140016", + text = "helm_mask_a_01troll_orf.m2", + value = "helm_mask_a_01troll_orf.m2", + }, + { + fileId = "140017", + text = "helm_mask_a_01troll_orm.m2", + value = "helm_mask_a_01troll_orm.m2", + }, + { + fileId = "140018", + text = "helm_mask_a_01troll_scf.m2", + value = "helm_mask_a_01troll_scf.m2", + }, + { + fileId = "140019", + text = "helm_mask_a_01troll_scm.m2", + value = "helm_mask_a_01troll_scm.m2", + }, + { + fileId = "140020", + text = "helm_mask_a_01troll_taf.m2", + value = "helm_mask_a_01troll_taf.m2", + }, + { + fileId = "140021", + text = "helm_mask_a_01troll_tam.m2", + value = "helm_mask_a_01troll_tam.m2", + }, + { + fileId = "140022", + text = "helm_mask_a_01troll_trf.m2", + value = "helm_mask_a_01troll_trf.m2", + }, + { + fileId = "140023", + text = "helm_mask_a_01troll_trm.m2", + value = "helm_mask_a_01troll_trm.m2", + }, + { + fileId = "140024", + text = "helm_mask_b_01mirror_bef.m2", + value = "helm_mask_b_01mirror_bef.m2", + }, + { + fileId = "140025", + text = "helm_mask_b_01mirror_bem.m2", + value = "helm_mask_b_01mirror_bem.m2", + }, + { + fileId = "140026", + text = "helm_mask_b_01mirror_drf.m2", + value = "helm_mask_b_01mirror_drf.m2", + }, + { + fileId = "140027", + text = "helm_mask_b_01mirror_drm.m2", + value = "helm_mask_b_01mirror_drm.m2", + }, + { + fileId = "140028", + text = "helm_mask_b_01mirror_gof.m2", + value = "helm_mask_b_01mirror_gof.m2", + }, + { + fileId = "140029", + text = "helm_mask_b_01mirror_gom.m2", + value = "helm_mask_b_01mirror_gom.m2", + }, + { + fileId = "140031", + text = "helm_mask_halloween_bef.m2", + value = "helm_mask_halloween_bef.m2", + }, + { + fileId = "140032", + text = "helm_mask_halloween_bem.m2", + value = "helm_mask_halloween_bem.m2", + }, + { + fileId = "140036", + text = "helm_mask_halloween_drf.m2", + value = "helm_mask_halloween_drf.m2", + }, + { + fileId = "140038", + text = "helm_mask_halloween_drm.m2", + value = "helm_mask_halloween_drm.m2", + }, + { + fileId = "140040", + text = "helm_mask_halloween_dwf.m2", + value = "helm_mask_halloween_dwf.m2", + }, + { + fileId = "140042", + text = "helm_mask_halloween_dwm.m2", + value = "helm_mask_halloween_dwm.m2", + }, + { + fileId = "140044", + text = "helm_mask_halloween_gnf.m2", + value = "helm_mask_halloween_gnf.m2", + }, + { + fileId = "140046", + text = "helm_mask_halloween_gnm.m2", + value = "helm_mask_halloween_gnm.m2", + }, + { + fileId = "140047", + text = "helm_mask_halloween_gof.m2", + value = "helm_mask_halloween_gof.m2", + }, + { + fileId = "140048", + text = "helm_mask_halloween_gom.m2", + value = "helm_mask_halloween_gom.m2", + }, + { + fileId = "140050", + text = "helm_mask_halloween_huf.m2", + value = "helm_mask_halloween_huf.m2", + }, + { + fileId = "140052", + text = "helm_mask_halloween_hum.m2", + value = "helm_mask_halloween_hum.m2", + }, + { + fileId = "140054", + text = "helm_mask_halloween_nif.m2", + value = "helm_mask_halloween_nif.m2", + }, + { + fileId = "140056", + text = "helm_mask_halloween_nim.m2", + value = "helm_mask_halloween_nim.m2", + }, + { + fileId = "140058", + text = "helm_mask_halloween_orf.m2", + value = "helm_mask_halloween_orf.m2", + }, + { + fileId = "140060", + text = "helm_mask_halloween_orm.m2", + value = "helm_mask_halloween_orm.m2", + }, + { + fileId = "140062", + text = "helm_mask_halloween_scf.m2", + value = "helm_mask_halloween_scf.m2", + }, + { + fileId = "140064", + text = "helm_mask_halloween_scm.m2", + value = "helm_mask_halloween_scm.m2", + }, + { + fileId = "140066", + text = "helm_mask_halloween_taf.m2", + value = "helm_mask_halloween_taf.m2", + }, + { + fileId = "140068", + text = "helm_mask_halloween_tam.m2", + value = "helm_mask_halloween_tam.m2", + }, + { + fileId = "140070", + text = "helm_mask_halloween_trf.m2", + value = "helm_mask_halloween_trf.m2", + }, + { + fileId = "140072", + text = "helm_mask_halloween_trm.m2", + value = "helm_mask_halloween_trm.m2", + }, + { + fileId = "325859", + text = "helm_mask_ne_a_01_bef.m2", + value = "helm_mask_ne_a_01_bef.m2", + }, + { + fileId = "325860", + text = "helm_mask_ne_a_01_bem.m2", + value = "helm_mask_ne_a_01_bem.m2", + }, + { + fileId = "325861", + text = "helm_mask_ne_a_01_drf.m2", + value = "helm_mask_ne_a_01_drf.m2", + }, + { + fileId = "325862", + text = "helm_mask_ne_a_01_drm.m2", + value = "helm_mask_ne_a_01_drm.m2", + }, + { + fileId = "325863", + text = "helm_mask_ne_a_01_dwf.m2", + value = "helm_mask_ne_a_01_dwf.m2", + }, + { + fileId = "325864", + text = "helm_mask_ne_a_01_dwm.m2", + value = "helm_mask_ne_a_01_dwm.m2", + }, + { + fileId = "325865", + text = "helm_mask_ne_a_01_gnf.m2", + value = "helm_mask_ne_a_01_gnf.m2", + }, + { + fileId = "325866", + text = "helm_mask_ne_a_01_gnm.m2", + value = "helm_mask_ne_a_01_gnm.m2", + }, + { + fileId = "325867", + text = "helm_mask_ne_a_01_huf.m2", + value = "helm_mask_ne_a_01_huf.m2", + }, + { + fileId = "325868", + text = "helm_mask_ne_a_01_hum.m2", + value = "helm_mask_ne_a_01_hum.m2", + }, + { + fileId = "325869", + text = "helm_mask_ne_a_01_nif.m2", + value = "helm_mask_ne_a_01_nif.m2", + }, + { + fileId = "325870", + text = "helm_mask_ne_a_01_nim.m2", + value = "helm_mask_ne_a_01_nim.m2", + }, + { + fileId = "325871", + text = "helm_mask_ne_a_01_orf.m2", + value = "helm_mask_ne_a_01_orf.m2", + }, + { + fileId = "325872", + text = "helm_mask_ne_a_01_orm.m2", + value = "helm_mask_ne_a_01_orm.m2", + }, + { + fileId = "325873", + text = "helm_mask_ne_a_01_scf.m2", + value = "helm_mask_ne_a_01_scf.m2", + }, + { + fileId = "325874", + text = "helm_mask_ne_a_01_scm.m2", + value = "helm_mask_ne_a_01_scm.m2", + }, + { + fileId = "325875", + text = "helm_mask_ne_a_01_taf.m2", + value = "helm_mask_ne_a_01_taf.m2", + }, + { + fileId = "325876", + text = "helm_mask_ne_a_01_tam.m2", + value = "helm_mask_ne_a_01_tam.m2", + }, + { + fileId = "325877", + text = "helm_mask_ne_a_01_trf.m2", + value = "helm_mask_ne_a_01_trf.m2", + }, + { + fileId = "325878", + text = "helm_mask_ne_a_01_trm.m2", + value = "helm_mask_ne_a_01_trm.m2", + }, + { + fileId = "140074", + text = "helm_mask_plague_bef.m2", + value = "helm_mask_plague_bef.m2", + }, + { + fileId = "140075", + text = "helm_mask_plague_bem.m2", + value = "helm_mask_plague_bem.m2", + }, + { + fileId = "140076", + text = "helm_mask_plague_drf.m2", + value = "helm_mask_plague_drf.m2", + }, + { + fileId = "140077", + text = "helm_mask_plague_drm.m2", + value = "helm_mask_plague_drm.m2", + }, + { + fileId = "140078", + text = "helm_mask_plague_dwf.m2", + value = "helm_mask_plague_dwf.m2", + }, + { + fileId = "140079", + text = "helm_mask_plague_dwm.m2", + value = "helm_mask_plague_dwm.m2", + }, + { + fileId = "140080", + text = "helm_mask_plague_gnf.m2", + value = "helm_mask_plague_gnf.m2", + }, + { + fileId = "140081", + text = "helm_mask_plague_gnm.m2", + value = "helm_mask_plague_gnm.m2", + }, + { + fileId = "140082", + text = "helm_mask_plague_gof.m2", + value = "helm_mask_plague_gof.m2", + }, + { + fileId = "140083", + text = "helm_mask_plague_gom.m2", + value = "helm_mask_plague_gom.m2", + }, + { + fileId = "140084", + text = "helm_mask_plague_huf.m2", + value = "helm_mask_plague_huf.m2", + }, + { + fileId = "140085", + text = "helm_mask_plague_hum.m2", + value = "helm_mask_plague_hum.m2", + }, + { + fileId = "140086", + text = "helm_mask_plague_nif.m2", + value = "helm_mask_plague_nif.m2", + }, + { + fileId = "140087", + text = "helm_mask_plague_nim.m2", + value = "helm_mask_plague_nim.m2", + }, + { + fileId = "140088", + text = "helm_mask_plague_orf.m2", + value = "helm_mask_plague_orf.m2", + }, + { + fileId = "140089", + text = "helm_mask_plague_orm.m2", + value = "helm_mask_plague_orm.m2", + }, + { + fileId = "140090", + text = "helm_mask_plague_scf.m2", + value = "helm_mask_plague_scf.m2", + }, + { + fileId = "140091", + text = "helm_mask_plague_scm.m2", + value = "helm_mask_plague_scm.m2", + }, + { + fileId = "140092", + text = "helm_mask_plague_taf.m2", + value = "helm_mask_plague_taf.m2", + }, + { + fileId = "140093", + text = "helm_mask_plague_tam.m2", + value = "helm_mask_plague_tam.m2", + }, + { + fileId = "140094", + text = "helm_mask_plague_trf.m2", + value = "helm_mask_plague_trf.m2", + }, + { + fileId = "140095", + text = "helm_mask_plague_trm.m2", + value = "helm_mask_plague_trm.m2", + }, + { + fileId = "140097", + text = "helm_mask_pumpkin_bef.m2", + value = "helm_mask_pumpkin_bef.m2", + }, + { + fileId = "140098", + text = "helm_mask_pumpkin_bem.m2", + value = "helm_mask_pumpkin_bem.m2", + }, + { + fileId = "140099", + text = "helm_mask_pumpkin_drf.m2", + value = "helm_mask_pumpkin_drf.m2", + }, + { + fileId = "140100", + text = "helm_mask_pumpkin_drm.m2", + value = "helm_mask_pumpkin_drm.m2", + }, + { + fileId = "140101", + text = "helm_mask_pumpkin_dwf.m2", + value = "helm_mask_pumpkin_dwf.m2", + }, + { + fileId = "140102", + text = "helm_mask_pumpkin_dwm.m2", + value = "helm_mask_pumpkin_dwm.m2", + }, + { + fileId = "140103", + text = "helm_mask_pumpkin_gnf.m2", + value = "helm_mask_pumpkin_gnf.m2", + }, + { + fileId = "140104", + text = "helm_mask_pumpkin_gnm.m2", + value = "helm_mask_pumpkin_gnm.m2", + }, + { + fileId = "140105", + text = "helm_mask_pumpkin_gof.m2", + value = "helm_mask_pumpkin_gof.m2", + }, + { + fileId = "140106", + text = "helm_mask_pumpkin_gom.m2", + value = "helm_mask_pumpkin_gom.m2", + }, + { + fileId = "140107", + text = "helm_mask_pumpkin_huf.m2", + value = "helm_mask_pumpkin_huf.m2", + }, + { + fileId = "140108", + text = "helm_mask_pumpkin_hum.m2", + value = "helm_mask_pumpkin_hum.m2", + }, + { + fileId = "140109", + text = "helm_mask_pumpkin_nif.m2", + value = "helm_mask_pumpkin_nif.m2", + }, + { + fileId = "140110", + text = "helm_mask_pumpkin_nim.m2", + value = "helm_mask_pumpkin_nim.m2", + }, + { + fileId = "140111", + text = "helm_mask_pumpkin_orf.m2", + value = "helm_mask_pumpkin_orf.m2", + }, + { + fileId = "140112", + text = "helm_mask_pumpkin_orm.m2", + value = "helm_mask_pumpkin_orm.m2", + }, + { + fileId = "140113", + text = "helm_mask_pumpkin_scf.m2", + value = "helm_mask_pumpkin_scf.m2", + }, + { + fileId = "140114", + text = "helm_mask_pumpkin_scm.m2", + value = "helm_mask_pumpkin_scm.m2", + }, + { + fileId = "140115", + text = "helm_mask_pumpkin_taf.m2", + value = "helm_mask_pumpkin_taf.m2", + }, + { + fileId = "140116", + text = "helm_mask_pumpkin_tam.m2", + value = "helm_mask_pumpkin_tam.m2", + }, + { + fileId = "140117", + text = "helm_mask_pumpkin_trf.m2", + value = "helm_mask_pumpkin_trf.m2", + }, + { + fileId = "140118", + text = "helm_mask_pumpkin_trm.m2", + value = "helm_mask_pumpkin_trm.m2", + }, + { + fileId = "140119", + text = "helm_mask_zulgurub_d_01_bef.m2", + value = "helm_mask_zulgurub_d_01_bef.m2", + }, + { + fileId = "140120", + text = "helm_mask_zulgurub_d_01_bem.m2", + value = "helm_mask_zulgurub_d_01_bem.m2", + }, + { + fileId = "140121", + text = "helm_mask_zulgurub_d_01_drf.m2", + value = "helm_mask_zulgurub_d_01_drf.m2", + }, + { + fileId = "140122", + text = "helm_mask_zulgurub_d_01_drm.m2", + value = "helm_mask_zulgurub_d_01_drm.m2", + }, + { + fileId = "140123", + text = "helm_mask_zulgurub_d_01_dwf.m2", + value = "helm_mask_zulgurub_d_01_dwf.m2", + }, + { + fileId = "140124", + text = "helm_mask_zulgurub_d_01_dwm.m2", + value = "helm_mask_zulgurub_d_01_dwm.m2", + }, + { + fileId = "140125", + text = "helm_mask_zulgurub_d_01_gnf.m2", + value = "helm_mask_zulgurub_d_01_gnf.m2", + }, + { + fileId = "140126", + text = "helm_mask_zulgurub_d_01_gnm.m2", + value = "helm_mask_zulgurub_d_01_gnm.m2", + }, + { + fileId = "140127", + text = "helm_mask_zulgurub_d_01_gof.m2", + value = "helm_mask_zulgurub_d_01_gof.m2", + }, + { + fileId = "140128", + text = "helm_mask_zulgurub_d_01_gom.m2", + value = "helm_mask_zulgurub_d_01_gom.m2", + }, + { + fileId = "140129", + text = "helm_mask_zulgurub_d_01_huf.m2", + value = "helm_mask_zulgurub_d_01_huf.m2", + }, + { + fileId = "140130", + text = "helm_mask_zulgurub_d_01_hum.m2", + value = "helm_mask_zulgurub_d_01_hum.m2", + }, + { + fileId = "140131", + text = "helm_mask_zulgurub_d_01_nif.m2", + value = "helm_mask_zulgurub_d_01_nif.m2", + }, + { + fileId = "140132", + text = "helm_mask_zulgurub_d_01_nim.m2", + value = "helm_mask_zulgurub_d_01_nim.m2", + }, + { + fileId = "140133", + text = "helm_mask_zulgurub_d_01_orf.m2", + value = "helm_mask_zulgurub_d_01_orf.m2", + }, + { + fileId = "140134", + text = "helm_mask_zulgurub_d_01_orm.m2", + value = "helm_mask_zulgurub_d_01_orm.m2", + }, + { + fileId = "140135", + text = "helm_mask_zulgurub_d_01_scf.m2", + value = "helm_mask_zulgurub_d_01_scf.m2", + }, + { + fileId = "140136", + text = "helm_mask_zulgurub_d_01_scm.m2", + value = "helm_mask_zulgurub_d_01_scm.m2", + }, + { + fileId = "140137", + text = "helm_mask_zulgurub_d_01_taf.m2", + value = "helm_mask_zulgurub_d_01_taf.m2", + }, + { + fileId = "140138", + text = "helm_mask_zulgurub_d_01_tam.m2", + value = "helm_mask_zulgurub_d_01_tam.m2", + }, + { + fileId = "140139", + text = "helm_mask_zulgurub_d_01_trf.m2", + value = "helm_mask_zulgurub_d_01_trf.m2", + }, + { + fileId = "140140", + text = "helm_mask_zulgurub_d_01_trm.m2", + value = "helm_mask_zulgurub_d_01_trm.m2", + }, + { + fileId = "252088", + text = "helm_misc_bunnyears_a_01_bef.m2", + value = "helm_misc_bunnyears_a_01_bef.m2", + }, + { + fileId = "252089", + text = "helm_misc_bunnyears_a_01_bem.m2", + value = "helm_misc_bunnyears_a_01_bem.m2", + }, + { + fileId = "252090", + text = "helm_misc_bunnyears_a_01_drf.m2", + value = "helm_misc_bunnyears_a_01_drf.m2", + }, + { + fileId = "252091", + text = "helm_misc_bunnyears_a_01_drm.m2", + value = "helm_misc_bunnyears_a_01_drm.m2", + }, + { + fileId = "252092", + text = "helm_misc_bunnyears_a_01_dwf.m2", + value = "helm_misc_bunnyears_a_01_dwf.m2", + }, + { + fileId = "252093", + text = "helm_misc_bunnyears_a_01_dwm.m2", + value = "helm_misc_bunnyears_a_01_dwm.m2", + }, + { + fileId = "252094", + text = "helm_misc_bunnyears_a_01_gnf.m2", + value = "helm_misc_bunnyears_a_01_gnf.m2", + }, + { + fileId = "252095", + text = "helm_misc_bunnyears_a_01_gnm.m2", + value = "helm_misc_bunnyears_a_01_gnm.m2", + }, + { + fileId = "252096", + text = "helm_misc_bunnyears_a_01_gof.m2", + value = "helm_misc_bunnyears_a_01_gof.m2", + }, + { + fileId = "252097", + text = "helm_misc_bunnyears_a_01_gom.m2", + value = "helm_misc_bunnyears_a_01_gom.m2", + }, + { + fileId = "252098", + text = "helm_misc_bunnyears_a_01_huf.m2", + value = "helm_misc_bunnyears_a_01_huf.m2", + }, + { + fileId = "252099", + text = "helm_misc_bunnyears_a_01_hum.m2", + value = "helm_misc_bunnyears_a_01_hum.m2", + }, + { + fileId = "252100", + text = "helm_misc_bunnyears_a_01_nif.m2", + value = "helm_misc_bunnyears_a_01_nif.m2", + }, + { + fileId = "252101", + text = "helm_misc_bunnyears_a_01_nim.m2", + value = "helm_misc_bunnyears_a_01_nim.m2", + }, + { + fileId = "252102", + text = "helm_misc_bunnyears_a_01_orf.m2", + value = "helm_misc_bunnyears_a_01_orf.m2", + }, + { + fileId = "252103", + text = "helm_misc_bunnyears_a_01_orm.m2", + value = "helm_misc_bunnyears_a_01_orm.m2", + }, + { + fileId = "252104", + text = "helm_misc_bunnyears_a_01_scf.m2", + value = "helm_misc_bunnyears_a_01_scf.m2", + }, + { + fileId = "252105", + text = "helm_misc_bunnyears_a_01_scm.m2", + value = "helm_misc_bunnyears_a_01_scm.m2", + }, + { + fileId = "252106", + text = "helm_misc_bunnyears_a_01_taf.m2", + value = "helm_misc_bunnyears_a_01_taf.m2", + }, + { + fileId = "252107", + text = "helm_misc_bunnyears_a_01_tam.m2", + value = "helm_misc_bunnyears_a_01_tam.m2", + }, + { + fileId = "252108", + text = "helm_misc_bunnyears_a_01_trf.m2", + value = "helm_misc_bunnyears_a_01_trf.m2", + }, + { + fileId = "252109", + text = "helm_misc_bunnyears_a_01_trm.m2", + value = "helm_misc_bunnyears_a_01_trm.m2", + }, + { + fileId = "238037", + text = "helm_misc_bunnyears_black_a_01_bef.m2", + value = "helm_misc_bunnyears_black_a_01_bef.m2", + }, + { + fileId = "238038", + text = "helm_misc_bunnyears_black_a_01_bem.m2", + value = "helm_misc_bunnyears_black_a_01_bem.m2", + }, + { + fileId = "238039", + text = "helm_misc_bunnyears_black_a_01_drf.m2", + value = "helm_misc_bunnyears_black_a_01_drf.m2", + }, + { + fileId = "238040", + text = "helm_misc_bunnyears_black_a_01_drm.m2", + value = "helm_misc_bunnyears_black_a_01_drm.m2", + }, + { + fileId = "238041", + text = "helm_misc_bunnyears_black_a_01_dwf.m2", + value = "helm_misc_bunnyears_black_a_01_dwf.m2", + }, + { + fileId = "238042", + text = "helm_misc_bunnyears_black_a_01_dwm.m2", + value = "helm_misc_bunnyears_black_a_01_dwm.m2", + }, + { + fileId = "238043", + text = "helm_misc_bunnyears_black_a_01_gnf.m2", + value = "helm_misc_bunnyears_black_a_01_gnf.m2", + }, + { + fileId = "238044", + text = "helm_misc_bunnyears_black_a_01_gnm.m2", + value = "helm_misc_bunnyears_black_a_01_gnm.m2", + }, + { + fileId = "238045", + text = "helm_misc_bunnyears_black_a_01_gof.m2", + value = "helm_misc_bunnyears_black_a_01_gof.m2", + }, + { + fileId = "238046", + text = "helm_misc_bunnyears_black_a_01_gom.m2", + value = "helm_misc_bunnyears_black_a_01_gom.m2", + }, + { + fileId = "238047", + text = "helm_misc_bunnyears_black_a_01_huf.m2", + value = "helm_misc_bunnyears_black_a_01_huf.m2", + }, + { + fileId = "238048", + text = "helm_misc_bunnyears_black_a_01_hum.m2", + value = "helm_misc_bunnyears_black_a_01_hum.m2", + }, + { + fileId = "238049", + text = "helm_misc_bunnyears_black_a_01_nif.m2", + value = "helm_misc_bunnyears_black_a_01_nif.m2", + }, + { + fileId = "238050", + text = "helm_misc_bunnyears_black_a_01_nim.m2", + value = "helm_misc_bunnyears_black_a_01_nim.m2", + }, + { + fileId = "238051", + text = "helm_misc_bunnyears_black_a_01_orf.m2", + value = "helm_misc_bunnyears_black_a_01_orf.m2", + }, + { + fileId = "238052", + text = "helm_misc_bunnyears_black_a_01_orm.m2", + value = "helm_misc_bunnyears_black_a_01_orm.m2", + }, + { + fileId = "238053", + text = "helm_misc_bunnyears_black_a_01_scf.m2", + value = "helm_misc_bunnyears_black_a_01_scf.m2", + }, + { + fileId = "238054", + text = "helm_misc_bunnyears_black_a_01_scm.m2", + value = "helm_misc_bunnyears_black_a_01_scm.m2", + }, + { + fileId = "238055", + text = "helm_misc_bunnyears_black_a_01_taf.m2", + value = "helm_misc_bunnyears_black_a_01_taf.m2", + }, + { + fileId = "238056", + text = "helm_misc_bunnyears_black_a_01_tam.m2", + value = "helm_misc_bunnyears_black_a_01_tam.m2", + }, + { + fileId = "238057", + text = "helm_misc_bunnyears_black_a_01_trf.m2", + value = "helm_misc_bunnyears_black_a_01_trf.m2", + }, + { + fileId = "238058", + text = "helm_misc_bunnyears_black_a_01_trm.m2", + value = "helm_misc_bunnyears_black_a_01_trm.m2", + }, + { + fileId = "329807", + text = "helm_misc_rose_a_01_bef.m2", + value = "helm_misc_rose_a_01_bef.m2", + }, + { + fileId = "329808", + text = "helm_misc_rose_a_01_bem.m2", + value = "helm_misc_rose_a_01_bem.m2", + }, + { + fileId = "329809", + text = "helm_misc_rose_a_01_drf.m2", + value = "helm_misc_rose_a_01_drf.m2", + }, + { + fileId = "329810", + text = "helm_misc_rose_a_01_drm.m2", + value = "helm_misc_rose_a_01_drm.m2", + }, + { + fileId = "329811", + text = "helm_misc_rose_a_01_dwf.m2", + value = "helm_misc_rose_a_01_dwf.m2", + }, + { + fileId = "329812", + text = "helm_misc_rose_a_01_dwm.m2", + value = "helm_misc_rose_a_01_dwm.m2", + }, + { + fileId = "329813", + text = "helm_misc_rose_a_01_gnf.m2", + value = "helm_misc_rose_a_01_gnf.m2", + }, + { + fileId = "329814", + text = "helm_misc_rose_a_01_gnm.m2", + value = "helm_misc_rose_a_01_gnm.m2", + }, + { + fileId = "329815", + text = "helm_misc_rose_a_01_gof.m2", + value = "helm_misc_rose_a_01_gof.m2", + }, + { + fileId = "329816", + text = "helm_misc_rose_a_01_gom.m2", + value = "helm_misc_rose_a_01_gom.m2", + }, + { + fileId = "329817", + text = "helm_misc_rose_a_01_huf.m2", + value = "helm_misc_rose_a_01_huf.m2", + }, + { + fileId = "329818", + text = "helm_misc_rose_a_01_hum.m2", + value = "helm_misc_rose_a_01_hum.m2", + }, + { + fileId = "329819", + text = "helm_misc_rose_a_01_nif.m2", + value = "helm_misc_rose_a_01_nif.m2", + }, + { + fileId = "329820", + text = "helm_misc_rose_a_01_nim.m2", + value = "helm_misc_rose_a_01_nim.m2", + }, + { + fileId = "329821", + text = "helm_misc_rose_a_01_orf.m2", + value = "helm_misc_rose_a_01_orf.m2", + }, + { + fileId = "329822", + text = "helm_misc_rose_a_01_orm.m2", + value = "helm_misc_rose_a_01_orm.m2", + }, + { + fileId = "329823", + text = "helm_misc_rose_a_01_scf.m2", + value = "helm_misc_rose_a_01_scf.m2", + }, + { + fileId = "329824", + text = "helm_misc_rose_a_01_scm.m2", + value = "helm_misc_rose_a_01_scm.m2", + }, + { + fileId = "329825", + text = "helm_misc_rose_a_01_taf.m2", + value = "helm_misc_rose_a_01_taf.m2", + }, + { + fileId = "329826", + text = "helm_misc_rose_a_01_tam.m2", + value = "helm_misc_rose_a_01_tam.m2", + }, + { + fileId = "329827", + text = "helm_misc_rose_a_01_trf.m2", + value = "helm_misc_rose_a_01_trf.m2", + }, + { + fileId = "329828", + text = "helm_misc_rose_a_01_trm.m2", + value = "helm_misc_rose_a_01_trm.m2", + }, + { + fileId = "140142", + text = "helm_monocle_a_01_bef.m2", + value = "helm_monocle_a_01_bef.m2", + }, + { + fileId = "140143", + text = "helm_monocle_a_01_bem.m2", + value = "helm_monocle_a_01_bem.m2", + }, + { + fileId = "140144", + text = "helm_monocle_a_01_drf.m2", + value = "helm_monocle_a_01_drf.m2", + }, + { + fileId = "140145", + text = "helm_monocle_a_01_drm.m2", + value = "helm_monocle_a_01_drm.m2", + }, + { + fileId = "140146", + text = "helm_monocle_a_01_dwf.m2", + value = "helm_monocle_a_01_dwf.m2", + }, + { + fileId = "140147", + text = "helm_monocle_a_01_dwm.m2", + value = "helm_monocle_a_01_dwm.m2", + }, + { + fileId = "140148", + text = "helm_monocle_a_01_gnf.m2", + value = "helm_monocle_a_01_gnf.m2", + }, + { + fileId = "140149", + text = "helm_monocle_a_01_gnm.m2", + value = "helm_monocle_a_01_gnm.m2", + }, + { + fileId = "140150", + text = "helm_monocle_a_01_gof.m2", + value = "helm_monocle_a_01_gof.m2", + }, + { + fileId = "140151", + text = "helm_monocle_a_01_gom.m2", + value = "helm_monocle_a_01_gom.m2", + }, + { + fileId = "140152", + text = "helm_monocle_a_01_huf.m2", + value = "helm_monocle_a_01_huf.m2", + }, + { + fileId = "140153", + text = "helm_monocle_a_01_hum.m2", + value = "helm_monocle_a_01_hum.m2", + }, + { + fileId = "140154", + text = "helm_monocle_a_01_nif.m2", + value = "helm_monocle_a_01_nif.m2", + }, + { + fileId = "140155", + text = "helm_monocle_a_01_nim.m2", + value = "helm_monocle_a_01_nim.m2", + }, + { + fileId = "140156", + text = "helm_monocle_a_01_orf.m2", + value = "helm_monocle_a_01_orf.m2", + }, + { + fileId = "140157", + text = "helm_monocle_a_01_orm.m2", + value = "helm_monocle_a_01_orm.m2", + }, + { + fileId = "140158", + text = "helm_monocle_a_01_scf.m2", + value = "helm_monocle_a_01_scf.m2", + }, + { + fileId = "140159", + text = "helm_monocle_a_01_scm.m2", + value = "helm_monocle_a_01_scm.m2", + }, + { + fileId = "140160", + text = "helm_monocle_a_01_taf.m2", + value = "helm_monocle_a_01_taf.m2", + }, + { + fileId = "140161", + text = "helm_monocle_a_01_tam.m2", + value = "helm_monocle_a_01_tam.m2", + }, + { + fileId = "140162", + text = "helm_monocle_a_01_trf.m2", + value = "helm_monocle_a_01_trf.m2", + }, + { + fileId = "140163", + text = "helm_monocle_a_01_trm.m2", + value = "helm_monocle_a_01_trm.m2", + }, + { + fileId = "140167", + text = "helm_monocle_b_01_bef.m2", + value = "helm_monocle_b_01_bef.m2", + }, + { + fileId = "140168", + text = "helm_monocle_b_01_bem.m2", + value = "helm_monocle_b_01_bem.m2", + }, + { + fileId = "140169", + text = "helm_monocle_b_01_drf.m2", + value = "helm_monocle_b_01_drf.m2", + }, + { + fileId = "140170", + text = "helm_monocle_b_01_drm.m2", + value = "helm_monocle_b_01_drm.m2", + }, + { + fileId = "140171", + text = "helm_monocle_b_01_dwf.m2", + value = "helm_monocle_b_01_dwf.m2", + }, + { + fileId = "140172", + text = "helm_monocle_b_01_dwm.m2", + value = "helm_monocle_b_01_dwm.m2", + }, + { + fileId = "140173", + text = "helm_monocle_b_01_gnf.m2", + value = "helm_monocle_b_01_gnf.m2", + }, + { + fileId = "140174", + text = "helm_monocle_b_01_gnm.m2", + value = "helm_monocle_b_01_gnm.m2", + }, + { + fileId = "140175", + text = "helm_monocle_b_01_gof.m2", + value = "helm_monocle_b_01_gof.m2", + }, + { + fileId = "140176", + text = "helm_monocle_b_01_gom.m2", + value = "helm_monocle_b_01_gom.m2", + }, + { + fileId = "140177", + text = "helm_monocle_b_01_huf.m2", + value = "helm_monocle_b_01_huf.m2", + }, + { + fileId = "140178", + text = "helm_monocle_b_01_hum.m2", + value = "helm_monocle_b_01_hum.m2", + }, + { + fileId = "140179", + text = "helm_monocle_b_01_nif.m2", + value = "helm_monocle_b_01_nif.m2", + }, + { + fileId = "140180", + text = "helm_monocle_b_01_nim.m2", + value = "helm_monocle_b_01_nim.m2", + }, + { + fileId = "140181", + text = "helm_monocle_b_01_orf.m2", + value = "helm_monocle_b_01_orf.m2", + }, + { + fileId = "140182", + text = "helm_monocle_b_01_orm.m2", + value = "helm_monocle_b_01_orm.m2", + }, + { + fileId = "140183", + text = "helm_monocle_b_01_scf.m2", + value = "helm_monocle_b_01_scf.m2", + }, + { + fileId = "140184", + text = "helm_monocle_b_01_scm.m2", + value = "helm_monocle_b_01_scm.m2", + }, + { + fileId = "140185", + text = "helm_monocle_b_01_taf.m2", + value = "helm_monocle_b_01_taf.m2", + }, + { + fileId = "140186", + text = "helm_monocle_b_01_tam.m2", + value = "helm_monocle_b_01_tam.m2", + }, + { + fileId = "140187", + text = "helm_monocle_b_01_trf.m2", + value = "helm_monocle_b_01_trf.m2", + }, + { + fileId = "140188", + text = "helm_monocle_b_01_trm.m2", + value = "helm_monocle_b_01_trm.m2", + }, + { + fileId = "140189", + text = "helm_monocle_b_02engi_bef.m2", + value = "helm_monocle_b_02engi_bef.m2", + }, + { + fileId = "140190", + text = "helm_monocle_b_02engi_bem.m2", + value = "helm_monocle_b_02engi_bem.m2", + }, + { + fileId = "140191", + text = "helm_monocle_b_02engi_drf.m2", + value = "helm_monocle_b_02engi_drf.m2", + }, + { + fileId = "140192", + text = "helm_monocle_b_02engi_drm.m2", + value = "helm_monocle_b_02engi_drm.m2", + }, + { + fileId = "140193", + text = "helm_monocle_b_02engi_dwf.m2", + value = "helm_monocle_b_02engi_dwf.m2", + }, + { + fileId = "140194", + text = "helm_monocle_b_02engi_dwm.m2", + value = "helm_monocle_b_02engi_dwm.m2", + }, + { + fileId = "140195", + text = "helm_monocle_b_02engi_gnf.m2", + value = "helm_monocle_b_02engi_gnf.m2", + }, + { + fileId = "140196", + text = "helm_monocle_b_02engi_gnm.m2", + value = "helm_monocle_b_02engi_gnm.m2", + }, + { + fileId = "140197", + text = "helm_monocle_b_02engi_gof.m2", + value = "helm_monocle_b_02engi_gof.m2", + }, + { + fileId = "140198", + text = "helm_monocle_b_02engi_gom.m2", + value = "helm_monocle_b_02engi_gom.m2", + }, + { + fileId = "140199", + text = "helm_monocle_b_02engi_huf.m2", + value = "helm_monocle_b_02engi_huf.m2", + }, + { + fileId = "140200", + text = "helm_monocle_b_02engi_hum.m2", + value = "helm_monocle_b_02engi_hum.m2", + }, + { + fileId = "140201", + text = "helm_monocle_b_02engi_nif.m2", + value = "helm_monocle_b_02engi_nif.m2", + }, + { + fileId = "140202", + text = "helm_monocle_b_02engi_nim.m2", + value = "helm_monocle_b_02engi_nim.m2", + }, + { + fileId = "140203", + text = "helm_monocle_b_02engi_orf.m2", + value = "helm_monocle_b_02engi_orf.m2", + }, + { + fileId = "140204", + text = "helm_monocle_b_02engi_orm.m2", + value = "helm_monocle_b_02engi_orm.m2", + }, + { + fileId = "140205", + text = "helm_monocle_b_02engi_scf.m2", + value = "helm_monocle_b_02engi_scf.m2", + }, + { + fileId = "140206", + text = "helm_monocle_b_02engi_scm.m2", + value = "helm_monocle_b_02engi_scm.m2", + }, + { + fileId = "140207", + text = "helm_monocle_b_02engi_taf.m2", + value = "helm_monocle_b_02engi_taf.m2", + }, + { + fileId = "140208", + text = "helm_monocle_b_02engi_tam.m2", + value = "helm_monocle_b_02engi_tam.m2", + }, + { + fileId = "140209", + text = "helm_monocle_b_02engi_trf.m2", + value = "helm_monocle_b_02engi_trf.m2", + }, + { + fileId = "140210", + text = "helm_monocle_b_02engi_trm.m2", + value = "helm_monocle_b_02engi_trm.m2", + }, + { + fileId = "140211", + text = "helm_monocle_c_01_bef.m2", + value = "helm_monocle_c_01_bef.m2", + }, + { + fileId = "140212", + text = "helm_monocle_c_01_bem.m2", + value = "helm_monocle_c_01_bem.m2", + }, + { + fileId = "140213", + text = "helm_monocle_c_01_drf.m2", + value = "helm_monocle_c_01_drf.m2", + }, + { + fileId = "140214", + text = "helm_monocle_c_01_drm.m2", + value = "helm_monocle_c_01_drm.m2", + }, + { + fileId = "140215", + text = "helm_monocle_c_01_dwf.m2", + value = "helm_monocle_c_01_dwf.m2", + }, + { + fileId = "140216", + text = "helm_monocle_c_01_dwm.m2", + value = "helm_monocle_c_01_dwm.m2", + }, + { + fileId = "140217", + text = "helm_monocle_c_01_gnf.m2", + value = "helm_monocle_c_01_gnf.m2", + }, + { + fileId = "140218", + text = "helm_monocle_c_01_gnm.m2", + value = "helm_monocle_c_01_gnm.m2", + }, + { + fileId = "140219", + text = "helm_monocle_c_01_gof.m2", + value = "helm_monocle_c_01_gof.m2", + }, + { + fileId = "140220", + text = "helm_monocle_c_01_gom.m2", + value = "helm_monocle_c_01_gom.m2", + }, + { + fileId = "140221", + text = "helm_monocle_c_01_huf.m2", + value = "helm_monocle_c_01_huf.m2", + }, + { + fileId = "140222", + text = "helm_monocle_c_01_hum.m2", + value = "helm_monocle_c_01_hum.m2", + }, + { + fileId = "140223", + text = "helm_monocle_c_01_nif.m2", + value = "helm_monocle_c_01_nif.m2", + }, + { + fileId = "140224", + text = "helm_monocle_c_01_nim.m2", + value = "helm_monocle_c_01_nim.m2", + }, + { + fileId = "140225", + text = "helm_monocle_c_01_orf.m2", + value = "helm_monocle_c_01_orf.m2", + }, + { + fileId = "140226", + text = "helm_monocle_c_01_orm.m2", + value = "helm_monocle_c_01_orm.m2", + }, + { + fileId = "140227", + text = "helm_monocle_c_01_scf.m2", + value = "helm_monocle_c_01_scf.m2", + }, + { + fileId = "140228", + text = "helm_monocle_c_01_scm.m2", + value = "helm_monocle_c_01_scm.m2", + }, + { + fileId = "140229", + text = "helm_monocle_c_01_taf.m2", + value = "helm_monocle_c_01_taf.m2", + }, + { + fileId = "140230", + text = "helm_monocle_c_01_tam.m2", + value = "helm_monocle_c_01_tam.m2", + }, + { + fileId = "140231", + text = "helm_monocle_c_01_trf.m2", + value = "helm_monocle_c_01_trf.m2", + }, + { + fileId = "140232", + text = "helm_monocle_c_01_trm.m2", + value = "helm_monocle_c_01_trm.m2", + }, + { + fileId = "140235", + text = "helm_plate_a_01crusader_bef.m2", + value = "helm_plate_a_01crusader_bef.m2", + }, + { + fileId = "140236", + text = "helm_plate_a_01crusader_bem.m2", + value = "helm_plate_a_01crusader_bem.m2", + }, + { + fileId = "140237", + text = "helm_plate_a_01crusader_drf.m2", + value = "helm_plate_a_01crusader_drf.m2", + }, + { + fileId = "140238", + text = "helm_plate_a_01crusader_drm.m2", + value = "helm_plate_a_01crusader_drm.m2", + }, + { + fileId = "140239", + text = "helm_plate_a_01crusader_dwf.m2", + value = "helm_plate_a_01crusader_dwf.m2", + }, + { + fileId = "140240", + text = "helm_plate_a_01crusader_dwm.m2", + value = "helm_plate_a_01crusader_dwm.m2", + }, + { + fileId = "140241", + text = "helm_plate_a_01crusader_gnf.m2", + value = "helm_plate_a_01crusader_gnf.m2", + }, + { + fileId = "140242", + text = "helm_plate_a_01crusader_gnm.m2", + value = "helm_plate_a_01crusader_gnm.m2", + }, + { + fileId = "140243", + text = "helm_plate_a_01crusader_gof.m2", + value = "helm_plate_a_01crusader_gof.m2", + }, + { + fileId = "140244", + text = "helm_plate_a_01crusader_gom.m2", + value = "helm_plate_a_01crusader_gom.m2", + }, + { + fileId = "140245", + text = "helm_plate_a_01crusader_huf.m2", + value = "helm_plate_a_01crusader_huf.m2", + }, + { + fileId = "140246", + text = "helm_plate_a_01crusader_hum.m2", + value = "helm_plate_a_01crusader_hum.m2", + }, + { + fileId = "140247", + text = "helm_plate_a_01crusader_nif.m2", + value = "helm_plate_a_01crusader_nif.m2", + }, + { + fileId = "140248", + text = "helm_plate_a_01crusader_nim.m2", + value = "helm_plate_a_01crusader_nim.m2", + }, + { + fileId = "140249", + text = "helm_plate_a_01crusader_orf.m2", + value = "helm_plate_a_01crusader_orf.m2", + }, + { + fileId = "140250", + text = "helm_plate_a_01crusader_orm.m2", + value = "helm_plate_a_01crusader_orm.m2", + }, + { + fileId = "140251", + text = "helm_plate_a_01crusader_scf.m2", + value = "helm_plate_a_01crusader_scf.m2", + }, + { + fileId = "140252", + text = "helm_plate_a_01crusader_scm.m2", + value = "helm_plate_a_01crusader_scm.m2", + }, + { + fileId = "140253", + text = "helm_plate_a_01crusader_taf.m2", + value = "helm_plate_a_01crusader_taf.m2", + }, + { + fileId = "140254", + text = "helm_plate_a_01crusader_tam.m2", + value = "helm_plate_a_01crusader_tam.m2", + }, + { + fileId = "140255", + text = "helm_plate_a_01crusader_trf.m2", + value = "helm_plate_a_01crusader_trf.m2", + }, + { + fileId = "140256", + text = "helm_plate_a_01crusader_trm.m2", + value = "helm_plate_a_01crusader_trm.m2", + }, + { + fileId = "140263", + text = "helm_plate_a_02ironforgeguard_bef.m2", + value = "helm_plate_a_02ironforgeguard_bef.m2", + }, + { + fileId = "140264", + text = "helm_plate_a_02ironforgeguard_bem.m2", + value = "helm_plate_a_02ironforgeguard_bem.m2", + }, + { + fileId = "140265", + text = "helm_plate_a_02ironforgeguard_drf.m2", + value = "helm_plate_a_02ironforgeguard_drf.m2", + }, + { + fileId = "140266", + text = "helm_plate_a_02ironforgeguard_drm.m2", + value = "helm_plate_a_02ironforgeguard_drm.m2", + }, + { + fileId = "140267", + text = "helm_plate_a_02ironforgeguard_dwf.m2", + value = "helm_plate_a_02ironforgeguard_dwf.m2", + }, + { + fileId = "140268", + text = "helm_plate_a_02ironforgeguard_dwm.m2", + value = "helm_plate_a_02ironforgeguard_dwm.m2", + }, + { + fileId = "140269", + text = "helm_plate_a_02ironforgeguard_gnf.m2", + value = "helm_plate_a_02ironforgeguard_gnf.m2", + }, + { + fileId = "140270", + text = "helm_plate_a_02ironforgeguard_gnm.m2", + value = "helm_plate_a_02ironforgeguard_gnm.m2", + }, + { + fileId = "140271", + text = "helm_plate_a_02ironforgeguard_gof.m2", + value = "helm_plate_a_02ironforgeguard_gof.m2", + }, + { + fileId = "140272", + text = "helm_plate_a_02ironforgeguard_huf.m2", + value = "helm_plate_a_02ironforgeguard_huf.m2", + }, + { + fileId = "140273", + text = "helm_plate_a_02ironforgeguard_hum.m2", + value = "helm_plate_a_02ironforgeguard_hum.m2", + }, + { + fileId = "140274", + text = "helm_plate_a_02ironforgeguard_nif.m2", + value = "helm_plate_a_02ironforgeguard_nif.m2", + }, + { + fileId = "140275", + text = "helm_plate_a_02ironforgeguard_nim.m2", + value = "helm_plate_a_02ironforgeguard_nim.m2", + }, + { + fileId = "140276", + text = "helm_plate_a_02ironforgeguard_orf.m2", + value = "helm_plate_a_02ironforgeguard_orf.m2", + }, + { + fileId = "140277", + text = "helm_plate_a_02ironforgeguard_orm.m2", + value = "helm_plate_a_02ironforgeguard_orm.m2", + }, + { + fileId = "140278", + text = "helm_plate_a_02ironforgeguard_scf.m2", + value = "helm_plate_a_02ironforgeguard_scf.m2", + }, + { + fileId = "140279", + text = "helm_plate_a_02ironforgeguard_scm.m2", + value = "helm_plate_a_02ironforgeguard_scm.m2", + }, + { + fileId = "140280", + text = "helm_plate_a_02ironforgeguard_taf.m2", + value = "helm_plate_a_02ironforgeguard_taf.m2", + }, + { + fileId = "140281", + text = "helm_plate_a_02ironforgeguard_tam.m2", + value = "helm_plate_a_02ironforgeguard_tam.m2", + }, + { + fileId = "140282", + text = "helm_plate_a_02ironforgeguard_trf.m2", + value = "helm_plate_a_02ironforgeguard_trf.m2", + }, + { + fileId = "140283", + text = "helm_plate_a_02ironforgeguard_trm.m2", + value = "helm_plate_a_02ironforgeguard_trm.m2", + }, + { + fileId = "140285", + text = "helm_plate_ahnqiraj_a_01_bef.m2", + value = "helm_plate_ahnqiraj_a_01_bef.m2", + }, + { + fileId = "140286", + text = "helm_plate_ahnqiraj_a_01_bem.m2", + value = "helm_plate_ahnqiraj_a_01_bem.m2", + }, + { + fileId = "140287", + text = "helm_plate_ahnqiraj_a_01_drf.m2", + value = "helm_plate_ahnqiraj_a_01_drf.m2", + }, + { + fileId = "140288", + text = "helm_plate_ahnqiraj_a_01_drm.m2", + value = "helm_plate_ahnqiraj_a_01_drm.m2", + }, + { + fileId = "140289", + text = "helm_plate_ahnqiraj_a_01_dwf.m2", + value = "helm_plate_ahnqiraj_a_01_dwf.m2", + }, + { + fileId = "140290", + text = "helm_plate_ahnqiraj_a_01_dwm.m2", + value = "helm_plate_ahnqiraj_a_01_dwm.m2", + }, + { + fileId = "140291", + text = "helm_plate_ahnqiraj_a_01_gnf.m2", + value = "helm_plate_ahnqiraj_a_01_gnf.m2", + }, + { + fileId = "140292", + text = "helm_plate_ahnqiraj_a_01_gnm.m2", + value = "helm_plate_ahnqiraj_a_01_gnm.m2", + }, + { + fileId = "140293", + text = "helm_plate_ahnqiraj_a_01_gof.m2", + value = "helm_plate_ahnqiraj_a_01_gof.m2", + }, + { + fileId = "140294", + text = "helm_plate_ahnqiraj_a_01_gom.m2", + value = "helm_plate_ahnqiraj_a_01_gom.m2", + }, + { + fileId = "140295", + text = "helm_plate_ahnqiraj_a_01_huf.m2", + value = "helm_plate_ahnqiraj_a_01_huf.m2", + }, + { + fileId = "140296", + text = "helm_plate_ahnqiraj_a_01_hum.m2", + value = "helm_plate_ahnqiraj_a_01_hum.m2", + }, + { + fileId = "140297", + text = "helm_plate_ahnqiraj_a_01_nif.m2", + value = "helm_plate_ahnqiraj_a_01_nif.m2", + }, + { + fileId = "140298", + text = "helm_plate_ahnqiraj_a_01_nim.m2", + value = "helm_plate_ahnqiraj_a_01_nim.m2", + }, + { + fileId = "140299", + text = "helm_plate_ahnqiraj_a_01_orf.m2", + value = "helm_plate_ahnqiraj_a_01_orf.m2", + }, + { + fileId = "140300", + text = "helm_plate_ahnqiraj_a_01_orm.m2", + value = "helm_plate_ahnqiraj_a_01_orm.m2", + }, + { + fileId = "140301", + text = "helm_plate_ahnqiraj_a_01_scf.m2", + value = "helm_plate_ahnqiraj_a_01_scf.m2", + }, + { + fileId = "140302", + text = "helm_plate_ahnqiraj_a_01_scm.m2", + value = "helm_plate_ahnqiraj_a_01_scm.m2", + }, + { + fileId = "140303", + text = "helm_plate_ahnqiraj_a_01_taf.m2", + value = "helm_plate_ahnqiraj_a_01_taf.m2", + }, + { + fileId = "140304", + text = "helm_plate_ahnqiraj_a_01_tam.m2", + value = "helm_plate_ahnqiraj_a_01_tam.m2", + }, + { + fileId = "140305", + text = "helm_plate_ahnqiraj_a_01_trf.m2", + value = "helm_plate_ahnqiraj_a_01_trf.m2", + }, + { + fileId = "140306", + text = "helm_plate_ahnqiraj_a_01_trm.m2", + value = "helm_plate_ahnqiraj_a_01_trm.m2", + }, + { + fileId = "311722", + text = "helm_plate_argentalliance_d_01_bef.m2", + value = "helm_plate_argentalliance_d_01_bef.m2", + }, + { + fileId = "311723", + text = "helm_plate_argentalliance_d_01_bem.m2", + value = "helm_plate_argentalliance_d_01_bem.m2", + }, + { + fileId = "311724", + text = "helm_plate_argentalliance_d_01_drf.m2", + value = "helm_plate_argentalliance_d_01_drf.m2", + }, + { + fileId = "311725", + text = "helm_plate_argentalliance_d_01_drm.m2", + value = "helm_plate_argentalliance_d_01_drm.m2", + }, + { + fileId = "311726", + text = "helm_plate_argentalliance_d_01_dwf.m2", + value = "helm_plate_argentalliance_d_01_dwf.m2", + }, + { + fileId = "311727", + text = "helm_plate_argentalliance_d_01_dwm.m2", + value = "helm_plate_argentalliance_d_01_dwm.m2", + }, + { + fileId = "311728", + text = "helm_plate_argentalliance_d_01_gnf.m2", + value = "helm_plate_argentalliance_d_01_gnf.m2", + }, + { + fileId = "311729", + text = "helm_plate_argentalliance_d_01_gnm.m2", + value = "helm_plate_argentalliance_d_01_gnm.m2", + }, + { + fileId = "311730", + text = "helm_plate_argentalliance_d_01_gof.m2", + value = "helm_plate_argentalliance_d_01_gof.m2", + }, + { + fileId = "311731", + text = "helm_plate_argentalliance_d_01_gom.m2", + value = "helm_plate_argentalliance_d_01_gom.m2", + }, + { + fileId = "311732", + text = "helm_plate_argentalliance_d_01_huf.m2", + value = "helm_plate_argentalliance_d_01_huf.m2", + }, + { + fileId = "311733", + text = "helm_plate_argentalliance_d_01_hum.m2", + value = "helm_plate_argentalliance_d_01_hum.m2", + }, + { + fileId = "311734", + text = "helm_plate_argentalliance_d_01_nif.m2", + value = "helm_plate_argentalliance_d_01_nif.m2", + }, + { + fileId = "311735", + text = "helm_plate_argentalliance_d_01_nim.m2", + value = "helm_plate_argentalliance_d_01_nim.m2", + }, + { + fileId = "311736", + text = "helm_plate_argentalliance_d_01_orf.m2", + value = "helm_plate_argentalliance_d_01_orf.m2", + }, + { + fileId = "311737", + text = "helm_plate_argentalliance_d_01_orm.m2", + value = "helm_plate_argentalliance_d_01_orm.m2", + }, + { + fileId = "311738", + text = "helm_plate_argentalliance_d_01_scf.m2", + value = "helm_plate_argentalliance_d_01_scf.m2", + }, + { + fileId = "311739", + text = "helm_plate_argentalliance_d_01_scm.m2", + value = "helm_plate_argentalliance_d_01_scm.m2", + }, + { + fileId = "311748", + text = "helm_plate_argentalliance_d_01_taf.m2", + value = "helm_plate_argentalliance_d_01_taf.m2", + }, + { + fileId = "311749", + text = "helm_plate_argentalliance_d_01_tam.m2", + value = "helm_plate_argentalliance_d_01_tam.m2", + }, + { + fileId = "311750", + text = "helm_plate_argentalliance_d_01_trf.m2", + value = "helm_plate_argentalliance_d_01_trf.m2", + }, + { + fileId = "311751", + text = "helm_plate_argentalliance_d_01_trm.m2", + value = "helm_plate_argentalliance_d_01_trm.m2", + }, + { + fileId = "315669", + text = "helm_plate_argenthorde_d_01_bef.m2", + value = "helm_plate_argenthorde_d_01_bef.m2", + }, + { + fileId = "315670", + text = "helm_plate_argenthorde_d_01_bem.m2", + value = "helm_plate_argenthorde_d_01_bem.m2", + }, + { + fileId = "315671", + text = "helm_plate_argenthorde_d_01_drf.m2", + value = "helm_plate_argenthorde_d_01_drf.m2", + }, + { + fileId = "315672", + text = "helm_plate_argenthorde_d_01_drm.m2", + value = "helm_plate_argenthorde_d_01_drm.m2", + }, + { + fileId = "315673", + text = "helm_plate_argenthorde_d_01_dwf.m2", + value = "helm_plate_argenthorde_d_01_dwf.m2", + }, + { + fileId = "315674", + text = "helm_plate_argenthorde_d_01_dwm.m2", + value = "helm_plate_argenthorde_d_01_dwm.m2", + }, + { + fileId = "315675", + text = "helm_plate_argenthorde_d_01_gnf.m2", + value = "helm_plate_argenthorde_d_01_gnf.m2", + }, + { + fileId = "315676", + text = "helm_plate_argenthorde_d_01_gnm.m2", + value = "helm_plate_argenthorde_d_01_gnm.m2", + }, + { + fileId = "315677", + text = "helm_plate_argenthorde_d_01_gof.m2", + value = "helm_plate_argenthorde_d_01_gof.m2", + }, + { + fileId = "315678", + text = "helm_plate_argenthorde_d_01_gom.m2", + value = "helm_plate_argenthorde_d_01_gom.m2", + }, + { + fileId = "315679", + text = "helm_plate_argenthorde_d_01_huf.m2", + value = "helm_plate_argenthorde_d_01_huf.m2", + }, + { + fileId = "315680", + text = "helm_plate_argenthorde_d_01_hum.m2", + value = "helm_plate_argenthorde_d_01_hum.m2", + }, + { + fileId = "315681", + text = "helm_plate_argenthorde_d_01_nif.m2", + value = "helm_plate_argenthorde_d_01_nif.m2", + }, + { + fileId = "315682", + text = "helm_plate_argenthorde_d_01_nim.m2", + value = "helm_plate_argenthorde_d_01_nim.m2", + }, + { + fileId = "315683", + text = "helm_plate_argenthorde_d_01_orf.m2", + value = "helm_plate_argenthorde_d_01_orf.m2", + }, + { + fileId = "315684", + text = "helm_plate_argenthorde_d_01_orm.m2", + value = "helm_plate_argenthorde_d_01_orm.m2", + }, + { + fileId = "315685", + text = "helm_plate_argenthorde_d_01_scf.m2", + value = "helm_plate_argenthorde_d_01_scf.m2", + }, + { + fileId = "315686", + text = "helm_plate_argenthorde_d_01_scm.m2", + value = "helm_plate_argenthorde_d_01_scm.m2", + }, + { + fileId = "315687", + text = "helm_plate_argenthorde_d_01_taf.m2", + value = "helm_plate_argenthorde_d_01_taf.m2", + }, + { + fileId = "315688", + text = "helm_plate_argenthorde_d_01_tam.m2", + value = "helm_plate_argenthorde_d_01_tam.m2", + }, + { + fileId = "315689", + text = "helm_plate_argenthorde_d_01_trf.m2", + value = "helm_plate_argenthorde_d_01_trf.m2", + }, + { + fileId = "315690", + text = "helm_plate_argenthorde_d_01_trm.m2", + value = "helm_plate_argenthorde_d_01_trm.m2", + }, + { + fileId = "140315", + text = "helm_plate_b_01stormwind_bef.m2", + value = "helm_plate_b_01stormwind_bef.m2", + }, + { + fileId = "140316", + text = "helm_plate_b_01stormwind_bem.m2", + value = "helm_plate_b_01stormwind_bem.m2", + }, + { + fileId = "140317", + text = "helm_plate_b_01stormwind_drf.m2", + value = "helm_plate_b_01stormwind_drf.m2", + }, + { + fileId = "140318", + text = "helm_plate_b_01stormwind_drm.m2", + value = "helm_plate_b_01stormwind_drm.m2", + }, + { + fileId = "140319", + text = "helm_plate_b_01stormwind_dwf.m2", + value = "helm_plate_b_01stormwind_dwf.m2", + }, + { + fileId = "140320", + text = "helm_plate_b_01stormwind_dwm.m2", + value = "helm_plate_b_01stormwind_dwm.m2", + }, + { + fileId = "140321", + text = "helm_plate_b_01stormwind_gnf.m2", + value = "helm_plate_b_01stormwind_gnf.m2", + }, + { + fileId = "140322", + text = "helm_plate_b_01stormwind_gnm.m2", + value = "helm_plate_b_01stormwind_gnm.m2", + }, + { + fileId = "140323", + text = "helm_plate_b_01stormwind_gof.m2", + value = "helm_plate_b_01stormwind_gof.m2", + }, + { + fileId = "140324", + text = "helm_plate_b_01stormwind_gom.m2", + value = "helm_plate_b_01stormwind_gom.m2", + }, + { + fileId = "140325", + text = "helm_plate_b_01stormwind_huf.m2", + value = "helm_plate_b_01stormwind_huf.m2", + }, + { + fileId = "140326", + text = "helm_plate_b_01stormwind_hum.m2", + value = "helm_plate_b_01stormwind_hum.m2", + }, + { + fileId = "140327", + text = "helm_plate_b_01stormwind_nif.m2", + value = "helm_plate_b_01stormwind_nif.m2", + }, + { + fileId = "140328", + text = "helm_plate_b_01stormwind_nim.m2", + value = "helm_plate_b_01stormwind_nim.m2", + }, + { + fileId = "140329", + text = "helm_plate_b_01stormwind_orf.m2", + value = "helm_plate_b_01stormwind_orf.m2", + }, + { + fileId = "140330", + text = "helm_plate_b_01stormwind_orm.m2", + value = "helm_plate_b_01stormwind_orm.m2", + }, + { + fileId = "140331", + text = "helm_plate_b_01stormwind_scf.m2", + value = "helm_plate_b_01stormwind_scf.m2", + }, + { + fileId = "140332", + text = "helm_plate_b_01stormwind_scm.m2", + value = "helm_plate_b_01stormwind_scm.m2", + }, + { + fileId = "140333", + text = "helm_plate_b_01stormwind_taf.m2", + value = "helm_plate_b_01stormwind_taf.m2", + }, + { + fileId = "140334", + text = "helm_plate_b_01stormwind_tam.m2", + value = "helm_plate_b_01stormwind_tam.m2", + }, + { + fileId = "140335", + text = "helm_plate_b_01stormwind_trf.m2", + value = "helm_plate_b_01stormwind_trf.m2", + }, + { + fileId = "140336", + text = "helm_plate_b_01stormwind_trm.m2", + value = "helm_plate_b_01stormwind_trm.m2", + }, + { + fileId = "140340", + text = "helm_plate_b_03sentinel_bef.m2", + value = "helm_plate_b_03sentinel_bef.m2", + }, + { + fileId = "140341", + text = "helm_plate_b_03sentinel_bem.m2", + value = "helm_plate_b_03sentinel_bem.m2", + }, + { + fileId = "140342", + text = "helm_plate_b_03sentinel_drf.m2", + value = "helm_plate_b_03sentinel_drf.m2", + }, + { + fileId = "140343", + text = "helm_plate_b_03sentinel_drm.m2", + value = "helm_plate_b_03sentinel_drm.m2", + }, + { + fileId = "140344", + text = "helm_plate_b_03sentinel_dwf.m2", + value = "helm_plate_b_03sentinel_dwf.m2", + }, + { + fileId = "140345", + text = "helm_plate_b_03sentinel_dwm.m2", + value = "helm_plate_b_03sentinel_dwm.m2", + }, + { + fileId = "140346", + text = "helm_plate_b_03sentinel_gnf.m2", + value = "helm_plate_b_03sentinel_gnf.m2", + }, + { + fileId = "140347", + text = "helm_plate_b_03sentinel_gnm.m2", + value = "helm_plate_b_03sentinel_gnm.m2", + }, + { + fileId = "140348", + text = "helm_plate_b_03sentinel_gof.m2", + value = "helm_plate_b_03sentinel_gof.m2", + }, + { + fileId = "140349", + text = "helm_plate_b_03sentinel_gom.m2", + value = "helm_plate_b_03sentinel_gom.m2", + }, + { + fileId = "140350", + text = "helm_plate_b_03sentinel_huf.m2", + value = "helm_plate_b_03sentinel_huf.m2", + }, + { + fileId = "140351", + text = "helm_plate_b_03sentinel_hum.m2", + value = "helm_plate_b_03sentinel_hum.m2", + }, + { + fileId = "140352", + text = "helm_plate_b_03sentinel_nif.m2", + value = "helm_plate_b_03sentinel_nif.m2", + }, + { + fileId = "140353", + text = "helm_plate_b_03sentinel_nim.m2", + value = "helm_plate_b_03sentinel_nim.m2", + }, + { + fileId = "140354", + text = "helm_plate_b_03sentinel_orf.m2", + value = "helm_plate_b_03sentinel_orf.m2", + }, + { + fileId = "140355", + text = "helm_plate_b_03sentinel_orm.m2", + value = "helm_plate_b_03sentinel_orm.m2", + }, + { + fileId = "140356", + text = "helm_plate_b_03sentinel_scf.m2", + value = "helm_plate_b_03sentinel_scf.m2", + }, + { + fileId = "140357", + text = "helm_plate_b_03sentinel_scm.m2", + value = "helm_plate_b_03sentinel_scm.m2", + }, + { + fileId = "140358", + text = "helm_plate_b_03sentinel_taf.m2", + value = "helm_plate_b_03sentinel_taf.m2", + }, + { + fileId = "140359", + text = "helm_plate_b_03sentinel_tam.m2", + value = "helm_plate_b_03sentinel_tam.m2", + }, + { + fileId = "140360", + text = "helm_plate_b_03sentinel_trf.m2", + value = "helm_plate_b_03sentinel_trf.m2", + }, + { + fileId = "140361", + text = "helm_plate_b_03sentinel_trm.m2", + value = "helm_plate_b_03sentinel_trm.m2", + }, + { + fileId = "140362", + text = "helm_plate_b_04_bef.m2", + value = "helm_plate_b_04_bef.m2", + }, + { + fileId = "140363", + text = "helm_plate_b_04_bem.m2", + value = "helm_plate_b_04_bem.m2", + }, + { + fileId = "140364", + text = "helm_plate_b_04_drf.m2", + value = "helm_plate_b_04_drf.m2", + }, + { + fileId = "140365", + text = "helm_plate_b_04_drm.m2", + value = "helm_plate_b_04_drm.m2", + }, + { + fileId = "140366", + text = "helm_plate_b_04_dwf.m2", + value = "helm_plate_b_04_dwf.m2", + }, + { + fileId = "140367", + text = "helm_plate_b_04_dwm.m2", + value = "helm_plate_b_04_dwm.m2", + }, + { + fileId = "140368", + text = "helm_plate_b_04_gnf.m2", + value = "helm_plate_b_04_gnf.m2", + }, + { + fileId = "140369", + text = "helm_plate_b_04_gnm.m2", + value = "helm_plate_b_04_gnm.m2", + }, + { + fileId = "140370", + text = "helm_plate_b_04_gof.m2", + value = "helm_plate_b_04_gof.m2", + }, + { + fileId = "140371", + text = "helm_plate_b_04_gom.m2", + value = "helm_plate_b_04_gom.m2", + }, + { + fileId = "140372", + text = "helm_plate_b_04_huf.m2", + value = "helm_plate_b_04_huf.m2", + }, + { + fileId = "140373", + text = "helm_plate_b_04_hum.m2", + value = "helm_plate_b_04_hum.m2", + }, + { + fileId = "140374", + text = "helm_plate_b_04_nif.m2", + value = "helm_plate_b_04_nif.m2", + }, + { + fileId = "140375", + text = "helm_plate_b_04_nim.m2", + value = "helm_plate_b_04_nim.m2", + }, + { + fileId = "140376", + text = "helm_plate_b_04_orf.m2", + value = "helm_plate_b_04_orf.m2", + }, + { + fileId = "140377", + text = "helm_plate_b_04_orm.m2", + value = "helm_plate_b_04_orm.m2", + }, + { + fileId = "140378", + text = "helm_plate_b_04_scf.m2", + value = "helm_plate_b_04_scf.m2", + }, + { + fileId = "140379", + text = "helm_plate_b_04_scm.m2", + value = "helm_plate_b_04_scm.m2", + }, + { + fileId = "140380", + text = "helm_plate_b_04_taf.m2", + value = "helm_plate_b_04_taf.m2", + }, + { + fileId = "140381", + text = "helm_plate_b_04_tam.m2", + value = "helm_plate_b_04_tam.m2", + }, + { + fileId = "140382", + text = "helm_plate_b_04_trf.m2", + value = "helm_plate_b_04_trf.m2", + }, + { + fileId = "140383", + text = "helm_plate_b_04_trm.m2", + value = "helm_plate_b_04_trm.m2", + }, + { + fileId = "140387", + text = "helm_plate_bloodknight_d_02_bef.m2", + value = "helm_plate_bloodknight_d_02_bef.m2", + }, + { + fileId = "140388", + text = "helm_plate_bloodknight_d_02_bem.m2", + value = "helm_plate_bloodknight_d_02_bem.m2", + }, + { + fileId = "140389", + text = "helm_plate_bloodknight_d_02_drf.m2", + value = "helm_plate_bloodknight_d_02_drf.m2", + }, + { + fileId = "140390", + text = "helm_plate_bloodknight_d_02_drm.m2", + value = "helm_plate_bloodknight_d_02_drm.m2", + }, + { + fileId = "140391", + text = "helm_plate_bloodknight_d_02_dwf.m2", + value = "helm_plate_bloodknight_d_02_dwf.m2", + }, + { + fileId = "140392", + text = "helm_plate_bloodknight_d_02_dwm.m2", + value = "helm_plate_bloodknight_d_02_dwm.m2", + }, + { + fileId = "140393", + text = "helm_plate_bloodknight_d_02_gnf.m2", + value = "helm_plate_bloodknight_d_02_gnf.m2", + }, + { + fileId = "140394", + text = "helm_plate_bloodknight_d_02_gnm.m2", + value = "helm_plate_bloodknight_d_02_gnm.m2", + }, + { + fileId = "140395", + text = "helm_plate_bloodknight_d_02_gof.m2", + value = "helm_plate_bloodknight_d_02_gof.m2", + }, + { + fileId = "140396", + text = "helm_plate_bloodknight_d_02_gom.m2", + value = "helm_plate_bloodknight_d_02_gom.m2", + }, + { + fileId = "140397", + text = "helm_plate_bloodknight_d_02_huf.m2", + value = "helm_plate_bloodknight_d_02_huf.m2", + }, + { + fileId = "140398", + text = "helm_plate_bloodknight_d_02_hum.m2", + value = "helm_plate_bloodknight_d_02_hum.m2", + }, + { + fileId = "140399", + text = "helm_plate_bloodknight_d_02_nif.m2", + value = "helm_plate_bloodknight_d_02_nif.m2", + }, + { + fileId = "140400", + text = "helm_plate_bloodknight_d_02_nim.m2", + value = "helm_plate_bloodknight_d_02_nim.m2", + }, + { + fileId = "140401", + text = "helm_plate_bloodknight_d_02_orf.m2", + value = "helm_plate_bloodknight_d_02_orf.m2", + }, + { + fileId = "140402", + text = "helm_plate_bloodknight_d_02_orm.m2", + value = "helm_plate_bloodknight_d_02_orm.m2", + }, + { + fileId = "140403", + text = "helm_plate_bloodknight_d_02_scf.m2", + value = "helm_plate_bloodknight_d_02_scf.m2", + }, + { + fileId = "140404", + text = "helm_plate_bloodknight_d_02_scm.m2", + value = "helm_plate_bloodknight_d_02_scm.m2", + }, + { + fileId = "140405", + text = "helm_plate_bloodknight_d_02_taf.m2", + value = "helm_plate_bloodknight_d_02_taf.m2", + }, + { + fileId = "140406", + text = "helm_plate_bloodknight_d_02_tam.m2", + value = "helm_plate_bloodknight_d_02_tam.m2", + }, + { + fileId = "140407", + text = "helm_plate_bloodknight_d_02_trf.m2", + value = "helm_plate_bloodknight_d_02_trf.m2", + }, + { + fileId = "140408", + text = "helm_plate_bloodknight_d_02_trm.m2", + value = "helm_plate_bloodknight_d_02_trm.m2", + }, + { + fileId = "140409", + text = "helm_plate_d_01_bef.m2", + value = "helm_plate_d_01_bef.m2", + }, + { + fileId = "140410", + text = "helm_plate_d_01_bem.m2", + value = "helm_plate_d_01_bem.m2", + }, + { + fileId = "140411", + text = "helm_plate_d_01_drf.m2", + value = "helm_plate_d_01_drf.m2", + }, + { + fileId = "140412", + text = "helm_plate_d_01_drm.m2", + value = "helm_plate_d_01_drm.m2", + }, + { + fileId = "140413", + text = "helm_plate_d_01_dwf.m2", + value = "helm_plate_d_01_dwf.m2", + }, + { + fileId = "140414", + text = "helm_plate_d_01_dwm.m2", + value = "helm_plate_d_01_dwm.m2", + }, + { + fileId = "140415", + text = "helm_plate_d_01_gnf.m2", + value = "helm_plate_d_01_gnf.m2", + }, + { + fileId = "140416", + text = "helm_plate_d_01_gnm.m2", + value = "helm_plate_d_01_gnm.m2", + }, + { + fileId = "140417", + text = "helm_plate_d_01_gof.m2", + value = "helm_plate_d_01_gof.m2", + }, + { + fileId = "140418", + text = "helm_plate_d_01_gom.m2", + value = "helm_plate_d_01_gom.m2", + }, + { + fileId = "140419", + text = "helm_plate_d_01_huf.m2", + value = "helm_plate_d_01_huf.m2", + }, + { + fileId = "140420", + text = "helm_plate_d_01_hum.m2", + value = "helm_plate_d_01_hum.m2", + }, + { + fileId = "140421", + text = "helm_plate_d_01_nif.m2", + value = "helm_plate_d_01_nif.m2", + }, + { + fileId = "140422", + text = "helm_plate_d_01_nim.m2", + value = "helm_plate_d_01_nim.m2", + }, + { + fileId = "140423", + text = "helm_plate_d_01_orf.m2", + value = "helm_plate_d_01_orf.m2", + }, + { + fileId = "140424", + text = "helm_plate_d_01_orm.m2", + value = "helm_plate_d_01_orm.m2", + }, + { + fileId = "140425", + text = "helm_plate_d_01_scf.m2", + value = "helm_plate_d_01_scf.m2", + }, + { + fileId = "140426", + text = "helm_plate_d_01_scm.m2", + value = "helm_plate_d_01_scm.m2", + }, + { + fileId = "140427", + text = "helm_plate_d_01_taf.m2", + value = "helm_plate_d_01_taf.m2", + }, + { + fileId = "140428", + text = "helm_plate_d_01_tam.m2", + value = "helm_plate_d_01_tam.m2", + }, + { + fileId = "140429", + text = "helm_plate_d_01_trf.m2", + value = "helm_plate_d_01_trf.m2", + }, + { + fileId = "140430", + text = "helm_plate_d_01_trm.m2", + value = "helm_plate_d_01_trm.m2", + }, + { + fileId = "140432", + text = "helm_plate_d_02_bef.m2", + value = "helm_plate_d_02_bef.m2", + }, + { + fileId = "140433", + text = "helm_plate_d_02_bem.m2", + value = "helm_plate_d_02_bem.m2", + }, + { + fileId = "140434", + text = "helm_plate_d_02_drf.m2", + value = "helm_plate_d_02_drf.m2", + }, + { + fileId = "140435", + text = "helm_plate_d_02_drm.m2", + value = "helm_plate_d_02_drm.m2", + }, + { + fileId = "140436", + text = "helm_plate_d_02_dwf.m2", + value = "helm_plate_d_02_dwf.m2", + }, + { + fileId = "140437", + text = "helm_plate_d_02_dwm.m2", + value = "helm_plate_d_02_dwm.m2", + }, + { + fileId = "140438", + text = "helm_plate_d_02_gnf.m2", + value = "helm_plate_d_02_gnf.m2", + }, + { + fileId = "140439", + text = "helm_plate_d_02_gnm.m2", + value = "helm_plate_d_02_gnm.m2", + }, + { + fileId = "140440", + text = "helm_plate_d_02_gof.m2", + value = "helm_plate_d_02_gof.m2", + }, + { + fileId = "140441", + text = "helm_plate_d_02_gom.m2", + value = "helm_plate_d_02_gom.m2", + }, + { + fileId = "140442", + text = "helm_plate_d_02_huf.m2", + value = "helm_plate_d_02_huf.m2", + }, + { + fileId = "140443", + text = "helm_plate_d_02_hum.m2", + value = "helm_plate_d_02_hum.m2", + }, + { + fileId = "140444", + text = "helm_plate_d_02_nif.m2", + value = "helm_plate_d_02_nif.m2", + }, + { + fileId = "140445", + text = "helm_plate_d_02_nim.m2", + value = "helm_plate_d_02_nim.m2", + }, + { + fileId = "140446", + text = "helm_plate_d_02_orf.m2", + value = "helm_plate_d_02_orf.m2", + }, + { + fileId = "140447", + text = "helm_plate_d_02_orm.m2", + value = "helm_plate_d_02_orm.m2", + }, + { + fileId = "140448", + text = "helm_plate_d_02_scf.m2", + value = "helm_plate_d_02_scf.m2", + }, + { + fileId = "140449", + text = "helm_plate_d_02_scm.m2", + value = "helm_plate_d_02_scm.m2", + }, + { + fileId = "140450", + text = "helm_plate_d_02_taf.m2", + value = "helm_plate_d_02_taf.m2", + }, + { + fileId = "140451", + text = "helm_plate_d_02_tam.m2", + value = "helm_plate_d_02_tam.m2", + }, + { + fileId = "140452", + text = "helm_plate_d_02_trf.m2", + value = "helm_plate_d_02_trf.m2", + }, + { + fileId = "140453", + text = "helm_plate_d_02_trm.m2", + value = "helm_plate_d_02_trm.m2", + }, + { + fileId = "140456", + text = "helm_plate_d_03_bef.m2", + value = "helm_plate_d_03_bef.m2", + }, + { + fileId = "140457", + text = "helm_plate_d_03_bem.m2", + value = "helm_plate_d_03_bem.m2", + }, + { + fileId = "140458", + text = "helm_plate_d_03_drf.m2", + value = "helm_plate_d_03_drf.m2", + }, + { + fileId = "140459", + text = "helm_plate_d_03_drm.m2", + value = "helm_plate_d_03_drm.m2", + }, + { + fileId = "140460", + text = "helm_plate_d_03_dwf.m2", + value = "helm_plate_d_03_dwf.m2", + }, + { + fileId = "140461", + text = "helm_plate_d_03_dwm.m2", + value = "helm_plate_d_03_dwm.m2", + }, + { + fileId = "140462", + text = "helm_plate_d_03_gnf.m2", + value = "helm_plate_d_03_gnf.m2", + }, + { + fileId = "140463", + text = "helm_plate_d_03_gnm.m2", + value = "helm_plate_d_03_gnm.m2", + }, + { + fileId = "140464", + text = "helm_plate_d_03_gof.m2", + value = "helm_plate_d_03_gof.m2", + }, + { + fileId = "140465", + text = "helm_plate_d_03_gom.m2", + value = "helm_plate_d_03_gom.m2", + }, + { + fileId = "140466", + text = "helm_plate_d_03_huf.m2", + value = "helm_plate_d_03_huf.m2", + }, + { + fileId = "140467", + text = "helm_plate_d_03_hum.m2", + value = "helm_plate_d_03_hum.m2", + }, + { + fileId = "140468", + text = "helm_plate_d_03_nif.m2", + value = "helm_plate_d_03_nif.m2", + }, + { + fileId = "140469", + text = "helm_plate_d_03_nim.m2", + value = "helm_plate_d_03_nim.m2", + }, + { + fileId = "140470", + text = "helm_plate_d_03_orf.m2", + value = "helm_plate_d_03_orf.m2", + }, + { + fileId = "140471", + text = "helm_plate_d_03_orm.m2", + value = "helm_plate_d_03_orm.m2", + }, + { + fileId = "140472", + text = "helm_plate_d_03_scf.m2", + value = "helm_plate_d_03_scf.m2", + }, + { + fileId = "140473", + text = "helm_plate_d_03_scm.m2", + value = "helm_plate_d_03_scm.m2", + }, + { + fileId = "140474", + text = "helm_plate_d_03_taf.m2", + value = "helm_plate_d_03_taf.m2", + }, + { + fileId = "140475", + text = "helm_plate_d_03_tam.m2", + value = "helm_plate_d_03_tam.m2", + }, + { + fileId = "140476", + text = "helm_plate_d_03_trf.m2", + value = "helm_plate_d_03_trf.m2", + }, + { + fileId = "140477", + text = "helm_plate_d_03_trm.m2", + value = "helm_plate_d_03_trm.m2", + }, + { + fileId = "140493", + text = "helm_plate_d_04_bef.m2", + value = "helm_plate_d_04_bef.m2", + }, + { + fileId = "140494", + text = "helm_plate_d_04_bem.m2", + value = "helm_plate_d_04_bem.m2", + }, + { + fileId = "140495", + text = "helm_plate_d_04_drf.m2", + value = "helm_plate_d_04_drf.m2", + }, + { + fileId = "140496", + text = "helm_plate_d_04_drm.m2", + value = "helm_plate_d_04_drm.m2", + }, + { + fileId = "140497", + text = "helm_plate_d_04_dwf.m2", + value = "helm_plate_d_04_dwf.m2", + }, + { + fileId = "140498", + text = "helm_plate_d_04_dwm.m2", + value = "helm_plate_d_04_dwm.m2", + }, + { + fileId = "140499", + text = "helm_plate_d_04_gnf.m2", + value = "helm_plate_d_04_gnf.m2", + }, + { + fileId = "140500", + text = "helm_plate_d_04_gnm.m2", + value = "helm_plate_d_04_gnm.m2", + }, + { + fileId = "140501", + text = "helm_plate_d_04_gof.m2", + value = "helm_plate_d_04_gof.m2", + }, + { + fileId = "140502", + text = "helm_plate_d_04_gom.m2", + value = "helm_plate_d_04_gom.m2", + }, + { + fileId = "140503", + text = "helm_plate_d_04_huf.m2", + value = "helm_plate_d_04_huf.m2", + }, + { + fileId = "140504", + text = "helm_plate_d_04_hum.m2", + value = "helm_plate_d_04_hum.m2", + }, + { + fileId = "140505", + text = "helm_plate_d_04_nif.m2", + value = "helm_plate_d_04_nif.m2", + }, + { + fileId = "140506", + text = "helm_plate_d_04_nim.m2", + value = "helm_plate_d_04_nim.m2", + }, + { + fileId = "140507", + text = "helm_plate_d_04_orf.m2", + value = "helm_plate_d_04_orf.m2", + }, + { + fileId = "140508", + text = "helm_plate_d_04_orm.m2", + value = "helm_plate_d_04_orm.m2", + }, + { + fileId = "140509", + text = "helm_plate_d_04_scf.m2", + value = "helm_plate_d_04_scf.m2", + }, + { + fileId = "140510", + text = "helm_plate_d_04_scm.m2", + value = "helm_plate_d_04_scm.m2", + }, + { + fileId = "140511", + text = "helm_plate_d_04_taf.m2", + value = "helm_plate_d_04_taf.m2", + }, + { + fileId = "140512", + text = "helm_plate_d_04_tam.m2", + value = "helm_plate_d_04_tam.m2", + }, + { + fileId = "140513", + text = "helm_plate_d_04_trf.m2", + value = "helm_plate_d_04_trf.m2", + }, + { + fileId = "140514", + text = "helm_plate_d_04_trm.m2", + value = "helm_plate_d_04_trm.m2", + }, + { + fileId = "238060", + text = "helm_plate_deathknight_b_01_bef.m2", + value = "helm_plate_deathknight_b_01_bef.m2", + }, + { + fileId = "238061", + text = "helm_plate_deathknight_b_01_bem.m2", + value = "helm_plate_deathknight_b_01_bem.m2", + }, + { + fileId = "238062", + text = "helm_plate_deathknight_b_01_drf.m2", + value = "helm_plate_deathknight_b_01_drf.m2", + }, + { + fileId = "238063", + text = "helm_plate_deathknight_b_01_drm.m2", + value = "helm_plate_deathknight_b_01_drm.m2", + }, + { + fileId = "238064", + text = "helm_plate_deathknight_b_01_dwf.m2", + value = "helm_plate_deathknight_b_01_dwf.m2", + }, + { + fileId = "238065", + text = "helm_plate_deathknight_b_01_dwm.m2", + value = "helm_plate_deathknight_b_01_dwm.m2", + }, + { + fileId = "238066", + text = "helm_plate_deathknight_b_01_gnf.m2", + value = "helm_plate_deathknight_b_01_gnf.m2", + }, + { + fileId = "238067", + text = "helm_plate_deathknight_b_01_gnm.m2", + value = "helm_plate_deathknight_b_01_gnm.m2", + }, + { + fileId = "238068", + text = "helm_plate_deathknight_b_01_gof.m2", + value = "helm_plate_deathknight_b_01_gof.m2", + }, + { + fileId = "238069", + text = "helm_plate_deathknight_b_01_gom.m2", + value = "helm_plate_deathknight_b_01_gom.m2", + }, + { + fileId = "238070", + text = "helm_plate_deathknight_b_01_huf.m2", + value = "helm_plate_deathknight_b_01_huf.m2", + }, + { + fileId = "238071", + text = "helm_plate_deathknight_b_01_hum.m2", + value = "helm_plate_deathknight_b_01_hum.m2", + }, + { + fileId = "238072", + text = "helm_plate_deathknight_b_01_nif.m2", + value = "helm_plate_deathknight_b_01_nif.m2", + }, + { + fileId = "238073", + text = "helm_plate_deathknight_b_01_nim.m2", + value = "helm_plate_deathknight_b_01_nim.m2", + }, + { + fileId = "238074", + text = "helm_plate_deathknight_b_01_orf.m2", + value = "helm_plate_deathknight_b_01_orf.m2", + }, + { + fileId = "238075", + text = "helm_plate_deathknight_b_01_orm.m2", + value = "helm_plate_deathknight_b_01_orm.m2", + }, + { + fileId = "238076", + text = "helm_plate_deathknight_b_01_scf.m2", + value = "helm_plate_deathknight_b_01_scf.m2", + }, + { + fileId = "238077", + text = "helm_plate_deathknight_b_01_scm.m2", + value = "helm_plate_deathknight_b_01_scm.m2", + }, + { + fileId = "238078", + text = "helm_plate_deathknight_b_01_taf.m2", + value = "helm_plate_deathknight_b_01_taf.m2", + }, + { + fileId = "238079", + text = "helm_plate_deathknight_b_01_tam.m2", + value = "helm_plate_deathknight_b_01_tam.m2", + }, + { + fileId = "238080", + text = "helm_plate_deathknight_b_01_trf.m2", + value = "helm_plate_deathknight_b_01_trf.m2", + }, + { + fileId = "238081", + text = "helm_plate_deathknight_b_01_trm.m2", + value = "helm_plate_deathknight_b_01_trm.m2", + }, + { + fileId = "140535", + text = "helm_plate_dungeonpaladin_a_01_bef.m2", + value = "helm_plate_dungeonpaladin_a_01_bef.m2", + }, + { + fileId = "140536", + text = "helm_plate_dungeonpaladin_a_01_bem.m2", + value = "helm_plate_dungeonpaladin_a_01_bem.m2", + }, + { + fileId = "140537", + text = "helm_plate_dungeonpaladin_a_01_drf.m2", + value = "helm_plate_dungeonpaladin_a_01_drf.m2", + }, + { + fileId = "140538", + text = "helm_plate_dungeonpaladin_a_01_drm.m2", + value = "helm_plate_dungeonpaladin_a_01_drm.m2", + }, + { + fileId = "140539", + text = "helm_plate_dungeonpaladin_a_01_dwf.m2", + value = "helm_plate_dungeonpaladin_a_01_dwf.m2", + }, + { + fileId = "140540", + text = "helm_plate_dungeonpaladin_a_01_dwm.m2", + value = "helm_plate_dungeonpaladin_a_01_dwm.m2", + }, + { + fileId = "140541", + text = "helm_plate_dungeonpaladin_a_01_gnf.m2", + value = "helm_plate_dungeonpaladin_a_01_gnf.m2", + }, + { + fileId = "140542", + text = "helm_plate_dungeonpaladin_a_01_gnm.m2", + value = "helm_plate_dungeonpaladin_a_01_gnm.m2", + }, + { + fileId = "140543", + text = "helm_plate_dungeonpaladin_a_01_gof.m2", + value = "helm_plate_dungeonpaladin_a_01_gof.m2", + }, + { + fileId = "140544", + text = "helm_plate_dungeonpaladin_a_01_gom.m2", + value = "helm_plate_dungeonpaladin_a_01_gom.m2", + }, + { + fileId = "140545", + text = "helm_plate_dungeonpaladin_a_01_huf.m2", + value = "helm_plate_dungeonpaladin_a_01_huf.m2", + }, + { + fileId = "140546", + text = "helm_plate_dungeonpaladin_a_01_hum.m2", + value = "helm_plate_dungeonpaladin_a_01_hum.m2", + }, + { + fileId = "140547", + text = "helm_plate_dungeonpaladin_a_01_nif.m2", + value = "helm_plate_dungeonpaladin_a_01_nif.m2", + }, + { + fileId = "140548", + text = "helm_plate_dungeonpaladin_a_01_nim.m2", + value = "helm_plate_dungeonpaladin_a_01_nim.m2", + }, + { + fileId = "140549", + text = "helm_plate_dungeonpaladin_a_01_orf.m2", + value = "helm_plate_dungeonpaladin_a_01_orf.m2", + }, + { + fileId = "140550", + text = "helm_plate_dungeonpaladin_a_01_orm.m2", + value = "helm_plate_dungeonpaladin_a_01_orm.m2", + }, + { + fileId = "140551", + text = "helm_plate_dungeonpaladin_a_01_scf.m2", + value = "helm_plate_dungeonpaladin_a_01_scf.m2", + }, + { + fileId = "140552", + text = "helm_plate_dungeonpaladin_a_01_scm.m2", + value = "helm_plate_dungeonpaladin_a_01_scm.m2", + }, + { + fileId = "140553", + text = "helm_plate_dungeonpaladin_a_01_taf.m2", + value = "helm_plate_dungeonpaladin_a_01_taf.m2", + }, + { + fileId = "140554", + text = "helm_plate_dungeonpaladin_a_01_tam.m2", + value = "helm_plate_dungeonpaladin_a_01_tam.m2", + }, + { + fileId = "140555", + text = "helm_plate_dungeonpaladin_a_01_trf.m2", + value = "helm_plate_dungeonpaladin_a_01_trf.m2", + }, + { + fileId = "140556", + text = "helm_plate_dungeonpaladin_a_01_trm.m2", + value = "helm_plate_dungeonpaladin_a_01_trm.m2", + }, + { + fileId = "140560", + text = "helm_plate_dungeonpaladin_b_01_bef.m2", + value = "helm_plate_dungeonpaladin_b_01_bef.m2", + }, + { + fileId = "140561", + text = "helm_plate_dungeonpaladin_b_01_bem.m2", + value = "helm_plate_dungeonpaladin_b_01_bem.m2", + }, + { + fileId = "140562", + text = "helm_plate_dungeonpaladin_b_01_drf.m2", + value = "helm_plate_dungeonpaladin_b_01_drf.m2", + }, + { + fileId = "140563", + text = "helm_plate_dungeonpaladin_b_01_drm.m2", + value = "helm_plate_dungeonpaladin_b_01_drm.m2", + }, + { + fileId = "140564", + text = "helm_plate_dungeonpaladin_b_01_dwf.m2", + value = "helm_plate_dungeonpaladin_b_01_dwf.m2", + }, + { + fileId = "140565", + text = "helm_plate_dungeonpaladin_b_01_dwm.m2", + value = "helm_plate_dungeonpaladin_b_01_dwm.m2", + }, + { + fileId = "140566", + text = "helm_plate_dungeonpaladin_b_01_gnf.m2", + value = "helm_plate_dungeonpaladin_b_01_gnf.m2", + }, + { + fileId = "140567", + text = "helm_plate_dungeonpaladin_b_01_gnm.m2", + value = "helm_plate_dungeonpaladin_b_01_gnm.m2", + }, + { + fileId = "140568", + text = "helm_plate_dungeonpaladin_b_01_gof.m2", + value = "helm_plate_dungeonpaladin_b_01_gof.m2", + }, + { + fileId = "140569", + text = "helm_plate_dungeonpaladin_b_01_gom.m2", + value = "helm_plate_dungeonpaladin_b_01_gom.m2", + }, + { + fileId = "140570", + text = "helm_plate_dungeonpaladin_b_01_huf.m2", + value = "helm_plate_dungeonpaladin_b_01_huf.m2", + }, + { + fileId = "140571", + text = "helm_plate_dungeonpaladin_b_01_hum.m2", + value = "helm_plate_dungeonpaladin_b_01_hum.m2", + }, + { + fileId = "140572", + text = "helm_plate_dungeonpaladin_b_01_nif.m2", + value = "helm_plate_dungeonpaladin_b_01_nif.m2", + }, + { + fileId = "140573", + text = "helm_plate_dungeonpaladin_b_01_nim.m2", + value = "helm_plate_dungeonpaladin_b_01_nim.m2", + }, + { + fileId = "140574", + text = "helm_plate_dungeonpaladin_b_01_orf.m2", + value = "helm_plate_dungeonpaladin_b_01_orf.m2", + }, + { + fileId = "140575", + text = "helm_plate_dungeonpaladin_b_01_orm.m2", + value = "helm_plate_dungeonpaladin_b_01_orm.m2", + }, + { + fileId = "140576", + text = "helm_plate_dungeonpaladin_b_01_scf.m2", + value = "helm_plate_dungeonpaladin_b_01_scf.m2", + }, + { + fileId = "140577", + text = "helm_plate_dungeonpaladin_b_01_scm.m2", + value = "helm_plate_dungeonpaladin_b_01_scm.m2", + }, + { + fileId = "140578", + text = "helm_plate_dungeonpaladin_b_01_taf.m2", + value = "helm_plate_dungeonpaladin_b_01_taf.m2", + }, + { + fileId = "140579", + text = "helm_plate_dungeonpaladin_b_01_tam.m2", + value = "helm_plate_dungeonpaladin_b_01_tam.m2", + }, + { + fileId = "140580", + text = "helm_plate_dungeonpaladin_b_01_trf.m2", + value = "helm_plate_dungeonpaladin_b_01_trf.m2", + }, + { + fileId = "140581", + text = "helm_plate_dungeonpaladin_b_01_trm.m2", + value = "helm_plate_dungeonpaladin_b_01_trm.m2", + }, + { + fileId = "140587", + text = "helm_plate_dungeonplate_c_01_bef.m2", + value = "helm_plate_dungeonplate_c_01_bef.m2", + }, + { + fileId = "140588", + text = "helm_plate_dungeonplate_c_01_bem.m2", + value = "helm_plate_dungeonplate_c_01_bem.m2", + }, + { + fileId = "140589", + text = "helm_plate_dungeonplate_c_01_drf.m2", + value = "helm_plate_dungeonplate_c_01_drf.m2", + }, + { + fileId = "140590", + text = "helm_plate_dungeonplate_c_01_drm.m2", + value = "helm_plate_dungeonplate_c_01_drm.m2", + }, + { + fileId = "140591", + text = "helm_plate_dungeonplate_c_01_dwf.m2", + value = "helm_plate_dungeonplate_c_01_dwf.m2", + }, + { + fileId = "140592", + text = "helm_plate_dungeonplate_c_01_dwm.m2", + value = "helm_plate_dungeonplate_c_01_dwm.m2", + }, + { + fileId = "140593", + text = "helm_plate_dungeonplate_c_01_gnf.m2", + value = "helm_plate_dungeonplate_c_01_gnf.m2", + }, + { + fileId = "140594", + text = "helm_plate_dungeonplate_c_01_gnm.m2", + value = "helm_plate_dungeonplate_c_01_gnm.m2", + }, + { + fileId = "140595", + text = "helm_plate_dungeonplate_c_01_gof.m2", + value = "helm_plate_dungeonplate_c_01_gof.m2", + }, + { + fileId = "140596", + text = "helm_plate_dungeonplate_c_01_gom.m2", + value = "helm_plate_dungeonplate_c_01_gom.m2", + }, + { + fileId = "140597", + text = "helm_plate_dungeonplate_c_01_huf.m2", + value = "helm_plate_dungeonplate_c_01_huf.m2", + }, + { + fileId = "140598", + text = "helm_plate_dungeonplate_c_01_hum.m2", + value = "helm_plate_dungeonplate_c_01_hum.m2", + }, + { + fileId = "140599", + text = "helm_plate_dungeonplate_c_01_nif.m2", + value = "helm_plate_dungeonplate_c_01_nif.m2", + }, + { + fileId = "140600", + text = "helm_plate_dungeonplate_c_01_nim.m2", + value = "helm_plate_dungeonplate_c_01_nim.m2", + }, + { + fileId = "140601", + text = "helm_plate_dungeonplate_c_01_orf.m2", + value = "helm_plate_dungeonplate_c_01_orf.m2", + }, + { + fileId = "140602", + text = "helm_plate_dungeonplate_c_01_orm.m2", + value = "helm_plate_dungeonplate_c_01_orm.m2", + }, + { + fileId = "140603", + text = "helm_plate_dungeonplate_c_01_scf.m2", + value = "helm_plate_dungeonplate_c_01_scf.m2", + }, + { + fileId = "140604", + text = "helm_plate_dungeonplate_c_01_scm.m2", + value = "helm_plate_dungeonplate_c_01_scm.m2", + }, + { + fileId = "140605", + text = "helm_plate_dungeonplate_c_01_taf.m2", + value = "helm_plate_dungeonplate_c_01_taf.m2", + }, + { + fileId = "140606", + text = "helm_plate_dungeonplate_c_01_tam.m2", + value = "helm_plate_dungeonplate_c_01_tam.m2", + }, + { + fileId = "140607", + text = "helm_plate_dungeonplate_c_01_trf.m2", + value = "helm_plate_dungeonplate_c_01_trf.m2", + }, + { + fileId = "140608", + text = "helm_plate_dungeonplate_c_01_trm.m2", + value = "helm_plate_dungeonplate_c_01_trm.m2", + }, + { + fileId = "343346", + text = "helm_plate_dungeonplate_c_02_bef.m2", + value = "helm_plate_dungeonplate_c_02_bef.m2", + }, + { + fileId = "343347", + text = "helm_plate_dungeonplate_c_02_bem.m2", + value = "helm_plate_dungeonplate_c_02_bem.m2", + }, + { + fileId = "343348", + text = "helm_plate_dungeonplate_c_02_drf.m2", + value = "helm_plate_dungeonplate_c_02_drf.m2", + }, + { + fileId = "343349", + text = "helm_plate_dungeonplate_c_02_drm.m2", + value = "helm_plate_dungeonplate_c_02_drm.m2", + }, + { + fileId = "343350", + text = "helm_plate_dungeonplate_c_02_dwf.m2", + value = "helm_plate_dungeonplate_c_02_dwf.m2", + }, + { + fileId = "343351", + text = "helm_plate_dungeonplate_c_02_dwm.m2", + value = "helm_plate_dungeonplate_c_02_dwm.m2", + }, + { + fileId = "343352", + text = "helm_plate_dungeonplate_c_02_gnf.m2", + value = "helm_plate_dungeonplate_c_02_gnf.m2", + }, + { + fileId = "343353", + text = "helm_plate_dungeonplate_c_02_gnm.m2", + value = "helm_plate_dungeonplate_c_02_gnm.m2", + }, + { + fileId = "343354", + text = "helm_plate_dungeonplate_c_02_gof.m2", + value = "helm_plate_dungeonplate_c_02_gof.m2", + }, + { + fileId = "343355", + text = "helm_plate_dungeonplate_c_02_gom.m2", + value = "helm_plate_dungeonplate_c_02_gom.m2", + }, + { + fileId = "343356", + text = "helm_plate_dungeonplate_c_02_huf.m2", + value = "helm_plate_dungeonplate_c_02_huf.m2", + }, + { + fileId = "343357", + text = "helm_plate_dungeonplate_c_02_hum.m2", + value = "helm_plate_dungeonplate_c_02_hum.m2", + }, + { + fileId = "343358", + text = "helm_plate_dungeonplate_c_02_nif.m2", + value = "helm_plate_dungeonplate_c_02_nif.m2", + }, + { + fileId = "343359", + text = "helm_plate_dungeonplate_c_02_nim.m2", + value = "helm_plate_dungeonplate_c_02_nim.m2", + }, + { + fileId = "343360", + text = "helm_plate_dungeonplate_c_02_orf.m2", + value = "helm_plate_dungeonplate_c_02_orf.m2", + }, + { + fileId = "343361", + text = "helm_plate_dungeonplate_c_02_orm.m2", + value = "helm_plate_dungeonplate_c_02_orm.m2", + }, + { + fileId = "343362", + text = "helm_plate_dungeonplate_c_02_scf.m2", + value = "helm_plate_dungeonplate_c_02_scf.m2", + }, + { + fileId = "343363", + text = "helm_plate_dungeonplate_c_02_scm.m2", + value = "helm_plate_dungeonplate_c_02_scm.m2", + }, + { + fileId = "343364", + text = "helm_plate_dungeonplate_c_02_taf.m2", + value = "helm_plate_dungeonplate_c_02_taf.m2", + }, + { + fileId = "343643", + text = "helm_plate_dungeonplate_c_02_tam.m2", + value = "helm_plate_dungeonplate_c_02_tam.m2", + }, + { + fileId = "343644", + text = "helm_plate_dungeonplate_c_02_trf.m2", + value = "helm_plate_dungeonplate_c_02_trf.m2", + }, + { + fileId = "343645", + text = "helm_plate_dungeonplate_c_02_trm.m2", + value = "helm_plate_dungeonplate_c_02_trm.m2", + }, + { + fileId = "140612", + text = "helm_plate_dungeonwarrior_a_01_bef.m2", + value = "helm_plate_dungeonwarrior_a_01_bef.m2", + }, + { + fileId = "140613", + text = "helm_plate_dungeonwarrior_a_01_bem.m2", + value = "helm_plate_dungeonwarrior_a_01_bem.m2", + }, + { + fileId = "140614", + text = "helm_plate_dungeonwarrior_a_01_drf.m2", + value = "helm_plate_dungeonwarrior_a_01_drf.m2", + }, + { + fileId = "140615", + text = "helm_plate_dungeonwarrior_a_01_drm.m2", + value = "helm_plate_dungeonwarrior_a_01_drm.m2", + }, + { + fileId = "140616", + text = "helm_plate_dungeonwarrior_a_01_dwf.m2", + value = "helm_plate_dungeonwarrior_a_01_dwf.m2", + }, + { + fileId = "140617", + text = "helm_plate_dungeonwarrior_a_01_dwm.m2", + value = "helm_plate_dungeonwarrior_a_01_dwm.m2", + }, + { + fileId = "140618", + text = "helm_plate_dungeonwarrior_a_01_gnf.m2", + value = "helm_plate_dungeonwarrior_a_01_gnf.m2", + }, + { + fileId = "140619", + text = "helm_plate_dungeonwarrior_a_01_gnm.m2", + value = "helm_plate_dungeonwarrior_a_01_gnm.m2", + }, + { + fileId = "140620", + text = "helm_plate_dungeonwarrior_a_01_gof.m2", + value = "helm_plate_dungeonwarrior_a_01_gof.m2", + }, + { + fileId = "140621", + text = "helm_plate_dungeonwarrior_a_01_gom.m2", + value = "helm_plate_dungeonwarrior_a_01_gom.m2", + }, + { + fileId = "140622", + text = "helm_plate_dungeonwarrior_a_01_huf.m2", + value = "helm_plate_dungeonwarrior_a_01_huf.m2", + }, + { + fileId = "140623", + text = "helm_plate_dungeonwarrior_a_01_hum.m2", + value = "helm_plate_dungeonwarrior_a_01_hum.m2", + }, + { + fileId = "140624", + text = "helm_plate_dungeonwarrior_a_01_nif.m2", + value = "helm_plate_dungeonwarrior_a_01_nif.m2", + }, + { + fileId = "140625", + text = "helm_plate_dungeonwarrior_a_01_nim.m2", + value = "helm_plate_dungeonwarrior_a_01_nim.m2", + }, + { + fileId = "140626", + text = "helm_plate_dungeonwarrior_a_01_orf.m2", + value = "helm_plate_dungeonwarrior_a_01_orf.m2", + }, + { + fileId = "140627", + text = "helm_plate_dungeonwarrior_a_01_orm.m2", + value = "helm_plate_dungeonwarrior_a_01_orm.m2", + }, + { + fileId = "140628", + text = "helm_plate_dungeonwarrior_a_01_scf.m2", + value = "helm_plate_dungeonwarrior_a_01_scf.m2", + }, + { + fileId = "140629", + text = "helm_plate_dungeonwarrior_a_01_scm.m2", + value = "helm_plate_dungeonwarrior_a_01_scm.m2", + }, + { + fileId = "140630", + text = "helm_plate_dungeonwarrior_a_01_taf.m2", + value = "helm_plate_dungeonwarrior_a_01_taf.m2", + }, + { + fileId = "140631", + text = "helm_plate_dungeonwarrior_a_01_tam.m2", + value = "helm_plate_dungeonwarrior_a_01_tam.m2", + }, + { + fileId = "140632", + text = "helm_plate_dungeonwarrior_a_01_trf.m2", + value = "helm_plate_dungeonwarrior_a_01_trf.m2", + }, + { + fileId = "140633", + text = "helm_plate_dungeonwarrior_a_01_trm.m2", + value = "helm_plate_dungeonwarrior_a_01_trm.m2", + }, + { + fileId = "140639", + text = "helm_plate_dungeonwarrior_b_01_bef.m2", + value = "helm_plate_dungeonwarrior_b_01_bef.m2", + }, + { + fileId = "140640", + text = "helm_plate_dungeonwarrior_b_01_bem.m2", + value = "helm_plate_dungeonwarrior_b_01_bem.m2", + }, + { + fileId = "140641", + text = "helm_plate_dungeonwarrior_b_01_drf.m2", + value = "helm_plate_dungeonwarrior_b_01_drf.m2", + }, + { + fileId = "140642", + text = "helm_plate_dungeonwarrior_b_01_drm.m2", + value = "helm_plate_dungeonwarrior_b_01_drm.m2", + }, + { + fileId = "140643", + text = "helm_plate_dungeonwarrior_b_01_dwf.m2", + value = "helm_plate_dungeonwarrior_b_01_dwf.m2", + }, + { + fileId = "140644", + text = "helm_plate_dungeonwarrior_b_01_dwm.m2", + value = "helm_plate_dungeonwarrior_b_01_dwm.m2", + }, + { + fileId = "140645", + text = "helm_plate_dungeonwarrior_b_01_gnf.m2", + value = "helm_plate_dungeonwarrior_b_01_gnf.m2", + }, + { + fileId = "140646", + text = "helm_plate_dungeonwarrior_b_01_gnm.m2", + value = "helm_plate_dungeonwarrior_b_01_gnm.m2", + }, + { + fileId = "140647", + text = "helm_plate_dungeonwarrior_b_01_gof.m2", + value = "helm_plate_dungeonwarrior_b_01_gof.m2", + }, + { + fileId = "140648", + text = "helm_plate_dungeonwarrior_b_01_gom.m2", + value = "helm_plate_dungeonwarrior_b_01_gom.m2", + }, + { + fileId = "140649", + text = "helm_plate_dungeonwarrior_b_01_huf.m2", + value = "helm_plate_dungeonwarrior_b_01_huf.m2", + }, + { + fileId = "140650", + text = "helm_plate_dungeonwarrior_b_01_hum.m2", + value = "helm_plate_dungeonwarrior_b_01_hum.m2", + }, + { + fileId = "140651", + text = "helm_plate_dungeonwarrior_b_01_nif.m2", + value = "helm_plate_dungeonwarrior_b_01_nif.m2", + }, + { + fileId = "140652", + text = "helm_plate_dungeonwarrior_b_01_nim.m2", + value = "helm_plate_dungeonwarrior_b_01_nim.m2", + }, + { + fileId = "140653", + text = "helm_plate_dungeonwarrior_b_01_orf.m2", + value = "helm_plate_dungeonwarrior_b_01_orf.m2", + }, + { + fileId = "140654", + text = "helm_plate_dungeonwarrior_b_01_orm.m2", + value = "helm_plate_dungeonwarrior_b_01_orm.m2", + }, + { + fileId = "140655", + text = "helm_plate_dungeonwarrior_b_01_scf.m2", + value = "helm_plate_dungeonwarrior_b_01_scf.m2", + }, + { + fileId = "140656", + text = "helm_plate_dungeonwarrior_b_01_scm.m2", + value = "helm_plate_dungeonwarrior_b_01_scm.m2", + }, + { + fileId = "140657", + text = "helm_plate_dungeonwarrior_b_01_taf.m2", + value = "helm_plate_dungeonwarrior_b_01_taf.m2", + }, + { + fileId = "140658", + text = "helm_plate_dungeonwarrior_b_01_tam.m2", + value = "helm_plate_dungeonwarrior_b_01_tam.m2", + }, + { + fileId = "140659", + text = "helm_plate_dungeonwarrior_b_01_trf.m2", + value = "helm_plate_dungeonwarrior_b_01_trf.m2", + }, + { + fileId = "140660", + text = "helm_plate_dungeonwarrior_b_01_trm.m2", + value = "helm_plate_dungeonwarrior_b_01_trm.m2", + }, + { + fileId = "140666", + text = "helm_plate_headless_d_01_bef.m2", + value = "helm_plate_headless_d_01_bef.m2", + }, + { + fileId = "140667", + text = "helm_plate_headless_d_01_bem.m2", + value = "helm_plate_headless_d_01_bem.m2", + }, + { + fileId = "140668", + text = "helm_plate_headless_d_01_drf.m2", + value = "helm_plate_headless_d_01_drf.m2", + }, + { + fileId = "140669", + text = "helm_plate_headless_d_01_drm.m2", + value = "helm_plate_headless_d_01_drm.m2", + }, + { + fileId = "140670", + text = "helm_plate_headless_d_01_dwf.m2", + value = "helm_plate_headless_d_01_dwf.m2", + }, + { + fileId = "140671", + text = "helm_plate_headless_d_01_dwm.m2", + value = "helm_plate_headless_d_01_dwm.m2", + }, + { + fileId = "140672", + text = "helm_plate_headless_d_01_gnf.m2", + value = "helm_plate_headless_d_01_gnf.m2", + }, + { + fileId = "140673", + text = "helm_plate_headless_d_01_gnm.m2", + value = "helm_plate_headless_d_01_gnm.m2", + }, + { + fileId = "140674", + text = "helm_plate_headless_d_01_gof.m2", + value = "helm_plate_headless_d_01_gof.m2", + }, + { + fileId = "140675", + text = "helm_plate_headless_d_01_gom.m2", + value = "helm_plate_headless_d_01_gom.m2", + }, + { + fileId = "140676", + text = "helm_plate_headless_d_01_huf.m2", + value = "helm_plate_headless_d_01_huf.m2", + }, + { + fileId = "140677", + text = "helm_plate_headless_d_01_hum.m2", + value = "helm_plate_headless_d_01_hum.m2", + }, + { + fileId = "140678", + text = "helm_plate_headless_d_01_nif.m2", + value = "helm_plate_headless_d_01_nif.m2", + }, + { + fileId = "140679", + text = "helm_plate_headless_d_01_nim.m2", + value = "helm_plate_headless_d_01_nim.m2", + }, + { + fileId = "140680", + text = "helm_plate_headless_d_01_orf.m2", + value = "helm_plate_headless_d_01_orf.m2", + }, + { + fileId = "140681", + text = "helm_plate_headless_d_01_orm.m2", + value = "helm_plate_headless_d_01_orm.m2", + }, + { + fileId = "140682", + text = "helm_plate_headless_d_01_scf.m2", + value = "helm_plate_headless_d_01_scf.m2", + }, + { + fileId = "140683", + text = "helm_plate_headless_d_01_scm.m2", + value = "helm_plate_headless_d_01_scm.m2", + }, + { + fileId = "140684", + text = "helm_plate_headless_d_01_taf.m2", + value = "helm_plate_headless_d_01_taf.m2", + }, + { + fileId = "140685", + text = "helm_plate_headless_d_01_tam.m2", + value = "helm_plate_headless_d_01_tam.m2", + }, + { + fileId = "140686", + text = "helm_plate_headless_d_01_trf.m2", + value = "helm_plate_headless_d_01_trf.m2", + }, + { + fileId = "140687", + text = "helm_plate_headless_d_01_trm.m2", + value = "helm_plate_headless_d_01_trm.m2", + }, + { + fileId = "140689", + text = "helm_plate_northrend_b_01_bef.m2", + value = "helm_plate_northrend_b_01_bef.m2", + }, + { + fileId = "140690", + text = "helm_plate_northrend_b_01_bem.m2", + value = "helm_plate_northrend_b_01_bem.m2", + }, + { + fileId = "140691", + text = "helm_plate_northrend_b_01_drf.m2", + value = "helm_plate_northrend_b_01_drf.m2", + }, + { + fileId = "140692", + text = "helm_plate_northrend_b_01_drm.m2", + value = "helm_plate_northrend_b_01_drm.m2", + }, + { + fileId = "140693", + text = "helm_plate_northrend_b_01_dwf.m2", + value = "helm_plate_northrend_b_01_dwf.m2", + }, + { + fileId = "140694", + text = "helm_plate_northrend_b_01_dwm.m2", + value = "helm_plate_northrend_b_01_dwm.m2", + }, + { + fileId = "140695", + text = "helm_plate_northrend_b_01_gnf.m2", + value = "helm_plate_northrend_b_01_gnf.m2", + }, + { + fileId = "140696", + text = "helm_plate_northrend_b_01_gnm.m2", + value = "helm_plate_northrend_b_01_gnm.m2", + }, + { + fileId = "140697", + text = "helm_plate_northrend_b_01_huf.m2", + value = "helm_plate_northrend_b_01_huf.m2", + }, + { + fileId = "140698", + text = "helm_plate_northrend_b_01_hum.m2", + value = "helm_plate_northrend_b_01_hum.m2", + }, + { + fileId = "140699", + text = "helm_plate_northrend_b_01_nif.m2", + value = "helm_plate_northrend_b_01_nif.m2", + }, + { + fileId = "140700", + text = "helm_plate_northrend_b_01_nim.m2", + value = "helm_plate_northrend_b_01_nim.m2", + }, + { + fileId = "140701", + text = "helm_plate_northrend_b_01_orf.m2", + value = "helm_plate_northrend_b_01_orf.m2", + }, + { + fileId = "140702", + text = "helm_plate_northrend_b_01_orm.m2", + value = "helm_plate_northrend_b_01_orm.m2", + }, + { + fileId = "140703", + text = "helm_plate_northrend_b_01_scf.m2", + value = "helm_plate_northrend_b_01_scf.m2", + }, + { + fileId = "140704", + text = "helm_plate_northrend_b_01_scm.m2", + value = "helm_plate_northrend_b_01_scm.m2", + }, + { + fileId = "140705", + text = "helm_plate_northrend_b_01_taf.m2", + value = "helm_plate_northrend_b_01_taf.m2", + }, + { + fileId = "140706", + text = "helm_plate_northrend_b_01_tam.m2", + value = "helm_plate_northrend_b_01_tam.m2", + }, + { + fileId = "140707", + text = "helm_plate_northrend_b_01_trf.m2", + value = "helm_plate_northrend_b_01_trf.m2", + }, + { + fileId = "140708", + text = "helm_plate_northrend_b_01_trm.m2", + value = "helm_plate_northrend_b_01_trm.m2", + }, + { + fileId = "140713", + text = "helm_plate_northrend_b_02_bef.m2", + value = "helm_plate_northrend_b_02_bef.m2", + }, + { + fileId = "140714", + text = "helm_plate_northrend_b_02_bem.m2", + value = "helm_plate_northrend_b_02_bem.m2", + }, + { + fileId = "140715", + text = "helm_plate_northrend_b_02_drf.m2", + value = "helm_plate_northrend_b_02_drf.m2", + }, + { + fileId = "140716", + text = "helm_plate_northrend_b_02_drm.m2", + value = "helm_plate_northrend_b_02_drm.m2", + }, + { + fileId = "140717", + text = "helm_plate_northrend_b_02_dwf.m2", + value = "helm_plate_northrend_b_02_dwf.m2", + }, + { + fileId = "140718", + text = "helm_plate_northrend_b_02_dwm.m2", + value = "helm_plate_northrend_b_02_dwm.m2", + }, + { + fileId = "140719", + text = "helm_plate_northrend_b_02_gnf.m2", + value = "helm_plate_northrend_b_02_gnf.m2", + }, + { + fileId = "140720", + text = "helm_plate_northrend_b_02_gnm.m2", + value = "helm_plate_northrend_b_02_gnm.m2", + }, + { + fileId = "140721", + text = "helm_plate_northrend_b_02_gof.m2", + value = "helm_plate_northrend_b_02_gof.m2", + }, + { + fileId = "140722", + text = "helm_plate_northrend_b_02_gom.m2", + value = "helm_plate_northrend_b_02_gom.m2", + }, + { + fileId = "140723", + text = "helm_plate_northrend_b_02_huf.m2", + value = "helm_plate_northrend_b_02_huf.m2", + }, + { + fileId = "140724", + text = "helm_plate_northrend_b_02_hum.m2", + value = "helm_plate_northrend_b_02_hum.m2", + }, + { + fileId = "140725", + text = "helm_plate_northrend_b_02_nif.m2", + value = "helm_plate_northrend_b_02_nif.m2", + }, + { + fileId = "140726", + text = "helm_plate_northrend_b_02_nim.m2", + value = "helm_plate_northrend_b_02_nim.m2", + }, + { + fileId = "140727", + text = "helm_plate_northrend_b_02_orf.m2", + value = "helm_plate_northrend_b_02_orf.m2", + }, + { + fileId = "140728", + text = "helm_plate_northrend_b_02_orm.m2", + value = "helm_plate_northrend_b_02_orm.m2", + }, + { + fileId = "140729", + text = "helm_plate_northrend_b_02_scf.m2", + value = "helm_plate_northrend_b_02_scf.m2", + }, + { + fileId = "140730", + text = "helm_plate_northrend_b_02_scm.m2", + value = "helm_plate_northrend_b_02_scm.m2", + }, + { + fileId = "140731", + text = "helm_plate_northrend_b_02_taf.m2", + value = "helm_plate_northrend_b_02_taf.m2", + }, + { + fileId = "140732", + text = "helm_plate_northrend_b_02_tam.m2", + value = "helm_plate_northrend_b_02_tam.m2", + }, + { + fileId = "140733", + text = "helm_plate_northrend_b_02_trf.m2", + value = "helm_plate_northrend_b_02_trf.m2", + }, + { + fileId = "140734", + text = "helm_plate_northrend_b_02_trm.m2", + value = "helm_plate_northrend_b_02_trm.m2", + }, + { + fileId = "140740", + text = "helm_plate_northrend_b_03_bef.m2", + value = "helm_plate_northrend_b_03_bef.m2", + }, + { + fileId = "140741", + text = "helm_plate_northrend_b_03_bem.m2", + value = "helm_plate_northrend_b_03_bem.m2", + }, + { + fileId = "140742", + text = "helm_plate_northrend_b_03_drf.m2", + value = "helm_plate_northrend_b_03_drf.m2", + }, + { + fileId = "140743", + text = "helm_plate_northrend_b_03_drm.m2", + value = "helm_plate_northrend_b_03_drm.m2", + }, + { + fileId = "140744", + text = "helm_plate_northrend_b_03_dwf.m2", + value = "helm_plate_northrend_b_03_dwf.m2", + }, + { + fileId = "140745", + text = "helm_plate_northrend_b_03_dwm.m2", + value = "helm_plate_northrend_b_03_dwm.m2", + }, + { + fileId = "140746", + text = "helm_plate_northrend_b_03_gnf.m2", + value = "helm_plate_northrend_b_03_gnf.m2", + }, + { + fileId = "140747", + text = "helm_plate_northrend_b_03_gnm.m2", + value = "helm_plate_northrend_b_03_gnm.m2", + }, + { + fileId = "140748", + text = "helm_plate_northrend_b_03_huf.m2", + value = "helm_plate_northrend_b_03_huf.m2", + }, + { + fileId = "140749", + text = "helm_plate_northrend_b_03_hum.m2", + value = "helm_plate_northrend_b_03_hum.m2", + }, + { + fileId = "140750", + text = "helm_plate_northrend_b_03_nif.m2", + value = "helm_plate_northrend_b_03_nif.m2", + }, + { + fileId = "140751", + text = "helm_plate_northrend_b_03_nim.m2", + value = "helm_plate_northrend_b_03_nim.m2", + }, + { + fileId = "140752", + text = "helm_plate_northrend_b_03_orf.m2", + value = "helm_plate_northrend_b_03_orf.m2", + }, + { + fileId = "140753", + text = "helm_plate_northrend_b_03_orm.m2", + value = "helm_plate_northrend_b_03_orm.m2", + }, + { + fileId = "140754", + text = "helm_plate_northrend_b_03_scf.m2", + value = "helm_plate_northrend_b_03_scf.m2", + }, + { + fileId = "140755", + text = "helm_plate_northrend_b_03_scm.m2", + value = "helm_plate_northrend_b_03_scm.m2", + }, + { + fileId = "140756", + text = "helm_plate_northrend_b_03_taf.m2", + value = "helm_plate_northrend_b_03_taf.m2", + }, + { + fileId = "140757", + text = "helm_plate_northrend_b_03_tam.m2", + value = "helm_plate_northrend_b_03_tam.m2", + }, + { + fileId = "140758", + text = "helm_plate_northrend_b_03_trf.m2", + value = "helm_plate_northrend_b_03_trf.m2", + }, + { + fileId = "140759", + text = "helm_plate_northrend_b_03_trm.m2", + value = "helm_plate_northrend_b_03_trm.m2", + }, + { + fileId = "140764", + text = "helm_plate_northrend_c_01_bef.m2", + value = "helm_plate_northrend_c_01_bef.m2", + }, + { + fileId = "140765", + text = "helm_plate_northrend_c_01_bem.m2", + value = "helm_plate_northrend_c_01_bem.m2", + }, + { + fileId = "140766", + text = "helm_plate_northrend_c_01_drf.m2", + value = "helm_plate_northrend_c_01_drf.m2", + }, + { + fileId = "140767", + text = "helm_plate_northrend_c_01_drm.m2", + value = "helm_plate_northrend_c_01_drm.m2", + }, + { + fileId = "140768", + text = "helm_plate_northrend_c_01_dwf.m2", + value = "helm_plate_northrend_c_01_dwf.m2", + }, + { + fileId = "140769", + text = "helm_plate_northrend_c_01_dwm.m2", + value = "helm_plate_northrend_c_01_dwm.m2", + }, + { + fileId = "140770", + text = "helm_plate_northrend_c_01_gnf.m2", + value = "helm_plate_northrend_c_01_gnf.m2", + }, + { + fileId = "140771", + text = "helm_plate_northrend_c_01_gnm.m2", + value = "helm_plate_northrend_c_01_gnm.m2", + }, + { + fileId = "140772", + text = "helm_plate_northrend_c_01_gof.m2", + value = "helm_plate_northrend_c_01_gof.m2", + }, + { + fileId = "140773", + text = "helm_plate_northrend_c_01_gom.m2", + value = "helm_plate_northrend_c_01_gom.m2", + }, + { + fileId = "140774", + text = "helm_plate_northrend_c_01_huf.m2", + value = "helm_plate_northrend_c_01_huf.m2", + }, + { + fileId = "140775", + text = "helm_plate_northrend_c_01_hum.m2", + value = "helm_plate_northrend_c_01_hum.m2", + }, + { + fileId = "140776", + text = "helm_plate_northrend_c_01_nif.m2", + value = "helm_plate_northrend_c_01_nif.m2", + }, + { + fileId = "140777", + text = "helm_plate_northrend_c_01_nim.m2", + value = "helm_plate_northrend_c_01_nim.m2", + }, + { + fileId = "140778", + text = "helm_plate_northrend_c_01_orf.m2", + value = "helm_plate_northrend_c_01_orf.m2", + }, + { + fileId = "140779", + text = "helm_plate_northrend_c_01_orm.m2", + value = "helm_plate_northrend_c_01_orm.m2", + }, + { + fileId = "140780", + text = "helm_plate_northrend_c_01_scf.m2", + value = "helm_plate_northrend_c_01_scf.m2", + }, + { + fileId = "140781", + text = "helm_plate_northrend_c_01_scm.m2", + value = "helm_plate_northrend_c_01_scm.m2", + }, + { + fileId = "140782", + text = "helm_plate_northrend_c_01_taf.m2", + value = "helm_plate_northrend_c_01_taf.m2", + }, + { + fileId = "140783", + text = "helm_plate_northrend_c_01_tam.m2", + value = "helm_plate_northrend_c_01_tam.m2", + }, + { + fileId = "140784", + text = "helm_plate_northrend_c_01_trf.m2", + value = "helm_plate_northrend_c_01_trf.m2", + }, + { + fileId = "140785", + text = "helm_plate_northrend_c_01_trm.m2", + value = "helm_plate_northrend_c_01_trm.m2", + }, + { + fileId = "140790", + text = "helm_plate_northrend_d_01_bef.m2", + value = "helm_plate_northrend_d_01_bef.m2", + }, + { + fileId = "140791", + text = "helm_plate_northrend_d_01_bem.m2", + value = "helm_plate_northrend_d_01_bem.m2", + }, + { + fileId = "140792", + text = "helm_plate_northrend_d_01_drf.m2", + value = "helm_plate_northrend_d_01_drf.m2", + }, + { + fileId = "140793", + text = "helm_plate_northrend_d_01_drm.m2", + value = "helm_plate_northrend_d_01_drm.m2", + }, + { + fileId = "140794", + text = "helm_plate_northrend_d_01_dwf.m2", + value = "helm_plate_northrend_d_01_dwf.m2", + }, + { + fileId = "140795", + text = "helm_plate_northrend_d_01_dwm.m2", + value = "helm_plate_northrend_d_01_dwm.m2", + }, + { + fileId = "140796", + text = "helm_plate_northrend_d_01_gnf.m2", + value = "helm_plate_northrend_d_01_gnf.m2", + }, + { + fileId = "140797", + text = "helm_plate_northrend_d_01_gnm.m2", + value = "helm_plate_northrend_d_01_gnm.m2", + }, + { + fileId = "140798", + text = "helm_plate_northrend_d_01_huf.m2", + value = "helm_plate_northrend_d_01_huf.m2", + }, + { + fileId = "140799", + text = "helm_plate_northrend_d_01_hum.m2", + value = "helm_plate_northrend_d_01_hum.m2", + }, + { + fileId = "140800", + text = "helm_plate_northrend_d_01_nif.m2", + value = "helm_plate_northrend_d_01_nif.m2", + }, + { + fileId = "140801", + text = "helm_plate_northrend_d_01_nim.m2", + value = "helm_plate_northrend_d_01_nim.m2", + }, + { + fileId = "140802", + text = "helm_plate_northrend_d_01_orf.m2", + value = "helm_plate_northrend_d_01_orf.m2", + }, + { + fileId = "140803", + text = "helm_plate_northrend_d_01_orm.m2", + value = "helm_plate_northrend_d_01_orm.m2", + }, + { + fileId = "140804", + text = "helm_plate_northrend_d_01_scf.m2", + value = "helm_plate_northrend_d_01_scf.m2", + }, + { + fileId = "140805", + text = "helm_plate_northrend_d_01_scm.m2", + value = "helm_plate_northrend_d_01_scm.m2", + }, + { + fileId = "140806", + text = "helm_plate_northrend_d_01_taf.m2", + value = "helm_plate_northrend_d_01_taf.m2", + }, + { + fileId = "140807", + text = "helm_plate_northrend_d_01_tam.m2", + value = "helm_plate_northrend_d_01_tam.m2", + }, + { + fileId = "140808", + text = "helm_plate_northrend_d_01_trf.m2", + value = "helm_plate_northrend_d_01_trf.m2", + }, + { + fileId = "140809", + text = "helm_plate_northrend_d_01_trm.m2", + value = "helm_plate_northrend_d_01_trm.m2", + }, + { + fileId = "140814", + text = "helm_plate_pvpalliance_a_01_bef.m2", + value = "helm_plate_pvpalliance_a_01_bef.m2", + }, + { + fileId = "140815", + text = "helm_plate_pvpalliance_a_01_bem.m2", + value = "helm_plate_pvpalliance_a_01_bem.m2", + }, + { + fileId = "140816", + text = "helm_plate_pvpalliance_a_01_drf.m2", + value = "helm_plate_pvpalliance_a_01_drf.m2", + }, + { + fileId = "140817", + text = "helm_plate_pvpalliance_a_01_drm.m2", + value = "helm_plate_pvpalliance_a_01_drm.m2", + }, + { + fileId = "140818", + text = "helm_plate_pvpalliance_a_01_dwf.m2", + value = "helm_plate_pvpalliance_a_01_dwf.m2", + }, + { + fileId = "140819", + text = "helm_plate_pvpalliance_a_01_dwm.m2", + value = "helm_plate_pvpalliance_a_01_dwm.m2", + }, + { + fileId = "140820", + text = "helm_plate_pvpalliance_a_01_gnf.m2", + value = "helm_plate_pvpalliance_a_01_gnf.m2", + }, + { + fileId = "140821", + text = "helm_plate_pvpalliance_a_01_gnm.m2", + value = "helm_plate_pvpalliance_a_01_gnm.m2", + }, + { + fileId = "140822", + text = "helm_plate_pvpalliance_a_01_gof.m2", + value = "helm_plate_pvpalliance_a_01_gof.m2", + }, + { + fileId = "140823", + text = "helm_plate_pvpalliance_a_01_gom.m2", + value = "helm_plate_pvpalliance_a_01_gom.m2", + }, + { + fileId = "140824", + text = "helm_plate_pvpalliance_a_01_huf.m2", + value = "helm_plate_pvpalliance_a_01_huf.m2", + }, + { + fileId = "140825", + text = "helm_plate_pvpalliance_a_01_hum.m2", + value = "helm_plate_pvpalliance_a_01_hum.m2", + }, + { + fileId = "140826", + text = "helm_plate_pvpalliance_a_01_nif.m2", + value = "helm_plate_pvpalliance_a_01_nif.m2", + }, + { + fileId = "140827", + text = "helm_plate_pvpalliance_a_01_nim.m2", + value = "helm_plate_pvpalliance_a_01_nim.m2", + }, + { + fileId = "140828", + text = "helm_plate_pvpalliance_a_01_orf.m2", + value = "helm_plate_pvpalliance_a_01_orf.m2", + }, + { + fileId = "140829", + text = "helm_plate_pvpalliance_a_01_orm.m2", + value = "helm_plate_pvpalliance_a_01_orm.m2", + }, + { + fileId = "140830", + text = "helm_plate_pvpalliance_a_01_scf.m2", + value = "helm_plate_pvpalliance_a_01_scf.m2", + }, + { + fileId = "140831", + text = "helm_plate_pvpalliance_a_01_scm.m2", + value = "helm_plate_pvpalliance_a_01_scm.m2", + }, + { + fileId = "140832", + text = "helm_plate_pvpalliance_a_01_taf.m2", + value = "helm_plate_pvpalliance_a_01_taf.m2", + }, + { + fileId = "140833", + text = "helm_plate_pvpalliance_a_01_tam.m2", + value = "helm_plate_pvpalliance_a_01_tam.m2", + }, + { + fileId = "140834", + text = "helm_plate_pvpalliance_a_01_trf.m2", + value = "helm_plate_pvpalliance_a_01_trf.m2", + }, + { + fileId = "140835", + text = "helm_plate_pvpalliance_a_01_trm.m2", + value = "helm_plate_pvpalliance_a_01_trm.m2", + }, + { + fileId = "140839", + text = "helm_plate_pvpalliance_c_01_gom.m2", + value = "helm_plate_pvpalliance_c_01_gom.m2", + }, + { + fileId = "238086", + text = "helm_plate_pvpdeathknight_b_01_bef.m2", + value = "helm_plate_pvpdeathknight_b_01_bef.m2", + }, + { + fileId = "238087", + text = "helm_plate_pvpdeathknight_b_01_bem.m2", + value = "helm_plate_pvpdeathknight_b_01_bem.m2", + }, + { + fileId = "238088", + text = "helm_plate_pvpdeathknight_b_01_drf.m2", + value = "helm_plate_pvpdeathknight_b_01_drf.m2", + }, + { + fileId = "238089", + text = "helm_plate_pvpdeathknight_b_01_drm.m2", + value = "helm_plate_pvpdeathknight_b_01_drm.m2", + }, + { + fileId = "238090", + text = "helm_plate_pvpdeathknight_b_01_dwf.m2", + value = "helm_plate_pvpdeathknight_b_01_dwf.m2", + }, + { + fileId = "238091", + text = "helm_plate_pvpdeathknight_b_01_dwm.m2", + value = "helm_plate_pvpdeathknight_b_01_dwm.m2", + }, + { + fileId = "238092", + text = "helm_plate_pvpdeathknight_b_01_gnf.m2", + value = "helm_plate_pvpdeathknight_b_01_gnf.m2", + }, + { + fileId = "238093", + text = "helm_plate_pvpdeathknight_b_01_gnm.m2", + value = "helm_plate_pvpdeathknight_b_01_gnm.m2", + }, + { + fileId = "238094", + text = "helm_plate_pvpdeathknight_b_01_gof.m2", + value = "helm_plate_pvpdeathknight_b_01_gof.m2", + }, + { + fileId = "238095", + text = "helm_plate_pvpdeathknight_b_01_gom.m2", + value = "helm_plate_pvpdeathknight_b_01_gom.m2", + }, + { + fileId = "238096", + text = "helm_plate_pvpdeathknight_b_01_huf.m2", + value = "helm_plate_pvpdeathknight_b_01_huf.m2", + }, + { + fileId = "238097", + text = "helm_plate_pvpdeathknight_b_01_hum.m2", + value = "helm_plate_pvpdeathknight_b_01_hum.m2", + }, + { + fileId = "238098", + text = "helm_plate_pvpdeathknight_b_01_nif.m2", + value = "helm_plate_pvpdeathknight_b_01_nif.m2", + }, + { + fileId = "238099", + text = "helm_plate_pvpdeathknight_b_01_nim.m2", + value = "helm_plate_pvpdeathknight_b_01_nim.m2", + }, + { + fileId = "238100", + text = "helm_plate_pvpdeathknight_b_01_orf.m2", + value = "helm_plate_pvpdeathknight_b_01_orf.m2", + }, + { + fileId = "238101", + text = "helm_plate_pvpdeathknight_b_01_orm.m2", + value = "helm_plate_pvpdeathknight_b_01_orm.m2", + }, + { + fileId = "238102", + text = "helm_plate_pvpdeathknight_b_01_scf.m2", + value = "helm_plate_pvpdeathknight_b_01_scf.m2", + }, + { + fileId = "238103", + text = "helm_plate_pvpdeathknight_b_01_scm.m2", + value = "helm_plate_pvpdeathknight_b_01_scm.m2", + }, + { + fileId = "238104", + text = "helm_plate_pvpdeathknight_b_01_taf.m2", + value = "helm_plate_pvpdeathknight_b_01_taf.m2", + }, + { + fileId = "238105", + text = "helm_plate_pvpdeathknight_b_01_tam.m2", + value = "helm_plate_pvpdeathknight_b_01_tam.m2", + }, + { + fileId = "238106", + text = "helm_plate_pvpdeathknight_b_01_trf.m2", + value = "helm_plate_pvpdeathknight_b_01_trf.m2", + }, + { + fileId = "238107", + text = "helm_plate_pvpdeathknight_b_01_trm.m2", + value = "helm_plate_pvpdeathknight_b_01_trm.m2", + }, + { + fileId = "255237", + text = "helm_plate_pvpdeathknight_b_02_bef.m2", + value = "helm_plate_pvpdeathknight_b_02_bef.m2", + }, + { + fileId = "255242", + text = "helm_plate_pvpdeathknight_b_02_bem.m2", + value = "helm_plate_pvpdeathknight_b_02_bem.m2", + }, + { + fileId = "255243", + text = "helm_plate_pvpdeathknight_b_02_drf.m2", + value = "helm_plate_pvpdeathknight_b_02_drf.m2", + }, + { + fileId = "255244", + text = "helm_plate_pvpdeathknight_b_02_drm.m2", + value = "helm_plate_pvpdeathknight_b_02_drm.m2", + }, + { + fileId = "255245", + text = "helm_plate_pvpdeathknight_b_02_dwf.m2", + value = "helm_plate_pvpdeathknight_b_02_dwf.m2", + }, + { + fileId = "255246", + text = "helm_plate_pvpdeathknight_b_02_dwm.m2", + value = "helm_plate_pvpdeathknight_b_02_dwm.m2", + }, + { + fileId = "255247", + text = "helm_plate_pvpdeathknight_b_02_gnf.m2", + value = "helm_plate_pvpdeathknight_b_02_gnf.m2", + }, + { + fileId = "255248", + text = "helm_plate_pvpdeathknight_b_02_gnm.m2", + value = "helm_plate_pvpdeathknight_b_02_gnm.m2", + }, + { + fileId = "255249", + text = "helm_plate_pvpdeathknight_b_02_gof.m2", + value = "helm_plate_pvpdeathknight_b_02_gof.m2", + }, + { + fileId = "255250", + text = "helm_plate_pvpdeathknight_b_02_gom.m2", + value = "helm_plate_pvpdeathknight_b_02_gom.m2", + }, + { + fileId = "255251", + text = "helm_plate_pvpdeathknight_b_02_huf.m2", + value = "helm_plate_pvpdeathknight_b_02_huf.m2", + }, + { + fileId = "254903", + text = "helm_plate_pvpdeathknight_b_02_hum.m2", + value = "helm_plate_pvpdeathknight_b_02_hum.m2", + }, + { + fileId = "255252", + text = "helm_plate_pvpdeathknight_b_02_nif.m2", + value = "helm_plate_pvpdeathknight_b_02_nif.m2", + }, + { + fileId = "255253", + text = "helm_plate_pvpdeathknight_b_02_nim.m2", + value = "helm_plate_pvpdeathknight_b_02_nim.m2", + }, + { + fileId = "255254", + text = "helm_plate_pvpdeathknight_b_02_orf.m2", + value = "helm_plate_pvpdeathknight_b_02_orf.m2", + }, + { + fileId = "255255", + text = "helm_plate_pvpdeathknight_b_02_orm.m2", + value = "helm_plate_pvpdeathknight_b_02_orm.m2", + }, + { + fileId = "255256", + text = "helm_plate_pvpdeathknight_b_02_scf.m2", + value = "helm_plate_pvpdeathknight_b_02_scf.m2", + }, + { + fileId = "255257", + text = "helm_plate_pvpdeathknight_b_02_scm.m2", + value = "helm_plate_pvpdeathknight_b_02_scm.m2", + }, + { + fileId = "255258", + text = "helm_plate_pvpdeathknight_b_02_taf.m2", + value = "helm_plate_pvpdeathknight_b_02_taf.m2", + }, + { + fileId = "255259", + text = "helm_plate_pvpdeathknight_b_02_tam.m2", + value = "helm_plate_pvpdeathknight_b_02_tam.m2", + }, + { + fileId = "255260", + text = "helm_plate_pvpdeathknight_b_02_trf.m2", + value = "helm_plate_pvpdeathknight_b_02_trf.m2", + }, + { + fileId = "255261", + text = "helm_plate_pvpdeathknight_b_02_trm.m2", + value = "helm_plate_pvpdeathknight_b_02_trm.m2", + }, + { + fileId = "304713", + text = "helm_plate_pvpdeathknight_b_03_bef.m2", + value = "helm_plate_pvpdeathknight_b_03_bef.m2", + }, + { + fileId = "304714", + text = "helm_plate_pvpdeathknight_b_03_bem.m2", + value = "helm_plate_pvpdeathknight_b_03_bem.m2", + }, + { + fileId = "304715", + text = "helm_plate_pvpdeathknight_b_03_drf.m2", + value = "helm_plate_pvpdeathknight_b_03_drf.m2", + }, + { + fileId = "304716", + text = "helm_plate_pvpdeathknight_b_03_drm.m2", + value = "helm_plate_pvpdeathknight_b_03_drm.m2", + }, + { + fileId = "304717", + text = "helm_plate_pvpdeathknight_b_03_dwf.m2", + value = "helm_plate_pvpdeathknight_b_03_dwf.m2", + }, + { + fileId = "304718", + text = "helm_plate_pvpdeathknight_b_03_dwm.m2", + value = "helm_plate_pvpdeathknight_b_03_dwm.m2", + }, + { + fileId = "304719", + text = "helm_plate_pvpdeathknight_b_03_gnf.m2", + value = "helm_plate_pvpdeathknight_b_03_gnf.m2", + }, + { + fileId = "304720", + text = "helm_plate_pvpdeathknight_b_03_gnm.m2", + value = "helm_plate_pvpdeathknight_b_03_gnm.m2", + }, + { + fileId = "304721", + text = "helm_plate_pvpdeathknight_b_03_gof.m2", + value = "helm_plate_pvpdeathknight_b_03_gof.m2", + }, + { + fileId = "304722", + text = "helm_plate_pvpdeathknight_b_03_gom.m2", + value = "helm_plate_pvpdeathknight_b_03_gom.m2", + }, + { + fileId = "304723", + text = "helm_plate_pvpdeathknight_b_03_huf.m2", + value = "helm_plate_pvpdeathknight_b_03_huf.m2", + }, + { + fileId = "304724", + text = "helm_plate_pvpdeathknight_b_03_hum.m2", + value = "helm_plate_pvpdeathknight_b_03_hum.m2", + }, + { + fileId = "304725", + text = "helm_plate_pvpdeathknight_b_03_nif.m2", + value = "helm_plate_pvpdeathknight_b_03_nif.m2", + }, + { + fileId = "304726", + text = "helm_plate_pvpdeathknight_b_03_nim.m2", + value = "helm_plate_pvpdeathknight_b_03_nim.m2", + }, + { + fileId = "304727", + text = "helm_plate_pvpdeathknight_b_03_orf.m2", + value = "helm_plate_pvpdeathknight_b_03_orf.m2", + }, + { + fileId = "304728", + text = "helm_plate_pvpdeathknight_b_03_orm.m2", + value = "helm_plate_pvpdeathknight_b_03_orm.m2", + }, + { + fileId = "304729", + text = "helm_plate_pvpdeathknight_b_03_scf.m2", + value = "helm_plate_pvpdeathknight_b_03_scf.m2", + }, + { + fileId = "304730", + text = "helm_plate_pvpdeathknight_b_03_scm.m2", + value = "helm_plate_pvpdeathknight_b_03_scm.m2", + }, + { + fileId = "304731", + text = "helm_plate_pvpdeathknight_b_03_taf.m2", + value = "helm_plate_pvpdeathknight_b_03_taf.m2", + }, + { + fileId = "304732", + text = "helm_plate_pvpdeathknight_b_03_tam.m2", + value = "helm_plate_pvpdeathknight_b_03_tam.m2", + }, + { + fileId = "304733", + text = "helm_plate_pvpdeathknight_b_03_trf.m2", + value = "helm_plate_pvpdeathknight_b_03_trf.m2", + }, + { + fileId = "304734", + text = "helm_plate_pvpdeathknight_b_03_trm.m2", + value = "helm_plate_pvpdeathknight_b_03_trm.m2", + }, + { + fileId = "343817", + text = "helm_plate_pvpdeathknight_b_04_bef.m2", + value = "helm_plate_pvpdeathknight_b_04_bef.m2", + }, + { + fileId = "343818", + text = "helm_plate_pvpdeathknight_b_04_bem.m2", + value = "helm_plate_pvpdeathknight_b_04_bem.m2", + }, + { + fileId = "343819", + text = "helm_plate_pvpdeathknight_b_04_drf.m2", + value = "helm_plate_pvpdeathknight_b_04_drf.m2", + }, + { + fileId = "343820", + text = "helm_plate_pvpdeathknight_b_04_drm.m2", + value = "helm_plate_pvpdeathknight_b_04_drm.m2", + }, + { + fileId = "343821", + text = "helm_plate_pvpdeathknight_b_04_dwf.m2", + value = "helm_plate_pvpdeathknight_b_04_dwf.m2", + }, + { + fileId = "343822", + text = "helm_plate_pvpdeathknight_b_04_dwm.m2", + value = "helm_plate_pvpdeathknight_b_04_dwm.m2", + }, + { + fileId = "343823", + text = "helm_plate_pvpdeathknight_b_04_gnf.m2", + value = "helm_plate_pvpdeathknight_b_04_gnf.m2", + }, + { + fileId = "343824", + text = "helm_plate_pvpdeathknight_b_04_gnm.m2", + value = "helm_plate_pvpdeathknight_b_04_gnm.m2", + }, + { + fileId = "343825", + text = "helm_plate_pvpdeathknight_b_04_gof.m2", + value = "helm_plate_pvpdeathknight_b_04_gof.m2", + }, + { + fileId = "343826", + text = "helm_plate_pvpdeathknight_b_04_gom.m2", + value = "helm_plate_pvpdeathknight_b_04_gom.m2", + }, + { + fileId = "343827", + text = "helm_plate_pvpdeathknight_b_04_huf.m2", + value = "helm_plate_pvpdeathknight_b_04_huf.m2", + }, + { + fileId = "343828", + text = "helm_plate_pvpdeathknight_b_04_hum.m2", + value = "helm_plate_pvpdeathknight_b_04_hum.m2", + }, + { + fileId = "343829", + text = "helm_plate_pvpdeathknight_b_04_nif.m2", + value = "helm_plate_pvpdeathknight_b_04_nif.m2", + }, + { + fileId = "343830", + text = "helm_plate_pvpdeathknight_b_04_nim.m2", + value = "helm_plate_pvpdeathknight_b_04_nim.m2", + }, + { + fileId = "343831", + text = "helm_plate_pvpdeathknight_b_04_orf.m2", + value = "helm_plate_pvpdeathknight_b_04_orf.m2", + }, + { + fileId = "343832", + text = "helm_plate_pvpdeathknight_b_04_orm.m2", + value = "helm_plate_pvpdeathknight_b_04_orm.m2", + }, + { + fileId = "343833", + text = "helm_plate_pvpdeathknight_b_04_scf.m2", + value = "helm_plate_pvpdeathknight_b_04_scf.m2", + }, + { + fileId = "343834", + text = "helm_plate_pvpdeathknight_b_04_scm.m2", + value = "helm_plate_pvpdeathknight_b_04_scm.m2", + }, + { + fileId = "343835", + text = "helm_plate_pvpdeathknight_b_04_taf.m2", + value = "helm_plate_pvpdeathknight_b_04_taf.m2", + }, + { + fileId = "343836", + text = "helm_plate_pvpdeathknight_b_04_tam.m2", + value = "helm_plate_pvpdeathknight_b_04_tam.m2", + }, + { + fileId = "343837", + text = "helm_plate_pvpdeathknight_b_04_trf.m2", + value = "helm_plate_pvpdeathknight_b_04_trf.m2", + }, + { + fileId = "343838", + text = "helm_plate_pvpdeathknight_b_04_trm.m2", + value = "helm_plate_pvpdeathknight_b_04_trm.m2", + }, + { + fileId = "140840", + text = "helm_plate_pvphorde_a_01_bef.m2", + value = "helm_plate_pvphorde_a_01_bef.m2", + }, + { + fileId = "140841", + text = "helm_plate_pvphorde_a_01_bem.m2", + value = "helm_plate_pvphorde_a_01_bem.m2", + }, + { + fileId = "140842", + text = "helm_plate_pvphorde_a_01_drf.m2", + value = "helm_plate_pvphorde_a_01_drf.m2", + }, + { + fileId = "140843", + text = "helm_plate_pvphorde_a_01_drm.m2", + value = "helm_plate_pvphorde_a_01_drm.m2", + }, + { + fileId = "140844", + text = "helm_plate_pvphorde_a_01_dwf.m2", + value = "helm_plate_pvphorde_a_01_dwf.m2", + }, + { + fileId = "140845", + text = "helm_plate_pvphorde_a_01_dwm.m2", + value = "helm_plate_pvphorde_a_01_dwm.m2", + }, + { + fileId = "140846", + text = "helm_plate_pvphorde_a_01_gnf.m2", + value = "helm_plate_pvphorde_a_01_gnf.m2", + }, + { + fileId = "140847", + text = "helm_plate_pvphorde_a_01_gnm.m2", + value = "helm_plate_pvphorde_a_01_gnm.m2", + }, + { + fileId = "140848", + text = "helm_plate_pvphorde_a_01_gof.m2", + value = "helm_plate_pvphorde_a_01_gof.m2", + }, + { + fileId = "140849", + text = "helm_plate_pvphorde_a_01_huf.m2", + value = "helm_plate_pvphorde_a_01_huf.m2", + }, + { + fileId = "140850", + text = "helm_plate_pvphorde_a_01_hum.m2", + value = "helm_plate_pvphorde_a_01_hum.m2", + }, + { + fileId = "140851", + text = "helm_plate_pvphorde_a_01_nif.m2", + value = "helm_plate_pvphorde_a_01_nif.m2", + }, + { + fileId = "140852", + text = "helm_plate_pvphorde_a_01_nim.m2", + value = "helm_plate_pvphorde_a_01_nim.m2", + }, + { + fileId = "140853", + text = "helm_plate_pvphorde_a_01_orf.m2", + value = "helm_plate_pvphorde_a_01_orf.m2", + }, + { + fileId = "140854", + text = "helm_plate_pvphorde_a_01_orm.m2", + value = "helm_plate_pvphorde_a_01_orm.m2", + }, + { + fileId = "140855", + text = "helm_plate_pvphorde_a_01_scf.m2", + value = "helm_plate_pvphorde_a_01_scf.m2", + }, + { + fileId = "140856", + text = "helm_plate_pvphorde_a_01_scm.m2", + value = "helm_plate_pvphorde_a_01_scm.m2", + }, + { + fileId = "140857", + text = "helm_plate_pvphorde_a_01_taf.m2", + value = "helm_plate_pvphorde_a_01_taf.m2", + }, + { + fileId = "140858", + text = "helm_plate_pvphorde_a_01_tam.m2", + value = "helm_plate_pvphorde_a_01_tam.m2", + }, + { + fileId = "140859", + text = "helm_plate_pvphorde_a_01_trf.m2", + value = "helm_plate_pvphorde_a_01_trf.m2", + }, + { + fileId = "140860", + text = "helm_plate_pvphorde_a_01_trm.m2", + value = "helm_plate_pvphorde_a_01_trm.m2", + }, + { + fileId = "140862", + text = "helm_plate_pvphorde_b_01_bem.m2", + value = "helm_plate_pvphorde_b_01_bem.m2", + }, + { + fileId = "238113", + text = "helm_plate_pvppaladin_b_01_bef.m2", + value = "helm_plate_pvppaladin_b_01_bef.m2", + }, + { + fileId = "238114", + text = "helm_plate_pvppaladin_b_01_bem.m2", + value = "helm_plate_pvppaladin_b_01_bem.m2", + }, + { + fileId = "238115", + text = "helm_plate_pvppaladin_b_01_drf.m2", + value = "helm_plate_pvppaladin_b_01_drf.m2", + }, + { + fileId = "238116", + text = "helm_plate_pvppaladin_b_01_drm.m2", + value = "helm_plate_pvppaladin_b_01_drm.m2", + }, + { + fileId = "238117", + text = "helm_plate_pvppaladin_b_01_dwf.m2", + value = "helm_plate_pvppaladin_b_01_dwf.m2", + }, + { + fileId = "238118", + text = "helm_plate_pvppaladin_b_01_dwm.m2", + value = "helm_plate_pvppaladin_b_01_dwm.m2", + }, + { + fileId = "238119", + text = "helm_plate_pvppaladin_b_01_gnf.m2", + value = "helm_plate_pvppaladin_b_01_gnf.m2", + }, + { + fileId = "238120", + text = "helm_plate_pvppaladin_b_01_gnm.m2", + value = "helm_plate_pvppaladin_b_01_gnm.m2", + }, + { + fileId = "238121", + text = "helm_plate_pvppaladin_b_01_gof.m2", + value = "helm_plate_pvppaladin_b_01_gof.m2", + }, + { + fileId = "238122", + text = "helm_plate_pvppaladin_b_01_gom.m2", + value = "helm_plate_pvppaladin_b_01_gom.m2", + }, + { + fileId = "238123", + text = "helm_plate_pvppaladin_b_01_huf.m2", + value = "helm_plate_pvppaladin_b_01_huf.m2", + }, + { + fileId = "238124", + text = "helm_plate_pvppaladin_b_01_hum.m2", + value = "helm_plate_pvppaladin_b_01_hum.m2", + }, + { + fileId = "238125", + text = "helm_plate_pvppaladin_b_01_nif.m2", + value = "helm_plate_pvppaladin_b_01_nif.m2", + }, + { + fileId = "238126", + text = "helm_plate_pvppaladin_b_01_nim.m2", + value = "helm_plate_pvppaladin_b_01_nim.m2", + }, + { + fileId = "238127", + text = "helm_plate_pvppaladin_b_01_orf.m2", + value = "helm_plate_pvppaladin_b_01_orf.m2", + }, + { + fileId = "238128", + text = "helm_plate_pvppaladin_b_01_orm.m2", + value = "helm_plate_pvppaladin_b_01_orm.m2", + }, + { + fileId = "238129", + text = "helm_plate_pvppaladin_b_01_scf.m2", + value = "helm_plate_pvppaladin_b_01_scf.m2", + }, + { + fileId = "238130", + text = "helm_plate_pvppaladin_b_01_scm.m2", + value = "helm_plate_pvppaladin_b_01_scm.m2", + }, + { + fileId = "238131", + text = "helm_plate_pvppaladin_b_01_taf.m2", + value = "helm_plate_pvppaladin_b_01_taf.m2", + }, + { + fileId = "238132", + text = "helm_plate_pvppaladin_b_01_tam.m2", + value = "helm_plate_pvppaladin_b_01_tam.m2", + }, + { + fileId = "238133", + text = "helm_plate_pvppaladin_b_01_trf.m2", + value = "helm_plate_pvppaladin_b_01_trf.m2", + }, + { + fileId = "238134", + text = "helm_plate_pvppaladin_b_01_trm.m2", + value = "helm_plate_pvppaladin_b_01_trm.m2", + }, + { + fileId = "254723", + text = "helm_plate_pvppaladin_b_02_bef.m2", + value = "helm_plate_pvppaladin_b_02_bef.m2", + }, + { + fileId = "254724", + text = "helm_plate_pvppaladin_b_02_bem.m2", + value = "helm_plate_pvppaladin_b_02_bem.m2", + }, + { + fileId = "254725", + text = "helm_plate_pvppaladin_b_02_drf.m2", + value = "helm_plate_pvppaladin_b_02_drf.m2", + }, + { + fileId = "254726", + text = "helm_plate_pvppaladin_b_02_drm.m2", + value = "helm_plate_pvppaladin_b_02_drm.m2", + }, + { + fileId = "254744", + text = "helm_plate_pvppaladin_b_02_dwf.m2", + value = "helm_plate_pvppaladin_b_02_dwf.m2", + }, + { + fileId = "254727", + text = "helm_plate_pvppaladin_b_02_dwm.m2", + value = "helm_plate_pvppaladin_b_02_dwm.m2", + }, + { + fileId = "254745", + text = "helm_plate_pvppaladin_b_02_gnf.m2", + value = "helm_plate_pvppaladin_b_02_gnf.m2", + }, + { + fileId = "254746", + text = "helm_plate_pvppaladin_b_02_gnm.m2", + value = "helm_plate_pvppaladin_b_02_gnm.m2", + }, + { + fileId = "254747", + text = "helm_plate_pvppaladin_b_02_gof.m2", + value = "helm_plate_pvppaladin_b_02_gof.m2", + }, + { + fileId = "254748", + text = "helm_plate_pvppaladin_b_02_gom.m2", + value = "helm_plate_pvppaladin_b_02_gom.m2", + }, + { + fileId = "254728", + text = "helm_plate_pvppaladin_b_02_huf.m2", + value = "helm_plate_pvppaladin_b_02_huf.m2", + }, + { + fileId = "254729", + text = "helm_plate_pvppaladin_b_02_hum.m2", + value = "helm_plate_pvppaladin_b_02_hum.m2", + }, + { + fileId = "254749", + text = "helm_plate_pvppaladin_b_02_nif.m2", + value = "helm_plate_pvppaladin_b_02_nif.m2", + }, + { + fileId = "254750", + text = "helm_plate_pvppaladin_b_02_nim.m2", + value = "helm_plate_pvppaladin_b_02_nim.m2", + }, + { + fileId = "254751", + text = "helm_plate_pvppaladin_b_02_orf.m2", + value = "helm_plate_pvppaladin_b_02_orf.m2", + }, + { + fileId = "254752", + text = "helm_plate_pvppaladin_b_02_orm.m2", + value = "helm_plate_pvppaladin_b_02_orm.m2", + }, + { + fileId = "254753", + text = "helm_plate_pvppaladin_b_02_scf.m2", + value = "helm_plate_pvppaladin_b_02_scf.m2", + }, + { + fileId = "254754", + text = "helm_plate_pvppaladin_b_02_scm.m2", + value = "helm_plate_pvppaladin_b_02_scm.m2", + }, + { + fileId = "254755", + text = "helm_plate_pvppaladin_b_02_taf.m2", + value = "helm_plate_pvppaladin_b_02_taf.m2", + }, + { + fileId = "254756", + text = "helm_plate_pvppaladin_b_02_tam.m2", + value = "helm_plate_pvppaladin_b_02_tam.m2", + }, + { + fileId = "254757", + text = "helm_plate_pvppaladin_b_02_trf.m2", + value = "helm_plate_pvppaladin_b_02_trf.m2", + }, + { + fileId = "254758", + text = "helm_plate_pvppaladin_b_02_trm.m2", + value = "helm_plate_pvppaladin_b_02_trm.m2", + }, + { + fileId = "304848", + text = "helm_plate_pvppaladin_b_03_bef.m2", + value = "helm_plate_pvppaladin_b_03_bef.m2", + }, + { + fileId = "304849", + text = "helm_plate_pvppaladin_b_03_bem.m2", + value = "helm_plate_pvppaladin_b_03_bem.m2", + }, + { + fileId = "304850", + text = "helm_plate_pvppaladin_b_03_drf.m2", + value = "helm_plate_pvppaladin_b_03_drf.m2", + }, + { + fileId = "304851", + text = "helm_plate_pvppaladin_b_03_drm.m2", + value = "helm_plate_pvppaladin_b_03_drm.m2", + }, + { + fileId = "304852", + text = "helm_plate_pvppaladin_b_03_dwf.m2", + value = "helm_plate_pvppaladin_b_03_dwf.m2", + }, + { + fileId = "304853", + text = "helm_plate_pvppaladin_b_03_dwm.m2", + value = "helm_plate_pvppaladin_b_03_dwm.m2", + }, + { + fileId = "304854", + text = "helm_plate_pvppaladin_b_03_gnf.m2", + value = "helm_plate_pvppaladin_b_03_gnf.m2", + }, + { + fileId = "304858", + text = "helm_plate_pvppaladin_b_03_gnm.m2", + value = "helm_plate_pvppaladin_b_03_gnm.m2", + }, + { + fileId = "304859", + text = "helm_plate_pvppaladin_b_03_gof.m2", + value = "helm_plate_pvppaladin_b_03_gof.m2", + }, + { + fileId = "304860", + text = "helm_plate_pvppaladin_b_03_gom.m2", + value = "helm_plate_pvppaladin_b_03_gom.m2", + }, + { + fileId = "304861", + text = "helm_plate_pvppaladin_b_03_huf.m2", + value = "helm_plate_pvppaladin_b_03_huf.m2", + }, + { + fileId = "304862", + text = "helm_plate_pvppaladin_b_03_hum.m2", + value = "helm_plate_pvppaladin_b_03_hum.m2", + }, + { + fileId = "304863", + text = "helm_plate_pvppaladin_b_03_nif.m2", + value = "helm_plate_pvppaladin_b_03_nif.m2", + }, + { + fileId = "304864", + text = "helm_plate_pvppaladin_b_03_nim.m2", + value = "helm_plate_pvppaladin_b_03_nim.m2", + }, + { + fileId = "304865", + text = "helm_plate_pvppaladin_b_03_orf.m2", + value = "helm_plate_pvppaladin_b_03_orf.m2", + }, + { + fileId = "304866", + text = "helm_plate_pvppaladin_b_03_orm.m2", + value = "helm_plate_pvppaladin_b_03_orm.m2", + }, + { + fileId = "304867", + text = "helm_plate_pvppaladin_b_03_scf.m2", + value = "helm_plate_pvppaladin_b_03_scf.m2", + }, + { + fileId = "304868", + text = "helm_plate_pvppaladin_b_03_scm.m2", + value = "helm_plate_pvppaladin_b_03_scm.m2", + }, + { + fileId = "304869", + text = "helm_plate_pvppaladin_b_03_taf.m2", + value = "helm_plate_pvppaladin_b_03_taf.m2", + }, + { + fileId = "304870", + text = "helm_plate_pvppaladin_b_03_tam.m2", + value = "helm_plate_pvppaladin_b_03_tam.m2", + }, + { + fileId = "304871", + text = "helm_plate_pvppaladin_b_03_trf.m2", + value = "helm_plate_pvppaladin_b_03_trf.m2", + }, + { + fileId = "304882", + text = "helm_plate_pvppaladin_b_03_trm.m2", + value = "helm_plate_pvppaladin_b_03_trm.m2", + }, + { + fileId = "346952", + text = "helm_plate_pvppaladin_b_04_bef.m2", + value = "helm_plate_pvppaladin_b_04_bef.m2", + }, + { + fileId = "346953", + text = "helm_plate_pvppaladin_b_04_bem.m2", + value = "helm_plate_pvppaladin_b_04_bem.m2", + }, + { + fileId = "346954", + text = "helm_plate_pvppaladin_b_04_drf.m2", + value = "helm_plate_pvppaladin_b_04_drf.m2", + }, + { + fileId = "346955", + text = "helm_plate_pvppaladin_b_04_drm.m2", + value = "helm_plate_pvppaladin_b_04_drm.m2", + }, + { + fileId = "346956", + text = "helm_plate_pvppaladin_b_04_dwf.m2", + value = "helm_plate_pvppaladin_b_04_dwf.m2", + }, + { + fileId = "346957", + text = "helm_plate_pvppaladin_b_04_dwm.m2", + value = "helm_plate_pvppaladin_b_04_dwm.m2", + }, + { + fileId = "346958", + text = "helm_plate_pvppaladin_b_04_gnf.m2", + value = "helm_plate_pvppaladin_b_04_gnf.m2", + }, + { + fileId = "346959", + text = "helm_plate_pvppaladin_b_04_gnm.m2", + value = "helm_plate_pvppaladin_b_04_gnm.m2", + }, + { + fileId = "346960", + text = "helm_plate_pvppaladin_b_04_gof.m2", + value = "helm_plate_pvppaladin_b_04_gof.m2", + }, + { + fileId = "346961", + text = "helm_plate_pvppaladin_b_04_gom.m2", + value = "helm_plate_pvppaladin_b_04_gom.m2", + }, + { + fileId = "346962", + text = "helm_plate_pvppaladin_b_04_huf.m2", + value = "helm_plate_pvppaladin_b_04_huf.m2", + }, + { + fileId = "346963", + text = "helm_plate_pvppaladin_b_04_hum.m2", + value = "helm_plate_pvppaladin_b_04_hum.m2", + }, + { + fileId = "346964", + text = "helm_plate_pvppaladin_b_04_nif.m2", + value = "helm_plate_pvppaladin_b_04_nif.m2", + }, + { + fileId = "346965", + text = "helm_plate_pvppaladin_b_04_nim.m2", + value = "helm_plate_pvppaladin_b_04_nim.m2", + }, + { + fileId = "346966", + text = "helm_plate_pvppaladin_b_04_orf.m2", + value = "helm_plate_pvppaladin_b_04_orf.m2", + }, + { + fileId = "346967", + text = "helm_plate_pvppaladin_b_04_orm.m2", + value = "helm_plate_pvppaladin_b_04_orm.m2", + }, + { + fileId = "346968", + text = "helm_plate_pvppaladin_b_04_scf.m2", + value = "helm_plate_pvppaladin_b_04_scf.m2", + }, + { + fileId = "346969", + text = "helm_plate_pvppaladin_b_04_scm.m2", + value = "helm_plate_pvppaladin_b_04_scm.m2", + }, + { + fileId = "346970", + text = "helm_plate_pvppaladin_b_04_taf.m2", + value = "helm_plate_pvppaladin_b_04_taf.m2", + }, + { + fileId = "346971", + text = "helm_plate_pvppaladin_b_04_tam.m2", + value = "helm_plate_pvppaladin_b_04_tam.m2", + }, + { + fileId = "346972", + text = "helm_plate_pvppaladin_b_04_trf.m2", + value = "helm_plate_pvppaladin_b_04_trf.m2", + }, + { + fileId = "346973", + text = "helm_plate_pvppaladin_b_04_trm.m2", + value = "helm_plate_pvppaladin_b_04_trm.m2", + }, + { + fileId = "238139", + text = "helm_plate_pvpwarrior_b_01_bef.m2", + value = "helm_plate_pvpwarrior_b_01_bef.m2", + }, + { + fileId = "238140", + text = "helm_plate_pvpwarrior_b_01_bem.m2", + value = "helm_plate_pvpwarrior_b_01_bem.m2", + }, + { + fileId = "238141", + text = "helm_plate_pvpwarrior_b_01_drf.m2", + value = "helm_plate_pvpwarrior_b_01_drf.m2", + }, + { + fileId = "238142", + text = "helm_plate_pvpwarrior_b_01_drm.m2", + value = "helm_plate_pvpwarrior_b_01_drm.m2", + }, + { + fileId = "238143", + text = "helm_plate_pvpwarrior_b_01_dwf.m2", + value = "helm_plate_pvpwarrior_b_01_dwf.m2", + }, + { + fileId = "238144", + text = "helm_plate_pvpwarrior_b_01_dwm.m2", + value = "helm_plate_pvpwarrior_b_01_dwm.m2", + }, + { + fileId = "238145", + text = "helm_plate_pvpwarrior_b_01_gnf.m2", + value = "helm_plate_pvpwarrior_b_01_gnf.m2", + }, + { + fileId = "238146", + text = "helm_plate_pvpwarrior_b_01_gnm.m2", + value = "helm_plate_pvpwarrior_b_01_gnm.m2", + }, + { + fileId = "238147", + text = "helm_plate_pvpwarrior_b_01_gof.m2", + value = "helm_plate_pvpwarrior_b_01_gof.m2", + }, + { + fileId = "238148", + text = "helm_plate_pvpwarrior_b_01_gom.m2", + value = "helm_plate_pvpwarrior_b_01_gom.m2", + }, + { + fileId = "238149", + text = "helm_plate_pvpwarrior_b_01_huf.m2", + value = "helm_plate_pvpwarrior_b_01_huf.m2", + }, + { + fileId = "238150", + text = "helm_plate_pvpwarrior_b_01_hum.m2", + value = "helm_plate_pvpwarrior_b_01_hum.m2", + }, + { + fileId = "238151", + text = "helm_plate_pvpwarrior_b_01_nif.m2", + value = "helm_plate_pvpwarrior_b_01_nif.m2", + }, + { + fileId = "238152", + text = "helm_plate_pvpwarrior_b_01_nim.m2", + value = "helm_plate_pvpwarrior_b_01_nim.m2", + }, + { + fileId = "238153", + text = "helm_plate_pvpwarrior_b_01_orf.m2", + value = "helm_plate_pvpwarrior_b_01_orf.m2", + }, + { + fileId = "238154", + text = "helm_plate_pvpwarrior_b_01_orm.m2", + value = "helm_plate_pvpwarrior_b_01_orm.m2", + }, + { + fileId = "238155", + text = "helm_plate_pvpwarrior_b_01_scf.m2", + value = "helm_plate_pvpwarrior_b_01_scf.m2", + }, + { + fileId = "238156", + text = "helm_plate_pvpwarrior_b_01_scm.m2", + value = "helm_plate_pvpwarrior_b_01_scm.m2", + }, + { + fileId = "238157", + text = "helm_plate_pvpwarrior_b_01_taf.m2", + value = "helm_plate_pvpwarrior_b_01_taf.m2", + }, + { + fileId = "238158", + text = "helm_plate_pvpwarrior_b_01_tam.m2", + value = "helm_plate_pvpwarrior_b_01_tam.m2", + }, + { + fileId = "238159", + text = "helm_plate_pvpwarrior_b_01_trf.m2", + value = "helm_plate_pvpwarrior_b_01_trf.m2", + }, + { + fileId = "238160", + text = "helm_plate_pvpwarrior_b_01_trm.m2", + value = "helm_plate_pvpwarrior_b_01_trm.m2", + }, + { + fileId = "254383", + text = "helm_plate_pvpwarrior_b_02_bef.m2", + value = "helm_plate_pvpwarrior_b_02_bef.m2", + }, + { + fileId = "254384", + text = "helm_plate_pvpwarrior_b_02_bem.m2", + value = "helm_plate_pvpwarrior_b_02_bem.m2", + }, + { + fileId = "254385", + text = "helm_plate_pvpwarrior_b_02_drf.m2", + value = "helm_plate_pvpwarrior_b_02_drf.m2", + }, + { + fileId = "254386", + text = "helm_plate_pvpwarrior_b_02_drm.m2", + value = "helm_plate_pvpwarrior_b_02_drm.m2", + }, + { + fileId = "254387", + text = "helm_plate_pvpwarrior_b_02_dwf.m2", + value = "helm_plate_pvpwarrior_b_02_dwf.m2", + }, + { + fileId = "254388", + text = "helm_plate_pvpwarrior_b_02_dwm.m2", + value = "helm_plate_pvpwarrior_b_02_dwm.m2", + }, + { + fileId = "254389", + text = "helm_plate_pvpwarrior_b_02_gnf.m2", + value = "helm_plate_pvpwarrior_b_02_gnf.m2", + }, + { + fileId = "254390", + text = "helm_plate_pvpwarrior_b_02_gnm.m2", + value = "helm_plate_pvpwarrior_b_02_gnm.m2", + }, + { + fileId = "254391", + text = "helm_plate_pvpwarrior_b_02_gof.m2", + value = "helm_plate_pvpwarrior_b_02_gof.m2", + }, + { + fileId = "254392", + text = "helm_plate_pvpwarrior_b_02_gom.m2", + value = "helm_plate_pvpwarrior_b_02_gom.m2", + }, + { + fileId = "254393", + text = "helm_plate_pvpwarrior_b_02_huf.m2", + value = "helm_plate_pvpwarrior_b_02_huf.m2", + }, + { + fileId = "254394", + text = "helm_plate_pvpwarrior_b_02_hum.m2", + value = "helm_plate_pvpwarrior_b_02_hum.m2", + }, + { + fileId = "254395", + text = "helm_plate_pvpwarrior_b_02_nif.m2", + value = "helm_plate_pvpwarrior_b_02_nif.m2", + }, + { + fileId = "254396", + text = "helm_plate_pvpwarrior_b_02_nim.m2", + value = "helm_plate_pvpwarrior_b_02_nim.m2", + }, + { + fileId = "254397", + text = "helm_plate_pvpwarrior_b_02_orf.m2", + value = "helm_plate_pvpwarrior_b_02_orf.m2", + }, + { + fileId = "254398", + text = "helm_plate_pvpwarrior_b_02_orm.m2", + value = "helm_plate_pvpwarrior_b_02_orm.m2", + }, + { + fileId = "254399", + text = "helm_plate_pvpwarrior_b_02_scf.m2", + value = "helm_plate_pvpwarrior_b_02_scf.m2", + }, + { + fileId = "254400", + text = "helm_plate_pvpwarrior_b_02_scm.m2", + value = "helm_plate_pvpwarrior_b_02_scm.m2", + }, + { + fileId = "254401", + text = "helm_plate_pvpwarrior_b_02_taf.m2", + value = "helm_plate_pvpwarrior_b_02_taf.m2", + }, + { + fileId = "254402", + text = "helm_plate_pvpwarrior_b_02_tam.m2", + value = "helm_plate_pvpwarrior_b_02_tam.m2", + }, + { + fileId = "304452", + text = "helm_plate_pvpwarrior_b_02_trf.m2", + value = "helm_plate_pvpwarrior_b_02_trf.m2", + }, + { + fileId = "254403", + text = "helm_plate_pvpwarrior_b_02_trm.m2", + value = "helm_plate_pvpwarrior_b_02_trm.m2", + }, + { + fileId = "304428", + text = "helm_plate_pvpwarrior_b_03_bef.m2", + value = "helm_plate_pvpwarrior_b_03_bef.m2", + }, + { + fileId = "304429", + text = "helm_plate_pvpwarrior_b_03_bem.m2", + value = "helm_plate_pvpwarrior_b_03_bem.m2", + }, + { + fileId = "304430", + text = "helm_plate_pvpwarrior_b_03_drf.m2", + value = "helm_plate_pvpwarrior_b_03_drf.m2", + }, + { + fileId = "304431", + text = "helm_plate_pvpwarrior_b_03_drm.m2", + value = "helm_plate_pvpwarrior_b_03_drm.m2", + }, + { + fileId = "304432", + text = "helm_plate_pvpwarrior_b_03_dwf.m2", + value = "helm_plate_pvpwarrior_b_03_dwf.m2", + }, + { + fileId = "304433", + text = "helm_plate_pvpwarrior_b_03_dwm.m2", + value = "helm_plate_pvpwarrior_b_03_dwm.m2", + }, + { + fileId = "304434", + text = "helm_plate_pvpwarrior_b_03_gnf.m2", + value = "helm_plate_pvpwarrior_b_03_gnf.m2", + }, + { + fileId = "304435", + text = "helm_plate_pvpwarrior_b_03_gnm.m2", + value = "helm_plate_pvpwarrior_b_03_gnm.m2", + }, + { + fileId = "304436", + text = "helm_plate_pvpwarrior_b_03_gof.m2", + value = "helm_plate_pvpwarrior_b_03_gof.m2", + }, + { + fileId = "304437", + text = "helm_plate_pvpwarrior_b_03_gom.m2", + value = "helm_plate_pvpwarrior_b_03_gom.m2", + }, + { + fileId = "304438", + text = "helm_plate_pvpwarrior_b_03_huf.m2", + value = "helm_plate_pvpwarrior_b_03_huf.m2", + }, + { + fileId = "304439", + text = "helm_plate_pvpwarrior_b_03_hum.m2", + value = "helm_plate_pvpwarrior_b_03_hum.m2", + }, + { + fileId = "304440", + text = "helm_plate_pvpwarrior_b_03_nif.m2", + value = "helm_plate_pvpwarrior_b_03_nif.m2", + }, + { + fileId = "304441", + text = "helm_plate_pvpwarrior_b_03_nim.m2", + value = "helm_plate_pvpwarrior_b_03_nim.m2", + }, + { + fileId = "304442", + text = "helm_plate_pvpwarrior_b_03_orf.m2", + value = "helm_plate_pvpwarrior_b_03_orf.m2", + }, + { + fileId = "304443", + text = "helm_plate_pvpwarrior_b_03_orm.m2", + value = "helm_plate_pvpwarrior_b_03_orm.m2", + }, + { + fileId = "304444", + text = "helm_plate_pvpwarrior_b_03_scf.m2", + value = "helm_plate_pvpwarrior_b_03_scf.m2", + }, + { + fileId = "304445", + text = "helm_plate_pvpwarrior_b_03_scm.m2", + value = "helm_plate_pvpwarrior_b_03_scm.m2", + }, + { + fileId = "304446", + text = "helm_plate_pvpwarrior_b_03_taf.m2", + value = "helm_plate_pvpwarrior_b_03_taf.m2", + }, + { + fileId = "304447", + text = "helm_plate_pvpwarrior_b_03_tam.m2", + value = "helm_plate_pvpwarrior_b_03_tam.m2", + }, + { + fileId = "304448", + text = "helm_plate_pvpwarrior_b_03_trf.m2", + value = "helm_plate_pvpwarrior_b_03_trf.m2", + }, + { + fileId = "304449", + text = "helm_plate_pvpwarrior_b_03_trm.m2", + value = "helm_plate_pvpwarrior_b_03_trm.m2", + }, + { + fileId = "345707", + text = "helm_plate_pvpwarrior_b_04_bef.m2", + value = "helm_plate_pvpwarrior_b_04_bef.m2", + }, + { + fileId = "345708", + text = "helm_plate_pvpwarrior_b_04_bem.m2", + value = "helm_plate_pvpwarrior_b_04_bem.m2", + }, + { + fileId = "345709", + text = "helm_plate_pvpwarrior_b_04_drf.m2", + value = "helm_plate_pvpwarrior_b_04_drf.m2", + }, + { + fileId = "345710", + text = "helm_plate_pvpwarrior_b_04_drm.m2", + value = "helm_plate_pvpwarrior_b_04_drm.m2", + }, + { + fileId = "345711", + text = "helm_plate_pvpwarrior_b_04_dwf.m2", + value = "helm_plate_pvpwarrior_b_04_dwf.m2", + }, + { + fileId = "345712", + text = "helm_plate_pvpwarrior_b_04_dwm.m2", + value = "helm_plate_pvpwarrior_b_04_dwm.m2", + }, + { + fileId = "345713", + text = "helm_plate_pvpwarrior_b_04_gnf.m2", + value = "helm_plate_pvpwarrior_b_04_gnf.m2", + }, + { + fileId = "345714", + text = "helm_plate_pvpwarrior_b_04_gnm.m2", + value = "helm_plate_pvpwarrior_b_04_gnm.m2", + }, + { + fileId = "345715", + text = "helm_plate_pvpwarrior_b_04_gof.m2", + value = "helm_plate_pvpwarrior_b_04_gof.m2", + }, + { + fileId = "345716", + text = "helm_plate_pvpwarrior_b_04_gom.m2", + value = "helm_plate_pvpwarrior_b_04_gom.m2", + }, + { + fileId = "345717", + text = "helm_plate_pvpwarrior_b_04_huf.m2", + value = "helm_plate_pvpwarrior_b_04_huf.m2", + }, + { + fileId = "345718", + text = "helm_plate_pvpwarrior_b_04_hum.m2", + value = "helm_plate_pvpwarrior_b_04_hum.m2", + }, + { + fileId = "345719", + text = "helm_plate_pvpwarrior_b_04_nif.m2", + value = "helm_plate_pvpwarrior_b_04_nif.m2", + }, + { + fileId = "345720", + text = "helm_plate_pvpwarrior_b_04_nim.m2", + value = "helm_plate_pvpwarrior_b_04_nim.m2", + }, + { + fileId = "345721", + text = "helm_plate_pvpwarrior_b_04_orf.m2", + value = "helm_plate_pvpwarrior_b_04_orf.m2", + }, + { + fileId = "345722", + text = "helm_plate_pvpwarrior_b_04_orm.m2", + value = "helm_plate_pvpwarrior_b_04_orm.m2", + }, + { + fileId = "345723", + text = "helm_plate_pvpwarrior_b_04_scf.m2", + value = "helm_plate_pvpwarrior_b_04_scf.m2", + }, + { + fileId = "345724", + text = "helm_plate_pvpwarrior_b_04_scm.m2", + value = "helm_plate_pvpwarrior_b_04_scm.m2", + }, + { + fileId = "345725", + text = "helm_plate_pvpwarrior_b_04_taf.m2", + value = "helm_plate_pvpwarrior_b_04_taf.m2", + }, + { + fileId = "345726", + text = "helm_plate_pvpwarrior_b_04_tam.m2", + value = "helm_plate_pvpwarrior_b_04_tam.m2", + }, + { + fileId = "345727", + text = "helm_plate_pvpwarrior_b_04_trf.m2", + value = "helm_plate_pvpwarrior_b_04_trf.m2", + }, + { + fileId = "345728", + text = "helm_plate_pvpwarrior_b_04_trm.m2", + value = "helm_plate_pvpwarrior_b_04_trm.m2", + }, + { + fileId = "325880", + text = "helm_plate_raiddeathknight_b_01_bef.m2", + value = "helm_plate_raiddeathknight_b_01_bef.m2", + }, + { + fileId = "325881", + text = "helm_plate_raiddeathknight_b_01_bem.m2", + value = "helm_plate_raiddeathknight_b_01_bem.m2", + }, + { + fileId = "325882", + text = "helm_plate_raiddeathknight_b_01_drf.m2", + value = "helm_plate_raiddeathknight_b_01_drf.m2", + }, + { + fileId = "325883", + text = "helm_plate_raiddeathknight_b_01_drm.m2", + value = "helm_plate_raiddeathknight_b_01_drm.m2", + }, + { + fileId = "325884", + text = "helm_plate_raiddeathknight_b_01_dwf.m2", + value = "helm_plate_raiddeathknight_b_01_dwf.m2", + }, + { + fileId = "325885", + text = "helm_plate_raiddeathknight_b_01_dwm.m2", + value = "helm_plate_raiddeathknight_b_01_dwm.m2", + }, + { + fileId = "325886", + text = "helm_plate_raiddeathknight_b_01_gnf.m2", + value = "helm_plate_raiddeathknight_b_01_gnf.m2", + }, + { + fileId = "325887", + text = "helm_plate_raiddeathknight_b_01_gnm.m2", + value = "helm_plate_raiddeathknight_b_01_gnm.m2", + }, + { + fileId = "325996", + text = "helm_plate_raiddeathknight_b_01_gof.m2", + value = "helm_plate_raiddeathknight_b_01_gof.m2", + }, + { + fileId = "325997", + text = "helm_plate_raiddeathknight_b_01_gom.m2", + value = "helm_plate_raiddeathknight_b_01_gom.m2", + }, + { + fileId = "325888", + text = "helm_plate_raiddeathknight_b_01_huf.m2", + value = "helm_plate_raiddeathknight_b_01_huf.m2", + }, + { + fileId = "325889", + text = "helm_plate_raiddeathknight_b_01_hum.m2", + value = "helm_plate_raiddeathknight_b_01_hum.m2", + }, + { + fileId = "325890", + text = "helm_plate_raiddeathknight_b_01_nif.m2", + value = "helm_plate_raiddeathknight_b_01_nif.m2", + }, + { + fileId = "325891", + text = "helm_plate_raiddeathknight_b_01_nim.m2", + value = "helm_plate_raiddeathknight_b_01_nim.m2", + }, + { + fileId = "325892", + text = "helm_plate_raiddeathknight_b_01_orf.m2", + value = "helm_plate_raiddeathknight_b_01_orf.m2", + }, + { + fileId = "325893", + text = "helm_plate_raiddeathknight_b_01_orm.m2", + value = "helm_plate_raiddeathknight_b_01_orm.m2", + }, + { + fileId = "325894", + text = "helm_plate_raiddeathknight_b_01_scf.m2", + value = "helm_plate_raiddeathknight_b_01_scf.m2", + }, + { + fileId = "325895", + text = "helm_plate_raiddeathknight_b_01_scm.m2", + value = "helm_plate_raiddeathknight_b_01_scm.m2", + }, + { + fileId = "325896", + text = "helm_plate_raiddeathknight_b_01_taf.m2", + value = "helm_plate_raiddeathknight_b_01_taf.m2", + }, + { + fileId = "325897", + text = "helm_plate_raiddeathknight_b_01_tam.m2", + value = "helm_plate_raiddeathknight_b_01_tam.m2", + }, + { + fileId = "325898", + text = "helm_plate_raiddeathknight_b_01_trf.m2", + value = "helm_plate_raiddeathknight_b_01_trf.m2", + }, + { + fileId = "325899", + text = "helm_plate_raiddeathknight_b_01_trm.m2", + value = "helm_plate_raiddeathknight_b_01_trm.m2", + }, + { + fileId = "238169", + text = "helm_plate_raiddeathknight_c_02_bef.m2", + value = "helm_plate_raiddeathknight_c_02_bef.m2", + }, + { + fileId = "238170", + text = "helm_plate_raiddeathknight_c_02_bem.m2", + value = "helm_plate_raiddeathknight_c_02_bem.m2", + }, + { + fileId = "238171", + text = "helm_plate_raiddeathknight_c_02_drf.m2", + value = "helm_plate_raiddeathknight_c_02_drf.m2", + }, + { + fileId = "238172", + text = "helm_plate_raiddeathknight_c_02_drm.m2", + value = "helm_plate_raiddeathknight_c_02_drm.m2", + }, + { + fileId = "238173", + text = "helm_plate_raiddeathknight_c_02_dwf.m2", + value = "helm_plate_raiddeathknight_c_02_dwf.m2", + }, + { + fileId = "238174", + text = "helm_plate_raiddeathknight_c_02_dwm.m2", + value = "helm_plate_raiddeathknight_c_02_dwm.m2", + }, + { + fileId = "238175", + text = "helm_plate_raiddeathknight_c_02_gnf.m2", + value = "helm_plate_raiddeathknight_c_02_gnf.m2", + }, + { + fileId = "238176", + text = "helm_plate_raiddeathknight_c_02_gnm.m2", + value = "helm_plate_raiddeathknight_c_02_gnm.m2", + }, + { + fileId = "238177", + text = "helm_plate_raiddeathknight_c_02_gof.m2", + value = "helm_plate_raiddeathknight_c_02_gof.m2", + }, + { + fileId = "238178", + text = "helm_plate_raiddeathknight_c_02_gom.m2", + value = "helm_plate_raiddeathknight_c_02_gom.m2", + }, + { + fileId = "238179", + text = "helm_plate_raiddeathknight_c_02_huf.m2", + value = "helm_plate_raiddeathknight_c_02_huf.m2", + }, + { + fileId = "238180", + text = "helm_plate_raiddeathknight_c_02_hum.m2", + value = "helm_plate_raiddeathknight_c_02_hum.m2", + }, + { + fileId = "238181", + text = "helm_plate_raiddeathknight_c_02_nif.m2", + value = "helm_plate_raiddeathknight_c_02_nif.m2", + }, + { + fileId = "238182", + text = "helm_plate_raiddeathknight_c_02_nim.m2", + value = "helm_plate_raiddeathknight_c_02_nim.m2", + }, + { + fileId = "238183", + text = "helm_plate_raiddeathknight_c_02_orf.m2", + value = "helm_plate_raiddeathknight_c_02_orf.m2", + }, + { + fileId = "238184", + text = "helm_plate_raiddeathknight_c_02_orm.m2", + value = "helm_plate_raiddeathknight_c_02_orm.m2", + }, + { + fileId = "238185", + text = "helm_plate_raiddeathknight_c_02_scf.m2", + value = "helm_plate_raiddeathknight_c_02_scf.m2", + }, + { + fileId = "238186", + text = "helm_plate_raiddeathknight_c_02_scm.m2", + value = "helm_plate_raiddeathknight_c_02_scm.m2", + }, + { + fileId = "238187", + text = "helm_plate_raiddeathknight_c_02_taf.m2", + value = "helm_plate_raiddeathknight_c_02_taf.m2", + }, + { + fileId = "238188", + text = "helm_plate_raiddeathknight_c_02_tam.m2", + value = "helm_plate_raiddeathknight_c_02_tam.m2", + }, + { + fileId = "238189", + text = "helm_plate_raiddeathknight_c_02_trf.m2", + value = "helm_plate_raiddeathknight_c_02_trf.m2", + }, + { + fileId = "238190", + text = "helm_plate_raiddeathknight_c_02_trm.m2", + value = "helm_plate_raiddeathknight_c_02_trm.m2", + }, + { + fileId = "140867", + text = "helm_plate_raiddeathknight_g_01_bef.m2", + value = "helm_plate_raiddeathknight_g_01_bef.m2", + }, + { + fileId = "140868", + text = "helm_plate_raiddeathknight_g_01_bem.m2", + value = "helm_plate_raiddeathknight_g_01_bem.m2", + }, + { + fileId = "140869", + text = "helm_plate_raiddeathknight_g_01_drf.m2", + value = "helm_plate_raiddeathknight_g_01_drf.m2", + }, + { + fileId = "140870", + text = "helm_plate_raiddeathknight_g_01_drm.m2", + value = "helm_plate_raiddeathknight_g_01_drm.m2", + }, + { + fileId = "140871", + text = "helm_plate_raiddeathknight_g_01_dwf.m2", + value = "helm_plate_raiddeathknight_g_01_dwf.m2", + }, + { + fileId = "140872", + text = "helm_plate_raiddeathknight_g_01_dwm.m2", + value = "helm_plate_raiddeathknight_g_01_dwm.m2", + }, + { + fileId = "140873", + text = "helm_plate_raiddeathknight_g_01_gnf.m2", + value = "helm_plate_raiddeathknight_g_01_gnf.m2", + }, + { + fileId = "140874", + text = "helm_plate_raiddeathknight_g_01_gnm.m2", + value = "helm_plate_raiddeathknight_g_01_gnm.m2", + }, + { + fileId = "140875", + text = "helm_plate_raiddeathknight_g_01_gof.m2", + value = "helm_plate_raiddeathknight_g_01_gof.m2", + }, + { + fileId = "140876", + text = "helm_plate_raiddeathknight_g_01_gom.m2", + value = "helm_plate_raiddeathknight_g_01_gom.m2", + }, + { + fileId = "140877", + text = "helm_plate_raiddeathknight_g_01_huf.m2", + value = "helm_plate_raiddeathknight_g_01_huf.m2", + }, + { + fileId = "140878", + text = "helm_plate_raiddeathknight_g_01_hum.m2", + value = "helm_plate_raiddeathknight_g_01_hum.m2", + }, + { + fileId = "140879", + text = "helm_plate_raiddeathknight_g_01_nif.m2", + value = "helm_plate_raiddeathknight_g_01_nif.m2", + }, + { + fileId = "140880", + text = "helm_plate_raiddeathknight_g_01_nim.m2", + value = "helm_plate_raiddeathknight_g_01_nim.m2", + }, + { + fileId = "140881", + text = "helm_plate_raiddeathknight_g_01_orf.m2", + value = "helm_plate_raiddeathknight_g_01_orf.m2", + }, + { + fileId = "140882", + text = "helm_plate_raiddeathknight_g_01_orm.m2", + value = "helm_plate_raiddeathknight_g_01_orm.m2", + }, + { + fileId = "140884", + text = "helm_plate_raiddeathknight_g_01_scf.m2", + value = "helm_plate_raiddeathknight_g_01_scf.m2", + }, + { + fileId = "140885", + text = "helm_plate_raiddeathknight_g_01_scm.m2", + value = "helm_plate_raiddeathknight_g_01_scm.m2", + }, + { + fileId = "140886", + text = "helm_plate_raiddeathknight_g_01_taf.m2", + value = "helm_plate_raiddeathknight_g_01_taf.m2", + }, + { + fileId = "140887", + text = "helm_plate_raiddeathknight_g_01_tam.m2", + value = "helm_plate_raiddeathknight_g_01_tam.m2", + }, + { + fileId = "140888", + text = "helm_plate_raiddeathknight_g_01_trf.m2", + value = "helm_plate_raiddeathknight_g_01_trf.m2", + }, + { + fileId = "140889", + text = "helm_plate_raiddeathknight_g_01_trm.m2", + value = "helm_plate_raiddeathknight_g_01_trm.m2", + }, + { + fileId = "337982", + text = "helm_plate_raiddeathknight_h_01_bef.m2", + value = "helm_plate_raiddeathknight_h_01_bef.m2", + }, + { + fileId = "337983", + text = "helm_plate_raiddeathknight_h_01_bem.m2", + value = "helm_plate_raiddeathknight_h_01_bem.m2", + }, + { + fileId = "337984", + text = "helm_plate_raiddeathknight_h_01_drf.m2", + value = "helm_plate_raiddeathknight_h_01_drf.m2", + }, + { + fileId = "337985", + text = "helm_plate_raiddeathknight_h_01_drm.m2", + value = "helm_plate_raiddeathknight_h_01_drm.m2", + }, + { + fileId = "337986", + text = "helm_plate_raiddeathknight_h_01_dwf.m2", + value = "helm_plate_raiddeathknight_h_01_dwf.m2", + }, + { + fileId = "337987", + text = "helm_plate_raiddeathknight_h_01_dwm.m2", + value = "helm_plate_raiddeathknight_h_01_dwm.m2", + }, + { + fileId = "337988", + text = "helm_plate_raiddeathknight_h_01_gnf.m2", + value = "helm_plate_raiddeathknight_h_01_gnf.m2", + }, + { + fileId = "337989", + text = "helm_plate_raiddeathknight_h_01_gnm.m2", + value = "helm_plate_raiddeathknight_h_01_gnm.m2", + }, + { + fileId = "337990", + text = "helm_plate_raiddeathknight_h_01_gof.m2", + value = "helm_plate_raiddeathknight_h_01_gof.m2", + }, + { + fileId = "337991", + text = "helm_plate_raiddeathknight_h_01_gom.m2", + value = "helm_plate_raiddeathknight_h_01_gom.m2", + }, + { + fileId = "337992", + text = "helm_plate_raiddeathknight_h_01_huf.m2", + value = "helm_plate_raiddeathknight_h_01_huf.m2", + }, + { + fileId = "337993", + text = "helm_plate_raiddeathknight_h_01_hum.m2", + value = "helm_plate_raiddeathknight_h_01_hum.m2", + }, + { + fileId = "337994", + text = "helm_plate_raiddeathknight_h_01_nif.m2", + value = "helm_plate_raiddeathknight_h_01_nif.m2", + }, + { + fileId = "337995", + text = "helm_plate_raiddeathknight_h_01_nim.m2", + value = "helm_plate_raiddeathknight_h_01_nim.m2", + }, + { + fileId = "337996", + text = "helm_plate_raiddeathknight_h_01_orf.m2", + value = "helm_plate_raiddeathknight_h_01_orf.m2", + }, + { + fileId = "337997", + text = "helm_plate_raiddeathknight_h_01_orm.m2", + value = "helm_plate_raiddeathknight_h_01_orm.m2", + }, + { + fileId = "337998", + text = "helm_plate_raiddeathknight_h_01_scf.m2", + value = "helm_plate_raiddeathknight_h_01_scf.m2", + }, + { + fileId = "337999", + text = "helm_plate_raiddeathknight_h_01_scm.m2", + value = "helm_plate_raiddeathknight_h_01_scm.m2", + }, + { + fileId = "338000", + text = "helm_plate_raiddeathknight_h_01_taf.m2", + value = "helm_plate_raiddeathknight_h_01_taf.m2", + }, + { + fileId = "338001", + text = "helm_plate_raiddeathknight_h_01_tam.m2", + value = "helm_plate_raiddeathknight_h_01_tam.m2", + }, + { + fileId = "351197", + text = "helm_plate_raiddeathknight_h_01_trf.m2", + value = "helm_plate_raiddeathknight_h_01_trf.m2", + }, + { + fileId = "338002", + text = "helm_plate_raiddeathknight_h_01_trm.m2", + value = "helm_plate_raiddeathknight_h_01_trm.m2", + }, + { + fileId = "140893", + text = "helm_plate_raidpaladin_a_01_bef.m2", + value = "helm_plate_raidpaladin_a_01_bef.m2", + }, + { + fileId = "140894", + text = "helm_plate_raidpaladin_a_01_bem.m2", + value = "helm_plate_raidpaladin_a_01_bem.m2", + }, + { + fileId = "140895", + text = "helm_plate_raidpaladin_a_01_drf.m2", + value = "helm_plate_raidpaladin_a_01_drf.m2", + }, + { + fileId = "140896", + text = "helm_plate_raidpaladin_a_01_drm.m2", + value = "helm_plate_raidpaladin_a_01_drm.m2", + }, + { + fileId = "140897", + text = "helm_plate_raidpaladin_a_01_dwf.m2", + value = "helm_plate_raidpaladin_a_01_dwf.m2", + }, + { + fileId = "140898", + text = "helm_plate_raidpaladin_a_01_dwm.m2", + value = "helm_plate_raidpaladin_a_01_dwm.m2", + }, + { + fileId = "140899", + text = "helm_plate_raidpaladin_a_01_gnf.m2", + value = "helm_plate_raidpaladin_a_01_gnf.m2", + }, + { + fileId = "140900", + text = "helm_plate_raidpaladin_a_01_gnm.m2", + value = "helm_plate_raidpaladin_a_01_gnm.m2", + }, + { + fileId = "140901", + text = "helm_plate_raidpaladin_a_01_gof.m2", + value = "helm_plate_raidpaladin_a_01_gof.m2", + }, + { + fileId = "140902", + text = "helm_plate_raidpaladin_a_01_huf.m2", + value = "helm_plate_raidpaladin_a_01_huf.m2", + }, + { + fileId = "140903", + text = "helm_plate_raidpaladin_a_01_hum.m2", + value = "helm_plate_raidpaladin_a_01_hum.m2", + }, + { + fileId = "140904", + text = "helm_plate_raidpaladin_a_01_nif.m2", + value = "helm_plate_raidpaladin_a_01_nif.m2", + }, + { + fileId = "140905", + text = "helm_plate_raidpaladin_a_01_nim.m2", + value = "helm_plate_raidpaladin_a_01_nim.m2", + }, + { + fileId = "140906", + text = "helm_plate_raidpaladin_a_01_orf.m2", + value = "helm_plate_raidpaladin_a_01_orf.m2", + }, + { + fileId = "140907", + text = "helm_plate_raidpaladin_a_01_orm.m2", + value = "helm_plate_raidpaladin_a_01_orm.m2", + }, + { + fileId = "140908", + text = "helm_plate_raidpaladin_a_01_scf.m2", + value = "helm_plate_raidpaladin_a_01_scf.m2", + }, + { + fileId = "140909", + text = "helm_plate_raidpaladin_a_01_scm.m2", + value = "helm_plate_raidpaladin_a_01_scm.m2", + }, + { + fileId = "140910", + text = "helm_plate_raidpaladin_a_01_taf.m2", + value = "helm_plate_raidpaladin_a_01_taf.m2", + }, + { + fileId = "140911", + text = "helm_plate_raidpaladin_a_01_tam.m2", + value = "helm_plate_raidpaladin_a_01_tam.m2", + }, + { + fileId = "140912", + text = "helm_plate_raidpaladin_a_01_trf.m2", + value = "helm_plate_raidpaladin_a_01_trf.m2", + }, + { + fileId = "140913", + text = "helm_plate_raidpaladin_a_01_trm.m2", + value = "helm_plate_raidpaladin_a_01_trm.m2", + }, + { + fileId = "140919", + text = "helm_plate_raidpaladin_b_01_bef.m2", + value = "helm_plate_raidpaladin_b_01_bef.m2", + }, + { + fileId = "140920", + text = "helm_plate_raidpaladin_b_01_bem.m2", + value = "helm_plate_raidpaladin_b_01_bem.m2", + }, + { + fileId = "140921", + text = "helm_plate_raidpaladin_b_01_drf.m2", + value = "helm_plate_raidpaladin_b_01_drf.m2", + }, + { + fileId = "140922", + text = "helm_plate_raidpaladin_b_01_drm.m2", + value = "helm_plate_raidpaladin_b_01_drm.m2", + }, + { + fileId = "140923", + text = "helm_plate_raidpaladin_b_01_dwf.m2", + value = "helm_plate_raidpaladin_b_01_dwf.m2", + }, + { + fileId = "140924", + text = "helm_plate_raidpaladin_b_01_dwm.m2", + value = "helm_plate_raidpaladin_b_01_dwm.m2", + }, + { + fileId = "140925", + text = "helm_plate_raidpaladin_b_01_gnf.m2", + value = "helm_plate_raidpaladin_b_01_gnf.m2", + }, + { + fileId = "140926", + text = "helm_plate_raidpaladin_b_01_gnm.m2", + value = "helm_plate_raidpaladin_b_01_gnm.m2", + }, + { + fileId = "140927", + text = "helm_plate_raidpaladin_b_01_gof.m2", + value = "helm_plate_raidpaladin_b_01_gof.m2", + }, + { + fileId = "140928", + text = "helm_plate_raidpaladin_b_01_gom.m2", + value = "helm_plate_raidpaladin_b_01_gom.m2", + }, + { + fileId = "140929", + text = "helm_plate_raidpaladin_b_01_huf.m2", + value = "helm_plate_raidpaladin_b_01_huf.m2", + }, + { + fileId = "140930", + text = "helm_plate_raidpaladin_b_01_hum.m2", + value = "helm_plate_raidpaladin_b_01_hum.m2", + }, + { + fileId = "140931", + text = "helm_plate_raidpaladin_b_01_nif.m2", + value = "helm_plate_raidpaladin_b_01_nif.m2", + }, + { + fileId = "140932", + text = "helm_plate_raidpaladin_b_01_nim.m2", + value = "helm_plate_raidpaladin_b_01_nim.m2", + }, + { + fileId = "140933", + text = "helm_plate_raidpaladin_b_01_orf.m2", + value = "helm_plate_raidpaladin_b_01_orf.m2", + }, + { + fileId = "140934", + text = "helm_plate_raidpaladin_b_01_orm.m2", + value = "helm_plate_raidpaladin_b_01_orm.m2", + }, + { + fileId = "140935", + text = "helm_plate_raidpaladin_b_01_scf.m2", + value = "helm_plate_raidpaladin_b_01_scf.m2", + }, + { + fileId = "140936", + text = "helm_plate_raidpaladin_b_01_scm.m2", + value = "helm_plate_raidpaladin_b_01_scm.m2", + }, + { + fileId = "140937", + text = "helm_plate_raidpaladin_b_01_taf.m2", + value = "helm_plate_raidpaladin_b_01_taf.m2", + }, + { + fileId = "140938", + text = "helm_plate_raidpaladin_b_01_tam.m2", + value = "helm_plate_raidpaladin_b_01_tam.m2", + }, + { + fileId = "140939", + text = "helm_plate_raidpaladin_b_01_trf.m2", + value = "helm_plate_raidpaladin_b_01_trf.m2", + }, + { + fileId = "140940", + text = "helm_plate_raidpaladin_b_01_trm.m2", + value = "helm_plate_raidpaladin_b_01_trm.m2", + }, + { + fileId = "140944", + text = "helm_plate_raidpaladin_c_01_bef.m2", + value = "helm_plate_raidpaladin_c_01_bef.m2", + }, + { + fileId = "140945", + text = "helm_plate_raidpaladin_c_01_bem.m2", + value = "helm_plate_raidpaladin_c_01_bem.m2", + }, + { + fileId = "140946", + text = "helm_plate_raidpaladin_c_01_drf.m2", + value = "helm_plate_raidpaladin_c_01_drf.m2", + }, + { + fileId = "140947", + text = "helm_plate_raidpaladin_c_01_drm.m2", + value = "helm_plate_raidpaladin_c_01_drm.m2", + }, + { + fileId = "140948", + text = "helm_plate_raidpaladin_c_01_dwf.m2", + value = "helm_plate_raidpaladin_c_01_dwf.m2", + }, + { + fileId = "140949", + text = "helm_plate_raidpaladin_c_01_dwm.m2", + value = "helm_plate_raidpaladin_c_01_dwm.m2", + }, + { + fileId = "140950", + text = "helm_plate_raidpaladin_c_01_gnf.m2", + value = "helm_plate_raidpaladin_c_01_gnf.m2", + }, + { + fileId = "140951", + text = "helm_plate_raidpaladin_c_01_gnm.m2", + value = "helm_plate_raidpaladin_c_01_gnm.m2", + }, + { + fileId = "140952", + text = "helm_plate_raidpaladin_c_01_gof.m2", + value = "helm_plate_raidpaladin_c_01_gof.m2", + }, + { + fileId = "140953", + text = "helm_plate_raidpaladin_c_01_gom.m2", + value = "helm_plate_raidpaladin_c_01_gom.m2", + }, + { + fileId = "140954", + text = "helm_plate_raidpaladin_c_01_huf.m2", + value = "helm_plate_raidpaladin_c_01_huf.m2", + }, + { + fileId = "140955", + text = "helm_plate_raidpaladin_c_01_hum.m2", + value = "helm_plate_raidpaladin_c_01_hum.m2", + }, + { + fileId = "140956", + text = "helm_plate_raidpaladin_c_01_nif.m2", + value = "helm_plate_raidpaladin_c_01_nif.m2", + }, + { + fileId = "140957", + text = "helm_plate_raidpaladin_c_01_nim.m2", + value = "helm_plate_raidpaladin_c_01_nim.m2", + }, + { + fileId = "140958", + text = "helm_plate_raidpaladin_c_01_orf.m2", + value = "helm_plate_raidpaladin_c_01_orf.m2", + }, + { + fileId = "140959", + text = "helm_plate_raidpaladin_c_01_orm.m2", + value = "helm_plate_raidpaladin_c_01_orm.m2", + }, + { + fileId = "140960", + text = "helm_plate_raidpaladin_c_01_scf.m2", + value = "helm_plate_raidpaladin_c_01_scf.m2", + }, + { + fileId = "140961", + text = "helm_plate_raidpaladin_c_01_scm.m2", + value = "helm_plate_raidpaladin_c_01_scm.m2", + }, + { + fileId = "140962", + text = "helm_plate_raidpaladin_c_01_taf.m2", + value = "helm_plate_raidpaladin_c_01_taf.m2", + }, + { + fileId = "140963", + text = "helm_plate_raidpaladin_c_01_tam.m2", + value = "helm_plate_raidpaladin_c_01_tam.m2", + }, + { + fileId = "140964", + text = "helm_plate_raidpaladin_c_01_trf.m2", + value = "helm_plate_raidpaladin_c_01_trf.m2", + }, + { + fileId = "140965", + text = "helm_plate_raidpaladin_c_01_trm.m2", + value = "helm_plate_raidpaladin_c_01_trm.m2", + }, + { + fileId = "140968", + text = "helm_plate_raidpaladin_d_01_bef.m2", + value = "helm_plate_raidpaladin_d_01_bef.m2", + }, + { + fileId = "140969", + text = "helm_plate_raidpaladin_d_01_bem.m2", + value = "helm_plate_raidpaladin_d_01_bem.m2", + }, + { + fileId = "140970", + text = "helm_plate_raidpaladin_d_01_drf.m2", + value = "helm_plate_raidpaladin_d_01_drf.m2", + }, + { + fileId = "140971", + text = "helm_plate_raidpaladin_d_01_drm.m2", + value = "helm_plate_raidpaladin_d_01_drm.m2", + }, + { + fileId = "140972", + text = "helm_plate_raidpaladin_d_01_dwf.m2", + value = "helm_plate_raidpaladin_d_01_dwf.m2", + }, + { + fileId = "140973", + text = "helm_plate_raidpaladin_d_01_dwm.m2", + value = "helm_plate_raidpaladin_d_01_dwm.m2", + }, + { + fileId = "140975", + text = "helm_plate_raidpaladin_d_01_gnf.m2", + value = "helm_plate_raidpaladin_d_01_gnf.m2", + }, + { + fileId = "140976", + text = "helm_plate_raidpaladin_d_01_gnm.m2", + value = "helm_plate_raidpaladin_d_01_gnm.m2", + }, + { + fileId = "140977", + text = "helm_plate_raidpaladin_d_01_gof.m2", + value = "helm_plate_raidpaladin_d_01_gof.m2", + }, + { + fileId = "140978", + text = "helm_plate_raidpaladin_d_01_gom.m2", + value = "helm_plate_raidpaladin_d_01_gom.m2", + }, + { + fileId = "140979", + text = "helm_plate_raidpaladin_d_01_huf.m2", + value = "helm_plate_raidpaladin_d_01_huf.m2", + }, + { + fileId = "140980", + text = "helm_plate_raidpaladin_d_01_hum.m2", + value = "helm_plate_raidpaladin_d_01_hum.m2", + }, + { + fileId = "140981", + text = "helm_plate_raidpaladin_d_01_nif.m2", + value = "helm_plate_raidpaladin_d_01_nif.m2", + }, + { + fileId = "140982", + text = "helm_plate_raidpaladin_d_01_nim.m2", + value = "helm_plate_raidpaladin_d_01_nim.m2", + }, + { + fileId = "140983", + text = "helm_plate_raidpaladin_d_01_orf.m2", + value = "helm_plate_raidpaladin_d_01_orf.m2", + }, + { + fileId = "140984", + text = "helm_plate_raidpaladin_d_01_orm.m2", + value = "helm_plate_raidpaladin_d_01_orm.m2", + }, + { + fileId = "140985", + text = "helm_plate_raidpaladin_d_01_scf.m2", + value = "helm_plate_raidpaladin_d_01_scf.m2", + }, + { + fileId = "140986", + text = "helm_plate_raidpaladin_d_01_scm.m2", + value = "helm_plate_raidpaladin_d_01_scm.m2", + }, + { + fileId = "140987", + text = "helm_plate_raidpaladin_d_01_taf.m2", + value = "helm_plate_raidpaladin_d_01_taf.m2", + }, + { + fileId = "140988", + text = "helm_plate_raidpaladin_d_01_tam.m2", + value = "helm_plate_raidpaladin_d_01_tam.m2", + }, + { + fileId = "140989", + text = "helm_plate_raidpaladin_d_01_trf.m2", + value = "helm_plate_raidpaladin_d_01_trf.m2", + }, + { + fileId = "140990", + text = "helm_plate_raidpaladin_d_01_trm.m2", + value = "helm_plate_raidpaladin_d_01_trm.m2", + }, + { + fileId = "140993", + text = "helm_plate_raidpaladin_e_01_bef.m2", + value = "helm_plate_raidpaladin_e_01_bef.m2", + }, + { + fileId = "140994", + text = "helm_plate_raidpaladin_e_01_bem.m2", + value = "helm_plate_raidpaladin_e_01_bem.m2", + }, + { + fileId = "140995", + text = "helm_plate_raidpaladin_e_01_drf.m2", + value = "helm_plate_raidpaladin_e_01_drf.m2", + }, + { + fileId = "140996", + text = "helm_plate_raidpaladin_e_01_drm.m2", + value = "helm_plate_raidpaladin_e_01_drm.m2", + }, + { + fileId = "140997", + text = "helm_plate_raidpaladin_e_01_dwf.m2", + value = "helm_plate_raidpaladin_e_01_dwf.m2", + }, + { + fileId = "140998", + text = "helm_plate_raidpaladin_e_01_dwm.m2", + value = "helm_plate_raidpaladin_e_01_dwm.m2", + }, + { + fileId = "140999", + text = "helm_plate_raidpaladin_e_01_gnf.m2", + value = "helm_plate_raidpaladin_e_01_gnf.m2", + }, + { + fileId = "141000", + text = "helm_plate_raidpaladin_e_01_gnm.m2", + value = "helm_plate_raidpaladin_e_01_gnm.m2", + }, + { + fileId = "141001", + text = "helm_plate_raidpaladin_e_01_huf.m2", + value = "helm_plate_raidpaladin_e_01_huf.m2", + }, + { + fileId = "141002", + text = "helm_plate_raidpaladin_e_01_hum.m2", + value = "helm_plate_raidpaladin_e_01_hum.m2", + }, + { + fileId = "141003", + text = "helm_plate_raidpaladin_e_01_nif.m2", + value = "helm_plate_raidpaladin_e_01_nif.m2", + }, + { + fileId = "141004", + text = "helm_plate_raidpaladin_e_01_nim.m2", + value = "helm_plate_raidpaladin_e_01_nim.m2", + }, + { + fileId = "141005", + text = "helm_plate_raidpaladin_e_01_orf.m2", + value = "helm_plate_raidpaladin_e_01_orf.m2", + }, + { + fileId = "141006", + text = "helm_plate_raidpaladin_e_01_orm.m2", + value = "helm_plate_raidpaladin_e_01_orm.m2", + }, + { + fileId = "141007", + text = "helm_plate_raidpaladin_e_01_scf.m2", + value = "helm_plate_raidpaladin_e_01_scf.m2", + }, + { + fileId = "141008", + text = "helm_plate_raidpaladin_e_01_scm.m2", + value = "helm_plate_raidpaladin_e_01_scm.m2", + }, + { + fileId = "141009", + text = "helm_plate_raidpaladin_e_01_taf.m2", + value = "helm_plate_raidpaladin_e_01_taf.m2", + }, + { + fileId = "141010", + text = "helm_plate_raidpaladin_e_01_tam.m2", + value = "helm_plate_raidpaladin_e_01_tam.m2", + }, + { + fileId = "141011", + text = "helm_plate_raidpaladin_e_01_trf.m2", + value = "helm_plate_raidpaladin_e_01_trf.m2", + }, + { + fileId = "141012", + text = "helm_plate_raidpaladin_e_01_trm.m2", + value = "helm_plate_raidpaladin_e_01_trm.m2", + }, + { + fileId = "141015", + text = "helm_plate_raidpaladin_f_01_bef.m2", + value = "helm_plate_raidpaladin_f_01_bef.m2", + }, + { + fileId = "141016", + text = "helm_plate_raidpaladin_f_01_bem.m2", + value = "helm_plate_raidpaladin_f_01_bem.m2", + }, + { + fileId = "141017", + text = "helm_plate_raidpaladin_f_01_drf.m2", + value = "helm_plate_raidpaladin_f_01_drf.m2", + }, + { + fileId = "141018", + text = "helm_plate_raidpaladin_f_01_drm.m2", + value = "helm_plate_raidpaladin_f_01_drm.m2", + }, + { + fileId = "141019", + text = "helm_plate_raidpaladin_f_01_dwf.m2", + value = "helm_plate_raidpaladin_f_01_dwf.m2", + }, + { + fileId = "141020", + text = "helm_plate_raidpaladin_f_01_dwm.m2", + value = "helm_plate_raidpaladin_f_01_dwm.m2", + }, + { + fileId = "141021", + text = "helm_plate_raidpaladin_f_01_gnf.m2", + value = "helm_plate_raidpaladin_f_01_gnf.m2", + }, + { + fileId = "141022", + text = "helm_plate_raidpaladin_f_01_gnm.m2", + value = "helm_plate_raidpaladin_f_01_gnm.m2", + }, + { + fileId = "141023", + text = "helm_plate_raidpaladin_f_01_gom.m2", + value = "helm_plate_raidpaladin_f_01_gom.m2", + }, + { + fileId = "141024", + text = "helm_plate_raidpaladin_f_01_huf.m2", + value = "helm_plate_raidpaladin_f_01_huf.m2", + }, + { + fileId = "141025", + text = "helm_plate_raidpaladin_f_01_hum.m2", + value = "helm_plate_raidpaladin_f_01_hum.m2", + }, + { + fileId = "141026", + text = "helm_plate_raidpaladin_f_01_nif.m2", + value = "helm_plate_raidpaladin_f_01_nif.m2", + }, + { + fileId = "141027", + text = "helm_plate_raidpaladin_f_01_nim.m2", + value = "helm_plate_raidpaladin_f_01_nim.m2", + }, + { + fileId = "141028", + text = "helm_plate_raidpaladin_f_01_orf.m2", + value = "helm_plate_raidpaladin_f_01_orf.m2", + }, + { + fileId = "141029", + text = "helm_plate_raidpaladin_f_01_orm.m2", + value = "helm_plate_raidpaladin_f_01_orm.m2", + }, + { + fileId = "141030", + text = "helm_plate_raidpaladin_f_01_scf.m2", + value = "helm_plate_raidpaladin_f_01_scf.m2", + }, + { + fileId = "141031", + text = "helm_plate_raidpaladin_f_01_scm.m2", + value = "helm_plate_raidpaladin_f_01_scm.m2", + }, + { + fileId = "141032", + text = "helm_plate_raidpaladin_f_01_taf.m2", + value = "helm_plate_raidpaladin_f_01_taf.m2", + }, + { + fileId = "141033", + text = "helm_plate_raidpaladin_f_01_tam.m2", + value = "helm_plate_raidpaladin_f_01_tam.m2", + }, + { + fileId = "141034", + text = "helm_plate_raidpaladin_f_01_trf.m2", + value = "helm_plate_raidpaladin_f_01_trf.m2", + }, + { + fileId = "141035", + text = "helm_plate_raidpaladin_f_01_trm.m2", + value = "helm_plate_raidpaladin_f_01_trm.m2", + }, + { + fileId = "238196", + text = "helm_plate_raidpaladin_g_01_bef.m2", + value = "helm_plate_raidpaladin_g_01_bef.m2", + }, + { + fileId = "238197", + text = "helm_plate_raidpaladin_g_01_bem.m2", + value = "helm_plate_raidpaladin_g_01_bem.m2", + }, + { + fileId = "238198", + text = "helm_plate_raidpaladin_g_01_drf.m2", + value = "helm_plate_raidpaladin_g_01_drf.m2", + }, + { + fileId = "238199", + text = "helm_plate_raidpaladin_g_01_drm.m2", + value = "helm_plate_raidpaladin_g_01_drm.m2", + }, + { + fileId = "238200", + text = "helm_plate_raidpaladin_g_01_dwf.m2", + value = "helm_plate_raidpaladin_g_01_dwf.m2", + }, + { + fileId = "238201", + text = "helm_plate_raidpaladin_g_01_dwm.m2", + value = "helm_plate_raidpaladin_g_01_dwm.m2", + }, + { + fileId = "238202", + text = "helm_plate_raidpaladin_g_01_gnf.m2", + value = "helm_plate_raidpaladin_g_01_gnf.m2", + }, + { + fileId = "238203", + text = "helm_plate_raidpaladin_g_01_gnm.m2", + value = "helm_plate_raidpaladin_g_01_gnm.m2", + }, + { + fileId = "238204", + text = "helm_plate_raidpaladin_g_01_gof.m2", + value = "helm_plate_raidpaladin_g_01_gof.m2", + }, + { + fileId = "238205", + text = "helm_plate_raidpaladin_g_01_gom.m2", + value = "helm_plate_raidpaladin_g_01_gom.m2", + }, + { + fileId = "238206", + text = "helm_plate_raidpaladin_g_01_huf.m2", + value = "helm_plate_raidpaladin_g_01_huf.m2", + }, + { + fileId = "238207", + text = "helm_plate_raidpaladin_g_01_hum.m2", + value = "helm_plate_raidpaladin_g_01_hum.m2", + }, + { + fileId = "238208", + text = "helm_plate_raidpaladin_g_01_nif.m2", + value = "helm_plate_raidpaladin_g_01_nif.m2", + }, + { + fileId = "238209", + text = "helm_plate_raidpaladin_g_01_nim.m2", + value = "helm_plate_raidpaladin_g_01_nim.m2", + }, + { + fileId = "238210", + text = "helm_plate_raidpaladin_g_01_orf.m2", + value = "helm_plate_raidpaladin_g_01_orf.m2", + }, + { + fileId = "238211", + text = "helm_plate_raidpaladin_g_01_orm.m2", + value = "helm_plate_raidpaladin_g_01_orm.m2", + }, + { + fileId = "238212", + text = "helm_plate_raidpaladin_g_01_scf.m2", + value = "helm_plate_raidpaladin_g_01_scf.m2", + }, + { + fileId = "238213", + text = "helm_plate_raidpaladin_g_01_scm.m2", + value = "helm_plate_raidpaladin_g_01_scm.m2", + }, + { + fileId = "238214", + text = "helm_plate_raidpaladin_g_01_taf.m2", + value = "helm_plate_raidpaladin_g_01_taf.m2", + }, + { + fileId = "238215", + text = "helm_plate_raidpaladin_g_01_tam.m2", + value = "helm_plate_raidpaladin_g_01_tam.m2", + }, + { + fileId = "238216", + text = "helm_plate_raidpaladin_g_01_trf.m2", + value = "helm_plate_raidpaladin_g_01_trf.m2", + }, + { + fileId = "238217", + text = "helm_plate_raidpaladin_g_01_trm.m2", + value = "helm_plate_raidpaladin_g_01_trm.m2", + }, + { + fileId = "341223", + text = "helm_plate_raidpaladin_h_01_bef.m2", + value = "helm_plate_raidpaladin_h_01_bef.m2", + }, + { + fileId = "341224", + text = "helm_plate_raidpaladin_h_01_bem.m2", + value = "helm_plate_raidpaladin_h_01_bem.m2", + }, + { + fileId = "348796", + text = "helm_plate_raidpaladin_h_01_drf.m2", + value = "helm_plate_raidpaladin_h_01_drf.m2", + }, + { + fileId = "341225", + text = "helm_plate_raidpaladin_h_01_drm.m2", + value = "helm_plate_raidpaladin_h_01_drm.m2", + }, + { + fileId = "353521", + text = "helm_plate_raidpaladin_h_01_dwf.m2", + value = "helm_plate_raidpaladin_h_01_dwf.m2", + }, + { + fileId = "341226", + text = "helm_plate_raidpaladin_h_01_dwm.m2", + value = "helm_plate_raidpaladin_h_01_dwm.m2", + }, + { + fileId = "354741", + text = "helm_plate_raidpaladin_h_01_gnf.m2", + value = "helm_plate_raidpaladin_h_01_gnf.m2", + }, + { + fileId = "341227", + text = "helm_plate_raidpaladin_h_01_gnm.m2", + value = "helm_plate_raidpaladin_h_01_gnm.m2", + }, + { + fileId = "341228", + text = "helm_plate_raidpaladin_h_01_gof.m2", + value = "helm_plate_raidpaladin_h_01_gof.m2", + }, + { + fileId = "341230", + text = "helm_plate_raidpaladin_h_01_gom.m2", + value = "helm_plate_raidpaladin_h_01_gom.m2", + }, + { + fileId = "341231", + text = "helm_plate_raidpaladin_h_01_huf.m2", + value = "helm_plate_raidpaladin_h_01_huf.m2", + }, + { + fileId = "341232", + text = "helm_plate_raidpaladin_h_01_hum.m2", + value = "helm_plate_raidpaladin_h_01_hum.m2", + }, + { + fileId = "341233", + text = "helm_plate_raidpaladin_h_01_nif.m2", + value = "helm_plate_raidpaladin_h_01_nif.m2", + }, + { + fileId = "341234", + text = "helm_plate_raidpaladin_h_01_nim.m2", + value = "helm_plate_raidpaladin_h_01_nim.m2", + }, + { + fileId = "341235", + text = "helm_plate_raidpaladin_h_01_orf.m2", + value = "helm_plate_raidpaladin_h_01_orf.m2", + }, + { + fileId = "341236", + text = "helm_plate_raidpaladin_h_01_orm.m2", + value = "helm_plate_raidpaladin_h_01_orm.m2", + }, + { + fileId = "341237", + text = "helm_plate_raidpaladin_h_01_scf.m2", + value = "helm_plate_raidpaladin_h_01_scf.m2", + }, + { + fileId = "341238", + text = "helm_plate_raidpaladin_h_01_scm.m2", + value = "helm_plate_raidpaladin_h_01_scm.m2", + }, + { + fileId = "350708", + text = "helm_plate_raidpaladin_h_01_taf.m2", + value = "helm_plate_raidpaladin_h_01_taf.m2", + }, + { + fileId = "341239", + text = "helm_plate_raidpaladin_h_01_tam.m2", + value = "helm_plate_raidpaladin_h_01_tam.m2", + }, + { + fileId = "350709", + text = "helm_plate_raidpaladin_h_01_trf.m2", + value = "helm_plate_raidpaladin_h_01_trf.m2", + }, + { + fileId = "350710", + text = "helm_plate_raidpaladin_h_01_trm.m2", + value = "helm_plate_raidpaladin_h_01_trm.m2", + }, + { + fileId = "141039", + text = "helm_plate_raidwarrior_a_01_bef.m2", + value = "helm_plate_raidwarrior_a_01_bef.m2", + }, + { + fileId = "141040", + text = "helm_plate_raidwarrior_a_01_bem.m2", + value = "helm_plate_raidwarrior_a_01_bem.m2", + }, + { + fileId = "141041", + text = "helm_plate_raidwarrior_a_01_drf.m2", + value = "helm_plate_raidwarrior_a_01_drf.m2", + }, + { + fileId = "141042", + text = "helm_plate_raidwarrior_a_01_drm.m2", + value = "helm_plate_raidwarrior_a_01_drm.m2", + }, + { + fileId = "141043", + text = "helm_plate_raidwarrior_a_01_dwf.m2", + value = "helm_plate_raidwarrior_a_01_dwf.m2", + }, + { + fileId = "141044", + text = "helm_plate_raidwarrior_a_01_dwm.m2", + value = "helm_plate_raidwarrior_a_01_dwm.m2", + }, + { + fileId = "141045", + text = "helm_plate_raidwarrior_a_01_gnf.m2", + value = "helm_plate_raidwarrior_a_01_gnf.m2", + }, + { + fileId = "141046", + text = "helm_plate_raidwarrior_a_01_gnm.m2", + value = "helm_plate_raidwarrior_a_01_gnm.m2", + }, + { + fileId = "141047", + text = "helm_plate_raidwarrior_a_01_gof.m2", + value = "helm_plate_raidwarrior_a_01_gof.m2", + }, + { + fileId = "141048", + text = "helm_plate_raidwarrior_a_01_gom.m2", + value = "helm_plate_raidwarrior_a_01_gom.m2", + }, + { + fileId = "141049", + text = "helm_plate_raidwarrior_a_01_huf.m2", + value = "helm_plate_raidwarrior_a_01_huf.m2", + }, + { + fileId = "141050", + text = "helm_plate_raidwarrior_a_01_hum.m2", + value = "helm_plate_raidwarrior_a_01_hum.m2", + }, + { + fileId = "141051", + text = "helm_plate_raidwarrior_a_01_nif.m2", + value = "helm_plate_raidwarrior_a_01_nif.m2", + }, + { + fileId = "141052", + text = "helm_plate_raidwarrior_a_01_nim.m2", + value = "helm_plate_raidwarrior_a_01_nim.m2", + }, + { + fileId = "141053", + text = "helm_plate_raidwarrior_a_01_orf.m2", + value = "helm_plate_raidwarrior_a_01_orf.m2", + }, + { + fileId = "141054", + text = "helm_plate_raidwarrior_a_01_orm.m2", + value = "helm_plate_raidwarrior_a_01_orm.m2", + }, + { + fileId = "141055", + text = "helm_plate_raidwarrior_a_01_scf.m2", + value = "helm_plate_raidwarrior_a_01_scf.m2", + }, + { + fileId = "141056", + text = "helm_plate_raidwarrior_a_01_scm.m2", + value = "helm_plate_raidwarrior_a_01_scm.m2", + }, + { + fileId = "141057", + text = "helm_plate_raidwarrior_a_01_taf.m2", + value = "helm_plate_raidwarrior_a_01_taf.m2", + }, + { + fileId = "141058", + text = "helm_plate_raidwarrior_a_01_tam.m2", + value = "helm_plate_raidwarrior_a_01_tam.m2", + }, + { + fileId = "141059", + text = "helm_plate_raidwarrior_a_01_trf.m2", + value = "helm_plate_raidwarrior_a_01_trf.m2", + }, + { + fileId = "141060", + text = "helm_plate_raidwarrior_a_01_trm.m2", + value = "helm_plate_raidwarrior_a_01_trm.m2", + }, + { + fileId = "141066", + text = "helm_plate_raidwarrior_b_01_bef.m2", + value = "helm_plate_raidwarrior_b_01_bef.m2", + }, + { + fileId = "141067", + text = "helm_plate_raidwarrior_b_01_bem.m2", + value = "helm_plate_raidwarrior_b_01_bem.m2", + }, + { + fileId = "141068", + text = "helm_plate_raidwarrior_b_01_drf.m2", + value = "helm_plate_raidwarrior_b_01_drf.m2", + }, + { + fileId = "141069", + text = "helm_plate_raidwarrior_b_01_drm.m2", + value = "helm_plate_raidwarrior_b_01_drm.m2", + }, + { + fileId = "141070", + text = "helm_plate_raidwarrior_b_01_dwf.m2", + value = "helm_plate_raidwarrior_b_01_dwf.m2", + }, + { + fileId = "141071", + text = "helm_plate_raidwarrior_b_01_dwm.m2", + value = "helm_plate_raidwarrior_b_01_dwm.m2", + }, + { + fileId = "141072", + text = "helm_plate_raidwarrior_b_01_gnf.m2", + value = "helm_plate_raidwarrior_b_01_gnf.m2", + }, + { + fileId = "141073", + text = "helm_plate_raidwarrior_b_01_gnm.m2", + value = "helm_plate_raidwarrior_b_01_gnm.m2", + }, + { + fileId = "141074", + text = "helm_plate_raidwarrior_b_01_gof.m2", + value = "helm_plate_raidwarrior_b_01_gof.m2", + }, + { + fileId = "141075", + text = "helm_plate_raidwarrior_b_01_gom.m2", + value = "helm_plate_raidwarrior_b_01_gom.m2", + }, + { + fileId = "141076", + text = "helm_plate_raidwarrior_b_01_huf.m2", + value = "helm_plate_raidwarrior_b_01_huf.m2", + }, + { + fileId = "141077", + text = "helm_plate_raidwarrior_b_01_hum.m2", + value = "helm_plate_raidwarrior_b_01_hum.m2", + }, + { + fileId = "141078", + text = "helm_plate_raidwarrior_b_01_nif.m2", + value = "helm_plate_raidwarrior_b_01_nif.m2", + }, + { + fileId = "141079", + text = "helm_plate_raidwarrior_b_01_nim.m2", + value = "helm_plate_raidwarrior_b_01_nim.m2", + }, + { + fileId = "141080", + text = "helm_plate_raidwarrior_b_01_orf.m2", + value = "helm_plate_raidwarrior_b_01_orf.m2", + }, + { + fileId = "141081", + text = "helm_plate_raidwarrior_b_01_orm.m2", + value = "helm_plate_raidwarrior_b_01_orm.m2", + }, + { + fileId = "141082", + text = "helm_plate_raidwarrior_b_01_scf.m2", + value = "helm_plate_raidwarrior_b_01_scf.m2", + }, + { + fileId = "141083", + text = "helm_plate_raidwarrior_b_01_scm.m2", + value = "helm_plate_raidwarrior_b_01_scm.m2", + }, + { + fileId = "141084", + text = "helm_plate_raidwarrior_b_01_taf.m2", + value = "helm_plate_raidwarrior_b_01_taf.m2", + }, + { + fileId = "141085", + text = "helm_plate_raidwarrior_b_01_tam.m2", + value = "helm_plate_raidwarrior_b_01_tam.m2", + }, + { + fileId = "141086", + text = "helm_plate_raidwarrior_b_01_trf.m2", + value = "helm_plate_raidwarrior_b_01_trf.m2", + }, + { + fileId = "141087", + text = "helm_plate_raidwarrior_b_01_trm.m2", + value = "helm_plate_raidwarrior_b_01_trm.m2", + }, + { + fileId = "141093", + text = "helm_plate_raidwarrior_c_01_bef.m2", + value = "helm_plate_raidwarrior_c_01_bef.m2", + }, + { + fileId = "141094", + text = "helm_plate_raidwarrior_c_01_bem.m2", + value = "helm_plate_raidwarrior_c_01_bem.m2", + }, + { + fileId = "141095", + text = "helm_plate_raidwarrior_c_01_drf.m2", + value = "helm_plate_raidwarrior_c_01_drf.m2", + }, + { + fileId = "141096", + text = "helm_plate_raidwarrior_c_01_drm.m2", + value = "helm_plate_raidwarrior_c_01_drm.m2", + }, + { + fileId = "141097", + text = "helm_plate_raidwarrior_c_01_dwf.m2", + value = "helm_plate_raidwarrior_c_01_dwf.m2", + }, + { + fileId = "141098", + text = "helm_plate_raidwarrior_c_01_dwm.m2", + value = "helm_plate_raidwarrior_c_01_dwm.m2", + }, + { + fileId = "141099", + text = "helm_plate_raidwarrior_c_01_gnf.m2", + value = "helm_plate_raidwarrior_c_01_gnf.m2", + }, + { + fileId = "141100", + text = "helm_plate_raidwarrior_c_01_gnm.m2", + value = "helm_plate_raidwarrior_c_01_gnm.m2", + }, + { + fileId = "141101", + text = "helm_plate_raidwarrior_c_01_gof.m2", + value = "helm_plate_raidwarrior_c_01_gof.m2", + }, + { + fileId = "141102", + text = "helm_plate_raidwarrior_c_01_gom.m2", + value = "helm_plate_raidwarrior_c_01_gom.m2", + }, + { + fileId = "141103", + text = "helm_plate_raidwarrior_c_01_huf.m2", + value = "helm_plate_raidwarrior_c_01_huf.m2", + }, + { + fileId = "141104", + text = "helm_plate_raidwarrior_c_01_hum.m2", + value = "helm_plate_raidwarrior_c_01_hum.m2", + }, + { + fileId = "141105", + text = "helm_plate_raidwarrior_c_01_nif.m2", + value = "helm_plate_raidwarrior_c_01_nif.m2", + }, + { + fileId = "141106", + text = "helm_plate_raidwarrior_c_01_nim.m2", + value = "helm_plate_raidwarrior_c_01_nim.m2", + }, + { + fileId = "141107", + text = "helm_plate_raidwarrior_c_01_orf.m2", + value = "helm_plate_raidwarrior_c_01_orf.m2", + }, + { + fileId = "141108", + text = "helm_plate_raidwarrior_c_01_orm.m2", + value = "helm_plate_raidwarrior_c_01_orm.m2", + }, + { + fileId = "141109", + text = "helm_plate_raidwarrior_c_01_scf.m2", + value = "helm_plate_raidwarrior_c_01_scf.m2", + }, + { + fileId = "141110", + text = "helm_plate_raidwarrior_c_01_scm.m2", + value = "helm_plate_raidwarrior_c_01_scm.m2", + }, + { + fileId = "141111", + text = "helm_plate_raidwarrior_c_01_taf.m2", + value = "helm_plate_raidwarrior_c_01_taf.m2", + }, + { + fileId = "141112", + text = "helm_plate_raidwarrior_c_01_tam.m2", + value = "helm_plate_raidwarrior_c_01_tam.m2", + }, + { + fileId = "141113", + text = "helm_plate_raidwarrior_c_01_trf.m2", + value = "helm_plate_raidwarrior_c_01_trf.m2", + }, + { + fileId = "141114", + text = "helm_plate_raidwarrior_c_01_trm.m2", + value = "helm_plate_raidwarrior_c_01_trm.m2", + }, + { + fileId = "238226", + text = "helm_plate_raidwarrior_c_02_bef.m2", + value = "helm_plate_raidwarrior_c_02_bef.m2", + }, + { + fileId = "238227", + text = "helm_plate_raidwarrior_c_02_bem.m2", + value = "helm_plate_raidwarrior_c_02_bem.m2", + }, + { + fileId = "238228", + text = "helm_plate_raidwarrior_c_02_drf.m2", + value = "helm_plate_raidwarrior_c_02_drf.m2", + }, + { + fileId = "238229", + text = "helm_plate_raidwarrior_c_02_drm.m2", + value = "helm_plate_raidwarrior_c_02_drm.m2", + }, + { + fileId = "238230", + text = "helm_plate_raidwarrior_c_02_dwf.m2", + value = "helm_plate_raidwarrior_c_02_dwf.m2", + }, + { + fileId = "238231", + text = "helm_plate_raidwarrior_c_02_dwm.m2", + value = "helm_plate_raidwarrior_c_02_dwm.m2", + }, + { + fileId = "238232", + text = "helm_plate_raidwarrior_c_02_gnf.m2", + value = "helm_plate_raidwarrior_c_02_gnf.m2", + }, + { + fileId = "238233", + text = "helm_plate_raidwarrior_c_02_gnm.m2", + value = "helm_plate_raidwarrior_c_02_gnm.m2", + }, + { + fileId = "238234", + text = "helm_plate_raidwarrior_c_02_gof.m2", + value = "helm_plate_raidwarrior_c_02_gof.m2", + }, + { + fileId = "238235", + text = "helm_plate_raidwarrior_c_02_gom.m2", + value = "helm_plate_raidwarrior_c_02_gom.m2", + }, + { + fileId = "238236", + text = "helm_plate_raidwarrior_c_02_huf.m2", + value = "helm_plate_raidwarrior_c_02_huf.m2", + }, + { + fileId = "238237", + text = "helm_plate_raidwarrior_c_02_hum.m2", + value = "helm_plate_raidwarrior_c_02_hum.m2", + }, + { + fileId = "238238", + text = "helm_plate_raidwarrior_c_02_nif.m2", + value = "helm_plate_raidwarrior_c_02_nif.m2", + }, + { + fileId = "238239", + text = "helm_plate_raidwarrior_c_02_nim.m2", + value = "helm_plate_raidwarrior_c_02_nim.m2", + }, + { + fileId = "238240", + text = "helm_plate_raidwarrior_c_02_orf.m2", + value = "helm_plate_raidwarrior_c_02_orf.m2", + }, + { + fileId = "238241", + text = "helm_plate_raidwarrior_c_02_orm.m2", + value = "helm_plate_raidwarrior_c_02_orm.m2", + }, + { + fileId = "238242", + text = "helm_plate_raidwarrior_c_02_scf.m2", + value = "helm_plate_raidwarrior_c_02_scf.m2", + }, + { + fileId = "238243", + text = "helm_plate_raidwarrior_c_02_scm.m2", + value = "helm_plate_raidwarrior_c_02_scm.m2", + }, + { + fileId = "238244", + text = "helm_plate_raidwarrior_c_02_taf.m2", + value = "helm_plate_raidwarrior_c_02_taf.m2", + }, + { + fileId = "238245", + text = "helm_plate_raidwarrior_c_02_tam.m2", + value = "helm_plate_raidwarrior_c_02_tam.m2", + }, + { + fileId = "238246", + text = "helm_plate_raidwarrior_c_02_trf.m2", + value = "helm_plate_raidwarrior_c_02_trf.m2", + }, + { + fileId = "238247", + text = "helm_plate_raidwarrior_c_02_trm.m2", + value = "helm_plate_raidwarrior_c_02_trm.m2", + }, + { + fileId = "141117", + text = "helm_plate_raidwarrior_d_01_bef.m2", + value = "helm_plate_raidwarrior_d_01_bef.m2", + }, + { + fileId = "141118", + text = "helm_plate_raidwarrior_d_01_bem.m2", + value = "helm_plate_raidwarrior_d_01_bem.m2", + }, + { + fileId = "141119", + text = "helm_plate_raidwarrior_d_01_drf.m2", + value = "helm_plate_raidwarrior_d_01_drf.m2", + }, + { + fileId = "141120", + text = "helm_plate_raidwarrior_d_01_drm.m2", + value = "helm_plate_raidwarrior_d_01_drm.m2", + }, + { + fileId = "141121", + text = "helm_plate_raidwarrior_d_01_dwf.m2", + value = "helm_plate_raidwarrior_d_01_dwf.m2", + }, + { + fileId = "141122", + text = "helm_plate_raidwarrior_d_01_dwm.m2", + value = "helm_plate_raidwarrior_d_01_dwm.m2", + }, + { + fileId = "141123", + text = "helm_plate_raidwarrior_d_01_gnf.m2", + value = "helm_plate_raidwarrior_d_01_gnf.m2", + }, + { + fileId = "141124", + text = "helm_plate_raidwarrior_d_01_gnm.m2", + value = "helm_plate_raidwarrior_d_01_gnm.m2", + }, + { + fileId = "141125", + text = "helm_plate_raidwarrior_d_01_gof.m2", + value = "helm_plate_raidwarrior_d_01_gof.m2", + }, + { + fileId = "141126", + text = "helm_plate_raidwarrior_d_01_gom.m2", + value = "helm_plate_raidwarrior_d_01_gom.m2", + }, + { + fileId = "141127", + text = "helm_plate_raidwarrior_d_01_huf.m2", + value = "helm_plate_raidwarrior_d_01_huf.m2", + }, + { + fileId = "141128", + text = "helm_plate_raidwarrior_d_01_hum.m2", + value = "helm_plate_raidwarrior_d_01_hum.m2", + }, + { + fileId = "141129", + text = "helm_plate_raidwarrior_d_01_nif.m2", + value = "helm_plate_raidwarrior_d_01_nif.m2", + }, + { + fileId = "141130", + text = "helm_plate_raidwarrior_d_01_nim.m2", + value = "helm_plate_raidwarrior_d_01_nim.m2", + }, + { + fileId = "141131", + text = "helm_plate_raidwarrior_d_01_orf.m2", + value = "helm_plate_raidwarrior_d_01_orf.m2", + }, + { + fileId = "141132", + text = "helm_plate_raidwarrior_d_01_orm.m2", + value = "helm_plate_raidwarrior_d_01_orm.m2", + }, + { + fileId = "141133", + text = "helm_plate_raidwarrior_d_01_scf.m2", + value = "helm_plate_raidwarrior_d_01_scf.m2", + }, + { + fileId = "141134", + text = "helm_plate_raidwarrior_d_01_scm.m2", + value = "helm_plate_raidwarrior_d_01_scm.m2", + }, + { + fileId = "141135", + text = "helm_plate_raidwarrior_d_01_taf.m2", + value = "helm_plate_raidwarrior_d_01_taf.m2", + }, + { + fileId = "141136", + text = "helm_plate_raidwarrior_d_01_tam.m2", + value = "helm_plate_raidwarrior_d_01_tam.m2", + }, + { + fileId = "141137", + text = "helm_plate_raidwarrior_d_01_trf.m2", + value = "helm_plate_raidwarrior_d_01_trf.m2", + }, + { + fileId = "141138", + text = "helm_plate_raidwarrior_d_01_trm.m2", + value = "helm_plate_raidwarrior_d_01_trm.m2", + }, + { + fileId = "141141", + text = "helm_plate_raidwarrior_e_01_bef.m2", + value = "helm_plate_raidwarrior_e_01_bef.m2", + }, + { + fileId = "141142", + text = "helm_plate_raidwarrior_e_01_bem.m2", + value = "helm_plate_raidwarrior_e_01_bem.m2", + }, + { + fileId = "141143", + text = "helm_plate_raidwarrior_e_01_drf.m2", + value = "helm_plate_raidwarrior_e_01_drf.m2", + }, + { + fileId = "141144", + text = "helm_plate_raidwarrior_e_01_drm.m2", + value = "helm_plate_raidwarrior_e_01_drm.m2", + }, + { + fileId = "141145", + text = "helm_plate_raidwarrior_e_01_dwf.m2", + value = "helm_plate_raidwarrior_e_01_dwf.m2", + }, + { + fileId = "141146", + text = "helm_plate_raidwarrior_e_01_dwm.m2", + value = "helm_plate_raidwarrior_e_01_dwm.m2", + }, + { + fileId = "141147", + text = "helm_plate_raidwarrior_e_01_gnf.m2", + value = "helm_plate_raidwarrior_e_01_gnf.m2", + }, + { + fileId = "141148", + text = "helm_plate_raidwarrior_e_01_gnm.m2", + value = "helm_plate_raidwarrior_e_01_gnm.m2", + }, + { + fileId = "141149", + text = "helm_plate_raidwarrior_e_01_gof.m2", + value = "helm_plate_raidwarrior_e_01_gof.m2", + }, + { + fileId = "141150", + text = "helm_plate_raidwarrior_e_01_gom.m2", + value = "helm_plate_raidwarrior_e_01_gom.m2", + }, + { + fileId = "141151", + text = "helm_plate_raidwarrior_e_01_huf.m2", + value = "helm_plate_raidwarrior_e_01_huf.m2", + }, + { + fileId = "141152", + text = "helm_plate_raidwarrior_e_01_hum.m2", + value = "helm_plate_raidwarrior_e_01_hum.m2", + }, + { + fileId = "141153", + text = "helm_plate_raidwarrior_e_01_nif.m2", + value = "helm_plate_raidwarrior_e_01_nif.m2", + }, + { + fileId = "141154", + text = "helm_plate_raidwarrior_e_01_nim.m2", + value = "helm_plate_raidwarrior_e_01_nim.m2", + }, + { + fileId = "141155", + text = "helm_plate_raidwarrior_e_01_orf.m2", + value = "helm_plate_raidwarrior_e_01_orf.m2", + }, + { + fileId = "141156", + text = "helm_plate_raidwarrior_e_01_orm.m2", + value = "helm_plate_raidwarrior_e_01_orm.m2", + }, + { + fileId = "141157", + text = "helm_plate_raidwarrior_e_01_scf.m2", + value = "helm_plate_raidwarrior_e_01_scf.m2", + }, + { + fileId = "141158", + text = "helm_plate_raidwarrior_e_01_scm.m2", + value = "helm_plate_raidwarrior_e_01_scm.m2", + }, + { + fileId = "141159", + text = "helm_plate_raidwarrior_e_01_taf.m2", + value = "helm_plate_raidwarrior_e_01_taf.m2", + }, + { + fileId = "141160", + text = "helm_plate_raidwarrior_e_01_tam.m2", + value = "helm_plate_raidwarrior_e_01_tam.m2", + }, + { + fileId = "141161", + text = "helm_plate_raidwarrior_e_01_trf.m2", + value = "helm_plate_raidwarrior_e_01_trf.m2", + }, + { + fileId = "141162", + text = "helm_plate_raidwarrior_e_01_trm.m2", + value = "helm_plate_raidwarrior_e_01_trm.m2", + }, + { + fileId = "141165", + text = "helm_plate_raidwarrior_f_01_bef.m2", + value = "helm_plate_raidwarrior_f_01_bef.m2", + }, + { + fileId = "141166", + text = "helm_plate_raidwarrior_f_01_bem.m2", + value = "helm_plate_raidwarrior_f_01_bem.m2", + }, + { + fileId = "141167", + text = "helm_plate_raidwarrior_f_01_drf.m2", + value = "helm_plate_raidwarrior_f_01_drf.m2", + }, + { + fileId = "141168", + text = "helm_plate_raidwarrior_f_01_drm.m2", + value = "helm_plate_raidwarrior_f_01_drm.m2", + }, + { + fileId = "141169", + text = "helm_plate_raidwarrior_f_01_dwf.m2", + value = "helm_plate_raidwarrior_f_01_dwf.m2", + }, + { + fileId = "141170", + text = "helm_plate_raidwarrior_f_01_dwm.m2", + value = "helm_plate_raidwarrior_f_01_dwm.m2", + }, + { + fileId = "141172", + text = "helm_plate_raidwarrior_f_01_gnf.m2", + value = "helm_plate_raidwarrior_f_01_gnf.m2", + }, + { + fileId = "141173", + text = "helm_plate_raidwarrior_f_01_gnm.m2", + value = "helm_plate_raidwarrior_f_01_gnm.m2", + }, + { + fileId = "141174", + text = "helm_plate_raidwarrior_f_01_gof.m2", + value = "helm_plate_raidwarrior_f_01_gof.m2", + }, + { + fileId = "141175", + text = "helm_plate_raidwarrior_f_01_gom.m2", + value = "helm_plate_raidwarrior_f_01_gom.m2", + }, + { + fileId = "141176", + text = "helm_plate_raidwarrior_f_01_huf.m2", + value = "helm_plate_raidwarrior_f_01_huf.m2", + }, + { + fileId = "141177", + text = "helm_plate_raidwarrior_f_01_hum.m2", + value = "helm_plate_raidwarrior_f_01_hum.m2", + }, + { + fileId = "141178", + text = "helm_plate_raidwarrior_f_01_nif.m2", + value = "helm_plate_raidwarrior_f_01_nif.m2", + }, + { + fileId = "141179", + text = "helm_plate_raidwarrior_f_01_nim.m2", + value = "helm_plate_raidwarrior_f_01_nim.m2", + }, + { + fileId = "141180", + text = "helm_plate_raidwarrior_f_01_orf.m2", + value = "helm_plate_raidwarrior_f_01_orf.m2", + }, + { + fileId = "141181", + text = "helm_plate_raidwarrior_f_01_orm.m2", + value = "helm_plate_raidwarrior_f_01_orm.m2", + }, + { + fileId = "141182", + text = "helm_plate_raidwarrior_f_01_scf.m2", + value = "helm_plate_raidwarrior_f_01_scf.m2", + }, + { + fileId = "141183", + text = "helm_plate_raidwarrior_f_01_scm.m2", + value = "helm_plate_raidwarrior_f_01_scm.m2", + }, + { + fileId = "141184", + text = "helm_plate_raidwarrior_f_01_taf.m2", + value = "helm_plate_raidwarrior_f_01_taf.m2", + }, + { + fileId = "141185", + text = "helm_plate_raidwarrior_f_01_tam.m2", + value = "helm_plate_raidwarrior_f_01_tam.m2", + }, + { + fileId = "141186", + text = "helm_plate_raidwarrior_f_01_trf.m2", + value = "helm_plate_raidwarrior_f_01_trf.m2", + }, + { + fileId = "141187", + text = "helm_plate_raidwarrior_f_01_trm.m2", + value = "helm_plate_raidwarrior_f_01_trm.m2", + }, + { + fileId = "251540", + text = "helm_plate_raidwarrior_g_01_bef.m2", + value = "helm_plate_raidwarrior_g_01_bef.m2", + }, + { + fileId = "251541", + text = "helm_plate_raidwarrior_g_01_bem.m2", + value = "helm_plate_raidwarrior_g_01_bem.m2", + }, + { + fileId = "251542", + text = "helm_plate_raidwarrior_g_01_drf.m2", + value = "helm_plate_raidwarrior_g_01_drf.m2", + }, + { + fileId = "251543", + text = "helm_plate_raidwarrior_g_01_drm.m2", + value = "helm_plate_raidwarrior_g_01_drm.m2", + }, + { + fileId = "251544", + text = "helm_plate_raidwarrior_g_01_dwf.m2", + value = "helm_plate_raidwarrior_g_01_dwf.m2", + }, + { + fileId = "251545", + text = "helm_plate_raidwarrior_g_01_dwm.m2", + value = "helm_plate_raidwarrior_g_01_dwm.m2", + }, + { + fileId = "251546", + text = "helm_plate_raidwarrior_g_01_gnf.m2", + value = "helm_plate_raidwarrior_g_01_gnf.m2", + }, + { + fileId = "251547", + text = "helm_plate_raidwarrior_g_01_gnm.m2", + value = "helm_plate_raidwarrior_g_01_gnm.m2", + }, + { + fileId = "251548", + text = "helm_plate_raidwarrior_g_01_gof.m2", + value = "helm_plate_raidwarrior_g_01_gof.m2", + }, + { + fileId = "251549", + text = "helm_plate_raidwarrior_g_01_gom.m2", + value = "helm_plate_raidwarrior_g_01_gom.m2", + }, + { + fileId = "251550", + text = "helm_plate_raidwarrior_g_01_huf.m2", + value = "helm_plate_raidwarrior_g_01_huf.m2", + }, + { + fileId = "251551", + text = "helm_plate_raidwarrior_g_01_hum.m2", + value = "helm_plate_raidwarrior_g_01_hum.m2", + }, + { + fileId = "251552", + text = "helm_plate_raidwarrior_g_01_nif.m2", + value = "helm_plate_raidwarrior_g_01_nif.m2", + }, + { + fileId = "251553", + text = "helm_plate_raidwarrior_g_01_nim.m2", + value = "helm_plate_raidwarrior_g_01_nim.m2", + }, + { + fileId = "251554", + text = "helm_plate_raidwarrior_g_01_orf.m2", + value = "helm_plate_raidwarrior_g_01_orf.m2", + }, + { + fileId = "251555", + text = "helm_plate_raidwarrior_g_01_orm.m2", + value = "helm_plate_raidwarrior_g_01_orm.m2", + }, + { + fileId = "251556", + text = "helm_plate_raidwarrior_g_01_scf.m2", + value = "helm_plate_raidwarrior_g_01_scf.m2", + }, + { + fileId = "251557", + text = "helm_plate_raidwarrior_g_01_scm.m2", + value = "helm_plate_raidwarrior_g_01_scm.m2", + }, + { + fileId = "251558", + text = "helm_plate_raidwarrior_g_01_taf.m2", + value = "helm_plate_raidwarrior_g_01_taf.m2", + }, + { + fileId = "251559", + text = "helm_plate_raidwarrior_g_01_tam.m2", + value = "helm_plate_raidwarrior_g_01_tam.m2", + }, + { + fileId = "251560", + text = "helm_plate_raidwarrior_g_01_trf.m2", + value = "helm_plate_raidwarrior_g_01_trf.m2", + }, + { + fileId = "251561", + text = "helm_plate_raidwarrior_g_01_trm.m2", + value = "helm_plate_raidwarrior_g_01_trm.m2", + }, + { + fileId = "331348", + text = "helm_plate_raidwarrior_h_01_bef.m2", + value = "helm_plate_raidwarrior_h_01_bef.m2", + }, + { + fileId = "331349", + text = "helm_plate_raidwarrior_h_01_bem.m2", + value = "helm_plate_raidwarrior_h_01_bem.m2", + }, + { + fileId = "331350", + text = "helm_plate_raidwarrior_h_01_drf.m2", + value = "helm_plate_raidwarrior_h_01_drf.m2", + }, + { + fileId = "331351", + text = "helm_plate_raidwarrior_h_01_drm.m2", + value = "helm_plate_raidwarrior_h_01_drm.m2", + }, + { + fileId = "331352", + text = "helm_plate_raidwarrior_h_01_dwf.m2", + value = "helm_plate_raidwarrior_h_01_dwf.m2", + }, + { + fileId = "331353", + text = "helm_plate_raidwarrior_h_01_dwm.m2", + value = "helm_plate_raidwarrior_h_01_dwm.m2", + }, + { + fileId = "331354", + text = "helm_plate_raidwarrior_h_01_gnf.m2", + value = "helm_plate_raidwarrior_h_01_gnf.m2", + }, + { + fileId = "331355", + text = "helm_plate_raidwarrior_h_01_gnm.m2", + value = "helm_plate_raidwarrior_h_01_gnm.m2", + }, + { + fileId = "331356", + text = "helm_plate_raidwarrior_h_01_gof.m2", + value = "helm_plate_raidwarrior_h_01_gof.m2", + }, + { + fileId = "331357", + text = "helm_plate_raidwarrior_h_01_gom.m2", + value = "helm_plate_raidwarrior_h_01_gom.m2", + }, + { + fileId = "331358", + text = "helm_plate_raidwarrior_h_01_huf.m2", + value = "helm_plate_raidwarrior_h_01_huf.m2", + }, + { + fileId = "331359", + text = "helm_plate_raidwarrior_h_01_hum.m2", + value = "helm_plate_raidwarrior_h_01_hum.m2", + }, + { + fileId = "331360", + text = "helm_plate_raidwarrior_h_01_nif.m2", + value = "helm_plate_raidwarrior_h_01_nif.m2", + }, + { + fileId = "331361", + text = "helm_plate_raidwarrior_h_01_nim.m2", + value = "helm_plate_raidwarrior_h_01_nim.m2", + }, + { + fileId = "331362", + text = "helm_plate_raidwarrior_h_01_orf.m2", + value = "helm_plate_raidwarrior_h_01_orf.m2", + }, + { + fileId = "331363", + text = "helm_plate_raidwarrior_h_01_orm.m2", + value = "helm_plate_raidwarrior_h_01_orm.m2", + }, + { + fileId = "331364", + text = "helm_plate_raidwarrior_h_01_scf.m2", + value = "helm_plate_raidwarrior_h_01_scf.m2", + }, + { + fileId = "331365", + text = "helm_plate_raidwarrior_h_01_scm.m2", + value = "helm_plate_raidwarrior_h_01_scm.m2", + }, + { + fileId = "331366", + text = "helm_plate_raidwarrior_h_01_taf.m2", + value = "helm_plate_raidwarrior_h_01_taf.m2", + }, + { + fileId = "331367", + text = "helm_plate_raidwarrior_h_01_tam.m2", + value = "helm_plate_raidwarrior_h_01_tam.m2", + }, + { + fileId = "331368", + text = "helm_plate_raidwarrior_h_01_trf.m2", + value = "helm_plate_raidwarrior_h_01_trf.m2", + }, + { + fileId = "331369", + text = "helm_plate_raidwarrior_h_01_trm.m2", + value = "helm_plate_raidwarrior_h_01_trm.m2", + }, + { + fileId = "141194", + text = "helm_plate_sunwell_d_01_bef.m2", + value = "helm_plate_sunwell_d_01_bef.m2", + }, + { + fileId = "141195", + text = "helm_plate_sunwell_d_01_bem.m2", + value = "helm_plate_sunwell_d_01_bem.m2", + }, + { + fileId = "141196", + text = "helm_plate_sunwell_d_01_drf.m2", + value = "helm_plate_sunwell_d_01_drf.m2", + }, + { + fileId = "141197", + text = "helm_plate_sunwell_d_01_drm.m2", + value = "helm_plate_sunwell_d_01_drm.m2", + }, + { + fileId = "141198", + text = "helm_plate_sunwell_d_01_dwf.m2", + value = "helm_plate_sunwell_d_01_dwf.m2", + }, + { + fileId = "141199", + text = "helm_plate_sunwell_d_01_dwm.m2", + value = "helm_plate_sunwell_d_01_dwm.m2", + }, + { + fileId = "141200", + text = "helm_plate_sunwell_d_01_gnf.m2", + value = "helm_plate_sunwell_d_01_gnf.m2", + }, + { + fileId = "141201", + text = "helm_plate_sunwell_d_01_gnm.m2", + value = "helm_plate_sunwell_d_01_gnm.m2", + }, + { + fileId = "141202", + text = "helm_plate_sunwell_d_01_gof.m2", + value = "helm_plate_sunwell_d_01_gof.m2", + }, + { + fileId = "141203", + text = "helm_plate_sunwell_d_01_gom.m2", + value = "helm_plate_sunwell_d_01_gom.m2", + }, + { + fileId = "141204", + text = "helm_plate_sunwell_d_01_huf.m2", + value = "helm_plate_sunwell_d_01_huf.m2", + }, + { + fileId = "141205", + text = "helm_plate_sunwell_d_01_hum.m2", + value = "helm_plate_sunwell_d_01_hum.m2", + }, + { + fileId = "141206", + text = "helm_plate_sunwell_d_01_nif.m2", + value = "helm_plate_sunwell_d_01_nif.m2", + }, + { + fileId = "141207", + text = "helm_plate_sunwell_d_01_nim.m2", + value = "helm_plate_sunwell_d_01_nim.m2", + }, + { + fileId = "141208", + text = "helm_plate_sunwell_d_01_orf.m2", + value = "helm_plate_sunwell_d_01_orf.m2", + }, + { + fileId = "141209", + text = "helm_plate_sunwell_d_01_orm.m2", + value = "helm_plate_sunwell_d_01_orm.m2", + }, + { + fileId = "141210", + text = "helm_plate_sunwell_d_01_scf.m2", + value = "helm_plate_sunwell_d_01_scf.m2", + }, + { + fileId = "141211", + text = "helm_plate_sunwell_d_01_scm.m2", + value = "helm_plate_sunwell_d_01_scm.m2", + }, + { + fileId = "141212", + text = "helm_plate_sunwell_d_01_taf.m2", + value = "helm_plate_sunwell_d_01_taf.m2", + }, + { + fileId = "141213", + text = "helm_plate_sunwell_d_01_tam.m2", + value = "helm_plate_sunwell_d_01_tam.m2", + }, + { + fileId = "141214", + text = "helm_plate_sunwell_d_01_trf.m2", + value = "helm_plate_sunwell_d_01_trf.m2", + }, + { + fileId = "141215", + text = "helm_plate_sunwell_d_01_trm.m2", + value = "helm_plate_sunwell_d_01_trm.m2", + }, + { + fileId = "141220", + text = "helm_plate_viking_d_01_bef.m2", + value = "helm_plate_viking_d_01_bef.m2", + }, + { + fileId = "141221", + text = "helm_plate_viking_d_01_bem.m2", + value = "helm_plate_viking_d_01_bem.m2", + }, + { + fileId = "141222", + text = "helm_plate_viking_d_01_drf.m2", + value = "helm_plate_viking_d_01_drf.m2", + }, + { + fileId = "141223", + text = "helm_plate_viking_d_01_drm.m2", + value = "helm_plate_viking_d_01_drm.m2", + }, + { + fileId = "141224", + text = "helm_plate_viking_d_01_dwf.m2", + value = "helm_plate_viking_d_01_dwf.m2", + }, + { + fileId = "141225", + text = "helm_plate_viking_d_01_dwm.m2", + value = "helm_plate_viking_d_01_dwm.m2", + }, + { + fileId = "141226", + text = "helm_plate_viking_d_01_gnf.m2", + value = "helm_plate_viking_d_01_gnf.m2", + }, + { + fileId = "141227", + text = "helm_plate_viking_d_01_gnm.m2", + value = "helm_plate_viking_d_01_gnm.m2", + }, + { + fileId = "141228", + text = "helm_plate_viking_d_01_huf.m2", + value = "helm_plate_viking_d_01_huf.m2", + }, + { + fileId = "141229", + text = "helm_plate_viking_d_01_hum.m2", + value = "helm_plate_viking_d_01_hum.m2", + }, + { + fileId = "141230", + text = "helm_plate_viking_d_01_nif.m2", + value = "helm_plate_viking_d_01_nif.m2", + }, + { + fileId = "141231", + text = "helm_plate_viking_d_01_nim.m2", + value = "helm_plate_viking_d_01_nim.m2", + }, + { + fileId = "238249", + text = "helm_plate_viking_d_01_nsm.m2", + value = "helm_plate_viking_d_01_nsm.m2", + }, + { + fileId = "141232", + text = "helm_plate_viking_d_01_orf.m2", + value = "helm_plate_viking_d_01_orf.m2", + }, + { + fileId = "141233", + text = "helm_plate_viking_d_01_orm.m2", + value = "helm_plate_viking_d_01_orm.m2", + }, + { + fileId = "141234", + text = "helm_plate_viking_d_01_scf.m2", + value = "helm_plate_viking_d_01_scf.m2", + }, + { + fileId = "141235", + text = "helm_plate_viking_d_01_scm.m2", + value = "helm_plate_viking_d_01_scm.m2", + }, + { + fileId = "141236", + text = "helm_plate_viking_d_01_taf.m2", + value = "helm_plate_viking_d_01_taf.m2", + }, + { + fileId = "141237", + text = "helm_plate_viking_d_01_tam.m2", + value = "helm_plate_viking_d_01_tam.m2", + }, + { + fileId = "141238", + text = "helm_plate_viking_d_01_trf.m2", + value = "helm_plate_viking_d_01_trf.m2", + }, + { + fileId = "141239", + text = "helm_plate_viking_d_01_trm.m2", + value = "helm_plate_viking_d_01_trm.m2", + }, + { + fileId = "238251", + text = "helm_plate_vrykul_01_nsm.m2", + value = "helm_plate_vrykul_01_nsm.m2", + }, + { + fileId = "238252", + text = "helm_plate_vrykul_01_vrm.m2", + value = "helm_plate_vrykul_01_vrm.m2", + }, + { + fileId = "141246", + text = "helm_plate_zulaman_d_01_bef.m2", + value = "helm_plate_zulaman_d_01_bef.m2", + }, + { + fileId = "141247", + text = "helm_plate_zulaman_d_01_bem.m2", + value = "helm_plate_zulaman_d_01_bem.m2", + }, + { + fileId = "141248", + text = "helm_plate_zulaman_d_01_drf.m2", + value = "helm_plate_zulaman_d_01_drf.m2", + }, + { + fileId = "141249", + text = "helm_plate_zulaman_d_01_drm.m2", + value = "helm_plate_zulaman_d_01_drm.m2", + }, + { + fileId = "141250", + text = "helm_plate_zulaman_d_01_dwf.m2", + value = "helm_plate_zulaman_d_01_dwf.m2", + }, + { + fileId = "141251", + text = "helm_plate_zulaman_d_01_dwm.m2", + value = "helm_plate_zulaman_d_01_dwm.m2", + }, + { + fileId = "141252", + text = "helm_plate_zulaman_d_01_gnf.m2", + value = "helm_plate_zulaman_d_01_gnf.m2", + }, + { + fileId = "141253", + text = "helm_plate_zulaman_d_01_gnm.m2", + value = "helm_plate_zulaman_d_01_gnm.m2", + }, + { + fileId = "141254", + text = "helm_plate_zulaman_d_01_gof.m2", + value = "helm_plate_zulaman_d_01_gof.m2", + }, + { + fileId = "141255", + text = "helm_plate_zulaman_d_01_gom.m2", + value = "helm_plate_zulaman_d_01_gom.m2", + }, + { + fileId = "141256", + text = "helm_plate_zulaman_d_01_huf.m2", + value = "helm_plate_zulaman_d_01_huf.m2", + }, + { + fileId = "141257", + text = "helm_plate_zulaman_d_01_hum.m2", + value = "helm_plate_zulaman_d_01_hum.m2", + }, + { + fileId = "141258", + text = "helm_plate_zulaman_d_01_nif.m2", + value = "helm_plate_zulaman_d_01_nif.m2", + }, + { + fileId = "141259", + text = "helm_plate_zulaman_d_01_nim.m2", + value = "helm_plate_zulaman_d_01_nim.m2", + }, + { + fileId = "141260", + text = "helm_plate_zulaman_d_01_orf.m2", + value = "helm_plate_zulaman_d_01_orf.m2", + }, + { + fileId = "141261", + text = "helm_plate_zulaman_d_01_orm.m2", + value = "helm_plate_zulaman_d_01_orm.m2", + }, + { + fileId = "141262", + text = "helm_plate_zulaman_d_01_scf.m2", + value = "helm_plate_zulaman_d_01_scf.m2", + }, + { + fileId = "141263", + text = "helm_plate_zulaman_d_01_scm.m2", + value = "helm_plate_zulaman_d_01_scm.m2", + }, + { + fileId = "141264", + text = "helm_plate_zulaman_d_01_taf.m2", + value = "helm_plate_zulaman_d_01_taf.m2", + }, + { + fileId = "141265", + text = "helm_plate_zulaman_d_01_tam.m2", + value = "helm_plate_zulaman_d_01_tam.m2", + }, + { + fileId = "141266", + text = "helm_plate_zulaman_d_01_trf.m2", + value = "helm_plate_zulaman_d_01_trf.m2", + }, + { + fileId = "141267", + text = "helm_plate_zulaman_d_01_trm.m2", + value = "helm_plate_zulaman_d_01_trm.m2", + }, + { + fileId = "141272", + text = "helm_plate_zulaman_d_02_bef.m2", + value = "helm_plate_zulaman_d_02_bef.m2", + }, + { + fileId = "141273", + text = "helm_plate_zulaman_d_02_bem.m2", + value = "helm_plate_zulaman_d_02_bem.m2", + }, + { + fileId = "141274", + text = "helm_plate_zulaman_d_02_drf.m2", + value = "helm_plate_zulaman_d_02_drf.m2", + }, + { + fileId = "141275", + text = "helm_plate_zulaman_d_02_drm.m2", + value = "helm_plate_zulaman_d_02_drm.m2", + }, + { + fileId = "141276", + text = "helm_plate_zulaman_d_02_dwf.m2", + value = "helm_plate_zulaman_d_02_dwf.m2", + }, + { + fileId = "141277", + text = "helm_plate_zulaman_d_02_dwm.m2", + value = "helm_plate_zulaman_d_02_dwm.m2", + }, + { + fileId = "141278", + text = "helm_plate_zulaman_d_02_gnf.m2", + value = "helm_plate_zulaman_d_02_gnf.m2", + }, + { + fileId = "141279", + text = "helm_plate_zulaman_d_02_gnm.m2", + value = "helm_plate_zulaman_d_02_gnm.m2", + }, + { + fileId = "141280", + text = "helm_plate_zulaman_d_02_huf.m2", + value = "helm_plate_zulaman_d_02_huf.m2", + }, + { + fileId = "141281", + text = "helm_plate_zulaman_d_02_hum.m2", + value = "helm_plate_zulaman_d_02_hum.m2", + }, + { + fileId = "141282", + text = "helm_plate_zulaman_d_02_nif.m2", + value = "helm_plate_zulaman_d_02_nif.m2", + }, + { + fileId = "141283", + text = "helm_plate_zulaman_d_02_nim.m2", + value = "helm_plate_zulaman_d_02_nim.m2", + }, + { + fileId = "141284", + text = "helm_plate_zulaman_d_02_orf.m2", + value = "helm_plate_zulaman_d_02_orf.m2", + }, + { + fileId = "141285", + text = "helm_plate_zulaman_d_02_orm.m2", + value = "helm_plate_zulaman_d_02_orm.m2", + }, + { + fileId = "141286", + text = "helm_plate_zulaman_d_02_scf.m2", + value = "helm_plate_zulaman_d_02_scf.m2", + }, + { + fileId = "141287", + text = "helm_plate_zulaman_d_02_scm.m2", + value = "helm_plate_zulaman_d_02_scm.m2", + }, + { + fileId = "141288", + text = "helm_plate_zulaman_d_02_taf.m2", + value = "helm_plate_zulaman_d_02_taf.m2", + }, + { + fileId = "141289", + text = "helm_plate_zulaman_d_02_tam.m2", + value = "helm_plate_zulaman_d_02_tam.m2", + }, + { + fileId = "141290", + text = "helm_plate_zulaman_d_02_trf.m2", + value = "helm_plate_zulaman_d_02_trf.m2", + }, + { + fileId = "141291", + text = "helm_plate_zulaman_d_02_trm.m2", + value = "helm_plate_zulaman_d_02_trm.m2", + }, + { + fileId = "141296", + text = "helm_plate_zulaman_d_03_bef.m2", + value = "helm_plate_zulaman_d_03_bef.m2", + }, + { + fileId = "141297", + text = "helm_plate_zulaman_d_03_bem.m2", + value = "helm_plate_zulaman_d_03_bem.m2", + }, + { + fileId = "141298", + text = "helm_plate_zulaman_d_03_drf.m2", + value = "helm_plate_zulaman_d_03_drf.m2", + }, + { + fileId = "141299", + text = "helm_plate_zulaman_d_03_drm.m2", + value = "helm_plate_zulaman_d_03_drm.m2", + }, + { + fileId = "141300", + text = "helm_plate_zulaman_d_03_dwf.m2", + value = "helm_plate_zulaman_d_03_dwf.m2", + }, + { + fileId = "141301", + text = "helm_plate_zulaman_d_03_dwm.m2", + value = "helm_plate_zulaman_d_03_dwm.m2", + }, + { + fileId = "141302", + text = "helm_plate_zulaman_d_03_gnf.m2", + value = "helm_plate_zulaman_d_03_gnf.m2", + }, + { + fileId = "141303", + text = "helm_plate_zulaman_d_03_gnm.m2", + value = "helm_plate_zulaman_d_03_gnm.m2", + }, + { + fileId = "141304", + text = "helm_plate_zulaman_d_03_gof.m2", + value = "helm_plate_zulaman_d_03_gof.m2", + }, + { + fileId = "141305", + text = "helm_plate_zulaman_d_03_gom.m2", + value = "helm_plate_zulaman_d_03_gom.m2", + }, + { + fileId = "141306", + text = "helm_plate_zulaman_d_03_huf.m2", + value = "helm_plate_zulaman_d_03_huf.m2", + }, + { + fileId = "141307", + text = "helm_plate_zulaman_d_03_hum.m2", + value = "helm_plate_zulaman_d_03_hum.m2", + }, + { + fileId = "141308", + text = "helm_plate_zulaman_d_03_nif.m2", + value = "helm_plate_zulaman_d_03_nif.m2", + }, + { + fileId = "141309", + text = "helm_plate_zulaman_d_03_nim.m2", + value = "helm_plate_zulaman_d_03_nim.m2", + }, + { + fileId = "141310", + text = "helm_plate_zulaman_d_03_orf.m2", + value = "helm_plate_zulaman_d_03_orf.m2", + }, + { + fileId = "141311", + text = "helm_plate_zulaman_d_03_orm.m2", + value = "helm_plate_zulaman_d_03_orm.m2", + }, + { + fileId = "141312", + text = "helm_plate_zulaman_d_03_scf.m2", + value = "helm_plate_zulaman_d_03_scf.m2", + }, + { + fileId = "141313", + text = "helm_plate_zulaman_d_03_scm.m2", + value = "helm_plate_zulaman_d_03_scm.m2", + }, + { + fileId = "141314", + text = "helm_plate_zulaman_d_03_taf.m2", + value = "helm_plate_zulaman_d_03_taf.m2", + }, + { + fileId = "141315", + text = "helm_plate_zulaman_d_03_tam.m2", + value = "helm_plate_zulaman_d_03_tam.m2", + }, + { + fileId = "141316", + text = "helm_plate_zulaman_d_03_trf.m2", + value = "helm_plate_zulaman_d_03_trf.m2", + }, + { + fileId = "141317", + text = "helm_plate_zulaman_d_03_trm.m2", + value = "helm_plate_zulaman_d_03_trm.m2", + }, + { + fileId = "141324", + text = "helm_robe_ahnqiraj_a_01_bef.m2", + value = "helm_robe_ahnqiraj_a_01_bef.m2", + }, + { + fileId = "141325", + text = "helm_robe_ahnqiraj_a_01_bem.m2", + value = "helm_robe_ahnqiraj_a_01_bem.m2", + }, + { + fileId = "141326", + text = "helm_robe_ahnqiraj_a_01_drf.m2", + value = "helm_robe_ahnqiraj_a_01_drf.m2", + }, + { + fileId = "141327", + text = "helm_robe_ahnqiraj_a_01_drm.m2", + value = "helm_robe_ahnqiraj_a_01_drm.m2", + }, + { + fileId = "141328", + text = "helm_robe_ahnqiraj_a_01_dwf.m2", + value = "helm_robe_ahnqiraj_a_01_dwf.m2", + }, + { + fileId = "141329", + text = "helm_robe_ahnqiraj_a_01_dwm.m2", + value = "helm_robe_ahnqiraj_a_01_dwm.m2", + }, + { + fileId = "141330", + text = "helm_robe_ahnqiraj_a_01_gnf.m2", + value = "helm_robe_ahnqiraj_a_01_gnf.m2", + }, + { + fileId = "141331", + text = "helm_robe_ahnqiraj_a_01_gnm.m2", + value = "helm_robe_ahnqiraj_a_01_gnm.m2", + }, + { + fileId = "141332", + text = "helm_robe_ahnqiraj_a_01_gof.m2", + value = "helm_robe_ahnqiraj_a_01_gof.m2", + }, + { + fileId = "141333", + text = "helm_robe_ahnqiraj_a_01_huf.m2", + value = "helm_robe_ahnqiraj_a_01_huf.m2", + }, + { + fileId = "141334", + text = "helm_robe_ahnqiraj_a_01_hum.m2", + value = "helm_robe_ahnqiraj_a_01_hum.m2", + }, + { + fileId = "141335", + text = "helm_robe_ahnqiraj_a_01_nif.m2", + value = "helm_robe_ahnqiraj_a_01_nif.m2", + }, + { + fileId = "141336", + text = "helm_robe_ahnqiraj_a_01_nim.m2", + value = "helm_robe_ahnqiraj_a_01_nim.m2", + }, + { + fileId = "141337", + text = "helm_robe_ahnqiraj_a_01_orf.m2", + value = "helm_robe_ahnqiraj_a_01_orf.m2", + }, + { + fileId = "141338", + text = "helm_robe_ahnqiraj_a_01_orm.m2", + value = "helm_robe_ahnqiraj_a_01_orm.m2", + }, + { + fileId = "141339", + text = "helm_robe_ahnqiraj_a_01_scf.m2", + value = "helm_robe_ahnqiraj_a_01_scf.m2", + }, + { + fileId = "141340", + text = "helm_robe_ahnqiraj_a_01_scm.m2", + value = "helm_robe_ahnqiraj_a_01_scm.m2", + }, + { + fileId = "141341", + text = "helm_robe_ahnqiraj_a_01_taf.m2", + value = "helm_robe_ahnqiraj_a_01_taf.m2", + }, + { + fileId = "141342", + text = "helm_robe_ahnqiraj_a_01_tam.m2", + value = "helm_robe_ahnqiraj_a_01_tam.m2", + }, + { + fileId = "141343", + text = "helm_robe_ahnqiraj_a_01_trf.m2", + value = "helm_robe_ahnqiraj_a_01_trf.m2", + }, + { + fileId = "141344", + text = "helm_robe_ahnqiraj_a_01_trm.m2", + value = "helm_robe_ahnqiraj_a_01_trm.m2", + }, + { + fileId = "314762", + text = "helm_robe_argentalliance_d_01_bef.m2", + value = "helm_robe_argentalliance_d_01_bef.m2", + }, + { + fileId = "314763", + text = "helm_robe_argentalliance_d_01_bem.m2", + value = "helm_robe_argentalliance_d_01_bem.m2", + }, + { + fileId = "314764", + text = "helm_robe_argentalliance_d_01_drf.m2", + value = "helm_robe_argentalliance_d_01_drf.m2", + }, + { + fileId = "314765", + text = "helm_robe_argentalliance_d_01_drm.m2", + value = "helm_robe_argentalliance_d_01_drm.m2", + }, + { + fileId = "314766", + text = "helm_robe_argentalliance_d_01_dwf.m2", + value = "helm_robe_argentalliance_d_01_dwf.m2", + }, + { + fileId = "314767", + text = "helm_robe_argentalliance_d_01_dwm.m2", + value = "helm_robe_argentalliance_d_01_dwm.m2", + }, + { + fileId = "314768", + text = "helm_robe_argentalliance_d_01_gnf.m2", + value = "helm_robe_argentalliance_d_01_gnf.m2", + }, + { + fileId = "314769", + text = "helm_robe_argentalliance_d_01_gnm.m2", + value = "helm_robe_argentalliance_d_01_gnm.m2", + }, + { + fileId = "314770", + text = "helm_robe_argentalliance_d_01_gof.m2", + value = "helm_robe_argentalliance_d_01_gof.m2", + }, + { + fileId = "314771", + text = "helm_robe_argentalliance_d_01_gom.m2", + value = "helm_robe_argentalliance_d_01_gom.m2", + }, + { + fileId = "314772", + text = "helm_robe_argentalliance_d_01_huf.m2", + value = "helm_robe_argentalliance_d_01_huf.m2", + }, + { + fileId = "314773", + text = "helm_robe_argentalliance_d_01_hum.m2", + value = "helm_robe_argentalliance_d_01_hum.m2", + }, + { + fileId = "314774", + text = "helm_robe_argentalliance_d_01_nif.m2", + value = "helm_robe_argentalliance_d_01_nif.m2", + }, + { + fileId = "314775", + text = "helm_robe_argentalliance_d_01_nim.m2", + value = "helm_robe_argentalliance_d_01_nim.m2", + }, + { + fileId = "314776", + text = "helm_robe_argentalliance_d_01_orf.m2", + value = "helm_robe_argentalliance_d_01_orf.m2", + }, + { + fileId = "314777", + text = "helm_robe_argentalliance_d_01_orm.m2", + value = "helm_robe_argentalliance_d_01_orm.m2", + }, + { + fileId = "314778", + text = "helm_robe_argentalliance_d_01_scf.m2", + value = "helm_robe_argentalliance_d_01_scf.m2", + }, + { + fileId = "314779", + text = "helm_robe_argentalliance_d_01_scm.m2", + value = "helm_robe_argentalliance_d_01_scm.m2", + }, + { + fileId = "314780", + text = "helm_robe_argentalliance_d_01_taf.m2", + value = "helm_robe_argentalliance_d_01_taf.m2", + }, + { + fileId = "314781", + text = "helm_robe_argentalliance_d_01_tam.m2", + value = "helm_robe_argentalliance_d_01_tam.m2", + }, + { + fileId = "314782", + text = "helm_robe_argentalliance_d_01_trf.m2", + value = "helm_robe_argentalliance_d_01_trf.m2", + }, + { + fileId = "314783", + text = "helm_robe_argentalliance_d_01_trm.m2", + value = "helm_robe_argentalliance_d_01_trm.m2", + }, + { + fileId = "317603", + text = "helm_robe_argenthorde_d_01_bef.m2", + value = "helm_robe_argenthorde_d_01_bef.m2", + }, + { + fileId = "317604", + text = "helm_robe_argenthorde_d_01_bem.m2", + value = "helm_robe_argenthorde_d_01_bem.m2", + }, + { + fileId = "317605", + text = "helm_robe_argenthorde_d_01_drf.m2", + value = "helm_robe_argenthorde_d_01_drf.m2", + }, + { + fileId = "317606", + text = "helm_robe_argenthorde_d_01_drm.m2", + value = "helm_robe_argenthorde_d_01_drm.m2", + }, + { + fileId = "317607", + text = "helm_robe_argenthorde_d_01_dwf.m2", + value = "helm_robe_argenthorde_d_01_dwf.m2", + }, + { + fileId = "317608", + text = "helm_robe_argenthorde_d_01_dwm.m2", + value = "helm_robe_argenthorde_d_01_dwm.m2", + }, + { + fileId = "317609", + text = "helm_robe_argenthorde_d_01_gnf.m2", + value = "helm_robe_argenthorde_d_01_gnf.m2", + }, + { + fileId = "317610", + text = "helm_robe_argenthorde_d_01_gnm.m2", + value = "helm_robe_argenthorde_d_01_gnm.m2", + }, + { + fileId = "317611", + text = "helm_robe_argenthorde_d_01_gof.m2", + value = "helm_robe_argenthorde_d_01_gof.m2", + }, + { + fileId = "317612", + text = "helm_robe_argenthorde_d_01_gom.m2", + value = "helm_robe_argenthorde_d_01_gom.m2", + }, + { + fileId = "317613", + text = "helm_robe_argenthorde_d_01_huf.m2", + value = "helm_robe_argenthorde_d_01_huf.m2", + }, + { + fileId = "317614", + text = "helm_robe_argenthorde_d_01_hum.m2", + value = "helm_robe_argenthorde_d_01_hum.m2", + }, + { + fileId = "317615", + text = "helm_robe_argenthorde_d_01_nif.m2", + value = "helm_robe_argenthorde_d_01_nif.m2", + }, + { + fileId = "317616", + text = "helm_robe_argenthorde_d_01_nim.m2", + value = "helm_robe_argenthorde_d_01_nim.m2", + }, + { + fileId = "317617", + text = "helm_robe_argenthorde_d_01_orf.m2", + value = "helm_robe_argenthorde_d_01_orf.m2", + }, + { + fileId = "317618", + text = "helm_robe_argenthorde_d_01_orm.m2", + value = "helm_robe_argenthorde_d_01_orm.m2", + }, + { + fileId = "317619", + text = "helm_robe_argenthorde_d_01_scf.m2", + value = "helm_robe_argenthorde_d_01_scf.m2", + }, + { + fileId = "317620", + text = "helm_robe_argenthorde_d_01_scm.m2", + value = "helm_robe_argenthorde_d_01_scm.m2", + }, + { + fileId = "317621", + text = "helm_robe_argenthorde_d_01_taf.m2", + value = "helm_robe_argenthorde_d_01_taf.m2", + }, + { + fileId = "317622", + text = "helm_robe_argenthorde_d_01_tam.m2", + value = "helm_robe_argenthorde_d_01_tam.m2", + }, + { + fileId = "317623", + text = "helm_robe_argenthorde_d_01_trf.m2", + value = "helm_robe_argenthorde_d_01_trf.m2", + }, + { + fileId = "317624", + text = "helm_robe_argenthorde_d_01_trm.m2", + value = "helm_robe_argenthorde_d_01_trm.m2", + }, + { + fileId = "141348", + text = "helm_robe_brewfest_a_01_bef.m2", + value = "helm_robe_brewfest_a_01_bef.m2", + }, + { + fileId = "141349", + text = "helm_robe_brewfest_a_01_bem.m2", + value = "helm_robe_brewfest_a_01_bem.m2", + }, + { + fileId = "141350", + text = "helm_robe_brewfest_a_01_drf.m2", + value = "helm_robe_brewfest_a_01_drf.m2", + }, + { + fileId = "141351", + text = "helm_robe_brewfest_a_01_drm.m2", + value = "helm_robe_brewfest_a_01_drm.m2", + }, + { + fileId = "141352", + text = "helm_robe_brewfest_a_01_dwf.m2", + value = "helm_robe_brewfest_a_01_dwf.m2", + }, + { + fileId = "141353", + text = "helm_robe_brewfest_a_01_dwm.m2", + value = "helm_robe_brewfest_a_01_dwm.m2", + }, + { + fileId = "141354", + text = "helm_robe_brewfest_a_01_gnf.m2", + value = "helm_robe_brewfest_a_01_gnf.m2", + }, + { + fileId = "141355", + text = "helm_robe_brewfest_a_01_gnm.m2", + value = "helm_robe_brewfest_a_01_gnm.m2", + }, + { + fileId = "141356", + text = "helm_robe_brewfest_a_01_gof.m2", + value = "helm_robe_brewfest_a_01_gof.m2", + }, + { + fileId = "141357", + text = "helm_robe_brewfest_a_01_gom.m2", + value = "helm_robe_brewfest_a_01_gom.m2", + }, + { + fileId = "141358", + text = "helm_robe_brewfest_a_01_huf.m2", + value = "helm_robe_brewfest_a_01_huf.m2", + }, + { + fileId = "141359", + text = "helm_robe_brewfest_a_01_hum.m2", + value = "helm_robe_brewfest_a_01_hum.m2", + }, + { + fileId = "141360", + text = "helm_robe_brewfest_a_01_nif.m2", + value = "helm_robe_brewfest_a_01_nif.m2", + }, + { + fileId = "141361", + text = "helm_robe_brewfest_a_01_nim.m2", + value = "helm_robe_brewfest_a_01_nim.m2", + }, + { + fileId = "141362", + text = "helm_robe_brewfest_a_01_orf.m2", + value = "helm_robe_brewfest_a_01_orf.m2", + }, + { + fileId = "141363", + text = "helm_robe_brewfest_a_01_orm.m2", + value = "helm_robe_brewfest_a_01_orm.m2", + }, + { + fileId = "141364", + text = "helm_robe_brewfest_a_01_scf.m2", + value = "helm_robe_brewfest_a_01_scf.m2", + }, + { + fileId = "141365", + text = "helm_robe_brewfest_a_01_scm.m2", + value = "helm_robe_brewfest_a_01_scm.m2", + }, + { + fileId = "141366", + text = "helm_robe_brewfest_a_01_taf.m2", + value = "helm_robe_brewfest_a_01_taf.m2", + }, + { + fileId = "141367", + text = "helm_robe_brewfest_a_01_tam.m2", + value = "helm_robe_brewfest_a_01_tam.m2", + }, + { + fileId = "141368", + text = "helm_robe_brewfest_a_01_trf.m2", + value = "helm_robe_brewfest_a_01_trf.m2", + }, + { + fileId = "141369", + text = "helm_robe_brewfest_a_01_trm.m2", + value = "helm_robe_brewfest_a_01_trm.m2", + }, + { + fileId = "141374", + text = "helm_robe_c_01_bef.m2", + value = "helm_robe_c_01_bef.m2", + }, + { + fileId = "141375", + text = "helm_robe_c_01_bem.m2", + value = "helm_robe_c_01_bem.m2", + }, + { + fileId = "141376", + text = "helm_robe_c_01_drf.m2", + value = "helm_robe_c_01_drf.m2", + }, + { + fileId = "141377", + text = "helm_robe_c_01_drm.m2", + value = "helm_robe_c_01_drm.m2", + }, + { + fileId = "141378", + text = "helm_robe_c_01_dwf.m2", + value = "helm_robe_c_01_dwf.m2", + }, + { + fileId = "141379", + text = "helm_robe_c_01_dwm.m2", + value = "helm_robe_c_01_dwm.m2", + }, + { + fileId = "141380", + text = "helm_robe_c_01_gnf.m2", + value = "helm_robe_c_01_gnf.m2", + }, + { + fileId = "141381", + text = "helm_robe_c_01_gnm.m2", + value = "helm_robe_c_01_gnm.m2", + }, + { + fileId = "141382", + text = "helm_robe_c_01_gof.m2", + value = "helm_robe_c_01_gof.m2", + }, + { + fileId = "141383", + text = "helm_robe_c_01_gom.m2", + value = "helm_robe_c_01_gom.m2", + }, + { + fileId = "141384", + text = "helm_robe_c_01_huf.m2", + value = "helm_robe_c_01_huf.m2", + }, + { + fileId = "141385", + text = "helm_robe_c_01_hum.m2", + value = "helm_robe_c_01_hum.m2", + }, + { + fileId = "141386", + text = "helm_robe_c_01_nif.m2", + value = "helm_robe_c_01_nif.m2", + }, + { + fileId = "141387", + text = "helm_robe_c_01_nim.m2", + value = "helm_robe_c_01_nim.m2", + }, + { + fileId = "141388", + text = "helm_robe_c_01_orf.m2", + value = "helm_robe_c_01_orf.m2", + }, + { + fileId = "141389", + text = "helm_robe_c_01_orm.m2", + value = "helm_robe_c_01_orm.m2", + }, + { + fileId = "141390", + text = "helm_robe_c_01_scf.m2", + value = "helm_robe_c_01_scf.m2", + }, + { + fileId = "141391", + text = "helm_robe_c_01_scm.m2", + value = "helm_robe_c_01_scm.m2", + }, + { + fileId = "141392", + text = "helm_robe_c_01_taf.m2", + value = "helm_robe_c_01_taf.m2", + }, + { + fileId = "141393", + text = "helm_robe_c_01_tam.m2", + value = "helm_robe_c_01_tam.m2", + }, + { + fileId = "141394", + text = "helm_robe_c_01_trf.m2", + value = "helm_robe_c_01_trf.m2", + }, + { + fileId = "141395", + text = "helm_robe_c_01_trm.m2", + value = "helm_robe_c_01_trm.m2", + }, + { + fileId = "141405", + text = "helm_robe_c_02_bef.m2", + value = "helm_robe_c_02_bef.m2", + }, + { + fileId = "141406", + text = "helm_robe_c_02_bem.m2", + value = "helm_robe_c_02_bem.m2", + }, + { + fileId = "141407", + text = "helm_robe_c_02_drf.m2", + value = "helm_robe_c_02_drf.m2", + }, + { + fileId = "141408", + text = "helm_robe_c_02_drm.m2", + value = "helm_robe_c_02_drm.m2", + }, + { + fileId = "141409", + text = "helm_robe_c_02_dwf.m2", + value = "helm_robe_c_02_dwf.m2", + }, + { + fileId = "141410", + text = "helm_robe_c_02_dwm.m2", + value = "helm_robe_c_02_dwm.m2", + }, + { + fileId = "141411", + text = "helm_robe_c_02_gnf.m2", + value = "helm_robe_c_02_gnf.m2", + }, + { + fileId = "141412", + text = "helm_robe_c_02_gnm.m2", + value = "helm_robe_c_02_gnm.m2", + }, + { + fileId = "141413", + text = "helm_robe_c_02_gof.m2", + value = "helm_robe_c_02_gof.m2", + }, + { + fileId = "141414", + text = "helm_robe_c_02_gom.m2", + value = "helm_robe_c_02_gom.m2", + }, + { + fileId = "141415", + text = "helm_robe_c_02_huf.m2", + value = "helm_robe_c_02_huf.m2", + }, + { + fileId = "141416", + text = "helm_robe_c_02_hum.m2", + value = "helm_robe_c_02_hum.m2", + }, + { + fileId = "141417", + text = "helm_robe_c_02_nif.m2", + value = "helm_robe_c_02_nif.m2", + }, + { + fileId = "141418", + text = "helm_robe_c_02_nim.m2", + value = "helm_robe_c_02_nim.m2", + }, + { + fileId = "141419", + text = "helm_robe_c_02_orf.m2", + value = "helm_robe_c_02_orf.m2", + }, + { + fileId = "141420", + text = "helm_robe_c_02_orm.m2", + value = "helm_robe_c_02_orm.m2", + }, + { + fileId = "141421", + text = "helm_robe_c_02_scf.m2", + value = "helm_robe_c_02_scf.m2", + }, + { + fileId = "141422", + text = "helm_robe_c_02_scm.m2", + value = "helm_robe_c_02_scm.m2", + }, + { + fileId = "141423", + text = "helm_robe_c_02_taf.m2", + value = "helm_robe_c_02_taf.m2", + }, + { + fileId = "141424", + text = "helm_robe_c_02_tam.m2", + value = "helm_robe_c_02_tam.m2", + }, + { + fileId = "141425", + text = "helm_robe_c_02_trf.m2", + value = "helm_robe_c_02_trf.m2", + }, + { + fileId = "141426", + text = "helm_robe_c_02_trm.m2", + value = "helm_robe_c_02_trm.m2", + }, + { + fileId = "141434", + text = "helm_robe_c_03_bef.m2", + value = "helm_robe_c_03_bef.m2", + }, + { + fileId = "141435", + text = "helm_robe_c_03_bem.m2", + value = "helm_robe_c_03_bem.m2", + }, + { + fileId = "141436", + text = "helm_robe_c_03_drf.m2", + value = "helm_robe_c_03_drf.m2", + }, + { + fileId = "141437", + text = "helm_robe_c_03_drm.m2", + value = "helm_robe_c_03_drm.m2", + }, + { + fileId = "141438", + text = "helm_robe_c_03_dwf.m2", + value = "helm_robe_c_03_dwf.m2", + }, + { + fileId = "141439", + text = "helm_robe_c_03_dwm.m2", + value = "helm_robe_c_03_dwm.m2", + }, + { + fileId = "141440", + text = "helm_robe_c_03_gnf.m2", + value = "helm_robe_c_03_gnf.m2", + }, + { + fileId = "141441", + text = "helm_robe_c_03_gnm.m2", + value = "helm_robe_c_03_gnm.m2", + }, + { + fileId = "141442", + text = "helm_robe_c_03_gof.m2", + value = "helm_robe_c_03_gof.m2", + }, + { + fileId = "141443", + text = "helm_robe_c_03_gom.m2", + value = "helm_robe_c_03_gom.m2", + }, + { + fileId = "141444", + text = "helm_robe_c_03_huf.m2", + value = "helm_robe_c_03_huf.m2", + }, + { + fileId = "141445", + text = "helm_robe_c_03_hum.m2", + value = "helm_robe_c_03_hum.m2", + }, + { + fileId = "141446", + text = "helm_robe_c_03_nif.m2", + value = "helm_robe_c_03_nif.m2", + }, + { + fileId = "141447", + text = "helm_robe_c_03_nim.m2", + value = "helm_robe_c_03_nim.m2", + }, + { + fileId = "141448", + text = "helm_robe_c_03_orf.m2", + value = "helm_robe_c_03_orf.m2", + }, + { + fileId = "141449", + text = "helm_robe_c_03_orm.m2", + value = "helm_robe_c_03_orm.m2", + }, + { + fileId = "141450", + text = "helm_robe_c_03_scf.m2", + value = "helm_robe_c_03_scf.m2", + }, + { + fileId = "141451", + text = "helm_robe_c_03_scm.m2", + value = "helm_robe_c_03_scm.m2", + }, + { + fileId = "141452", + text = "helm_robe_c_03_taf.m2", + value = "helm_robe_c_03_taf.m2", + }, + { + fileId = "141453", + text = "helm_robe_c_03_tam.m2", + value = "helm_robe_c_03_tam.m2", + }, + { + fileId = "141454", + text = "helm_robe_c_03_trf.m2", + value = "helm_robe_c_03_trf.m2", + }, + { + fileId = "141455", + text = "helm_robe_c_03_trm.m2", + value = "helm_robe_c_03_trm.m2", + }, + { + fileId = "141458", + text = "helm_robe_c_04_bef.m2", + value = "helm_robe_c_04_bef.m2", + }, + { + fileId = "141459", + text = "helm_robe_c_04_bem.m2", + value = "helm_robe_c_04_bem.m2", + }, + { + fileId = "141460", + text = "helm_robe_c_04_drf.m2", + value = "helm_robe_c_04_drf.m2", + }, + { + fileId = "141461", + text = "helm_robe_c_04_drm.m2", + value = "helm_robe_c_04_drm.m2", + }, + { + fileId = "141462", + text = "helm_robe_c_04_dwf.m2", + value = "helm_robe_c_04_dwf.m2", + }, + { + fileId = "141463", + text = "helm_robe_c_04_dwm.m2", + value = "helm_robe_c_04_dwm.m2", + }, + { + fileId = "141464", + text = "helm_robe_c_04_gnf.m2", + value = "helm_robe_c_04_gnf.m2", + }, + { + fileId = "141465", + text = "helm_robe_c_04_gnm.m2", + value = "helm_robe_c_04_gnm.m2", + }, + { + fileId = "141466", + text = "helm_robe_c_04_gof.m2", + value = "helm_robe_c_04_gof.m2", + }, + { + fileId = "141467", + text = "helm_robe_c_04_gom.m2", + value = "helm_robe_c_04_gom.m2", + }, + { + fileId = "141468", + text = "helm_robe_c_04_huf.m2", + value = "helm_robe_c_04_huf.m2", + }, + { + fileId = "141469", + text = "helm_robe_c_04_hum.m2", + value = "helm_robe_c_04_hum.m2", + }, + { + fileId = "141470", + text = "helm_robe_c_04_nif.m2", + value = "helm_robe_c_04_nif.m2", + }, + { + fileId = "141471", + text = "helm_robe_c_04_nim.m2", + value = "helm_robe_c_04_nim.m2", + }, + { + fileId = "141472", + text = "helm_robe_c_04_orf.m2", + value = "helm_robe_c_04_orf.m2", + }, + { + fileId = "141473", + text = "helm_robe_c_04_orm.m2", + value = "helm_robe_c_04_orm.m2", + }, + { + fileId = "141474", + text = "helm_robe_c_04_scf.m2", + value = "helm_robe_c_04_scf.m2", + }, + { + fileId = "141475", + text = "helm_robe_c_04_scm.m2", + value = "helm_robe_c_04_scm.m2", + }, + { + fileId = "141476", + text = "helm_robe_c_04_taf.m2", + value = "helm_robe_c_04_taf.m2", + }, + { + fileId = "141477", + text = "helm_robe_c_04_tam.m2", + value = "helm_robe_c_04_tam.m2", + }, + { + fileId = "141478", + text = "helm_robe_c_04_trf.m2", + value = "helm_robe_c_04_trf.m2", + }, + { + fileId = "141479", + text = "helm_robe_c_04_trm.m2", + value = "helm_robe_c_04_trm.m2", + }, + { + fileId = "141483", + text = "helm_robe_d_04_bef.m2", + value = "helm_robe_d_04_bef.m2", + }, + { + fileId = "141484", + text = "helm_robe_d_04_bem.m2", + value = "helm_robe_d_04_bem.m2", + }, + { + fileId = "141485", + text = "helm_robe_d_04_drf.m2", + value = "helm_robe_d_04_drf.m2", + }, + { + fileId = "141486", + text = "helm_robe_d_04_drm.m2", + value = "helm_robe_d_04_drm.m2", + }, + { + fileId = "141487", + text = "helm_robe_d_04_dwf.m2", + value = "helm_robe_d_04_dwf.m2", + }, + { + fileId = "141488", + text = "helm_robe_d_04_dwm.m2", + value = "helm_robe_d_04_dwm.m2", + }, + { + fileId = "141489", + text = "helm_robe_d_04_gnf.m2", + value = "helm_robe_d_04_gnf.m2", + }, + { + fileId = "141490", + text = "helm_robe_d_04_gnm.m2", + value = "helm_robe_d_04_gnm.m2", + }, + { + fileId = "141491", + text = "helm_robe_d_04_gof.m2", + value = "helm_robe_d_04_gof.m2", + }, + { + fileId = "141492", + text = "helm_robe_d_04_gom.m2", + value = "helm_robe_d_04_gom.m2", + }, + { + fileId = "141493", + text = "helm_robe_d_04_huf.m2", + value = "helm_robe_d_04_huf.m2", + }, + { + fileId = "141494", + text = "helm_robe_d_04_hum.m2", + value = "helm_robe_d_04_hum.m2", + }, + { + fileId = "141495", + text = "helm_robe_d_04_nif.m2", + value = "helm_robe_d_04_nif.m2", + }, + { + fileId = "141496", + text = "helm_robe_d_04_nim.m2", + value = "helm_robe_d_04_nim.m2", + }, + { + fileId = "141497", + text = "helm_robe_d_04_orf.m2", + value = "helm_robe_d_04_orf.m2", + }, + { + fileId = "141498", + text = "helm_robe_d_04_orm.m2", + value = "helm_robe_d_04_orm.m2", + }, + { + fileId = "141499", + text = "helm_robe_d_04_scf.m2", + value = "helm_robe_d_04_scf.m2", + }, + { + fileId = "141500", + text = "helm_robe_d_04_scm.m2", + value = "helm_robe_d_04_scm.m2", + }, + { + fileId = "141501", + text = "helm_robe_d_04_taf.m2", + value = "helm_robe_d_04_taf.m2", + }, + { + fileId = "141502", + text = "helm_robe_d_04_tam.m2", + value = "helm_robe_d_04_tam.m2", + }, + { + fileId = "141503", + text = "helm_robe_d_04_trf.m2", + value = "helm_robe_d_04_trf.m2", + }, + { + fileId = "141504", + text = "helm_robe_d_04_trm.m2", + value = "helm_robe_d_04_trm.m2", + }, + { + fileId = "141505", + text = "helm_robe_dungeonmage_a_01_bef.m2", + value = "helm_robe_dungeonmage_a_01_bef.m2", + }, + { + fileId = "141506", + text = "helm_robe_dungeonmage_a_01_bem.m2", + value = "helm_robe_dungeonmage_a_01_bem.m2", + }, + { + fileId = "141507", + text = "helm_robe_dungeonmage_a_01_drf.m2", + value = "helm_robe_dungeonmage_a_01_drf.m2", + }, + { + fileId = "141508", + text = "helm_robe_dungeonmage_a_01_drm.m2", + value = "helm_robe_dungeonmage_a_01_drm.m2", + }, + { + fileId = "141509", + text = "helm_robe_dungeonmage_a_01_dwf.m2", + value = "helm_robe_dungeonmage_a_01_dwf.m2", + }, + { + fileId = "141510", + text = "helm_robe_dungeonmage_a_01_dwm.m2", + value = "helm_robe_dungeonmage_a_01_dwm.m2", + }, + { + fileId = "141511", + text = "helm_robe_dungeonmage_a_01_gnf.m2", + value = "helm_robe_dungeonmage_a_01_gnf.m2", + }, + { + fileId = "141512", + text = "helm_robe_dungeonmage_a_01_gnm.m2", + value = "helm_robe_dungeonmage_a_01_gnm.m2", + }, + { + fileId = "141513", + text = "helm_robe_dungeonmage_a_01_gof.m2", + value = "helm_robe_dungeonmage_a_01_gof.m2", + }, + { + fileId = "141514", + text = "helm_robe_dungeonmage_a_01_gom.m2", + value = "helm_robe_dungeonmage_a_01_gom.m2", + }, + { + fileId = "141515", + text = "helm_robe_dungeonmage_a_01_huf.m2", + value = "helm_robe_dungeonmage_a_01_huf.m2", + }, + { + fileId = "141516", + text = "helm_robe_dungeonmage_a_01_hum.m2", + value = "helm_robe_dungeonmage_a_01_hum.m2", + }, + { + fileId = "141517", + text = "helm_robe_dungeonmage_a_01_nif.m2", + value = "helm_robe_dungeonmage_a_01_nif.m2", + }, + { + fileId = "141518", + text = "helm_robe_dungeonmage_a_01_nim.m2", + value = "helm_robe_dungeonmage_a_01_nim.m2", + }, + { + fileId = "141519", + text = "helm_robe_dungeonmage_a_01_orf.m2", + value = "helm_robe_dungeonmage_a_01_orf.m2", + }, + { + fileId = "141520", + text = "helm_robe_dungeonmage_a_01_orm.m2", + value = "helm_robe_dungeonmage_a_01_orm.m2", + }, + { + fileId = "141521", + text = "helm_robe_dungeonmage_a_01_scf.m2", + value = "helm_robe_dungeonmage_a_01_scf.m2", + }, + { + fileId = "141522", + text = "helm_robe_dungeonmage_a_01_scm.m2", + value = "helm_robe_dungeonmage_a_01_scm.m2", + }, + { + fileId = "141523", + text = "helm_robe_dungeonmage_a_01_taf.m2", + value = "helm_robe_dungeonmage_a_01_taf.m2", + }, + { + fileId = "141524", + text = "helm_robe_dungeonmage_a_01_tam.m2", + value = "helm_robe_dungeonmage_a_01_tam.m2", + }, + { + fileId = "141525", + text = "helm_robe_dungeonmage_a_01_trf.m2", + value = "helm_robe_dungeonmage_a_01_trf.m2", + }, + { + fileId = "141526", + text = "helm_robe_dungeonmage_a_01_trm.m2", + value = "helm_robe_dungeonmage_a_01_trm.m2", + }, + { + fileId = "141532", + text = "helm_robe_dungeonmage_b_01_bef.m2", + value = "helm_robe_dungeonmage_b_01_bef.m2", + }, + { + fileId = "141533", + text = "helm_robe_dungeonmage_b_01_bem.m2", + value = "helm_robe_dungeonmage_b_01_bem.m2", + }, + { + fileId = "141534", + text = "helm_robe_dungeonmage_b_01_drf.m2", + value = "helm_robe_dungeonmage_b_01_drf.m2", + }, + { + fileId = "141535", + text = "helm_robe_dungeonmage_b_01_drm.m2", + value = "helm_robe_dungeonmage_b_01_drm.m2", + }, + { + fileId = "141536", + text = "helm_robe_dungeonmage_b_01_dwf.m2", + value = "helm_robe_dungeonmage_b_01_dwf.m2", + }, + { + fileId = "141537", + text = "helm_robe_dungeonmage_b_01_dwm.m2", + value = "helm_robe_dungeonmage_b_01_dwm.m2", + }, + { + fileId = "141538", + text = "helm_robe_dungeonmage_b_01_gnf.m2", + value = "helm_robe_dungeonmage_b_01_gnf.m2", + }, + { + fileId = "141539", + text = "helm_robe_dungeonmage_b_01_gnm.m2", + value = "helm_robe_dungeonmage_b_01_gnm.m2", + }, + { + fileId = "141540", + text = "helm_robe_dungeonmage_b_01_gof.m2", + value = "helm_robe_dungeonmage_b_01_gof.m2", + }, + { + fileId = "141541", + text = "helm_robe_dungeonmage_b_01_gom.m2", + value = "helm_robe_dungeonmage_b_01_gom.m2", + }, + { + fileId = "141542", + text = "helm_robe_dungeonmage_b_01_huf.m2", + value = "helm_robe_dungeonmage_b_01_huf.m2", + }, + { + fileId = "141543", + text = "helm_robe_dungeonmage_b_01_hum.m2", + value = "helm_robe_dungeonmage_b_01_hum.m2", + }, + { + fileId = "141544", + text = "helm_robe_dungeonmage_b_01_nif.m2", + value = "helm_robe_dungeonmage_b_01_nif.m2", + }, + { + fileId = "141545", + text = "helm_robe_dungeonmage_b_01_nim.m2", + value = "helm_robe_dungeonmage_b_01_nim.m2", + }, + { + fileId = "141546", + text = "helm_robe_dungeonmage_b_01_orf.m2", + value = "helm_robe_dungeonmage_b_01_orf.m2", + }, + { + fileId = "141547", + text = "helm_robe_dungeonmage_b_01_orm.m2", + value = "helm_robe_dungeonmage_b_01_orm.m2", + }, + { + fileId = "141548", + text = "helm_robe_dungeonmage_b_01_scf.m2", + value = "helm_robe_dungeonmage_b_01_scf.m2", + }, + { + fileId = "141549", + text = "helm_robe_dungeonmage_b_01_scm.m2", + value = "helm_robe_dungeonmage_b_01_scm.m2", + }, + { + fileId = "141550", + text = "helm_robe_dungeonmage_b_01_taf.m2", + value = "helm_robe_dungeonmage_b_01_taf.m2", + }, + { + fileId = "141551", + text = "helm_robe_dungeonmage_b_01_tam.m2", + value = "helm_robe_dungeonmage_b_01_tam.m2", + }, + { + fileId = "141552", + text = "helm_robe_dungeonmage_b_01_trf.m2", + value = "helm_robe_dungeonmage_b_01_trf.m2", + }, + { + fileId = "141553", + text = "helm_robe_dungeonmage_b_01_trm.m2", + value = "helm_robe_dungeonmage_b_01_trm.m2", + }, + { + fileId = "141558", + text = "helm_robe_dungeonpriest_a_01_bef.m2", + value = "helm_robe_dungeonpriest_a_01_bef.m2", + }, + { + fileId = "141559", + text = "helm_robe_dungeonpriest_a_01_bem.m2", + value = "helm_robe_dungeonpriest_a_01_bem.m2", + }, + { + fileId = "141560", + text = "helm_robe_dungeonpriest_a_01_drf.m2", + value = "helm_robe_dungeonpriest_a_01_drf.m2", + }, + { + fileId = "141561", + text = "helm_robe_dungeonpriest_a_01_drm.m2", + value = "helm_robe_dungeonpriest_a_01_drm.m2", + }, + { + fileId = "141562", + text = "helm_robe_dungeonpriest_a_01_dwf.m2", + value = "helm_robe_dungeonpriest_a_01_dwf.m2", + }, + { + fileId = "141563", + text = "helm_robe_dungeonpriest_a_01_dwm.m2", + value = "helm_robe_dungeonpriest_a_01_dwm.m2", + }, + { + fileId = "141564", + text = "helm_robe_dungeonpriest_a_01_gnf.m2", + value = "helm_robe_dungeonpriest_a_01_gnf.m2", + }, + { + fileId = "141565", + text = "helm_robe_dungeonpriest_a_01_gnm.m2", + value = "helm_robe_dungeonpriest_a_01_gnm.m2", + }, + { + fileId = "141566", + text = "helm_robe_dungeonpriest_a_01_gof.m2", + value = "helm_robe_dungeonpriest_a_01_gof.m2", + }, + { + fileId = "141567", + text = "helm_robe_dungeonpriest_a_01_gom.m2", + value = "helm_robe_dungeonpriest_a_01_gom.m2", + }, + { + fileId = "141568", + text = "helm_robe_dungeonpriest_a_01_huf.m2", + value = "helm_robe_dungeonpriest_a_01_huf.m2", + }, + { + fileId = "141569", + text = "helm_robe_dungeonpriest_a_01_hum.m2", + value = "helm_robe_dungeonpriest_a_01_hum.m2", + }, + { + fileId = "141570", + text = "helm_robe_dungeonpriest_a_01_nif.m2", + value = "helm_robe_dungeonpriest_a_01_nif.m2", + }, + { + fileId = "141571", + text = "helm_robe_dungeonpriest_a_01_nim.m2", + value = "helm_robe_dungeonpriest_a_01_nim.m2", + }, + { + fileId = "141572", + text = "helm_robe_dungeonpriest_a_01_orf.m2", + value = "helm_robe_dungeonpriest_a_01_orf.m2", + }, + { + fileId = "141573", + text = "helm_robe_dungeonpriest_a_01_orm.m2", + value = "helm_robe_dungeonpriest_a_01_orm.m2", + }, + { + fileId = "141574", + text = "helm_robe_dungeonpriest_a_01_scf.m2", + value = "helm_robe_dungeonpriest_a_01_scf.m2", + }, + { + fileId = "141575", + text = "helm_robe_dungeonpriest_a_01_scm.m2", + value = "helm_robe_dungeonpriest_a_01_scm.m2", + }, + { + fileId = "141576", + text = "helm_robe_dungeonpriest_a_01_taf.m2", + value = "helm_robe_dungeonpriest_a_01_taf.m2", + }, + { + fileId = "141577", + text = "helm_robe_dungeonpriest_a_01_tam.m2", + value = "helm_robe_dungeonpriest_a_01_tam.m2", + }, + { + fileId = "141578", + text = "helm_robe_dungeonpriest_a_01_trf.m2", + value = "helm_robe_dungeonpriest_a_01_trf.m2", + }, + { + fileId = "141579", + text = "helm_robe_dungeonpriest_a_01_trm.m2", + value = "helm_robe_dungeonpriest_a_01_trm.m2", + }, + { + fileId = "141585", + text = "helm_robe_dungeonpriest_b_01_bef.m2", + value = "helm_robe_dungeonpriest_b_01_bef.m2", + }, + { + fileId = "141586", + text = "helm_robe_dungeonpriest_b_01_bem.m2", + value = "helm_robe_dungeonpriest_b_01_bem.m2", + }, + { + fileId = "141587", + text = "helm_robe_dungeonpriest_b_01_drf.m2", + value = "helm_robe_dungeonpriest_b_01_drf.m2", + }, + { + fileId = "141588", + text = "helm_robe_dungeonpriest_b_01_drm.m2", + value = "helm_robe_dungeonpriest_b_01_drm.m2", + }, + { + fileId = "141589", + text = "helm_robe_dungeonpriest_b_01_dwf.m2", + value = "helm_robe_dungeonpriest_b_01_dwf.m2", + }, + { + fileId = "141590", + text = "helm_robe_dungeonpriest_b_01_dwm.m2", + value = "helm_robe_dungeonpriest_b_01_dwm.m2", + }, + { + fileId = "141591", + text = "helm_robe_dungeonpriest_b_01_gnf.m2", + value = "helm_robe_dungeonpriest_b_01_gnf.m2", + }, + { + fileId = "141592", + text = "helm_robe_dungeonpriest_b_01_gnm.m2", + value = "helm_robe_dungeonpriest_b_01_gnm.m2", + }, + { + fileId = "141593", + text = "helm_robe_dungeonpriest_b_01_gof.m2", + value = "helm_robe_dungeonpriest_b_01_gof.m2", + }, + { + fileId = "141594", + text = "helm_robe_dungeonpriest_b_01_gom.m2", + value = "helm_robe_dungeonpriest_b_01_gom.m2", + }, + { + fileId = "141595", + text = "helm_robe_dungeonpriest_b_01_huf.m2", + value = "helm_robe_dungeonpriest_b_01_huf.m2", + }, + { + fileId = "141596", + text = "helm_robe_dungeonpriest_b_01_hum.m2", + value = "helm_robe_dungeonpriest_b_01_hum.m2", + }, + { + fileId = "141597", + text = "helm_robe_dungeonpriest_b_01_nif.m2", + value = "helm_robe_dungeonpriest_b_01_nif.m2", + }, + { + fileId = "141598", + text = "helm_robe_dungeonpriest_b_01_nim.m2", + value = "helm_robe_dungeonpriest_b_01_nim.m2", + }, + { + fileId = "141599", + text = "helm_robe_dungeonpriest_b_01_orf.m2", + value = "helm_robe_dungeonpriest_b_01_orf.m2", + }, + { + fileId = "141600", + text = "helm_robe_dungeonpriest_b_01_orm.m2", + value = "helm_robe_dungeonpriest_b_01_orm.m2", + }, + { + fileId = "141601", + text = "helm_robe_dungeonpriest_b_01_scf.m2", + value = "helm_robe_dungeonpriest_b_01_scf.m2", + }, + { + fileId = "141602", + text = "helm_robe_dungeonpriest_b_01_scm.m2", + value = "helm_robe_dungeonpriest_b_01_scm.m2", + }, + { + fileId = "141603", + text = "helm_robe_dungeonpriest_b_01_taf.m2", + value = "helm_robe_dungeonpriest_b_01_taf.m2", + }, + { + fileId = "141604", + text = "helm_robe_dungeonpriest_b_01_tam.m2", + value = "helm_robe_dungeonpriest_b_01_tam.m2", + }, + { + fileId = "141605", + text = "helm_robe_dungeonpriest_b_01_trf.m2", + value = "helm_robe_dungeonpriest_b_01_trf.m2", + }, + { + fileId = "141606", + text = "helm_robe_dungeonpriest_b_01_trm.m2", + value = "helm_robe_dungeonpriest_b_01_trm.m2", + }, + { + fileId = "238255", + text = "helm_robe_dungeonrobe_c_01_bef.m2", + value = "helm_robe_dungeonrobe_c_01_bef.m2", + }, + { + fileId = "238256", + text = "helm_robe_dungeonrobe_c_01_bem.m2", + value = "helm_robe_dungeonrobe_c_01_bem.m2", + }, + { + fileId = "238257", + text = "helm_robe_dungeonrobe_c_01_drf.m2", + value = "helm_robe_dungeonrobe_c_01_drf.m2", + }, + { + fileId = "238258", + text = "helm_robe_dungeonrobe_c_01_drm.m2", + value = "helm_robe_dungeonrobe_c_01_drm.m2", + }, + { + fileId = "238259", + text = "helm_robe_dungeonrobe_c_01_dwf.m2", + value = "helm_robe_dungeonrobe_c_01_dwf.m2", + }, + { + fileId = "238260", + text = "helm_robe_dungeonrobe_c_01_dwm.m2", + value = "helm_robe_dungeonrobe_c_01_dwm.m2", + }, + { + fileId = "238261", + text = "helm_robe_dungeonrobe_c_01_gnf.m2", + value = "helm_robe_dungeonrobe_c_01_gnf.m2", + }, + { + fileId = "238262", + text = "helm_robe_dungeonrobe_c_01_gnm.m2", + value = "helm_robe_dungeonrobe_c_01_gnm.m2", + }, + { + fileId = "238263", + text = "helm_robe_dungeonrobe_c_01_gof.m2", + value = "helm_robe_dungeonrobe_c_01_gof.m2", + }, + { + fileId = "238264", + text = "helm_robe_dungeonrobe_c_01_gom.m2", + value = "helm_robe_dungeonrobe_c_01_gom.m2", + }, + { + fileId = "238265", + text = "helm_robe_dungeonrobe_c_01_huf.m2", + value = "helm_robe_dungeonrobe_c_01_huf.m2", + }, + { + fileId = "238266", + text = "helm_robe_dungeonrobe_c_01_hum.m2", + value = "helm_robe_dungeonrobe_c_01_hum.m2", + }, + { + fileId = "238267", + text = "helm_robe_dungeonrobe_c_01_nif.m2", + value = "helm_robe_dungeonrobe_c_01_nif.m2", + }, + { + fileId = "238268", + text = "helm_robe_dungeonrobe_c_01_nim.m2", + value = "helm_robe_dungeonrobe_c_01_nim.m2", + }, + { + fileId = "238269", + text = "helm_robe_dungeonrobe_c_01_orf.m2", + value = "helm_robe_dungeonrobe_c_01_orf.m2", + }, + { + fileId = "238270", + text = "helm_robe_dungeonrobe_c_01_orm.m2", + value = "helm_robe_dungeonrobe_c_01_orm.m2", + }, + { + fileId = "238271", + text = "helm_robe_dungeonrobe_c_01_scf.m2", + value = "helm_robe_dungeonrobe_c_01_scf.m2", + }, + { + fileId = "238272", + text = "helm_robe_dungeonrobe_c_01_scm.m2", + value = "helm_robe_dungeonrobe_c_01_scm.m2", + }, + { + fileId = "238273", + text = "helm_robe_dungeonrobe_c_01_taf.m2", + value = "helm_robe_dungeonrobe_c_01_taf.m2", + }, + { + fileId = "238274", + text = "helm_robe_dungeonrobe_c_01_tam.m2", + value = "helm_robe_dungeonrobe_c_01_tam.m2", + }, + { + fileId = "238275", + text = "helm_robe_dungeonrobe_c_01_trf.m2", + value = "helm_robe_dungeonrobe_c_01_trf.m2", + }, + { + fileId = "238276", + text = "helm_robe_dungeonrobe_c_01_trm.m2", + value = "helm_robe_dungeonrobe_c_01_trm.m2", + }, + { + fileId = "341465", + text = "helm_robe_dungeonrobe_c_02_bef.m2", + value = "helm_robe_dungeonrobe_c_02_bef.m2", + }, + { + fileId = "341466", + text = "helm_robe_dungeonrobe_c_02_bem.m2", + value = "helm_robe_dungeonrobe_c_02_bem.m2", + }, + { + fileId = "341467", + text = "helm_robe_dungeonrobe_c_02_drf.m2", + value = "helm_robe_dungeonrobe_c_02_drf.m2", + }, + { + fileId = "341468", + text = "helm_robe_dungeonrobe_c_02_drm.m2", + value = "helm_robe_dungeonrobe_c_02_drm.m2", + }, + { + fileId = "341469", + text = "helm_robe_dungeonrobe_c_02_dwf.m2", + value = "helm_robe_dungeonrobe_c_02_dwf.m2", + }, + { + fileId = "341470", + text = "helm_robe_dungeonrobe_c_02_dwm.m2", + value = "helm_robe_dungeonrobe_c_02_dwm.m2", + }, + { + fileId = "341471", + text = "helm_robe_dungeonrobe_c_02_gnf.m2", + value = "helm_robe_dungeonrobe_c_02_gnf.m2", + }, + { + fileId = "341472", + text = "helm_robe_dungeonrobe_c_02_gnm.m2", + value = "helm_robe_dungeonrobe_c_02_gnm.m2", + }, + { + fileId = "341473", + text = "helm_robe_dungeonrobe_c_02_gof.m2", + value = "helm_robe_dungeonrobe_c_02_gof.m2", + }, + { + fileId = "341474", + text = "helm_robe_dungeonrobe_c_02_gom.m2", + value = "helm_robe_dungeonrobe_c_02_gom.m2", + }, + { + fileId = "341475", + text = "helm_robe_dungeonrobe_c_02_huf.m2", + value = "helm_robe_dungeonrobe_c_02_huf.m2", + }, + { + fileId = "341476", + text = "helm_robe_dungeonrobe_c_02_hum.m2", + value = "helm_robe_dungeonrobe_c_02_hum.m2", + }, + { + fileId = "341477", + text = "helm_robe_dungeonrobe_c_02_nif.m2", + value = "helm_robe_dungeonrobe_c_02_nif.m2", + }, + { + fileId = "341478", + text = "helm_robe_dungeonrobe_c_02_nim.m2", + value = "helm_robe_dungeonrobe_c_02_nim.m2", + }, + { + fileId = "341479", + text = "helm_robe_dungeonrobe_c_02_orf.m2", + value = "helm_robe_dungeonrobe_c_02_orf.m2", + }, + { + fileId = "341480", + text = "helm_robe_dungeonrobe_c_02_orm.m2", + value = "helm_robe_dungeonrobe_c_02_orm.m2", + }, + { + fileId = "341240", + text = "helm_robe_dungeonrobe_c_02_scf.m2", + value = "helm_robe_dungeonrobe_c_02_scf.m2", + }, + { + fileId = "341241", + text = "helm_robe_dungeonrobe_c_02_scm.m2", + value = "helm_robe_dungeonrobe_c_02_scm.m2", + }, + { + fileId = "341242", + text = "helm_robe_dungeonrobe_c_02_taf.m2", + value = "helm_robe_dungeonrobe_c_02_taf.m2", + }, + { + fileId = "341243", + text = "helm_robe_dungeonrobe_c_02_tam.m2", + value = "helm_robe_dungeonrobe_c_02_tam.m2", + }, + { + fileId = "341244", + text = "helm_robe_dungeonrobe_c_02_trf.m2", + value = "helm_robe_dungeonrobe_c_02_trf.m2", + }, + { + fileId = "341245", + text = "helm_robe_dungeonrobe_c_02_trm.m2", + value = "helm_robe_dungeonrobe_c_02_trm.m2", + }, + { + fileId = "141611", + text = "helm_robe_dungeonwarlock_a_01_bef.m2", + value = "helm_robe_dungeonwarlock_a_01_bef.m2", + }, + { + fileId = "141612", + text = "helm_robe_dungeonwarlock_a_01_bem.m2", + value = "helm_robe_dungeonwarlock_a_01_bem.m2", + }, + { + fileId = "141613", + text = "helm_robe_dungeonwarlock_a_01_drf.m2", + value = "helm_robe_dungeonwarlock_a_01_drf.m2", + }, + { + fileId = "141614", + text = "helm_robe_dungeonwarlock_a_01_drm.m2", + value = "helm_robe_dungeonwarlock_a_01_drm.m2", + }, + { + fileId = "141615", + text = "helm_robe_dungeonwarlock_a_01_dwf.m2", + value = "helm_robe_dungeonwarlock_a_01_dwf.m2", + }, + { + fileId = "141616", + text = "helm_robe_dungeonwarlock_a_01_dwm.m2", + value = "helm_robe_dungeonwarlock_a_01_dwm.m2", + }, + { + fileId = "141617", + text = "helm_robe_dungeonwarlock_a_01_gnf.m2", + value = "helm_robe_dungeonwarlock_a_01_gnf.m2", + }, + { + fileId = "141618", + text = "helm_robe_dungeonwarlock_a_01_gnm.m2", + value = "helm_robe_dungeonwarlock_a_01_gnm.m2", + }, + { + fileId = "141619", + text = "helm_robe_dungeonwarlock_a_01_gof.m2", + value = "helm_robe_dungeonwarlock_a_01_gof.m2", + }, + { + fileId = "141620", + text = "helm_robe_dungeonwarlock_a_01_gom.m2", + value = "helm_robe_dungeonwarlock_a_01_gom.m2", + }, + { + fileId = "141621", + text = "helm_robe_dungeonwarlock_a_01_huf.m2", + value = "helm_robe_dungeonwarlock_a_01_huf.m2", + }, + { + fileId = "141622", + text = "helm_robe_dungeonwarlock_a_01_hum.m2", + value = "helm_robe_dungeonwarlock_a_01_hum.m2", + }, + { + fileId = "141623", + text = "helm_robe_dungeonwarlock_a_01_nif.m2", + value = "helm_robe_dungeonwarlock_a_01_nif.m2", + }, + { + fileId = "141624", + text = "helm_robe_dungeonwarlock_a_01_nim.m2", + value = "helm_robe_dungeonwarlock_a_01_nim.m2", + }, + { + fileId = "141625", + text = "helm_robe_dungeonwarlock_a_01_orf.m2", + value = "helm_robe_dungeonwarlock_a_01_orf.m2", + }, + { + fileId = "141626", + text = "helm_robe_dungeonwarlock_a_01_orm.m2", + value = "helm_robe_dungeonwarlock_a_01_orm.m2", + }, + { + fileId = "141627", + text = "helm_robe_dungeonwarlock_a_01_scf.m2", + value = "helm_robe_dungeonwarlock_a_01_scf.m2", + }, + { + fileId = "141628", + text = "helm_robe_dungeonwarlock_a_01_scm.m2", + value = "helm_robe_dungeonwarlock_a_01_scm.m2", + }, + { + fileId = "141629", + text = "helm_robe_dungeonwarlock_a_01_taf.m2", + value = "helm_robe_dungeonwarlock_a_01_taf.m2", + }, + { + fileId = "141630", + text = "helm_robe_dungeonwarlock_a_01_tam.m2", + value = "helm_robe_dungeonwarlock_a_01_tam.m2", + }, + { + fileId = "141631", + text = "helm_robe_dungeonwarlock_a_01_trf.m2", + value = "helm_robe_dungeonwarlock_a_01_trf.m2", + }, + { + fileId = "141632", + text = "helm_robe_dungeonwarlock_a_01_trm.m2", + value = "helm_robe_dungeonwarlock_a_01_trm.m2", + }, + { + fileId = "141640", + text = "helm_robe_dungeonwarlock_b_01_bef.m2", + value = "helm_robe_dungeonwarlock_b_01_bef.m2", + }, + { + fileId = "141641", + text = "helm_robe_dungeonwarlock_b_01_bem.m2", + value = "helm_robe_dungeonwarlock_b_01_bem.m2", + }, + { + fileId = "141642", + text = "helm_robe_dungeonwarlock_b_01_drf.m2", + value = "helm_robe_dungeonwarlock_b_01_drf.m2", + }, + { + fileId = "141643", + text = "helm_robe_dungeonwarlock_b_01_drm.m2", + value = "helm_robe_dungeonwarlock_b_01_drm.m2", + }, + { + fileId = "141644", + text = "helm_robe_dungeonwarlock_b_01_dwf.m2", + value = "helm_robe_dungeonwarlock_b_01_dwf.m2", + }, + { + fileId = "141645", + text = "helm_robe_dungeonwarlock_b_01_dwm.m2", + value = "helm_robe_dungeonwarlock_b_01_dwm.m2", + }, + { + fileId = "141646", + text = "helm_robe_dungeonwarlock_b_01_gnf.m2", + value = "helm_robe_dungeonwarlock_b_01_gnf.m2", + }, + { + fileId = "141647", + text = "helm_robe_dungeonwarlock_b_01_gnm.m2", + value = "helm_robe_dungeonwarlock_b_01_gnm.m2", + }, + { + fileId = "141648", + text = "helm_robe_dungeonwarlock_b_01_gof.m2", + value = "helm_robe_dungeonwarlock_b_01_gof.m2", + }, + { + fileId = "141649", + text = "helm_robe_dungeonwarlock_b_01_gom.m2", + value = "helm_robe_dungeonwarlock_b_01_gom.m2", + }, + { + fileId = "141650", + text = "helm_robe_dungeonwarlock_b_01_huf.m2", + value = "helm_robe_dungeonwarlock_b_01_huf.m2", + }, + { + fileId = "141651", + text = "helm_robe_dungeonwarlock_b_01_hum.m2", + value = "helm_robe_dungeonwarlock_b_01_hum.m2", + }, + { + fileId = "141652", + text = "helm_robe_dungeonwarlock_b_01_nif.m2", + value = "helm_robe_dungeonwarlock_b_01_nif.m2", + }, + { + fileId = "141653", + text = "helm_robe_dungeonwarlock_b_01_nim.m2", + value = "helm_robe_dungeonwarlock_b_01_nim.m2", + }, + { + fileId = "141654", + text = "helm_robe_dungeonwarlock_b_01_orf.m2", + value = "helm_robe_dungeonwarlock_b_01_orf.m2", + }, + { + fileId = "141655", + text = "helm_robe_dungeonwarlock_b_01_orm.m2", + value = "helm_robe_dungeonwarlock_b_01_orm.m2", + }, + { + fileId = "141656", + text = "helm_robe_dungeonwarlock_b_01_scf.m2", + value = "helm_robe_dungeonwarlock_b_01_scf.m2", + }, + { + fileId = "141657", + text = "helm_robe_dungeonwarlock_b_01_scm.m2", + value = "helm_robe_dungeonwarlock_b_01_scm.m2", + }, + { + fileId = "141658", + text = "helm_robe_dungeonwarlock_b_01_taf.m2", + value = "helm_robe_dungeonwarlock_b_01_taf.m2", + }, + { + fileId = "141659", + text = "helm_robe_dungeonwarlock_b_01_tam.m2", + value = "helm_robe_dungeonwarlock_b_01_tam.m2", + }, + { + fileId = "141660", + text = "helm_robe_dungeonwarlock_b_01_trf.m2", + value = "helm_robe_dungeonwarlock_b_01_trf.m2", + }, + { + fileId = "141661", + text = "helm_robe_dungeonwarlock_b_01_trm.m2", + value = "helm_robe_dungeonwarlock_b_01_trm.m2", + }, + { + fileId = "141667", + text = "helm_robe_holiday_summerfest_a_01_bef.m2", + value = "helm_robe_holiday_summerfest_a_01_bef.m2", + }, + { + fileId = "141668", + text = "helm_robe_holiday_summerfest_a_01_bem.m2", + value = "helm_robe_holiday_summerfest_a_01_bem.m2", + }, + { + fileId = "141669", + text = "helm_robe_holiday_summerfest_a_01_drf.m2", + value = "helm_robe_holiday_summerfest_a_01_drf.m2", + }, + { + fileId = "141670", + text = "helm_robe_holiday_summerfest_a_01_drm.m2", + value = "helm_robe_holiday_summerfest_a_01_drm.m2", + }, + { + fileId = "141671", + text = "helm_robe_holiday_summerfest_a_01_dwf.m2", + value = "helm_robe_holiday_summerfest_a_01_dwf.m2", + }, + { + fileId = "141672", + text = "helm_robe_holiday_summerfest_a_01_dwm.m2", + value = "helm_robe_holiday_summerfest_a_01_dwm.m2", + }, + { + fileId = "141673", + text = "helm_robe_holiday_summerfest_a_01_gnf.m2", + value = "helm_robe_holiday_summerfest_a_01_gnf.m2", + }, + { + fileId = "141674", + text = "helm_robe_holiday_summerfest_a_01_gnm.m2", + value = "helm_robe_holiday_summerfest_a_01_gnm.m2", + }, + { + fileId = "141675", + text = "helm_robe_holiday_summerfest_a_01_gof.m2", + value = "helm_robe_holiday_summerfest_a_01_gof.m2", + }, + { + fileId = "141676", + text = "helm_robe_holiday_summerfest_a_01_gom.m2", + value = "helm_robe_holiday_summerfest_a_01_gom.m2", + }, + { + fileId = "141677", + text = "helm_robe_holiday_summerfest_a_01_huf.m2", + value = "helm_robe_holiday_summerfest_a_01_huf.m2", + }, + { + fileId = "141678", + text = "helm_robe_holiday_summerfest_a_01_hum.m2", + value = "helm_robe_holiday_summerfest_a_01_hum.m2", + }, + { + fileId = "141679", + text = "helm_robe_holiday_summerfest_a_01_nif.m2", + value = "helm_robe_holiday_summerfest_a_01_nif.m2", + }, + { + fileId = "141680", + text = "helm_robe_holiday_summerfest_a_01_nim.m2", + value = "helm_robe_holiday_summerfest_a_01_nim.m2", + }, + { + fileId = "141681", + text = "helm_robe_holiday_summerfest_a_01_orf.m2", + value = "helm_robe_holiday_summerfest_a_01_orf.m2", + }, + { + fileId = "141682", + text = "helm_robe_holiday_summerfest_a_01_orm.m2", + value = "helm_robe_holiday_summerfest_a_01_orm.m2", + }, + { + fileId = "141683", + text = "helm_robe_holiday_summerfest_a_01_scf.m2", + value = "helm_robe_holiday_summerfest_a_01_scf.m2", + }, + { + fileId = "141684", + text = "helm_robe_holiday_summerfest_a_01_scm.m2", + value = "helm_robe_holiday_summerfest_a_01_scm.m2", + }, + { + fileId = "141685", + text = "helm_robe_holiday_summerfest_a_01_taf.m2", + value = "helm_robe_holiday_summerfest_a_01_taf.m2", + }, + { + fileId = "141686", + text = "helm_robe_holiday_summerfest_a_01_tam.m2", + value = "helm_robe_holiday_summerfest_a_01_tam.m2", + }, + { + fileId = "141687", + text = "helm_robe_holiday_summerfest_a_01_trf.m2", + value = "helm_robe_holiday_summerfest_a_01_trf.m2", + }, + { + fileId = "141688", + text = "helm_robe_holiday_summerfest_a_01_trm.m2", + value = "helm_robe_holiday_summerfest_a_01_trm.m2", + }, + { + fileId = "141689", + text = "helm_robe_holiday_summerfest_a_02_bef.m2", + value = "helm_robe_holiday_summerfest_a_02_bef.m2", + }, + { + fileId = "141690", + text = "helm_robe_holiday_summerfest_a_02_bem.m2", + value = "helm_robe_holiday_summerfest_a_02_bem.m2", + }, + { + fileId = "141691", + text = "helm_robe_holiday_summerfest_a_02_dwf.m2", + value = "helm_robe_holiday_summerfest_a_02_dwf.m2", + }, + { + fileId = "141692", + text = "helm_robe_holiday_summerfest_a_02_dwm.m2", + value = "helm_robe_holiday_summerfest_a_02_dwm.m2", + }, + { + fileId = "141693", + text = "helm_robe_holiday_summerfest_a_02_gnf.m2", + value = "helm_robe_holiday_summerfest_a_02_gnf.m2", + }, + { + fileId = "141694", + text = "helm_robe_holiday_summerfest_a_02_gnm.m2", + value = "helm_robe_holiday_summerfest_a_02_gnm.m2", + }, + { + fileId = "141695", + text = "helm_robe_holiday_summerfest_a_02_gom.m2", + value = "helm_robe_holiday_summerfest_a_02_gom.m2", + }, + { + fileId = "141696", + text = "helm_robe_holiday_summerfest_a_02_huf.m2", + value = "helm_robe_holiday_summerfest_a_02_huf.m2", + }, + { + fileId = "141697", + text = "helm_robe_holiday_summerfest_a_02_hum.m2", + value = "helm_robe_holiday_summerfest_a_02_hum.m2", + }, + { + fileId = "141698", + text = "helm_robe_holiday_summerfest_a_02_nif.m2", + value = "helm_robe_holiday_summerfest_a_02_nif.m2", + }, + { + fileId = "141699", + text = "helm_robe_holiday_summerfest_a_02_nim.m2", + value = "helm_robe_holiday_summerfest_a_02_nim.m2", + }, + { + fileId = "141700", + text = "helm_robe_holiday_summerfest_a_02_orf.m2", + value = "helm_robe_holiday_summerfest_a_02_orf.m2", + }, + { + fileId = "141701", + text = "helm_robe_holiday_summerfest_a_02_orm.m2", + value = "helm_robe_holiday_summerfest_a_02_orm.m2", + }, + { + fileId = "141702", + text = "helm_robe_holiday_summerfest_a_02_scf.m2", + value = "helm_robe_holiday_summerfest_a_02_scf.m2", + }, + { + fileId = "141703", + text = "helm_robe_holiday_summerfest_a_02_scm.m2", + value = "helm_robe_holiday_summerfest_a_02_scm.m2", + }, + { + fileId = "141704", + text = "helm_robe_holiday_summerfest_a_02_taf.m2", + value = "helm_robe_holiday_summerfest_a_02_taf.m2", + }, + { + fileId = "141705", + text = "helm_robe_holiday_summerfest_a_02_tam.m2", + value = "helm_robe_holiday_summerfest_a_02_tam.m2", + }, + { + fileId = "141706", + text = "helm_robe_holiday_summerfest_a_02_trf.m2", + value = "helm_robe_holiday_summerfest_a_02_trf.m2", + }, + { + fileId = "141707", + text = "helm_robe_holiday_summerfest_a_02_trm.m2", + value = "helm_robe_holiday_summerfest_a_02_trm.m2", + }, + { + fileId = "141710", + text = "helm_robe_horde_b_03earthenring_bef.m2", + value = "helm_robe_horde_b_03earthenring_bef.m2", + }, + { + fileId = "141711", + text = "helm_robe_horde_b_03earthenring_bem.m2", + value = "helm_robe_horde_b_03earthenring_bem.m2", + }, + { + fileId = "141712", + text = "helm_robe_horde_b_03earthenring_drf.m2", + value = "helm_robe_horde_b_03earthenring_drf.m2", + }, + { + fileId = "141713", + text = "helm_robe_horde_b_03earthenring_drm.m2", + value = "helm_robe_horde_b_03earthenring_drm.m2", + }, + { + fileId = "141714", + text = "helm_robe_horde_b_03earthenring_dwf.m2", + value = "helm_robe_horde_b_03earthenring_dwf.m2", + }, + { + fileId = "141715", + text = "helm_robe_horde_b_03earthenring_dwm.m2", + value = "helm_robe_horde_b_03earthenring_dwm.m2", + }, + { + fileId = "141716", + text = "helm_robe_horde_b_03earthenring_gnf.m2", + value = "helm_robe_horde_b_03earthenring_gnf.m2", + }, + { + fileId = "141717", + text = "helm_robe_horde_b_03earthenring_gnm.m2", + value = "helm_robe_horde_b_03earthenring_gnm.m2", + }, + { + fileId = "141718", + text = "helm_robe_horde_b_03earthenring_gof.m2", + value = "helm_robe_horde_b_03earthenring_gof.m2", + }, + { + fileId = "141719", + text = "helm_robe_horde_b_03earthenring_gom.m2", + value = "helm_robe_horde_b_03earthenring_gom.m2", + }, + { + fileId = "141720", + text = "helm_robe_horde_b_03earthenring_huf.m2", + value = "helm_robe_horde_b_03earthenring_huf.m2", + }, + { + fileId = "141721", + text = "helm_robe_horde_b_03earthenring_hum.m2", + value = "helm_robe_horde_b_03earthenring_hum.m2", + }, + { + fileId = "141722", + text = "helm_robe_horde_b_03earthenring_nif.m2", + value = "helm_robe_horde_b_03earthenring_nif.m2", + }, + { + fileId = "141723", + text = "helm_robe_horde_b_03earthenring_nim.m2", + value = "helm_robe_horde_b_03earthenring_nim.m2", + }, + { + fileId = "141724", + text = "helm_robe_horde_b_03earthenring_orf.m2", + value = "helm_robe_horde_b_03earthenring_orf.m2", + }, + { + fileId = "141725", + text = "helm_robe_horde_b_03earthenring_orm.m2", + value = "helm_robe_horde_b_03earthenring_orm.m2", + }, + { + fileId = "141726", + text = "helm_robe_horde_b_03earthenring_scf.m2", + value = "helm_robe_horde_b_03earthenring_scf.m2", + }, + { + fileId = "141727", + text = "helm_robe_horde_b_03earthenring_scm.m2", + value = "helm_robe_horde_b_03earthenring_scm.m2", + }, + { + fileId = "141728", + text = "helm_robe_horde_b_03earthenring_taf.m2", + value = "helm_robe_horde_b_03earthenring_taf.m2", + }, + { + fileId = "141729", + text = "helm_robe_horde_b_03earthenring_tam.m2", + value = "helm_robe_horde_b_03earthenring_tam.m2", + }, + { + fileId = "141730", + text = "helm_robe_horde_b_03earthenring_trf.m2", + value = "helm_robe_horde_b_03earthenring_trf.m2", + }, + { + fileId = "141731", + text = "helm_robe_horde_b_03earthenring_trm.m2", + value = "helm_robe_horde_b_03earthenring_trm.m2", + }, + { + fileId = "141740", + text = "helm_robe_northrend_b_01_bef.m2", + value = "helm_robe_northrend_b_01_bef.m2", + }, + { + fileId = "141741", + text = "helm_robe_northrend_b_01_bem.m2", + value = "helm_robe_northrend_b_01_bem.m2", + }, + { + fileId = "141742", + text = "helm_robe_northrend_b_01_drf.m2", + value = "helm_robe_northrend_b_01_drf.m2", + }, + { + fileId = "141743", + text = "helm_robe_northrend_b_01_drm.m2", + value = "helm_robe_northrend_b_01_drm.m2", + }, + { + fileId = "141744", + text = "helm_robe_northrend_b_01_dwf.m2", + value = "helm_robe_northrend_b_01_dwf.m2", + }, + { + fileId = "141745", + text = "helm_robe_northrend_b_01_dwm.m2", + value = "helm_robe_northrend_b_01_dwm.m2", + }, + { + fileId = "141746", + text = "helm_robe_northrend_b_01_gnf.m2", + value = "helm_robe_northrend_b_01_gnf.m2", + }, + { + fileId = "141747", + text = "helm_robe_northrend_b_01_gnm.m2", + value = "helm_robe_northrend_b_01_gnm.m2", + }, + { + fileId = "141748", + text = "helm_robe_northrend_b_01_huf.m2", + value = "helm_robe_northrend_b_01_huf.m2", + }, + { + fileId = "141749", + text = "helm_robe_northrend_b_01_hum.m2", + value = "helm_robe_northrend_b_01_hum.m2", + }, + { + fileId = "141750", + text = "helm_robe_northrend_b_01_nif.m2", + value = "helm_robe_northrend_b_01_nif.m2", + }, + { + fileId = "141751", + text = "helm_robe_northrend_b_01_nim.m2", + value = "helm_robe_northrend_b_01_nim.m2", + }, + { + fileId = "141752", + text = "helm_robe_northrend_b_01_orf.m2", + value = "helm_robe_northrend_b_01_orf.m2", + }, + { + fileId = "141753", + text = "helm_robe_northrend_b_01_orm.m2", + value = "helm_robe_northrend_b_01_orm.m2", + }, + { + fileId = "141754", + text = "helm_robe_northrend_b_01_scf.m2", + value = "helm_robe_northrend_b_01_scf.m2", + }, + { + fileId = "141755", + text = "helm_robe_northrend_b_01_scm.m2", + value = "helm_robe_northrend_b_01_scm.m2", + }, + { + fileId = "141756", + text = "helm_robe_northrend_b_01_taf.m2", + value = "helm_robe_northrend_b_01_taf.m2", + }, + { + fileId = "141757", + text = "helm_robe_northrend_b_01_tam.m2", + value = "helm_robe_northrend_b_01_tam.m2", + }, + { + fileId = "141758", + text = "helm_robe_northrend_b_01_trf.m2", + value = "helm_robe_northrend_b_01_trf.m2", + }, + { + fileId = "141759", + text = "helm_robe_northrend_b_01_trm.m2", + value = "helm_robe_northrend_b_01_trm.m2", + }, + { + fileId = "141764", + text = "helm_robe_northrend_b_02_bef.m2", + value = "helm_robe_northrend_b_02_bef.m2", + }, + { + fileId = "141765", + text = "helm_robe_northrend_b_02_bem.m2", + value = "helm_robe_northrend_b_02_bem.m2", + }, + { + fileId = "141766", + text = "helm_robe_northrend_b_02_drf.m2", + value = "helm_robe_northrend_b_02_drf.m2", + }, + { + fileId = "141767", + text = "helm_robe_northrend_b_02_drm.m2", + value = "helm_robe_northrend_b_02_drm.m2", + }, + { + fileId = "141768", + text = "helm_robe_northrend_b_02_dwf.m2", + value = "helm_robe_northrend_b_02_dwf.m2", + }, + { + fileId = "141769", + text = "helm_robe_northrend_b_02_dwm.m2", + value = "helm_robe_northrend_b_02_dwm.m2", + }, + { + fileId = "141770", + text = "helm_robe_northrend_b_02_gnf.m2", + value = "helm_robe_northrend_b_02_gnf.m2", + }, + { + fileId = "141771", + text = "helm_robe_northrend_b_02_gnm.m2", + value = "helm_robe_northrend_b_02_gnm.m2", + }, + { + fileId = "141772", + text = "helm_robe_northrend_b_02_huf.m2", + value = "helm_robe_northrend_b_02_huf.m2", + }, + { + fileId = "141773", + text = "helm_robe_northrend_b_02_hum.m2", + value = "helm_robe_northrend_b_02_hum.m2", + }, + { + fileId = "141774", + text = "helm_robe_northrend_b_02_nif.m2", + value = "helm_robe_northrend_b_02_nif.m2", + }, + { + fileId = "141775", + text = "helm_robe_northrend_b_02_nim.m2", + value = "helm_robe_northrend_b_02_nim.m2", + }, + { + fileId = "141776", + text = "helm_robe_northrend_b_02_orf.m2", + value = "helm_robe_northrend_b_02_orf.m2", + }, + { + fileId = "141777", + text = "helm_robe_northrend_b_02_orm.m2", + value = "helm_robe_northrend_b_02_orm.m2", + }, + { + fileId = "141778", + text = "helm_robe_northrend_b_02_scf.m2", + value = "helm_robe_northrend_b_02_scf.m2", + }, + { + fileId = "141779", + text = "helm_robe_northrend_b_02_scm.m2", + value = "helm_robe_northrend_b_02_scm.m2", + }, + { + fileId = "141780", + text = "helm_robe_northrend_b_02_taf.m2", + value = "helm_robe_northrend_b_02_taf.m2", + }, + { + fileId = "141781", + text = "helm_robe_northrend_b_02_tam.m2", + value = "helm_robe_northrend_b_02_tam.m2", + }, + { + fileId = "141782", + text = "helm_robe_northrend_b_02_trf.m2", + value = "helm_robe_northrend_b_02_trf.m2", + }, + { + fileId = "141783", + text = "helm_robe_northrend_b_02_trm.m2", + value = "helm_robe_northrend_b_02_trm.m2", + }, + { + fileId = "141790", + text = "helm_robe_northrend_b_03_bef.m2", + value = "helm_robe_northrend_b_03_bef.m2", + }, + { + fileId = "141791", + text = "helm_robe_northrend_b_03_bem.m2", + value = "helm_robe_northrend_b_03_bem.m2", + }, + { + fileId = "141792", + text = "helm_robe_northrend_b_03_drf.m2", + value = "helm_robe_northrend_b_03_drf.m2", + }, + { + fileId = "141793", + text = "helm_robe_northrend_b_03_drm.m2", + value = "helm_robe_northrend_b_03_drm.m2", + }, + { + fileId = "141794", + text = "helm_robe_northrend_b_03_dwf.m2", + value = "helm_robe_northrend_b_03_dwf.m2", + }, + { + fileId = "141795", + text = "helm_robe_northrend_b_03_dwm.m2", + value = "helm_robe_northrend_b_03_dwm.m2", + }, + { + fileId = "141796", + text = "helm_robe_northrend_b_03_gnf.m2", + value = "helm_robe_northrend_b_03_gnf.m2", + }, + { + fileId = "141797", + text = "helm_robe_northrend_b_03_gnm.m2", + value = "helm_robe_northrend_b_03_gnm.m2", + }, + { + fileId = "141798", + text = "helm_robe_northrend_b_03_huf.m2", + value = "helm_robe_northrend_b_03_huf.m2", + }, + { + fileId = "141799", + text = "helm_robe_northrend_b_03_hum.m2", + value = "helm_robe_northrend_b_03_hum.m2", + }, + { + fileId = "141800", + text = "helm_robe_northrend_b_03_nif.m2", + value = "helm_robe_northrend_b_03_nif.m2", + }, + { + fileId = "141801", + text = "helm_robe_northrend_b_03_nim.m2", + value = "helm_robe_northrend_b_03_nim.m2", + }, + { + fileId = "141802", + text = "helm_robe_northrend_b_03_orf.m2", + value = "helm_robe_northrend_b_03_orf.m2", + }, + { + fileId = "141803", + text = "helm_robe_northrend_b_03_orm.m2", + value = "helm_robe_northrend_b_03_orm.m2", + }, + { + fileId = "141804", + text = "helm_robe_northrend_b_03_scf.m2", + value = "helm_robe_northrend_b_03_scf.m2", + }, + { + fileId = "141805", + text = "helm_robe_northrend_b_03_scm.m2", + value = "helm_robe_northrend_b_03_scm.m2", + }, + { + fileId = "141806", + text = "helm_robe_northrend_b_03_taf.m2", + value = "helm_robe_northrend_b_03_taf.m2", + }, + { + fileId = "141807", + text = "helm_robe_northrend_b_03_tam.m2", + value = "helm_robe_northrend_b_03_tam.m2", + }, + { + fileId = "141808", + text = "helm_robe_northrend_b_03_trf.m2", + value = "helm_robe_northrend_b_03_trf.m2", + }, + { + fileId = "141809", + text = "helm_robe_northrend_b_03_trm.m2", + value = "helm_robe_northrend_b_03_trm.m2", + }, + { + fileId = "141814", + text = "helm_robe_northrend_d_01_bef.m2", + value = "helm_robe_northrend_d_01_bef.m2", + }, + { + fileId = "141815", + text = "helm_robe_northrend_d_01_bem.m2", + value = "helm_robe_northrend_d_01_bem.m2", + }, + { + fileId = "141816", + text = "helm_robe_northrend_d_01_drf.m2", + value = "helm_robe_northrend_d_01_drf.m2", + }, + { + fileId = "141817", + text = "helm_robe_northrend_d_01_drm.m2", + value = "helm_robe_northrend_d_01_drm.m2", + }, + { + fileId = "141818", + text = "helm_robe_northrend_d_01_dwf.m2", + value = "helm_robe_northrend_d_01_dwf.m2", + }, + { + fileId = "141819", + text = "helm_robe_northrend_d_01_dwm.m2", + value = "helm_robe_northrend_d_01_dwm.m2", + }, + { + fileId = "141820", + text = "helm_robe_northrend_d_01_gnf.m2", + value = "helm_robe_northrend_d_01_gnf.m2", + }, + { + fileId = "141821", + text = "helm_robe_northrend_d_01_gnm.m2", + value = "helm_robe_northrend_d_01_gnm.m2", + }, + { + fileId = "141822", + text = "helm_robe_northrend_d_01_huf.m2", + value = "helm_robe_northrend_d_01_huf.m2", + }, + { + fileId = "141823", + text = "helm_robe_northrend_d_01_hum.m2", + value = "helm_robe_northrend_d_01_hum.m2", + }, + { + fileId = "141824", + text = "helm_robe_northrend_d_01_nif.m2", + value = "helm_robe_northrend_d_01_nif.m2", + }, + { + fileId = "141825", + text = "helm_robe_northrend_d_01_nim.m2", + value = "helm_robe_northrend_d_01_nim.m2", + }, + { + fileId = "141826", + text = "helm_robe_northrend_d_01_orf.m2", + value = "helm_robe_northrend_d_01_orf.m2", + }, + { + fileId = "141827", + text = "helm_robe_northrend_d_01_orm.m2", + value = "helm_robe_northrend_d_01_orm.m2", + }, + { + fileId = "141828", + text = "helm_robe_northrend_d_01_scf.m2", + value = "helm_robe_northrend_d_01_scf.m2", + }, + { + fileId = "141829", + text = "helm_robe_northrend_d_01_scm.m2", + value = "helm_robe_northrend_d_01_scm.m2", + }, + { + fileId = "141830", + text = "helm_robe_northrend_d_01_taf.m2", + value = "helm_robe_northrend_d_01_taf.m2", + }, + { + fileId = "141831", + text = "helm_robe_northrend_d_01_tam.m2", + value = "helm_robe_northrend_d_01_tam.m2", + }, + { + fileId = "141832", + text = "helm_robe_northrend_d_01_trf.m2", + value = "helm_robe_northrend_d_01_trf.m2", + }, + { + fileId = "141833", + text = "helm_robe_northrend_d_01_trm.m2", + value = "helm_robe_northrend_d_01_trm.m2", + }, + { + fileId = "141837", + text = "helm_robe_pvpalliance_a_01_bef.m2", + value = "helm_robe_pvpalliance_a_01_bef.m2", + }, + { + fileId = "141838", + text = "helm_robe_pvpalliance_a_01_bem.m2", + value = "helm_robe_pvpalliance_a_01_bem.m2", + }, + { + fileId = "141839", + text = "helm_robe_pvpalliance_a_01_drf.m2", + value = "helm_robe_pvpalliance_a_01_drf.m2", + }, + { + fileId = "141840", + text = "helm_robe_pvpalliance_a_01_drm.m2", + value = "helm_robe_pvpalliance_a_01_drm.m2", + }, + { + fileId = "141841", + text = "helm_robe_pvpalliance_a_01_dwf.m2", + value = "helm_robe_pvpalliance_a_01_dwf.m2", + }, + { + fileId = "141842", + text = "helm_robe_pvpalliance_a_01_dwm.m2", + value = "helm_robe_pvpalliance_a_01_dwm.m2", + }, + { + fileId = "141843", + text = "helm_robe_pvpalliance_a_01_gnf.m2", + value = "helm_robe_pvpalliance_a_01_gnf.m2", + }, + { + fileId = "141844", + text = "helm_robe_pvpalliance_a_01_gnm.m2", + value = "helm_robe_pvpalliance_a_01_gnm.m2", + }, + { + fileId = "141845", + text = "helm_robe_pvpalliance_a_01_gof.m2", + value = "helm_robe_pvpalliance_a_01_gof.m2", + }, + { + fileId = "141846", + text = "helm_robe_pvpalliance_a_01_gom.m2", + value = "helm_robe_pvpalliance_a_01_gom.m2", + }, + { + fileId = "141847", + text = "helm_robe_pvpalliance_a_01_huf.m2", + value = "helm_robe_pvpalliance_a_01_huf.m2", + }, + { + fileId = "141848", + text = "helm_robe_pvpalliance_a_01_hum.m2", + value = "helm_robe_pvpalliance_a_01_hum.m2", + }, + { + fileId = "141849", + text = "helm_robe_pvpalliance_a_01_nif.m2", + value = "helm_robe_pvpalliance_a_01_nif.m2", + }, + { + fileId = "141850", + text = "helm_robe_pvpalliance_a_01_nim.m2", + value = "helm_robe_pvpalliance_a_01_nim.m2", + }, + { + fileId = "141851", + text = "helm_robe_pvpalliance_a_01_orf.m2", + value = "helm_robe_pvpalliance_a_01_orf.m2", + }, + { + fileId = "141852", + text = "helm_robe_pvpalliance_a_01_orm.m2", + value = "helm_robe_pvpalliance_a_01_orm.m2", + }, + { + fileId = "141853", + text = "helm_robe_pvpalliance_a_01_scf.m2", + value = "helm_robe_pvpalliance_a_01_scf.m2", + }, + { + fileId = "141854", + text = "helm_robe_pvpalliance_a_01_scm.m2", + value = "helm_robe_pvpalliance_a_01_scm.m2", + }, + { + fileId = "141855", + text = "helm_robe_pvpalliance_a_01_taf.m2", + value = "helm_robe_pvpalliance_a_01_taf.m2", + }, + { + fileId = "141856", + text = "helm_robe_pvpalliance_a_01_tam.m2", + value = "helm_robe_pvpalliance_a_01_tam.m2", + }, + { + fileId = "141857", + text = "helm_robe_pvpalliance_a_01_trf.m2", + value = "helm_robe_pvpalliance_a_01_trf.m2", + }, + { + fileId = "141858", + text = "helm_robe_pvpalliance_a_01_trm.m2", + value = "helm_robe_pvpalliance_a_01_trm.m2", + }, + { + fileId = "141862", + text = "helm_robe_pvpalliance_b_01_drf.m2", + value = "helm_robe_pvpalliance_b_01_drf.m2", + }, + { + fileId = "141863", + text = "helm_robe_pvpalliance_b_01_drm.m2", + value = "helm_robe_pvpalliance_b_01_drm.m2", + }, + { + fileId = "141864", + text = "helm_robe_pvpalliance_b_01_gof.m2", + value = "helm_robe_pvpalliance_b_01_gof.m2", + }, + { + fileId = "141865", + text = "helm_robe_pvpalliance_b_01_gom.m2", + value = "helm_robe_pvpalliance_b_01_gom.m2", + }, + { + fileId = "141866", + text = "helm_robe_pvpalliance_c_01_bef.m2", + value = "helm_robe_pvpalliance_c_01_bef.m2", + }, + { + fileId = "141867", + text = "helm_robe_pvpalliance_c_01_bem.m2", + value = "helm_robe_pvpalliance_c_01_bem.m2", + }, + { + fileId = "141868", + text = "helm_robe_pvpalliance_c_01_drf.m2", + value = "helm_robe_pvpalliance_c_01_drf.m2", + }, + { + fileId = "141869", + text = "helm_robe_pvpalliance_c_01_drm.m2", + value = "helm_robe_pvpalliance_c_01_drm.m2", + }, + { + fileId = "141870", + text = "helm_robe_pvpalliance_c_01_dwf.m2", + value = "helm_robe_pvpalliance_c_01_dwf.m2", + }, + { + fileId = "141871", + text = "helm_robe_pvpalliance_c_01_dwm.m2", + value = "helm_robe_pvpalliance_c_01_dwm.m2", + }, + { + fileId = "141872", + text = "helm_robe_pvpalliance_c_01_gnf.m2", + value = "helm_robe_pvpalliance_c_01_gnf.m2", + }, + { + fileId = "141873", + text = "helm_robe_pvpalliance_c_01_gnm.m2", + value = "helm_robe_pvpalliance_c_01_gnm.m2", + }, + { + fileId = "141874", + text = "helm_robe_pvpalliance_c_01_huf.m2", + value = "helm_robe_pvpalliance_c_01_huf.m2", + }, + { + fileId = "141875", + text = "helm_robe_pvpalliance_c_01_hum.m2", + value = "helm_robe_pvpalliance_c_01_hum.m2", + }, + { + fileId = "141876", + text = "helm_robe_pvpalliance_c_01_nif.m2", + value = "helm_robe_pvpalliance_c_01_nif.m2", + }, + { + fileId = "141877", + text = "helm_robe_pvpalliance_c_01_nim.m2", + value = "helm_robe_pvpalliance_c_01_nim.m2", + }, + { + fileId = "141878", + text = "helm_robe_pvpalliance_c_01_orf.m2", + value = "helm_robe_pvpalliance_c_01_orf.m2", + }, + { + fileId = "141879", + text = "helm_robe_pvpalliance_c_01_orm.m2", + value = "helm_robe_pvpalliance_c_01_orm.m2", + }, + { + fileId = "141880", + text = "helm_robe_pvpalliance_c_01_scf.m2", + value = "helm_robe_pvpalliance_c_01_scf.m2", + }, + { + fileId = "141881", + text = "helm_robe_pvpalliance_c_01_scm.m2", + value = "helm_robe_pvpalliance_c_01_scm.m2", + }, + { + fileId = "141882", + text = "helm_robe_pvpalliance_c_01_taf.m2", + value = "helm_robe_pvpalliance_c_01_taf.m2", + }, + { + fileId = "141883", + text = "helm_robe_pvpalliance_c_01_tam.m2", + value = "helm_robe_pvpalliance_c_01_tam.m2", + }, + { + fileId = "141884", + text = "helm_robe_pvpalliance_c_01_trf.m2", + value = "helm_robe_pvpalliance_c_01_trf.m2", + }, + { + fileId = "141885", + text = "helm_robe_pvpalliance_c_01_trm.m2", + value = "helm_robe_pvpalliance_c_01_trm.m2", + }, + { + fileId = "141889", + text = "helm_robe_pvphorde_a_01_bef.m2", + value = "helm_robe_pvphorde_a_01_bef.m2", + }, + { + fileId = "141890", + text = "helm_robe_pvphorde_a_01_bem.m2", + value = "helm_robe_pvphorde_a_01_bem.m2", + }, + { + fileId = "141891", + text = "helm_robe_pvphorde_a_01_drf.m2", + value = "helm_robe_pvphorde_a_01_drf.m2", + }, + { + fileId = "141892", + text = "helm_robe_pvphorde_a_01_drm.m2", + value = "helm_robe_pvphorde_a_01_drm.m2", + }, + { + fileId = "141893", + text = "helm_robe_pvphorde_a_01_dwf.m2", + value = "helm_robe_pvphorde_a_01_dwf.m2", + }, + { + fileId = "141894", + text = "helm_robe_pvphorde_a_01_dwm.m2", + value = "helm_robe_pvphorde_a_01_dwm.m2", + }, + { + fileId = "141895", + text = "helm_robe_pvphorde_a_01_gnf.m2", + value = "helm_robe_pvphorde_a_01_gnf.m2", + }, + { + fileId = "141896", + text = "helm_robe_pvphorde_a_01_gnm.m2", + value = "helm_robe_pvphorde_a_01_gnm.m2", + }, + { + fileId = "141897", + text = "helm_robe_pvphorde_a_01_gof.m2", + value = "helm_robe_pvphorde_a_01_gof.m2", + }, + { + fileId = "141898", + text = "helm_robe_pvphorde_a_01_huf.m2", + value = "helm_robe_pvphorde_a_01_huf.m2", + }, + { + fileId = "141899", + text = "helm_robe_pvphorde_a_01_hum.m2", + value = "helm_robe_pvphorde_a_01_hum.m2", + }, + { + fileId = "141900", + text = "helm_robe_pvphorde_a_01_nif.m2", + value = "helm_robe_pvphorde_a_01_nif.m2", + }, + { + fileId = "141901", + text = "helm_robe_pvphorde_a_01_nim.m2", + value = "helm_robe_pvphorde_a_01_nim.m2", + }, + { + fileId = "141902", + text = "helm_robe_pvphorde_a_01_orf.m2", + value = "helm_robe_pvphorde_a_01_orf.m2", + }, + { + fileId = "141903", + text = "helm_robe_pvphorde_a_01_orm.m2", + value = "helm_robe_pvphorde_a_01_orm.m2", + }, + { + fileId = "141904", + text = "helm_robe_pvphorde_a_01_scf.m2", + value = "helm_robe_pvphorde_a_01_scf.m2", + }, + { + fileId = "141905", + text = "helm_robe_pvphorde_a_01_scm.m2", + value = "helm_robe_pvphorde_a_01_scm.m2", + }, + { + fileId = "141906", + text = "helm_robe_pvphorde_a_01_taf.m2", + value = "helm_robe_pvphorde_a_01_taf.m2", + }, + { + fileId = "141907", + text = "helm_robe_pvphorde_a_01_tam.m2", + value = "helm_robe_pvphorde_a_01_tam.m2", + }, + { + fileId = "141908", + text = "helm_robe_pvphorde_a_01_trf.m2", + value = "helm_robe_pvphorde_a_01_trf.m2", + }, + { + fileId = "141909", + text = "helm_robe_pvphorde_a_01_trm.m2", + value = "helm_robe_pvphorde_a_01_trm.m2", + }, + { + fileId = "141913", + text = "helm_robe_pvphorde_b_01_bef.m2", + value = "helm_robe_pvphorde_b_01_bef.m2", + }, + { + fileId = "141914", + text = "helm_robe_pvphorde_b_01_bem.m2", + value = "helm_robe_pvphorde_b_01_bem.m2", + }, + { + fileId = "141915", + text = "helm_robe_pvphorde_b_01_drf.m2", + value = "helm_robe_pvphorde_b_01_drf.m2", + }, + { + fileId = "141916", + text = "helm_robe_pvphorde_b_01_drm.m2", + value = "helm_robe_pvphorde_b_01_drm.m2", + }, + { + fileId = "141917", + text = "helm_robe_pvphorde_b_01_gof.m2", + value = "helm_robe_pvphorde_b_01_gof.m2", + }, + { + fileId = "141918", + text = "helm_robe_pvphorde_c_01_bef.m2", + value = "helm_robe_pvphorde_c_01_bef.m2", + }, + { + fileId = "141919", + text = "helm_robe_pvphorde_c_01_bem.m2", + value = "helm_robe_pvphorde_c_01_bem.m2", + }, + { + fileId = "141920", + text = "helm_robe_pvphorde_c_01_drf.m2", + value = "helm_robe_pvphorde_c_01_drf.m2", + }, + { + fileId = "141921", + text = "helm_robe_pvphorde_c_01_drm.m2", + value = "helm_robe_pvphorde_c_01_drm.m2", + }, + { + fileId = "141922", + text = "helm_robe_pvphorde_c_01_dwf.m2", + value = "helm_robe_pvphorde_c_01_dwf.m2", + }, + { + fileId = "141923", + text = "helm_robe_pvphorde_c_01_dwm.m2", + value = "helm_robe_pvphorde_c_01_dwm.m2", + }, + { + fileId = "141924", + text = "helm_robe_pvphorde_c_01_gnf.m2", + value = "helm_robe_pvphorde_c_01_gnf.m2", + }, + { + fileId = "141925", + text = "helm_robe_pvphorde_c_01_gnm.m2", + value = "helm_robe_pvphorde_c_01_gnm.m2", + }, + { + fileId = "141926", + text = "helm_robe_pvphorde_c_01_gom.m2", + value = "helm_robe_pvphorde_c_01_gom.m2", + }, + { + fileId = "141927", + text = "helm_robe_pvphorde_c_01_huf.m2", + value = "helm_robe_pvphorde_c_01_huf.m2", + }, + { + fileId = "141928", + text = "helm_robe_pvphorde_c_01_hum.m2", + value = "helm_robe_pvphorde_c_01_hum.m2", + }, + { + fileId = "141929", + text = "helm_robe_pvphorde_c_01_nif.m2", + value = "helm_robe_pvphorde_c_01_nif.m2", + }, + { + fileId = "141930", + text = "helm_robe_pvphorde_c_01_nim.m2", + value = "helm_robe_pvphorde_c_01_nim.m2", + }, + { + fileId = "141931", + text = "helm_robe_pvphorde_c_01_orf.m2", + value = "helm_robe_pvphorde_c_01_orf.m2", + }, + { + fileId = "141932", + text = "helm_robe_pvphorde_c_01_orm.m2", + value = "helm_robe_pvphorde_c_01_orm.m2", + }, + { + fileId = "141933", + text = "helm_robe_pvphorde_c_01_scf.m2", + value = "helm_robe_pvphorde_c_01_scf.m2", + }, + { + fileId = "141934", + text = "helm_robe_pvphorde_c_01_scm.m2", + value = "helm_robe_pvphorde_c_01_scm.m2", + }, + { + fileId = "141935", + text = "helm_robe_pvphorde_c_01_taf.m2", + value = "helm_robe_pvphorde_c_01_taf.m2", + }, + { + fileId = "141936", + text = "helm_robe_pvphorde_c_01_tam.m2", + value = "helm_robe_pvphorde_c_01_tam.m2", + }, + { + fileId = "141937", + text = "helm_robe_pvphorde_c_01_trf.m2", + value = "helm_robe_pvphorde_c_01_trf.m2", + }, + { + fileId = "141938", + text = "helm_robe_pvphorde_c_01_trm.m2", + value = "helm_robe_pvphorde_c_01_trm.m2", + }, + { + fileId = "238281", + text = "helm_robe_pvpwarlock_b_01_bef.m2", + value = "helm_robe_pvpwarlock_b_01_bef.m2", + }, + { + fileId = "238282", + text = "helm_robe_pvpwarlock_b_01_bem.m2", + value = "helm_robe_pvpwarlock_b_01_bem.m2", + }, + { + fileId = "238283", + text = "helm_robe_pvpwarlock_b_01_drf.m2", + value = "helm_robe_pvpwarlock_b_01_drf.m2", + }, + { + fileId = "238284", + text = "helm_robe_pvpwarlock_b_01_drm.m2", + value = "helm_robe_pvpwarlock_b_01_drm.m2", + }, + { + fileId = "238285", + text = "helm_robe_pvpwarlock_b_01_dwf.m2", + value = "helm_robe_pvpwarlock_b_01_dwf.m2", + }, + { + fileId = "238286", + text = "helm_robe_pvpwarlock_b_01_dwm.m2", + value = "helm_robe_pvpwarlock_b_01_dwm.m2", + }, + { + fileId = "238287", + text = "helm_robe_pvpwarlock_b_01_gnf.m2", + value = "helm_robe_pvpwarlock_b_01_gnf.m2", + }, + { + fileId = "238288", + text = "helm_robe_pvpwarlock_b_01_gnm.m2", + value = "helm_robe_pvpwarlock_b_01_gnm.m2", + }, + { + fileId = "238289", + text = "helm_robe_pvpwarlock_b_01_gof.m2", + value = "helm_robe_pvpwarlock_b_01_gof.m2", + }, + { + fileId = "238290", + text = "helm_robe_pvpwarlock_b_01_gom.m2", + value = "helm_robe_pvpwarlock_b_01_gom.m2", + }, + { + fileId = "238291", + text = "helm_robe_pvpwarlock_b_01_huf.m2", + value = "helm_robe_pvpwarlock_b_01_huf.m2", + }, + { + fileId = "238292", + text = "helm_robe_pvpwarlock_b_01_hum.m2", + value = "helm_robe_pvpwarlock_b_01_hum.m2", + }, + { + fileId = "238293", + text = "helm_robe_pvpwarlock_b_01_nif.m2", + value = "helm_robe_pvpwarlock_b_01_nif.m2", + }, + { + fileId = "238294", + text = "helm_robe_pvpwarlock_b_01_nim.m2", + value = "helm_robe_pvpwarlock_b_01_nim.m2", + }, + { + fileId = "238295", + text = "helm_robe_pvpwarlock_b_01_orf.m2", + value = "helm_robe_pvpwarlock_b_01_orf.m2", + }, + { + fileId = "238296", + text = "helm_robe_pvpwarlock_b_01_orm.m2", + value = "helm_robe_pvpwarlock_b_01_orm.m2", + }, + { + fileId = "238297", + text = "helm_robe_pvpwarlock_b_01_scf.m2", + value = "helm_robe_pvpwarlock_b_01_scf.m2", + }, + { + fileId = "238298", + text = "helm_robe_pvpwarlock_b_01_scm.m2", + value = "helm_robe_pvpwarlock_b_01_scm.m2", + }, + { + fileId = "238299", + text = "helm_robe_pvpwarlock_b_01_taf.m2", + value = "helm_robe_pvpwarlock_b_01_taf.m2", + }, + { + fileId = "238300", + text = "helm_robe_pvpwarlock_b_01_tam.m2", + value = "helm_robe_pvpwarlock_b_01_tam.m2", + }, + { + fileId = "238301", + text = "helm_robe_pvpwarlock_b_01_trf.m2", + value = "helm_robe_pvpwarlock_b_01_trf.m2", + }, + { + fileId = "238302", + text = "helm_robe_pvpwarlock_b_01_trm.m2", + value = "helm_robe_pvpwarlock_b_01_trm.m2", + }, + { + fileId = "254143", + text = "helm_robe_pvpwarlock_b_02_bef.m2", + value = "helm_robe_pvpwarlock_b_02_bef.m2", + }, + { + fileId = "254144", + text = "helm_robe_pvpwarlock_b_02_bem.m2", + value = "helm_robe_pvpwarlock_b_02_bem.m2", + }, + { + fileId = "254145", + text = "helm_robe_pvpwarlock_b_02_drf.m2", + value = "helm_robe_pvpwarlock_b_02_drf.m2", + }, + { + fileId = "254146", + text = "helm_robe_pvpwarlock_b_02_drm.m2", + value = "helm_robe_pvpwarlock_b_02_drm.m2", + }, + { + fileId = "254147", + text = "helm_robe_pvpwarlock_b_02_dwf.m2", + value = "helm_robe_pvpwarlock_b_02_dwf.m2", + }, + { + fileId = "254148", + text = "helm_robe_pvpwarlock_b_02_dwm.m2", + value = "helm_robe_pvpwarlock_b_02_dwm.m2", + }, + { + fileId = "254149", + text = "helm_robe_pvpwarlock_b_02_gnf.m2", + value = "helm_robe_pvpwarlock_b_02_gnf.m2", + }, + { + fileId = "254150", + text = "helm_robe_pvpwarlock_b_02_gnm.m2", + value = "helm_robe_pvpwarlock_b_02_gnm.m2", + }, + { + fileId = "254151", + text = "helm_robe_pvpwarlock_b_02_gof.m2", + value = "helm_robe_pvpwarlock_b_02_gof.m2", + }, + { + fileId = "254152", + text = "helm_robe_pvpwarlock_b_02_gom.m2", + value = "helm_robe_pvpwarlock_b_02_gom.m2", + }, + { + fileId = "254153", + text = "helm_robe_pvpwarlock_b_02_huf.m2", + value = "helm_robe_pvpwarlock_b_02_huf.m2", + }, + { + fileId = "254154", + text = "helm_robe_pvpwarlock_b_02_hum.m2", + value = "helm_robe_pvpwarlock_b_02_hum.m2", + }, + { + fileId = "254155", + text = "helm_robe_pvpwarlock_b_02_nif.m2", + value = "helm_robe_pvpwarlock_b_02_nif.m2", + }, + { + fileId = "254156", + text = "helm_robe_pvpwarlock_b_02_nim.m2", + value = "helm_robe_pvpwarlock_b_02_nim.m2", + }, + { + fileId = "254157", + text = "helm_robe_pvpwarlock_b_02_orf.m2", + value = "helm_robe_pvpwarlock_b_02_orf.m2", + }, + { + fileId = "254158", + text = "helm_robe_pvpwarlock_b_02_orm.m2", + value = "helm_robe_pvpwarlock_b_02_orm.m2", + }, + { + fileId = "254159", + text = "helm_robe_pvpwarlock_b_02_scf.m2", + value = "helm_robe_pvpwarlock_b_02_scf.m2", + }, + { + fileId = "254160", + text = "helm_robe_pvpwarlock_b_02_scm.m2", + value = "helm_robe_pvpwarlock_b_02_scm.m2", + }, + { + fileId = "254161", + text = "helm_robe_pvpwarlock_b_02_taf.m2", + value = "helm_robe_pvpwarlock_b_02_taf.m2", + }, + { + fileId = "254162", + text = "helm_robe_pvpwarlock_b_02_tam.m2", + value = "helm_robe_pvpwarlock_b_02_tam.m2", + }, + { + fileId = "254163", + text = "helm_robe_pvpwarlock_b_02_trf.m2", + value = "helm_robe_pvpwarlock_b_02_trf.m2", + }, + { + fileId = "254164", + text = "helm_robe_pvpwarlock_b_02_trm.m2", + value = "helm_robe_pvpwarlock_b_02_trm.m2", + }, + { + fileId = "305841", + text = "helm_robe_pvpwarlock_b_03_bef.m2", + value = "helm_robe_pvpwarlock_b_03_bef.m2", + }, + { + fileId = "305845", + text = "helm_robe_pvpwarlock_b_03_bem.m2", + value = "helm_robe_pvpwarlock_b_03_bem.m2", + }, + { + fileId = "305849", + text = "helm_robe_pvpwarlock_b_03_drf.m2", + value = "helm_robe_pvpwarlock_b_03_drf.m2", + }, + { + fileId = "305853", + text = "helm_robe_pvpwarlock_b_03_drm.m2", + value = "helm_robe_pvpwarlock_b_03_drm.m2", + }, + { + fileId = "305857", + text = "helm_robe_pvpwarlock_b_03_dwf.m2", + value = "helm_robe_pvpwarlock_b_03_dwf.m2", + }, + { + fileId = "305861", + text = "helm_robe_pvpwarlock_b_03_dwm.m2", + value = "helm_robe_pvpwarlock_b_03_dwm.m2", + }, + { + fileId = "305865", + text = "helm_robe_pvpwarlock_b_03_gnf.m2", + value = "helm_robe_pvpwarlock_b_03_gnf.m2", + }, + { + fileId = "305869", + text = "helm_robe_pvpwarlock_b_03_gnm.m2", + value = "helm_robe_pvpwarlock_b_03_gnm.m2", + }, + { + fileId = "305873", + text = "helm_robe_pvpwarlock_b_03_gof.m2", + value = "helm_robe_pvpwarlock_b_03_gof.m2", + }, + { + fileId = "305877", + text = "helm_robe_pvpwarlock_b_03_gom.m2", + value = "helm_robe_pvpwarlock_b_03_gom.m2", + }, + { + fileId = "305881", + text = "helm_robe_pvpwarlock_b_03_huf.m2", + value = "helm_robe_pvpwarlock_b_03_huf.m2", + }, + { + fileId = "305885", + text = "helm_robe_pvpwarlock_b_03_hum.m2", + value = "helm_robe_pvpwarlock_b_03_hum.m2", + }, + { + fileId = "305889", + text = "helm_robe_pvpwarlock_b_03_nif.m2", + value = "helm_robe_pvpwarlock_b_03_nif.m2", + }, + { + fileId = "305893", + text = "helm_robe_pvpwarlock_b_03_nim.m2", + value = "helm_robe_pvpwarlock_b_03_nim.m2", + }, + { + fileId = "305897", + text = "helm_robe_pvpwarlock_b_03_orf.m2", + value = "helm_robe_pvpwarlock_b_03_orf.m2", + }, + { + fileId = "305901", + text = "helm_robe_pvpwarlock_b_03_orm.m2", + value = "helm_robe_pvpwarlock_b_03_orm.m2", + }, + { + fileId = "305905", + text = "helm_robe_pvpwarlock_b_03_scf.m2", + value = "helm_robe_pvpwarlock_b_03_scf.m2", + }, + { + fileId = "305909", + text = "helm_robe_pvpwarlock_b_03_scm.m2", + value = "helm_robe_pvpwarlock_b_03_scm.m2", + }, + { + fileId = "305913", + text = "helm_robe_pvpwarlock_b_03_taf.m2", + value = "helm_robe_pvpwarlock_b_03_taf.m2", + }, + { + fileId = "305917", + text = "helm_robe_pvpwarlock_b_03_tam.m2", + value = "helm_robe_pvpwarlock_b_03_tam.m2", + }, + { + fileId = "305921", + text = "helm_robe_pvpwarlock_b_03_trf.m2", + value = "helm_robe_pvpwarlock_b_03_trf.m2", + }, + { + fileId = "305925", + text = "helm_robe_pvpwarlock_b_03_trm.m2", + value = "helm_robe_pvpwarlock_b_03_trm.m2", + }, + { + fileId = "350589", + text = "helm_robe_pvpwarlock_b_04_bef.m2", + value = "helm_robe_pvpwarlock_b_04_bef.m2", + }, + { + fileId = "350590", + text = "helm_robe_pvpwarlock_b_04_bem.m2", + value = "helm_robe_pvpwarlock_b_04_bem.m2", + }, + { + fileId = "350591", + text = "helm_robe_pvpwarlock_b_04_drf.m2", + value = "helm_robe_pvpwarlock_b_04_drf.m2", + }, + { + fileId = "350592", + text = "helm_robe_pvpwarlock_b_04_drm.m2", + value = "helm_robe_pvpwarlock_b_04_drm.m2", + }, + { + fileId = "350593", + text = "helm_robe_pvpwarlock_b_04_dwf.m2", + value = "helm_robe_pvpwarlock_b_04_dwf.m2", + }, + { + fileId = "350594", + text = "helm_robe_pvpwarlock_b_04_dwm.m2", + value = "helm_robe_pvpwarlock_b_04_dwm.m2", + }, + { + fileId = "350595", + text = "helm_robe_pvpwarlock_b_04_gnf.m2", + value = "helm_robe_pvpwarlock_b_04_gnf.m2", + }, + { + fileId = "350596", + text = "helm_robe_pvpwarlock_b_04_gnm.m2", + value = "helm_robe_pvpwarlock_b_04_gnm.m2", + }, + { + fileId = "350597", + text = "helm_robe_pvpwarlock_b_04_gof.m2", + value = "helm_robe_pvpwarlock_b_04_gof.m2", + }, + { + fileId = "350598", + text = "helm_robe_pvpwarlock_b_04_gom.m2", + value = "helm_robe_pvpwarlock_b_04_gom.m2", + }, + { + fileId = "350599", + text = "helm_robe_pvpwarlock_b_04_huf.m2", + value = "helm_robe_pvpwarlock_b_04_huf.m2", + }, + { + fileId = "350600", + text = "helm_robe_pvpwarlock_b_04_hum.m2", + value = "helm_robe_pvpwarlock_b_04_hum.m2", + }, + { + fileId = "350601", + text = "helm_robe_pvpwarlock_b_04_nif.m2", + value = "helm_robe_pvpwarlock_b_04_nif.m2", + }, + { + fileId = "350602", + text = "helm_robe_pvpwarlock_b_04_nim.m2", + value = "helm_robe_pvpwarlock_b_04_nim.m2", + }, + { + fileId = "350603", + text = "helm_robe_pvpwarlock_b_04_orf.m2", + value = "helm_robe_pvpwarlock_b_04_orf.m2", + }, + { + fileId = "350604", + text = "helm_robe_pvpwarlock_b_04_orm.m2", + value = "helm_robe_pvpwarlock_b_04_orm.m2", + }, + { + fileId = "350605", + text = "helm_robe_pvpwarlock_b_04_scf.m2", + value = "helm_robe_pvpwarlock_b_04_scf.m2", + }, + { + fileId = "350606", + text = "helm_robe_pvpwarlock_b_04_scm.m2", + value = "helm_robe_pvpwarlock_b_04_scm.m2", + }, + { + fileId = "350607", + text = "helm_robe_pvpwarlock_b_04_taf.m2", + value = "helm_robe_pvpwarlock_b_04_taf.m2", + }, + { + fileId = "350608", + text = "helm_robe_pvpwarlock_b_04_tam.m2", + value = "helm_robe_pvpwarlock_b_04_tam.m2", + }, + { + fileId = "350609", + text = "helm_robe_pvpwarlock_b_04_trf.m2", + value = "helm_robe_pvpwarlock_b_04_trf.m2", + }, + { + fileId = "350610", + text = "helm_robe_pvpwarlock_b_04_trm.m2", + value = "helm_robe_pvpwarlock_b_04_trm.m2", + }, + { + fileId = "141942", + text = "helm_robe_raid_a_01_bef.m2", + value = "helm_robe_raid_a_01_bef.m2", + }, + { + fileId = "141943", + text = "helm_robe_raid_a_01_bem.m2", + value = "helm_robe_raid_a_01_bem.m2", + }, + { + fileId = "141944", + text = "helm_robe_raid_a_01_drf.m2", + value = "helm_robe_raid_a_01_drf.m2", + }, + { + fileId = "141945", + text = "helm_robe_raid_a_01_drm.m2", + value = "helm_robe_raid_a_01_drm.m2", + }, + { + fileId = "141946", + text = "helm_robe_raid_a_01_gof.m2", + value = "helm_robe_raid_a_01_gof.m2", + }, + { + fileId = "141948", + text = "helm_robe_raidmage_a_01_bef.m2", + value = "helm_robe_raidmage_a_01_bef.m2", + }, + { + fileId = "141949", + text = "helm_robe_raidmage_a_01_bem.m2", + value = "helm_robe_raidmage_a_01_bem.m2", + }, + { + fileId = "141950", + text = "helm_robe_raidmage_a_01_drf.m2", + value = "helm_robe_raidmage_a_01_drf.m2", + }, + { + fileId = "141951", + text = "helm_robe_raidmage_a_01_drm.m2", + value = "helm_robe_raidmage_a_01_drm.m2", + }, + { + fileId = "141952", + text = "helm_robe_raidmage_a_01_dwf.m2", + value = "helm_robe_raidmage_a_01_dwf.m2", + }, + { + fileId = "141953", + text = "helm_robe_raidmage_a_01_dwm.m2", + value = "helm_robe_raidmage_a_01_dwm.m2", + }, + { + fileId = "141954", + text = "helm_robe_raidmage_a_01_gnf.m2", + value = "helm_robe_raidmage_a_01_gnf.m2", + }, + { + fileId = "141955", + text = "helm_robe_raidmage_a_01_gnm.m2", + value = "helm_robe_raidmage_a_01_gnm.m2", + }, + { + fileId = "141956", + text = "helm_robe_raidmage_a_01_gof.m2", + value = "helm_robe_raidmage_a_01_gof.m2", + }, + { + fileId = "141957", + text = "helm_robe_raidmage_a_01_gom.m2", + value = "helm_robe_raidmage_a_01_gom.m2", + }, + { + fileId = "141958", + text = "helm_robe_raidmage_a_01_huf.m2", + value = "helm_robe_raidmage_a_01_huf.m2", + }, + { + fileId = "141959", + text = "helm_robe_raidmage_a_01_hum.m2", + value = "helm_robe_raidmage_a_01_hum.m2", + }, + { + fileId = "141960", + text = "helm_robe_raidmage_a_01_nif.m2", + value = "helm_robe_raidmage_a_01_nif.m2", + }, + { + fileId = "141961", + text = "helm_robe_raidmage_a_01_nim.m2", + value = "helm_robe_raidmage_a_01_nim.m2", + }, + { + fileId = "141962", + text = "helm_robe_raidmage_a_01_orf.m2", + value = "helm_robe_raidmage_a_01_orf.m2", + }, + { + fileId = "141963", + text = "helm_robe_raidmage_a_01_orm.m2", + value = "helm_robe_raidmage_a_01_orm.m2", + }, + { + fileId = "141964", + text = "helm_robe_raidmage_a_01_scf.m2", + value = "helm_robe_raidmage_a_01_scf.m2", + }, + { + fileId = "141965", + text = "helm_robe_raidmage_a_01_scm.m2", + value = "helm_robe_raidmage_a_01_scm.m2", + }, + { + fileId = "141966", + text = "helm_robe_raidmage_a_01_taf.m2", + value = "helm_robe_raidmage_a_01_taf.m2", + }, + { + fileId = "141967", + text = "helm_robe_raidmage_a_01_tam.m2", + value = "helm_robe_raidmage_a_01_tam.m2", + }, + { + fileId = "141968", + text = "helm_robe_raidmage_a_01_trf.m2", + value = "helm_robe_raidmage_a_01_trf.m2", + }, + { + fileId = "141969", + text = "helm_robe_raidmage_a_01_trm.m2", + value = "helm_robe_raidmage_a_01_trm.m2", + }, + { + fileId = "141974", + text = "helm_robe_raidmage_b_01_bef.m2", + value = "helm_robe_raidmage_b_01_bef.m2", + }, + { + fileId = "141975", + text = "helm_robe_raidmage_b_01_bem.m2", + value = "helm_robe_raidmage_b_01_bem.m2", + }, + { + fileId = "141976", + text = "helm_robe_raidmage_b_01_drf.m2", + value = "helm_robe_raidmage_b_01_drf.m2", + }, + { + fileId = "141977", + text = "helm_robe_raidmage_b_01_drm.m2", + value = "helm_robe_raidmage_b_01_drm.m2", + }, + { + fileId = "141978", + text = "helm_robe_raidmage_b_01_dwf.m2", + value = "helm_robe_raidmage_b_01_dwf.m2", + }, + { + fileId = "141979", + text = "helm_robe_raidmage_b_01_dwm.m2", + value = "helm_robe_raidmage_b_01_dwm.m2", + }, + { + fileId = "141980", + text = "helm_robe_raidmage_b_01_gnf.m2", + value = "helm_robe_raidmage_b_01_gnf.m2", + }, + { + fileId = "141981", + text = "helm_robe_raidmage_b_01_gnm.m2", + value = "helm_robe_raidmage_b_01_gnm.m2", + }, + { + fileId = "141982", + text = "helm_robe_raidmage_b_01_gof.m2", + value = "helm_robe_raidmage_b_01_gof.m2", + }, + { + fileId = "141983", + text = "helm_robe_raidmage_b_01_gom.m2", + value = "helm_robe_raidmage_b_01_gom.m2", + }, + { + fileId = "141984", + text = "helm_robe_raidmage_b_01_huf.m2", + value = "helm_robe_raidmage_b_01_huf.m2", + }, + { + fileId = "141985", + text = "helm_robe_raidmage_b_01_hum.m2", + value = "helm_robe_raidmage_b_01_hum.m2", + }, + { + fileId = "141986", + text = "helm_robe_raidmage_b_01_nif.m2", + value = "helm_robe_raidmage_b_01_nif.m2", + }, + { + fileId = "141987", + text = "helm_robe_raidmage_b_01_nim.m2", + value = "helm_robe_raidmage_b_01_nim.m2", + }, + { + fileId = "141988", + text = "helm_robe_raidmage_b_01_orf.m2", + value = "helm_robe_raidmage_b_01_orf.m2", + }, + { + fileId = "141989", + text = "helm_robe_raidmage_b_01_orm.m2", + value = "helm_robe_raidmage_b_01_orm.m2", + }, + { + fileId = "141990", + text = "helm_robe_raidmage_b_01_scf.m2", + value = "helm_robe_raidmage_b_01_scf.m2", + }, + { + fileId = "141991", + text = "helm_robe_raidmage_b_01_scm.m2", + value = "helm_robe_raidmage_b_01_scm.m2", + }, + { + fileId = "141992", + text = "helm_robe_raidmage_b_01_taf.m2", + value = "helm_robe_raidmage_b_01_taf.m2", + }, + { + fileId = "141993", + text = "helm_robe_raidmage_b_01_tam.m2", + value = "helm_robe_raidmage_b_01_tam.m2", + }, + { + fileId = "141994", + text = "helm_robe_raidmage_b_01_trf.m2", + value = "helm_robe_raidmage_b_01_trf.m2", + }, + { + fileId = "141995", + text = "helm_robe_raidmage_b_01_trm.m2", + value = "helm_robe_raidmage_b_01_trm.m2", + }, + { + fileId = "142001", + text = "helm_robe_raidmage_c_01_bef.m2", + value = "helm_robe_raidmage_c_01_bef.m2", + }, + { + fileId = "142002", + text = "helm_robe_raidmage_c_01_bem.m2", + value = "helm_robe_raidmage_c_01_bem.m2", + }, + { + fileId = "142003", + text = "helm_robe_raidmage_c_01_drf.m2", + value = "helm_robe_raidmage_c_01_drf.m2", + }, + { + fileId = "142004", + text = "helm_robe_raidmage_c_01_drm.m2", + value = "helm_robe_raidmage_c_01_drm.m2", + }, + { + fileId = "142005", + text = "helm_robe_raidmage_c_01_dwf.m2", + value = "helm_robe_raidmage_c_01_dwf.m2", + }, + { + fileId = "142006", + text = "helm_robe_raidmage_c_01_dwm.m2", + value = "helm_robe_raidmage_c_01_dwm.m2", + }, + { + fileId = "142007", + text = "helm_robe_raidmage_c_01_gnf.m2", + value = "helm_robe_raidmage_c_01_gnf.m2", + }, + { + fileId = "142008", + text = "helm_robe_raidmage_c_01_gnm.m2", + value = "helm_robe_raidmage_c_01_gnm.m2", + }, + { + fileId = "142009", + text = "helm_robe_raidmage_c_01_gof.m2", + value = "helm_robe_raidmage_c_01_gof.m2", + }, + { + fileId = "142010", + text = "helm_robe_raidmage_c_01_gom.m2", + value = "helm_robe_raidmage_c_01_gom.m2", + }, + { + fileId = "142011", + text = "helm_robe_raidmage_c_01_huf.m2", + value = "helm_robe_raidmage_c_01_huf.m2", + }, + { + fileId = "142012", + text = "helm_robe_raidmage_c_01_hum.m2", + value = "helm_robe_raidmage_c_01_hum.m2", + }, + { + fileId = "142013", + text = "helm_robe_raidmage_c_01_nif.m2", + value = "helm_robe_raidmage_c_01_nif.m2", + }, + { + fileId = "142014", + text = "helm_robe_raidmage_c_01_nim.m2", + value = "helm_robe_raidmage_c_01_nim.m2", + }, + { + fileId = "142015", + text = "helm_robe_raidmage_c_01_orf.m2", + value = "helm_robe_raidmage_c_01_orf.m2", + }, + { + fileId = "142016", + text = "helm_robe_raidmage_c_01_orm.m2", + value = "helm_robe_raidmage_c_01_orm.m2", + }, + { + fileId = "142017", + text = "helm_robe_raidmage_c_01_scf.m2", + value = "helm_robe_raidmage_c_01_scf.m2", + }, + { + fileId = "142018", + text = "helm_robe_raidmage_c_01_scm.m2", + value = "helm_robe_raidmage_c_01_scm.m2", + }, + { + fileId = "142019", + text = "helm_robe_raidmage_c_01_taf.m2", + value = "helm_robe_raidmage_c_01_taf.m2", + }, + { + fileId = "142020", + text = "helm_robe_raidmage_c_01_tam.m2", + value = "helm_robe_raidmage_c_01_tam.m2", + }, + { + fileId = "142021", + text = "helm_robe_raidmage_c_01_trf.m2", + value = "helm_robe_raidmage_c_01_trf.m2", + }, + { + fileId = "142022", + text = "helm_robe_raidmage_c_01_trm.m2", + value = "helm_robe_raidmage_c_01_trm.m2", + }, + { + fileId = "238306", + text = "helm_robe_raidmage_c_02_bef.m2", + value = "helm_robe_raidmage_c_02_bef.m2", + }, + { + fileId = "238307", + text = "helm_robe_raidmage_c_02_bem.m2", + value = "helm_robe_raidmage_c_02_bem.m2", + }, + { + fileId = "238308", + text = "helm_robe_raidmage_c_02_drf.m2", + value = "helm_robe_raidmage_c_02_drf.m2", + }, + { + fileId = "238309", + text = "helm_robe_raidmage_c_02_drm.m2", + value = "helm_robe_raidmage_c_02_drm.m2", + }, + { + fileId = "238310", + text = "helm_robe_raidmage_c_02_dwf.m2", + value = "helm_robe_raidmage_c_02_dwf.m2", + }, + { + fileId = "238311", + text = "helm_robe_raidmage_c_02_dwm.m2", + value = "helm_robe_raidmage_c_02_dwm.m2", + }, + { + fileId = "238312", + text = "helm_robe_raidmage_c_02_gnf.m2", + value = "helm_robe_raidmage_c_02_gnf.m2", + }, + { + fileId = "238313", + text = "helm_robe_raidmage_c_02_gnm.m2", + value = "helm_robe_raidmage_c_02_gnm.m2", + }, + { + fileId = "238314", + text = "helm_robe_raidmage_c_02_gof.m2", + value = "helm_robe_raidmage_c_02_gof.m2", + }, + { + fileId = "238315", + text = "helm_robe_raidmage_c_02_gom.m2", + value = "helm_robe_raidmage_c_02_gom.m2", + }, + { + fileId = "238316", + text = "helm_robe_raidmage_c_02_huf.m2", + value = "helm_robe_raidmage_c_02_huf.m2", + }, + { + fileId = "238317", + text = "helm_robe_raidmage_c_02_hum.m2", + value = "helm_robe_raidmage_c_02_hum.m2", + }, + { + fileId = "238318", + text = "helm_robe_raidmage_c_02_nif.m2", + value = "helm_robe_raidmage_c_02_nif.m2", + }, + { + fileId = "238319", + text = "helm_robe_raidmage_c_02_nim.m2", + value = "helm_robe_raidmage_c_02_nim.m2", + }, + { + fileId = "238320", + text = "helm_robe_raidmage_c_02_orf.m2", + value = "helm_robe_raidmage_c_02_orf.m2", + }, + { + fileId = "238321", + text = "helm_robe_raidmage_c_02_orm.m2", + value = "helm_robe_raidmage_c_02_orm.m2", + }, + { + fileId = "238322", + text = "helm_robe_raidmage_c_02_scf.m2", + value = "helm_robe_raidmage_c_02_scf.m2", + }, + { + fileId = "238323", + text = "helm_robe_raidmage_c_02_scm.m2", + value = "helm_robe_raidmage_c_02_scm.m2", + }, + { + fileId = "238324", + text = "helm_robe_raidmage_c_02_taf.m2", + value = "helm_robe_raidmage_c_02_taf.m2", + }, + { + fileId = "238325", + text = "helm_robe_raidmage_c_02_tam.m2", + value = "helm_robe_raidmage_c_02_tam.m2", + }, + { + fileId = "238326", + text = "helm_robe_raidmage_c_02_trf.m2", + value = "helm_robe_raidmage_c_02_trf.m2", + }, + { + fileId = "238327", + text = "helm_robe_raidmage_c_02_trm.m2", + value = "helm_robe_raidmage_c_02_trm.m2", + }, + { + fileId = "142024", + text = "helm_robe_raidmage_d_01_bef.m2", + value = "helm_robe_raidmage_d_01_bef.m2", + }, + { + fileId = "142025", + text = "helm_robe_raidmage_d_01_bem.m2", + value = "helm_robe_raidmage_d_01_bem.m2", + }, + { + fileId = "142026", + text = "helm_robe_raidmage_d_01_drf.m2", + value = "helm_robe_raidmage_d_01_drf.m2", + }, + { + fileId = "142027", + text = "helm_robe_raidmage_d_01_drm.m2", + value = "helm_robe_raidmage_d_01_drm.m2", + }, + { + fileId = "142028", + text = "helm_robe_raidmage_d_01_dwf.m2", + value = "helm_robe_raidmage_d_01_dwf.m2", + }, + { + fileId = "142029", + text = "helm_robe_raidmage_d_01_dwm.m2", + value = "helm_robe_raidmage_d_01_dwm.m2", + }, + { + fileId = "142030", + text = "helm_robe_raidmage_d_01_gnf.m2", + value = "helm_robe_raidmage_d_01_gnf.m2", + }, + { + fileId = "142031", + text = "helm_robe_raidmage_d_01_gnm.m2", + value = "helm_robe_raidmage_d_01_gnm.m2", + }, + { + fileId = "142032", + text = "helm_robe_raidmage_d_01_gof.m2", + value = "helm_robe_raidmage_d_01_gof.m2", + }, + { + fileId = "142033", + text = "helm_robe_raidmage_d_01_gom.m2", + value = "helm_robe_raidmage_d_01_gom.m2", + }, + { + fileId = "142034", + text = "helm_robe_raidmage_d_01_huf.m2", + value = "helm_robe_raidmage_d_01_huf.m2", + }, + { + fileId = "142035", + text = "helm_robe_raidmage_d_01_hum.m2", + value = "helm_robe_raidmage_d_01_hum.m2", + }, + { + fileId = "142036", + text = "helm_robe_raidmage_d_01_nif.m2", + value = "helm_robe_raidmage_d_01_nif.m2", + }, + { + fileId = "142037", + text = "helm_robe_raidmage_d_01_nim.m2", + value = "helm_robe_raidmage_d_01_nim.m2", + }, + { + fileId = "142038", + text = "helm_robe_raidmage_d_01_orf.m2", + value = "helm_robe_raidmage_d_01_orf.m2", + }, + { + fileId = "142039", + text = "helm_robe_raidmage_d_01_orm.m2", + value = "helm_robe_raidmage_d_01_orm.m2", + }, + { + fileId = "142040", + text = "helm_robe_raidmage_d_01_scf.m2", + value = "helm_robe_raidmage_d_01_scf.m2", + }, + { + fileId = "142041", + text = "helm_robe_raidmage_d_01_scm.m2", + value = "helm_robe_raidmage_d_01_scm.m2", + }, + { + fileId = "142042", + text = "helm_robe_raidmage_d_01_taf.m2", + value = "helm_robe_raidmage_d_01_taf.m2", + }, + { + fileId = "142043", + text = "helm_robe_raidmage_d_01_tam.m2", + value = "helm_robe_raidmage_d_01_tam.m2", + }, + { + fileId = "142044", + text = "helm_robe_raidmage_d_01_trf.m2", + value = "helm_robe_raidmage_d_01_trf.m2", + }, + { + fileId = "142045", + text = "helm_robe_raidmage_d_01_trm.m2", + value = "helm_robe_raidmage_d_01_trm.m2", + }, + { + fileId = "142048", + text = "helm_robe_raidmage_e_01_bef.m2", + value = "helm_robe_raidmage_e_01_bef.m2", + }, + { + fileId = "142049", + text = "helm_robe_raidmage_e_01_bem.m2", + value = "helm_robe_raidmage_e_01_bem.m2", + }, + { + fileId = "142050", + text = "helm_robe_raidmage_e_01_drf.m2", + value = "helm_robe_raidmage_e_01_drf.m2", + }, + { + fileId = "142051", + text = "helm_robe_raidmage_e_01_drm.m2", + value = "helm_robe_raidmage_e_01_drm.m2", + }, + { + fileId = "142052", + text = "helm_robe_raidmage_e_01_dwf.m2", + value = "helm_robe_raidmage_e_01_dwf.m2", + }, + { + fileId = "142053", + text = "helm_robe_raidmage_e_01_dwm.m2", + value = "helm_robe_raidmage_e_01_dwm.m2", + }, + { + fileId = "142054", + text = "helm_robe_raidmage_e_01_gnf.m2", + value = "helm_robe_raidmage_e_01_gnf.m2", + }, + { + fileId = "142055", + text = "helm_robe_raidmage_e_01_gnm.m2", + value = "helm_robe_raidmage_e_01_gnm.m2", + }, + { + fileId = "142056", + text = "helm_robe_raidmage_e_01_gof.m2", + value = "helm_robe_raidmage_e_01_gof.m2", + }, + { + fileId = "142057", + text = "helm_robe_raidmage_e_01_gom.m2", + value = "helm_robe_raidmage_e_01_gom.m2", + }, + { + fileId = "142058", + text = "helm_robe_raidmage_e_01_huf.m2", + value = "helm_robe_raidmage_e_01_huf.m2", + }, + { + fileId = "142059", + text = "helm_robe_raidmage_e_01_hum.m2", + value = "helm_robe_raidmage_e_01_hum.m2", + }, + { + fileId = "142060", + text = "helm_robe_raidmage_e_01_nif.m2", + value = "helm_robe_raidmage_e_01_nif.m2", + }, + { + fileId = "142061", + text = "helm_robe_raidmage_e_01_nim.m2", + value = "helm_robe_raidmage_e_01_nim.m2", + }, + { + fileId = "142062", + text = "helm_robe_raidmage_e_01_orf.m2", + value = "helm_robe_raidmage_e_01_orf.m2", + }, + { + fileId = "142063", + text = "helm_robe_raidmage_e_01_orm.m2", + value = "helm_robe_raidmage_e_01_orm.m2", + }, + { + fileId = "142064", + text = "helm_robe_raidmage_e_01_scf.m2", + value = "helm_robe_raidmage_e_01_scf.m2", + }, + { + fileId = "142065", + text = "helm_robe_raidmage_e_01_scm.m2", + value = "helm_robe_raidmage_e_01_scm.m2", + }, + { + fileId = "142066", + text = "helm_robe_raidmage_e_01_taf.m2", + value = "helm_robe_raidmage_e_01_taf.m2", + }, + { + fileId = "142067", + text = "helm_robe_raidmage_e_01_tam.m2", + value = "helm_robe_raidmage_e_01_tam.m2", + }, + { + fileId = "142068", + text = "helm_robe_raidmage_e_01_trf.m2", + value = "helm_robe_raidmage_e_01_trf.m2", + }, + { + fileId = "142069", + text = "helm_robe_raidmage_e_01_trm.m2", + value = "helm_robe_raidmage_e_01_trm.m2", + }, + { + fileId = "142073", + text = "helm_robe_raidmage_f_01_bef.m2", + value = "helm_robe_raidmage_f_01_bef.m2", + }, + { + fileId = "142074", + text = "helm_robe_raidmage_f_01_bem.m2", + value = "helm_robe_raidmage_f_01_bem.m2", + }, + { + fileId = "142075", + text = "helm_robe_raidmage_f_01_drf.m2", + value = "helm_robe_raidmage_f_01_drf.m2", + }, + { + fileId = "142076", + text = "helm_robe_raidmage_f_01_drm.m2", + value = "helm_robe_raidmage_f_01_drm.m2", + }, + { + fileId = "142077", + text = "helm_robe_raidmage_f_01_dwf.m2", + value = "helm_robe_raidmage_f_01_dwf.m2", + }, + { + fileId = "142078", + text = "helm_robe_raidmage_f_01_dwm.m2", + value = "helm_robe_raidmage_f_01_dwm.m2", + }, + { + fileId = "142079", + text = "helm_robe_raidmage_f_01_gnf.m2", + value = "helm_robe_raidmage_f_01_gnf.m2", + }, + { + fileId = "142080", + text = "helm_robe_raidmage_f_01_gnm.m2", + value = "helm_robe_raidmage_f_01_gnm.m2", + }, + { + fileId = "142081", + text = "helm_robe_raidmage_f_01_gof.m2", + value = "helm_robe_raidmage_f_01_gof.m2", + }, + { + fileId = "142082", + text = "helm_robe_raidmage_f_01_gom.m2", + value = "helm_robe_raidmage_f_01_gom.m2", + }, + { + fileId = "142083", + text = "helm_robe_raidmage_f_01_huf.m2", + value = "helm_robe_raidmage_f_01_huf.m2", + }, + { + fileId = "142084", + text = "helm_robe_raidmage_f_01_hum.m2", + value = "helm_robe_raidmage_f_01_hum.m2", + }, + { + fileId = "142085", + text = "helm_robe_raidmage_f_01_nif.m2", + value = "helm_robe_raidmage_f_01_nif.m2", + }, + { + fileId = "142086", + text = "helm_robe_raidmage_f_01_nim.m2", + value = "helm_robe_raidmage_f_01_nim.m2", + }, + { + fileId = "142087", + text = "helm_robe_raidmage_f_01_orf.m2", + value = "helm_robe_raidmage_f_01_orf.m2", + }, + { + fileId = "142088", + text = "helm_robe_raidmage_f_01_orm.m2", + value = "helm_robe_raidmage_f_01_orm.m2", + }, + { + fileId = "142089", + text = "helm_robe_raidmage_f_01_scf.m2", + value = "helm_robe_raidmage_f_01_scf.m2", + }, + { + fileId = "142090", + text = "helm_robe_raidmage_f_01_scm.m2", + value = "helm_robe_raidmage_f_01_scm.m2", + }, + { + fileId = "142091", + text = "helm_robe_raidmage_f_01_taf.m2", + value = "helm_robe_raidmage_f_01_taf.m2", + }, + { + fileId = "142092", + text = "helm_robe_raidmage_f_01_tam.m2", + value = "helm_robe_raidmage_f_01_tam.m2", + }, + { + fileId = "142093", + text = "helm_robe_raidmage_f_01_trf.m2", + value = "helm_robe_raidmage_f_01_trf.m2", + }, + { + fileId = "142094", + text = "helm_robe_raidmage_f_01_trm.m2", + value = "helm_robe_raidmage_f_01_trm.m2", + }, + { + fileId = "142101", + text = "helm_robe_raidmage_g_01_bef.m2", + value = "helm_robe_raidmage_g_01_bef.m2", + }, + { + fileId = "142102", + text = "helm_robe_raidmage_g_01_bem.m2", + value = "helm_robe_raidmage_g_01_bem.m2", + }, + { + fileId = "142103", + text = "helm_robe_raidmage_g_01_drf.m2", + value = "helm_robe_raidmage_g_01_drf.m2", + }, + { + fileId = "142104", + text = "helm_robe_raidmage_g_01_drm.m2", + value = "helm_robe_raidmage_g_01_drm.m2", + }, + { + fileId = "142105", + text = "helm_robe_raidmage_g_01_dwf.m2", + value = "helm_robe_raidmage_g_01_dwf.m2", + }, + { + fileId = "142106", + text = "helm_robe_raidmage_g_01_dwm.m2", + value = "helm_robe_raidmage_g_01_dwm.m2", + }, + { + fileId = "142107", + text = "helm_robe_raidmage_g_01_gnf.m2", + value = "helm_robe_raidmage_g_01_gnf.m2", + }, + { + fileId = "142108", + text = "helm_robe_raidmage_g_01_gnm.m2", + value = "helm_robe_raidmage_g_01_gnm.m2", + }, + { + fileId = "142109", + text = "helm_robe_raidmage_g_01_gof.m2", + value = "helm_robe_raidmage_g_01_gof.m2", + }, + { + fileId = "142110", + text = "helm_robe_raidmage_g_01_gom.m2", + value = "helm_robe_raidmage_g_01_gom.m2", + }, + { + fileId = "142111", + text = "helm_robe_raidmage_g_01_huf.m2", + value = "helm_robe_raidmage_g_01_huf.m2", + }, + { + fileId = "142112", + text = "helm_robe_raidmage_g_01_hum.m2", + value = "helm_robe_raidmage_g_01_hum.m2", + }, + { + fileId = "142113", + text = "helm_robe_raidmage_g_01_nif.m2", + value = "helm_robe_raidmage_g_01_nif.m2", + }, + { + fileId = "142114", + text = "helm_robe_raidmage_g_01_nim.m2", + value = "helm_robe_raidmage_g_01_nim.m2", + }, + { + fileId = "142115", + text = "helm_robe_raidmage_g_01_orf.m2", + value = "helm_robe_raidmage_g_01_orf.m2", + }, + { + fileId = "142116", + text = "helm_robe_raidmage_g_01_orm.m2", + value = "helm_robe_raidmage_g_01_orm.m2", + }, + { + fileId = "142117", + text = "helm_robe_raidmage_g_01_scf.m2", + value = "helm_robe_raidmage_g_01_scf.m2", + }, + { + fileId = "142118", + text = "helm_robe_raidmage_g_01_scm.m2", + value = "helm_robe_raidmage_g_01_scm.m2", + }, + { + fileId = "142119", + text = "helm_robe_raidmage_g_01_taf.m2", + value = "helm_robe_raidmage_g_01_taf.m2", + }, + { + fileId = "142120", + text = "helm_robe_raidmage_g_01_tam.m2", + value = "helm_robe_raidmage_g_01_tam.m2", + }, + { + fileId = "142121", + text = "helm_robe_raidmage_g_01_trf.m2", + value = "helm_robe_raidmage_g_01_trf.m2", + }, + { + fileId = "142122", + text = "helm_robe_raidmage_g_01_trm.m2", + value = "helm_robe_raidmage_g_01_trm.m2", + }, + { + fileId = "340051", + text = "helm_robe_raidmage_h_01_bef.m2", + value = "helm_robe_raidmage_h_01_bef.m2", + }, + { + fileId = "340052", + text = "helm_robe_raidmage_h_01_bem.m2", + value = "helm_robe_raidmage_h_01_bem.m2", + }, + { + fileId = "340053", + text = "helm_robe_raidmage_h_01_drf.m2", + value = "helm_robe_raidmage_h_01_drf.m2", + }, + { + fileId = "340054", + text = "helm_robe_raidmage_h_01_drm.m2", + value = "helm_robe_raidmage_h_01_drm.m2", + }, + { + fileId = "340055", + text = "helm_robe_raidmage_h_01_dwf.m2", + value = "helm_robe_raidmage_h_01_dwf.m2", + }, + { + fileId = "340056", + text = "helm_robe_raidmage_h_01_dwm.m2", + value = "helm_robe_raidmage_h_01_dwm.m2", + }, + { + fileId = "340057", + text = "helm_robe_raidmage_h_01_gnf.m2", + value = "helm_robe_raidmage_h_01_gnf.m2", + }, + { + fileId = "340058", + text = "helm_robe_raidmage_h_01_gnm.m2", + value = "helm_robe_raidmage_h_01_gnm.m2", + }, + { + fileId = "340059", + text = "helm_robe_raidmage_h_01_huf.m2", + value = "helm_robe_raidmage_h_01_huf.m2", + }, + { + fileId = "340060", + text = "helm_robe_raidmage_h_01_hum.m2", + value = "helm_robe_raidmage_h_01_hum.m2", + }, + { + fileId = "340061", + text = "helm_robe_raidmage_h_01_nif.m2", + value = "helm_robe_raidmage_h_01_nif.m2", + }, + { + fileId = "340062", + text = "helm_robe_raidmage_h_01_nim.m2", + value = "helm_robe_raidmage_h_01_nim.m2", + }, + { + fileId = "340063", + text = "helm_robe_raidmage_h_01_orf.m2", + value = "helm_robe_raidmage_h_01_orf.m2", + }, + { + fileId = "340064", + text = "helm_robe_raidmage_h_01_orm.m2", + value = "helm_robe_raidmage_h_01_orm.m2", + }, + { + fileId = "340065", + text = "helm_robe_raidmage_h_01_scf.m2", + value = "helm_robe_raidmage_h_01_scf.m2", + }, + { + fileId = "340066", + text = "helm_robe_raidmage_h_01_scm.m2", + value = "helm_robe_raidmage_h_01_scm.m2", + }, + { + fileId = "340067", + text = "helm_robe_raidmage_h_01_taf.m2", + value = "helm_robe_raidmage_h_01_taf.m2", + }, + { + fileId = "340068", + text = "helm_robe_raidmage_h_01_tam.m2", + value = "helm_robe_raidmage_h_01_tam.m2", + }, + { + fileId = "340069", + text = "helm_robe_raidmage_h_01_trf.m2", + value = "helm_robe_raidmage_h_01_trf.m2", + }, + { + fileId = "340070", + text = "helm_robe_raidmage_h_01_trm.m2", + value = "helm_robe_raidmage_h_01_trm.m2", + }, + { + fileId = "142126", + text = "helm_robe_raidpriest_a_01_bef.m2", + value = "helm_robe_raidpriest_a_01_bef.m2", + }, + { + fileId = "142127", + text = "helm_robe_raidpriest_a_01_bem.m2", + value = "helm_robe_raidpriest_a_01_bem.m2", + }, + { + fileId = "142128", + text = "helm_robe_raidpriest_a_01_drf.m2", + value = "helm_robe_raidpriest_a_01_drf.m2", + }, + { + fileId = "142129", + text = "helm_robe_raidpriest_a_01_drm.m2", + value = "helm_robe_raidpriest_a_01_drm.m2", + }, + { + fileId = "142130", + text = "helm_robe_raidpriest_a_01_dwf.m2", + value = "helm_robe_raidpriest_a_01_dwf.m2", + }, + { + fileId = "142131", + text = "helm_robe_raidpriest_a_01_dwm.m2", + value = "helm_robe_raidpriest_a_01_dwm.m2", + }, + { + fileId = "142132", + text = "helm_robe_raidpriest_a_01_gnf.m2", + value = "helm_robe_raidpriest_a_01_gnf.m2", + }, + { + fileId = "142133", + text = "helm_robe_raidpriest_a_01_gnm.m2", + value = "helm_robe_raidpriest_a_01_gnm.m2", + }, + { + fileId = "142134", + text = "helm_robe_raidpriest_a_01_gof.m2", + value = "helm_robe_raidpriest_a_01_gof.m2", + }, + { + fileId = "142135", + text = "helm_robe_raidpriest_a_01_gom.m2", + value = "helm_robe_raidpriest_a_01_gom.m2", + }, + { + fileId = "142136", + text = "helm_robe_raidpriest_a_01_huf.m2", + value = "helm_robe_raidpriest_a_01_huf.m2", + }, + { + fileId = "142137", + text = "helm_robe_raidpriest_a_01_hum.m2", + value = "helm_robe_raidpriest_a_01_hum.m2", + }, + { + fileId = "142138", + text = "helm_robe_raidpriest_a_01_nif.m2", + value = "helm_robe_raidpriest_a_01_nif.m2", + }, + { + fileId = "142139", + text = "helm_robe_raidpriest_a_01_nim.m2", + value = "helm_robe_raidpriest_a_01_nim.m2", + }, + { + fileId = "142140", + text = "helm_robe_raidpriest_a_01_orf.m2", + value = "helm_robe_raidpriest_a_01_orf.m2", + }, + { + fileId = "142141", + text = "helm_robe_raidpriest_a_01_orm.m2", + value = "helm_robe_raidpriest_a_01_orm.m2", + }, + { + fileId = "142142", + text = "helm_robe_raidpriest_a_01_scf.m2", + value = "helm_robe_raidpriest_a_01_scf.m2", + }, + { + fileId = "142143", + text = "helm_robe_raidpriest_a_01_scm.m2", + value = "helm_robe_raidpriest_a_01_scm.m2", + }, + { + fileId = "142144", + text = "helm_robe_raidpriest_a_01_taf.m2", + value = "helm_robe_raidpriest_a_01_taf.m2", + }, + { + fileId = "142145", + text = "helm_robe_raidpriest_a_01_tam.m2", + value = "helm_robe_raidpriest_a_01_tam.m2", + }, + { + fileId = "142146", + text = "helm_robe_raidpriest_a_01_trf.m2", + value = "helm_robe_raidpriest_a_01_trf.m2", + }, + { + fileId = "142147", + text = "helm_robe_raidpriest_a_01_trm.m2", + value = "helm_robe_raidpriest_a_01_trm.m2", + }, + { + fileId = "142153", + text = "helm_robe_raidpriest_b_01_bef.m2", + value = "helm_robe_raidpriest_b_01_bef.m2", + }, + { + fileId = "142154", + text = "helm_robe_raidpriest_b_01_bem.m2", + value = "helm_robe_raidpriest_b_01_bem.m2", + }, + { + fileId = "142155", + text = "helm_robe_raidpriest_b_01_drf.m2", + value = "helm_robe_raidpriest_b_01_drf.m2", + }, + { + fileId = "142156", + text = "helm_robe_raidpriest_b_01_drm.m2", + value = "helm_robe_raidpriest_b_01_drm.m2", + }, + { + fileId = "142157", + text = "helm_robe_raidpriest_b_01_dwf.m2", + value = "helm_robe_raidpriest_b_01_dwf.m2", + }, + { + fileId = "142158", + text = "helm_robe_raidpriest_b_01_dwm.m2", + value = "helm_robe_raidpriest_b_01_dwm.m2", + }, + { + fileId = "142159", + text = "helm_robe_raidpriest_b_01_gnf.m2", + value = "helm_robe_raidpriest_b_01_gnf.m2", + }, + { + fileId = "142160", + text = "helm_robe_raidpriest_b_01_gnm.m2", + value = "helm_robe_raidpriest_b_01_gnm.m2", + }, + { + fileId = "142161", + text = "helm_robe_raidpriest_b_01_gof.m2", + value = "helm_robe_raidpriest_b_01_gof.m2", + }, + { + fileId = "142162", + text = "helm_robe_raidpriest_b_01_gom.m2", + value = "helm_robe_raidpriest_b_01_gom.m2", + }, + { + fileId = "142163", + text = "helm_robe_raidpriest_b_01_huf.m2", + value = "helm_robe_raidpriest_b_01_huf.m2", + }, + { + fileId = "142164", + text = "helm_robe_raidpriest_b_01_hum.m2", + value = "helm_robe_raidpriest_b_01_hum.m2", + }, + { + fileId = "142165", + text = "helm_robe_raidpriest_b_01_nif.m2", + value = "helm_robe_raidpriest_b_01_nif.m2", + }, + { + fileId = "142166", + text = "helm_robe_raidpriest_b_01_nim.m2", + value = "helm_robe_raidpriest_b_01_nim.m2", + }, + { + fileId = "142167", + text = "helm_robe_raidpriest_b_01_orf.m2", + value = "helm_robe_raidpriest_b_01_orf.m2", + }, + { + fileId = "142168", + text = "helm_robe_raidpriest_b_01_orm.m2", + value = "helm_robe_raidpriest_b_01_orm.m2", + }, + { + fileId = "142169", + text = "helm_robe_raidpriest_b_01_scf.m2", + value = "helm_robe_raidpriest_b_01_scf.m2", + }, + { + fileId = "142170", + text = "helm_robe_raidpriest_b_01_scm.m2", + value = "helm_robe_raidpriest_b_01_scm.m2", + }, + { + fileId = "142171", + text = "helm_robe_raidpriest_b_01_taf.m2", + value = "helm_robe_raidpriest_b_01_taf.m2", + }, + { + fileId = "142172", + text = "helm_robe_raidpriest_b_01_tam.m2", + value = "helm_robe_raidpriest_b_01_tam.m2", + }, + { + fileId = "142173", + text = "helm_robe_raidpriest_b_01_trf.m2", + value = "helm_robe_raidpriest_b_01_trf.m2", + }, + { + fileId = "142174", + text = "helm_robe_raidpriest_b_01_trm.m2", + value = "helm_robe_raidpriest_b_01_trm.m2", + }, + { + fileId = "142178", + text = "helm_robe_raidpriest_c_01_bef.m2", + value = "helm_robe_raidpriest_c_01_bef.m2", + }, + { + fileId = "142179", + text = "helm_robe_raidpriest_c_01_bem.m2", + value = "helm_robe_raidpriest_c_01_bem.m2", + }, + { + fileId = "142180", + text = "helm_robe_raidpriest_c_01_drf.m2", + value = "helm_robe_raidpriest_c_01_drf.m2", + }, + { + fileId = "142181", + text = "helm_robe_raidpriest_c_01_drm.m2", + value = "helm_robe_raidpriest_c_01_drm.m2", + }, + { + fileId = "142182", + text = "helm_robe_raidpriest_c_01_dwf.m2", + value = "helm_robe_raidpriest_c_01_dwf.m2", + }, + { + fileId = "142183", + text = "helm_robe_raidpriest_c_01_dwm.m2", + value = "helm_robe_raidpriest_c_01_dwm.m2", + }, + { + fileId = "142184", + text = "helm_robe_raidpriest_c_01_gnf.m2", + value = "helm_robe_raidpriest_c_01_gnf.m2", + }, + { + fileId = "142185", + text = "helm_robe_raidpriest_c_01_gnm.m2", + value = "helm_robe_raidpriest_c_01_gnm.m2", + }, + { + fileId = "142186", + text = "helm_robe_raidpriest_c_01_gof.m2", + value = "helm_robe_raidpriest_c_01_gof.m2", + }, + { + fileId = "142187", + text = "helm_robe_raidpriest_c_01_gom.m2", + value = "helm_robe_raidpriest_c_01_gom.m2", + }, + { + fileId = "142188", + text = "helm_robe_raidpriest_c_01_huf.m2", + value = "helm_robe_raidpriest_c_01_huf.m2", + }, + { + fileId = "142189", + text = "helm_robe_raidpriest_c_01_hum.m2", + value = "helm_robe_raidpriest_c_01_hum.m2", + }, + { + fileId = "142190", + text = "helm_robe_raidpriest_c_01_nif.m2", + value = "helm_robe_raidpriest_c_01_nif.m2", + }, + { + fileId = "142191", + text = "helm_robe_raidpriest_c_01_nim.m2", + value = "helm_robe_raidpriest_c_01_nim.m2", + }, + { + fileId = "142192", + text = "helm_robe_raidpriest_c_01_orf.m2", + value = "helm_robe_raidpriest_c_01_orf.m2", + }, + { + fileId = "142193", + text = "helm_robe_raidpriest_c_01_orm.m2", + value = "helm_robe_raidpriest_c_01_orm.m2", + }, + { + fileId = "142194", + text = "helm_robe_raidpriest_c_01_scf.m2", + value = "helm_robe_raidpriest_c_01_scf.m2", + }, + { + fileId = "142195", + text = "helm_robe_raidpriest_c_01_scm.m2", + value = "helm_robe_raidpriest_c_01_scm.m2", + }, + { + fileId = "142196", + text = "helm_robe_raidpriest_c_01_taf.m2", + value = "helm_robe_raidpriest_c_01_taf.m2", + }, + { + fileId = "142197", + text = "helm_robe_raidpriest_c_01_tam.m2", + value = "helm_robe_raidpriest_c_01_tam.m2", + }, + { + fileId = "142198", + text = "helm_robe_raidpriest_c_01_trf.m2", + value = "helm_robe_raidpriest_c_01_trf.m2", + }, + { + fileId = "142199", + text = "helm_robe_raidpriest_c_01_trm.m2", + value = "helm_robe_raidpriest_c_01_trm.m2", + }, + { + fileId = "142201", + text = "helm_robe_raidpriest_d_01_bef.m2", + value = "helm_robe_raidpriest_d_01_bef.m2", + }, + { + fileId = "142202", + text = "helm_robe_raidpriest_d_01_bem.m2", + value = "helm_robe_raidpriest_d_01_bem.m2", + }, + { + fileId = "142203", + text = "helm_robe_raidpriest_d_01_drf.m2", + value = "helm_robe_raidpriest_d_01_drf.m2", + }, + { + fileId = "142204", + text = "helm_robe_raidpriest_d_01_drm.m2", + value = "helm_robe_raidpriest_d_01_drm.m2", + }, + { + fileId = "142205", + text = "helm_robe_raidpriest_d_01_dwf.m2", + value = "helm_robe_raidpriest_d_01_dwf.m2", + }, + { + fileId = "142206", + text = "helm_robe_raidpriest_d_01_dwm.m2", + value = "helm_robe_raidpriest_d_01_dwm.m2", + }, + { + fileId = "142207", + text = "helm_robe_raidpriest_d_01_gnf.m2", + value = "helm_robe_raidpriest_d_01_gnf.m2", + }, + { + fileId = "142208", + text = "helm_robe_raidpriest_d_01_gnm.m2", + value = "helm_robe_raidpriest_d_01_gnm.m2", + }, + { + fileId = "142209", + text = "helm_robe_raidpriest_d_01_gof.m2", + value = "helm_robe_raidpriest_d_01_gof.m2", + }, + { + fileId = "142210", + text = "helm_robe_raidpriest_d_01_gom.m2", + value = "helm_robe_raidpriest_d_01_gom.m2", + }, + { + fileId = "142211", + text = "helm_robe_raidpriest_d_01_huf.m2", + value = "helm_robe_raidpriest_d_01_huf.m2", + }, + { + fileId = "142212", + text = "helm_robe_raidpriest_d_01_hum.m2", + value = "helm_robe_raidpriest_d_01_hum.m2", + }, + { + fileId = "142213", + text = "helm_robe_raidpriest_d_01_nif.m2", + value = "helm_robe_raidpriest_d_01_nif.m2", + }, + { + fileId = "142214", + text = "helm_robe_raidpriest_d_01_nim.m2", + value = "helm_robe_raidpriest_d_01_nim.m2", + }, + { + fileId = "142215", + text = "helm_robe_raidpriest_d_01_orf.m2", + value = "helm_robe_raidpriest_d_01_orf.m2", + }, + { + fileId = "142216", + text = "helm_robe_raidpriest_d_01_orm.m2", + value = "helm_robe_raidpriest_d_01_orm.m2", + }, + { + fileId = "142217", + text = "helm_robe_raidpriest_d_01_scf.m2", + value = "helm_robe_raidpriest_d_01_scf.m2", + }, + { + fileId = "142218", + text = "helm_robe_raidpriest_d_01_scm.m2", + value = "helm_robe_raidpriest_d_01_scm.m2", + }, + { + fileId = "142219", + text = "helm_robe_raidpriest_d_01_taf.m2", + value = "helm_robe_raidpriest_d_01_taf.m2", + }, + { + fileId = "142220", + text = "helm_robe_raidpriest_d_01_tam.m2", + value = "helm_robe_raidpriest_d_01_tam.m2", + }, + { + fileId = "142221", + text = "helm_robe_raidpriest_d_01_trf.m2", + value = "helm_robe_raidpriest_d_01_trf.m2", + }, + { + fileId = "142222", + text = "helm_robe_raidpriest_d_01_trm.m2", + value = "helm_robe_raidpriest_d_01_trm.m2", + }, + { + fileId = "142224", + text = "helm_robe_raidpriest_e_01_bef.m2", + value = "helm_robe_raidpriest_e_01_bef.m2", + }, + { + fileId = "142225", + text = "helm_robe_raidpriest_e_01_bem.m2", + value = "helm_robe_raidpriest_e_01_bem.m2", + }, + { + fileId = "142226", + text = "helm_robe_raidpriest_e_01_drf.m2", + value = "helm_robe_raidpriest_e_01_drf.m2", + }, + { + fileId = "142227", + text = "helm_robe_raidpriest_e_01_drm.m2", + value = "helm_robe_raidpriest_e_01_drm.m2", + }, + { + fileId = "142228", + text = "helm_robe_raidpriest_e_01_dwf.m2", + value = "helm_robe_raidpriest_e_01_dwf.m2", + }, + { + fileId = "142229", + text = "helm_robe_raidpriest_e_01_dwm.m2", + value = "helm_robe_raidpriest_e_01_dwm.m2", + }, + { + fileId = "142230", + text = "helm_robe_raidpriest_e_01_gnf.m2", + value = "helm_robe_raidpriest_e_01_gnf.m2", + }, + { + fileId = "142231", + text = "helm_robe_raidpriest_e_01_gnm.m2", + value = "helm_robe_raidpriest_e_01_gnm.m2", + }, + { + fileId = "142232", + text = "helm_robe_raidpriest_e_01_huf.m2", + value = "helm_robe_raidpriest_e_01_huf.m2", + }, + { + fileId = "142233", + text = "helm_robe_raidpriest_e_01_hum.m2", + value = "helm_robe_raidpriest_e_01_hum.m2", + }, + { + fileId = "142234", + text = "helm_robe_raidpriest_e_01_nif.m2", + value = "helm_robe_raidpriest_e_01_nif.m2", + }, + { + fileId = "142235", + text = "helm_robe_raidpriest_e_01_nim.m2", + value = "helm_robe_raidpriest_e_01_nim.m2", + }, + { + fileId = "142236", + text = "helm_robe_raidpriest_e_01_orf.m2", + value = "helm_robe_raidpriest_e_01_orf.m2", + }, + { + fileId = "142237", + text = "helm_robe_raidpriest_e_01_orm.m2", + value = "helm_robe_raidpriest_e_01_orm.m2", + }, + { + fileId = "142238", + text = "helm_robe_raidpriest_e_01_scf.m2", + value = "helm_robe_raidpriest_e_01_scf.m2", + }, + { + fileId = "142239", + text = "helm_robe_raidpriest_e_01_scm.m2", + value = "helm_robe_raidpriest_e_01_scm.m2", + }, + { + fileId = "142240", + text = "helm_robe_raidpriest_e_01_taf.m2", + value = "helm_robe_raidpriest_e_01_taf.m2", + }, + { + fileId = "142241", + text = "helm_robe_raidpriest_e_01_tam.m2", + value = "helm_robe_raidpriest_e_01_tam.m2", + }, + { + fileId = "142242", + text = "helm_robe_raidpriest_e_01_trf.m2", + value = "helm_robe_raidpriest_e_01_trf.m2", + }, + { + fileId = "142243", + text = "helm_robe_raidpriest_e_01_trm.m2", + value = "helm_robe_raidpriest_e_01_trm.m2", + }, + { + fileId = "142246", + text = "helm_robe_raidpriest_f_01_bef.m2", + value = "helm_robe_raidpriest_f_01_bef.m2", + }, + { + fileId = "142247", + text = "helm_robe_raidpriest_f_01_bem.m2", + value = "helm_robe_raidpriest_f_01_bem.m2", + }, + { + fileId = "142248", + text = "helm_robe_raidpriest_f_01_drf.m2", + value = "helm_robe_raidpriest_f_01_drf.m2", + }, + { + fileId = "142249", + text = "helm_robe_raidpriest_f_01_drm.m2", + value = "helm_robe_raidpriest_f_01_drm.m2", + }, + { + fileId = "142250", + text = "helm_robe_raidpriest_f_01_dwf.m2", + value = "helm_robe_raidpriest_f_01_dwf.m2", + }, + { + fileId = "142251", + text = "helm_robe_raidpriest_f_01_dwm.m2", + value = "helm_robe_raidpriest_f_01_dwm.m2", + }, + { + fileId = "142252", + text = "helm_robe_raidpriest_f_01_gnf.m2", + value = "helm_robe_raidpriest_f_01_gnf.m2", + }, + { + fileId = "142253", + text = "helm_robe_raidpriest_f_01_gnm.m2", + value = "helm_robe_raidpriest_f_01_gnm.m2", + }, + { + fileId = "142254", + text = "helm_robe_raidpriest_f_01_gom.m2", + value = "helm_robe_raidpriest_f_01_gom.m2", + }, + { + fileId = "142255", + text = "helm_robe_raidpriest_f_01_huf.m2", + value = "helm_robe_raidpriest_f_01_huf.m2", + }, + { + fileId = "142256", + text = "helm_robe_raidpriest_f_01_hum.m2", + value = "helm_robe_raidpriest_f_01_hum.m2", + }, + { + fileId = "142257", + text = "helm_robe_raidpriest_f_01_nif.m2", + value = "helm_robe_raidpriest_f_01_nif.m2", + }, + { + fileId = "142258", + text = "helm_robe_raidpriest_f_01_nim.m2", + value = "helm_robe_raidpriest_f_01_nim.m2", + }, + { + fileId = "142259", + text = "helm_robe_raidpriest_f_01_orf.m2", + value = "helm_robe_raidpriest_f_01_orf.m2", + }, + { + fileId = "142260", + text = "helm_robe_raidpriest_f_01_orm.m2", + value = "helm_robe_raidpriest_f_01_orm.m2", + }, + { + fileId = "142261", + text = "helm_robe_raidpriest_f_01_scf.m2", + value = "helm_robe_raidpriest_f_01_scf.m2", + }, + { + fileId = "142262", + text = "helm_robe_raidpriest_f_01_scm.m2", + value = "helm_robe_raidpriest_f_01_scm.m2", + }, + { + fileId = "142263", + text = "helm_robe_raidpriest_f_01_taf.m2", + value = "helm_robe_raidpriest_f_01_taf.m2", + }, + { + fileId = "142264", + text = "helm_robe_raidpriest_f_01_tam.m2", + value = "helm_robe_raidpriest_f_01_tam.m2", + }, + { + fileId = "142265", + text = "helm_robe_raidpriest_f_01_trf.m2", + value = "helm_robe_raidpriest_f_01_trf.m2", + }, + { + fileId = "142266", + text = "helm_robe_raidpriest_f_01_trm.m2", + value = "helm_robe_raidpriest_f_01_trm.m2", + }, + { + fileId = "142274", + text = "helm_robe_raidpriest_g_01_bef.m2", + value = "helm_robe_raidpriest_g_01_bef.m2", + }, + { + fileId = "142275", + text = "helm_robe_raidpriest_g_01_bem.m2", + value = "helm_robe_raidpriest_g_01_bem.m2", + }, + { + fileId = "142276", + text = "helm_robe_raidpriest_g_01_drf.m2", + value = "helm_robe_raidpriest_g_01_drf.m2", + }, + { + fileId = "142277", + text = "helm_robe_raidpriest_g_01_drm.m2", + value = "helm_robe_raidpriest_g_01_drm.m2", + }, + { + fileId = "142278", + text = "helm_robe_raidpriest_g_01_dwf.m2", + value = "helm_robe_raidpriest_g_01_dwf.m2", + }, + { + fileId = "142279", + text = "helm_robe_raidpriest_g_01_dwm.m2", + value = "helm_robe_raidpriest_g_01_dwm.m2", + }, + { + fileId = "142280", + text = "helm_robe_raidpriest_g_01_gnf.m2", + value = "helm_robe_raidpriest_g_01_gnf.m2", + }, + { + fileId = "142281", + text = "helm_robe_raidpriest_g_01_gnm.m2", + value = "helm_robe_raidpriest_g_01_gnm.m2", + }, + { + fileId = "142282", + text = "helm_robe_raidpriest_g_01_gof.m2", + value = "helm_robe_raidpriest_g_01_gof.m2", + }, + { + fileId = "142283", + text = "helm_robe_raidpriest_g_01_gom.m2", + value = "helm_robe_raidpriest_g_01_gom.m2", + }, + { + fileId = "142284", + text = "helm_robe_raidpriest_g_01_huf.m2", + value = "helm_robe_raidpriest_g_01_huf.m2", + }, + { + fileId = "142285", + text = "helm_robe_raidpriest_g_01_hum.m2", + value = "helm_robe_raidpriest_g_01_hum.m2", + }, + { + fileId = "142286", + text = "helm_robe_raidpriest_g_01_nif.m2", + value = "helm_robe_raidpriest_g_01_nif.m2", + }, + { + fileId = "142287", + text = "helm_robe_raidpriest_g_01_nim.m2", + value = "helm_robe_raidpriest_g_01_nim.m2", + }, + { + fileId = "142288", + text = "helm_robe_raidpriest_g_01_orf.m2", + value = "helm_robe_raidpriest_g_01_orf.m2", + }, + { + fileId = "142289", + text = "helm_robe_raidpriest_g_01_orm.m2", + value = "helm_robe_raidpriest_g_01_orm.m2", + }, + { + fileId = "142290", + text = "helm_robe_raidpriest_g_01_scf.m2", + value = "helm_robe_raidpriest_g_01_scf.m2", + }, + { + fileId = "142291", + text = "helm_robe_raidpriest_g_01_scm.m2", + value = "helm_robe_raidpriest_g_01_scm.m2", + }, + { + fileId = "142292", + text = "helm_robe_raidpriest_g_01_taf.m2", + value = "helm_robe_raidpriest_g_01_taf.m2", + }, + { + fileId = "142293", + text = "helm_robe_raidpriest_g_01_tam.m2", + value = "helm_robe_raidpriest_g_01_tam.m2", + }, + { + fileId = "142294", + text = "helm_robe_raidpriest_g_01_trf.m2", + value = "helm_robe_raidpriest_g_01_trf.m2", + }, + { + fileId = "142295", + text = "helm_robe_raidpriest_g_01_trm.m2", + value = "helm_robe_raidpriest_g_01_trm.m2", + }, + { + fileId = "341777", + text = "helm_robe_raidpriest_h_01_bef.m2", + value = "helm_robe_raidpriest_h_01_bef.m2", + }, + { + fileId = "341778", + text = "helm_robe_raidpriest_h_01_bem.m2", + value = "helm_robe_raidpriest_h_01_bem.m2", + }, + { + fileId = "341779", + text = "helm_robe_raidpriest_h_01_drf.m2", + value = "helm_robe_raidpriest_h_01_drf.m2", + }, + { + fileId = "341780", + text = "helm_robe_raidpriest_h_01_drm.m2", + value = "helm_robe_raidpriest_h_01_drm.m2", + }, + { + fileId = "341781", + text = "helm_robe_raidpriest_h_01_dwf.m2", + value = "helm_robe_raidpriest_h_01_dwf.m2", + }, + { + fileId = "341782", + text = "helm_robe_raidpriest_h_01_dwm.m2", + value = "helm_robe_raidpriest_h_01_dwm.m2", + }, + { + fileId = "341783", + text = "helm_robe_raidpriest_h_01_gnf.m2", + value = "helm_robe_raidpriest_h_01_gnf.m2", + }, + { + fileId = "341784", + text = "helm_robe_raidpriest_h_01_gnm.m2", + value = "helm_robe_raidpriest_h_01_gnm.m2", + }, + { + fileId = "341785", + text = "helm_robe_raidpriest_h_01_gof.m2", + value = "helm_robe_raidpriest_h_01_gof.m2", + }, + { + fileId = "341786", + text = "helm_robe_raidpriest_h_01_gom.m2", + value = "helm_robe_raidpriest_h_01_gom.m2", + }, + { + fileId = "341787", + text = "helm_robe_raidpriest_h_01_huf.m2", + value = "helm_robe_raidpriest_h_01_huf.m2", + }, + { + fileId = "341788", + text = "helm_robe_raidpriest_h_01_hum.m2", + value = "helm_robe_raidpriest_h_01_hum.m2", + }, + { + fileId = "341789", + text = "helm_robe_raidpriest_h_01_nif.m2", + value = "helm_robe_raidpriest_h_01_nif.m2", + }, + { + fileId = "341790", + text = "helm_robe_raidpriest_h_01_nim.m2", + value = "helm_robe_raidpriest_h_01_nim.m2", + }, + { + fileId = "341791", + text = "helm_robe_raidpriest_h_01_orf.m2", + value = "helm_robe_raidpriest_h_01_orf.m2", + }, + { + fileId = "341792", + text = "helm_robe_raidpriest_h_01_orm.m2", + value = "helm_robe_raidpriest_h_01_orm.m2", + }, + { + fileId = "341793", + text = "helm_robe_raidpriest_h_01_scf.m2", + value = "helm_robe_raidpriest_h_01_scf.m2", + }, + { + fileId = "341794", + text = "helm_robe_raidpriest_h_01_scm.m2", + value = "helm_robe_raidpriest_h_01_scm.m2", + }, + { + fileId = "341795", + text = "helm_robe_raidpriest_h_01_taf.m2", + value = "helm_robe_raidpriest_h_01_taf.m2", + }, + { + fileId = "341796", + text = "helm_robe_raidpriest_h_01_tam.m2", + value = "helm_robe_raidpriest_h_01_tam.m2", + }, + { + fileId = "341797", + text = "helm_robe_raidpriest_h_01_trf.m2", + value = "helm_robe_raidpriest_h_01_trf.m2", + }, + { + fileId = "341798", + text = "helm_robe_raidpriest_h_01_trm.m2", + value = "helm_robe_raidpriest_h_01_trm.m2", + }, + { + fileId = "142300", + text = "helm_robe_raidshaman_c_01_bef.m2", + value = "helm_robe_raidshaman_c_01_bef.m2", + }, + { + fileId = "142301", + text = "helm_robe_raidshaman_c_01_bem.m2", + value = "helm_robe_raidshaman_c_01_bem.m2", + }, + { + fileId = "142302", + text = "helm_robe_raidshaman_c_01_drf.m2", + value = "helm_robe_raidshaman_c_01_drf.m2", + }, + { + fileId = "142303", + text = "helm_robe_raidshaman_c_01_drm.m2", + value = "helm_robe_raidshaman_c_01_drm.m2", + }, + { + fileId = "142304", + text = "helm_robe_raidshaman_c_01_dwf.m2", + value = "helm_robe_raidshaman_c_01_dwf.m2", + }, + { + fileId = "142305", + text = "helm_robe_raidshaman_c_01_dwm.m2", + value = "helm_robe_raidshaman_c_01_dwm.m2", + }, + { + fileId = "142306", + text = "helm_robe_raidshaman_c_01_gnf.m2", + value = "helm_robe_raidshaman_c_01_gnf.m2", + }, + { + fileId = "142307", + text = "helm_robe_raidshaman_c_01_gnm.m2", + value = "helm_robe_raidshaman_c_01_gnm.m2", + }, + { + fileId = "142308", + text = "helm_robe_raidshaman_c_01_gof.m2", + value = "helm_robe_raidshaman_c_01_gof.m2", + }, + { + fileId = "142309", + text = "helm_robe_raidshaman_c_01_gom.m2", + value = "helm_robe_raidshaman_c_01_gom.m2", + }, + { + fileId = "142310", + text = "helm_robe_raidshaman_c_01_huf.m2", + value = "helm_robe_raidshaman_c_01_huf.m2", + }, + { + fileId = "142311", + text = "helm_robe_raidshaman_c_01_hum.m2", + value = "helm_robe_raidshaman_c_01_hum.m2", + }, + { + fileId = "142312", + text = "helm_robe_raidshaman_c_01_nif.m2", + value = "helm_robe_raidshaman_c_01_nif.m2", + }, + { + fileId = "142313", + text = "helm_robe_raidshaman_c_01_nim.m2", + value = "helm_robe_raidshaman_c_01_nim.m2", + }, + { + fileId = "142314", + text = "helm_robe_raidshaman_c_01_orf.m2", + value = "helm_robe_raidshaman_c_01_orf.m2", + }, + { + fileId = "142315", + text = "helm_robe_raidshaman_c_01_orm.m2", + value = "helm_robe_raidshaman_c_01_orm.m2", + }, + { + fileId = "142316", + text = "helm_robe_raidshaman_c_01_scf.m2", + value = "helm_robe_raidshaman_c_01_scf.m2", + }, + { + fileId = "142317", + text = "helm_robe_raidshaman_c_01_scm.m2", + value = "helm_robe_raidshaman_c_01_scm.m2", + }, + { + fileId = "142318", + text = "helm_robe_raidshaman_c_01_taf.m2", + value = "helm_robe_raidshaman_c_01_taf.m2", + }, + { + fileId = "142319", + text = "helm_robe_raidshaman_c_01_tam.m2", + value = "helm_robe_raidshaman_c_01_tam.m2", + }, + { + fileId = "142320", + text = "helm_robe_raidshaman_c_01_trf.m2", + value = "helm_robe_raidshaman_c_01_trf.m2", + }, + { + fileId = "142321", + text = "helm_robe_raidshaman_c_01_trm.m2", + value = "helm_robe_raidshaman_c_01_trm.m2", + }, + { + fileId = "142322", + text = "helm_robe_raidwarlock_a_01_bef.m2", + value = "helm_robe_raidwarlock_a_01_bef.m2", + }, + { + fileId = "142323", + text = "helm_robe_raidwarlock_a_01_bem.m2", + value = "helm_robe_raidwarlock_a_01_bem.m2", + }, + { + fileId = "142324", + text = "helm_robe_raidwarlock_a_01_drf.m2", + value = "helm_robe_raidwarlock_a_01_drf.m2", + }, + { + fileId = "142325", + text = "helm_robe_raidwarlock_a_01_drm.m2", + value = "helm_robe_raidwarlock_a_01_drm.m2", + }, + { + fileId = "142326", + text = "helm_robe_raidwarlock_a_01_dwf.m2", + value = "helm_robe_raidwarlock_a_01_dwf.m2", + }, + { + fileId = "142327", + text = "helm_robe_raidwarlock_a_01_dwm.m2", + value = "helm_robe_raidwarlock_a_01_dwm.m2", + }, + { + fileId = "142328", + text = "helm_robe_raidwarlock_a_01_gnf.m2", + value = "helm_robe_raidwarlock_a_01_gnf.m2", + }, + { + fileId = "142329", + text = "helm_robe_raidwarlock_a_01_gnm.m2", + value = "helm_robe_raidwarlock_a_01_gnm.m2", + }, + { + fileId = "142330", + text = "helm_robe_raidwarlock_a_01_gof.m2", + value = "helm_robe_raidwarlock_a_01_gof.m2", + }, + { + fileId = "142331", + text = "helm_robe_raidwarlock_a_01_gom.m2", + value = "helm_robe_raidwarlock_a_01_gom.m2", + }, + { + fileId = "142332", + text = "helm_robe_raidwarlock_a_01_huf.m2", + value = "helm_robe_raidwarlock_a_01_huf.m2", + }, + { + fileId = "142333", + text = "helm_robe_raidwarlock_a_01_hum.m2", + value = "helm_robe_raidwarlock_a_01_hum.m2", + }, + { + fileId = "142334", + text = "helm_robe_raidwarlock_a_01_nif.m2", + value = "helm_robe_raidwarlock_a_01_nif.m2", + }, + { + fileId = "142335", + text = "helm_robe_raidwarlock_a_01_nim.m2", + value = "helm_robe_raidwarlock_a_01_nim.m2", + }, + { + fileId = "142336", + text = "helm_robe_raidwarlock_a_01_orf.m2", + value = "helm_robe_raidwarlock_a_01_orf.m2", + }, + { + fileId = "142337", + text = "helm_robe_raidwarlock_a_01_orm.m2", + value = "helm_robe_raidwarlock_a_01_orm.m2", + }, + { + fileId = "142338", + text = "helm_robe_raidwarlock_a_01_scf.m2", + value = "helm_robe_raidwarlock_a_01_scf.m2", + }, + { + fileId = "142339", + text = "helm_robe_raidwarlock_a_01_scm.m2", + value = "helm_robe_raidwarlock_a_01_scm.m2", + }, + { + fileId = "142340", + text = "helm_robe_raidwarlock_a_01_taf.m2", + value = "helm_robe_raidwarlock_a_01_taf.m2", + }, + { + fileId = "142341", + text = "helm_robe_raidwarlock_a_01_tam.m2", + value = "helm_robe_raidwarlock_a_01_tam.m2", + }, + { + fileId = "142342", + text = "helm_robe_raidwarlock_a_01_trf.m2", + value = "helm_robe_raidwarlock_a_01_trf.m2", + }, + { + fileId = "142343", + text = "helm_robe_raidwarlock_a_01_trm.m2", + value = "helm_robe_raidwarlock_a_01_trm.m2", + }, + { + fileId = "142349", + text = "helm_robe_raidwarlock_b_01_bef.m2", + value = "helm_robe_raidwarlock_b_01_bef.m2", + }, + { + fileId = "142350", + text = "helm_robe_raidwarlock_b_01_bem.m2", + value = "helm_robe_raidwarlock_b_01_bem.m2", + }, + { + fileId = "142351", + text = "helm_robe_raidwarlock_b_01_drf.m2", + value = "helm_robe_raidwarlock_b_01_drf.m2", + }, + { + fileId = "142352", + text = "helm_robe_raidwarlock_b_01_drm.m2", + value = "helm_robe_raidwarlock_b_01_drm.m2", + }, + { + fileId = "142353", + text = "helm_robe_raidwarlock_b_01_dwf.m2", + value = "helm_robe_raidwarlock_b_01_dwf.m2", + }, + { + fileId = "142354", + text = "helm_robe_raidwarlock_b_01_dwm.m2", + value = "helm_robe_raidwarlock_b_01_dwm.m2", + }, + { + fileId = "142355", + text = "helm_robe_raidwarlock_b_01_gnf.m2", + value = "helm_robe_raidwarlock_b_01_gnf.m2", + }, + { + fileId = "142356", + text = "helm_robe_raidwarlock_b_01_gnm.m2", + value = "helm_robe_raidwarlock_b_01_gnm.m2", + }, + { + fileId = "142357", + text = "helm_robe_raidwarlock_b_01_gof.m2", + value = "helm_robe_raidwarlock_b_01_gof.m2", + }, + { + fileId = "142358", + text = "helm_robe_raidwarlock_b_01_gom.m2", + value = "helm_robe_raidwarlock_b_01_gom.m2", + }, + { + fileId = "142359", + text = "helm_robe_raidwarlock_b_01_huf.m2", + value = "helm_robe_raidwarlock_b_01_huf.m2", + }, + { + fileId = "142360", + text = "helm_robe_raidwarlock_b_01_hum.m2", + value = "helm_robe_raidwarlock_b_01_hum.m2", + }, + { + fileId = "142361", + text = "helm_robe_raidwarlock_b_01_nif.m2", + value = "helm_robe_raidwarlock_b_01_nif.m2", + }, + { + fileId = "142362", + text = "helm_robe_raidwarlock_b_01_nim.m2", + value = "helm_robe_raidwarlock_b_01_nim.m2", + }, + { + fileId = "142363", + text = "helm_robe_raidwarlock_b_01_orf.m2", + value = "helm_robe_raidwarlock_b_01_orf.m2", + }, + { + fileId = "142364", + text = "helm_robe_raidwarlock_b_01_orm.m2", + value = "helm_robe_raidwarlock_b_01_orm.m2", + }, + { + fileId = "142365", + text = "helm_robe_raidwarlock_b_01_scf.m2", + value = "helm_robe_raidwarlock_b_01_scf.m2", + }, + { + fileId = "142366", + text = "helm_robe_raidwarlock_b_01_scm.m2", + value = "helm_robe_raidwarlock_b_01_scm.m2", + }, + { + fileId = "142367", + text = "helm_robe_raidwarlock_b_01_taf.m2", + value = "helm_robe_raidwarlock_b_01_taf.m2", + }, + { + fileId = "142368", + text = "helm_robe_raidwarlock_b_01_tam.m2", + value = "helm_robe_raidwarlock_b_01_tam.m2", + }, + { + fileId = "142369", + text = "helm_robe_raidwarlock_b_01_trf.m2", + value = "helm_robe_raidwarlock_b_01_trf.m2", + }, + { + fileId = "142370", + text = "helm_robe_raidwarlock_b_01_trm.m2", + value = "helm_robe_raidwarlock_b_01_trm.m2", + }, + { + fileId = "142375", + text = "helm_robe_raidwarlock_c_01_bef.m2", + value = "helm_robe_raidwarlock_c_01_bef.m2", + }, + { + fileId = "142376", + text = "helm_robe_raidwarlock_c_01_bem.m2", + value = "helm_robe_raidwarlock_c_01_bem.m2", + }, + { + fileId = "142377", + text = "helm_robe_raidwarlock_c_01_drf.m2", + value = "helm_robe_raidwarlock_c_01_drf.m2", + }, + { + fileId = "142378", + text = "helm_robe_raidwarlock_c_01_drm.m2", + value = "helm_robe_raidwarlock_c_01_drm.m2", + }, + { + fileId = "142379", + text = "helm_robe_raidwarlock_c_01_dwf.m2", + value = "helm_robe_raidwarlock_c_01_dwf.m2", + }, + { + fileId = "142380", + text = "helm_robe_raidwarlock_c_01_dwm.m2", + value = "helm_robe_raidwarlock_c_01_dwm.m2", + }, + { + fileId = "142381", + text = "helm_robe_raidwarlock_c_01_gnf.m2", + value = "helm_robe_raidwarlock_c_01_gnf.m2", + }, + { + fileId = "142382", + text = "helm_robe_raidwarlock_c_01_gnm.m2", + value = "helm_robe_raidwarlock_c_01_gnm.m2", + }, + { + fileId = "142383", + text = "helm_robe_raidwarlock_c_01_gof.m2", + value = "helm_robe_raidwarlock_c_01_gof.m2", + }, + { + fileId = "142384", + text = "helm_robe_raidwarlock_c_01_gom.m2", + value = "helm_robe_raidwarlock_c_01_gom.m2", + }, + { + fileId = "142385", + text = "helm_robe_raidwarlock_c_01_huf.m2", + value = "helm_robe_raidwarlock_c_01_huf.m2", + }, + { + fileId = "142386", + text = "helm_robe_raidwarlock_c_01_hum.m2", + value = "helm_robe_raidwarlock_c_01_hum.m2", + }, + { + fileId = "142387", + text = "helm_robe_raidwarlock_c_01_nif.m2", + value = "helm_robe_raidwarlock_c_01_nif.m2", + }, + { + fileId = "142388", + text = "helm_robe_raidwarlock_c_01_nim.m2", + value = "helm_robe_raidwarlock_c_01_nim.m2", + }, + { + fileId = "142389", + text = "helm_robe_raidwarlock_c_01_orf.m2", + value = "helm_robe_raidwarlock_c_01_orf.m2", + }, + { + fileId = "142390", + text = "helm_robe_raidwarlock_c_01_orm.m2", + value = "helm_robe_raidwarlock_c_01_orm.m2", + }, + { + fileId = "142391", + text = "helm_robe_raidwarlock_c_01_scf.m2", + value = "helm_robe_raidwarlock_c_01_scf.m2", + }, + { + fileId = "142392", + text = "helm_robe_raidwarlock_c_01_scm.m2", + value = "helm_robe_raidwarlock_c_01_scm.m2", + }, + { + fileId = "142393", + text = "helm_robe_raidwarlock_c_01_taf.m2", + value = "helm_robe_raidwarlock_c_01_taf.m2", + }, + { + fileId = "142394", + text = "helm_robe_raidwarlock_c_01_tam.m2", + value = "helm_robe_raidwarlock_c_01_tam.m2", + }, + { + fileId = "142395", + text = "helm_robe_raidwarlock_c_01_trf.m2", + value = "helm_robe_raidwarlock_c_01_trf.m2", + }, + { + fileId = "142396", + text = "helm_robe_raidwarlock_c_01_trm.m2", + value = "helm_robe_raidwarlock_c_01_trm.m2", + }, + { + fileId = "142398", + text = "helm_robe_raidwarlock_d_01_bef.m2", + value = "helm_robe_raidwarlock_d_01_bef.m2", + }, + { + fileId = "142399", + text = "helm_robe_raidwarlock_d_01_bem.m2", + value = "helm_robe_raidwarlock_d_01_bem.m2", + }, + { + fileId = "142400", + text = "helm_robe_raidwarlock_d_01_drf.m2", + value = "helm_robe_raidwarlock_d_01_drf.m2", + }, + { + fileId = "142401", + text = "helm_robe_raidwarlock_d_01_drm.m2", + value = "helm_robe_raidwarlock_d_01_drm.m2", + }, + { + fileId = "142402", + text = "helm_robe_raidwarlock_d_01_dwf.m2", + value = "helm_robe_raidwarlock_d_01_dwf.m2", + }, + { + fileId = "142403", + text = "helm_robe_raidwarlock_d_01_dwm.m2", + value = "helm_robe_raidwarlock_d_01_dwm.m2", + }, + { + fileId = "142404", + text = "helm_robe_raidwarlock_d_01_gnf.m2", + value = "helm_robe_raidwarlock_d_01_gnf.m2", + }, + { + fileId = "142405", + text = "helm_robe_raidwarlock_d_01_gnm.m2", + value = "helm_robe_raidwarlock_d_01_gnm.m2", + }, + { + fileId = "142406", + text = "helm_robe_raidwarlock_d_01_gof.m2", + value = "helm_robe_raidwarlock_d_01_gof.m2", + }, + { + fileId = "142407", + text = "helm_robe_raidwarlock_d_01_gom.m2", + value = "helm_robe_raidwarlock_d_01_gom.m2", + }, + { + fileId = "142408", + text = "helm_robe_raidwarlock_d_01_huf.m2", + value = "helm_robe_raidwarlock_d_01_huf.m2", + }, + { + fileId = "142409", + text = "helm_robe_raidwarlock_d_01_hum.m2", + value = "helm_robe_raidwarlock_d_01_hum.m2", + }, + { + fileId = "142410", + text = "helm_robe_raidwarlock_d_01_nif.m2", + value = "helm_robe_raidwarlock_d_01_nif.m2", + }, + { + fileId = "142411", + text = "helm_robe_raidwarlock_d_01_nim.m2", + value = "helm_robe_raidwarlock_d_01_nim.m2", + }, + { + fileId = "142412", + text = "helm_robe_raidwarlock_d_01_orf.m2", + value = "helm_robe_raidwarlock_d_01_orf.m2", + }, + { + fileId = "142413", + text = "helm_robe_raidwarlock_d_01_orm.m2", + value = "helm_robe_raidwarlock_d_01_orm.m2", + }, + { + fileId = "142414", + text = "helm_robe_raidwarlock_d_01_scf.m2", + value = "helm_robe_raidwarlock_d_01_scf.m2", + }, + { + fileId = "142415", + text = "helm_robe_raidwarlock_d_01_scm.m2", + value = "helm_robe_raidwarlock_d_01_scm.m2", + }, + { + fileId = "142416", + text = "helm_robe_raidwarlock_d_01_taf.m2", + value = "helm_robe_raidwarlock_d_01_taf.m2", + }, + { + fileId = "142417", + text = "helm_robe_raidwarlock_d_01_tam.m2", + value = "helm_robe_raidwarlock_d_01_tam.m2", + }, + { + fileId = "142418", + text = "helm_robe_raidwarlock_d_01_trf.m2", + value = "helm_robe_raidwarlock_d_01_trf.m2", + }, + { + fileId = "142419", + text = "helm_robe_raidwarlock_d_01_trm.m2", + value = "helm_robe_raidwarlock_d_01_trm.m2", + }, + { + fileId = "142422", + text = "helm_robe_raidwarlock_e_01_bef.m2", + value = "helm_robe_raidwarlock_e_01_bef.m2", + }, + { + fileId = "142423", + text = "helm_robe_raidwarlock_e_01_bem.m2", + value = "helm_robe_raidwarlock_e_01_bem.m2", + }, + { + fileId = "142424", + text = "helm_robe_raidwarlock_e_01_drf.m2", + value = "helm_robe_raidwarlock_e_01_drf.m2", + }, + { + fileId = "142425", + text = "helm_robe_raidwarlock_e_01_drm.m2", + value = "helm_robe_raidwarlock_e_01_drm.m2", + }, + { + fileId = "142426", + text = "helm_robe_raidwarlock_e_01_dwf.m2", + value = "helm_robe_raidwarlock_e_01_dwf.m2", + }, + { + fileId = "142427", + text = "helm_robe_raidwarlock_e_01_dwm.m2", + value = "helm_robe_raidwarlock_e_01_dwm.m2", + }, + { + fileId = "142428", + text = "helm_robe_raidwarlock_e_01_gnf.m2", + value = "helm_robe_raidwarlock_e_01_gnf.m2", + }, + { + fileId = "142429", + text = "helm_robe_raidwarlock_e_01_gnm.m2", + value = "helm_robe_raidwarlock_e_01_gnm.m2", + }, + { + fileId = "142430", + text = "helm_robe_raidwarlock_e_01_gof.m2", + value = "helm_robe_raidwarlock_e_01_gof.m2", + }, + { + fileId = "142431", + text = "helm_robe_raidwarlock_e_01_gom.m2", + value = "helm_robe_raidwarlock_e_01_gom.m2", + }, + { + fileId = "142432", + text = "helm_robe_raidwarlock_e_01_huf.m2", + value = "helm_robe_raidwarlock_e_01_huf.m2", + }, + { + fileId = "142433", + text = "helm_robe_raidwarlock_e_01_hum.m2", + value = "helm_robe_raidwarlock_e_01_hum.m2", + }, + { + fileId = "142434", + text = "helm_robe_raidwarlock_e_01_nif.m2", + value = "helm_robe_raidwarlock_e_01_nif.m2", + }, + { + fileId = "142435", + text = "helm_robe_raidwarlock_e_01_nim.m2", + value = "helm_robe_raidwarlock_e_01_nim.m2", + }, + { + fileId = "142436", + text = "helm_robe_raidwarlock_e_01_orf.m2", + value = "helm_robe_raidwarlock_e_01_orf.m2", + }, + { + fileId = "142437", + text = "helm_robe_raidwarlock_e_01_orm.m2", + value = "helm_robe_raidwarlock_e_01_orm.m2", + }, + { + fileId = "142438", + text = "helm_robe_raidwarlock_e_01_scf.m2", + value = "helm_robe_raidwarlock_e_01_scf.m2", + }, + { + fileId = "142439", + text = "helm_robe_raidwarlock_e_01_scm.m2", + value = "helm_robe_raidwarlock_e_01_scm.m2", + }, + { + fileId = "142440", + text = "helm_robe_raidwarlock_e_01_taf.m2", + value = "helm_robe_raidwarlock_e_01_taf.m2", + }, + { + fileId = "142441", + text = "helm_robe_raidwarlock_e_01_tam.m2", + value = "helm_robe_raidwarlock_e_01_tam.m2", + }, + { + fileId = "142442", + text = "helm_robe_raidwarlock_e_01_trf.m2", + value = "helm_robe_raidwarlock_e_01_trf.m2", + }, + { + fileId = "142443", + text = "helm_robe_raidwarlock_e_01_trm.m2", + value = "helm_robe_raidwarlock_e_01_trm.m2", + }, + { + fileId = "142447", + text = "helm_robe_raidwarlock_f_01_bef.m2", + value = "helm_robe_raidwarlock_f_01_bef.m2", + }, + { + fileId = "142448", + text = "helm_robe_raidwarlock_f_01_bem.m2", + value = "helm_robe_raidwarlock_f_01_bem.m2", + }, + { + fileId = "142449", + text = "helm_robe_raidwarlock_f_01_drf.m2", + value = "helm_robe_raidwarlock_f_01_drf.m2", + }, + { + fileId = "142450", + text = "helm_robe_raidwarlock_f_01_drm.m2", + value = "helm_robe_raidwarlock_f_01_drm.m2", + }, + { + fileId = "142451", + text = "helm_robe_raidwarlock_f_01_dwf.m2", + value = "helm_robe_raidwarlock_f_01_dwf.m2", + }, + { + fileId = "142452", + text = "helm_robe_raidwarlock_f_01_dwm.m2", + value = "helm_robe_raidwarlock_f_01_dwm.m2", + }, + { + fileId = "142453", + text = "helm_robe_raidwarlock_f_01_gnf.m2", + value = "helm_robe_raidwarlock_f_01_gnf.m2", + }, + { + fileId = "142454", + text = "helm_robe_raidwarlock_f_01_gnm.m2", + value = "helm_robe_raidwarlock_f_01_gnm.m2", + }, + { + fileId = "142455", + text = "helm_robe_raidwarlock_f_01_huf.m2", + value = "helm_robe_raidwarlock_f_01_huf.m2", + }, + { + fileId = "142456", + text = "helm_robe_raidwarlock_f_01_hum.m2", + value = "helm_robe_raidwarlock_f_01_hum.m2", + }, + { + fileId = "142457", + text = "helm_robe_raidwarlock_f_01_nif.m2", + value = "helm_robe_raidwarlock_f_01_nif.m2", + }, + { + fileId = "142458", + text = "helm_robe_raidwarlock_f_01_nim.m2", + value = "helm_robe_raidwarlock_f_01_nim.m2", + }, + { + fileId = "142459", + text = "helm_robe_raidwarlock_f_01_orf.m2", + value = "helm_robe_raidwarlock_f_01_orf.m2", + }, + { + fileId = "142460", + text = "helm_robe_raidwarlock_f_01_orm.m2", + value = "helm_robe_raidwarlock_f_01_orm.m2", + }, + { + fileId = "142461", + text = "helm_robe_raidwarlock_f_01_scf.m2", + value = "helm_robe_raidwarlock_f_01_scf.m2", + }, + { + fileId = "142462", + text = "helm_robe_raidwarlock_f_01_scm.m2", + value = "helm_robe_raidwarlock_f_01_scm.m2", + }, + { + fileId = "142463", + text = "helm_robe_raidwarlock_f_01_taf.m2", + value = "helm_robe_raidwarlock_f_01_taf.m2", + }, + { + fileId = "142464", + text = "helm_robe_raidwarlock_f_01_tam.m2", + value = "helm_robe_raidwarlock_f_01_tam.m2", + }, + { + fileId = "142465", + text = "helm_robe_raidwarlock_f_01_trf.m2", + value = "helm_robe_raidwarlock_f_01_trf.m2", + }, + { + fileId = "142466", + text = "helm_robe_raidwarlock_f_01_trm.m2", + value = "helm_robe_raidwarlock_f_01_trm.m2", + }, + { + fileId = "142471", + text = "helm_robe_raidwarlock_g_01_bef.m2", + value = "helm_robe_raidwarlock_g_01_bef.m2", + }, + { + fileId = "142472", + text = "helm_robe_raidwarlock_g_01_bem.m2", + value = "helm_robe_raidwarlock_g_01_bem.m2", + }, + { + fileId = "142473", + text = "helm_robe_raidwarlock_g_01_drf.m2", + value = "helm_robe_raidwarlock_g_01_drf.m2", + }, + { + fileId = "142474", + text = "helm_robe_raidwarlock_g_01_drm.m2", + value = "helm_robe_raidwarlock_g_01_drm.m2", + }, + { + fileId = "142475", + text = "helm_robe_raidwarlock_g_01_dwf.m2", + value = "helm_robe_raidwarlock_g_01_dwf.m2", + }, + { + fileId = "142476", + text = "helm_robe_raidwarlock_g_01_dwm.m2", + value = "helm_robe_raidwarlock_g_01_dwm.m2", + }, + { + fileId = "142477", + text = "helm_robe_raidwarlock_g_01_gnf.m2", + value = "helm_robe_raidwarlock_g_01_gnf.m2", + }, + { + fileId = "142478", + text = "helm_robe_raidwarlock_g_01_gnm.m2", + value = "helm_robe_raidwarlock_g_01_gnm.m2", + }, + { + fileId = "142479", + text = "helm_robe_raidwarlock_g_01_gof.m2", + value = "helm_robe_raidwarlock_g_01_gof.m2", + }, + { + fileId = "142480", + text = "helm_robe_raidwarlock_g_01_gom.m2", + value = "helm_robe_raidwarlock_g_01_gom.m2", + }, + { + fileId = "142481", + text = "helm_robe_raidwarlock_g_01_huf.m2", + value = "helm_robe_raidwarlock_g_01_huf.m2", + }, + { + fileId = "142482", + text = "helm_robe_raidwarlock_g_01_hum.m2", + value = "helm_robe_raidwarlock_g_01_hum.m2", + }, + { + fileId = "142483", + text = "helm_robe_raidwarlock_g_01_nif.m2", + value = "helm_robe_raidwarlock_g_01_nif.m2", + }, + { + fileId = "142484", + text = "helm_robe_raidwarlock_g_01_nim.m2", + value = "helm_robe_raidwarlock_g_01_nim.m2", + }, + { + fileId = "142485", + text = "helm_robe_raidwarlock_g_01_orf.m2", + value = "helm_robe_raidwarlock_g_01_orf.m2", + }, + { + fileId = "142486", + text = "helm_robe_raidwarlock_g_01_orm.m2", + value = "helm_robe_raidwarlock_g_01_orm.m2", + }, + { + fileId = "142487", + text = "helm_robe_raidwarlock_g_01_scf.m2", + value = "helm_robe_raidwarlock_g_01_scf.m2", + }, + { + fileId = "142488", + text = "helm_robe_raidwarlock_g_01_scm.m2", + value = "helm_robe_raidwarlock_g_01_scm.m2", + }, + { + fileId = "142489", + text = "helm_robe_raidwarlock_g_01_taf.m2", + value = "helm_robe_raidwarlock_g_01_taf.m2", + }, + { + fileId = "142490", + text = "helm_robe_raidwarlock_g_01_tam.m2", + value = "helm_robe_raidwarlock_g_01_tam.m2", + }, + { + fileId = "142491", + text = "helm_robe_raidwarlock_g_01_trf.m2", + value = "helm_robe_raidwarlock_g_01_trf.m2", + }, + { + fileId = "142492", + text = "helm_robe_raidwarlock_g_01_trm.m2", + value = "helm_robe_raidwarlock_g_01_trm.m2", + }, + { + fileId = "339828", + text = "helm_robe_raidwarlock_h_01_bef.m2", + value = "helm_robe_raidwarlock_h_01_bef.m2", + }, + { + fileId = "339829", + text = "helm_robe_raidwarlock_h_01_bem.m2", + value = "helm_robe_raidwarlock_h_01_bem.m2", + }, + { + fileId = "339830", + text = "helm_robe_raidwarlock_h_01_drf.m2", + value = "helm_robe_raidwarlock_h_01_drf.m2", + }, + { + fileId = "339831", + text = "helm_robe_raidwarlock_h_01_drm.m2", + value = "helm_robe_raidwarlock_h_01_drm.m2", + }, + { + fileId = "339832", + text = "helm_robe_raidwarlock_h_01_dwf.m2", + value = "helm_robe_raidwarlock_h_01_dwf.m2", + }, + { + fileId = "339833", + text = "helm_robe_raidwarlock_h_01_dwm.m2", + value = "helm_robe_raidwarlock_h_01_dwm.m2", + }, + { + fileId = "339834", + text = "helm_robe_raidwarlock_h_01_gnf.m2", + value = "helm_robe_raidwarlock_h_01_gnf.m2", + }, + { + fileId = "339835", + text = "helm_robe_raidwarlock_h_01_gnm.m2", + value = "helm_robe_raidwarlock_h_01_gnm.m2", + }, + { + fileId = "339836", + text = "helm_robe_raidwarlock_h_01_gof.m2", + value = "helm_robe_raidwarlock_h_01_gof.m2", + }, + { + fileId = "339837", + text = "helm_robe_raidwarlock_h_01_gom.m2", + value = "helm_robe_raidwarlock_h_01_gom.m2", + }, + { + fileId = "339838", + text = "helm_robe_raidwarlock_h_01_huf.m2", + value = "helm_robe_raidwarlock_h_01_huf.m2", + }, + { + fileId = "339839", + text = "helm_robe_raidwarlock_h_01_hum.m2", + value = "helm_robe_raidwarlock_h_01_hum.m2", + }, + { + fileId = "339840", + text = "helm_robe_raidwarlock_h_01_nif.m2", + value = "helm_robe_raidwarlock_h_01_nif.m2", + }, + { + fileId = "339841", + text = "helm_robe_raidwarlock_h_01_nim.m2", + value = "helm_robe_raidwarlock_h_01_nim.m2", + }, + { + fileId = "339842", + text = "helm_robe_raidwarlock_h_01_orf.m2", + value = "helm_robe_raidwarlock_h_01_orf.m2", + }, + { + fileId = "339843", + text = "helm_robe_raidwarlock_h_01_orm.m2", + value = "helm_robe_raidwarlock_h_01_orm.m2", + }, + { + fileId = "339844", + text = "helm_robe_raidwarlock_h_01_scf.m2", + value = "helm_robe_raidwarlock_h_01_scf.m2", + }, + { + fileId = "339845", + text = "helm_robe_raidwarlock_h_01_scm.m2", + value = "helm_robe_raidwarlock_h_01_scm.m2", + }, + { + fileId = "339846", + text = "helm_robe_raidwarlock_h_01_taf.m2", + value = "helm_robe_raidwarlock_h_01_taf.m2", + }, + { + fileId = "339847", + text = "helm_robe_raidwarlock_h_01_tam.m2", + value = "helm_robe_raidwarlock_h_01_tam.m2", + }, + { + fileId = "339848", + text = "helm_robe_raidwarlock_h_01_trf.m2", + value = "helm_robe_raidwarlock_h_01_trf.m2", + }, + { + fileId = "339849", + text = "helm_robe_raidwarlock_h_01_trm.m2", + value = "helm_robe_raidwarlock_h_01_trm.m2", + }, + { + fileId = "142497", + text = "helm_robe_sunwell_d_01_bef.m2", + value = "helm_robe_sunwell_d_01_bef.m2", + }, + { + fileId = "142498", + text = "helm_robe_sunwell_d_01_bem.m2", + value = "helm_robe_sunwell_d_01_bem.m2", + }, + { + fileId = "142499", + text = "helm_robe_sunwell_d_01_drf.m2", + value = "helm_robe_sunwell_d_01_drf.m2", + }, + { + fileId = "142500", + text = "helm_robe_sunwell_d_01_drm.m2", + value = "helm_robe_sunwell_d_01_drm.m2", + }, + { + fileId = "142501", + text = "helm_robe_sunwell_d_01_dwf.m2", + value = "helm_robe_sunwell_d_01_dwf.m2", + }, + { + fileId = "142502", + text = "helm_robe_sunwell_d_01_dwm.m2", + value = "helm_robe_sunwell_d_01_dwm.m2", + }, + { + fileId = "142503", + text = "helm_robe_sunwell_d_01_gnf.m2", + value = "helm_robe_sunwell_d_01_gnf.m2", + }, + { + fileId = "142504", + text = "helm_robe_sunwell_d_01_gnm.m2", + value = "helm_robe_sunwell_d_01_gnm.m2", + }, + { + fileId = "142505", + text = "helm_robe_sunwell_d_01_gof.m2", + value = "helm_robe_sunwell_d_01_gof.m2", + }, + { + fileId = "142506", + text = "helm_robe_sunwell_d_01_gom.m2", + value = "helm_robe_sunwell_d_01_gom.m2", + }, + { + fileId = "142507", + text = "helm_robe_sunwell_d_01_huf.m2", + value = "helm_robe_sunwell_d_01_huf.m2", + }, + { + fileId = "142508", + text = "helm_robe_sunwell_d_01_hum.m2", + value = "helm_robe_sunwell_d_01_hum.m2", + }, + { + fileId = "142509", + text = "helm_robe_sunwell_d_01_nif.m2", + value = "helm_robe_sunwell_d_01_nif.m2", + }, + { + fileId = "142510", + text = "helm_robe_sunwell_d_01_nim.m2", + value = "helm_robe_sunwell_d_01_nim.m2", + }, + { + fileId = "142511", + text = "helm_robe_sunwell_d_01_orf.m2", + value = "helm_robe_sunwell_d_01_orf.m2", + }, + { + fileId = "142512", + text = "helm_robe_sunwell_d_01_orm.m2", + value = "helm_robe_sunwell_d_01_orm.m2", + }, + { + fileId = "142513", + text = "helm_robe_sunwell_d_01_scf.m2", + value = "helm_robe_sunwell_d_01_scf.m2", + }, + { + fileId = "142514", + text = "helm_robe_sunwell_d_01_scm.m2", + value = "helm_robe_sunwell_d_01_scm.m2", + }, + { + fileId = "142515", + text = "helm_robe_sunwell_d_01_taf.m2", + value = "helm_robe_sunwell_d_01_taf.m2", + }, + { + fileId = "142516", + text = "helm_robe_sunwell_d_01_tam.m2", + value = "helm_robe_sunwell_d_01_tam.m2", + }, + { + fileId = "142517", + text = "helm_robe_sunwell_d_01_trf.m2", + value = "helm_robe_sunwell_d_01_trf.m2", + }, + { + fileId = "142518", + text = "helm_robe_sunwell_d_01_trm.m2", + value = "helm_robe_sunwell_d_01_trm.m2", + }, + { + fileId = "142527", + text = "helm_robe_zulaman_d_01_bef.m2", + value = "helm_robe_zulaman_d_01_bef.m2", + }, + { + fileId = "142528", + text = "helm_robe_zulaman_d_01_bem.m2", + value = "helm_robe_zulaman_d_01_bem.m2", + }, + { + fileId = "142529", + text = "helm_robe_zulaman_d_01_drf.m2", + value = "helm_robe_zulaman_d_01_drf.m2", + }, + { + fileId = "142530", + text = "helm_robe_zulaman_d_01_drm.m2", + value = "helm_robe_zulaman_d_01_drm.m2", + }, + { + fileId = "142531", + text = "helm_robe_zulaman_d_01_dwf.m2", + value = "helm_robe_zulaman_d_01_dwf.m2", + }, + { + fileId = "142532", + text = "helm_robe_zulaman_d_01_dwm.m2", + value = "helm_robe_zulaman_d_01_dwm.m2", + }, + { + fileId = "142533", + text = "helm_robe_zulaman_d_01_gnf.m2", + value = "helm_robe_zulaman_d_01_gnf.m2", + }, + { + fileId = "142534", + text = "helm_robe_zulaman_d_01_gnm.m2", + value = "helm_robe_zulaman_d_01_gnm.m2", + }, + { + fileId = "142535", + text = "helm_robe_zulaman_d_01_gof.m2", + value = "helm_robe_zulaman_d_01_gof.m2", + }, + { + fileId = "142536", + text = "helm_robe_zulaman_d_01_gom.m2", + value = "helm_robe_zulaman_d_01_gom.m2", + }, + { + fileId = "142537", + text = "helm_robe_zulaman_d_01_huf.m2", + value = "helm_robe_zulaman_d_01_huf.m2", + }, + { + fileId = "142538", + text = "helm_robe_zulaman_d_01_hum.m2", + value = "helm_robe_zulaman_d_01_hum.m2", + }, + { + fileId = "142539", + text = "helm_robe_zulaman_d_01_nif.m2", + value = "helm_robe_zulaman_d_01_nif.m2", + }, + { + fileId = "142540", + text = "helm_robe_zulaman_d_01_nim.m2", + value = "helm_robe_zulaman_d_01_nim.m2", + }, + { + fileId = "142541", + text = "helm_robe_zulaman_d_01_orf.m2", + value = "helm_robe_zulaman_d_01_orf.m2", + }, + { + fileId = "142542", + text = "helm_robe_zulaman_d_01_orm.m2", + value = "helm_robe_zulaman_d_01_orm.m2", + }, + { + fileId = "142543", + text = "helm_robe_zulaman_d_01_scf.m2", + value = "helm_robe_zulaman_d_01_scf.m2", + }, + { + fileId = "142544", + text = "helm_robe_zulaman_d_01_scm.m2", + value = "helm_robe_zulaman_d_01_scm.m2", + }, + { + fileId = "142545", + text = "helm_robe_zulaman_d_01_taf.m2", + value = "helm_robe_zulaman_d_01_taf.m2", + }, + { + fileId = "142546", + text = "helm_robe_zulaman_d_01_tam.m2", + value = "helm_robe_zulaman_d_01_tam.m2", + }, + { + fileId = "142547", + text = "helm_robe_zulaman_d_01_trf.m2", + value = "helm_robe_zulaman_d_01_trf.m2", + }, + { + fileId = "142548", + text = "helm_robe_zulaman_d_01_trm.m2", + value = "helm_robe_zulaman_d_01_trm.m2", + }, + { + fileId = "142552", + text = "helmet_robe_d_04_dwf.m2", + value = "helmet_robe_d_04_dwf.m2", + }, + { + fileId = "142553", + text = "helmet_robe_d_04_dwm.m2", + value = "helmet_robe_d_04_dwm.m2", + }, + { + fileId = "142554", + text = "helmet_robe_d_04_gnf.m2", + value = "helmet_robe_d_04_gnf.m2", + }, + { + fileId = "142555", + text = "helmet_robe_d_04_gnm.m2", + value = "helmet_robe_d_04_gnm.m2", + }, + { + fileId = "142556", + text = "helmet_robe_d_04_huf.m2", + value = "helmet_robe_d_04_huf.m2", + }, + { + fileId = "142557", + text = "helmet_robe_d_04_hum.m2", + value = "helmet_robe_d_04_hum.m2", + }, + { + fileId = "142558", + text = "helmet_robe_d_04_nif.m2", + value = "helmet_robe_d_04_nif.m2", + }, + { + fileId = "142559", + text = "helmet_robe_d_04_nim.m2", + value = "helmet_robe_d_04_nim.m2", + }, + { + fileId = "142560", + text = "helmet_robe_d_04_orf.m2", + value = "helmet_robe_d_04_orf.m2", + }, + { + fileId = "142561", + text = "helmet_robe_d_04_orm.m2", + value = "helmet_robe_d_04_orm.m2", + }, + { + fileId = "142562", + text = "helmet_robe_d_04_scf.m2", + value = "helmet_robe_d_04_scf.m2", + }, + { + fileId = "142563", + text = "helmet_robe_d_04_scm.m2", + value = "helmet_robe_d_04_scm.m2", + }, + { + fileId = "142564", + text = "helmet_robe_d_04_taf.m2", + value = "helmet_robe_d_04_taf.m2", + }, + { + fileId = "142565", + text = "helmet_robe_d_04_tam.m2", + value = "helmet_robe_d_04_tam.m2", + }, + { + fileId = "142566", + text = "helmet_robe_d_04_trf.m2", + value = "helmet_robe_d_04_trf.m2", + }, + { + fileId = "142567", + text = "helmet_robe_d_04_trm.m2", + value = "helmet_robe_d_04_trm.m2", + }, + }, + text = "head", + value = "head", + }, + { + children = { + { + fileId = "2351788", + text = "pouch_alliance_a_01.m2", + value = "pouch_alliance_a_01.m2", + }, + { + fileId = "2351697", + text = "pouch_alliance_a_02.m2", + value = "pouch_alliance_a_02.m2", + }, + { + fileId = "2351743", + text = "pouch_horde_a_01.m2", + value = "pouch_horde_a_01.m2", + }, + { + fileId = "2351703", + text = "pouch_horde_a_02.m2", + value = "pouch_horde_a_02.m2", + }, + }, + text = "pouch", + value = "pouch", + }, + { + children = { + { + fileId = "142631", + text = "quiver_a.m2", + value = "quiver_a.m2", + }, + { + fileId = "142667", + text = "quiver_bolt_a_01.m2", + value = "quiver_bolt_a_01.m2", + }, + { + fileId = "142693", + text = "quiver_horde_a_01.m2", + value = "quiver_horde_a_01.m2", + }, + }, + text = "quiver", + value = "quiver", + }, + { + children = { + { + fileId = "142733", + text = "buckler_damaged_a_01.m2", + value = "buckler_damaged_a_01.m2", + }, + { + fileId = "142737", + text = "buckler_damaged_a_02.m2", + value = "buckler_damaged_a_02.m2", + }, + { + fileId = "142741", + text = "buckler_oval_a_01.m2", + value = "buckler_oval_a_01.m2", + }, + { + fileId = "142745", + text = "buckler_round_a_01.m2", + value = "buckler_round_a_01.m2", + }, + { + fileId = "142754", + text = "shield_2h_outlandraid_d_01.m2", + value = "shield_2h_outlandraid_d_01.m2", + }, + { + fileId = "142756", + text = "shield_2h_outlandraid_d_02.m2", + value = "shield_2h_outlandraid_d_02.m2", + }, + { + fileId = "142758", + text = "shield_2h_outlandraid_d_03.m2", + value = "shield_2h_outlandraid_d_03.m2", + }, + { + fileId = "142760", + text = "shield_2h_outlandraid_d_04.m2", + value = "shield_2h_outlandraid_d_04.m2", + }, + { + fileId = "142762", + text = "shield_2h_outlandraid_d_05.m2", + value = "shield_2h_outlandraid_d_05.m2", + }, + { + fileId = "142765", + text = "shield_2h_outlandraid_d_06.m2", + value = "shield_2h_outlandraid_d_06.m2", + }, + { + fileId = "142767", + text = "shield_2h_outlandraid_d_07.m2", + value = "shield_2h_outlandraid_d_07.m2", + }, + { + fileId = "142772", + text = "shield_2h_outlandraid_d_08.m2", + value = "shield_2h_outlandraid_d_08.m2", + }, + { + fileId = "142779", + text = "shield_ahnqiraj_d_01.m2", + value = "shield_ahnqiraj_d_01.m2", + }, + { + fileId = "142781", + text = "shield_ahnqiraj_d_02.m2", + value = "shield_ahnqiraj_d_02.m2", + }, + { + fileId = "142783", + text = "shield_ahnqiraj_d_03.m2", + value = "shield_ahnqiraj_d_03.m2", + }, + { + fileId = "238343", + text = "shield_argentcrusade_c_01.m2", + value = "shield_argentcrusade_c_01.m2", + }, + { + fileId = "142785", + text = "shield_blackwing_drakeadon.m2", + value = "shield_blackwing_drakeadon.m2", + }, + { + fileId = "142787", + text = "shield_blackwing_reddragon.m2", + value = "shield_blackwing_reddragon.m2", + }, + { + fileId = "142789", + text = "shield_blood_a_01.m2", + value = "shield_blood_a_01.m2", + }, + { + fileId = "142791", + text = "shield_blood_a_02.m2", + value = "shield_blood_a_02.m2", + }, + { + fileId = "142793", + text = "shield_blood_a_03.m2", + value = "shield_blood_a_03.m2", + }, + { + fileId = "142795", + text = "shield_bloodknight_b_01.m2", + value = "shield_bloodknight_b_01.m2", + }, + { + fileId = "142797", + text = "shield_bloodknight_d_01.m2", + value = "shield_bloodknight_d_01.m2", + }, + { + fileId = "142798", + text = "shield_cotstrat_d_01.m2", + value = "shield_cotstrat_d_01.m2", + }, + { + fileId = "142799", + text = "shield_cotstrat_d_02.m2", + value = "shield_cotstrat_d_02.m2", + }, + { + fileId = "142804", + text = "shield_crest_a_01.m2", + value = "shield_crest_a_01.m2", + }, + { + fileId = "142809", + text = "shield_crest_a_02.m2", + value = "shield_crest_a_02.m2", + }, + { + fileId = "142813", + text = "shield_crest_b_01.m2", + value = "shield_crest_b_01.m2", + }, + { + fileId = "142816", + text = "shield_crest_b_02.m2", + value = "shield_crest_b_02.m2", + }, + { + fileId = "142826", + text = "shield_crest_b_03.m2", + value = "shield_crest_b_03.m2", + }, + { + fileId = "238344", + text = "shield_dalaran_d_01.m2", + value = "shield_dalaran_d_01.m2", + }, + { + fileId = "142849", + text = "shield_draenei_a_01.m2", + value = "shield_draenei_a_01.m2", + }, + { + fileId = "142855", + text = "shield_draenei_a_02.m2", + value = "shield_draenei_a_02.m2", + }, + { + fileId = "142862", + text = "shield_draktharon_d_01.m2", + value = "shield_draktharon_d_01.m2", + }, + { + fileId = "142867", + text = "shield_engineer_a_01.m2", + value = "shield_engineer_a_01.m2", + }, + { + fileId = "142869", + text = "shield_engineer_b_01.m2", + value = "shield_engineer_b_01.m2", + }, + { + fileId = "142871", + text = "shield_engineer_c_01.m2", + value = "shield_engineer_c_01.m2", + }, + { + fileId = "142873", + text = "shield_epic_a_01.m2", + value = "shield_epic_a_01.m2", + }, + { + fileId = "142875", + text = "shield_epic_a_02.m2", + value = "shield_epic_a_02.m2", + }, + { + fileId = "142876", + text = "shield_epic_b_01.m2", + value = "shield_epic_b_01.m2", + }, + { + fileId = "238350", + text = "shield_healer_pvp_c_01.m2", + value = "shield_healer_pvp_c_01.m2", + }, + { + fileId = "142878", + text = "shield_horde_a_01.m2", + value = "shield_horde_a_01.m2", + }, + { + fileId = "142885", + text = "shield_horde_a_02.m2", + value = "shield_horde_a_02.m2", + }, + { + fileId = "142893", + text = "shield_horde_a_03.m2", + value = "shield_horde_a_03.m2", + }, + { + fileId = "142900", + text = "shield_horde_a_04.m2", + value = "shield_horde_a_04.m2", + }, + { + fileId = "142907", + text = "shield_horde_b_01.m2", + value = "shield_horde_b_01.m2", + }, + { + fileId = "142909", + text = "shield_horde_b_02.m2", + value = "shield_horde_b_02.m2", + }, + { + fileId = "142911", + text = "shield_horde_b_03.m2", + value = "shield_horde_b_03.m2", + }, + { + fileId = "142914", + text = "shield_horde_b_04.m2", + value = "shield_horde_b_04.m2", + }, + { + fileId = "238356", + text = "shield_horde_b_05.m2", + value = "shield_horde_b_05.m2", + }, + { + fileId = "142916", + text = "shield_horde_c_02.m2", + value = "shield_horde_c_02.m2", + }, + { + fileId = "142918", + text = "shield_horde_c_03.m2", + value = "shield_horde_c_03.m2", + }, + { + fileId = "142920", + text = "shield_hyjal_d_01.m2", + value = "shield_hyjal_d_01.m2", + }, + { + fileId = "142924", + text = "shield_hyjal_d_02.m2", + value = "shield_hyjal_d_02.m2", + }, + { + fileId = "142930", + text = "shield_hyjal_d_03.m2", + value = "shield_hyjal_d_03.m2", + }, + { + fileId = "307952", + text = "shield_icecrownraid_d_01.m2", + value = "shield_icecrownraid_d_01.m2", + }, + { + fileId = "307690", + text = "shield_icecrownraid_d_02.m2", + value = "shield_icecrownraid_d_02.m2", + }, + { + fileId = "307691", + text = "shield_icecrownraid_d_03.m2", + value = "shield_icecrownraid_d_03.m2", + }, + { + fileId = "308487", + text = "shield_icecrownraid_d_04.m2", + value = "shield_icecrownraid_d_04.m2", + }, + { + fileId = "142934", + text = "shield_illidan_d_01.m2", + value = "shield_illidan_d_01.m2", + }, + { + fileId = "142939", + text = "shield_lion_a_01.m2", + value = "shield_lion_a_01.m2", + }, + { + fileId = "238359", + text = "shield_melee_pvp_c_01.m2", + value = "shield_melee_pvp_c_01.m2", + }, + { + fileId = "142940", + text = "shield_militia_a_01.m2", + value = "shield_militia_a_01.m2", + }, + { + fileId = "238364", + text = "shield_naxx25_d_01.m2", + value = "shield_naxx25_d_01.m2", + }, + { + fileId = "238369", + text = "shield_naxx25_d_02.m2", + value = "shield_naxx25_d_02.m2", + }, + { + fileId = "142946", + text = "shield_naxxramas_d_01.m2", + value = "shield_naxxramas_d_01.m2", + }, + { + fileId = "142948", + text = "shield_naxxramas_d_02.m2", + value = "shield_naxxramas_d_02.m2", + }, + { + fileId = "142950", + text = "shield_naxxramas_d_03.m2", + value = "shield_naxxramas_d_03.m2", + }, + { + fileId = "142951", + text = "shield_nexus_d_01.m2", + value = "shield_nexus_d_01.m2", + }, + { + fileId = "142956", + text = "shield_northrend_b_01.m2", + value = "shield_northrend_b_01.m2", + }, + { + fileId = "142957", + text = "shield_northrend_b_02.m2", + value = "shield_northrend_b_02.m2", + }, + { + fileId = "142958", + text = "shield_northrend_b_03.m2", + value = "shield_northrend_b_03.m2", + }, + { + fileId = "142959", + text = "shield_northrend_b_04.m2", + value = "shield_northrend_b_04.m2", + }, + { + fileId = "142960", + text = "shield_northrend_c_01.m2", + value = "shield_northrend_c_01.m2", + }, + { + fileId = "142965", + text = "shield_northrend_c_02.m2", + value = "shield_northrend_c_02.m2", + }, + { + fileId = "142970", + text = "shield_northrend_c_03.m2", + value = "shield_northrend_c_03.m2", + }, + { + fileId = "142975", + text = "shield_northrend_c_04.m2", + value = "shield_northrend_c_04.m2", + }, + { + fileId = "142979", + text = "shield_northrend_d_01.m2", + value = "shield_northrend_d_01.m2", + }, + { + fileId = "142984", + text = "shield_oval_a_01.m2", + value = "shield_oval_a_01.m2", + }, + { + fileId = "304736", + text = "shield_pvealliance_d_01.m2", + value = "shield_pvealliance_d_01.m2", + }, + { + fileId = "305181", + text = "shield_pvealliance_d_02.m2", + value = "shield_pvealliance_d_02.m2", + }, + { + fileId = "306624", + text = "shield_pvehorde_d_01.m2", + value = "shield_pvehorde_d_01.m2", + }, + { + fileId = "306564", + text = "shield_pvehorde_d_02.m2", + value = "shield_pvehorde_d_02.m2", + }, + { + fileId = "329350", + text = "shield_pvp330_d_01.m2", + value = "shield_pvp330_d_01.m2", + }, + { + fileId = "142989", + text = "shield_pvpalliance_a_01.m2", + value = "shield_pvpalliance_a_01.m2", + }, + { + fileId = "142991", + text = "shield_pvphorde_a_01.m2", + value = "shield_pvphorde_a_01.m2", + }, + { + fileId = "142992", + text = "shield_rectangle_a_01.m2", + value = "shield_rectangle_a_01.m2", + }, + { + fileId = "142997", + text = "shield_rectangle_b_01.m2", + value = "shield_rectangle_b_01.m2", + }, + { + fileId = "143001", + text = "shield_round_a_01.m2", + value = "shield_round_a_01.m2", + }, + { + fileId = "143005", + text = "shield_round_b_01.m2", + value = "shield_round_b_01.m2", + }, + { + fileId = "143029", + text = "shield_stratholme_d_01.m2", + value = "shield_stratholme_d_01.m2", + }, + { + fileId = "143031", + text = "shield_stratholme_d_02.m2", + value = "shield_stratholme_d_02.m2", + }, + { + fileId = "143032", + text = "shield_sunshatter_d_01.m2", + value = "shield_sunshatter_d_01.m2", + }, + { + fileId = "143038", + text = "shield_sunwell_d_01.m2", + value = "shield_sunwell_d_01.m2", + }, + { + fileId = "143043", + text = "shield_sunwell_d_02.m2", + value = "shield_sunwell_d_02.m2", + }, + { + fileId = "143047", + text = "shield_sunwell_d_03.m2", + value = "shield_sunwell_d_03.m2", + }, + { + fileId = "238386", + text = "shield_ulduarraid_d_01.m2", + value = "shield_ulduarraid_d_01.m2", + }, + { + fileId = "249238", + text = "shield_ulduarraid_d_02.m2", + value = "shield_ulduarraid_d_02.m2", + }, + { + fileId = "238393", + text = "shield_ulduarraid_d_03.m2", + value = "shield_ulduarraid_d_03.m2", + }, + { + fileId = "238399", + text = "shield_ulduarraid_d_04.m2", + value = "shield_ulduarraid_d_04.m2", + }, + { + fileId = "143052", + text = "shield_utgarde_d_01.m2", + value = "shield_utgarde_d_01.m2", + }, + { + fileId = "143057", + text = "shield_utgarde_d_02.m2", + value = "shield_utgarde_d_02.m2", + }, + { + fileId = "143063", + text = "shield_wheel_b_01.m2", + value = "shield_wheel_b_01.m2", + }, + { + fileId = "143065", + text = "shield_zulaman_d_01.m2", + value = "shield_zulaman_d_01.m2", + }, + { + fileId = "143069", + text = "shield_zulaman_d_02.m2", + value = "shield_zulaman_d_02.m2", + }, + { + fileId = "143075", + text = "shield_zulgurub_d_01.m2", + value = "shield_zulgurub_d_01.m2", + }, + { + fileId = "143077", + text = "shield_zulgurub_d_02.m2", + value = "shield_zulgurub_d_02.m2", + }, + }, + text = "shield", + value = "shield", + }, + { + children = { + { + fileId = "238415", + text = "lshoulder_cloth_pvpmage_b_01.m2", + value = "lshoulder_cloth_pvpmage_b_01.m2", + }, + { + fileId = "255263", + text = "lshoulder_cloth_pvpmage_b_02.m2", + value = "lshoulder_cloth_pvpmage_b_02.m2", + }, + { + fileId = "305321", + text = "lshoulder_cloth_pvpmage_b_03.m2", + value = "lshoulder_cloth_pvpmage_b_03.m2", + }, + { + fileId = "343976", + text = "lshoulder_cloth_pvpmage_b_04.m2", + value = "lshoulder_cloth_pvpmage_b_04.m2", + }, + { + fileId = "238416", + text = "lshoulder_cloth_pvppriest_b_01.m2", + value = "lshoulder_cloth_pvppriest_b_01.m2", + }, + { + fileId = "293956", + text = "lshoulder_cloth_pvppriest_b_02.m2", + value = "lshoulder_cloth_pvppriest_b_02.m2", + }, + { + fileId = "347765", + text = "lshoulder_cloth_pvppriest_b_04.m2", + value = "lshoulder_cloth_pvppriest_b_04.m2", + }, + { + fileId = "143132", + text = "lshoulder_leather_a_01.m2", + value = "lshoulder_leather_a_01.m2", + }, + { + fileId = "143133", + text = "lshoulder_leather_a_02.m2", + value = "lshoulder_leather_a_02.m2", + }, + { + fileId = "143134", + text = "lshoulder_leather_a_03.m2", + value = "lshoulder_leather_a_03.m2", + }, + { + fileId = "143135", + text = "lshoulder_leather_a_03defias.m2", + value = "lshoulder_leather_a_03defias.m2", + }, + { + fileId = "143136", + text = "lshoulder_leather_a_04.m2", + value = "lshoulder_leather_a_04.m2", + }, + { + fileId = "143137", + text = "lshoulder_leather_a_05.m2", + value = "lshoulder_leather_a_05.m2", + }, + { + fileId = "143138", + text = "lshoulder_leather_ahnqiraj_a_01.m2", + value = "lshoulder_leather_ahnqiraj_a_01.m2", + }, + { + fileId = "316666", + text = "lshoulder_leather_argentalliance_d_01.m2", + value = "lshoulder_leather_argentalliance_d_01.m2", + }, + { + fileId = "312784", + text = "lshoulder_leather_argenthorde_d_01.m2", + value = "lshoulder_leather_argenthorde_d_01.m2", + }, + { + fileId = "143139", + text = "lshoulder_leather_b_01.m2", + value = "lshoulder_leather_b_01.m2", + }, + { + fileId = "143140", + text = "lshoulder_leather_b_02.m2", + value = "lshoulder_leather_b_02.m2", + }, + { + fileId = "143141", + text = "lshoulder_leather_b_03.m2", + value = "lshoulder_leather_b_03.m2", + }, + { + fileId = "143142", + text = "lshoulder_leather_b_04.m2", + value = "lshoulder_leather_b_04.m2", + }, + { + fileId = "143143", + text = "lshoulder_leather_blood_b_01.m2", + value = "lshoulder_leather_blood_b_01.m2", + }, + { + fileId = "143144", + text = "lshoulder_leather_c_01.m2", + value = "lshoulder_leather_c_01.m2", + }, + { + fileId = "143145", + text = "lshoulder_leather_c_02.m2", + value = "lshoulder_leather_c_02.m2", + }, + { + fileId = "143146", + text = "lshoulder_leather_c_03.m2", + value = "lshoulder_leather_c_03.m2", + }, + { + fileId = "143147", + text = "lshoulder_leather_d_01.m2", + value = "lshoulder_leather_d_01.m2", + }, + { + fileId = "143148", + text = "lshoulder_leather_d_02.m2", + value = "lshoulder_leather_d_02.m2", + }, + { + fileId = "143149", + text = "lshoulder_leather_d_03.m2", + value = "lshoulder_leather_d_03.m2", + }, + { + fileId = "143150", + text = "lshoulder_leather_draenei_b_01.m2", + value = "lshoulder_leather_draenei_b_01.m2", + }, + { + fileId = "143151", + text = "lshoulder_leather_draenei_b_02.m2", + value = "lshoulder_leather_draenei_b_02.m2", + }, + { + fileId = "143152", + text = "lshoulder_leather_dungeondruid_a_01.m2", + value = "lshoulder_leather_dungeondruid_a_01.m2", + }, + { + fileId = "143153", + text = "lshoulder_leather_dungeondruid_b_01.m2", + value = "lshoulder_leather_dungeondruid_b_01.m2", + }, + { + fileId = "2199316", + text = "lshoulder_leather_dungeonhunter_a_01.m2", + value = "lshoulder_leather_dungeonhunter_a_01.m2", + }, + { + fileId = "238417", + text = "lshoulder_leather_dungeonleather_c_01.m2", + value = "lshoulder_leather_dungeonleather_c_01.m2", + }, + { + fileId = "340375", + text = "lshoulder_leather_dungeonleather_c_02.m2", + value = "lshoulder_leather_dungeonleather_c_02.m2", + }, + { + fileId = "143155", + text = "lshoulder_leather_dungeonrogue_b_01.m2", + value = "lshoulder_leather_dungeonrogue_b_01.m2", + }, + { + fileId = "143156", + text = "lshoulder_leather_horde_a_05.m2", + value = "lshoulder_leather_horde_a_05.m2", + }, + { + fileId = "143157", + text = "lshoulder_leather_horde_b_03.m2", + value = "lshoulder_leather_horde_b_03.m2", + }, + { + fileId = "143158", + text = "lshoulder_leather_northrend_b_01.m2", + value = "lshoulder_leather_northrend_b_01.m2", + }, + { + fileId = "143159", + text = "lshoulder_leather_northrend_b_02.m2", + value = "lshoulder_leather_northrend_b_02.m2", + }, + { + fileId = "143160", + text = "lshoulder_leather_northrend_b_03.m2", + value = "lshoulder_leather_northrend_b_03.m2", + }, + { + fileId = "143161", + text = "lshoulder_leather_northrend_c_01.m2", + value = "lshoulder_leather_northrend_c_01.m2", + }, + { + fileId = "143162", + text = "lshoulder_leather_northrend_c_02.m2", + value = "lshoulder_leather_northrend_c_02.m2", + }, + { + fileId = "143163", + text = "lshoulder_leather_northrend_d_01.m2", + value = "lshoulder_leather_northrend_d_01.m2", + }, + { + fileId = "143164", + text = "lshoulder_leather_pvpalliance_a_01.m2", + value = "lshoulder_leather_pvpalliance_a_01.m2", + }, + { + fileId = "238418", + text = "lshoulder_leather_pvpdruid_b_01.m2", + value = "lshoulder_leather_pvpdruid_b_01.m2", + }, + { + fileId = "294395", + text = "lshoulder_leather_pvpdruid_b_02.m2", + value = "lshoulder_leather_pvpdruid_b_02.m2", + }, + { + fileId = "304543", + text = "lshoulder_leather_pvpdruid_b_03.m2", + value = "lshoulder_leather_pvpdruid_b_03.m2", + }, + { + fileId = "348778", + text = "lshoulder_leather_pvpdruid_b_04.m2", + value = "lshoulder_leather_pvpdruid_b_04.m2", + }, + { + fileId = "143165", + text = "lshoulder_leather_pvphorde_a_01.m2", + value = "lshoulder_leather_pvphorde_a_01.m2", + }, + { + fileId = "143166", + text = "lshoulder_leather_pvphorde_c_01.m2", + value = "lshoulder_leather_pvphorde_c_01.m2", + }, + { + fileId = "238419", + text = "lshoulder_leather_pvprogue_b_01.m2", + value = "lshoulder_leather_pvprogue_b_01.m2", + }, + { + fileId = "254606", + text = "lshoulder_leather_pvprogue_b_02.m2", + value = "lshoulder_leather_pvprogue_b_02.m2", + }, + { + fileId = "304492", + text = "lshoulder_leather_pvprogue_b_03.m2", + value = "lshoulder_leather_pvprogue_b_03.m2", + }, + { + fileId = "346077", + text = "lshoulder_leather_pvprogue_b_04.m2", + value = "lshoulder_leather_pvprogue_b_04.m2", + }, + { + fileId = "143167", + text = "lshoulder_leather_raiddruid_a_01.m2", + value = "lshoulder_leather_raiddruid_a_01.m2", + }, + { + fileId = "143168", + text = "lshoulder_leather_raiddruid_b_01.m2", + value = "lshoulder_leather_raiddruid_b_01.m2", + }, + { + fileId = "143169", + text = "lshoulder_leather_raiddruid_c_01.m2", + value = "lshoulder_leather_raiddruid_c_01.m2", + }, + { + fileId = "238420", + text = "lshoulder_leather_raiddruid_c_02.m2", + value = "lshoulder_leather_raiddruid_c_02.m2", + }, + { + fileId = "143170", + text = "lshoulder_leather_raiddruid_d_01.m2", + value = "lshoulder_leather_raiddruid_d_01.m2", + }, + { + fileId = "143171", + text = "lshoulder_leather_raiddruid_e_01.m2", + value = "lshoulder_leather_raiddruid_e_01.m2", + }, + { + fileId = "143172", + text = "lshoulder_leather_raiddruid_f_01.m2", + value = "lshoulder_leather_raiddruid_f_01.m2", + }, + { + fileId = "249248", + text = "lshoulder_leather_raiddruid_g_01.m2", + value = "lshoulder_leather_raiddruid_g_01.m2", + }, + { + fileId = "336852", + text = "lshoulder_leather_raiddruid_h_01.m2", + value = "lshoulder_leather_raiddruid_h_01.m2", + }, + { + fileId = "143173", + text = "lshoulder_leather_raidrogue_a_01.m2", + value = "lshoulder_leather_raidrogue_a_01.m2", + }, + { + fileId = "143174", + text = "lshoulder_leather_raidrogue_b_01.m2", + value = "lshoulder_leather_raidrogue_b_01.m2", + }, + { + fileId = "143175", + text = "lshoulder_leather_raidrogue_c_01.m2", + value = "lshoulder_leather_raidrogue_c_01.m2", + }, + { + fileId = "238421", + text = "lshoulder_leather_raidrogue_c_02.m2", + value = "lshoulder_leather_raidrogue_c_02.m2", + }, + { + fileId = "143176", + text = "lshoulder_leather_raidrogue_d_01.m2", + value = "lshoulder_leather_raidrogue_d_01.m2", + }, + { + fileId = "143177", + text = "lshoulder_leather_raidrogue_e_01.m2", + value = "lshoulder_leather_raidrogue_e_01.m2", + }, + { + fileId = "143178", + text = "lshoulder_leather_raidrogue_f_01.m2", + value = "lshoulder_leather_raidrogue_f_01.m2", + }, + { + fileId = "143179", + text = "lshoulder_leather_raidrogue_g_01.m2", + value = "lshoulder_leather_raidrogue_g_01.m2", + }, + { + fileId = "336853", + text = "lshoulder_leather_raidrogue_h_01.m2", + value = "lshoulder_leather_raidrogue_h_01.m2", + }, + { + fileId = "143180", + text = "lshoulder_leather_sunwell_d_01.m2", + value = "lshoulder_leather_sunwell_d_01.m2", + }, + { + fileId = "143181", + text = "lshoulder_leather_zulaman_d_01.m2", + value = "lshoulder_leather_zulaman_d_01.m2", + }, + { + fileId = "143182", + text = "lshoulder_leather_zulaman_d_03.m2", + value = "lshoulder_leather_zulaman_d_03.m2", + }, + { + fileId = "143183", + text = "lshoulder_mail_a_01.m2", + value = "lshoulder_mail_a_01.m2", + }, + { + fileId = "143184", + text = "lshoulder_mail_a_02.m2", + value = "lshoulder_mail_a_02.m2", + }, + { + fileId = "143185", + text = "lshoulder_mail_a_03.m2", + value = "lshoulder_mail_a_03.m2", + }, + { + fileId = "143186", + text = "lshoulder_mail_ahnqiraj_a_01.m2", + value = "lshoulder_mail_ahnqiraj_a_01.m2", + }, + { + fileId = "317487", + text = "lshoulder_mail_argentalliance_d_01.m2", + value = "lshoulder_mail_argentalliance_d_01.m2", + }, + { + fileId = "315305", + text = "lshoulder_mail_argenthorde_d_01.m2", + value = "lshoulder_mail_argenthorde_d_01.m2", + }, + { + fileId = "143187", + text = "lshoulder_mail_b_01.m2", + value = "lshoulder_mail_b_01.m2", + }, + { + fileId = "143188", + text = "lshoulder_mail_b_02.m2", + value = "lshoulder_mail_b_02.m2", + }, + { + fileId = "143189", + text = "lshoulder_mail_b_03.m2", + value = "lshoulder_mail_b_03.m2", + }, + { + fileId = "143190", + text = "lshoulder_mail_b_05.m2", + value = "lshoulder_mail_b_05.m2", + }, + { + fileId = "143191", + text = "lshoulder_mail_blood_b_01.m2", + value = "lshoulder_mail_blood_b_01.m2", + }, + { + fileId = "143192", + text = "lshoulder_mail_c_01.m2", + value = "lshoulder_mail_c_01.m2", + }, + { + fileId = "143193", + text = "lshoulder_mail_c_02.m2", + value = "lshoulder_mail_c_02.m2", + }, + { + fileId = "143194", + text = "lshoulder_mail_c_03.m2", + value = "lshoulder_mail_c_03.m2", + }, + { + fileId = "143195", + text = "lshoulder_mail_c_04.m2", + value = "lshoulder_mail_c_04.m2", + }, + { + fileId = "143196", + text = "lshoulder_mail_d_01.m2", + value = "lshoulder_mail_d_01.m2", + }, + { + fileId = "143197", + text = "lshoulder_mail_d_02.m2", + value = "lshoulder_mail_d_02.m2", + }, + { + fileId = "143198", + text = "lshoulder_mail_draenei_b_01.m2", + value = "lshoulder_mail_draenei_b_01.m2", + }, + { + fileId = "143199", + text = "lshoulder_mail_draenei_b_02.m2", + value = "lshoulder_mail_draenei_b_02.m2", + }, + { + fileId = "143200", + text = "lshoulder_mail_dungeonhunter_a_01.m2", + value = "lshoulder_mail_dungeonhunter_a_01.m2", + }, + { + fileId = "143201", + text = "lshoulder_mail_dungeonhunter_b_02.m2", + value = "lshoulder_mail_dungeonhunter_b_02.m2", + }, + { + fileId = "238422", + text = "lshoulder_mail_dungeonmail_c_01.m2", + value = "lshoulder_mail_dungeonmail_c_01.m2", + }, + { + fileId = "342403", + text = "lshoulder_mail_dungeonmail_c_02.m2", + value = "lshoulder_mail_dungeonmail_c_02.m2", + }, + { + fileId = "143202", + text = "lshoulder_mail_dungeonshaman_a_01.m2", + value = "lshoulder_mail_dungeonshaman_a_01.m2", + }, + { + fileId = "143203", + text = "lshoulder_mail_dungeonshaman_b_01.m2", + value = "lshoulder_mail_dungeonshaman_b_01.m2", + }, + { + fileId = "143204", + text = "lshoulder_mail_northrend_b_01.m2", + value = "lshoulder_mail_northrend_b_01.m2", + }, + { + fileId = "143205", + text = "lshoulder_mail_northrend_b_02.m2", + value = "lshoulder_mail_northrend_b_02.m2", + }, + { + fileId = "143206", + text = "lshoulder_mail_northrend_b_03.m2", + value = "lshoulder_mail_northrend_b_03.m2", + }, + { + fileId = "143207", + text = "lshoulder_mail_northrend_b_04.m2", + value = "lshoulder_mail_northrend_b_04.m2", + }, + { + fileId = "143208", + text = "lshoulder_mail_northrend_d_01.m2", + value = "lshoulder_mail_northrend_d_01.m2", + }, + { + fileId = "143209", + text = "lshoulder_mail_pvpalliance_a_01.m2", + value = "lshoulder_mail_pvpalliance_a_01.m2", + }, + { + fileId = "143210", + text = "lshoulder_mail_pvpalliance_c_01.m2", + value = "lshoulder_mail_pvpalliance_c_01.m2", + }, + { + fileId = "143211", + text = "lshoulder_mail_pvphorde_a_01.m2", + value = "lshoulder_mail_pvphorde_a_01.m2", + }, + { + fileId = "143212", + text = "lshoulder_mail_pvphorde_c_01.m2", + value = "lshoulder_mail_pvphorde_c_01.m2", + }, + { + fileId = "238423", + text = "lshoulder_mail_pvphunter_b_01.m2", + value = "lshoulder_mail_pvphunter_b_01.m2", + }, + { + fileId = "254165", + text = "lshoulder_mail_pvphunter_b_02.m2", + value = "lshoulder_mail_pvphunter_b_02.m2", + }, + { + fileId = "307200", + text = "lshoulder_mail_pvphunter_b_03.m2", + value = "lshoulder_mail_pvphunter_b_03.m2", + }, + { + fileId = "344347", + text = "lshoulder_mail_pvphunter_b_04.m2", + value = "lshoulder_mail_pvphunter_b_04.m2", + }, + { + fileId = "238424", + text = "lshoulder_mail_pvpshaman_b_01.m2", + value = "lshoulder_mail_pvpshaman_b_01.m2", + }, + { + fileId = "298610", + text = "lshoulder_mail_pvpshaman_b_02.m2", + value = "lshoulder_mail_pvpshaman_b_02.m2", + }, + { + fileId = "306733", + text = "lshoulder_mail_pvpshaman_b_03.m2", + value = "lshoulder_mail_pvpshaman_b_03.m2", + }, + { + fileId = "349984", + text = "lshoulder_mail_pvpshaman_b_04.m2", + value = "lshoulder_mail_pvpshaman_b_04.m2", + }, + { + fileId = "143213", + text = "lshoulder_mail_raidhunter_a_01.m2", + value = "lshoulder_mail_raidhunter_a_01.m2", + }, + { + fileId = "143214", + text = "lshoulder_mail_raidhunter_b_01.m2", + value = "lshoulder_mail_raidhunter_b_01.m2", + }, + { + fileId = "143215", + text = "lshoulder_mail_raidhunter_c_01.m2", + value = "lshoulder_mail_raidhunter_c_01.m2", + }, + { + fileId = "238425", + text = "lshoulder_mail_raidhunter_c_02.m2", + value = "lshoulder_mail_raidhunter_c_02.m2", + }, + { + fileId = "143216", + text = "lshoulder_mail_raidhunter_d_01.m2", + value = "lshoulder_mail_raidhunter_d_01.m2", + }, + { + fileId = "143217", + text = "lshoulder_mail_raidhunter_e_01.m2", + value = "lshoulder_mail_raidhunter_e_01.m2", + }, + { + fileId = "143218", + text = "lshoulder_mail_raidhunter_f_01.m2", + value = "lshoulder_mail_raidhunter_f_01.m2", + }, + { + fileId = "143219", + text = "lshoulder_mail_raidhunter_g_01.m2", + value = "lshoulder_mail_raidhunter_g_01.m2", + }, + { + fileId = "337191", + text = "lshoulder_mail_raidhunter_h_01.m2", + value = "lshoulder_mail_raidhunter_h_01.m2", + }, + { + fileId = "143220", + text = "lshoulder_mail_raidshaman_a_01.m2", + value = "lshoulder_mail_raidshaman_a_01.m2", + }, + { + fileId = "143221", + text = "lshoulder_mail_raidshaman_b_01.m2", + value = "lshoulder_mail_raidshaman_b_01.m2", + }, + { + fileId = "238426", + text = "lshoulder_mail_raidshaman_c_02.m2", + value = "lshoulder_mail_raidshaman_c_02.m2", + }, + { + fileId = "143222", + text = "lshoulder_mail_raidshaman_d_01.m2", + value = "lshoulder_mail_raidshaman_d_01.m2", + }, + { + fileId = "143223", + text = "lshoulder_mail_raidshaman_e_01.m2", + value = "lshoulder_mail_raidshaman_e_01.m2", + }, + { + fileId = "143224", + text = "lshoulder_mail_raidshaman_f_01.m2", + value = "lshoulder_mail_raidshaman_f_01.m2", + }, + { + fileId = "249249", + text = "lshoulder_mail_raidshaman_g_01.m2", + value = "lshoulder_mail_raidshaman_g_01.m2", + }, + { + fileId = "349163", + text = "lshoulder_mail_raidshaman_h_01.m2", + value = "lshoulder_mail_raidshaman_h_01.m2", + }, + { + fileId = "353036", + text = "lshoulder_mail_raidshaman_h_02.m2", + value = "lshoulder_mail_raidshaman_h_02.m2", + }, + { + fileId = "143225", + text = "lshoulder_mail_sunwell_d_01.m2", + value = "lshoulder_mail_sunwell_d_01.m2", + }, + { + fileId = "143226", + text = "lshoulder_mail_zulaman_d_01.m2", + value = "lshoulder_mail_zulaman_d_01.m2", + }, + { + fileId = "143227", + text = "lshoulder_mail_zulaman_d_03.m2", + value = "lshoulder_mail_zulaman_d_03.m2", + }, + { + fileId = "143228", + text = "lshoulder_plate_a_01.m2", + value = "lshoulder_plate_a_01.m2", + }, + { + fileId = "143229", + text = "lshoulder_plate_a_02.m2", + value = "lshoulder_plate_a_02.m2", + }, + { + fileId = "143230", + text = "lshoulder_plate_a_02ironforgeguard.m2", + value = "lshoulder_plate_a_02ironforgeguard.m2", + }, + { + fileId = "143231", + text = "lshoulder_plate_a_03.m2", + value = "lshoulder_plate_a_03.m2", + }, + { + fileId = "143232", + text = "lshoulder_plate_a_04.m2", + value = "lshoulder_plate_a_04.m2", + }, + { + fileId = "143233", + text = "lshoulder_plate_a_05.m2", + value = "lshoulder_plate_a_05.m2", + }, + { + fileId = "143234", + text = "lshoulder_plate_ahnqiraj_a_01.m2", + value = "lshoulder_plate_ahnqiraj_a_01.m2", + }, + { + fileId = "311765", + text = "lshoulder_plate_argentalliance_d_01.m2", + value = "lshoulder_plate_argentalliance_d_01.m2", + }, + { + fileId = "315691", + text = "lshoulder_plate_argenthorde_d_01.m2", + value = "lshoulder_plate_argenthorde_d_01.m2", + }, + { + fileId = "143235", + text = "lshoulder_plate_b_01.m2", + value = "lshoulder_plate_b_01.m2", + }, + { + fileId = "143236", + text = "lshoulder_plate_b_02.m2", + value = "lshoulder_plate_b_02.m2", + }, + { + fileId = "143237", + text = "lshoulder_plate_b_03.m2", + value = "lshoulder_plate_b_03.m2", + }, + { + fileId = "143238", + text = "lshoulder_plate_b_04.m2", + value = "lshoulder_plate_b_04.m2", + }, + { + fileId = "143239", + text = "lshoulder_plate_b_05.m2", + value = "lshoulder_plate_b_05.m2", + }, + { + fileId = "143240", + text = "lshoulder_plate_bloodknight_d_02.m2", + value = "lshoulder_plate_bloodknight_d_02.m2", + }, + { + fileId = "143241", + text = "lshoulder_plate_c_01.m2", + value = "lshoulder_plate_c_01.m2", + }, + { + fileId = "143242", + text = "lshoulder_plate_c_03.m2", + value = "lshoulder_plate_c_03.m2", + }, + { + fileId = "143243", + text = "lshoulder_plate_c_04.m2", + value = "lshoulder_plate_c_04.m2", + }, + { + fileId = "143244", + text = "lshoulder_plate_c_05.m2", + value = "lshoulder_plate_c_05.m2", + }, + { + fileId = "143245", + text = "lshoulder_plate_d_01.m2", + value = "lshoulder_plate_d_01.m2", + }, + { + fileId = "143246", + text = "lshoulder_plate_d_02.m2", + value = "lshoulder_plate_d_02.m2", + }, + { + fileId = "143247", + text = "lshoulder_plate_d_03.m2", + value = "lshoulder_plate_d_03.m2", + }, + { + fileId = "143248", + text = "lshoulder_plate_d_04.m2", + value = "lshoulder_plate_d_04.m2", + }, + { + fileId = "143249", + text = "lshoulder_plate_d_05.m2", + value = "lshoulder_plate_d_05.m2", + }, + { + fileId = "143250", + text = "lshoulder_plate_d_06.m2", + value = "lshoulder_plate_d_06.m2", + }, + { + fileId = "238427", + text = "lshoulder_plate_deathknight_b_01.m2", + value = "lshoulder_plate_deathknight_b_01.m2", + }, + { + fileId = "143251", + text = "lshoulder_plate_draeneiguard_a_01.m2", + value = "lshoulder_plate_draeneiguard_a_01.m2", + }, + { + fileId = "143252", + text = "lshoulder_plate_draeneiguard_b_01.m2", + value = "lshoulder_plate_draeneiguard_b_01.m2", + }, + { + fileId = "143253", + text = "lshoulder_plate_dungeonpaladin_a_01.m2", + value = "lshoulder_plate_dungeonpaladin_a_01.m2", + }, + { + fileId = "143254", + text = "lshoulder_plate_dungeonpaladin_b_01.m2", + value = "lshoulder_plate_dungeonpaladin_b_01.m2", + }, + { + fileId = "143255", + text = "lshoulder_plate_dungeonplate_c_01.m2", + value = "lshoulder_plate_dungeonplate_c_01.m2", + }, + { + fileId = "343647", + text = "lshoulder_plate_dungeonplate_c_02.m2", + value = "lshoulder_plate_dungeonplate_c_02.m2", + }, + { + fileId = "143256", + text = "lshoulder_plate_dungeonwarrior_a_01.m2", + value = "lshoulder_plate_dungeonwarrior_a_01.m2", + }, + { + fileId = "143257", + text = "lshoulder_plate_dungeonwarrior_b_01.m2", + value = "lshoulder_plate_dungeonwarrior_b_01.m2", + }, + { + fileId = "143258", + text = "lshoulder_plate_haremmatron_d_01.m2", + value = "lshoulder_plate_haremmatron_d_01.m2", + }, + { + fileId = "143259", + text = "lshoulder_plate_horde_c_05.m2", + value = "lshoulder_plate_horde_c_05.m2", + }, + { + fileId = "143260", + text = "lshoulder_plate_horde_d_02.m2", + value = "lshoulder_plate_horde_d_02.m2", + }, + { + fileId = "143262", + text = "lshoulder_plate_hyjal_d_04.m2", + value = "lshoulder_plate_hyjal_d_04.m2", + }, + { + fileId = "143265", + text = "lshoulder_plate_hyjal_d_05.m2", + value = "lshoulder_plate_hyjal_d_05.m2", + }, + { + fileId = "143266", + text = "lshoulder_plate_northrend_b_01.m2", + value = "lshoulder_plate_northrend_b_01.m2", + }, + { + fileId = "143267", + text = "lshoulder_plate_northrend_b_02.m2", + value = "lshoulder_plate_northrend_b_02.m2", + }, + { + fileId = "143268", + text = "lshoulder_plate_northrend_b_03.m2", + value = "lshoulder_plate_northrend_b_03.m2", + }, + { + fileId = "143269", + text = "lshoulder_plate_northrend_c_01.m2", + value = "lshoulder_plate_northrend_c_01.m2", + }, + { + fileId = "143270", + text = "lshoulder_plate_northrend_d_01.m2", + value = "lshoulder_plate_northrend_d_01.m2", + }, + { + fileId = "143271", + text = "lshoulder_plate_pvpalliance_a_01.m2", + value = "lshoulder_plate_pvpalliance_a_01.m2", + }, + { + fileId = "238428", + text = "lshoulder_plate_pvpdeathknight_b_01.m2", + value = "lshoulder_plate_pvpdeathknight_b_01.m2", + }, + { + fileId = "254904", + text = "lshoulder_plate_pvpdeathknight_b_02.m2", + value = "lshoulder_plate_pvpdeathknight_b_02.m2", + }, + { + fileId = "304741", + text = "lshoulder_plate_pvpdeathknight_b_03.m2", + value = "lshoulder_plate_pvpdeathknight_b_03.m2", + }, + { + fileId = "343845", + text = "lshoulder_plate_pvpdeathknight_b_04.m2", + value = "lshoulder_plate_pvpdeathknight_b_04.m2", + }, + { + fileId = "143272", + text = "lshoulder_plate_pvphorde_a_01.m2", + value = "lshoulder_plate_pvphorde_a_01.m2", + }, + { + fileId = "238429", + text = "lshoulder_plate_pvppaladin_b_01.m2", + value = "lshoulder_plate_pvppaladin_b_01.m2", + }, + { + fileId = "254759", + text = "lshoulder_plate_pvppaladin_b_02.m2", + value = "lshoulder_plate_pvppaladin_b_02.m2", + }, + { + fileId = "304824", + text = "lshoulder_plate_pvppaladin_b_03.m2", + value = "lshoulder_plate_pvppaladin_b_03.m2", + }, + { + fileId = "346078", + text = "lshoulder_plate_pvppaladin_b_04.m2", + value = "lshoulder_plate_pvppaladin_b_04.m2", + }, + { + fileId = "238430", + text = "lshoulder_plate_pvpwarrior_b_01.m2", + value = "lshoulder_plate_pvpwarrior_b_01.m2", + }, + { + fileId = "254358", + text = "lshoulder_plate_pvpwarrior_b_02.m2", + value = "lshoulder_plate_pvpwarrior_b_02.m2", + }, + { + fileId = "304450", + text = "lshoulder_plate_pvpwarrior_b_03.m2", + value = "lshoulder_plate_pvpwarrior_b_03.m2", + }, + { + fileId = "345729", + text = "lshoulder_plate_pvpwarrior_b_04.m2", + value = "lshoulder_plate_pvpwarrior_b_04.m2", + }, + { + fileId = "238431", + text = "lshoulder_plate_pvpwarrior_c_02.m2", + value = "lshoulder_plate_pvpwarrior_c_02.m2", + }, + { + fileId = "238432", + text = "lshoulder_plate_raiddeathknight_c_02.m2", + value = "lshoulder_plate_raiddeathknight_c_02.m2", + }, + { + fileId = "143273", + text = "lshoulder_plate_raiddeathknight_g_01.m2", + value = "lshoulder_plate_raiddeathknight_g_01.m2", + }, + { + fileId = "337700", + text = "lshoulder_plate_raiddeathknight_h_01.m2", + value = "lshoulder_plate_raiddeathknight_h_01.m2", + }, + { + fileId = "143274", + text = "lshoulder_plate_raidpaladin_a_01.m2", + value = "lshoulder_plate_raidpaladin_a_01.m2", + }, + { + fileId = "143275", + text = "lshoulder_plate_raidpaladin_b_01.m2", + value = "lshoulder_plate_raidpaladin_b_01.m2", + }, + { + fileId = "143276", + text = "lshoulder_plate_raidpaladin_c_01.m2", + value = "lshoulder_plate_raidpaladin_c_01.m2", + }, + { + fileId = "143277", + text = "lshoulder_plate_raidpaladin_d_01.m2", + value = "lshoulder_plate_raidpaladin_d_01.m2", + }, + { + fileId = "143278", + text = "lshoulder_plate_raidpaladin_e_01.m2", + value = "lshoulder_plate_raidpaladin_e_01.m2", + }, + { + fileId = "143279", + text = "lshoulder_plate_raidpaladin_f_01.m2", + value = "lshoulder_plate_raidpaladin_f_01.m2", + }, + { + fileId = "238433", + text = "lshoulder_plate_raidpaladin_g_01.m2", + value = "lshoulder_plate_raidpaladin_g_01.m2", + }, + { + fileId = "341246", + text = "lshoulder_plate_raidpaladin_h_01.m2", + value = "lshoulder_plate_raidpaladin_h_01.m2", + }, + { + fileId = "143284", + text = "lshoulder_plate_raidwarrior_a_01.m2", + value = "lshoulder_plate_raidwarrior_a_01.m2", + }, + { + fileId = "143285", + text = "lshoulder_plate_raidwarrior_b_01.m2", + value = "lshoulder_plate_raidwarrior_b_01.m2", + }, + { + fileId = "143286", + text = "lshoulder_plate_raidwarrior_c_01.m2", + value = "lshoulder_plate_raidwarrior_c_01.m2", + }, + { + fileId = "143287", + text = "lshoulder_plate_raidwarrior_d_01.m2", + value = "lshoulder_plate_raidwarrior_d_01.m2", + }, + { + fileId = "143288", + text = "lshoulder_plate_raidwarrior_e_01.m2", + value = "lshoulder_plate_raidwarrior_e_01.m2", + }, + { + fileId = "143289", + text = "lshoulder_plate_raidwarrior_f_01.m2", + value = "lshoulder_plate_raidwarrior_f_01.m2", + }, + { + fileId = "251562", + text = "lshoulder_plate_raidwarrior_g_01.m2", + value = "lshoulder_plate_raidwarrior_g_01.m2", + }, + { + fileId = "331370", + text = "lshoulder_plate_raidwarrior_h_01.m2", + value = "lshoulder_plate_raidwarrior_h_01.m2", + }, + { + fileId = "143290", + text = "lshoulder_plate_sunwell_c_01.m2", + value = "lshoulder_plate_sunwell_c_01.m2", + }, + { + fileId = "143291", + text = "lshoulder_plate_sunwell_d_01.m2", + value = "lshoulder_plate_sunwell_d_01.m2", + }, + { + fileId = "143292", + text = "lshoulder_plate_zulaman_d_01.m2", + value = "lshoulder_plate_zulaman_d_01.m2", + }, + { + fileId = "143293", + text = "lshoulder_plate_zulaman_d_03.m2", + value = "lshoulder_plate_zulaman_d_03.m2", + }, + { + fileId = "306510", + text = "lshoulder_pvppriest_b_03.m2", + value = "lshoulder_pvppriest_b_03.m2", + }, + { + fileId = "143294", + text = "lshoulder_raiddruid_b_01.m2", + value = "lshoulder_raiddruid_b_01.m2", + }, + { + fileId = "143295", + text = "lshoulder_robe_a_01.m2", + value = "lshoulder_robe_a_01.m2", + }, + { + fileId = "143296", + text = "lshoulder_robe_a_02.m2", + value = "lshoulder_robe_a_02.m2", + }, + { + fileId = "143297", + text = "lshoulder_robe_a_03.m2", + value = "lshoulder_robe_a_03.m2", + }, + { + fileId = "143298", + text = "lshoulder_robe_ahnqiraj_a_01.m2", + value = "lshoulder_robe_ahnqiraj_a_01.m2", + }, + { + fileId = "314971", + text = "lshoulder_robe_argentalliance_d_01.m2", + value = "lshoulder_robe_argentalliance_d_01.m2", + }, + { + fileId = "317628", + text = "lshoulder_robe_argenthorde_d_01.m2", + value = "lshoulder_robe_argenthorde_d_01.m2", + }, + { + fileId = "143299", + text = "lshoulder_robe_b_01.m2", + value = "lshoulder_robe_b_01.m2", + }, + { + fileId = "143300", + text = "lshoulder_robe_b_02.m2", + value = "lshoulder_robe_b_02.m2", + }, + { + fileId = "143301", + text = "lshoulder_robe_b_03.m2", + value = "lshoulder_robe_b_03.m2", + }, + { + fileId = "143302", + text = "lshoulder_robe_b_04.m2", + value = "lshoulder_robe_b_04.m2", + }, + { + fileId = "143303", + text = "lshoulder_robe_c_01.m2", + value = "lshoulder_robe_c_01.m2", + }, + { + fileId = "143304", + text = "lshoulder_robe_c_02.m2", + value = "lshoulder_robe_c_02.m2", + }, + { + fileId = "143305", + text = "lshoulder_robe_c_03.m2", + value = "lshoulder_robe_c_03.m2", + }, + { + fileId = "143306", + text = "lshoulder_robe_d_01.m2", + value = "lshoulder_robe_d_01.m2", + }, + { + fileId = "143307", + text = "lshoulder_robe_d_04.m2", + value = "lshoulder_robe_d_04.m2", + }, + { + fileId = "143308", + text = "lshoulder_robe_dungeonmage_a_01.m2", + value = "lshoulder_robe_dungeonmage_a_01.m2", + }, + { + fileId = "143309", + text = "lshoulder_robe_dungeonmage_b_01.m2", + value = "lshoulder_robe_dungeonmage_b_01.m2", + }, + { + fileId = "143310", + text = "lshoulder_robe_dungeonpriest_a_01.m2", + value = "lshoulder_robe_dungeonpriest_a_01.m2", + }, + { + fileId = "143311", + text = "lshoulder_robe_dungeonpriest_b_01.m2", + value = "lshoulder_robe_dungeonpriest_b_01.m2", + }, + { + fileId = "238434", + text = "lshoulder_robe_dungeonrobe_c_01.m2", + value = "lshoulder_robe_dungeonrobe_c_01.m2", + }, + { + fileId = "341481", + text = "lshoulder_robe_dungeonrobe_c_02.m2", + value = "lshoulder_robe_dungeonrobe_c_02.m2", + }, + { + fileId = "143312", + text = "lshoulder_robe_dungeonwarlock_a_01.m2", + value = "lshoulder_robe_dungeonwarlock_a_01.m2", + }, + { + fileId = "143313", + text = "lshoulder_robe_dungeonwarlock_b_01.m2", + value = "lshoulder_robe_dungeonwarlock_b_01.m2", + }, + { + fileId = "143314", + text = "lshoulder_robe_holiday_summerfest_a_01.m2", + value = "lshoulder_robe_holiday_summerfest_a_01.m2", + }, + { + fileId = "143315", + text = "lshoulder_robe_horde_a_03.m2", + value = "lshoulder_robe_horde_a_03.m2", + }, + { + fileId = "143316", + text = "lshoulder_robe_horde_d_01.m2", + value = "lshoulder_robe_horde_d_01.m2", + }, + { + fileId = "143317", + text = "lshoulder_robe_hyjal_d_04.m2", + value = "lshoulder_robe_hyjal_d_04.m2", + }, + { + fileId = "143318", + text = "lshoulder_robe_northrend_b_01.m2", + value = "lshoulder_robe_northrend_b_01.m2", + }, + { + fileId = "238435", + text = "lshoulder_robe_northrend_b_02.m2", + value = "lshoulder_robe_northrend_b_02.m2", + }, + { + fileId = "143319", + text = "lshoulder_robe_northrend_b_03.m2", + value = "lshoulder_robe_northrend_b_03.m2", + }, + { + fileId = "143320", + text = "lshoulder_robe_northrend_d_01.m2", + value = "lshoulder_robe_northrend_d_01.m2", + }, + { + fileId = "238436", + text = "lshoulder_robe_plague_a_01.m2", + value = "lshoulder_robe_plague_a_01.m2", + }, + { + fileId = "143321", + text = "lshoulder_robe_pvpalliance_a_01.m2", + value = "lshoulder_robe_pvpalliance_a_01.m2", + }, + { + fileId = "143322", + text = "lshoulder_robe_pvpalliance_c_01.m2", + value = "lshoulder_robe_pvpalliance_c_01.m2", + }, + { + fileId = "143323", + text = "lshoulder_robe_pvphorde_a_01.m2", + value = "lshoulder_robe_pvphorde_a_01.m2", + }, + { + fileId = "143324", + text = "lshoulder_robe_pvphorde_c_01.m2", + value = "lshoulder_robe_pvphorde_c_01.m2", + }, + { + fileId = "238437", + text = "lshoulder_robe_pvpwarlock_b_01.m2", + value = "lshoulder_robe_pvpwarlock_b_01.m2", + }, + { + fileId = "254166", + text = "lshoulder_robe_pvpwarlock_b_02.m2", + value = "lshoulder_robe_pvpwarlock_b_02.m2", + }, + { + fileId = "305929", + text = "lshoulder_robe_pvpwarlock_b_03.m2", + value = "lshoulder_robe_pvpwarlock_b_03.m2", + }, + { + fileId = "350611", + text = "lshoulder_robe_pvpwarlock_b_04.m2", + value = "lshoulder_robe_pvpwarlock_b_04.m2", + }, + { + fileId = "143325", + text = "lshoulder_robe_raid_a_01.m2", + value = "lshoulder_robe_raid_a_01.m2", + }, + { + fileId = "143326", + text = "lshoulder_robe_raidmage_a_01.m2", + value = "lshoulder_robe_raidmage_a_01.m2", + }, + { + fileId = "143327", + text = "lshoulder_robe_raidmage_b_01.m2", + value = "lshoulder_robe_raidmage_b_01.m2", + }, + { + fileId = "143328", + text = "lshoulder_robe_raidmage_c_01.m2", + value = "lshoulder_robe_raidmage_c_01.m2", + }, + { + fileId = "238438", + text = "lshoulder_robe_raidmage_c_02.m2", + value = "lshoulder_robe_raidmage_c_02.m2", + }, + { + fileId = "143329", + text = "lshoulder_robe_raidmage_d_01.m2", + value = "lshoulder_robe_raidmage_d_01.m2", + }, + { + fileId = "143330", + text = "lshoulder_robe_raidmage_e_01.m2", + value = "lshoulder_robe_raidmage_e_01.m2", + }, + { + fileId = "238439", + text = "lshoulder_robe_raidmage_e_02.m2", + value = "lshoulder_robe_raidmage_e_02.m2", + }, + { + fileId = "143331", + text = "lshoulder_robe_raidmage_f_01.m2", + value = "lshoulder_robe_raidmage_f_01.m2", + }, + { + fileId = "143332", + text = "lshoulder_robe_raidmage_g_01.m2", + value = "lshoulder_robe_raidmage_g_01.m2", + }, + { + fileId = "340071", + text = "lshoulder_robe_raidmage_h_01.m2", + value = "lshoulder_robe_raidmage_h_01.m2", + }, + { + fileId = "143333", + text = "lshoulder_robe_raidpriest_a_01.m2", + value = "lshoulder_robe_raidpriest_a_01.m2", + }, + { + fileId = "143334", + text = "lshoulder_robe_raidpriest_b_01.m2", + value = "lshoulder_robe_raidpriest_b_01.m2", + }, + { + fileId = "143335", + text = "lshoulder_robe_raidpriest_c_01.m2", + value = "lshoulder_robe_raidpriest_c_01.m2", + }, + { + fileId = "143336", + text = "lshoulder_robe_raidpriest_d_01.m2", + value = "lshoulder_robe_raidpriest_d_01.m2", + }, + { + fileId = "143337", + text = "lshoulder_robe_raidpriest_e_01.m2", + value = "lshoulder_robe_raidpriest_e_01.m2", + }, + { + fileId = "143338", + text = "lshoulder_robe_raidpriest_f_01.m2", + value = "lshoulder_robe_raidpriest_f_01.m2", + }, + { + fileId = "143339", + text = "lshoulder_robe_raidpriest_g_01.m2", + value = "lshoulder_robe_raidpriest_g_01.m2", + }, + { + fileId = "341799", + text = "lshoulder_robe_raidpriest_h_01.m2", + value = "lshoulder_robe_raidpriest_h_01.m2", + }, + { + fileId = "143340", + text = "lshoulder_robe_raidshaman_c_01.m2", + value = "lshoulder_robe_raidshaman_c_01.m2", + }, + { + fileId = "143341", + text = "lshoulder_robe_raidwarlock_a_01.m2", + value = "lshoulder_robe_raidwarlock_a_01.m2", + }, + { + fileId = "143342", + text = "lshoulder_robe_raidwarlock_b_01.m2", + value = "lshoulder_robe_raidwarlock_b_01.m2", + }, + { + fileId = "143343", + text = "lshoulder_robe_raidwarlock_c_01.m2", + value = "lshoulder_robe_raidwarlock_c_01.m2", + }, + { + fileId = "238440", + text = "lshoulder_robe_raidwarlock_c_02.m2", + value = "lshoulder_robe_raidwarlock_c_02.m2", + }, + { + fileId = "143344", + text = "lshoulder_robe_raidwarlock_d_01.m2", + value = "lshoulder_robe_raidwarlock_d_01.m2", + }, + { + fileId = "143345", + text = "lshoulder_robe_raidwarlock_e_01.m2", + value = "lshoulder_robe_raidwarlock_e_01.m2", + }, + { + fileId = "143346", + text = "lshoulder_robe_raidwarlock_f_01.m2", + value = "lshoulder_robe_raidwarlock_f_01.m2", + }, + { + fileId = "143347", + text = "lshoulder_robe_raidwarlock_g_01.m2", + value = "lshoulder_robe_raidwarlock_g_01.m2", + }, + { + fileId = "339851", + text = "lshoulder_robe_raidwarlock_h_01.m2", + value = "lshoulder_robe_raidwarlock_h_01.m2", + }, + { + fileId = "143348", + text = "lshoulder_robe_sunwell_d_01.m2", + value = "lshoulder_robe_sunwell_d_01.m2", + }, + { + fileId = "143349", + text = "lshoulder_robe_zulaman_d_01.m2", + value = "lshoulder_robe_zulaman_d_01.m2", + }, + { + fileId = "143350", + text = "lshoulder_robe_zulaman_d_03.m2", + value = "lshoulder_robe_zulaman_d_03.m2", + }, + { + fileId = "238466", + text = "rshoulder_cloth_pvpmage_b_01.m2", + value = "rshoulder_cloth_pvpmage_b_01.m2", + }, + { + fileId = "255264", + text = "rshoulder_cloth_pvpmage_b_02.m2", + value = "rshoulder_cloth_pvpmage_b_02.m2", + }, + { + fileId = "305322", + text = "rshoulder_cloth_pvpmage_b_03.m2", + value = "rshoulder_cloth_pvpmage_b_03.m2", + }, + { + fileId = "343977", + text = "rshoulder_cloth_pvpmage_b_04.m2", + value = "rshoulder_cloth_pvpmage_b_04.m2", + }, + { + fileId = "238467", + text = "rshoulder_cloth_pvppriest_b_01.m2", + value = "rshoulder_cloth_pvppriest_b_01.m2", + }, + { + fileId = "293957", + text = "rshoulder_cloth_pvppriest_b_02.m2", + value = "rshoulder_cloth_pvppriest_b_02.m2", + }, + { + fileId = "347766", + text = "rshoulder_cloth_pvppriest_b_04.m2", + value = "rshoulder_cloth_pvppriest_b_04.m2", + }, + { + fileId = "143436", + text = "rshoulder_leather_a_01.m2", + value = "rshoulder_leather_a_01.m2", + }, + { + fileId = "143437", + text = "rshoulder_leather_a_02.m2", + value = "rshoulder_leather_a_02.m2", + }, + { + fileId = "143438", + text = "rshoulder_leather_a_03.m2", + value = "rshoulder_leather_a_03.m2", + }, + { + fileId = "143439", + text = "rshoulder_leather_a_03defias.m2", + value = "rshoulder_leather_a_03defias.m2", + }, + { + fileId = "143440", + text = "rshoulder_leather_a_04.m2", + value = "rshoulder_leather_a_04.m2", + }, + { + fileId = "143441", + text = "rshoulder_leather_a_05.m2", + value = "rshoulder_leather_a_05.m2", + }, + { + fileId = "143442", + text = "rshoulder_leather_ahnqiraj_a_01.m2", + value = "rshoulder_leather_ahnqiraj_a_01.m2", + }, + { + fileId = "316667", + text = "rshoulder_leather_argentalliance_d_01.m2", + value = "rshoulder_leather_argentalliance_d_01.m2", + }, + { + fileId = "312785", + text = "rshoulder_leather_argenthorde_d_01.m2", + value = "rshoulder_leather_argenthorde_d_01.m2", + }, + { + fileId = "143443", + text = "rshoulder_leather_b_01.m2", + value = "rshoulder_leather_b_01.m2", + }, + { + fileId = "143444", + text = "rshoulder_leather_b_02.m2", + value = "rshoulder_leather_b_02.m2", + }, + { + fileId = "143445", + text = "rshoulder_leather_b_03.m2", + value = "rshoulder_leather_b_03.m2", + }, + { + fileId = "143446", + text = "rshoulder_leather_b_04.m2", + value = "rshoulder_leather_b_04.m2", + }, + { + fileId = "143447", + text = "rshoulder_leather_blood_b_01.m2", + value = "rshoulder_leather_blood_b_01.m2", + }, + { + fileId = "143448", + text = "rshoulder_leather_c_01.m2", + value = "rshoulder_leather_c_01.m2", + }, + { + fileId = "143449", + text = "rshoulder_leather_c_02.m2", + value = "rshoulder_leather_c_02.m2", + }, + { + fileId = "143450", + text = "rshoulder_leather_c_03.m2", + value = "rshoulder_leather_c_03.m2", + }, + { + fileId = "143451", + text = "rshoulder_leather_d_01.m2", + value = "rshoulder_leather_d_01.m2", + }, + { + fileId = "143452", + text = "rshoulder_leather_d_02.m2", + value = "rshoulder_leather_d_02.m2", + }, + { + fileId = "143453", + text = "rshoulder_leather_d_03.m2", + value = "rshoulder_leather_d_03.m2", + }, + { + fileId = "143454", + text = "rshoulder_leather_draenei_b_01.m2", + value = "rshoulder_leather_draenei_b_01.m2", + }, + { + fileId = "143455", + text = "rshoulder_leather_draenei_b_02.m2", + value = "rshoulder_leather_draenei_b_02.m2", + }, + { + fileId = "143456", + text = "rshoulder_leather_dungeondruid_a_01.m2", + value = "rshoulder_leather_dungeondruid_a_01.m2", + }, + { + fileId = "143457", + text = "rshoulder_leather_dungeondruid_b_01.m2", + value = "rshoulder_leather_dungeondruid_b_01.m2", + }, + { + fileId = "238468", + text = "rshoulder_leather_dungeonleather_c_01.m2", + value = "rshoulder_leather_dungeonleather_c_01.m2", + }, + { + fileId = "340376", + text = "rshoulder_leather_dungeonleather_c_02.m2", + value = "rshoulder_leather_dungeonleather_c_02.m2", + }, + { + fileId = "143458", + text = "rshoulder_leather_dungeonrogue_b_01.m2", + value = "rshoulder_leather_dungeonrogue_b_01.m2", + }, + { + fileId = "143459", + text = "rshoulder_leather_horde_a_05.m2", + value = "rshoulder_leather_horde_a_05.m2", + }, + { + fileId = "143460", + text = "rshoulder_leather_horde_b_03.m2", + value = "rshoulder_leather_horde_b_03.m2", + }, + { + fileId = "143461", + text = "rshoulder_leather_northrend_b_01.m2", + value = "rshoulder_leather_northrend_b_01.m2", + }, + { + fileId = "143462", + text = "rshoulder_leather_northrend_b_02.m2", + value = "rshoulder_leather_northrend_b_02.m2", + }, + { + fileId = "143463", + text = "rshoulder_leather_northrend_b_03.m2", + value = "rshoulder_leather_northrend_b_03.m2", + }, + { + fileId = "143464", + text = "rshoulder_leather_northrend_c_01.m2", + value = "rshoulder_leather_northrend_c_01.m2", + }, + { + fileId = "143465", + text = "rshoulder_leather_northrend_c_02.m2", + value = "rshoulder_leather_northrend_c_02.m2", + }, + { + fileId = "143466", + text = "rshoulder_leather_northrend_d_01.m2", + value = "rshoulder_leather_northrend_d_01.m2", + }, + { + fileId = "143467", + text = "rshoulder_leather_pvpalliance_a_01.m2", + value = "rshoulder_leather_pvpalliance_a_01.m2", + }, + { + fileId = "238469", + text = "rshoulder_leather_pvpdruid_b_01.m2", + value = "rshoulder_leather_pvpdruid_b_01.m2", + }, + { + fileId = "294396", + text = "rshoulder_leather_pvpdruid_b_02.m2", + value = "rshoulder_leather_pvpdruid_b_02.m2", + }, + { + fileId = "304544", + text = "rshoulder_leather_pvpdruid_b_03.m2", + value = "rshoulder_leather_pvpdruid_b_03.m2", + }, + { + fileId = "348779", + text = "rshoulder_leather_pvpdruid_b_04.m2", + value = "rshoulder_leather_pvpdruid_b_04.m2", + }, + { + fileId = "143468", + text = "rshoulder_leather_pvphorde_a_01.m2", + value = "rshoulder_leather_pvphorde_a_01.m2", + }, + { + fileId = "143469", + text = "rshoulder_leather_pvphorde_c_01.m2", + value = "rshoulder_leather_pvphorde_c_01.m2", + }, + { + fileId = "238470", + text = "rshoulder_leather_pvprogue_b_01.m2", + value = "rshoulder_leather_pvprogue_b_01.m2", + }, + { + fileId = "254607", + text = "rshoulder_leather_pvprogue_b_02.m2", + value = "rshoulder_leather_pvprogue_b_02.m2", + }, + { + fileId = "304493", + text = "rshoulder_leather_pvprogue_b_03.m2", + value = "rshoulder_leather_pvprogue_b_03.m2", + }, + { + fileId = "346080", + text = "rshoulder_leather_pvprogue_b_04.m2", + value = "rshoulder_leather_pvprogue_b_04.m2", + }, + { + fileId = "143470", + text = "rshoulder_leather_raiddruid_a_01.m2", + value = "rshoulder_leather_raiddruid_a_01.m2", + }, + { + fileId = "143471", + text = "rshoulder_leather_raiddruid_b_01.m2", + value = "rshoulder_leather_raiddruid_b_01.m2", + }, + { + fileId = "143472", + text = "rshoulder_leather_raiddruid_c_01.m2", + value = "rshoulder_leather_raiddruid_c_01.m2", + }, + { + fileId = "238471", + text = "rshoulder_leather_raiddruid_c_02.m2", + value = "rshoulder_leather_raiddruid_c_02.m2", + }, + { + fileId = "143473", + text = "rshoulder_leather_raiddruid_d_01.m2", + value = "rshoulder_leather_raiddruid_d_01.m2", + }, + { + fileId = "143474", + text = "rshoulder_leather_raiddruid_e_01.m2", + value = "rshoulder_leather_raiddruid_e_01.m2", + }, + { + fileId = "143475", + text = "rshoulder_leather_raiddruid_f_01.m2", + value = "rshoulder_leather_raiddruid_f_01.m2", + }, + { + fileId = "249250", + text = "rshoulder_leather_raiddruid_g_01.m2", + value = "rshoulder_leather_raiddruid_g_01.m2", + }, + { + fileId = "336854", + text = "rshoulder_leather_raiddruid_h_01.m2", + value = "rshoulder_leather_raiddruid_h_01.m2", + }, + { + fileId = "143476", + text = "rshoulder_leather_raidrogue_a_01.m2", + value = "rshoulder_leather_raidrogue_a_01.m2", + }, + { + fileId = "143477", + text = "rshoulder_leather_raidrogue_b_01.m2", + value = "rshoulder_leather_raidrogue_b_01.m2", + }, + { + fileId = "143478", + text = "rshoulder_leather_raidrogue_c_01.m2", + value = "rshoulder_leather_raidrogue_c_01.m2", + }, + { + fileId = "238472", + text = "rshoulder_leather_raidrogue_c_02.m2", + value = "rshoulder_leather_raidrogue_c_02.m2", + }, + { + fileId = "143479", + text = "rshoulder_leather_raidrogue_d_01.m2", + value = "rshoulder_leather_raidrogue_d_01.m2", + }, + { + fileId = "143480", + text = "rshoulder_leather_raidrogue_e_01.m2", + value = "rshoulder_leather_raidrogue_e_01.m2", + }, + { + fileId = "143481", + text = "rshoulder_leather_raidrogue_f_01.m2", + value = "rshoulder_leather_raidrogue_f_01.m2", + }, + { + fileId = "143482", + text = "rshoulder_leather_raidrogue_g_01.m2", + value = "rshoulder_leather_raidrogue_g_01.m2", + }, + { + fileId = "335617", + text = "rshoulder_leather_raidrogue_h_01.m2", + value = "rshoulder_leather_raidrogue_h_01.m2", + }, + { + fileId = "143483", + text = "rshoulder_leather_sunwell_d_01.m2", + value = "rshoulder_leather_sunwell_d_01.m2", + }, + { + fileId = "143484", + text = "rshoulder_leather_zulaman_d_01.m2", + value = "rshoulder_leather_zulaman_d_01.m2", + }, + { + fileId = "143485", + text = "rshoulder_leather_zulaman_d_03.m2", + value = "rshoulder_leather_zulaman_d_03.m2", + }, + { + fileId = "143486", + text = "rshoulder_mail_a_01.m2", + value = "rshoulder_mail_a_01.m2", + }, + { + fileId = "143487", + text = "rshoulder_mail_a_02.m2", + value = "rshoulder_mail_a_02.m2", + }, + { + fileId = "143488", + text = "rshoulder_mail_a_03.m2", + value = "rshoulder_mail_a_03.m2", + }, + { + fileId = "143489", + text = "rshoulder_mail_ahnqiraj_a_01.m2", + value = "rshoulder_mail_ahnqiraj_a_01.m2", + }, + { + fileId = "317488", + text = "rshoulder_mail_argentalliance_d_01.m2", + value = "rshoulder_mail_argentalliance_d_01.m2", + }, + { + fileId = "315306", + text = "rshoulder_mail_argenthorde_d_01.m2", + value = "rshoulder_mail_argenthorde_d_01.m2", + }, + { + fileId = "143490", + text = "rshoulder_mail_b_01.m2", + value = "rshoulder_mail_b_01.m2", + }, + { + fileId = "143491", + text = "rshoulder_mail_b_02.m2", + value = "rshoulder_mail_b_02.m2", + }, + { + fileId = "143492", + text = "rshoulder_mail_b_03.m2", + value = "rshoulder_mail_b_03.m2", + }, + { + fileId = "143493", + text = "rshoulder_mail_b_05.m2", + value = "rshoulder_mail_b_05.m2", + }, + { + fileId = "143494", + text = "rshoulder_mail_blood_b_01.m2", + value = "rshoulder_mail_blood_b_01.m2", + }, + { + fileId = "143495", + text = "rshoulder_mail_c_01.m2", + value = "rshoulder_mail_c_01.m2", + }, + { + fileId = "143496", + text = "rshoulder_mail_c_02.m2", + value = "rshoulder_mail_c_02.m2", + }, + { + fileId = "143497", + text = "rshoulder_mail_c_03.m2", + value = "rshoulder_mail_c_03.m2", + }, + { + fileId = "143498", + text = "rshoulder_mail_c_04.m2", + value = "rshoulder_mail_c_04.m2", + }, + { + fileId = "143499", + text = "rshoulder_mail_d_01.m2", + value = "rshoulder_mail_d_01.m2", + }, + { + fileId = "143500", + text = "rshoulder_mail_d_02.m2", + value = "rshoulder_mail_d_02.m2", + }, + { + fileId = "143501", + text = "rshoulder_mail_draenei_b_01.m2", + value = "rshoulder_mail_draenei_b_01.m2", + }, + { + fileId = "143502", + text = "rshoulder_mail_draenei_b_02.m2", + value = "rshoulder_mail_draenei_b_02.m2", + }, + { + fileId = "143503", + text = "rshoulder_mail_dungeonhunter_a_01.m2", + value = "rshoulder_mail_dungeonhunter_a_01.m2", + }, + { + fileId = "143504", + text = "rshoulder_mail_dungeonhunter_b_02.m2", + value = "rshoulder_mail_dungeonhunter_b_02.m2", + }, + { + fileId = "238473", + text = "rshoulder_mail_dungeonmail_c_01.m2", + value = "rshoulder_mail_dungeonmail_c_01.m2", + }, + { + fileId = "342404", + text = "rshoulder_mail_dungeonmail_c_02.m2", + value = "rshoulder_mail_dungeonmail_c_02.m2", + }, + { + fileId = "143505", + text = "rshoulder_mail_dungeonshaman_a_01.m2", + value = "rshoulder_mail_dungeonshaman_a_01.m2", + }, + { + fileId = "143506", + text = "rshoulder_mail_dungeonshaman_b_01.m2", + value = "rshoulder_mail_dungeonshaman_b_01.m2", + }, + { + fileId = "143507", + text = "rshoulder_mail_northrend_b_01.m2", + value = "rshoulder_mail_northrend_b_01.m2", + }, + { + fileId = "143508", + text = "rshoulder_mail_northrend_b_02.m2", + value = "rshoulder_mail_northrend_b_02.m2", + }, + { + fileId = "143509", + text = "rshoulder_mail_northrend_b_03.m2", + value = "rshoulder_mail_northrend_b_03.m2", + }, + { + fileId = "143510", + text = "rshoulder_mail_northrend_b_04.m2", + value = "rshoulder_mail_northrend_b_04.m2", + }, + { + fileId = "143511", + text = "rshoulder_mail_northrend_d_01.m2", + value = "rshoulder_mail_northrend_d_01.m2", + }, + { + fileId = "143512", + text = "rshoulder_mail_pvpalliance_a_01.m2", + value = "rshoulder_mail_pvpalliance_a_01.m2", + }, + { + fileId = "143513", + text = "rshoulder_mail_pvpalliance_c_01.m2", + value = "rshoulder_mail_pvpalliance_c_01.m2", + }, + { + fileId = "143514", + text = "rshoulder_mail_pvphorde_a_01.m2", + value = "rshoulder_mail_pvphorde_a_01.m2", + }, + { + fileId = "143515", + text = "rshoulder_mail_pvphorde_c_01.m2", + value = "rshoulder_mail_pvphorde_c_01.m2", + }, + { + fileId = "238474", + text = "rshoulder_mail_pvphunter_b_01.m2", + value = "rshoulder_mail_pvphunter_b_01.m2", + }, + { + fileId = "254168", + text = "rshoulder_mail_pvphunter_b_02.m2", + value = "rshoulder_mail_pvphunter_b_02.m2", + }, + { + fileId = "307201", + text = "rshoulder_mail_pvphunter_b_03.m2", + value = "rshoulder_mail_pvphunter_b_03.m2", + }, + { + fileId = "344348", + text = "rshoulder_mail_pvphunter_b_04.m2", + value = "rshoulder_mail_pvphunter_b_04.m2", + }, + { + fileId = "238475", + text = "rshoulder_mail_pvpshaman_b_01.m2", + value = "rshoulder_mail_pvpshaman_b_01.m2", + }, + { + fileId = "298611", + text = "rshoulder_mail_pvpshaman_b_02.m2", + value = "rshoulder_mail_pvpshaman_b_02.m2", + }, + { + fileId = "313413", + text = "rshoulder_mail_pvpshaman_b_03.m2", + value = "rshoulder_mail_pvpshaman_b_03.m2", + }, + { + fileId = "349985", + text = "rshoulder_mail_pvpshaman_b_04.m2", + value = "rshoulder_mail_pvpshaman_b_04.m2", + }, + { + fileId = "143516", + text = "rshoulder_mail_raidhunter_a_01.m2", + value = "rshoulder_mail_raidhunter_a_01.m2", + }, + { + fileId = "143517", + text = "rshoulder_mail_raidhunter_b_01.m2", + value = "rshoulder_mail_raidhunter_b_01.m2", + }, + { + fileId = "143518", + text = "rshoulder_mail_raidhunter_c_01.m2", + value = "rshoulder_mail_raidhunter_c_01.m2", + }, + { + fileId = "238476", + text = "rshoulder_mail_raidhunter_c_02.m2", + value = "rshoulder_mail_raidhunter_c_02.m2", + }, + { + fileId = "143519", + text = "rshoulder_mail_raidhunter_d_01.m2", + value = "rshoulder_mail_raidhunter_d_01.m2", + }, + { + fileId = "143520", + text = "rshoulder_mail_raidhunter_e_01.m2", + value = "rshoulder_mail_raidhunter_e_01.m2", + }, + { + fileId = "143521", + text = "rshoulder_mail_raidhunter_f_01.m2", + value = "rshoulder_mail_raidhunter_f_01.m2", + }, + { + fileId = "143522", + text = "rshoulder_mail_raidhunter_g_01.m2", + value = "rshoulder_mail_raidhunter_g_01.m2", + }, + { + fileId = "337192", + text = "rshoulder_mail_raidhunter_h_01.m2", + value = "rshoulder_mail_raidhunter_h_01.m2", + }, + { + fileId = "143523", + text = "rshoulder_mail_raidshaman_a_01.m2", + value = "rshoulder_mail_raidshaman_a_01.m2", + }, + { + fileId = "143524", + text = "rshoulder_mail_raidshaman_b_01.m2", + value = "rshoulder_mail_raidshaman_b_01.m2", + }, + { + fileId = "238477", + text = "rshoulder_mail_raidshaman_c_02.m2", + value = "rshoulder_mail_raidshaman_c_02.m2", + }, + { + fileId = "143525", + text = "rshoulder_mail_raidshaman_d_01.m2", + value = "rshoulder_mail_raidshaman_d_01.m2", + }, + { + fileId = "143526", + text = "rshoulder_mail_raidshaman_e_01.m2", + value = "rshoulder_mail_raidshaman_e_01.m2", + }, + { + fileId = "143527", + text = "rshoulder_mail_raidshaman_f_01.m2", + value = "rshoulder_mail_raidshaman_f_01.m2", + }, + { + fileId = "249251", + text = "rshoulder_mail_raidshaman_g_01.m2", + value = "rshoulder_mail_raidshaman_g_01.m2", + }, + { + fileId = "349164", + text = "rshoulder_mail_raidshaman_h_01.m2", + value = "rshoulder_mail_raidshaman_h_01.m2", + }, + { + fileId = "353040", + text = "rshoulder_mail_raidshaman_h_02.m2", + value = "rshoulder_mail_raidshaman_h_02.m2", + }, + { + fileId = "143528", + text = "rshoulder_mail_sunwell_d_01.m2", + value = "rshoulder_mail_sunwell_d_01.m2", + }, + { + fileId = "143529", + text = "rshoulder_mail_zulaman_d_01.m2", + value = "rshoulder_mail_zulaman_d_01.m2", + }, + { + fileId = "143530", + text = "rshoulder_mail_zulaman_d_03.m2", + value = "rshoulder_mail_zulaman_d_03.m2", + }, + { + fileId = "143531", + text = "rshoulder_plate_a_01.m2", + value = "rshoulder_plate_a_01.m2", + }, + { + fileId = "143532", + text = "rshoulder_plate_a_02.m2", + value = "rshoulder_plate_a_02.m2", + }, + { + fileId = "143533", + text = "rshoulder_plate_a_02ironforgeguard.m2", + value = "rshoulder_plate_a_02ironforgeguard.m2", + }, + { + fileId = "143534", + text = "rshoulder_plate_a_03.m2", + value = "rshoulder_plate_a_03.m2", + }, + { + fileId = "143535", + text = "rshoulder_plate_a_04.m2", + value = "rshoulder_plate_a_04.m2", + }, + { + fileId = "143536", + text = "rshoulder_plate_ahnqiraj_a_01.m2", + value = "rshoulder_plate_ahnqiraj_a_01.m2", + }, + { + fileId = "311766", + text = "rshoulder_plate_argentalliance_d_01.m2", + value = "rshoulder_plate_argentalliance_d_01.m2", + }, + { + fileId = "315692", + text = "rshoulder_plate_argenthorde_d_01.m2", + value = "rshoulder_plate_argenthorde_d_01.m2", + }, + { + fileId = "143537", + text = "rshoulder_plate_b_01.m2", + value = "rshoulder_plate_b_01.m2", + }, + { + fileId = "143538", + text = "rshoulder_plate_b_02.m2", + value = "rshoulder_plate_b_02.m2", + }, + { + fileId = "143539", + text = "rshoulder_plate_b_03.m2", + value = "rshoulder_plate_b_03.m2", + }, + { + fileId = "143540", + text = "rshoulder_plate_b_04.m2", + value = "rshoulder_plate_b_04.m2", + }, + { + fileId = "143541", + text = "rshoulder_plate_b_05.m2", + value = "rshoulder_plate_b_05.m2", + }, + { + fileId = "143542", + text = "rshoulder_plate_bloodknight_d_02.m2", + value = "rshoulder_plate_bloodknight_d_02.m2", + }, + { + fileId = "143543", + text = "rshoulder_plate_c_01.m2", + value = "rshoulder_plate_c_01.m2", + }, + { + fileId = "143544", + text = "rshoulder_plate_c_03.m2", + value = "rshoulder_plate_c_03.m2", + }, + { + fileId = "143545", + text = "rshoulder_plate_c_04.m2", + value = "rshoulder_plate_c_04.m2", + }, + { + fileId = "143546", + text = "rshoulder_plate_c_05.m2", + value = "rshoulder_plate_c_05.m2", + }, + { + fileId = "143547", + text = "rshoulder_plate_d_01.m2", + value = "rshoulder_plate_d_01.m2", + }, + { + fileId = "143548", + text = "rshoulder_plate_d_02.m2", + value = "rshoulder_plate_d_02.m2", + }, + { + fileId = "143549", + text = "rshoulder_plate_d_03.m2", + value = "rshoulder_plate_d_03.m2", + }, + { + fileId = "143550", + text = "rshoulder_plate_d_04.m2", + value = "rshoulder_plate_d_04.m2", + }, + { + fileId = "143551", + text = "rshoulder_plate_d_05.m2", + value = "rshoulder_plate_d_05.m2", + }, + { + fileId = "143552", + text = "rshoulder_plate_d_06.m2", + value = "rshoulder_plate_d_06.m2", + }, + { + fileId = "238478", + text = "rshoulder_plate_deathknight_b_01.m2", + value = "rshoulder_plate_deathknight_b_01.m2", + }, + { + fileId = "143553", + text = "rshoulder_plate_draeneiguard_a_01.m2", + value = "rshoulder_plate_draeneiguard_a_01.m2", + }, + { + fileId = "143554", + text = "rshoulder_plate_draeneiguard_b_01.m2", + value = "rshoulder_plate_draeneiguard_b_01.m2", + }, + { + fileId = "143555", + text = "rshoulder_plate_dungeonpaladin_a_01.m2", + value = "rshoulder_plate_dungeonpaladin_a_01.m2", + }, + { + fileId = "143556", + text = "rshoulder_plate_dungeonpaladin_b_01.m2", + value = "rshoulder_plate_dungeonpaladin_b_01.m2", + }, + { + fileId = "143557", + text = "rshoulder_plate_dungeonplate_c_01.m2", + value = "rshoulder_plate_dungeonplate_c_01.m2", + }, + { + fileId = "343648", + text = "rshoulder_plate_dungeonplate_c_02.m2", + value = "rshoulder_plate_dungeonplate_c_02.m2", + }, + { + fileId = "143558", + text = "rshoulder_plate_dungeonwarrior_a_01.m2", + value = "rshoulder_plate_dungeonwarrior_a_01.m2", + }, + { + fileId = "143559", + text = "rshoulder_plate_dungeonwarrior_b_01.m2", + value = "rshoulder_plate_dungeonwarrior_b_01.m2", + }, + { + fileId = "143560", + text = "rshoulder_plate_haremmatron_d_01.m2", + value = "rshoulder_plate_haremmatron_d_01.m2", + }, + { + fileId = "143561", + text = "rshoulder_plate_horde_c_05.m2", + value = "rshoulder_plate_horde_c_05.m2", + }, + { + fileId = "143562", + text = "rshoulder_plate_horde_d_02.m2", + value = "rshoulder_plate_horde_d_02.m2", + }, + { + fileId = "143563", + text = "rshoulder_plate_hyjal_d_04.m2", + value = "rshoulder_plate_hyjal_d_04.m2", + }, + { + fileId = "143564", + text = "rshoulder_plate_hyjal_d_05.m2", + value = "rshoulder_plate_hyjal_d_05.m2", + }, + { + fileId = "143565", + text = "rshoulder_plate_northrend_b_01.m2", + value = "rshoulder_plate_northrend_b_01.m2", + }, + { + fileId = "143566", + text = "rshoulder_plate_northrend_b_02.m2", + value = "rshoulder_plate_northrend_b_02.m2", + }, + { + fileId = "143567", + text = "rshoulder_plate_northrend_b_03.m2", + value = "rshoulder_plate_northrend_b_03.m2", + }, + { + fileId = "143568", + text = "rshoulder_plate_northrend_c_01.m2", + value = "rshoulder_plate_northrend_c_01.m2", + }, + { + fileId = "143569", + text = "rshoulder_plate_northrend_d_01.m2", + value = "rshoulder_plate_northrend_d_01.m2", + }, + { + fileId = "143570", + text = "rshoulder_plate_pvpalliance_a_01.m2", + value = "rshoulder_plate_pvpalliance_a_01.m2", + }, + { + fileId = "238479", + text = "rshoulder_plate_pvpdeathknight_b_01.m2", + value = "rshoulder_plate_pvpdeathknight_b_01.m2", + }, + { + fileId = "254906", + text = "rshoulder_plate_pvpdeathknight_b_02.m2", + value = "rshoulder_plate_pvpdeathknight_b_02.m2", + }, + { + fileId = "304743", + text = "rshoulder_plate_pvpdeathknight_b_03.m2", + value = "rshoulder_plate_pvpdeathknight_b_03.m2", + }, + { + fileId = "343846", + text = "rshoulder_plate_pvpdeathknight_b_04.m2", + value = "rshoulder_plate_pvpdeathknight_b_04.m2", + }, + { + fileId = "143571", + text = "rshoulder_plate_pvphorde_a_01.m2", + value = "rshoulder_plate_pvphorde_a_01.m2", + }, + { + fileId = "238480", + text = "rshoulder_plate_pvppaladin_b_01.m2", + value = "rshoulder_plate_pvppaladin_b_01.m2", + }, + { + fileId = "254760", + text = "rshoulder_plate_pvppaladin_b_02.m2", + value = "rshoulder_plate_pvppaladin_b_02.m2", + }, + { + fileId = "304826", + text = "rshoulder_plate_pvppaladin_b_03.m2", + value = "rshoulder_plate_pvppaladin_b_03.m2", + }, + { + fileId = "346081", + text = "rshoulder_plate_pvppaladin_b_04.m2", + value = "rshoulder_plate_pvppaladin_b_04.m2", + }, + { + fileId = "238481", + text = "rshoulder_plate_pvpwarrior_b_01.m2", + value = "rshoulder_plate_pvpwarrior_b_01.m2", + }, + { + fileId = "254359", + text = "rshoulder_plate_pvpwarrior_b_02.m2", + value = "rshoulder_plate_pvpwarrior_b_02.m2", + }, + { + fileId = "304451", + text = "rshoulder_plate_pvpwarrior_b_03.m2", + value = "rshoulder_plate_pvpwarrior_b_03.m2", + }, + { + fileId = "345730", + text = "rshoulder_plate_pvpwarrior_b_04.m2", + value = "rshoulder_plate_pvpwarrior_b_04.m2", + }, + { + fileId = "238482", + text = "rshoulder_plate_pvpwarrior_c_02.m2", + value = "rshoulder_plate_pvpwarrior_c_02.m2", + }, + { + fileId = "238483", + text = "rshoulder_plate_raiddeathknight_c_02.m2", + value = "rshoulder_plate_raiddeathknight_c_02.m2", + }, + { + fileId = "143572", + text = "rshoulder_plate_raiddeathknight_g_01.m2", + value = "rshoulder_plate_raiddeathknight_g_01.m2", + }, + { + fileId = "337701", + text = "rshoulder_plate_raiddeathknight_h_01.m2", + value = "rshoulder_plate_raiddeathknight_h_01.m2", + }, + { + fileId = "143573", + text = "rshoulder_plate_raidpaladin_a_01.m2", + value = "rshoulder_plate_raidpaladin_a_01.m2", + }, + { + fileId = "143574", + text = "rshoulder_plate_raidpaladin_b_01.m2", + value = "rshoulder_plate_raidpaladin_b_01.m2", + }, + { + fileId = "143575", + text = "rshoulder_plate_raidpaladin_c_01.m2", + value = "rshoulder_plate_raidpaladin_c_01.m2", + }, + { + fileId = "143576", + text = "rshoulder_plate_raidpaladin_d_01.m2", + value = "rshoulder_plate_raidpaladin_d_01.m2", + }, + { + fileId = "143577", + text = "rshoulder_plate_raidpaladin_e_01.m2", + value = "rshoulder_plate_raidpaladin_e_01.m2", + }, + { + fileId = "143578", + text = "rshoulder_plate_raidpaladin_f_01.m2", + value = "rshoulder_plate_raidpaladin_f_01.m2", + }, + { + fileId = "238484", + text = "rshoulder_plate_raidpaladin_g_01.m2", + value = "rshoulder_plate_raidpaladin_g_01.m2", + }, + { + fileId = "341247", + text = "rshoulder_plate_raidpaladin_h_01.m2", + value = "rshoulder_plate_raidpaladin_h_01.m2", + }, + { + fileId = "143583", + text = "rshoulder_plate_raidwarrior_a_01.m2", + value = "rshoulder_plate_raidwarrior_a_01.m2", + }, + { + fileId = "143584", + text = "rshoulder_plate_raidwarrior_b_01.m2", + value = "rshoulder_plate_raidwarrior_b_01.m2", + }, + { + fileId = "143585", + text = "rshoulder_plate_raidwarrior_c_01.m2", + value = "rshoulder_plate_raidwarrior_c_01.m2", + }, + { + fileId = "143586", + text = "rshoulder_plate_raidwarrior_d_01.m2", + value = "rshoulder_plate_raidwarrior_d_01.m2", + }, + { + fileId = "143587", + text = "rshoulder_plate_raidwarrior_e_01.m2", + value = "rshoulder_plate_raidwarrior_e_01.m2", + }, + { + fileId = "143588", + text = "rshoulder_plate_raidwarrior_f_01.m2", + value = "rshoulder_plate_raidwarrior_f_01.m2", + }, + { + fileId = "251563", + text = "rshoulder_plate_raidwarrior_g_01.m2", + value = "rshoulder_plate_raidwarrior_g_01.m2", + }, + { + fileId = "331371", + text = "rshoulder_plate_raidwarrior_h_01.m2", + value = "rshoulder_plate_raidwarrior_h_01.m2", + }, + { + fileId = "143589", + text = "rshoulder_plate_sunwell_c_01.m2", + value = "rshoulder_plate_sunwell_c_01.m2", + }, + { + fileId = "143590", + text = "rshoulder_plate_sunwell_d_01.m2", + value = "rshoulder_plate_sunwell_d_01.m2", + }, + { + fileId = "143591", + text = "rshoulder_plate_zulaman_d_01.m2", + value = "rshoulder_plate_zulaman_d_01.m2", + }, + { + fileId = "143592", + text = "rshoulder_plate_zulaman_d_03.m2", + value = "rshoulder_plate_zulaman_d_03.m2", + }, + { + fileId = "306511", + text = "rshoulder_pvppriest_b_03.m2", + value = "rshoulder_pvppriest_b_03.m2", + }, + { + fileId = "143593", + text = "rshoulder_raiddruid_b_01.m2", + value = "rshoulder_raiddruid_b_01.m2", + }, + { + fileId = "143594", + text = "rshoulder_robe_a_01.m2", + value = "rshoulder_robe_a_01.m2", + }, + { + fileId = "143595", + text = "rshoulder_robe_a_02.m2", + value = "rshoulder_robe_a_02.m2", + }, + { + fileId = "143596", + text = "rshoulder_robe_a_03.m2", + value = "rshoulder_robe_a_03.m2", + }, + { + fileId = "143597", + text = "rshoulder_robe_ahnqiraj_a_01.m2", + value = "rshoulder_robe_ahnqiraj_a_01.m2", + }, + { + fileId = "314972", + text = "rshoulder_robe_argentalliance_d_01.m2", + value = "rshoulder_robe_argentalliance_d_01.m2", + }, + { + fileId = "317629", + text = "rshoulder_robe_argenthorde_d_01.m2", + value = "rshoulder_robe_argenthorde_d_01.m2", + }, + { + fileId = "143598", + text = "rshoulder_robe_b_01.m2", + value = "rshoulder_robe_b_01.m2", + }, + { + fileId = "143599", + text = "rshoulder_robe_b_02.m2", + value = "rshoulder_robe_b_02.m2", + }, + { + fileId = "143600", + text = "rshoulder_robe_b_03.m2", + value = "rshoulder_robe_b_03.m2", + }, + { + fileId = "143601", + text = "rshoulder_robe_b_04.m2", + value = "rshoulder_robe_b_04.m2", + }, + { + fileId = "143602", + text = "rshoulder_robe_c_01.m2", + value = "rshoulder_robe_c_01.m2", + }, + { + fileId = "143603", + text = "rshoulder_robe_c_02.m2", + value = "rshoulder_robe_c_02.m2", + }, + { + fileId = "143604", + text = "rshoulder_robe_c_03.m2", + value = "rshoulder_robe_c_03.m2", + }, + { + fileId = "143605", + text = "rshoulder_robe_d_01.m2", + value = "rshoulder_robe_d_01.m2", + }, + { + fileId = "143606", + text = "rshoulder_robe_d_04.m2", + value = "rshoulder_robe_d_04.m2", + }, + { + fileId = "143607", + text = "rshoulder_robe_dungeonmage_a_01.m2", + value = "rshoulder_robe_dungeonmage_a_01.m2", + }, + { + fileId = "143608", + text = "rshoulder_robe_dungeonmage_b_01.m2", + value = "rshoulder_robe_dungeonmage_b_01.m2", + }, + { + fileId = "143609", + text = "rshoulder_robe_dungeonpriest_a_01.m2", + value = "rshoulder_robe_dungeonpriest_a_01.m2", + }, + { + fileId = "143610", + text = "rshoulder_robe_dungeonpriest_b_01.m2", + value = "rshoulder_robe_dungeonpriest_b_01.m2", + }, + { + fileId = "238485", + text = "rshoulder_robe_dungeonrobe_c_01.m2", + value = "rshoulder_robe_dungeonrobe_c_01.m2", + }, + { + fileId = "341485", + text = "rshoulder_robe_dungeonrobe_c_02.m2", + value = "rshoulder_robe_dungeonrobe_c_02.m2", + }, + { + fileId = "143611", + text = "rshoulder_robe_dungeonwarlock_a_01.m2", + value = "rshoulder_robe_dungeonwarlock_a_01.m2", + }, + { + fileId = "143612", + text = "rshoulder_robe_dungeonwarlock_b_01.m2", + value = "rshoulder_robe_dungeonwarlock_b_01.m2", + }, + { + fileId = "143613", + text = "rshoulder_robe_holiday_summerfest_a_01.m2", + value = "rshoulder_robe_holiday_summerfest_a_01.m2", + }, + { + fileId = "143614", + text = "rshoulder_robe_horde_a_03.m2", + value = "rshoulder_robe_horde_a_03.m2", + }, + { + fileId = "143615", + text = "rshoulder_robe_horde_d_01.m2", + value = "rshoulder_robe_horde_d_01.m2", + }, + { + fileId = "143616", + text = "rshoulder_robe_hyjal_d_04.m2", + value = "rshoulder_robe_hyjal_d_04.m2", + }, + { + fileId = "143617", + text = "rshoulder_robe_northrend_b_01.m2", + value = "rshoulder_robe_northrend_b_01.m2", + }, + { + fileId = "238486", + text = "rshoulder_robe_northrend_b_02.m2", + value = "rshoulder_robe_northrend_b_02.m2", + }, + { + fileId = "143618", + text = "rshoulder_robe_northrend_b_03.m2", + value = "rshoulder_robe_northrend_b_03.m2", + }, + { + fileId = "143619", + text = "rshoulder_robe_northrend_d_01.m2", + value = "rshoulder_robe_northrend_d_01.m2", + }, + { + fileId = "238487", + text = "rshoulder_robe_plague_a_01.m2", + value = "rshoulder_robe_plague_a_01.m2", + }, + { + fileId = "143620", + text = "rshoulder_robe_pvpalliance_a_01.m2", + value = "rshoulder_robe_pvpalliance_a_01.m2", + }, + { + fileId = "143621", + text = "rshoulder_robe_pvpalliance_c_01.m2", + value = "rshoulder_robe_pvpalliance_c_01.m2", + }, + { + fileId = "143622", + text = "rshoulder_robe_pvphorde_a_01.m2", + value = "rshoulder_robe_pvphorde_a_01.m2", + }, + { + fileId = "143623", + text = "rshoulder_robe_pvphorde_c_01.m2", + value = "rshoulder_robe_pvphorde_c_01.m2", + }, + { + fileId = "238488", + text = "rshoulder_robe_pvpwarlock_b_01.m2", + value = "rshoulder_robe_pvpwarlock_b_01.m2", + }, + { + fileId = "254169", + text = "rshoulder_robe_pvpwarlock_b_02.m2", + value = "rshoulder_robe_pvpwarlock_b_02.m2", + }, + { + fileId = "305934", + text = "rshoulder_robe_pvpwarlock_b_03.m2", + value = "rshoulder_robe_pvpwarlock_b_03.m2", + }, + { + fileId = "350614", + text = "rshoulder_robe_pvpwarlock_b_04.m2", + value = "rshoulder_robe_pvpwarlock_b_04.m2", + }, + { + fileId = "143624", + text = "rshoulder_robe_raid_a_01.m2", + value = "rshoulder_robe_raid_a_01.m2", + }, + { + fileId = "143625", + text = "rshoulder_robe_raidmage_a_01.m2", + value = "rshoulder_robe_raidmage_a_01.m2", + }, + { + fileId = "143626", + text = "rshoulder_robe_raidmage_b_01.m2", + value = "rshoulder_robe_raidmage_b_01.m2", + }, + { + fileId = "143627", + text = "rshoulder_robe_raidmage_c_01.m2", + value = "rshoulder_robe_raidmage_c_01.m2", + }, + { + fileId = "238489", + text = "rshoulder_robe_raidmage_c_02.m2", + value = "rshoulder_robe_raidmage_c_02.m2", + }, + { + fileId = "143628", + text = "rshoulder_robe_raidmage_d_01.m2", + value = "rshoulder_robe_raidmage_d_01.m2", + }, + { + fileId = "143629", + text = "rshoulder_robe_raidmage_e_01.m2", + value = "rshoulder_robe_raidmage_e_01.m2", + }, + { + fileId = "238490", + text = "rshoulder_robe_raidmage_e_02.m2", + value = "rshoulder_robe_raidmage_e_02.m2", + }, + { + fileId = "143630", + text = "rshoulder_robe_raidmage_f_01.m2", + value = "rshoulder_robe_raidmage_f_01.m2", + }, + { + fileId = "143631", + text = "rshoulder_robe_raidmage_g_01.m2", + value = "rshoulder_robe_raidmage_g_01.m2", + }, + { + fileId = "340076", + text = "rshoulder_robe_raidmage_h_01.m2", + value = "rshoulder_robe_raidmage_h_01.m2", + }, + { + fileId = "143632", + text = "rshoulder_robe_raidpriest_a_01.m2", + value = "rshoulder_robe_raidpriest_a_01.m2", + }, + { + fileId = "143633", + text = "rshoulder_robe_raidpriest_b_01.m2", + value = "rshoulder_robe_raidpriest_b_01.m2", + }, + { + fileId = "143634", + text = "rshoulder_robe_raidpriest_c_01.m2", + value = "rshoulder_robe_raidpriest_c_01.m2", + }, + { + fileId = "143635", + text = "rshoulder_robe_raidpriest_d_01.m2", + value = "rshoulder_robe_raidpriest_d_01.m2", + }, + { + fileId = "143636", + text = "rshoulder_robe_raidpriest_e_01.m2", + value = "rshoulder_robe_raidpriest_e_01.m2", + }, + { + fileId = "143637", + text = "rshoulder_robe_raidpriest_f_01.m2", + value = "rshoulder_robe_raidpriest_f_01.m2", + }, + { + fileId = "143638", + text = "rshoulder_robe_raidpriest_g_01.m2", + value = "rshoulder_robe_raidpriest_g_01.m2", + }, + { + fileId = "341800", + text = "rshoulder_robe_raidpriest_h_01.m2", + value = "rshoulder_robe_raidpriest_h_01.m2", + }, + { + fileId = "143639", + text = "rshoulder_robe_raidshaman_c_01.m2", + value = "rshoulder_robe_raidshaman_c_01.m2", + }, + { + fileId = "143640", + text = "rshoulder_robe_raidwarlock_a_01.m2", + value = "rshoulder_robe_raidwarlock_a_01.m2", + }, + { + fileId = "143641", + text = "rshoulder_robe_raidwarlock_b_01.m2", + value = "rshoulder_robe_raidwarlock_b_01.m2", + }, + { + fileId = "143642", + text = "rshoulder_robe_raidwarlock_c_01.m2", + value = "rshoulder_robe_raidwarlock_c_01.m2", + }, + { + fileId = "238491", + text = "rshoulder_robe_raidwarlock_c_02.m2", + value = "rshoulder_robe_raidwarlock_c_02.m2", + }, + { + fileId = "143643", + text = "rshoulder_robe_raidwarlock_d_01.m2", + value = "rshoulder_robe_raidwarlock_d_01.m2", + }, + { + fileId = "143644", + text = "rshoulder_robe_raidwarlock_e_01.m2", + value = "rshoulder_robe_raidwarlock_e_01.m2", + }, + { + fileId = "143645", + text = "rshoulder_robe_raidwarlock_f_01.m2", + value = "rshoulder_robe_raidwarlock_f_01.m2", + }, + { + fileId = "143646", + text = "rshoulder_robe_raidwarlock_g_01.m2", + value = "rshoulder_robe_raidwarlock_g_01.m2", + }, + { + fileId = "339856", + text = "rshoulder_robe_raidwarlock_h_01.m2", + value = "rshoulder_robe_raidwarlock_h_01.m2", + }, + { + fileId = "143647", + text = "rshoulder_robe_sunwell_d_01.m2", + value = "rshoulder_robe_sunwell_d_01.m2", + }, + { + fileId = "143648", + text = "rshoulder_robe_zulaman_d_01.m2", + value = "rshoulder_robe_zulaman_d_01.m2", + }, + { + fileId = "143649", + text = "rshoulder_robe_zulaman_d_03.m2", + value = "rshoulder_robe_zulaman_d_03.m2", + }, + }, + text = "shoulder", + value = "shoulder", + }, + { + children = { + { + fileId = "144326", + text = "1htrollspear01.m2", + value = "1htrollspear01.m2", + }, + { + fileId = "144340", + text = "ashbringer02.m2", + value = "ashbringer02.m2", + }, + { + fileId = "144344", + text = "axe_1h_ahnqiraj_d_01.m2", + value = "axe_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "144345", + text = "axe_1h_ahnqiraj_d_02.m2", + value = "axe_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "298682", + text = "axe_1h_alliancecovenant_d_01.m2", + value = "axe_1h_alliancecovenant_d_01.m2", + }, + { + fileId = "294035", + text = "axe_1h_alliancecovenant_d_02.m2", + value = "axe_1h_alliancecovenant_d_02.m2", + }, + { + fileId = "144347", + text = "axe_1h_blacksmithing_d_01.m2", + value = "axe_1h_blacksmithing_d_01.m2", + }, + { + fileId = "144349", + text = "axe_1h_blacksmithing_d_02.m2", + value = "axe_1h_blacksmithing_d_02.m2", + }, + { + fileId = "144351", + text = "axe_1h_blacksmithing_d_03.m2", + value = "axe_1h_blacksmithing_d_03.m2", + }, + { + fileId = "144353", + text = "axe_1h_blackwing_a_01.m2", + value = "axe_1h_blackwing_a_01.m2", + }, + { + fileId = "144355", + text = "axe_1h_blackwing_a_02.m2", + value = "axe_1h_blackwing_a_02.m2", + }, + { + fileId = "144357", + text = "axe_1h_blood_a_01.m2", + value = "axe_1h_blood_a_01.m2", + }, + { + fileId = "144361", + text = "axe_1h_blood_a_02.m2", + value = "axe_1h_blood_a_02.m2", + }, + { + fileId = "144367", + text = "axe_1h_blood_a_03.m2", + value = "axe_1h_blood_a_03.m2", + }, + { + fileId = "144372", + text = "axe_1h_dalaran_d_01.m2", + value = "axe_1h_dalaran_d_01.m2", + }, + { + fileId = "144388", + text = "axe_1h_draenei_a_01.m2", + value = "axe_1h_draenei_a_01.m2", + }, + { + fileId = "144393", + text = "axe_1h_draenei_b_01.m2", + value = "axe_1h_draenei_b_01.m2", + }, + { + fileId = "144398", + text = "axe_1h_draenei_c_01.m2", + value = "axe_1h_draenei_c_01.m2", + }, + { + fileId = "144403", + text = "axe_1h_draenei_d_01.m2", + value = "axe_1h_draenei_d_01.m2", + }, + { + fileId = "144408", + text = "axe_1h_draktharon_d_01.m2", + value = "axe_1h_draktharon_d_01.m2", + }, + { + fileId = "144412", + text = "axe_1h_flint_a_01.m2", + value = "axe_1h_flint_a_01.m2", + }, + { + fileId = "144416", + text = "axe_1h_hatchet_a_01.m2", + value = "axe_1h_hatchet_a_01.m2", + }, + { + fileId = "144420", + text = "axe_1h_hatchet_a_02.m2", + value = "axe_1h_hatchet_a_02.m2", + }, + { + fileId = "144424", + text = "axe_1h_hatchet_a_03.m2", + value = "axe_1h_hatchet_a_03.m2", + }, + { + fileId = "144428", + text = "axe_1h_hatchet_b_01.m2", + value = "axe_1h_hatchet_b_01.m2", + }, + { + fileId = "144432", + text = "axe_1h_hatchet_b_02.m2", + value = "axe_1h_hatchet_b_02.m2", + }, + { + fileId = "144436", + text = "axe_1h_hatchet_b_03.m2", + value = "axe_1h_hatchet_b_03.m2", + }, + { + fileId = "144441", + text = "axe_1h_hatchet_b_04holy.m2", + value = "axe_1h_hatchet_b_04holy.m2", + }, + { + fileId = "144442", + text = "axe_1h_hatchet_c_01.m2", + value = "axe_1h_hatchet_c_01.m2", + }, + { + fileId = "144446", + text = "axe_1h_hatchet_c_02.m2", + value = "axe_1h_hatchet_c_02.m2", + }, + { + fileId = "144450", + text = "axe_1h_hatchet_c_03.m2", + value = "axe_1h_hatchet_c_03.m2", + }, + { + fileId = "144455", + text = "axe_1h_hatchet_d_01.m2", + value = "axe_1h_hatchet_d_01.m2", + }, + { + fileId = "144456", + text = "axe_1h_horde_a_01.m2", + value = "axe_1h_horde_a_01.m2", + }, + { + fileId = "144462", + text = "axe_1h_horde_a_02.m2", + value = "axe_1h_horde_a_02.m2", + }, + { + fileId = "144464", + text = "axe_1h_horde_a_03.m2", + value = "axe_1h_horde_a_03.m2", + }, + { + fileId = "144470", + text = "axe_1h_horde_a_04.m2", + value = "axe_1h_horde_a_04.m2", + }, + { + fileId = "144475", + text = "axe_1h_horde_b_01.m2", + value = "axe_1h_horde_b_01.m2", + }, + { + fileId = "144478", + text = "axe_1h_horde_b_02.m2", + value = "axe_1h_horde_b_02.m2", + }, + { + fileId = "144483", + text = "axe_1h_horde_b_03.m2", + value = "axe_1h_horde_b_03.m2", + }, + { + fileId = "144488", + text = "axe_1h_horde_c_01.m2", + value = "axe_1h_horde_c_01.m2", + }, + { + fileId = "324988", + text = "axe_1h_horde_c_01alt.m2", + value = "axe_1h_horde_c_01alt.m2", + }, + { + fileId = "144494", + text = "axe_1h_horde_c_02.m2", + value = "axe_1h_horde_c_02.m2", + }, + { + fileId = "144500", + text = "axe_1h_horde_c_03.m2", + value = "axe_1h_horde_c_03.m2", + }, + { + fileId = "144505", + text = "axe_1h_horde_c_04.m2", + value = "axe_1h_horde_c_04.m2", + }, + { + fileId = "144513", + text = "axe_1h_horde_d_01.m2", + value = "axe_1h_horde_d_01.m2", + }, + { + fileId = "144523", + text = "axe_1h_horde_d_02.m2", + value = "axe_1h_horde_d_02.m2", + }, + { + fileId = "144536", + text = "axe_1h_horde_d_03.m2", + value = "axe_1h_horde_d_03.m2", + }, + { + fileId = "303779", + text = "axe_1h_hordecovenant_d_01.m2", + value = "axe_1h_hordecovenant_d_01.m2", + }, + { + fileId = "303847", + text = "axe_1h_hordecovenant_d_02.m2", + value = "axe_1h_hordecovenant_d_02.m2", + }, + { + fileId = "315188", + text = "axe_1h_icecrownraid_d_01.m2", + value = "axe_1h_icecrownraid_d_01.m2", + }, + { + fileId = "238572", + text = "axe_1h_naxx25_d_01.m2", + value = "axe_1h_naxx25_d_01.m2", + }, + { + fileId = "144546", + text = "axe_1h_nexus_d_01.m2", + value = "axe_1h_nexus_d_01.m2", + }, + { + fileId = "144553", + text = "axe_1h_northrend_b_01.m2", + value = "axe_1h_northrend_b_01.m2", + }, + { + fileId = "144559", + text = "axe_1h_northrend_b_02.m2", + value = "axe_1h_northrend_b_02.m2", + }, + { + fileId = "144566", + text = "axe_1h_northrend_b_03.m2", + value = "axe_1h_northrend_b_03.m2", + }, + { + fileId = "144572", + text = "axe_1h_northrend_c_01.m2", + value = "axe_1h_northrend_c_01.m2", + }, + { + fileId = "144577", + text = "axe_1h_northrend_c_02.m2", + value = "axe_1h_northrend_c_02.m2", + }, + { + fileId = "144582", + text = "axe_1h_northrend_c_03.m2", + value = "axe_1h_northrend_c_03.m2", + }, + { + fileId = "144588", + text = "axe_1h_northrend_d_01.m2", + value = "axe_1h_northrend_d_01.m2", + }, + { + fileId = "144593", + text = "axe_1h_outlandraid_d_01.m2", + value = "axe_1h_outlandraid_d_01.m2", + }, + { + fileId = "144595", + text = "axe_1h_outlandraid_d_02.m2", + value = "axe_1h_outlandraid_d_02.m2", + }, + { + fileId = "144597", + text = "axe_1h_outlandraid_d_03.m2", + value = "axe_1h_outlandraid_d_03.m2", + }, + { + fileId = "144599", + text = "axe_1h_outlandraid_d_04.m2", + value = "axe_1h_outlandraid_d_04.m2", + }, + { + fileId = "144604", + text = "axe_1h_outlandraid_d_05.m2", + value = "axe_1h_outlandraid_d_05.m2", + }, + { + fileId = "144606", + text = "axe_1h_outlandraid_d_06.m2", + value = "axe_1h_outlandraid_d_06.m2", + }, + { + fileId = "144607", + text = "axe_1h_pick_a_01.m2", + value = "axe_1h_pick_a_01.m2", + }, + { + fileId = "252782", + text = "axe_1h_pvealliance_d_01.m2", + value = "axe_1h_pvealliance_d_01.m2", + }, + { + fileId = "253464", + text = "axe_1h_pvehorde_d_01.m2", + value = "axe_1h_pvehorde_d_01.m2", + }, + { + fileId = "305618", + text = "axe_1h_pvp320_c_01.m2", + value = "axe_1h_pvp320_c_01.m2", + }, + { + fileId = "326468", + text = "axe_1h_pvp330_d_01.m2", + value = "axe_1h_pvp330_d_01.m2", + }, + { + fileId = "238573", + text = "axe_1h_pvp_c_01.m2", + value = "axe_1h_pvp_c_01.m2", + }, + { + fileId = "144612", + text = "axe_1h_pvpalliance_a_01.m2", + value = "axe_1h_pvpalliance_a_01.m2", + }, + { + fileId = "144615", + text = "axe_1h_pvphorde_a_01.m2", + value = "axe_1h_pvphorde_a_01.m2", + }, + { + fileId = "144618", + text = "axe_1h_raid_d_01.m2", + value = "axe_1h_raid_d_01.m2", + }, + { + fileId = "144620", + text = "axe_1h_raid_d_02.m2", + value = "axe_1h_raid_d_02.m2", + }, + { + fileId = "144622", + text = "axe_1h_raid_d_03.m2", + value = "axe_1h_raid_d_03.m2", + }, + { + fileId = "144624", + text = "axe_1h_raid_d_04.m2", + value = "axe_1h_raid_d_04.m2", + }, + { + fileId = "144626", + text = "axe_1h_raid_d_05.m2", + value = "axe_1h_raid_d_05.m2", + }, + { + fileId = "144628", + text = "axe_1h_raid_d_06.m2", + value = "axe_1h_raid_d_06.m2", + }, + { + fileId = "144629", + text = "axe_1h_stratholme_d_01.m2", + value = "axe_1h_stratholme_d_01.m2", + }, + { + fileId = "144631", + text = "axe_1h_troll_b_01.m2", + value = "axe_1h_troll_b_01.m2", + }, + { + fileId = "238578", + text = "axe_1h_ulduarraid_d_01.m2", + value = "axe_1h_ulduarraid_d_01.m2", + }, + { + fileId = "144634", + text = "axe_1h_utgarde_d_01.m2", + value = "axe_1h_utgarde_d_01.m2", + }, + { + fileId = "144639", + text = "axe_1h_zulaman_d_01.m2", + value = "axe_1h_zulaman_d_01.m2", + }, + { + fileId = "144645", + text = "axe_1h_zulgurub_d_01.m2", + value = "axe_1h_zulgurub_d_01.m2", + }, + { + fileId = "144647", + text = "axe_2h_ahnqiraj_d_01.m2", + value = "axe_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "144648", + text = "axe_2h_alliance_c_01.m2", + value = "axe_2h_alliance_c_01.m2", + }, + { + fileId = "144654", + text = "axe_2h_alliance_c_02.m2", + value = "axe_2h_alliance_c_02.m2", + }, + { + fileId = "144660", + text = "axe_2h_alliance_c_03.m2", + value = "axe_2h_alliance_c_03.m2", + }, + { + fileId = "144666", + text = "axe_2h_alliance_d_01.m2", + value = "axe_2h_alliance_d_01.m2", + }, + { + fileId = "144672", + text = "axe_2h_alliance_d_02.m2", + value = "axe_2h_alliance_d_02.m2", + }, + { + fileId = "144678", + text = "axe_2h_battle_a_01.m2", + value = "axe_2h_battle_a_01.m2", + }, + { + fileId = "144682", + text = "axe_2h_battle_a_02.m2", + value = "axe_2h_battle_a_02.m2", + }, + { + fileId = "144686", + text = "axe_2h_battle_a_03.m2", + value = "axe_2h_battle_a_03.m2", + }, + { + fileId = "144692", + text = "axe_2h_battle_b_01.m2", + value = "axe_2h_battle_b_01.m2", + }, + { + fileId = "144693", + text = "axe_2h_battle_b_02holy.m2", + value = "axe_2h_battle_b_02holy.m2", + }, + { + fileId = "144695", + text = "axe_2h_blacksmithing_d_01.m2", + value = "axe_2h_blacksmithing_d_01.m2", + }, + { + fileId = "144697", + text = "axe_2h_blacksmithing_d_02.m2", + value = "axe_2h_blacksmithing_d_02.m2", + }, + { + fileId = "144699", + text = "axe_2h_blacksmithing_d_03.m2", + value = "axe_2h_blacksmithing_d_03.m2", + }, + { + fileId = "144700", + text = "axe_2h_blacktemple_d_01.m2", + value = "axe_2h_blacktemple_d_01.m2", + }, + { + fileId = "144704", + text = "axe_2h_blackwing_a_01.m2", + value = "axe_2h_blackwing_a_01.m2", + }, + { + fileId = "144706", + text = "axe_2h_blackwing_a_02.m2", + value = "axe_2h_blackwing_a_02.m2", + }, + { + fileId = "144708", + text = "axe_2h_blood_a_01.m2", + value = "axe_2h_blood_a_01.m2", + }, + { + fileId = "144713", + text = "axe_2h_blood_a_02.m2", + value = "axe_2h_blood_a_02.m2", + }, + { + fileId = "144718", + text = "axe_2h_deathknight_c_01.m2", + value = "axe_2h_deathknight_c_01.m2", + }, + { + fileId = "144720", + text = "axe_2h_deathknight_c_01_q.m2", + value = "axe_2h_deathknight_c_01_q.m2", + }, + { + fileId = "144725", + text = "axe_2h_draenei_a_01.m2", + value = "axe_2h_draenei_a_01.m2", + }, + { + fileId = "144730", + text = "axe_2h_draenei_b_01.m2", + value = "axe_2h_draenei_b_01.m2", + }, + { + fileId = "144736", + text = "axe_2h_draenei_c_01.m2", + value = "axe_2h_draenei_c_01.m2", + }, + { + fileId = "144742", + text = "axe_2h_draenei_d_01.m2", + value = "axe_2h_draenei_d_01.m2", + }, + { + fileId = "144748", + text = "axe_2h_draenei_d_02.m2", + value = "axe_2h_draenei_d_02.m2", + }, + { + fileId = "144750", + text = "axe_2h_draktharon_d_01.m2", + value = "axe_2h_draktharon_d_01.m2", + }, + { + fileId = "144759", + text = "axe_2h_gorehowl_c_01.m2", + value = "axe_2h_gorehowl_c_01.m2", + }, + { + fileId = "144760", + text = "axe_2h_gorehowl_d_01.m2", + value = "axe_2h_gorehowl_d_01.m2", + }, + { + fileId = "238586", + text = "axe_2h_guitar_c_01.m2", + value = "axe_2h_guitar_c_01.m2", + }, + { + fileId = "238588", + text = "axe_2h_guitar_c_02.m2", + value = "axe_2h_guitar_c_02.m2", + }, + { + fileId = "144762", + text = "axe_2h_hellfire_d_01.m2", + value = "axe_2h_hellfire_d_01.m2", + }, + { + fileId = "144763", + text = "axe_2h_horde_a_01.m2", + value = "axe_2h_horde_a_01.m2", + }, + { + fileId = "144770", + text = "axe_2h_horde_a_02.m2", + value = "axe_2h_horde_a_02.m2", + }, + { + fileId = "144776", + text = "axe_2h_horde_a_03.m2", + value = "axe_2h_horde_a_03.m2", + }, + { + fileId = "144782", + text = "axe_2h_horde_a_04.m2", + value = "axe_2h_horde_a_04.m2", + }, + { + fileId = "144788", + text = "axe_2h_horde_b_01.m2", + value = "axe_2h_horde_b_01.m2", + }, + { + fileId = "144791", + text = "axe_2h_horde_c_01.m2", + value = "axe_2h_horde_c_01.m2", + }, + { + fileId = "144798", + text = "axe_2h_horde_c_02.m2", + value = "axe_2h_horde_c_02.m2", + }, + { + fileId = "144804", + text = "axe_2h_horde_d_01.m2", + value = "axe_2h_horde_d_01.m2", + }, + { + fileId = "144810", + text = "axe_2h_horde_d_02.m2", + value = "axe_2h_horde_d_02.m2", + }, + { + fileId = "144813", + text = "axe_2h_horde_d_03.m2", + value = "axe_2h_horde_d_03.m2", + }, + { + fileId = "144817", + text = "axe_2h_horde_d_04.m2", + value = "axe_2h_horde_d_04.m2", + }, + { + fileId = "309981", + text = "axe_2h_icecrownraid_d_01.m2", + value = "axe_2h_icecrownraid_d_01.m2", + }, + { + fileId = "338486", + text = "axe_2h_icecrownraid_d_02.m2", + value = "axe_2h_icecrownraid_d_02.m2", + }, + { + fileId = "324968", + text = "axe_2h_icecrownraid_e_01.m2", + value = "axe_2h_icecrownraid_e_01.m2", + }, + { + fileId = "332723", + text = "axe_2h_icecrownraid_e_01alt.m2", + value = "axe_2h_icecrownraid_e_01alt.m2", + }, + { + fileId = "238590", + text = "axe_2h_naxx25_d_01.m2", + value = "axe_2h_naxx25_d_01.m2", + }, + { + fileId = "144821", + text = "axe_2h_nexus_d_01.m2", + value = "axe_2h_nexus_d_01.m2", + }, + { + fileId = "144827", + text = "axe_2h_northrend_b_01.m2", + value = "axe_2h_northrend_b_01.m2", + }, + { + fileId = "144833", + text = "axe_2h_northrend_b_02.m2", + value = "axe_2h_northrend_b_02.m2", + }, + { + fileId = "144839", + text = "axe_2h_northrend_c_01.m2", + value = "axe_2h_northrend_c_01.m2", + }, + { + fileId = "144844", + text = "axe_2h_northrend_c_02.m2", + value = "axe_2h_northrend_c_02.m2", + }, + { + fileId = "144849", + text = "axe_2h_northrend_c_03.m2", + value = "axe_2h_northrend_c_03.m2", + }, + { + fileId = "144855", + text = "axe_2h_northrend_d_01.m2", + value = "axe_2h_northrend_d_01.m2", + }, + { + fileId = "144860", + text = "axe_2h_outlandraid_d_01.m2", + value = "axe_2h_outlandraid_d_01.m2", + }, + { + fileId = "144862", + text = "axe_2h_outlandraid_d_02.m2", + value = "axe_2h_outlandraid_d_02.m2", + }, + { + fileId = "144864", + text = "axe_2h_outlandraid_d_02_green.m2", + value = "axe_2h_outlandraid_d_02_green.m2", + }, + { + fileId = "144865", + text = "axe_2h_outlandraid_d_02_red.m2", + value = "axe_2h_outlandraid_d_02_red.m2", + }, + { + fileId = "144867", + text = "axe_2h_outlandraid_d_03.m2", + value = "axe_2h_outlandraid_d_03.m2", + }, + { + fileId = "144869", + text = "axe_2h_outlandraid_d_04.m2", + value = "axe_2h_outlandraid_d_04.m2", + }, + { + fileId = "144871", + text = "axe_2h_outlandraid_d_05.m2", + value = "axe_2h_outlandraid_d_05.m2", + }, + { + fileId = "144873", + text = "axe_2h_outlandraid_d_06.m2", + value = "axe_2h_outlandraid_d_06.m2", + }, + { + fileId = "144875", + text = "axe_2h_outlandraid_d_07.m2", + value = "axe_2h_outlandraid_d_07.m2", + }, + { + fileId = "253361", + text = "axe_2h_pvealliance_d_01.m2", + value = "axe_2h_pvealliance_d_01.m2", + }, + { + fileId = "254176", + text = "axe_2h_pvehorde_d_01.m2", + value = "axe_2h_pvehorde_d_01.m2", + }, + { + fileId = "305965", + text = "axe_2h_pvp320_c_01.m2", + value = "axe_2h_pvp320_c_01.m2", + }, + { + fileId = "327383", + text = "axe_2h_pvp330_d_01.m2", + value = "axe_2h_pvp330_d_01.m2", + }, + { + fileId = "238595", + text = "axe_2h_pvp_c_01.m2", + value = "axe_2h_pvp_c_01.m2", + }, + { + fileId = "144880", + text = "axe_2h_pvpalliance_a_01.m2", + value = "axe_2h_pvpalliance_a_01.m2", + }, + { + fileId = "144883", + text = "axe_2h_pvphorde_a_01.m2", + value = "axe_2h_pvphorde_a_01.m2", + }, + { + fileId = "144886", + text = "axe_2h_stratholme_d_01.m2", + value = "axe_2h_stratholme_d_01.m2", + }, + { + fileId = "144888", + text = "axe_2h_sunwell_c_01.m2", + value = "axe_2h_sunwell_c_01.m2", + }, + { + fileId = "238600", + text = "axe_2h_ulduarraid_d_01.m2", + value = "axe_2h_ulduarraid_d_01.m2", + }, + { + fileId = "144893", + text = "axe_2h_utgarde_d_01.m2", + value = "axe_2h_utgarde_d_01.m2", + }, + { + fileId = "144900", + text = "axe_2h_utgarde_d_02.m2", + value = "axe_2h_utgarde_d_02.m2", + }, + { + fileId = "144906", + text = "axe_2h_war_a_01.m2", + value = "axe_2h_war_a_01.m2", + }, + { + fileId = "144910", + text = "axe_2h_war_a_02.m2", + value = "axe_2h_war_a_02.m2", + }, + { + fileId = "144914", + text = "axe_2h_war_a_03.m2", + value = "axe_2h_war_a_03.m2", + }, + { + fileId = "144918", + text = "axe_2h_war_b_01.m2", + value = "axe_2h_war_b_01.m2", + }, + { + fileId = "144922", + text = "axe_2h_war_b_02.m2", + value = "axe_2h_war_b_02.m2", + }, + { + fileId = "144926", + text = "axe_2h_war_b_03.m2", + value = "axe_2h_war_b_03.m2", + }, + { + fileId = "144930", + text = "axe_2h_war_c_01.m2", + value = "axe_2h_war_c_01.m2", + }, + { + fileId = "144934", + text = "axe_2h_war_d_01.m2", + value = "axe_2h_war_d_01.m2", + }, + { + fileId = "144936", + text = "axe_2h_zulaman_d_01.m2", + value = "axe_2h_zulaman_d_01.m2", + }, + { + fileId = "144941", + text = "axe_2h_zulgurub_d_01.m2", + value = "axe_2h_zulgurub_d_01.m2", + }, + { + fileId = "144952", + text = "bow_1h_advanced_a_01.m2", + value = "bow_1h_advanced_a_01.m2", + }, + { + fileId = "144953", + text = "bow_1h_advanced_a_02.m2", + value = "bow_1h_advanced_a_02.m2", + }, + { + fileId = "144954", + text = "bow_1h_advanced_b_01.m2", + value = "bow_1h_advanced_b_01.m2", + }, + { + fileId = "144955", + text = "bow_1h_advanced_c_01.m2", + value = "bow_1h_advanced_c_01.m2", + }, + { + fileId = "144956", + text = "bow_1h_advanced_c_02.m2", + value = "bow_1h_advanced_c_02.m2", + }, + { + fileId = "144957", + text = "bow_1h_advanced_d_01.m2", + value = "bow_1h_advanced_d_01.m2", + }, + { + fileId = "144958", + text = "bow_1h_advanced_d_02.m2", + value = "bow_1h_advanced_d_02.m2", + }, + { + fileId = "144961", + text = "bow_1h_ahnqiraj_d_01.m2", + value = "bow_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "144962", + text = "bow_1h_ahnqiraj_d_02.m2", + value = "bow_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "144963", + text = "bow_1h_auchindoun_d_01.m2", + value = "bow_1h_auchindoun_d_01.m2", + }, + { + fileId = "144965", + text = "bow_1h_blacktemple_d_01.m2", + value = "bow_1h_blacktemple_d_01.m2", + }, + { + fileId = "144971", + text = "bow_1h_blackwing_a_01.m2", + value = "bow_1h_blackwing_a_01.m2", + }, + { + fileId = "144972", + text = "bow_1h_blood_a_01.m2", + value = "bow_1h_blood_a_01.m2", + }, + { + fileId = "144978", + text = "bow_1h_blood_a_02.m2", + value = "bow_1h_blood_a_02.m2", + }, + { + fileId = "144979", + text = "bow_1h_blood_b_01.m2", + value = "bow_1h_blood_b_01.m2", + }, + { + fileId = "144986", + text = "bow_1h_blood_c_01.m2", + value = "bow_1h_blood_c_01.m2", + }, + { + fileId = "144992", + text = "bow_1h_blood_d_01.m2", + value = "bow_1h_blood_d_01.m2", + }, + { + fileId = "144998", + text = "bow_1h_crossbow_a_01.m2", + value = "bow_1h_crossbow_a_01.m2", + }, + { + fileId = "145001", + text = "bow_1h_draktharon_d_01.m2", + value = "bow_1h_draktharon_d_01.m2", + }, + { + fileId = "145006", + text = "bow_1h_draktharon_d_02.m2", + value = "bow_1h_draktharon_d_02.m2", + }, + { + fileId = "145011", + text = "bow_1h_horde_a_01.m2", + value = "bow_1h_horde_a_01.m2", + }, + { + fileId = "145013", + text = "bow_1h_horde_b_01.m2", + value = "bow_1h_horde_b_01.m2", + }, + { + fileId = "145015", + text = "bow_1h_horde_c_01.m2", + value = "bow_1h_horde_c_01.m2", + }, + { + fileId = "145018", + text = "bow_1h_hunter_d_01.m2", + value = "bow_1h_hunter_d_01.m2", + }, + { + fileId = "145019", + text = "bow_1h_hunterepic.m2", + value = "bow_1h_hunterepic.m2", + }, + { + fileId = "145021", + text = "bow_1h_hyjal_d_01.m2", + value = "bow_1h_hyjal_d_01.m2", + }, + { + fileId = "310108", + text = "bow_1h_icecrownraid_d_01.m2", + value = "bow_1h_icecrownraid_d_01.m2", + }, + { + fileId = "145026", + text = "bow_1h_nexus_d_01.m2", + value = "bow_1h_nexus_d_01.m2", + }, + { + fileId = "145031", + text = "bow_1h_nexus_d_02.m2", + value = "bow_1h_nexus_d_02.m2", + }, + { + fileId = "145036", + text = "bow_1h_northrend_b_01.m2", + value = "bow_1h_northrend_b_01.m2", + }, + { + fileId = "145042", + text = "bow_1h_northrend_b_02.m2", + value = "bow_1h_northrend_b_02.m2", + }, + { + fileId = "145046", + text = "bow_1h_northrend_b_03.m2", + value = "bow_1h_northrend_b_03.m2", + }, + { + fileId = "145051", + text = "bow_1h_northrend_c_01.m2", + value = "bow_1h_northrend_c_01.m2", + }, + { + fileId = "145056", + text = "bow_1h_northrend_c_02.m2", + value = "bow_1h_northrend_c_02.m2", + }, + { + fileId = "145061", + text = "bow_1h_northrend_c_03.m2", + value = "bow_1h_northrend_c_03.m2", + }, + { + fileId = "145066", + text = "bow_1h_northrend_d_01.m2", + value = "bow_1h_northrend_d_01.m2", + }, + { + fileId = "145071", + text = "bow_1h_northrend_d_02.m2", + value = "bow_1h_northrend_d_02.m2", + }, + { + fileId = "145077", + text = "bow_1h_outlandraid_d_01.m2", + value = "bow_1h_outlandraid_d_01.m2", + }, + { + fileId = "145079", + text = "bow_1h_outlandraid_d_02.m2", + value = "bow_1h_outlandraid_d_02.m2", + }, + { + fileId = "145081", + text = "bow_1h_outlandraid_d_03.m2", + value = "bow_1h_outlandraid_d_03.m2", + }, + { + fileId = "145083", + text = "bow_1h_outlandraid_d_03_green.m2", + value = "bow_1h_outlandraid_d_03_green.m2", + }, + { + fileId = "145085", + text = "bow_1h_outlandraid_d_04.m2", + value = "bow_1h_outlandraid_d_04.m2", + }, + { + fileId = "145087", + text = "bow_1h_outlandraid_d_05.m2", + value = "bow_1h_outlandraid_d_05.m2", + }, + { + fileId = "145089", + text = "bow_1h_outlandraid_d_06.m2", + value = "bow_1h_outlandraid_d_06.m2", + }, + { + fileId = "145090", + text = "bow_1h_outlandraid_d_06_blue.m2", + value = "bow_1h_outlandraid_d_06_blue.m2", + }, + { + fileId = "304630", + text = "bow_1h_pvealliance_d_01.m2", + value = "bow_1h_pvealliance_d_01.m2", + }, + { + fileId = "305324", + text = "bow_1h_pvehorde_d_01.m2", + value = "bow_1h_pvehorde_d_01.m2", + }, + { + fileId = "306513", + text = "bow_1h_pvp320_c_01.m2", + value = "bow_1h_pvp320_c_01.m2", + }, + { + fileId = "326876", + text = "bow_1h_pvp330_d_01.m2", + value = "bow_1h_pvp330_d_01.m2", + }, + { + fileId = "238606", + text = "bow_1h_pvp_c_01.m2", + value = "bow_1h_pvp_c_01.m2", + }, + { + fileId = "145092", + text = "bow_1h_pvpalliance_a_01.m2", + value = "bow_1h_pvpalliance_a_01.m2", + }, + { + fileId = "145094", + text = "bow_1h_pvphorde_a_01.m2", + value = "bow_1h_pvphorde_a_01.m2", + }, + { + fileId = "145095", + text = "bow_1h_short_a_01.m2", + value = "bow_1h_short_a_01.m2", + }, + { + fileId = "145097", + text = "bow_1h_standard_a_01.m2", + value = "bow_1h_standard_a_01.m2", + }, + { + fileId = "145101", + text = "bow_1h_standard_a_02.m2", + value = "bow_1h_standard_a_02.m2", + }, + { + fileId = "145105", + text = "bow_1h_standard_b_01.m2", + value = "bow_1h_standard_b_01.m2", + }, + { + fileId = "145109", + text = "bow_1h_standard_b_02.m2", + value = "bow_1h_standard_b_02.m2", + }, + { + fileId = "145113", + text = "bow_1h_standard_c_01.m2", + value = "bow_1h_standard_c_01.m2", + }, + { + fileId = "145117", + text = "bow_1h_standard_c_02.m2", + value = "bow_1h_standard_c_02.m2", + }, + { + fileId = "145122", + text = "bow_1h_stratholme_d_01.m2", + value = "bow_1h_stratholme_d_01.m2", + }, + { + fileId = "145124", + text = "bow_1h_stratholme_d_02.m2", + value = "bow_1h_stratholme_d_02.m2", + }, + { + fileId = "145133", + text = "bow_1h_sunwell_d_01.m2", + value = "bow_1h_sunwell_d_01.m2", + }, + { + fileId = "145142", + text = "bow_1h_sunwell_d_02.m2", + value = "bow_1h_sunwell_d_02.m2", + }, + { + fileId = "145145", + text = "bow_1h_sunwell_d_03.m2", + value = "bow_1h_sunwell_d_03.m2", + }, + { + fileId = "238612", + text = "bow_1h_ulduarraid_d_01.m2", + value = "bow_1h_ulduarraid_d_01.m2", + }, + { + fileId = "145150", + text = "bow_1h_utgarde_d_01.m2", + value = "bow_1h_utgarde_d_01.m2", + }, + { + fileId = "145156", + text = "bow_1h_utgarde_d_02.m2", + value = "bow_1h_utgarde_d_02.m2", + }, + { + fileId = "145162", + text = "bow_1h_zulaman_d_01.m2", + value = "bow_1h_zulaman_d_01.m2", + }, + { + fileId = "145167", + text = "bow_1h_zulgurub_d_01.m2", + value = "bow_1h_zulgurub_d_01.m2", + }, + { + fileId = "145169", + text = "bow_1h_zulgurub_d_02.m2", + value = "bow_1h_zulgurub_d_02.m2", + }, + { + fileId = "145170", + text = "bow_2h_crossbow_a_01.m2", + value = "bow_2h_crossbow_a_01.m2", + }, + { + fileId = "145173", + text = "bow_2h_crossbow_b_01.m2", + value = "bow_2h_crossbow_b_01.m2", + }, + { + fileId = "145176", + text = "bow_2h_crossbow_blacktemple_d_01.m2", + value = "bow_2h_crossbow_blacktemple_d_01.m2", + }, + { + fileId = "145183", + text = "bow_2h_crossbow_blackwing_a_01.m2", + value = "bow_2h_crossbow_blackwing_a_01.m2", + }, + { + fileId = "145184", + text = "bow_2h_crossbow_c_01.m2", + value = "bow_2h_crossbow_c_01.m2", + }, + { + fileId = "145186", + text = "bow_2h_crossbow_cotstrat_d_01.m2", + value = "bow_2h_crossbow_cotstrat_d_01.m2", + }, + { + fileId = "145190", + text = "bow_2h_crossbow_dalaran_d_01.m2", + value = "bow_2h_crossbow_dalaran_d_01.m2", + }, + { + fileId = "145196", + text = "bow_2h_crossbow_draenei_a_01.m2", + value = "bow_2h_crossbow_draenei_a_01.m2", + }, + { + fileId = "145201", + text = "bow_2h_crossbow_draenei_a_02.m2", + value = "bow_2h_crossbow_draenei_a_02.m2", + }, + { + fileId = "320311", + text = "bow_2h_crossbow_icecrownraid_d_01.m2", + value = "bow_2h_crossbow_icecrownraid_d_01.m2", + }, + { + fileId = "145209", + text = "bow_2h_crossbow_nexus_d_01.m2", + value = "bow_2h_crossbow_nexus_d_01.m2", + }, + { + fileId = "145215", + text = "bow_2h_crossbow_northrend_b_01.m2", + value = "bow_2h_crossbow_northrend_b_01.m2", + }, + { + fileId = "145221", + text = "bow_2h_crossbow_northrend_b_02.m2", + value = "bow_2h_crossbow_northrend_b_02.m2", + }, + { + fileId = "145227", + text = "bow_2h_crossbow_northrend_c_01.m2", + value = "bow_2h_crossbow_northrend_c_01.m2", + }, + { + fileId = "145232", + text = "bow_2h_crossbow_northrend_c_02.m2", + value = "bow_2h_crossbow_northrend_c_02.m2", + }, + { + fileId = "145237", + text = "bow_2h_crossbow_northrend_d_01.m2", + value = "bow_2h_crossbow_northrend_d_01.m2", + }, + { + fileId = "145243", + text = "bow_2h_crossbow_outlandpvp_d_01.m2", + value = "bow_2h_crossbow_outlandpvp_d_01.m2", + }, + { + fileId = "145250", + text = "bow_2h_crossbow_outlandraid_d_01.m2", + value = "bow_2h_crossbow_outlandraid_d_01.m2", + }, + { + fileId = "145252", + text = "bow_2h_crossbow_outlandraid_d_04.m2", + value = "bow_2h_crossbow_outlandraid_d_04.m2", + }, + { + fileId = "145254", + text = "bow_2h_crossbow_outlandraid_d_05.m2", + value = "bow_2h_crossbow_outlandraid_d_05.m2", + }, + { + fileId = "145256", + text = "bow_2h_crossbow_outlandraid_d_06.m2", + value = "bow_2h_crossbow_outlandraid_d_06.m2", + }, + { + fileId = "304546", + text = "bow_2h_crossbow_pvealliance_d_01.m2", + value = "bow_2h_crossbow_pvealliance_d_01.m2", + }, + { + fileId = "305436", + text = "bow_2h_crossbow_pvehorde_d_01.m2", + value = "bow_2h_crossbow_pvehorde_d_01.m2", + }, + { + fileId = "305939", + text = "bow_2h_crossbow_pvp320_c_01.m2", + value = "bow_2h_crossbow_pvp320_c_01.m2", + }, + { + fileId = "326881", + text = "bow_2h_crossbow_pvp330_d_01.m2", + value = "bow_2h_crossbow_pvp330_d_01.m2", + }, + { + fileId = "238616", + text = "bow_2h_crossbow_pvp_c_01.m2", + value = "bow_2h_crossbow_pvp_c_01.m2", + }, + { + fileId = "145258", + text = "bow_2h_crossbow_pvpalliance_a_01.m2", + value = "bow_2h_crossbow_pvpalliance_a_01.m2", + }, + { + fileId = "145261", + text = "bow_2h_crossbow_pvphorde_a_01.m2", + value = "bow_2h_crossbow_pvphorde_a_01.m2", + }, + { + fileId = "145264", + text = "bow_2h_crossbow_stratholme_d_01.m2", + value = "bow_2h_crossbow_stratholme_d_01.m2", + }, + { + fileId = "145265", + text = "bow_2h_crossbow_sunwell_c_01.m2", + value = "bow_2h_crossbow_sunwell_c_01.m2", + }, + { + fileId = "145271", + text = "bow_2h_crossbow_ulduar_d_01.m2", + value = "bow_2h_crossbow_ulduar_d_01.m2", + }, + { + fileId = "249262", + text = "bow_2h_crossbow_ulduarraid_d_01.m2", + value = "bow_2h_crossbow_ulduarraid_d_01.m2", + }, + { + fileId = "145278", + text = "bow_2h_crossbow_utgarde_d_01.m2", + value = "bow_2h_crossbow_utgarde_d_01.m2", + }, + { + fileId = "145283", + text = "bow_2h_crossbow_zulgurub_d_01.m2", + value = "bow_2h_crossbow_zulgurub_d_01.m2", + }, + { + fileId = "145298", + text = "club_1h_cane_a_01.m2", + value = "club_1h_cane_a_01.m2", + }, + { + fileId = "145300", + text = "club_1h_exotic_a_01.m2", + value = "club_1h_exotic_a_01.m2", + }, + { + fileId = "145301", + text = "club_1h_spiked_a_01.m2", + value = "club_1h_spiked_a_01.m2", + }, + { + fileId = "145304", + text = "club_1h_torch_a_01.m2", + value = "club_1h_torch_a_01.m2", + }, + { + fileId = "145306", + text = "club_1h_torch_a_02.m2", + value = "club_1h_torch_a_02.m2", + }, + { + fileId = "145307", + text = "club_1h_torch_a_03northrend.m2", + value = "club_1h_torch_a_03northrend.m2", + }, + { + fileId = "145308", + text = "club_1h_torch_a_03northrend_light.m2", + value = "club_1h_torch_a_03northrend_light.m2", + }, + { + fileId = "238623", + text = "firearm_2h_naxx25_d_01.m2", + value = "firearm_2h_naxx25_d_01.m2", + }, + { + fileId = "304290", + text = "firearm_2h_pvealliance_d_01.m2", + value = "firearm_2h_pvealliance_d_01.m2", + }, + { + fileId = "304884", + text = "firearm_2h_pvehorde_d_01.m2", + value = "firearm_2h_pvehorde_d_01.m2", + }, + { + fileId = "238628", + text = "firearm_2h_pvp_c_01.m2", + value = "firearm_2h_pvp_c_01.m2", + }, + { + fileId = "145319", + text = "firearm_2h_rifle_a_01.m2", + value = "firearm_2h_rifle_a_01.m2", + }, + { + fileId = "145323", + text = "firearm_2h_rifle_a_02.m2", + value = "firearm_2h_rifle_a_02.m2", + }, + { + fileId = "145328", + text = "firearm_2h_rifle_a_03.m2", + value = "firearm_2h_rifle_a_03.m2", + }, + { + fileId = "145329", + text = "firearm_2h_rifle_a_03scope.m2", + value = "firearm_2h_rifle_a_03scope.m2", + }, + { + fileId = "145333", + text = "firearm_2h_rifle_a_04.m2", + value = "firearm_2h_rifle_a_04.m2", + }, + { + fileId = "145334", + text = "firearm_2h_rifle_a_04scopesniper.m2", + value = "firearm_2h_rifle_a_04scopesniper.m2", + }, + { + fileId = "145335", + text = "firearm_2h_rifle_a_05.m2", + value = "firearm_2h_rifle_a_05.m2", + }, + { + fileId = "145346", + text = "firearm_2h_rifle_a_06.m2", + value = "firearm_2h_rifle_a_06.m2", + }, + { + fileId = "145348", + text = "firearm_2h_rifle_ahnqiraj_d_01.m2", + value = "firearm_2h_rifle_ahnqiraj_d_01.m2", + }, + { + fileId = "145350", + text = "firearm_2h_rifle_ahnqiraj_d_02.m2", + value = "firearm_2h_rifle_ahnqiraj_d_02.m2", + }, + { + fileId = "304082", + text = "firearm_2h_rifle_alliancecovenant_d_01.m2", + value = "firearm_2h_rifle_alliancecovenant_d_01.m2", + }, + { + fileId = "145356", + text = "firearm_2h_rifle_b_01.m2", + value = "firearm_2h_rifle_b_01.m2", + }, + { + fileId = "145360", + text = "firearm_2h_rifle_b_02.m2", + value = "firearm_2h_rifle_b_02.m2", + }, + { + fileId = "145366", + text = "firearm_2h_rifle_b_03.m2", + value = "firearm_2h_rifle_b_03.m2", + }, + { + fileId = "145372", + text = "firearm_2h_rifle_blood_a_01.m2", + value = "firearm_2h_rifle_blood_a_01.m2", + }, + { + fileId = "145377", + text = "firearm_2h_rifle_blood_b_01.m2", + value = "firearm_2h_rifle_blood_b_01.m2", + }, + { + fileId = "145383", + text = "firearm_2h_rifle_blood_c_01.m2", + value = "firearm_2h_rifle_blood_c_01.m2", + }, + { + fileId = "145389", + text = "firearm_2h_rifle_blood_d_01.m2", + value = "firearm_2h_rifle_blood_d_01.m2", + }, + { + fileId = "145395", + text = "firearm_2h_rifle_cotstrat_d_01.m2", + value = "firearm_2h_rifle_cotstrat_d_01.m2", + }, + { + fileId = "238633", + text = "firearm_2h_rifle_dalaran_d_01.m2", + value = "firearm_2h_rifle_dalaran_d_01.m2", + }, + { + fileId = "145401", + text = "firearm_2h_rifle_draenei_a_01.m2", + value = "firearm_2h_rifle_draenei_a_01.m2", + }, + { + fileId = "145407", + text = "firearm_2h_rifle_engineering_d_01.m2", + value = "firearm_2h_rifle_engineering_d_01.m2", + }, + { + fileId = "145409", + text = "firearm_2h_rifle_hellfire_c_01.m2", + value = "firearm_2h_rifle_hellfire_c_01.m2", + }, + { + fileId = "145411", + text = "firearm_2h_rifle_hellfire_d_01.m2", + value = "firearm_2h_rifle_hellfire_d_01.m2", + }, + { + fileId = "294385", + text = "firearm_2h_rifle_hordecovenant_d_01.m2", + value = "firearm_2h_rifle_hordecovenant_d_01.m2", + }, + { + fileId = "145415", + text = "firearm_2h_rifle_hunteralliancelvl20.m2", + value = "firearm_2h_rifle_hunteralliancelvl20.m2", + }, + { + fileId = "145416", + text = "firearm_2h_rifle_hunteralliancelvl50.m2", + value = "firearm_2h_rifle_hunteralliancelvl50.m2", + }, + { + fileId = "145417", + text = "firearm_2h_rifle_hunterhordelvl20.m2", + value = "firearm_2h_rifle_hunterhordelvl20.m2", + }, + { + fileId = "145419", + text = "firearm_2h_rifle_hunterhordelvl50.m2", + value = "firearm_2h_rifle_hunterhordelvl50.m2", + }, + { + fileId = "308322", + text = "firearm_2h_rifle_icecrownraid_d_01.m2", + value = "firearm_2h_rifle_icecrownraid_d_01.m2", + }, + { + fileId = "145422", + text = "firearm_2h_rifle_nexus_d_01.m2", + value = "firearm_2h_rifle_nexus_d_01.m2", + }, + { + fileId = "145447", + text = "firearm_2h_rifle_outlandraid_d_01.m2", + value = "firearm_2h_rifle_outlandraid_d_01.m2", + }, + { + fileId = "145449", + text = "firearm_2h_rifle_outlandraid_d_02.m2", + value = "firearm_2h_rifle_outlandraid_d_02.m2", + }, + { + fileId = "145451", + text = "firearm_2h_rifle_outlandraid_d_03.m2", + value = "firearm_2h_rifle_outlandraid_d_03.m2", + }, + { + fileId = "145453", + text = "firearm_2h_rifle_outlandraid_d_04.m2", + value = "firearm_2h_rifle_outlandraid_d_04.m2", + }, + { + fileId = "145460", + text = "firearm_2h_rifle_outlandraid_d_05.m2", + value = "firearm_2h_rifle_outlandraid_d_05.m2", + }, + { + fileId = "145467", + text = "firearm_2h_rifle_outlandraid_d_06.m2", + value = "firearm_2h_rifle_outlandraid_d_06.m2", + }, + { + fileId = "145473", + text = "firearm_2h_rifle_plague_a_01.m2", + value = "firearm_2h_rifle_plague_a_01.m2", + }, + { + fileId = "307038", + text = "firearm_2h_rifle_pvp320_c_01.m2", + value = "firearm_2h_rifle_pvp320_c_01.m2", + }, + { + fileId = "327384", + text = "firearm_2h_rifle_pvp330_d_01.m2", + value = "firearm_2h_rifle_pvp330_d_01.m2", + }, + { + fileId = "145475", + text = "firearm_2h_rifle_pvpalliance_a_01.m2", + value = "firearm_2h_rifle_pvpalliance_a_01.m2", + }, + { + fileId = "145477", + text = "firearm_2h_rifle_pvphorde_a_01.m2", + value = "firearm_2h_rifle_pvphorde_a_01.m2", + }, + { + fileId = "145479", + text = "firearm_2h_rifle_raid_moltencore.m2", + value = "firearm_2h_rifle_raid_moltencore.m2", + }, + { + fileId = "145482", + text = "firearm_2h_rifle_stratholme_d_01.m2", + value = "firearm_2h_rifle_stratholme_d_01.m2", + }, + { + fileId = "145484", + text = "firearm_2h_rifle_sunwell_d_01.m2", + value = "firearm_2h_rifle_sunwell_d_01.m2", + }, + { + fileId = "145489", + text = "firearm_2h_rifle_ulduar_d_01.m2", + value = "firearm_2h_rifle_ulduar_d_01.m2", + }, + { + fileId = "249271", + text = "firearm_2h_rifle_ulduarraid_d_01.m2", + value = "firearm_2h_rifle_ulduarraid_d_01.m2", + }, + { + fileId = "145495", + text = "firearm_2h_rifle_utgarde_d_01.m2", + value = "firearm_2h_rifle_utgarde_d_01.m2", + }, + { + fileId = "145502", + text = "firearm_2h_rifle_zulaman_d_01.m2", + value = "firearm_2h_rifle_zulaman_d_01.m2", + }, + { + fileId = "145507", + text = "firearm_2h_rifle_zulgurub_d_01.m2", + value = "firearm_2h_rifle_zulgurub_d_01.m2", + }, + { + fileId = "145508", + text = "firearm_2h_shotgun_b_01.m2", + value = "firearm_2h_shotgun_b_01.m2", + }, + { + fileId = "329805", + text = "firearm_2h_shotgun_b_01alt.m2", + value = "firearm_2h_shotgun_b_01alt.m2", + }, + { + fileId = "145521", + text = "glave_1h_blood_c_01.m2", + value = "glave_1h_blood_c_01.m2", + }, + { + fileId = "145523", + text = "glave_1h_dualblade_a_01.m2", + value = "glave_1h_dualblade_a_01.m2", + }, + { + fileId = "145527", + text = "glave_1h_dualblade_a_02.m2", + value = "glave_1h_dualblade_a_02.m2", + }, + { + fileId = "145531", + text = "glave_1h_dualblade_a_03.m2", + value = "glave_1h_dualblade_a_03.m2", + }, + { + fileId = "145535", + text = "glave_1h_dualblade_b_01.m2", + value = "glave_1h_dualblade_b_01.m2", + }, + { + fileId = "145539", + text = "glave_1h_dualblade_b_02.m2", + value = "glave_1h_dualblade_b_02.m2", + }, + { + fileId = "145545", + text = "glave_1h_dualblade_b_03.m2", + value = "glave_1h_dualblade_b_03.m2", + }, + { + fileId = "145550", + text = "glave_1h_dualblade_c_01.m2", + value = "glave_1h_dualblade_c_01.m2", + }, + { + fileId = "145554", + text = "glave_1h_dualblade_d_01.m2", + value = "glave_1h_dualblade_d_01.m2", + }, + { + fileId = "145558", + text = "glave_1h_dualblade_d_01left.m2", + value = "glave_1h_dualblade_d_01left.m2", + }, + { + fileId = "145562", + text = "glave_1h_dualblade_d_02.m2", + value = "glave_1h_dualblade_d_02.m2", + }, + { + fileId = "145564", + text = "glave_1h_dualblade_d_02left.m2", + value = "glave_1h_dualblade_d_02left.m2", + }, + { + fileId = "145566", + text = "glave_1h_magtheridon_d_01.m2", + value = "glave_1h_magtheridon_d_01.m2", + }, + { + fileId = "145568", + text = "glave_1h_short_a_01.m2", + value = "glave_1h_short_a_01.m2", + }, + { + fileId = "145573", + text = "glave_1h_short_a_02.m2", + value = "glave_1h_short_a_02.m2", + }, + { + fileId = "145578", + text = "glave_1h_short_a_03.m2", + value = "glave_1h_short_a_03.m2", + }, + { + fileId = "145583", + text = "glave_1h_short_b_01.m2", + value = "glave_1h_short_b_01.m2", + }, + { + fileId = "145588", + text = "glave_1h_short_c_01.m2", + value = "glave_1h_short_c_01.m2", + }, + { + fileId = "145592", + text = "glave_1h_short_c_02.m2", + value = "glave_1h_short_c_02.m2", + }, + { + fileId = "145602", + text = "hammer_1h_epic_d_01.m2", + value = "hammer_1h_epic_d_01.m2", + }, + { + fileId = "238638", + text = "hammer_1h_healer_pvp_c_01.m2", + value = "hammer_1h_healer_pvp_c_01.m2", + }, + { + fileId = "145603", + text = "hammer_1h_horde_a_01.m2", + value = "hammer_1h_horde_a_01.m2", + }, + { + fileId = "145607", + text = "hammer_1h_horde_a_02.m2", + value = "hammer_1h_horde_a_02.m2", + }, + { + fileId = "145612", + text = "hammer_1h_horde_a_03.m2", + value = "hammer_1h_horde_a_03.m2", + }, + { + fileId = "145615", + text = "hammer_1h_horde_a_04.m2", + value = "hammer_1h_horde_a_04.m2", + }, + { + fileId = "145621", + text = "hammer_1h_horde_b_01.m2", + value = "hammer_1h_horde_b_01.m2", + }, + { + fileId = "145626", + text = "hammer_1h_horde_b_02.m2", + value = "hammer_1h_horde_b_02.m2", + }, + { + fileId = "145632", + text = "hammer_1h_horde_d_02.m2", + value = "hammer_1h_horde_d_02.m2", + }, + { + fileId = "145634", + text = "hammer_1h_maul_a_01.m2", + value = "hammer_1h_maul_a_01.m2", + }, + { + fileId = "145638", + text = "hammer_1h_maul_a_02.m2", + value = "hammer_1h_maul_a_02.m2", + }, + { + fileId = "145642", + text = "hammer_1h_maul_a_03.m2", + value = "hammer_1h_maul_a_03.m2", + }, + { + fileId = "145646", + text = "hammer_1h_maul_b_01.m2", + value = "hammer_1h_maul_b_01.m2", + }, + { + fileId = "145650", + text = "hammer_1h_maul_b_02.m2", + value = "hammer_1h_maul_b_02.m2", + }, + { + fileId = "145654", + text = "hammer_1h_maul_b_03.m2", + value = "hammer_1h_maul_b_03.m2", + }, + { + fileId = "238643", + text = "hammer_1h_melee_pvp_c_01.m2", + value = "hammer_1h_melee_pvp_c_01.m2", + }, + { + fileId = "145659", + text = "hammer_1h_pvpalliance_a_01.m2", + value = "hammer_1h_pvpalliance_a_01.m2", + }, + { + fileId = "145663", + text = "hammer_1h_pvphorde_a_01.m2", + value = "hammer_1h_pvphorde_a_01.m2", + }, + { + fileId = "145666", + text = "hammer_1h_standard_a_01.m2", + value = "hammer_1h_standard_a_01.m2", + }, + { + fileId = "145670", + text = "hammer_1h_standard_a_02.m2", + value = "hammer_1h_standard_a_02.m2", + }, + { + fileId = "145674", + text = "hammer_1h_standard_a_03.m2", + value = "hammer_1h_standard_a_03.m2", + }, + { + fileId = "145678", + text = "hammer_1h_standard_b_01.m2", + value = "hammer_1h_standard_b_01.m2", + }, + { + fileId = "145682", + text = "hammer_1h_standard_b_02.m2", + value = "hammer_1h_standard_b_02.m2", + }, + { + fileId = "145686", + text = "hammer_1h_standard_b_03.m2", + value = "hammer_1h_standard_b_03.m2", + }, + { + fileId = "145690", + text = "hammer_1h_standard_c_01.m2", + value = "hammer_1h_standard_c_01.m2", + }, + { + fileId = "145695", + text = "hammer_1h_standard_c_03thaurissan.m2", + value = "hammer_1h_standard_c_03thaurissan.m2", + }, + { + fileId = "145697", + text = "hammer_1h_standard_e_01.m2", + value = "hammer_1h_standard_e_01.m2", + }, + { + fileId = "145699", + text = "hammer_1h_war_b_01holy.m2", + value = "hammer_1h_war_b_01holy.m2", + }, + { + fileId = "145700", + text = "hammer_1h_war_d_01.m2", + value = "hammer_1h_war_d_01.m2", + }, + { + fileId = "145702", + text = "hammer_2h_crystal_c_01.m2", + value = "hammer_2h_crystal_c_01.m2", + }, + { + fileId = "145707", + text = "hammer_2h_crystal_c_02.m2", + value = "hammer_2h_crystal_c_02.m2", + }, + { + fileId = "145712", + text = "hammer_2h_crystal_c_03.m2", + value = "hammer_2h_crystal_c_03.m2", + }, + { + fileId = "145718", + text = "hammer_2h_horde_a_01.m2", + value = "hammer_2h_horde_a_01.m2", + }, + { + fileId = "145723", + text = "hammer_2h_horde_a_02.m2", + value = "hammer_2h_horde_a_02.m2", + }, + { + fileId = "145725", + text = "hammer_2h_horde_a_03.m2", + value = "hammer_2h_horde_a_03.m2", + }, + { + fileId = "145730", + text = "hammer_2h_horde_a_04.m2", + value = "hammer_2h_horde_a_04.m2", + }, + { + fileId = "145732", + text = "hammer_2h_horde_b_01.m2", + value = "hammer_2h_horde_b_01.m2", + }, + { + fileId = "145737", + text = "hammer_2h_horde_b_02.m2", + value = "hammer_2h_horde_b_02.m2", + }, + { + fileId = "145742", + text = "hammer_2h_horde_b_03.m2", + value = "hammer_2h_horde_b_03.m2", + }, + { + fileId = "145743", + text = "hammer_2h_horde_b_04.m2", + value = "hammer_2h_horde_b_04.m2", + }, + { + fileId = "145745", + text = "hammer_2h_horde_c_01.m2", + value = "hammer_2h_horde_c_01.m2", + }, + { + fileId = "145752", + text = "hammer_2h_horde_c_02.m2", + value = "hammer_2h_horde_c_02.m2", + }, + { + fileId = "145758", + text = "hammer_2h_horde_c_03.m2", + value = "hammer_2h_horde_c_03.m2", + }, + { + fileId = "145760", + text = "hammer_2h_horde_c_04.m2", + value = "hammer_2h_horde_c_04.m2", + }, + { + fileId = "145764", + text = "hammer_2h_maul_a_01.m2", + value = "hammer_2h_maul_a_01.m2", + }, + { + fileId = "145768", + text = "hammer_2h_maul_a_02.m2", + value = "hammer_2h_maul_a_02.m2", + }, + { + fileId = "145772", + text = "hammer_2h_maul_a_03.m2", + value = "hammer_2h_maul_a_03.m2", + }, + { + fileId = "145776", + text = "hammer_2h_maul_b_01.m2", + value = "hammer_2h_maul_b_01.m2", + }, + { + fileId = "145780", + text = "hammer_2h_maul_b_02.m2", + value = "hammer_2h_maul_b_02.m2", + }, + { + fileId = "145785", + text = "hammer_2h_maul_b_03.m2", + value = "hammer_2h_maul_b_03.m2", + }, + { + fileId = "238649", + text = "hammer_2h_pvp_c_01.m2", + value = "hammer_2h_pvp_c_01.m2", + }, + { + fileId = "145790", + text = "hammer_2h_pvpalliance_a_01.m2", + value = "hammer_2h_pvpalliance_a_01.m2", + }, + { + fileId = "145794", + text = "hammer_2h_pvphorde_a_01.m2", + value = "hammer_2h_pvphorde_a_01.m2", + }, + { + fileId = "145797", + text = "hammer_2h_standard_d_01.m2", + value = "hammer_2h_standard_d_01.m2", + }, + { + fileId = "145801", + text = "hammer_2h_standard_d_02.m2", + value = "hammer_2h_standard_d_02.m2", + }, + { + fileId = "145802", + text = "hammer_2h_standard_d_03.m2", + value = "hammer_2h_standard_d_03.m2", + }, + { + fileId = "145809", + text = "hammer_2h_standard_e_01.m2", + value = "hammer_2h_standard_e_01.m2", + }, + { + fileId = "145810", + text = "hammer_2h_war_a_01.m2", + value = "hammer_2h_war_a_01.m2", + }, + { + fileId = "145815", + text = "hammer_2h_war_b_01holy.m2", + value = "hammer_2h_war_b_01holy.m2", + }, + { + fileId = "145817", + text = "hand_1h_ahnqiraj_d_01.m2", + value = "hand_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "145819", + text = "hand_1h_ahnqiraj_d_02.m2", + value = "hand_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "145821", + text = "hand_1h_ahnqiraj_d_03.m2", + value = "hand_1h_ahnqiraj_d_03.m2", + }, + { + fileId = "145824", + text = "hand_1h_auchindoun_d_01left.m2", + value = "hand_1h_auchindoun_d_01left.m2", + }, + { + fileId = "145825", + text = "hand_1h_auchindoun_d_01right.m2", + value = "hand_1h_auchindoun_d_01right.m2", + }, + { + fileId = "145827", + text = "hand_1h_blackwing_a_01.m2", + value = "hand_1h_blackwing_a_01.m2", + }, + { + fileId = "145828", + text = "hand_1h_blackwing_a_01left.m2", + value = "hand_1h_blackwing_a_01left.m2", + }, + { + fileId = "145830", + text = "hand_1h_blackwing_a_02.m2", + value = "hand_1h_blackwing_a_02.m2", + }, + { + fileId = "145831", + text = "hand_1h_blackwing_a_02left.m2", + value = "hand_1h_blackwing_a_02left.m2", + }, + { + fileId = "145832", + text = "hand_1h_claw_a_01.m2", + value = "hand_1h_claw_a_01.m2", + }, + { + fileId = "145834", + text = "hand_1h_claw_a_01left.m2", + value = "hand_1h_claw_a_01left.m2", + }, + { + fileId = "145837", + text = "hand_1h_claw_a_02.m2", + value = "hand_1h_claw_a_02.m2", + }, + { + fileId = "145840", + text = "hand_1h_claw_a_02left.m2", + value = "hand_1h_claw_a_02left.m2", + }, + { + fileId = "145842", + text = "hand_1h_claw_b_01.m2", + value = "hand_1h_claw_b_01.m2", + }, + { + fileId = "145844", + text = "hand_1h_claw_b_01left.m2", + value = "hand_1h_claw_b_01left.m2", + }, + { + fileId = "145846", + text = "hand_1h_draktharon_d_01left.m2", + value = "hand_1h_draktharon_d_01left.m2", + }, + { + fileId = "145847", + text = "hand_1h_draktharon_d_01right.m2", + value = "hand_1h_draktharon_d_01right.m2", + }, + { + fileId = "238653", + text = "hand_1h_giant_weaponclub.m2", + value = "hand_1h_giant_weaponclub.m2", + }, + { + fileId = "308099", + text = "hand_1h_icecrownraid_d_01left.m2", + value = "hand_1h_icecrownraid_d_01left.m2", + }, + { + fileId = "308100", + text = "hand_1h_icecrownraid_d_01right.m2", + value = "hand_1h_icecrownraid_d_01right.m2", + }, + { + fileId = "311346", + text = "hand_1h_icecrownraid_d_02left.m2", + value = "hand_1h_icecrownraid_d_02left.m2", + }, + { + fileId = "311349", + text = "hand_1h_icecrownraid_d_02right.m2", + value = "hand_1h_icecrownraid_d_02right.m2", + }, + { + fileId = "145850", + text = "hand_1h_kargath_d_01left.m2", + value = "hand_1h_kargath_d_01left.m2", + }, + { + fileId = "145853", + text = "hand_1h_kargath_d_01right.m2", + value = "hand_1h_kargath_d_01right.m2", + }, + { + fileId = "145855", + text = "hand_1h_knuckle_a_01.m2", + value = "hand_1h_knuckle_a_01.m2", + }, + { + fileId = "145859", + text = "hand_1h_knuckle_b_01.m2", + value = "hand_1h_knuckle_b_01.m2", + }, + { + fileId = "238659", + text = "hand_1h_naxx25_d_01.m2", + value = "hand_1h_naxx25_d_01.m2", + }, + { + fileId = "238661", + text = "hand_1h_naxx25_d_02.m2", + value = "hand_1h_naxx25_d_02.m2", + }, + { + fileId = "238664", + text = "hand_1h_naxx25_d_02left.m2", + value = "hand_1h_naxx25_d_02left.m2", + }, + { + fileId = "238667", + text = "hand_1h_naxx25_d_02right.m2", + value = "hand_1h_naxx25_d_02right.m2", + }, + { + fileId = "145864", + text = "hand_1h_naxxramas_d_01.m2", + value = "hand_1h_naxxramas_d_01.m2", + }, + { + fileId = "238668", + text = "hand_1h_naxxramas_d_01right.m2", + value = "hand_1h_naxxramas_d_01right.m2", + }, + { + fileId = "145867", + text = "hand_1h_nexus_d_01left.m2", + value = "hand_1h_nexus_d_01left.m2", + }, + { + fileId = "145870", + text = "hand_1h_nexus_d_01right.m2", + value = "hand_1h_nexus_d_01right.m2", + }, + { + fileId = "145873", + text = "hand_1h_outlandpvp_d_01left.m2", + value = "hand_1h_outlandpvp_d_01left.m2", + }, + { + fileId = "145877", + text = "hand_1h_outlandpvp_d_01right.m2", + value = "hand_1h_outlandpvp_d_01right.m2", + }, + { + fileId = "145882", + text = "hand_1h_outlandraid_d_01left.m2", + value = "hand_1h_outlandraid_d_01left.m2", + }, + { + fileId = "145883", + text = "hand_1h_outlandraid_d_01right.m2", + value = "hand_1h_outlandraid_d_01right.m2", + }, + { + fileId = "145885", + text = "hand_1h_outlandraid_d_02left.m2", + value = "hand_1h_outlandraid_d_02left.m2", + }, + { + fileId = "145889", + text = "hand_1h_outlandraid_d_02right.m2", + value = "hand_1h_outlandraid_d_02right.m2", + }, + { + fileId = "145894", + text = "hand_1h_outlandraid_d_03left.m2", + value = "hand_1h_outlandraid_d_03left.m2", + }, + { + fileId = "145896", + text = "hand_1h_outlandraid_d_03right.m2", + value = "hand_1h_outlandraid_d_03right.m2", + }, + { + fileId = "145901", + text = "hand_1h_outlandraid_d_04left.m2", + value = "hand_1h_outlandraid_d_04left.m2", + }, + { + fileId = "145902", + text = "hand_1h_outlandraid_d_04right.m2", + value = "hand_1h_outlandraid_d_04right.m2", + }, + { + fileId = "145904", + text = "hand_1h_outlandraid_d_05left.m2", + value = "hand_1h_outlandraid_d_05left.m2", + }, + { + fileId = "145905", + text = "hand_1h_outlandraid_d_05right.m2", + value = "hand_1h_outlandraid_d_05right.m2", + }, + { + fileId = "304828", + text = "hand_1h_pvealliance_d_01left.m2", + value = "hand_1h_pvealliance_d_01left.m2", + }, + { + fileId = "304829", + text = "hand_1h_pvealliance_d_01right.m2", + value = "hand_1h_pvealliance_d_01right.m2", + }, + { + fileId = "305704", + text = "hand_1h_pvehorde_d_01left.m2", + value = "hand_1h_pvehorde_d_01left.m2", + }, + { + fileId = "305708", + text = "hand_1h_pvehorde_d_01right.m2", + value = "hand_1h_pvehorde_d_01right.m2", + }, + { + fileId = "306521", + text = "hand_1h_pvp320_c_01left.m2", + value = "hand_1h_pvp320_c_01left.m2", + }, + { + fileId = "306522", + text = "hand_1h_pvp320_c_01right.m2", + value = "hand_1h_pvp320_c_01right.m2", + }, + { + fileId = "326809", + text = "hand_1h_pvp330_d_01left.m2", + value = "hand_1h_pvp330_d_01left.m2", + }, + { + fileId = "326811", + text = "hand_1h_pvp330_d_01right.m2", + value = "hand_1h_pvp330_d_01right.m2", + }, + { + fileId = "238672", + text = "hand_1h_pvp_c_01left.m2", + value = "hand_1h_pvp_c_01left.m2", + }, + { + fileId = "238674", + text = "hand_1h_pvp_c_01right.m2", + value = "hand_1h_pvp_c_01right.m2", + }, + { + fileId = "145907", + text = "hand_1h_pvpalliance_a_01.m2", + value = "hand_1h_pvpalliance_a_01.m2", + }, + { + fileId = "145908", + text = "hand_1h_pvpalliance_a_01left.m2", + value = "hand_1h_pvpalliance_a_01left.m2", + }, + { + fileId = "145916", + text = "hand_1h_raid_d_01left.m2", + value = "hand_1h_raid_d_01left.m2", + }, + { + fileId = "145917", + text = "hand_1h_raid_d_01right.m2", + value = "hand_1h_raid_d_01right.m2", + }, + { + fileId = "145924", + text = "hand_1h_raid_d_02left.m2", + value = "hand_1h_raid_d_02left.m2", + }, + { + fileId = "145925", + text = "hand_1h_raid_d_02right.m2", + value = "hand_1h_raid_d_02right.m2", + }, + { + fileId = "145931", + text = "hand_1h_raid_d_03left.m2", + value = "hand_1h_raid_d_03left.m2", + }, + { + fileId = "145932", + text = "hand_1h_raid_d_03right.m2", + value = "hand_1h_raid_d_03right.m2", + }, + { + fileId = "145936", + text = "hand_1h_shaman_d_01left.m2", + value = "hand_1h_shaman_d_01left.m2", + }, + { + fileId = "145938", + text = "hand_1h_shaman_d_01right.m2", + value = "hand_1h_shaman_d_01right.m2", + }, + { + fileId = "145939", + text = "hand_1h_sunwell_c_01.m2", + value = "hand_1h_sunwell_c_01.m2", + }, + { + fileId = "145941", + text = "hand_1h_sunwell_c_01left.m2", + value = "hand_1h_sunwell_c_01left.m2", + }, + { + fileId = "145944", + text = "hand_1h_sunwell_c_01right.m2", + value = "hand_1h_sunwell_c_01right.m2", + }, + { + fileId = "145950", + text = "hand_1h_sunwell_d_01left.m2", + value = "hand_1h_sunwell_d_01left.m2", + }, + { + fileId = "145951", + text = "hand_1h_sunwell_d_01right.m2", + value = "hand_1h_sunwell_d_01right.m2", + }, + { + fileId = "145957", + text = "hand_1h_sunwell_d_02left.m2", + value = "hand_1h_sunwell_d_02left.m2", + }, + { + fileId = "145958", + text = "hand_1h_sunwell_d_02right.m2", + value = "hand_1h_sunwell_d_02right.m2", + }, + { + fileId = "238678", + text = "hand_1h_ulduarraid_d_01left.m2", + value = "hand_1h_ulduarraid_d_01left.m2", + }, + { + fileId = "238680", + text = "hand_1h_ulduarraid_d_01right.m2", + value = "hand_1h_ulduarraid_d_01right.m2", + }, + { + fileId = "238685", + text = "hand_1h_ulduarraid_d_02left.m2", + value = "hand_1h_ulduarraid_d_02left.m2", + }, + { + fileId = "238687", + text = "hand_1h_ulduarraid_d_02right.m2", + value = "hand_1h_ulduarraid_d_02right.m2", + }, + { + fileId = "145962", + text = "hand_1h_utgarde_d_01left.m2", + value = "hand_1h_utgarde_d_01left.m2", + }, + { + fileId = "145964", + text = "hand_1h_utgarde_d_01right.m2", + value = "hand_1h_utgarde_d_01right.m2", + }, + { + fileId = "145966", + text = "hand_1h_zulaman_d_01left.m2", + value = "hand_1h_zulaman_d_01left.m2", + }, + { + fileId = "145968", + text = "hand_1h_zulaman_d_01right.m2", + value = "hand_1h_zulaman_d_01right.m2", + }, + { + fileId = "145971", + text = "hand_1h_zulaman_d_02left.m2", + value = "hand_1h_zulaman_d_02left.m2", + }, + { + fileId = "145974", + text = "hand_1h_zulaman_d_02right.m2", + value = "hand_1h_zulaman_d_02right.m2", + }, + { + fileId = "145976", + text = "hand_1h_zulgurub_d_01.m2", + value = "hand_1h_zulgurub_d_01.m2", + }, + { + fileId = "145977", + text = "hand_1h_zulgurub_d_01left.m2", + value = "hand_1h_zulgurub_d_01left.m2", + }, + { + fileId = "145978", + text = "hand_1h_zulgurub_d_02.m2", + value = "hand_1h_zulgurub_d_02.m2", + }, + { + fileId = "145980", + text = "hand_1h_zulgurub_d_02left.m2", + value = "hand_1h_zulgurub_d_02left.m2", + }, + { + fileId = "145982", + text = "hand_lh_pvphorde_a_01.m2", + value = "hand_lh_pvphorde_a_01.m2", + }, + { + fileId = "145983", + text = "hand_rh_pvphorde_a_01.m2", + value = "hand_rh_pvphorde_a_01.m2", + }, + { + fileId = "145994", + text = "knife_1h_ahnqiraj_d_01.m2", + value = "knife_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "145995", + text = "knife_1h_ahnqiraj_d_02.m2", + value = "knife_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "145996", + text = "knife_1h_ahnqiraj_d_03.m2", + value = "knife_1h_ahnqiraj_d_03.m2", + }, + { + fileId = "145997", + text = "knife_1h_ahnqiraj_d_04.m2", + value = "knife_1h_ahnqiraj_d_04.m2", + }, + { + fileId = "294003", + text = "knife_1h_alliancecovenant_d_01.m2", + value = "knife_1h_alliancecovenant_d_01.m2", + }, + { + fileId = "145998", + text = "knife_1h_blacktemple_d_01.m2", + value = "knife_1h_blacktemple_d_01.m2", + }, + { + fileId = "146003", + text = "knife_1h_blacktemple_d_02.m2", + value = "knife_1h_blacktemple_d_02.m2", + }, + { + fileId = "146007", + text = "knife_1h_blacktemple_d_03.m2", + value = "knife_1h_blacktemple_d_03.m2", + }, + { + fileId = "146009", + text = "knife_1h_blackwing_a_01.m2", + value = "knife_1h_blackwing_a_01.m2", + }, + { + fileId = "146011", + text = "knife_1h_blackwing_a_02.m2", + value = "knife_1h_blackwing_a_02.m2", + }, + { + fileId = "146013", + text = "knife_1h_blood_a_01.m2", + value = "knife_1h_blood_a_01.m2", + }, + { + fileId = "146018", + text = "knife_1h_blood_a_02.m2", + value = "knife_1h_blood_a_02.m2", + }, + { + fileId = "146021", + text = "knife_1h_blood_a_03.m2", + value = "knife_1h_blood_a_03.m2", + }, + { + fileId = "146025", + text = "knife_1h_blood_a_04.m2", + value = "knife_1h_blood_a_04.m2", + }, + { + fileId = "146029", + text = "knife_1h_blood_a_05.m2", + value = "knife_1h_blood_a_05.m2", + }, + { + fileId = "146033", + text = "knife_1h_blood_b_01.m2", + value = "knife_1h_blood_b_01.m2", + }, + { + fileId = "146037", + text = "knife_1h_blood_b_02.m2", + value = "knife_1h_blood_b_02.m2", + }, + { + fileId = "238688", + text = "knife_1h_caster_pvp_c_01.m2", + value = "knife_1h_caster_pvp_c_01.m2", + }, + { + fileId = "146042", + text = "knife_1h_caverns_d_01.m2", + value = "knife_1h_caverns_d_01.m2", + }, + { + fileId = "146043", + text = "knife_1h_cleaver_a_01.m2", + value = "knife_1h_cleaver_a_01.m2", + }, + { + fileId = "146046", + text = "knife_1h_coilfang_d_01.m2", + value = "knife_1h_coilfang_d_01.m2", + }, + { + fileId = "146052", + text = "knife_1h_coilfang_d_02.m2", + value = "knife_1h_coilfang_d_02.m2", + }, + { + fileId = "146053", + text = "knife_1h_cotstrat_d_01.m2", + value = "knife_1h_cotstrat_d_01.m2", + }, + { + fileId = "146058", + text = "knife_1h_cotstrat_d_02.m2", + value = "knife_1h_cotstrat_d_02.m2", + }, + { + fileId = "146063", + text = "knife_1h_cotstrat_d_03.m2", + value = "knife_1h_cotstrat_d_03.m2", + }, + { + fileId = "146068", + text = "knife_1h_dagger_a_01.m2", + value = "knife_1h_dagger_a_01.m2", + }, + { + fileId = "146072", + text = "knife_1h_dagger_a_02.m2", + value = "knife_1h_dagger_a_02.m2", + }, + { + fileId = "146076", + text = "knife_1h_dagger_a_03.m2", + value = "knife_1h_dagger_a_03.m2", + }, + { + fileId = "146081", + text = "knife_1h_dagger_a_04.m2", + value = "knife_1h_dagger_a_04.m2", + }, + { + fileId = "146086", + text = "knife_1h_dagger_b_01.m2", + value = "knife_1h_dagger_b_01.m2", + }, + { + fileId = "146090", + text = "knife_1h_dagger_b_02.m2", + value = "knife_1h_dagger_b_02.m2", + }, + { + fileId = "146094", + text = "knife_1h_dagger_b_03.m2", + value = "knife_1h_dagger_b_03.m2", + }, + { + fileId = "146101", + text = "knife_1h_dagger_b_04.m2", + value = "knife_1h_dagger_b_04.m2", + }, + { + fileId = "146107", + text = "knife_1h_dagger_b_05.m2", + value = "knife_1h_dagger_b_05.m2", + }, + { + fileId = "146112", + text = "knife_1h_dagger_b_06.m2", + value = "knife_1h_dagger_b_06.m2", + }, + { + fileId = "146117", + text = "knife_1h_dalaran_d_01.m2", + value = "knife_1h_dalaran_d_01.m2", + }, + { + fileId = "146122", + text = "knife_1h_draenei_a_01.m2", + value = "knife_1h_draenei_a_01.m2", + }, + { + fileId = "146128", + text = "knife_1h_draenei_a_02.m2", + value = "knife_1h_draenei_a_02.m2", + }, + { + fileId = "146134", + text = "knife_1h_draenei_a_03.m2", + value = "knife_1h_draenei_a_03.m2", + }, + { + fileId = "238693", + text = "knife_1h_draktharon_d_01.m2", + value = "knife_1h_draktharon_d_01.m2", + }, + { + fileId = "146143", + text = "knife_1h_epic_a_03.m2", + value = "knife_1h_epic_a_03.m2", + }, + { + fileId = "146144", + text = "knife_1h_epic_a_04.m2", + value = "knife_1h_epic_a_04.m2", + }, + { + fileId = "146146", + text = "knife_1h_epic_a_05.m2", + value = "knife_1h_epic_a_05.m2", + }, + { + fileId = "322908", + text = "knife_1h_epic_a_05alt.m2", + value = "knife_1h_epic_a_05alt.m2", + }, + { + fileId = "146148", + text = "knife_1h_exotic_a_01.m2", + value = "knife_1h_exotic_a_01.m2", + }, + { + fileId = "146152", + text = "knife_1h_exotic_a_02.m2", + value = "knife_1h_exotic_a_02.m2", + }, + { + fileId = "146156", + text = "knife_1h_exotic_b_01.m2", + value = "knife_1h_exotic_b_01.m2", + }, + { + fileId = "146160", + text = "knife_1h_exotic_b_02.m2", + value = "knife_1h_exotic_b_02.m2", + }, + { + fileId = "146164", + text = "knife_1h_hellfire_c_01.m2", + value = "knife_1h_hellfire_c_01.m2", + }, + { + fileId = "146170", + text = "knife_1h_horde_a_01.m2", + value = "knife_1h_horde_a_01.m2", + }, + { + fileId = "294042", + text = "knife_1h_hordecovenant_d_01.m2", + value = "knife_1h_hordecovenant_d_01.m2", + }, + { + fileId = "146174", + text = "knife_1h_hotpoker_a_01.m2", + value = "knife_1h_hotpoker_a_01.m2", + }, + { + fileId = "146176", + text = "knife_1h_hunting_a_01.m2", + value = "knife_1h_hunting_a_01.m2", + }, + { + fileId = "146180", + text = "knife_1h_hunting_a_02.m2", + value = "knife_1h_hunting_a_02.m2", + }, + { + fileId = "146184", + text = "knife_1h_hunting_b_01.m2", + value = "knife_1h_hunting_b_01.m2", + }, + { + fileId = "146188", + text = "knife_1h_hunting_b_02.m2", + value = "knife_1h_hunting_b_02.m2", + }, + { + fileId = "146192", + text = "knife_1h_hyjal_d_01.m2", + value = "knife_1h_hyjal_d_01.m2", + }, + { + fileId = "146197", + text = "knife_1h_hyjal_d_02.m2", + value = "knife_1h_hyjal_d_02.m2", + }, + { + fileId = "314890", + text = "knife_1h_icecrownraid_d_01.m2", + value = "knife_1h_icecrownraid_d_01.m2", + }, + { + fileId = "311604", + text = "knife_1h_icecrownraid_d_02.m2", + value = "knife_1h_icecrownraid_d_02.m2", + }, + { + fileId = "322121", + text = "knife_1h_icecrownraid_d_03.m2", + value = "knife_1h_icecrownraid_d_03.m2", + }, + { + fileId = "319210", + text = "knife_1h_icecrownraid_d_04.m2", + value = "knife_1h_icecrownraid_d_04.m2", + }, + { + fileId = "324971", + text = "knife_1h_icecrownraid_d_05.m2", + value = "knife_1h_icecrownraid_d_05.m2", + }, + { + fileId = "146203", + text = "knife_1h_katana_a_01.m2", + value = "knife_1h_katana_a_01.m2", + }, + { + fileId = "146207", + text = "knife_1h_katana_b_01.m2", + value = "knife_1h_katana_b_01.m2", + }, + { + fileId = "146211", + text = "knife_1h_korean_a_01.m2", + value = "knife_1h_korean_a_01.m2", + }, + { + fileId = "146216", + text = "knife_1h_mage_d_01.m2", + value = "knife_1h_mage_d_01.m2", + }, + { + fileId = "238699", + text = "knife_1h_naxx25_d_01.m2", + value = "knife_1h_naxx25_d_01.m2", + }, + { + fileId = "146221", + text = "knife_1h_naxxramas_d_01.m2", + value = "knife_1h_naxxramas_d_01.m2", + }, + { + fileId = "146222", + text = "knife_1h_nexus_d_01.m2", + value = "knife_1h_nexus_d_01.m2", + }, + { + fileId = "146226", + text = "knife_1h_nexus_d_02.m2", + value = "knife_1h_nexus_d_02.m2", + }, + { + fileId = "146231", + text = "knife_1h_nexus_d_03.m2", + value = "knife_1h_nexus_d_03.m2", + }, + { + fileId = "146236", + text = "knife_1h_northrend_b_01.m2", + value = "knife_1h_northrend_b_01.m2", + }, + { + fileId = "146241", + text = "knife_1h_northrend_b_02.m2", + value = "knife_1h_northrend_b_02.m2", + }, + { + fileId = "146246", + text = "knife_1h_northrend_b_03.m2", + value = "knife_1h_northrend_b_03.m2", + }, + { + fileId = "146251", + text = "knife_1h_northrend_c_01.m2", + value = "knife_1h_northrend_c_01.m2", + }, + { + fileId = "146256", + text = "knife_1h_northrend_c_02.m2", + value = "knife_1h_northrend_c_02.m2", + }, + { + fileId = "146258", + text = "knife_1h_northrend_c_03.m2", + value = "knife_1h_northrend_c_03.m2", + }, + { + fileId = "146262", + text = "knife_1h_northrend_d_01.m2", + value = "knife_1h_northrend_d_01.m2", + }, + { + fileId = "146268", + text = "knife_1h_northrend_d_02.m2", + value = "knife_1h_northrend_d_02.m2", + }, + { + fileId = "325206", + text = "knife_1h_onyxia_a_01alt.m2", + value = "knife_1h_onyxia_a_01alt.m2", + }, + { + fileId = "146273", + text = "knife_1h_outlandraid_d_01.m2", + value = "knife_1h_outlandraid_d_01.m2", + }, + { + fileId = "252192", + text = "knife_1h_pvealliance_d_01.m2", + value = "knife_1h_pvealliance_d_01.m2", + }, + { + fileId = "304423", + text = "knife_1h_pvealliance_d_02.m2", + value = "knife_1h_pvealliance_d_02.m2", + }, + { + fileId = "250124", + text = "knife_1h_pvehorde_d_01.m2", + value = "knife_1h_pvehorde_d_01.m2", + }, + { + fileId = "250648", + text = "knife_1h_pvehorde_d_02.m2", + value = "knife_1h_pvehorde_d_02.m2", + }, + { + fileId = "307043", + text = "knife_1h_pvp320_c_01.m2", + value = "knife_1h_pvp320_c_01.m2", + }, + { + fileId = "307369", + text = "knife_1h_pvp320_c_02.m2", + value = "knife_1h_pvp320_c_02.m2", + }, + { + fileId = "326812", + text = "knife_1h_pvp330_d_01.m2", + value = "knife_1h_pvp330_d_01.m2", + }, + { + fileId = "326885", + text = "knife_1h_pvp330_d_02.m2", + value = "knife_1h_pvp330_d_02.m2", + }, + { + fileId = "146279", + text = "knife_1h_pvpalliance_a_01.m2", + value = "knife_1h_pvpalliance_a_01.m2", + }, + { + fileId = "146284", + text = "knife_1h_pvphorde_a_01.m2", + value = "knife_1h_pvphorde_a_01.m2", + }, + { + fileId = "146291", + text = "knife_1h_raid_d_01.m2", + value = "knife_1h_raid_d_01.m2", + }, + { + fileId = "146293", + text = "knife_1h_raid_d_02.m2", + value = "knife_1h_raid_d_02.m2", + }, + { + fileId = "146295", + text = "knife_1h_raid_d_03.m2", + value = "knife_1h_raid_d_03.m2", + }, + { + fileId = "146297", + text = "knife_1h_raid_d_04.m2", + value = "knife_1h_raid_d_04.m2", + }, + { + fileId = "146299", + text = "knife_1h_raid_d_05.m2", + value = "knife_1h_raid_d_05.m2", + }, + { + fileId = "146301", + text = "knife_1h_rogue_d_01.m2", + value = "knife_1h_rogue_d_01.m2", + }, + { + fileId = "238704", + text = "knife_1h_rogue_pvp_c_01.m2", + value = "knife_1h_rogue_pvp_c_01.m2", + }, + { + fileId = "146306", + text = "knife_1h_standard_a_01.m2", + value = "knife_1h_standard_a_01.m2", + }, + { + fileId = "146309", + text = "knife_1h_stratholme_d_01.m2", + value = "knife_1h_stratholme_d_01.m2", + }, + { + fileId = "146311", + text = "knife_1h_stratholme_d_02.m2", + value = "knife_1h_stratholme_d_02.m2", + }, + { + fileId = "146313", + text = "knife_1h_stratholme_d_03.m2", + value = "knife_1h_stratholme_d_03.m2", + }, + { + fileId = "146315", + text = "knife_1h_sunwell_c_01.m2", + value = "knife_1h_sunwell_c_01.m2", + }, + { + fileId = "146319", + text = "knife_1h_sunwell_c_02.m2", + value = "knife_1h_sunwell_c_02.m2", + }, + { + fileId = "146324", + text = "knife_1h_sunwell_d_01.m2", + value = "knife_1h_sunwell_d_01.m2", + }, + { + fileId = "146330", + text = "knife_1h_sunwell_d_02.m2", + value = "knife_1h_sunwell_d_02.m2", + }, + { + fileId = "146335", + text = "knife_1h_sunwell_d_03.m2", + value = "knife_1h_sunwell_d_03.m2", + }, + { + fileId = "146340", + text = "knife_1h_sunwell_d_04.m2", + value = "knife_1h_sunwell_d_04.m2", + }, + { + fileId = "146345", + text = "knife_1h_tarantula_b_01.m2", + value = "knife_1h_tarantula_b_01.m2", + }, + { + fileId = "146351", + text = "knife_1h_tuskarr_b_01.m2", + value = "knife_1h_tuskarr_b_01.m2", + }, + { + fileId = "238709", + text = "knife_1h_ulduarraid_d_01.m2", + value = "knife_1h_ulduarraid_d_01.m2", + }, + { + fileId = "238714", + text = "knife_1h_ulduarraid_d_02.m2", + value = "knife_1h_ulduarraid_d_02.m2", + }, + { + fileId = "238720", + text = "knife_1h_ulduarraid_d_03.m2", + value = "knife_1h_ulduarraid_d_03.m2", + }, + { + fileId = "238725", + text = "knife_1h_ulduarraid_d_04.m2", + value = "knife_1h_ulduarraid_d_04.m2", + }, + { + fileId = "238726", + text = "knife_1h_ulduarraid_d_05.m2", + value = "knife_1h_ulduarraid_d_05.m2", + }, + { + fileId = "146354", + text = "knife_1h_utgarde_d_01.m2", + value = "knife_1h_utgarde_d_01.m2", + }, + { + fileId = "146359", + text = "knife_1h_utgarde_d_02.m2", + value = "knife_1h_utgarde_d_02.m2", + }, + { + fileId = "146364", + text = "knife_1h_utgarde_d_03.m2", + value = "knife_1h_utgarde_d_03.m2", + }, + { + fileId = "146369", + text = "knife_1h_vulture_a_01.m2", + value = "knife_1h_vulture_a_01.m2", + }, + { + fileId = "146376", + text = "knife_1h_zulaman_d_01.m2", + value = "knife_1h_zulaman_d_01.m2", + }, + { + fileId = "146381", + text = "knife_1h_zulaman_d_02.m2", + value = "knife_1h_zulaman_d_02.m2", + }, + { + fileId = "146386", + text = "knife_1h_zulaman_d_03.m2", + value = "knife_1h_zulaman_d_03.m2", + }, + { + fileId = "146392", + text = "knife_1h_zulaman_d_04.m2", + value = "knife_1h_zulaman_d_04.m2", + }, + { + fileId = "146398", + text = "knife_1h_zulgurub_d_01.m2", + value = "knife_1h_zulgurub_d_01.m2", + }, + { + fileId = "146404", + text = "knife_1h_zulgurub_d_02.m2", + value = "knife_1h_zulgurub_d_02.m2", + }, + { + fileId = "146409", + text = "knife_outlandraid_d_02.m2", + value = "knife_outlandraid_d_02.m2", + }, + { + fileId = "146415", + text = "knife_outlandraid_d_03.m2", + value = "knife_outlandraid_d_03.m2", + }, + { + fileId = "146421", + text = "knife_outlandraid_d_04.m2", + value = "knife_outlandraid_d_04.m2", + }, + { + fileId = "146429", + text = "knife_outlandraid_d_05.m2", + value = "knife_outlandraid_d_05.m2", + }, + { + fileId = "146436", + text = "knife_outlandraid_d_06.m2", + value = "knife_outlandraid_d_06.m2", + }, + { + fileId = "146442", + text = "knife_outlandraid_d_07.m2", + value = "knife_outlandraid_d_07.m2", + }, + { + fileId = "146448", + text = "knife_outlandraid_d_08.m2", + value = "knife_outlandraid_d_08.m2", + }, + { + fileId = "146464", + text = "mace_1h_ahnqiraj_d_01.m2", + value = "mace_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "146466", + text = "mace_1h_ahnqiraj_d_02.m2", + value = "mace_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "146468", + text = "mace_1h_ahnqiraj_d_03.m2", + value = "mace_1h_ahnqiraj_d_03.m2", + }, + { + fileId = "293757", + text = "mace_1h_alliancecovenant_d_01.m2", + value = "mace_1h_alliancecovenant_d_01.m2", + }, + { + fileId = "238727", + text = "mace_1h_aspects_d_01.m2", + value = "mace_1h_aspects_d_01.m2", + }, + { + fileId = "146470", + text = "mace_1h_auchindoun_d_01.m2", + value = "mace_1h_auchindoun_d_01.m2", + }, + { + fileId = "146472", + text = "mace_1h_blacksmithing_d_01.m2", + value = "mace_1h_blacksmithing_d_01.m2", + }, + { + fileId = "146477", + text = "mace_1h_blacksmithing_d_02.m2", + value = "mace_1h_blacksmithing_d_02.m2", + }, + { + fileId = "146482", + text = "mace_1h_blacksmithing_d_03.m2", + value = "mace_1h_blacksmithing_d_03.m2", + }, + { + fileId = "146486", + text = "mace_1h_blacktemple_d_01.m2", + value = "mace_1h_blacktemple_d_01.m2", + }, + { + fileId = "146491", + text = "mace_1h_blacktemple_d_02.m2", + value = "mace_1h_blacktemple_d_02.m2", + }, + { + fileId = "146494", + text = "mace_1h_blackwing_a_01.m2", + value = "mace_1h_blackwing_a_01.m2", + }, + { + fileId = "146497", + text = "mace_1h_blackwing_a_02.m2", + value = "mace_1h_blackwing_a_02.m2", + }, + { + fileId = "146499", + text = "mace_1h_blood_a_01.m2", + value = "mace_1h_blood_a_01.m2", + }, + { + fileId = "146501", + text = "mace_1h_blood_a_02.m2", + value = "mace_1h_blood_a_02.m2", + }, + { + fileId = "350857", + text = "mace_1h_bloodqueen_d_01.m2", + value = "mace_1h_bloodqueen_d_01.m2", + }, + { + fileId = "146504", + text = "mace_1h_coilfang_d_01.m2", + value = "mace_1h_coilfang_d_01.m2", + }, + { + fileId = "146506", + text = "mace_1h_cotstrat_d_01.m2", + value = "mace_1h_cotstrat_d_01.m2", + }, + { + fileId = "146516", + text = "mace_1h_doomhammer_d_01.m2", + value = "mace_1h_doomhammer_d_01.m2", + }, + { + fileId = "146519", + text = "mace_1h_draenei_a_01.m2", + value = "mace_1h_draenei_a_01.m2", + }, + { + fileId = "146525", + text = "mace_1h_draenei_a_02.m2", + value = "mace_1h_draenei_a_02.m2", + }, + { + fileId = "238735", + text = "mace_1h_draktharon_d_01.m2", + value = "mace_1h_draktharon_d_01.m2", + }, + { + fileId = "238742", + text = "mace_1h_draktharon_d_02.m2", + value = "mace_1h_draktharon_d_02.m2", + }, + { + fileId = "146531", + text = "mace_1h_flanged_a_01.m2", + value = "mace_1h_flanged_a_01.m2", + }, + { + fileId = "146533", + text = "mace_1h_flanged_a_02.m2", + value = "mace_1h_flanged_a_02.m2", + }, + { + fileId = "146537", + text = "mace_1h_flanged_a_03.m2", + value = "mace_1h_flanged_a_03.m2", + }, + { + fileId = "146541", + text = "mace_1h_flanged_b_01.m2", + value = "mace_1h_flanged_b_01.m2", + }, + { + fileId = "146543", + text = "mace_1h_flanged_b_02.m2", + value = "mace_1h_flanged_b_02.m2", + }, + { + fileId = "146546", + text = "mace_1h_flanged_d_01.m2", + value = "mace_1h_flanged_d_01.m2", + }, + { + fileId = "238747", + text = "mace_1h_frostgiant.m2", + value = "mace_1h_frostgiant.m2", + }, + { + fileId = "146549", + text = "mace_1h_hellfire_d_01.m2", + value = "mace_1h_hellfire_d_01.m2", + }, + { + fileId = "294484", + text = "mace_1h_hordecovenant_d_01.m2", + value = "mace_1h_hordecovenant_d_01.m2", + }, + { + fileId = "146550", + text = "mace_1h_hyjal_d_01.m2", + value = "mace_1h_hyjal_d_01.m2", + }, + { + fileId = "312464", + text = "mace_1h_icecrownraid_d_01.m2", + value = "mace_1h_icecrownraid_d_01.m2", + }, + { + fileId = "312469", + text = "mace_1h_icecrownraid_d_02.m2", + value = "mace_1h_icecrownraid_d_02.m2", + }, + { + fileId = "321299", + text = "mace_1h_icecrownraid_d_03.m2", + value = "mace_1h_icecrownraid_d_03.m2", + }, + { + fileId = "312952", + text = "mace_1h_icecrownraid_d_04.m2", + value = "mace_1h_icecrownraid_d_04.m2", + }, + { + fileId = "238749", + text = "mace_1h_microphone_c_01.m2", + value = "mace_1h_microphone_c_01.m2", + }, + { + fileId = "305441", + text = "mace_1h_misc_d_01.m2", + value = "mace_1h_misc_d_01.m2", + }, + { + fileId = "146557", + text = "mace_1h_naxxramas_d_01.m2", + value = "mace_1h_naxxramas_d_01.m2", + }, + { + fileId = "146559", + text = "mace_1h_naxxramas_d_02.m2", + value = "mace_1h_naxxramas_d_02.m2", + }, + { + fileId = "146561", + text = "mace_1h_naxxramas_d_03.m2", + value = "mace_1h_naxxramas_d_03.m2", + }, + { + fileId = "146563", + text = "mace_1h_nexus_d_01.m2", + value = "mace_1h_nexus_d_01.m2", + }, + { + fileId = "146568", + text = "mace_1h_nexus_d_02.m2", + value = "mace_1h_nexus_d_02.m2", + }, + { + fileId = "146574", + text = "mace_1h_northrend_b_01.m2", + value = "mace_1h_northrend_b_01.m2", + }, + { + fileId = "146580", + text = "mace_1h_northrend_b_02.m2", + value = "mace_1h_northrend_b_02.m2", + }, + { + fileId = "146587", + text = "mace_1h_northrend_b_03.m2", + value = "mace_1h_northrend_b_03.m2", + }, + { + fileId = "146592", + text = "mace_1h_northrend_c_01.m2", + value = "mace_1h_northrend_c_01.m2", + }, + { + fileId = "146597", + text = "mace_1h_northrend_c_02.m2", + value = "mace_1h_northrend_c_02.m2", + }, + { + fileId = "146598", + text = "mace_1h_northrend_c_03.m2", + value = "mace_1h_northrend_c_03.m2", + }, + { + fileId = "146603", + text = "mace_1h_northrend_d_01.m2", + value = "mace_1h_northrend_d_01.m2", + }, + { + fileId = "146608", + text = "mace_1h_outlandpvp_d_01.m2", + value = "mace_1h_outlandpvp_d_01.m2", + }, + { + fileId = "146615", + text = "mace_1h_outlandraid_d_01.m2", + value = "mace_1h_outlandraid_d_01.m2", + }, + { + fileId = "146617", + text = "mace_1h_outlandraid_d_02.m2", + value = "mace_1h_outlandraid_d_02.m2", + }, + { + fileId = "146619", + text = "mace_1h_outlandraid_d_03.m2", + value = "mace_1h_outlandraid_d_03.m2", + }, + { + fileId = "146621", + text = "mace_1h_outlandraid_d_04.m2", + value = "mace_1h_outlandraid_d_04.m2", + }, + { + fileId = "146622", + text = "mace_1h_outlandraid_d_05.m2", + value = "mace_1h_outlandraid_d_05.m2", + }, + { + fileId = "146624", + text = "mace_1h_outlandraid_d_06.m2", + value = "mace_1h_outlandraid_d_06.m2", + }, + { + fileId = "146625", + text = "mace_1h_outlandraid_d_07.m2", + value = "mace_1h_outlandraid_d_07.m2", + }, + { + fileId = "146630", + text = "mace_1h_outlandraid_d_08.m2", + value = "mace_1h_outlandraid_d_08.m2", + }, + { + fileId = "146636", + text = "mace_1h_outlandraid_d_09.m2", + value = "mace_1h_outlandraid_d_09.m2", + }, + { + fileId = "146637", + text = "mace_1h_outlandraid_d_10.m2", + value = "mace_1h_outlandraid_d_10.m2", + }, + { + fileId = "146639", + text = "mace_1h_paladin_d_01.m2", + value = "mace_1h_paladin_d_01.m2", + }, + { + fileId = "304334", + text = "mace_1h_pvealliance_d_01.m2", + value = "mace_1h_pvealliance_d_01.m2", + }, + { + fileId = "305165", + text = "mace_1h_pvealliance_d_02.m2", + value = "mace_1h_pvealliance_d_02.m2", + }, + { + fileId = "294391", + text = "mace_1h_pvehorde_d_01.m2", + value = "mace_1h_pvehorde_d_01.m2", + }, + { + fileId = "303692", + text = "mace_1h_pvehorde_d_02.m2", + value = "mace_1h_pvehorde_d_02.m2", + }, + { + fileId = "306523", + text = "mace_1h_pvp320_c_01.m2", + value = "mace_1h_pvp320_c_01.m2", + }, + { + fileId = "306141", + text = "mace_1h_pvp320_c_02.m2", + value = "mace_1h_pvp320_c_02.m2", + }, + { + fileId = "326447", + text = "mace_1h_pvp330_d_01.m2", + value = "mace_1h_pvp330_d_01.m2", + }, + { + fileId = "327161", + text = "mace_1h_pvp330_d_02.m2", + value = "mace_1h_pvp330_d_02.m2", + }, + { + fileId = "146643", + text = "mace_1h_spiked_a_01.m2", + value = "mace_1h_spiked_a_01.m2", + }, + { + fileId = "146645", + text = "mace_1h_spiked_a_02.m2", + value = "mace_1h_spiked_a_02.m2", + }, + { + fileId = "146649", + text = "mace_1h_spiked_a_03.m2", + value = "mace_1h_spiked_a_03.m2", + }, + { + fileId = "146654", + text = "mace_1h_spiked_b_01.m2", + value = "mace_1h_spiked_b_01.m2", + }, + { + fileId = "146657", + text = "mace_1h_spiked_b_02.m2", + value = "mace_1h_spiked_b_02.m2", + }, + { + fileId = "146659", + text = "mace_1h_standard_a_01.m2", + value = "mace_1h_standard_a_01.m2", + }, + { + fileId = "146661", + text = "mace_1h_standard_a_02.m2", + value = "mace_1h_standard_a_02.m2", + }, + { + fileId = "146662", + text = "mace_1h_standard_b_01.m2", + value = "mace_1h_standard_b_01.m2", + }, + { + fileId = "146665", + text = "mace_1h_stratholme_d_01.m2", + value = "mace_1h_stratholme_d_01.m2", + }, + { + fileId = "146667", + text = "mace_1h_stratholme_d_02.m2", + value = "mace_1h_stratholme_d_02.m2", + }, + { + fileId = "146669", + text = "mace_1h_sunwell_c_01.m2", + value = "mace_1h_sunwell_c_01.m2", + }, + { + fileId = "146674", + text = "mace_1h_sunwell_c_02.m2", + value = "mace_1h_sunwell_c_02.m2", + }, + { + fileId = "146678", + text = "mace_1h_sunwell_d_01.m2", + value = "mace_1h_sunwell_d_01.m2", + }, + { + fileId = "146683", + text = "mace_1h_sunwell_d_02.m2", + value = "mace_1h_sunwell_d_02.m2", + }, + { + fileId = "146688", + text = "mace_1h_sunwell_d_03.m2", + value = "mace_1h_sunwell_d_03.m2", + }, + { + fileId = "146694", + text = "mace_1h_tauren_b_01.m2", + value = "mace_1h_tauren_b_01.m2", + }, + { + fileId = "146696", + text = "mace_1h_tauren_b_02.m2", + value = "mace_1h_tauren_b_02.m2", + }, + { + fileId = "238751", + text = "mace_1h_ulduarraid_d_01.m2", + value = "mace_1h_ulduarraid_d_01.m2", + }, + { + fileId = "238757", + text = "mace_1h_ulduarraid_d_02.m2", + value = "mace_1h_ulduarraid_d_02.m2", + }, + { + fileId = "238762", + text = "mace_1h_ulduarraid_d_03.m2", + value = "mace_1h_ulduarraid_d_03.m2", + }, + { + fileId = "238767", + text = "mace_1h_ulduarraid_d_04.m2", + value = "mace_1h_ulduarraid_d_04.m2", + }, + { + fileId = "253423", + text = "mace_1h_ulduarraid_e_01.m2", + value = "mace_1h_ulduarraid_e_01.m2", + }, + { + fileId = "303788", + text = "mace_1h_ulduarraidnotskinable_d_01.m2", + value = "mace_1h_ulduarraidnotskinable_d_01.m2", + }, + { + fileId = "146698", + text = "mace_1h_utgarde_d_01.m2", + value = "mace_1h_utgarde_d_01.m2", + }, + { + fileId = "146703", + text = "mace_1h_utgarde_d_02.m2", + value = "mace_1h_utgarde_d_02.m2", + }, + { + fileId = "146708", + text = "mace_1h_utgarde_d_03.m2", + value = "mace_1h_utgarde_d_03.m2", + }, + { + fileId = "146714", + text = "mace_1h_zulaman_d_01.m2", + value = "mace_1h_zulaman_d_01.m2", + }, + { + fileId = "146719", + text = "mace_1h_zulaman_d_02.m2", + value = "mace_1h_zulaman_d_02.m2", + }, + { + fileId = "146725", + text = "mace_1h_zulgurub_d_01.m2", + value = "mace_1h_zulgurub_d_01.m2", + }, + { + fileId = "146727", + text = "mace_1h_zulgurub_d_02.m2", + value = "mace_1h_zulgurub_d_02.m2", + }, + { + fileId = "146729", + text = "mace_2h_ahnqiraj_d_01.m2", + value = "mace_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "238775", + text = "mace_2h_aspects_d_01.m2", + value = "mace_2h_aspects_d_01.m2", + }, + { + fileId = "146735", + text = "mace_2h_auchindoun_d_01.m2", + value = "mace_2h_auchindoun_d_01.m2", + }, + { + fileId = "146737", + text = "mace_2h_blacksmithing_d_01.m2", + value = "mace_2h_blacksmithing_d_01.m2", + }, + { + fileId = "146742", + text = "mace_2h_blacksmithing_d_02.m2", + value = "mace_2h_blacksmithing_d_02.m2", + }, + { + fileId = "146747", + text = "mace_2h_blacksmithing_d_03.m2", + value = "mace_2h_blacksmithing_d_03.m2", + }, + { + fileId = "146752", + text = "mace_2h_blackwing_a_01.m2", + value = "mace_2h_blackwing_a_01.m2", + }, + { + fileId = "146754", + text = "mace_2h_blackwing_a_02.m2", + value = "mace_2h_blackwing_a_02.m2", + }, + { + fileId = "146756", + text = "mace_2h_blood_a_01.m2", + value = "mace_2h_blood_a_01.m2", + }, + { + fileId = "146762", + text = "mace_2h_blood_a_02.m2", + value = "mace_2h_blood_a_02.m2", + }, + { + fileId = "146769", + text = "mace_2h_dalaran_d_01.m2", + value = "mace_2h_dalaran_d_01.m2", + }, + { + fileId = "146779", + text = "mace_2h_draenei_a_01.m2", + value = "mace_2h_draenei_a_01.m2", + }, + { + fileId = "146785", + text = "mace_2h_draenei_a_02.m2", + value = "mace_2h_draenei_a_02.m2", + }, + { + fileId = "146790", + text = "mace_2h_flanged_a_01.m2", + value = "mace_2h_flanged_a_01.m2", + }, + { + fileId = "146794", + text = "mace_2h_flanged_a_02.m2", + value = "mace_2h_flanged_a_02.m2", + }, + { + fileId = "146798", + text = "mace_2h_flanged_c_01.m2", + value = "mace_2h_flanged_c_01.m2", + }, + { + fileId = "146800", + text = "mace_2h_flanged_c_02.m2", + value = "mace_2h_flanged_c_02.m2", + }, + { + fileId = "146802", + text = "mace_2h_hellfire_c_01.m2", + value = "mace_2h_hellfire_c_01.m2", + }, + { + fileId = "146808", + text = "mace_2h_hellfire_d_01.m2", + value = "mace_2h_hellfire_d_01.m2", + }, + { + fileId = "146809", + text = "mace_2h_horde_a_01.m2", + value = "mace_2h_horde_a_01.m2", + }, + { + fileId = "146810", + text = "mace_2h_horde_b_01.m2", + value = "mace_2h_horde_b_01.m2", + }, + { + fileId = "146811", + text = "mace_2h_horde_c_02.m2", + value = "mace_2h_horde_c_02.m2", + }, + { + fileId = "318123", + text = "mace_2h_icecrownraid_d_01.m2", + value = "mace_2h_icecrownraid_d_01.m2", + }, + { + fileId = "305442", + text = "mace_2h_misc_d_01.m2", + value = "mace_2h_misc_d_01.m2", + }, + { + fileId = "238782", + text = "mace_2h_naxx25_d_01.m2", + value = "mace_2h_naxx25_d_01.m2", + }, + { + fileId = "146812", + text = "mace_2h_nexus_d_01.m2", + value = "mace_2h_nexus_d_01.m2", + }, + { + fileId = "146824", + text = "mace_2h_northrend_b_01.m2", + value = "mace_2h_northrend_b_01.m2", + }, + { + fileId = "146829", + text = "mace_2h_northrend_b_02.m2", + value = "mace_2h_northrend_b_02.m2", + }, + { + fileId = "146836", + text = "mace_2h_northrend_b_03.m2", + value = "mace_2h_northrend_b_03.m2", + }, + { + fileId = "146841", + text = "mace_2h_northrend_c_01.m2", + value = "mace_2h_northrend_c_01.m2", + }, + { + fileId = "146846", + text = "mace_2h_northrend_c_02.m2", + value = "mace_2h_northrend_c_02.m2", + }, + { + fileId = "146851", + text = "mace_2h_northrend_c_03.m2", + value = "mace_2h_northrend_c_03.m2", + }, + { + fileId = "146856", + text = "mace_2h_northrend_d_01.m2", + value = "mace_2h_northrend_d_01.m2", + }, + { + fileId = "146861", + text = "mace_2h_outlandraid_d_01.m2", + value = "mace_2h_outlandraid_d_01.m2", + }, + { + fileId = "146863", + text = "mace_2h_outlandraid_d_02.m2", + value = "mace_2h_outlandraid_d_02.m2", + }, + { + fileId = "146865", + text = "mace_2h_outlandraid_d_03.m2", + value = "mace_2h_outlandraid_d_03.m2", + }, + { + fileId = "146867", + text = "mace_2h_outlandraid_d_04.m2", + value = "mace_2h_outlandraid_d_04.m2", + }, + { + fileId = "146870", + text = "mace_2h_outlandraid_d_05.m2", + value = "mace_2h_outlandraid_d_05.m2", + }, + { + fileId = "146872", + text = "mace_2h_outlandraid_d_06.m2", + value = "mace_2h_outlandraid_d_06.m2", + }, + { + fileId = "146873", + text = "mace_2h_outlandraid_d_07.m2", + value = "mace_2h_outlandraid_d_07.m2", + }, + { + fileId = "146880", + text = "mace_2h_paladin_d_01.m2", + value = "mace_2h_paladin_d_01.m2", + }, + { + fileId = "304782", + text = "mace_2h_pvealliance_d_01.m2", + value = "mace_2h_pvealliance_d_01.m2", + }, + { + fileId = "303906", + text = "mace_2h_pvehorde_d_01.m2", + value = "mace_2h_pvehorde_d_01.m2", + }, + { + fileId = "306797", + text = "mace_2h_pvp320_c_01.m2", + value = "mace_2h_pvp320_c_01.m2", + }, + { + fileId = "326819", + text = "mace_2h_pvp330_d_01.m2", + value = "mace_2h_pvp330_d_01.m2", + }, + { + fileId = "146881", + text = "mace_2h_spiked_a_01.m2", + value = "mace_2h_spiked_a_01.m2", + }, + { + fileId = "146883", + text = "mace_2h_spiked_a_02.m2", + value = "mace_2h_spiked_a_02.m2", + }, + { + fileId = "146887", + text = "mace_2h_spiked_a_03.m2", + value = "mace_2h_spiked_a_03.m2", + }, + { + fileId = "146891", + text = "mace_2h_spiked_b_01.m2", + value = "mace_2h_spiked_b_01.m2", + }, + { + fileId = "146893", + text = "mace_2h_spiked_b_02.m2", + value = "mace_2h_spiked_b_02.m2", + }, + { + fileId = "146897", + text = "mace_2h_standard_a_01.m2", + value = "mace_2h_standard_a_01.m2", + }, + { + fileId = "146899", + text = "mace_2h_standard_a_02.m2", + value = "mace_2h_standard_a_02.m2", + }, + { + fileId = "146903", + text = "mace_2h_standard_a_03.m2", + value = "mace_2h_standard_a_03.m2", + }, + { + fileId = "146907", + text = "mace_2h_stratholme_d_01.m2", + value = "mace_2h_stratholme_d_01.m2", + }, + { + fileId = "146909", + text = "mace_2h_stratholme_d_02.m2", + value = "mace_2h_stratholme_d_02.m2", + }, + { + fileId = "238789", + text = "mace_2h_ulduarraid_d_01.m2", + value = "mace_2h_ulduarraid_d_01.m2", + }, + { + fileId = "146911", + text = "mace_2h_utgarde_d_01.m2", + value = "mace_2h_utgarde_d_01.m2", + }, + { + fileId = "146916", + text = "mace_2h_zulgurub_d_01.m2", + value = "mace_2h_zulgurub_d_01.m2", + }, + { + fileId = "146919", + text = "misc_1h_bag_a_01.m2", + value = "misc_1h_bag_a_01.m2", + }, + { + fileId = "146926", + text = "misc_1h_bone_a_01.m2", + value = "misc_1h_bone_a_01.m2", + }, + { + fileId = "146930", + text = "misc_1h_book_a_01.m2", + value = "misc_1h_book_a_01.m2", + }, + { + fileId = "146934", + text = "misc_1h_book_b_01.m2", + value = "misc_1h_book_b_01.m2", + }, + { + fileId = "146940", + text = "misc_1h_book_b_02.m2", + value = "misc_1h_book_b_02.m2", + }, + { + fileId = "146943", + text = "misc_1h_book_c_01.m2", + value = "misc_1h_book_c_01.m2", + }, + { + fileId = "146947", + text = "misc_1h_book_c_02.m2", + value = "misc_1h_book_c_02.m2", + }, + { + fileId = "146950", + text = "misc_1h_bottle_a_01.m2", + value = "misc_1h_bottle_a_01.m2", + }, + { + fileId = "146955", + text = "misc_1h_bottle_a_02.m2", + value = "misc_1h_bottle_a_02.m2", + }, + { + fileId = "146956", + text = "misc_1h_bread_a_01.m2", + value = "misc_1h_bread_a_01.m2", + }, + { + fileId = "146960", + text = "misc_1h_bread_a_02.m2", + value = "misc_1h_bread_a_02.m2", + }, + { + fileId = "146961", + text = "misc_1h_bucket_a_01.m2", + value = "misc_1h_bucket_a_01.m2", + }, + { + fileId = "146965", + text = "misc_1h_fish_a_01.m2", + value = "misc_1h_fish_a_01.m2", + }, + { + fileId = "146970", + text = "misc_1h_flower_a_01.m2", + value = "misc_1h_flower_a_01.m2", + }, + { + fileId = "146974", + text = "misc_1h_flower_a_02.m2", + value = "misc_1h_flower_a_02.m2", + }, + { + fileId = "146978", + text = "misc_1h_flower_a_03.m2", + value = "misc_1h_flower_a_03.m2", + }, + { + fileId = "146982", + text = "misc_1h_flower_a_04.m2", + value = "misc_1h_flower_a_04.m2", + }, + { + fileId = "146986", + text = "misc_1h_flower_b_01.m2", + value = "misc_1h_flower_b_01.m2", + }, + { + fileId = "146990", + text = "misc_1h_flower_b_02.m2", + value = "misc_1h_flower_b_02.m2", + }, + { + fileId = "252196", + text = "misc_1h_flower_c_01.m2", + value = "misc_1h_flower_c_01.m2", + }, + { + fileId = "252197", + text = "misc_1h_flower_c_02.m2", + value = "misc_1h_flower_c_02.m2", + }, + { + fileId = "252198", + text = "misc_1h_flower_c_03.m2", + value = "misc_1h_flower_c_03.m2", + }, + { + fileId = "252199", + text = "misc_1h_flower_c_04.m2", + value = "misc_1h_flower_c_04.m2", + }, + { + fileId = "310106", + text = "misc_1h_flower_c_05.m2", + value = "misc_1h_flower_c_05.m2", + }, + { + fileId = "146991", + text = "misc_1h_gizmo_a_01.m2", + value = "misc_1h_gizmo_a_01.m2", + }, + { + fileId = "146995", + text = "misc_1h_glass_a_01.m2", + value = "misc_1h_glass_a_01.m2", + }, + { + fileId = "146998", + text = "misc_1h_glass_a_02.m2", + value = "misc_1h_glass_a_02.m2", + }, + { + fileId = "147000", + text = "misc_1h_holysymbol_a_01.m2", + value = "misc_1h_holysymbol_a_01.m2", + }, + { + fileId = "147001", + text = "misc_1h_lantern_a_01.m2", + value = "misc_1h_lantern_a_01.m2", + }, + { + fileId = "147003", + text = "misc_1h_lantern_b_01.m2", + value = "misc_1h_lantern_b_01.m2", + }, + { + fileId = "147005", + text = "misc_1h_mutton_a_01.m2", + value = "misc_1h_mutton_a_01.m2", + }, + { + fileId = "147008", + text = "misc_1h_mutton_a_02.m2", + value = "misc_1h_mutton_a_02.m2", + }, + { + fileId = "147009", + text = "misc_1h_mutton_b_01.m2", + value = "misc_1h_mutton_b_01.m2", + }, + { + fileId = "147011", + text = "misc_1h_mutton_b_02.m2", + value = "misc_1h_mutton_b_02.m2", + }, + { + fileId = "147013", + text = "misc_1h_orb_a_01.m2", + value = "misc_1h_orb_a_01.m2", + }, + { + fileId = "147020", + text = "misc_1h_orb_a_02.m2", + value = "misc_1h_orb_a_02.m2", + }, + { + fileId = "147027", + text = "misc_1h_orb_c_01.m2", + value = "misc_1h_orb_c_01.m2", + }, + { + fileId = "147029", + text = "misc_1h_potion_a_01.m2", + value = "misc_1h_potion_a_01.m2", + }, + { + fileId = "147035", + text = "misc_1h_potion_b_01.m2", + value = "misc_1h_potion_b_01.m2", + }, + { + fileId = "147039", + text = "misc_1h_rollingpin_a_01.m2", + value = "misc_1h_rollingpin_a_01.m2", + }, + { + fileId = "147042", + text = "misc_1h_seal_a_01.m2", + value = "misc_1h_seal_a_01.m2", + }, + { + fileId = "147043", + text = "misc_1h_seal_b_01.m2", + value = "misc_1h_seal_b_01.m2", + }, + { + fileId = "147046", + text = "misc_1h_seal_c_01.m2", + value = "misc_1h_seal_c_01.m2", + }, + { + fileId = "147051", + text = "misc_1h_skull_b_01.m2", + value = "misc_1h_skull_b_01.m2", + }, + { + fileId = "147057", + text = "misc_1h_sparkler_a_01blue.m2", + value = "misc_1h_sparkler_a_01blue.m2", + }, + { + fileId = "147058", + text = "misc_1h_sparkler_a_01red.m2", + value = "misc_1h_sparkler_a_01red.m2", + }, + { + fileId = "147059", + text = "misc_1h_sparkler_a_01white.m2", + value = "misc_1h_sparkler_a_01white.m2", + }, + { + fileId = "147060", + text = "misc_1h_tankard_a_01.m2", + value = "misc_1h_tankard_a_01.m2", + }, + { + fileId = "311947", + text = "misc_1h_tankard_b_01.m2", + value = "misc_1h_tankard_b_01.m2", + }, + { + fileId = "147066", + text = "misc_1h_waterwand_a_01.m2", + value = "misc_1h_waterwand_a_01.m2", + }, + { + fileId = "147068", + text = "misc_1h_wrench_a_01.m2", + value = "misc_1h_wrench_a_01.m2", + }, + { + fileId = "147069", + text = "misc_1h_zulgurub_d_01.m2", + value = "misc_1h_zulgurub_d_01.m2", + }, + { + fileId = "147073", + text = "misc_1h_zulgurub_d_02.m2", + value = "misc_1h_zulgurub_d_02.m2", + }, + { + fileId = "147074", + text = "misc_2h_brewfest_a_01.m2", + value = "misc_2h_brewfest_a_01.m2", + }, + { + fileId = "147080", + text = "misc_2h_broom_a_01.m2", + value = "misc_2h_broom_a_01.m2", + }, + { + fileId = "147082", + text = "misc_2h_broom_a_02.m2", + value = "misc_2h_broom_a_02.m2", + }, + { + fileId = "147084", + text = "misc_2h_fishingpole_a_01.m2", + value = "misc_2h_fishingpole_a_01.m2", + }, + { + fileId = "147087", + text = "misc_2h_harpoon_b_01.m2", + value = "misc_2h_harpoon_b_01.m2", + }, + { + fileId = "238795", + text = "misc_2h_jeweledfishingpole_a_01.m2", + value = "misc_2h_jeweledfishingpole_a_01.m2", + }, + { + fileId = "147089", + text = "misc_2h_pitchfork_a_01.m2", + value = "misc_2h_pitchfork_a_01.m2", + }, + { + fileId = "147091", + text = "misc_2h_shovel_a_01.m2", + value = "misc_2h_shovel_a_01.m2", + }, + { + fileId = "238798", + text = "misc_2h_skullfishingpole_a_01.m2", + value = "misc_2h_skullfishingpole_a_01.m2", + }, + { + fileId = "147094", + text = "misc_2h_tuskarfishingpole_a_01.m2", + value = "misc_2h_tuskarfishingpole_a_01.m2", + }, + { + fileId = "251568", + text = "misc_2h_twigfishingpole_a_01.m2", + value = "misc_2h_twigfishingpole_a_01.m2", + }, + { + fileId = "305326", + text = "offhand_1h_pvp320_c_01.m2", + value = "offhand_1h_pvp320_c_01.m2", + }, + { + fileId = "327385", + text = "offhand_1h_pvp330_d_01.m2", + value = "offhand_1h_pvp330_d_01.m2", + }, + { + fileId = "329514", + text = "offhand_1h_pvp330_d_02.m2", + value = "offhand_1h_pvp330_d_02.m2", + }, + { + fileId = "238799", + text = "offhand_1h_ulduarraid_d_01.m2", + value = "offhand_1h_ulduarraid_d_01.m2", + }, + { + fileId = "238801", + text = "offhand_1h_ulduarraid_d_02.m2", + value = "offhand_1h_ulduarraid_d_02.m2", + }, + { + fileId = "238806", + text = "offhand_1h_ulduarraid_d_03.m2", + value = "offhand_1h_ulduarraid_d_03.m2", + }, + { + fileId = "147104", + text = "offhand_blackwing_a_01.m2", + value = "offhand_blackwing_a_01.m2", + }, + { + fileId = "147105", + text = "offhand_blood_a_01.m2", + value = "offhand_blood_a_01.m2", + }, + { + fileId = "147110", + text = "offhand_blood_a_02.m2", + value = "offhand_blood_a_02.m2", + }, + { + fileId = "238811", + text = "offhand_dalaran_d_01.m2", + value = "offhand_dalaran_d_01.m2", + }, + { + fileId = "147116", + text = "offhand_draenei_a_01.m2", + value = "offhand_draenei_a_01.m2", + }, + { + fileId = "147122", + text = "offhand_draenei_a_02.m2", + value = "offhand_draenei_a_02.m2", + }, + { + fileId = "238817", + text = "offhand_easter_a_01.m2", + value = "offhand_easter_a_01.m2", + }, + { + fileId = "147128", + text = "offhand_hyjal_d_01.m2", + value = "offhand_hyjal_d_01.m2", + }, + { + fileId = "147133", + text = "offhand_naxxramas_d_01.m2", + value = "offhand_naxxramas_d_01.m2", + }, + { + fileId = "147135", + text = "offhand_naxxramas_d_02.m2", + value = "offhand_naxxramas_d_02.m2", + }, + { + fileId = "147137", + text = "offhand_naxxramas_d_03.m2", + value = "offhand_naxxramas_d_03.m2", + }, + { + fileId = "147139", + text = "offhand_naxxramas_d_04.m2", + value = "offhand_naxxramas_d_04.m2", + }, + { + fileId = "147141", + text = "offhand_outlandraid_d_01.m2", + value = "offhand_outlandraid_d_01.m2", + }, + { + fileId = "147143", + text = "offhand_outlandraid_d_02.m2", + value = "offhand_outlandraid_d_02.m2", + }, + { + fileId = "147145", + text = "offhand_outlandraid_d_03blue.m2", + value = "offhand_outlandraid_d_03blue.m2", + }, + { + fileId = "147147", + text = "offhand_outlandraid_d_03orange.m2", + value = "offhand_outlandraid_d_03orange.m2", + }, + { + fileId = "147149", + text = "offhand_outlandraid_d_03white.m2", + value = "offhand_outlandraid_d_03white.m2", + }, + { + fileId = "305167", + text = "offhand_pvealliance_d_01.m2", + value = "offhand_pvealliance_d_01.m2", + }, + { + fileId = "305727", + text = "offhand_pvehorde_d_01.m2", + value = "offhand_pvehorde_d_01.m2", + }, + { + fileId = "147150", + text = "offhand_rose_a_01.m2", + value = "offhand_rose_a_01.m2", + }, + { + fileId = "147151", + text = "offhand_rosebouquet_a_01.m2", + value = "offhand_rosebouquet_a_01.m2", + }, + { + fileId = "147153", + text = "offhand_stratholme_a_01.m2", + value = "offhand_stratholme_a_01.m2", + }, + { + fileId = "147155", + text = "offhand_stratholme_a_02.m2", + value = "offhand_stratholme_a_02.m2", + }, + { + fileId = "147157", + text = "offhand_sunwell_d_01.m2", + value = "offhand_sunwell_d_01.m2", + }, + { + fileId = "147162", + text = "offhand_sunwell_d_02.m2", + value = "offhand_sunwell_d_02.m2", + }, + { + fileId = "147167", + text = "offhand_utgarde_d_01.m2", + value = "offhand_utgarde_d_01.m2", + }, + { + fileId = "147173", + text = "offhand_zulaman_d_01.m2", + value = "offhand_zulaman_d_01.m2", + }, + { + fileId = "147178", + text = "offhand_zulaman_d_02.m2", + value = "offhand_zulaman_d_02.m2", + }, + { + fileId = "147186", + text = "polearm_2h_ahnqiraj_d_01.m2", + value = "polearm_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "147191", + text = "polearm_2h_aspects_d_01.m2", + value = "polearm_2h_aspects_d_01.m2", + }, + { + fileId = "147202", + text = "polearm_2h_blacktemple_d_01.m2", + value = "polearm_2h_blacktemple_d_01.m2", + }, + { + fileId = "147208", + text = "polearm_2h_bladed_a_01.m2", + value = "polearm_2h_bladed_a_01.m2", + }, + { + fileId = "147211", + text = "polearm_2h_bladed_a_02.m2", + value = "polearm_2h_bladed_a_02.m2", + }, + { + fileId = "147216", + text = "polearm_2h_bladed_b_01.m2", + value = "polearm_2h_bladed_b_01.m2", + }, + { + fileId = "147219", + text = "polearm_2h_bladed_b_02.m2", + value = "polearm_2h_bladed_b_02.m2", + }, + { + fileId = "147224", + text = "polearm_2h_bladed_c_01.m2", + value = "polearm_2h_bladed_c_01.m2", + }, + { + fileId = "147227", + text = "polearm_2h_bladed_d_01.m2", + value = "polearm_2h_bladed_d_01.m2", + }, + { + fileId = "147228", + text = "polearm_2h_bladed_d_03.m2", + value = "polearm_2h_bladed_d_03.m2", + }, + { + fileId = "147230", + text = "polearm_2h_blood_elf_d_01.m2", + value = "polearm_2h_blood_elf_d_01.m2", + }, + { + fileId = "238818", + text = "polearm_2h_dalaran_d_01.m2", + value = "polearm_2h_dalaran_d_01.m2", + }, + { + fileId = "147233", + text = "polearm_2h_draktharon_d_01.m2", + value = "polearm_2h_draktharon_d_01.m2", + }, + { + fileId = "147239", + text = "polearm_2h_epic_d_01.m2", + value = "polearm_2h_epic_d_01.m2", + }, + { + fileId = "147241", + text = "polearm_2h_epic_d_02.m2", + value = "polearm_2h_epic_d_02.m2", + }, + { + fileId = "147243", + text = "polearm_2h_epic_d_03.m2", + value = "polearm_2h_epic_d_03.m2", + }, + { + fileId = "147245", + text = "polearm_2h_epic_d_04.m2", + value = "polearm_2h_epic_d_04.m2", + }, + { + fileId = "147247", + text = "polearm_2h_epic_d_05.m2", + value = "polearm_2h_epic_d_05.m2", + }, + { + fileId = "147249", + text = "polearm_2h_epic_d_06.m2", + value = "polearm_2h_epic_d_06.m2", + }, + { + fileId = "349167", + text = "polearm_2h_epic_d_07.m2", + value = "polearm_2h_epic_d_07.m2", + }, + { + fileId = "238823", + text = "polearm_2h_frostgiant.m2", + value = "polearm_2h_frostgiant.m2", + }, + { + fileId = "147251", + text = "polearm_2h_hellfire_d_01.m2", + value = "polearm_2h_hellfire_d_01.m2", + }, + { + fileId = "147257", + text = "polearm_2h_hellfire_d_01green.m2", + value = "polearm_2h_hellfire_d_01green.m2", + }, + { + fileId = "313723", + text = "polearm_2h_icecrownraid_d_01.m2", + value = "polearm_2h_icecrownraid_d_01.m2", + }, + { + fileId = "294450", + text = "polearm_2h_lance_a_01.m2", + value = "polearm_2h_lance_a_01.m2", + }, + { + fileId = "147260", + text = "polearm_2h_nexus_d_01.m2", + value = "polearm_2h_nexus_d_01.m2", + }, + { + fileId = "147266", + text = "polearm_2h_northrend_b_01.m2", + value = "polearm_2h_northrend_b_01.m2", + }, + { + fileId = "147271", + text = "polearm_2h_northrend_b_02.m2", + value = "polearm_2h_northrend_b_02.m2", + }, + { + fileId = "147277", + text = "polearm_2h_northrend_b_03.m2", + value = "polearm_2h_northrend_b_03.m2", + }, + { + fileId = "147283", + text = "polearm_2h_northrend_c_01.m2", + value = "polearm_2h_northrend_c_01.m2", + }, + { + fileId = "147288", + text = "polearm_2h_northrend_c_02.m2", + value = "polearm_2h_northrend_c_02.m2", + }, + { + fileId = "147294", + text = "polearm_2h_northrend_c_03.m2", + value = "polearm_2h_northrend_c_03.m2", + }, + { + fileId = "147298", + text = "polearm_2h_northrend_c_04.m2", + value = "polearm_2h_northrend_c_04.m2", + }, + { + fileId = "147304", + text = "polearm_2h_northrend_d_01.m2", + value = "polearm_2h_northrend_d_01.m2", + }, + { + fileId = "147310", + text = "polearm_2h_northrend_d_02.m2", + value = "polearm_2h_northrend_d_02.m2", + }, + { + fileId = "147316", + text = "polearm_2h_northrend_d_03.m2", + value = "polearm_2h_northrend_d_03.m2", + }, + { + fileId = "305363", + text = "polearm_2h_pvealliance_d_01.m2", + value = "polearm_2h_pvealliance_d_01.m2", + }, + { + fileId = "304386", + text = "polearm_2h_pvehorde_d_01.m2", + value = "polearm_2h_pvehorde_d_01.m2", + }, + { + fileId = "306734", + text = "polearm_2h_pvp320_c_01.m2", + value = "polearm_2h_pvp320_c_01.m2", + }, + { + fileId = "327743", + text = "polearm_2h_pvp330_d_01.m2", + value = "polearm_2h_pvp330_d_01.m2", + }, + { + fileId = "238825", + text = "polearm_2h_pvp_c_01.m2", + value = "polearm_2h_pvp_c_01.m2", + }, + { + fileId = "147317", + text = "polearm_2h_pvpalliance_a_01.m2", + value = "polearm_2h_pvpalliance_a_01.m2", + }, + { + fileId = "147320", + text = "polearm_2h_pvphorde_a_01.m2", + value = "polearm_2h_pvphorde_a_01.m2", + }, + { + fileId = "147323", + text = "polearm_2h_stratholme_d_01.m2", + value = "polearm_2h_stratholme_d_01.m2", + }, + { + fileId = "147325", + text = "polearm_2h_sunwell_d_01.m2", + value = "polearm_2h_sunwell_d_01.m2", + }, + { + fileId = "147330", + text = "polearm_2h_trident_a_01.m2", + value = "polearm_2h_trident_a_01.m2", + }, + { + fileId = "147334", + text = "polearm_2h_trident_a_02.m2", + value = "polearm_2h_trident_a_02.m2", + }, + { + fileId = "147339", + text = "polearm_2h_trident_b_01.m2", + value = "polearm_2h_trident_b_01.m2", + }, + { + fileId = "147344", + text = "polearm_2h_trident_b_02.m2", + value = "polearm_2h_trident_b_02.m2", + }, + { + fileId = "147345", + text = "polearm_2h_trident_c_01.m2", + value = "polearm_2h_trident_c_01.m2", + }, + { + fileId = "328177", + text = "polearm_2h_trident_c_01alt.m2", + value = "polearm_2h_trident_c_01alt.m2", + }, + { + fileId = "238830", + text = "polearm_2h_ulduarraid_d_01.m2", + value = "polearm_2h_ulduarraid_d_01.m2", + }, + { + fileId = "147351", + text = "polearm_2h_utgarde_d_01.m2", + value = "polearm_2h_utgarde_d_01.m2", + }, + { + fileId = "147357", + text = "polearm_2h_vrykul_d_01.m2", + value = "polearm_2h_vrykul_d_01.m2", + }, + { + fileId = "147363", + text = "polearm_2h_zulgurub_d_01.m2", + value = "polearm_2h_zulgurub_d_01.m2", + }, + { + fileId = "147382", + text = "stave_2h_ahnqiraj_d_01.m2", + value = "stave_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "147384", + text = "stave_2h_ahnqiraj_d_02.m2", + value = "stave_2h_ahnqiraj_d_02.m2", + }, + { + fileId = "147386", + text = "stave_2h_ahnqiraj_d_03.m2", + value = "stave_2h_ahnqiraj_d_03.m2", + }, + { + fileId = "147387", + text = "stave_2h_ahnqiraj_d_04.m2", + value = "stave_2h_ahnqiraj_d_04.m2", + }, + { + fileId = "304087", + text = "stave_2h_alliancecovenant_d_01.m2", + value = "stave_2h_alliancecovenant_d_01.m2", + }, + { + fileId = "147390", + text = "stave_2h_auchindoun_d_01.m2", + value = "stave_2h_auchindoun_d_01.m2", + }, + { + fileId = "147392", + text = "stave_2h_auchindoun_d_02.m2", + value = "stave_2h_auchindoun_d_02.m2", + }, + { + fileId = "147393", + text = "stave_2h_blacktemple_d_01.m2", + value = "stave_2h_blacktemple_d_01.m2", + }, + { + fileId = "147399", + text = "stave_2h_blackwing_a_01.m2", + value = "stave_2h_blackwing_a_01.m2", + }, + { + fileId = "147402", + text = "stave_2h_blackwing_a_02.m2", + value = "stave_2h_blackwing_a_02.m2", + }, + { + fileId = "147405", + text = "stave_2h_blood_a_01.m2", + value = "stave_2h_blood_a_01.m2", + }, + { + fileId = "147409", + text = "stave_2h_blood_a_02.m2", + value = "stave_2h_blood_a_02.m2", + }, + { + fileId = "238839", + text = "stave_2h_caster_pvp_c_01.m2", + value = "stave_2h_caster_pvp_c_01.m2", + }, + { + fileId = "147413", + text = "stave_2h_cotstrat_d_01.m2", + value = "stave_2h_cotstrat_d_01.m2", + }, + { + fileId = "147418", + text = "stave_2h_cotstrat_d_02.m2", + value = "stave_2h_cotstrat_d_02.m2", + }, + { + fileId = "147424", + text = "stave_2h_dalaran_d_01.m2", + value = "stave_2h_dalaran_d_01.m2", + }, + { + fileId = "147431", + text = "stave_2h_draenei_a_01.m2", + value = "stave_2h_draenei_a_01.m2", + }, + { + fileId = "147437", + text = "stave_2h_draenei_a_02.m2", + value = "stave_2h_draenei_a_02.m2", + }, + { + fileId = "147444", + text = "stave_2h_draenei_a_03.m2", + value = "stave_2h_draenei_a_03.m2", + }, + { + fileId = "147451", + text = "stave_2h_draktharon_d_01.m2", + value = "stave_2h_draktharon_d_01.m2", + }, + { + fileId = "147458", + text = "stave_2h_druid_d_01.m2", + value = "stave_2h_druid_d_01.m2", + }, + { + fileId = "147464", + text = "stave_2h_epic_a_01.m2", + value = "stave_2h_epic_a_01.m2", + }, + { + fileId = "147466", + text = "stave_2h_etherial_a_01.m2", + value = "stave_2h_etherial_a_01.m2", + }, + { + fileId = "147473", + text = "stave_2h_feral_d_01.m2", + value = "stave_2h_feral_d_01.m2", + }, + { + fileId = "147480", + text = "stave_2h_feral_d_02.m2", + value = "stave_2h_feral_d_02.m2", + }, + { + fileId = "147486", + text = "stave_2h_feral_d_03.m2", + value = "stave_2h_feral_d_03.m2", + }, + { + fileId = "238845", + text = "stave_2h_feral_pvp_c_01.m2", + value = "stave_2h_feral_pvp_c_01.m2", + }, + { + fileId = "147491", + text = "stave_2h_flaming_d_01.m2", + value = "stave_2h_flaming_d_01.m2", + }, + { + fileId = "238852", + text = "stave_2h_guitar_c_01.m2", + value = "stave_2h_guitar_c_01.m2", + }, + { + fileId = "147492", + text = "stave_2h_hellfire_c_01.m2", + value = "stave_2h_hellfire_c_01.m2", + }, + { + fileId = "147498", + text = "stave_2h_hellfire_d_01.m2", + value = "stave_2h_hellfire_d_01.m2", + }, + { + fileId = "147502", + text = "stave_2h_hellfire_d_02.m2", + value = "stave_2h_hellfire_d_02.m2", + }, + { + fileId = "304260", + text = "stave_2h_hordecovenant_d_01.m2", + value = "stave_2h_hordecovenant_d_01.m2", + }, + { + fileId = "147504", + text = "stave_2h_hunterepic_d_01.m2", + value = "stave_2h_hunterepic_d_01.m2", + }, + { + fileId = "308704", + text = "stave_2h_icecrownraid_d_01.m2", + value = "stave_2h_icecrownraid_d_01.m2", + }, + { + fileId = "309673", + text = "stave_2h_icecrownraid_d_02.m2", + value = "stave_2h_icecrownraid_d_02.m2", + }, + { + fileId = "308645", + text = "stave_2h_icecrownraid_d_03.m2", + value = "stave_2h_icecrownraid_d_03.m2", + }, + { + fileId = "315625", + text = "stave_2h_icecrownraid_d_04.m2", + value = "stave_2h_icecrownraid_d_04.m2", + }, + { + fileId = "147505", + text = "stave_2h_jeweled_a_01.m2", + value = "stave_2h_jeweled_a_01.m2", + }, + { + fileId = "147509", + text = "stave_2h_jeweled_a_02.m2", + value = "stave_2h_jeweled_a_02.m2", + }, + { + fileId = "147513", + text = "stave_2h_jeweled_a_03.m2", + value = "stave_2h_jeweled_a_03.m2", + }, + { + fileId = "147517", + text = "stave_2h_jeweled_b_01.m2", + value = "stave_2h_jeweled_b_01.m2", + }, + { + fileId = "147521", + text = "stave_2h_jeweled_b_02.m2", + value = "stave_2h_jeweled_b_02.m2", + }, + { + fileId = "147525", + text = "stave_2h_jeweled_c_01.m2", + value = "stave_2h_jeweled_c_01.m2", + }, + { + fileId = "147527", + text = "stave_2h_jeweled_d_01.m2", + value = "stave_2h_jeweled_d_01.m2", + }, + { + fileId = "147530", + text = "stave_2h_long_a_01.m2", + value = "stave_2h_long_a_01.m2", + }, + { + fileId = "147534", + text = "stave_2h_long_a_02.m2", + value = "stave_2h_long_a_02.m2", + }, + { + fileId = "147538", + text = "stave_2h_long_a_03.m2", + value = "stave_2h_long_a_03.m2", + }, + { + fileId = "147542", + text = "stave_2h_long_a_04.m2", + value = "stave_2h_long_a_04.m2", + }, + { + fileId = "147547", + text = "stave_2h_long_b_01.m2", + value = "stave_2h_long_b_01.m2", + }, + { + fileId = "147552", + text = "stave_2h_long_b_02holy.m2", + value = "stave_2h_long_b_02holy.m2", + }, + { + fileId = "147553", + text = "stave_2h_long_b_03.m2", + value = "stave_2h_long_b_03.m2", + }, + { + fileId = "147557", + text = "stave_2h_long_b_04.m2", + value = "stave_2h_long_b_04.m2", + }, + { + fileId = "147563", + text = "stave_2h_long_c_01.m2", + value = "stave_2h_long_c_01.m2", + }, + { + fileId = "147565", + text = "stave_2h_long_c_02.m2", + value = "stave_2h_long_c_02.m2", + }, + { + fileId = "147567", + text = "stave_2h_long_d_01.m2", + value = "stave_2h_long_d_01.m2", + }, + { + fileId = "147574", + text = "stave_2h_long_d_04.m2", + value = "stave_2h_long_d_04.m2", + }, + { + fileId = "147576", + text = "stave_2h_long_d_05.m2", + value = "stave_2h_long_d_05.m2", + }, + { + fileId = "147578", + text = "stave_2h_long_epicpriest01.m2", + value = "stave_2h_long_epicpriest01.m2", + }, + { + fileId = "147579", + text = "stave_2h_long_epicpriest02.m2", + value = "stave_2h_long_epicpriest02.m2", + }, + { + fileId = "147581", + text = "stave_2h_medivh_d_01.m2", + value = "stave_2h_medivh_d_01.m2", + }, + { + fileId = "147585", + text = "stave_2h_naga_d_01.m2", + value = "stave_2h_naga_d_01.m2", + }, + { + fileId = "238854", + text = "stave_2h_naxx25_d_01.m2", + value = "stave_2h_naxx25_d_01.m2", + }, + { + fileId = "238860", + text = "stave_2h_naxx25_d_02.m2", + value = "stave_2h_naxx25_d_02.m2", + }, + { + fileId = "238866", + text = "stave_2h_naxx25_d_03.m2", + value = "stave_2h_naxx25_d_03.m2", + }, + { + fileId = "147588", + text = "stave_2h_nexus_d_01.m2", + value = "stave_2h_nexus_d_01.m2", + }, + { + fileId = "147593", + text = "stave_2h_nexus_d_02.m2", + value = "stave_2h_nexus_d_02.m2", + }, + { + fileId = "147599", + text = "stave_2h_northrend_b_01.m2", + value = "stave_2h_northrend_b_01.m2", + }, + { + fileId = "147605", + text = "stave_2h_northrend_b_02.m2", + value = "stave_2h_northrend_b_02.m2", + }, + { + fileId = "147611", + text = "stave_2h_northrend_b_03.m2", + value = "stave_2h_northrend_b_03.m2", + }, + { + fileId = "147616", + text = "stave_2h_northrend_c_01.m2", + value = "stave_2h_northrend_c_01.m2", + }, + { + fileId = "147621", + text = "stave_2h_northrend_c_03.m2", + value = "stave_2h_northrend_c_03.m2", + }, + { + fileId = "147626", + text = "stave_2h_northrend_d_01.m2", + value = "stave_2h_northrend_d_01.m2", + }, + { + fileId = "147631", + text = "stave_2h_northrend_d_02.m2", + value = "stave_2h_northrend_d_02.m2", + }, + { + fileId = "147633", + text = "stave_2h_northrend_d_03.m2", + value = "stave_2h_northrend_d_03.m2", + }, + { + fileId = "147637", + text = "stave_2h_other_a_01.m2", + value = "stave_2h_other_a_01.m2", + }, + { + fileId = "147641", + text = "stave_2h_other_b_01.m2", + value = "stave_2h_other_b_01.m2", + }, + { + fileId = "147645", + text = "stave_2h_other_c_01.m2", + value = "stave_2h_other_c_01.m2", + }, + { + fileId = "147652", + text = "stave_2h_other_c_02.m2", + value = "stave_2h_other_c_02.m2", + }, + { + fileId = "147654", + text = "stave_2h_other_c_03.m2", + value = "stave_2h_other_c_03.m2", + }, + { + fileId = "147656", + text = "stave_2h_other_d_01.m2", + value = "stave_2h_other_d_01.m2", + }, + { + fileId = "147659", + text = "stave_2h_outlandraid_d_01.m2", + value = "stave_2h_outlandraid_d_01.m2", + }, + { + fileId = "147660", + text = "stave_2h_outlandraid_d_01_blue.m2", + value = "stave_2h_outlandraid_d_01_blue.m2", + }, + { + fileId = "147661", + text = "stave_2h_outlandraid_d_01_red.m2", + value = "stave_2h_outlandraid_d_01_red.m2", + }, + { + fileId = "147663", + text = "stave_2h_outlandraid_d_02_blue.m2", + value = "stave_2h_outlandraid_d_02_blue.m2", + }, + { + fileId = "147664", + text = "stave_2h_outlandraid_d_02_red.m2", + value = "stave_2h_outlandraid_d_02_red.m2", + }, + { + fileId = "147666", + text = "stave_2h_outlandraid_d_03.m2", + value = "stave_2h_outlandraid_d_03.m2", + }, + { + fileId = "147667", + text = "stave_2h_outlandraid_d_03_blue.m2", + value = "stave_2h_outlandraid_d_03_blue.m2", + }, + { + fileId = "147668", + text = "stave_2h_outlandraid_d_03_red.m2", + value = "stave_2h_outlandraid_d_03_red.m2", + }, + { + fileId = "147670", + text = "stave_2h_outlandraid_d_04.m2", + value = "stave_2h_outlandraid_d_04.m2", + }, + { + fileId = "147674", + text = "stave_2h_outlandraid_d_05.m2", + value = "stave_2h_outlandraid_d_05.m2", + }, + { + fileId = "147680", + text = "stave_2h_outlandraid_d_06.m2", + value = "stave_2h_outlandraid_d_06.m2", + }, + { + fileId = "147682", + text = "stave_2h_outlandraid_d_06_blue.m2", + value = "stave_2h_outlandraid_d_06_blue.m2", + }, + { + fileId = "147684", + text = "stave_2h_priest_d_01.m2", + value = "stave_2h_priest_d_01.m2", + }, + { + fileId = "304295", + text = "stave_2h_pvealliance_d_01.m2", + value = "stave_2h_pvealliance_d_01.m2", + }, + { + fileId = "305168", + text = "stave_2h_pvealliance_d_02.m2", + value = "stave_2h_pvealliance_d_02.m2", + }, + { + fileId = "304300", + text = "stave_2h_pvehorde_d_01.m2", + value = "stave_2h_pvehorde_d_01.m2", + }, + { + fileId = "306149", + text = "stave_2h_pvehorde_d_02.m2", + value = "stave_2h_pvehorde_d_02.m2", + }, + { + fileId = "306740", + text = "stave_2h_pvp320_c_01.m2", + value = "stave_2h_pvp320_c_01.m2", + }, + { + fileId = "306324", + text = "stave_2h_pvp320_c_02.m2", + value = "stave_2h_pvp320_c_02.m2", + }, + { + fileId = "327748", + text = "stave_2h_pvp330_d_01.m2", + value = "stave_2h_pvp330_d_01.m2", + }, + { + fileId = "327845", + text = "stave_2h_pvp330_d_02.m2", + value = "stave_2h_pvp330_d_02.m2", + }, + { + fileId = "147688", + text = "stave_2h_pvpalliance_a_01.m2", + value = "stave_2h_pvpalliance_a_01.m2", + }, + { + fileId = "147692", + text = "stave_2h_pvphorde_a_01.m2", + value = "stave_2h_pvphorde_a_01.m2", + }, + { + fileId = "147697", + text = "stave_2h_scythe_c_03.m2", + value = "stave_2h_scythe_c_03.m2", + }, + { + fileId = "147699", + text = "stave_2h_stratholme_d_01.m2", + value = "stave_2h_stratholme_d_01.m2", + }, + { + fileId = "147701", + text = "stave_2h_stratholme_d_02.m2", + value = "stave_2h_stratholme_d_02.m2", + }, + { + fileId = "147703", + text = "stave_2h_stratholme_d_03.m2", + value = "stave_2h_stratholme_d_03.m2", + }, + { + fileId = "147704", + text = "stave_2h_sunwell_c_01.m2", + value = "stave_2h_sunwell_c_01.m2", + }, + { + fileId = "147710", + text = "stave_2h_sunwell_d_01.m2", + value = "stave_2h_sunwell_d_01.m2", + }, + { + fileId = "147715", + text = "stave_2h_sunwell_d_02.m2", + value = "stave_2h_sunwell_d_02.m2", + }, + { + fileId = "147720", + text = "stave_2h_sunwell_d_03.m2", + value = "stave_2h_sunwell_d_03.m2", + }, + { + fileId = "238871", + text = "stave_2h_ulduarraid_d_01.m2", + value = "stave_2h_ulduarraid_d_01.m2", + }, + { + fileId = "238877", + text = "stave_2h_ulduarraid_d_02.m2", + value = "stave_2h_ulduarraid_d_02.m2", + }, + { + fileId = "238883", + text = "stave_2h_ulduarraid_d_03.m2", + value = "stave_2h_ulduarraid_d_03.m2", + }, + { + fileId = "249276", + text = "stave_2h_ulduarraid_d_04.m2", + value = "stave_2h_ulduarraid_d_04.m2", + }, + { + fileId = "147725", + text = "stave_2h_utgarde_d_01.m2", + value = "stave_2h_utgarde_d_01.m2", + }, + { + fileId = "147731", + text = "stave_2h_utgarde_d_02.m2", + value = "stave_2h_utgarde_d_02.m2", + }, + { + fileId = "147737", + text = "stave_2h_warlock_d_01.m2", + value = "stave_2h_warlock_d_01.m2", + }, + { + fileId = "147741", + text = "stave_2h_zulaman_d_01.m2", + value = "stave_2h_zulaman_d_01.m2", + }, + { + fileId = "147746", + text = "stave_2h_zulaman_d_02.m2", + value = "stave_2h_zulaman_d_02.m2", + }, + { + fileId = "147751", + text = "stave_2h_zulaman_d_03.m2", + value = "stave_2h_zulaman_d_03.m2", + }, + { + fileId = "147757", + text = "stave_2h_zulgurub_d_01.m2", + value = "stave_2h_zulgurub_d_01.m2", + }, + { + fileId = "147759", + text = "stave_2h_zulgurub_d_02.m2", + value = "stave_2h_zulgurub_d_02.m2", + }, + { + fileId = "147761", + text = "stave_2h_zulgurub_d_03.m2", + value = "stave_2h_zulgurub_d_03.m2", + }, + { + fileId = "147764", + text = "sword_1h_ahnqiraj_d_01.m2", + value = "sword_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "147767", + text = "sword_1h_ahnqiraj_d_02.m2", + value = "sword_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "147770", + text = "sword_1h_ahnqiraj_d_03.m2", + value = "sword_1h_ahnqiraj_d_03.m2", + }, + { + fileId = "147772", + text = "sword_1h_akama_d_01.m2", + value = "sword_1h_akama_d_01.m2", + }, + { + fileId = "298704", + text = "sword_1h_alliancecovenant_d_01.m2", + value = "sword_1h_alliancecovenant_d_01.m2", + }, + { + fileId = "147775", + text = "sword_1h_auchindoun_d_01.m2", + value = "sword_1h_auchindoun_d_01.m2", + }, + { + fileId = "147777", + text = "sword_1h_blacksmithing_d_01.m2", + value = "sword_1h_blacksmithing_d_01.m2", + }, + { + fileId = "147779", + text = "sword_1h_blacksmithing_d_02.m2", + value = "sword_1h_blacksmithing_d_02.m2", + }, + { + fileId = "147781", + text = "sword_1h_blacksmithing_d_03.m2", + value = "sword_1h_blacksmithing_d_03.m2", + }, + { + fileId = "147783", + text = "sword_1h_blackwing_a_01.m2", + value = "sword_1h_blackwing_a_01.m2", + }, + { + fileId = "147785", + text = "sword_1h_blackwing_a_02.m2", + value = "sword_1h_blackwing_a_02.m2", + }, + { + fileId = "147787", + text = "sword_1h_blood_a_01.m2", + value = "sword_1h_blood_a_01.m2", + }, + { + fileId = "147790", + text = "sword_1h_blood_a_02.m2", + value = "sword_1h_blood_a_02.m2", + }, + { + fileId = "147793", + text = "sword_1h_blood_a_03.m2", + value = "sword_1h_blood_a_03.m2", + }, + { + fileId = "147800", + text = "sword_1h_caverns_d_01.m2", + value = "sword_1h_caverns_d_01.m2", + }, + { + fileId = "147801", + text = "sword_1h_cotstrat_d_01.m2", + value = "sword_1h_cotstrat_d_01.m2", + }, + { + fileId = "147806", + text = "sword_1h_crystal_c_01.m2", + value = "sword_1h_crystal_c_01.m2", + }, + { + fileId = "147812", + text = "sword_1h_crystal_c_02.m2", + value = "sword_1h_crystal_c_02.m2", + }, + { + fileId = "147818", + text = "sword_1h_crystal_c_03.m2", + value = "sword_1h_crystal_c_03.m2", + }, + { + fileId = "238889", + text = "sword_1h_dalaran_d_01.m2", + value = "sword_1h_dalaran_d_01.m2", + }, + { + fileId = "147824", + text = "sword_1h_draenei_a_01.m2", + value = "sword_1h_draenei_a_01.m2", + }, + { + fileId = "147830", + text = "sword_1h_draenei_a_02.m2", + value = "sword_1h_draenei_a_02.m2", + }, + { + fileId = "147836", + text = "sword_1h_draenei_a_03.m2", + value = "sword_1h_draenei_a_03.m2", + }, + { + fileId = "147842", + text = "sword_1h_draenei_b_01.m2", + value = "sword_1h_draenei_b_01.m2", + }, + { + fileId = "147849", + text = "sword_1h_draenei_c_01.m2", + value = "sword_1h_draenei_c_01.m2", + }, + { + fileId = "147856", + text = "sword_1h_draenei_d_01.m2", + value = "sword_1h_draenei_d_01.m2", + }, + { + fileId = "147860", + text = "sword_1h_fire_a_01.m2", + value = "sword_1h_fire_a_01.m2", + }, + { + fileId = "147862", + text = "sword_1h_haremmatron_d_01.m2", + value = "sword_1h_haremmatron_d_01.m2", + }, + { + fileId = "147864", + text = "sword_1h_hellfire_d_01.m2", + value = "sword_1h_hellfire_d_01.m2", + }, + { + fileId = "147867", + text = "sword_1h_horde_a_01.m2", + value = "sword_1h_horde_a_01.m2", + }, + { + fileId = "147872", + text = "sword_1h_horde_a_02.m2", + value = "sword_1h_horde_a_02.m2", + }, + { + fileId = "147877", + text = "sword_1h_horde_a_03.m2", + value = "sword_1h_horde_a_03.m2", + }, + { + fileId = "147878", + text = "sword_1h_horde_a_04.m2", + value = "sword_1h_horde_a_04.m2", + }, + { + fileId = "147879", + text = "sword_1h_horde_b_01.m2", + value = "sword_1h_horde_b_01.m2", + }, + { + fileId = "147885", + text = "sword_1h_horde_b_02.m2", + value = "sword_1h_horde_b_02.m2", + }, + { + fileId = "147891", + text = "sword_1h_horde_b_03.m2", + value = "sword_1h_horde_b_03.m2", + }, + { + fileId = "147897", + text = "sword_1h_horde_b_04.m2", + value = "sword_1h_horde_b_04.m2", + }, + { + fileId = "147903", + text = "sword_1h_horde_b_05.m2", + value = "sword_1h_horde_b_05.m2", + }, + { + fileId = "147909", + text = "sword_1h_horde_c_01.m2", + value = "sword_1h_horde_c_01.m2", + }, + { + fileId = "147915", + text = "sword_1h_horde_c_02.m2", + value = "sword_1h_horde_c_02.m2", + }, + { + fileId = "322941", + text = "sword_1h_horde_c_02alt.m2", + value = "sword_1h_horde_c_02alt.m2", + }, + { + fileId = "303874", + text = "sword_1h_hordecovenant_d_01.m2", + value = "sword_1h_hordecovenant_d_01.m2", + }, + { + fileId = "147922", + text = "sword_1h_hyjal_d_01.m2", + value = "sword_1h_hyjal_d_01.m2", + }, + { + fileId = "147927", + text = "sword_1h_hyjal_d_02.m2", + value = "sword_1h_hyjal_d_02.m2", + }, + { + fileId = "147932", + text = "sword_1h_hyjal_d_03.m2", + value = "sword_1h_hyjal_d_03.m2", + }, + { + fileId = "309424", + text = "sword_1h_icecrownraid_d_01.m2", + value = "sword_1h_icecrownraid_d_01.m2", + }, + { + fileId = "319747", + text = "sword_1h_icecrownraid_d_02.m2", + value = "sword_1h_icecrownraid_d_02.m2", + }, + { + fileId = "309429", + text = "sword_1h_icecrownraid_d_03.m2", + value = "sword_1h_icecrownraid_d_03.m2", + }, + { + fileId = "315154", + text = "sword_1h_icecrownraid_d_04.m2", + value = "sword_1h_icecrownraid_d_04.m2", + }, + { + fileId = "147937", + text = "sword_1h_katana_a_01.m2", + value = "sword_1h_katana_a_01.m2", + }, + { + fileId = "147941", + text = "sword_1h_katana_a_02.m2", + value = "sword_1h_katana_a_02.m2", + }, + { + fileId = "147945", + text = "sword_1h_katana_b_01.m2", + value = "sword_1h_katana_b_01.m2", + }, + { + fileId = "147949", + text = "sword_1h_katana_b_02.m2", + value = "sword_1h_katana_b_02.m2", + }, + { + fileId = "147953", + text = "sword_1h_long_a_01.m2", + value = "sword_1h_long_a_01.m2", + }, + { + fileId = "147955", + text = "sword_1h_long_a_02.m2", + value = "sword_1h_long_a_02.m2", + }, + { + fileId = "147959", + text = "sword_1h_long_a_03.m2", + value = "sword_1h_long_a_03.m2", + }, + { + fileId = "147963", + text = "sword_1h_long_b_01.m2", + value = "sword_1h_long_b_01.m2", + }, + { + fileId = "324990", + text = "sword_1h_long_b_01alt.m2", + value = "sword_1h_long_b_01alt.m2", + }, + { + fileId = "147965", + text = "sword_1h_long_b_02.m2", + value = "sword_1h_long_b_02.m2", + }, + { + fileId = "147969", + text = "sword_1h_long_b_03.m2", + value = "sword_1h_long_b_03.m2", + }, + { + fileId = "147973", + text = "sword_1h_long_c_01.m2", + value = "sword_1h_long_c_01.m2", + }, + { + fileId = "147975", + text = "sword_1h_long_d_01.m2", + value = "sword_1h_long_d_01.m2", + }, + { + fileId = "147977", + text = "sword_1h_long_d_02.m2", + value = "sword_1h_long_d_02.m2", + }, + { + fileId = "147984", + text = "sword_1h_long_d_03.m2", + value = "sword_1h_long_d_03.m2", + }, + { + fileId = "147986", + text = "sword_1h_machete_a_01.m2", + value = "sword_1h_machete_a_01.m2", + }, + { + fileId = "147988", + text = "sword_1h_machete_b_01.m2", + value = "sword_1h_machete_b_01.m2", + }, + { + fileId = "147990", + text = "sword_1h_machete_c_01.m2", + value = "sword_1h_machete_c_01.m2", + }, + { + fileId = "147992", + text = "sword_1h_machete_d_01.m2", + value = "sword_1h_machete_d_01.m2", + }, + { + fileId = "147994", + text = "sword_1h_mage_d_01.m2", + value = "sword_1h_mage_d_01.m2", + }, + { + fileId = "147996", + text = "sword_1h_miev_d_01.m2", + value = "sword_1h_miev_d_01.m2", + }, + { + fileId = "238895", + text = "sword_1h_naxx25_d_01.m2", + value = "sword_1h_naxx25_d_01.m2", + }, + { + fileId = "147998", + text = "sword_1h_naxxramas_d_01.m2", + value = "sword_1h_naxxramas_d_01.m2", + }, + { + fileId = "148000", + text = "sword_1h_nexus_d_01.m2", + value = "sword_1h_nexus_d_01.m2", + }, + { + fileId = "148006", + text = "sword_1h_nexus_d_02.m2", + value = "sword_1h_nexus_d_02.m2", + }, + { + fileId = "148012", + text = "sword_1h_nexus_d_03.m2", + value = "sword_1h_nexus_d_03.m2", + }, + { + fileId = "148018", + text = "sword_1h_northrend_b_01.m2", + value = "sword_1h_northrend_b_01.m2", + }, + { + fileId = "148023", + text = "sword_1h_northrend_b_02.m2", + value = "sword_1h_northrend_b_02.m2", + }, + { + fileId = "148030", + text = "sword_1h_northrend_b_03.m2", + value = "sword_1h_northrend_b_03.m2", + }, + { + fileId = "148038", + text = "sword_1h_northrend_c_01.m2", + value = "sword_1h_northrend_c_01.m2", + }, + { + fileId = "148045", + text = "sword_1h_northrend_c_02.m2", + value = "sword_1h_northrend_c_02.m2", + }, + { + fileId = "148050", + text = "sword_1h_northrend_c_03.m2", + value = "sword_1h_northrend_c_03.m2", + }, + { + fileId = "148055", + text = "sword_1h_northrend_d_01.m2", + value = "sword_1h_northrend_d_01.m2", + }, + { + fileId = "148059", + text = "sword_1h_northrend_d_02.m2", + value = "sword_1h_northrend_d_02.m2", + }, + { + fileId = "148065", + text = "sword_1h_northrend_d_03.m2", + value = "sword_1h_northrend_d_03.m2", + }, + { + fileId = "304092", + text = "sword_1h_pvealliance_d_01.m2", + value = "sword_1h_pvealliance_d_01.m2", + }, + { + fileId = "304306", + text = "sword_1h_pvealliance_d_02.m2", + value = "sword_1h_pvealliance_d_02.m2", + }, + { + fileId = "251942", + text = "sword_1h_pvehorde_d_01.m2", + value = "sword_1h_pvehorde_d_01.m2", + }, + { + fileId = "252224", + text = "sword_1h_pvehorde_d_02.m2", + value = "sword_1h_pvehorde_d_02.m2", + }, + { + fileId = "306153", + text = "sword_1h_pvp320_c_01.m2", + value = "sword_1h_pvp320_c_01.m2", + }, + { + fileId = "327851", + text = "sword_1h_pvp330_d_01.m2", + value = "sword_1h_pvp330_d_01.m2", + }, + { + fileId = "238900", + text = "sword_1h_pvp_c_01.m2", + value = "sword_1h_pvp_c_01.m2", + }, + { + fileId = "148070", + text = "sword_1h_pvpalliance_a_01.m2", + value = "sword_1h_pvpalliance_a_01.m2", + }, + { + fileId = "148075", + text = "sword_1h_pvphorde_a_01.m2", + value = "sword_1h_pvphorde_a_01.m2", + }, + { + fileId = "326453", + text = "sword_1h_queldelar_d_01.m2", + value = "sword_1h_queldelar_d_01.m2", + }, + { + fileId = "148079", + text = "sword_1h_raid_d_01.m2", + value = "sword_1h_raid_d_01.m2", + }, + { + fileId = "148081", + text = "sword_1h_raid_d_02.m2", + value = "sword_1h_raid_d_02.m2", + }, + { + fileId = "148083", + text = "sword_1h_raid_d_03.m2", + value = "sword_1h_raid_d_03.m2", + }, + { + fileId = "148085", + text = "sword_1h_raid_d_04.m2", + value = "sword_1h_raid_d_04.m2", + }, + { + fileId = "148087", + text = "sword_1h_raid_d_05.m2", + value = "sword_1h_raid_d_05.m2", + }, + { + fileId = "148089", + text = "sword_1h_raid_d_06.m2", + value = "sword_1h_raid_d_06.m2", + }, + { + fileId = "148090", + text = "sword_1h_rapier_a_01.m2", + value = "sword_1h_rapier_a_01.m2", + }, + { + fileId = "148095", + text = "sword_1h_sabre_a_01.m2", + value = "sword_1h_sabre_a_01.m2", + }, + { + fileId = "148099", + text = "sword_1h_sabre_a_02.m2", + value = "sword_1h_sabre_a_02.m2", + }, + { + fileId = "148103", + text = "sword_1h_sabre_a_03.m2", + value = "sword_1h_sabre_a_03.m2", + }, + { + fileId = "148107", + text = "sword_1h_sabre_b_01.m2", + value = "sword_1h_sabre_b_01.m2", + }, + { + fileId = "148111", + text = "sword_1h_sabre_b_02.m2", + value = "sword_1h_sabre_b_02.m2", + }, + { + fileId = "148115", + text = "sword_1h_sabre_b_03.m2", + value = "sword_1h_sabre_b_03.m2", + }, + { + fileId = "148119", + text = "sword_1h_sabre_c_01.m2", + value = "sword_1h_sabre_c_01.m2", + }, + { + fileId = "148120", + text = "sword_1h_scimitar_a_02.m2", + value = "sword_1h_scimitar_a_02.m2", + }, + { + fileId = "148127", + text = "sword_1h_shivan_d_01.m2", + value = "sword_1h_shivan_d_01.m2", + }, + { + fileId = "148128", + text = "sword_1h_short_a_01.m2", + value = "sword_1h_short_a_01.m2", + }, + { + fileId = "148132", + text = "sword_1h_short_a_02.m2", + value = "sword_1h_short_a_02.m2", + }, + { + fileId = "148136", + text = "sword_1h_short_a_03.m2", + value = "sword_1h_short_a_03.m2", + }, + { + fileId = "148140", + text = "sword_1h_short_b_01.m2", + value = "sword_1h_short_b_01.m2", + }, + { + fileId = "148144", + text = "sword_1h_short_b_02.m2", + value = "sword_1h_short_b_02.m2", + }, + { + fileId = "148148", + text = "sword_1h_short_b_03.m2", + value = "sword_1h_short_b_03.m2", + }, + { + fileId = "148152", + text = "sword_1h_short_c_01.m2", + value = "sword_1h_short_c_01.m2", + }, + { + fileId = "148154", + text = "sword_1h_short_c_02.m2", + value = "sword_1h_short_c_02.m2", + }, + { + fileId = "148156", + text = "sword_1h_stratholme_d_01.m2", + value = "sword_1h_stratholme_d_01.m2", + }, + { + fileId = "148157", + text = "sword_1h_stratholme_d_02.m2", + value = "sword_1h_stratholme_d_02.m2", + }, + { + fileId = "148158", + text = "sword_1h_stratholme_d_03.m2", + value = "sword_1h_stratholme_d_03.m2", + }, + { + fileId = "148160", + text = "sword_1h_sunwell_d_01.m2", + value = "sword_1h_sunwell_d_01.m2", + }, + { + fileId = "148165", + text = "sword_1h_sunwell_d_02.m2", + value = "sword_1h_sunwell_d_02.m2", + }, + { + fileId = "148169", + text = "sword_1h_thunderblade_a_01.m2", + value = "sword_1h_thunderblade_a_01.m2", + }, + { + fileId = "148171", + text = "sword_1h_troll_b_01.m2", + value = "sword_1h_troll_b_01.m2", + }, + { + fileId = "148172", + text = "sword_1h_ulduar_d_01.m2", + value = "sword_1h_ulduar_d_01.m2", + }, + { + fileId = "148178", + text = "sword_1h_ulduar_d_03.m2", + value = "sword_1h_ulduar_d_03.m2", + }, + { + fileId = "238906", + text = "sword_1h_ulduarraid_d_01.m2", + value = "sword_1h_ulduarraid_d_01.m2", + }, + { + fileId = "238912", + text = "sword_1h_ulduarraid_d_02.m2", + value = "sword_1h_ulduarraid_d_02.m2", + }, + { + fileId = "238918", + text = "sword_1h_ulduarraid_d_03.m2", + value = "sword_1h_ulduarraid_d_03.m2", + }, + { + fileId = "238924", + text = "sword_1h_ulduarraid_d_04.m2", + value = "sword_1h_ulduarraid_d_04.m2", + }, + { + fileId = "148185", + text = "sword_1h_utgarde_d_01.m2", + value = "sword_1h_utgarde_d_01.m2", + }, + { + fileId = "148191", + text = "sword_1h_utgarde_d_02.m2", + value = "sword_1h_utgarde_d_02.m2", + }, + { + fileId = "249283", + text = "sword_1h_varian_d_01.m2", + value = "sword_1h_varian_d_01.m2", + }, + { + fileId = "148198", + text = "sword_1h_warlock_d_01.m2", + value = "sword_1h_warlock_d_01.m2", + }, + { + fileId = "148203", + text = "sword_1h_warrior_d_01.m2", + value = "sword_1h_warrior_d_01.m2", + }, + { + fileId = "148209", + text = "sword_1h_zulaman_d_01.m2", + value = "sword_1h_zulaman_d_01.m2", + }, + { + fileId = "148213", + text = "sword_1h_zulaman_d_02.m2", + value = "sword_1h_zulaman_d_02.m2", + }, + { + fileId = "148218", + text = "sword_1h_zulaman_d_03.m2", + value = "sword_1h_zulaman_d_03.m2", + }, + { + fileId = "148224", + text = "sword_1h_zulgurub_d_01.m2", + value = "sword_1h_zulgurub_d_01.m2", + }, + { + fileId = "148226", + text = "sword_1h_zulgurub_d_02.m2", + value = "sword_1h_zulgurub_d_02.m2", + }, + { + fileId = "148228", + text = "sword_2h_ahnqiraj_d_01.m2", + value = "sword_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "148231", + text = "sword_2h_ahnqiraj_d_02.m2", + value = "sword_2h_ahnqiraj_d_02.m2", + }, + { + fileId = "303908", + text = "sword_2h_alliancecovenant_d_01.m2", + value = "sword_2h_alliancecovenant_d_01.m2", + }, + { + fileId = "148233", + text = "sword_2h_ashbringer.m2", + value = "sword_2h_ashbringer.m2", + }, + { + fileId = "148234", + text = "sword_2h_ashbringer02.m2", + value = "sword_2h_ashbringer02.m2", + }, + { + fileId = "148235", + text = "sword_2h_ashbringer_a_01.m2", + value = "sword_2h_ashbringer_a_01.m2", + }, + { + fileId = "148238", + text = "sword_2h_ashbringercorrupt.m2", + value = "sword_2h_ashbringercorrupt.m2", + }, + { + fileId = "148240", + text = "sword_2h_auchindoun_d_01.m2", + value = "sword_2h_auchindoun_d_01.m2", + }, + { + fileId = "148241", + text = "sword_2h_bastard_d_01.m2", + value = "sword_2h_bastard_d_01.m2", + }, + { + fileId = "148244", + text = "sword_2h_blacksmithing_d_01.m2", + value = "sword_2h_blacksmithing_d_01.m2", + }, + { + fileId = "148246", + text = "sword_2h_blacksmithing_d_02.m2", + value = "sword_2h_blacksmithing_d_02.m2", + }, + { + fileId = "148248", + text = "sword_2h_blacksmithing_d_03.m2", + value = "sword_2h_blacksmithing_d_03.m2", + }, + { + fileId = "148250", + text = "sword_2h_blackwing_a_01.m2", + value = "sword_2h_blackwing_a_01.m2", + }, + { + fileId = "148252", + text = "sword_2h_blackwing_a_02.m2", + value = "sword_2h_blackwing_a_02.m2", + }, + { + fileId = "148254", + text = "sword_2h_blood_a_01.m2", + value = "sword_2h_blood_a_01.m2", + }, + { + fileId = "148259", + text = "sword_2h_blood_a_02.m2", + value = "sword_2h_blood_a_02.m2", + }, + { + fileId = "148263", + text = "sword_2h_blood_b_01.m2", + value = "sword_2h_blood_b_01.m2", + }, + { + fileId = "148268", + text = "sword_2h_blood_b_02.m2", + value = "sword_2h_blood_b_02.m2", + }, + { + fileId = "148272", + text = "sword_2h_blood_c_01.m2", + value = "sword_2h_blood_c_01.m2", + }, + { + fileId = "148277", + text = "sword_2h_blood_c_02.m2", + value = "sword_2h_blood_c_02.m2", + }, + { + fileId = "148281", + text = "sword_2h_blood_c_03.m2", + value = "sword_2h_blood_c_03.m2", + }, + { + fileId = "148286", + text = "sword_2h_broadsword_a_01.m2", + value = "sword_2h_broadsword_a_01.m2", + }, + { + fileId = "148287", + text = "sword_2h_broadsword_a_02.m2", + value = "sword_2h_broadsword_a_02.m2", + }, + { + fileId = "148291", + text = "sword_2h_broadsword_a_03.m2", + value = "sword_2h_broadsword_a_03.m2", + }, + { + fileId = "148295", + text = "sword_2h_broadsword_b_01.m2", + value = "sword_2h_broadsword_b_01.m2", + }, + { + fileId = "148296", + text = "sword_2h_claymore_a_01.m2", + value = "sword_2h_claymore_a_01.m2", + }, + { + fileId = "148302", + text = "sword_2h_claymore_a_02.m2", + value = "sword_2h_claymore_a_02.m2", + }, + { + fileId = "148307", + text = "sword_2h_claymore_b_01.m2", + value = "sword_2h_claymore_b_01.m2", + }, + { + fileId = "148311", + text = "sword_2h_claymore_b_02.m2", + value = "sword_2h_claymore_b_02.m2", + }, + { + fileId = "148315", + text = "sword_2h_claymore_c_01.m2", + value = "sword_2h_claymore_c_01.m2", + }, + { + fileId = "148317", + text = "sword_2h_cotstrat_d_01.m2", + value = "sword_2h_cotstrat_d_01.m2", + }, + { + fileId = "148322", + text = "sword_2h_crystal_c_01.m2", + value = "sword_2h_crystal_c_01.m2", + }, + { + fileId = "148327", + text = "sword_2h_crystal_c_02.m2", + value = "sword_2h_crystal_c_02.m2", + }, + { + fileId = "148332", + text = "sword_2h_crystal_c_03.m2", + value = "sword_2h_crystal_c_03.m2", + }, + { + fileId = "238930", + text = "sword_2h_dalaran_d_01.m2", + value = "sword_2h_dalaran_d_01.m2", + }, + { + fileId = "148338", + text = "sword_2h_deathknight_b_01.m2", + value = "sword_2h_deathknight_b_01.m2", + }, + { + fileId = "148339", + text = "sword_2h_deathknight_b_01_q.m2", + value = "sword_2h_deathknight_b_01_q.m2", + }, + { + fileId = "148345", + text = "sword_2h_demonblade_d_01.m2", + value = "sword_2h_demonblade_d_01.m2", + }, + { + fileId = "148347", + text = "sword_2h_draenei_a_01.m2", + value = "sword_2h_draenei_a_01.m2", + }, + { + fileId = "148353", + text = "sword_2h_draenei_a_02.m2", + value = "sword_2h_draenei_a_02.m2", + }, + { + fileId = "148360", + text = "sword_2h_epic_a_03.m2", + value = "sword_2h_epic_a_03.m2", + }, + { + fileId = "327825", + text = "sword_2h_epic_a_03alt.m2", + value = "sword_2h_epic_a_03alt.m2", + }, + { + fileId = "252284", + text = "sword_2h_foam_a_01.m2", + value = "sword_2h_foam_a_01.m2", + }, + { + fileId = "148362", + text = "sword_2h_frostmourne_d_01.m2", + value = "sword_2h_frostmourne_d_01.m2", + }, + { + fileId = "340549", + text = "sword_2h_frostmourne_d_02.m2", + value = "sword_2h_frostmourne_d_02.m2", + }, + { + fileId = "345733", + text = "sword_2h_frostmourne_d_02_broken.m2", + value = "sword_2h_frostmourne_d_02_broken.m2", + }, + { + fileId = "148364", + text = "sword_2h_horde_a_01.m2", + value = "sword_2h_horde_a_01.m2", + }, + { + fileId = "148365", + text = "sword_2h_horde_a_02.m2", + value = "sword_2h_horde_a_02.m2", + }, + { + fileId = "148367", + text = "sword_2h_horde_b_03.m2", + value = "sword_2h_horde_b_03.m2", + }, + { + fileId = "148373", + text = "sword_2h_horde_c_01.m2", + value = "sword_2h_horde_c_01.m2", + }, + { + fileId = "148379", + text = "sword_2h_horde_c_02.m2", + value = "sword_2h_horde_c_02.m2", + }, + { + fileId = "148385", + text = "sword_2h_horde_c_03.m2", + value = "sword_2h_horde_c_03.m2", + }, + { + fileId = "148393", + text = "sword_2h_horde_d_01.m2", + value = "sword_2h_horde_d_01.m2", + }, + { + fileId = "148397", + text = "sword_2h_horde_d_02.m2", + value = "sword_2h_horde_d_02.m2", + }, + { + fileId = "304031", + text = "sword_2h_hordecovenant_d_01.m2", + value = "sword_2h_hordecovenant_d_01.m2", + }, + { + fileId = "148401", + text = "sword_2h_hyjal_d_01.m2", + value = "sword_2h_hyjal_d_01.m2", + }, + { + fileId = "318525", + text = "sword_2h_icecrownraid_d_01.m2", + value = "sword_2h_icecrownraid_d_01.m2", + }, + { + fileId = "148406", + text = "sword_2h_katana_a_01.m2", + value = "sword_2h_katana_a_01.m2", + }, + { + fileId = "148410", + text = "sword_2h_katana_b_01.m2", + value = "sword_2h_katana_b_01.m2", + }, + { + fileId = "148414", + text = "sword_2h_katana_b_02.m2", + value = "sword_2h_katana_b_02.m2", + }, + { + fileId = "148418", + text = "sword_2h_korean_a_01.m2", + value = "sword_2h_korean_a_01.m2", + }, + { + fileId = "148420", + text = "sword_2h_korean_c_01.m2", + value = "sword_2h_korean_c_01.m2", + }, + { + fileId = "148423", + text = "sword_2h_nexus_d_01.m2", + value = "sword_2h_nexus_d_01.m2", + }, + { + fileId = "148429", + text = "sword_2h_northrend_b_01.m2", + value = "sword_2h_northrend_b_01.m2", + }, + { + fileId = "148436", + text = "sword_2h_northrend_b_02.m2", + value = "sword_2h_northrend_b_02.m2", + }, + { + fileId = "148443", + text = "sword_2h_northrend_c_01.m2", + value = "sword_2h_northrend_c_01.m2", + }, + { + fileId = "148448", + text = "sword_2h_northrend_c_02.m2", + value = "sword_2h_northrend_c_02.m2", + }, + { + fileId = "148453", + text = "sword_2h_northrend_c_03.m2", + value = "sword_2h_northrend_c_03.m2", + }, + { + fileId = "148458", + text = "sword_2h_northrend_d_01.m2", + value = "sword_2h_northrend_d_01.m2", + }, + { + fileId = "148462", + text = "sword_2h_northrend_d_02.m2", + value = "sword_2h_northrend_d_02.m2", + }, + { + fileId = "148469", + text = "sword_2h_northrend_d_03.m2", + value = "sword_2h_northrend_d_03.m2", + }, + { + fileId = "148474", + text = "sword_2h_northrend_d_04.m2", + value = "sword_2h_northrend_d_04.m2", + }, + { + fileId = "148480", + text = "sword_2h_northrend_d_05.m2", + value = "sword_2h_northrend_d_05.m2", + }, + { + fileId = "254942", + text = "sword_2h_pvealliance_d_01.m2", + value = "sword_2h_pvealliance_d_01.m2", + }, + { + fileId = "252783", + text = "sword_2h_pvehorde_d_01.m2", + value = "sword_2h_pvehorde_d_01.m2", + }, + { + fileId = "307048", + text = "sword_2h_pvp320_c_01.m2", + value = "sword_2h_pvp320_c_01.m2", + }, + { + fileId = "327855", + text = "sword_2h_pvp330_d_01.m2", + value = "sword_2h_pvp330_d_01.m2", + }, + { + fileId = "238936", + text = "sword_2h_pvp_c_01.m2", + value = "sword_2h_pvp_c_01.m2", + }, + { + fileId = "148485", + text = "sword_2h_pvpalliance_a_01.m2", + value = "sword_2h_pvpalliance_a_01.m2", + }, + { + fileId = "148487", + text = "sword_2h_pvphorde_a_01.m2", + value = "sword_2h_pvphorde_a_01.m2", + }, + { + fileId = "148490", + text = "sword_2h_raid_d_01.m2", + value = "sword_2h_raid_d_01.m2", + }, + { + fileId = "148492", + text = "sword_2h_raid_d_02.m2", + value = "sword_2h_raid_d_02.m2", + }, + { + fileId = "148494", + text = "sword_2h_raid_d_03.m2", + value = "sword_2h_raid_d_03.m2", + }, + { + fileId = "148496", + text = "sword_2h_raid_d_04.m2", + value = "sword_2h_raid_d_04.m2", + }, + { + fileId = "148498", + text = "sword_2h_raid_d_05.m2", + value = "sword_2h_raid_d_05.m2", + }, + { + fileId = "148500", + text = "sword_2h_raid_d_06.m2", + value = "sword_2h_raid_d_06.m2", + }, + { + fileId = "148502", + text = "sword_2h_stratholme_d_01.m2", + value = "sword_2h_stratholme_d_01.m2", + }, + { + fileId = "148504", + text = "sword_2h_stratholme_d_02.m2", + value = "sword_2h_stratholme_d_02.m2", + }, + { + fileId = "148507", + text = "sword_2h_sunwell_d_01.m2", + value = "sword_2h_sunwell_d_01.m2", + }, + { + fileId = "148513", + text = "sword_2h_tauren_b_01.m2", + value = "sword_2h_tauren_b_01.m2", + }, + { + fileId = "148514", + text = "sword_2h_ulduar_d_01.m2", + value = "sword_2h_ulduar_d_01.m2", + }, + { + fileId = "238944", + text = "sword_2h_ulduarraid_d_01.m2", + value = "sword_2h_ulduarraid_d_01.m2", + }, + { + fileId = "148520", + text = "sword_2h_utgarde_d_01.m2", + value = "sword_2h_utgarde_d_01.m2", + }, + { + fileId = "148525", + text = "sword_2h_zulaman_d_01.m2", + value = "sword_2h_zulaman_d_01.m2", + }, + { + fileId = "148530", + text = "sword_2h_zulgurub_d_01.m2", + value = "sword_2h_zulgurub_d_01.m2", + }, + { + fileId = "148534", + text = "thrown_1h_axe_a_01.m2", + value = "thrown_1h_axe_a_01.m2", + }, + { + fileId = "148538", + text = "thrown_1h_axe_a_02.m2", + value = "thrown_1h_axe_a_02.m2", + }, + { + fileId = "148542", + text = "thrown_1h_axe_b_01.m2", + value = "thrown_1h_axe_b_01.m2", + }, + { + fileId = "250653", + text = "thrown_1h_bomb_c_01.m2", + value = "thrown_1h_bomb_c_01.m2", + }, + { + fileId = "148546", + text = "thrown_1h_boomerang_a_01.m2", + value = "thrown_1h_boomerang_a_01.m2", + }, + { + fileId = "148553", + text = "thrown_1h_coilfang_dagger_d_01.m2", + value = "thrown_1h_coilfang_dagger_d_01.m2", + }, + { + fileId = "148554", + text = "thrown_1h_dagger_a_01.m2", + value = "thrown_1h_dagger_a_01.m2", + }, + { + fileId = "148558", + text = "thrown_1h_dagger_a_02.m2", + value = "thrown_1h_dagger_a_02.m2", + }, + { + fileId = "148562", + text = "thrown_1h_dagger_b_01.m2", + value = "thrown_1h_dagger_b_01.m2", + }, + { + fileId = "148566", + text = "thrown_1h_dynamite_a_01.m2", + value = "thrown_1h_dynamite_a_01.m2", + }, + { + fileId = "148568", + text = "thrown_1h_dynamite_a_02.m2", + value = "thrown_1h_dynamite_a_02.m2", + }, + { + fileId = "148569", + text = "thrown_1h_fan_a_01.m2", + value = "thrown_1h_fan_a_01.m2", + }, + { + fileId = "238950", + text = "thrown_1h_giant_weaponboulder.m2", + value = "thrown_1h_giant_weaponboulder.m2", + }, + { + fileId = "148570", + text = "thrown_1h_hammer_c_01.m2", + value = "thrown_1h_hammer_c_01.m2", + }, + { + fileId = "148572", + text = "thrown_1h_harpoon_d_01.m2", + value = "thrown_1h_harpoon_d_01.m2", + }, + { + fileId = "148574", + text = "thrown_1h_molotov_a_01.m2", + value = "thrown_1h_molotov_a_01.m2", + }, + { + fileId = "238951", + text = "thrown_1h_naxx25_d_01.m2", + value = "thrown_1h_naxx25_d_01.m2", + }, + { + fileId = "306924", + text = "thrown_1h_pvp320_c_01.m2", + value = "thrown_1h_pvp320_c_01.m2", + }, + { + fileId = "328485", + text = "thrown_1h_pvp330_d_01.m2", + value = "thrown_1h_pvp330_d_01.m2", + }, + { + fileId = "148575", + text = "thrown_1h_shuriken_a_01.m2", + value = "thrown_1h_shuriken_a_01.m2", + }, + { + fileId = "148579", + text = "thrown_1h_shuriken_a_02.m2", + value = "thrown_1h_shuriken_a_02.m2", + }, + { + fileId = "148583", + text = "thrown_1h_shuriken_b_01.m2", + value = "thrown_1h_shuriken_b_01.m2", + }, + { + fileId = "148587", + text = "thrown_1h_sunwell_d_01.m2", + value = "thrown_1h_sunwell_d_01.m2", + }, + { + fileId = "148593", + text = "totem_2h_carved_b_01.m2", + value = "totem_2h_carved_b_01.m2", + }, + { + fileId = "148595", + text = "totem_2h_carved_d_01.m2", + value = "totem_2h_carved_d_01.m2", + }, + { + fileId = "148598", + text = "wand_1h_ahnqiraj_d_01.m2", + value = "wand_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "148603", + text = "wand_1h_ahnqiraj_d_02.m2", + value = "wand_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "148608", + text = "wand_1h_auchindoun_d_01.m2", + value = "wand_1h_auchindoun_d_01.m2", + }, + { + fileId = "148610", + text = "wand_1h_blackwing_a_01.m2", + value = "wand_1h_blackwing_a_01.m2", + }, + { + fileId = "148611", + text = "wand_1h_blood_a_01.m2", + value = "wand_1h_blood_a_01.m2", + }, + { + fileId = "148617", + text = "wand_1h_draenei_a_01.m2", + value = "wand_1h_draenei_a_01.m2", + }, + { + fileId = "148623", + text = "wand_1h_horde_a_01.m2", + value = "wand_1h_horde_a_01.m2", + }, + { + fileId = "148628", + text = "wand_1h_horde_a_02.m2", + value = "wand_1h_horde_a_02.m2", + }, + { + fileId = "148634", + text = "wand_1h_horde_a_03.m2", + value = "wand_1h_horde_a_03.m2", + }, + { + fileId = "148640", + text = "wand_1h_horde_b_01.m2", + value = "wand_1h_horde_b_01.m2", + }, + { + fileId = "148646", + text = "wand_1h_horde_b_02.m2", + value = "wand_1h_horde_b_02.m2", + }, + { + fileId = "319752", + text = "wand_1h_icecrownraid_d_01.m2", + value = "wand_1h_icecrownraid_d_01.m2", + }, + { + fileId = "317066", + text = "wand_1h_icecrownraid_d_02.m2", + value = "wand_1h_icecrownraid_d_02.m2", + }, + { + fileId = "148652", + text = "wand_1h_jeweled_b_01.m2", + value = "wand_1h_jeweled_b_01.m2", + }, + { + fileId = "148657", + text = "wand_1h_jeweled_b_02.m2", + value = "wand_1h_jeweled_b_02.m2", + }, + { + fileId = "148663", + text = "wand_1h_outlandraid_d_01.m2", + value = "wand_1h_outlandraid_d_01.m2", + }, + { + fileId = "148669", + text = "wand_1h_outlandraid_d_02.m2", + value = "wand_1h_outlandraid_d_02.m2", + }, + { + fileId = "148674", + text = "wand_1h_outlandraid_d_03.m2", + value = "wand_1h_outlandraid_d_03.m2", + }, + { + fileId = "148680", + text = "wand_1h_outlandraid_d_04.m2", + value = "wand_1h_outlandraid_d_04.m2", + }, + { + fileId = "148685", + text = "wand_1h_outlandraid_d_05.m2", + value = "wand_1h_outlandraid_d_05.m2", + }, + { + fileId = "148689", + text = "wand_1h_outlandraid_d_06.m2", + value = "wand_1h_outlandraid_d_06.m2", + }, + { + fileId = "305731", + text = "wand_1h_pvealliance_d_01.m2", + value = "wand_1h_pvealliance_d_01.m2", + }, + { + fileId = "305333", + text = "wand_1h_pvealliance_d_02.m2", + value = "wand_1h_pvealliance_d_02.m2", + }, + { + fileId = "254864", + text = "wand_1h_pvehorde_d_01.m2", + value = "wand_1h_pvehorde_d_01.m2", + }, + { + fileId = "293763", + text = "wand_1h_pvehorde_d_02.m2", + value = "wand_1h_pvehorde_d_02.m2", + }, + { + fileId = "307202", + text = "wand_1h_pvp320_c_01.m2", + value = "wand_1h_pvp320_c_01.m2", + }, + { + fileId = "328249", + text = "wand_1h_pvp330_d_01.m2", + value = "wand_1h_pvp330_d_01.m2", + }, + { + fileId = "238959", + text = "wand_1h_pvp_c_01.m2", + value = "wand_1h_pvp_c_01.m2", + }, + { + fileId = "148694", + text = "wand_1h_romancandle_a_01.m2", + value = "wand_1h_romancandle_a_01.m2", + }, + { + fileId = "148695", + text = "wand_1h_standard_a_01.m2", + value = "wand_1h_standard_a_01.m2", + }, + { + fileId = "148699", + text = "wand_1h_standard_a_02.m2", + value = "wand_1h_standard_a_02.m2", + }, + { + fileId = "148706", + text = "wand_1h_stratholme_d_01.m2", + value = "wand_1h_stratholme_d_01.m2", + }, + { + fileId = "148708", + text = "wand_1h_stratholme_d_02.m2", + value = "wand_1h_stratholme_d_02.m2", + }, + { + fileId = "148709", + text = "wand_1h_sunwell_d_01.m2", + value = "wand_1h_sunwell_d_01.m2", + }, + { + fileId = "148714", + text = "wand_1h_sunwell_d_02.m2", + value = "wand_1h_sunwell_d_02.m2", + }, + { + fileId = "249285", + text = "wand_1h_ulduarraid_d_01.m2", + value = "wand_1h_ulduarraid_d_01.m2", + }, + { + fileId = "249937", + text = "wand_1h_ulduarraid_d_02.m2", + value = "wand_1h_ulduarraid_d_02.m2", + }, + { + fileId = "148719", + text = "wand_1h_utgarde_d_01.m2", + value = "wand_1h_utgarde_d_01.m2", + }, + { + fileId = "148725", + text = "wand_1h_zulaman_d_01.m2", + value = "wand_1h_zulaman_d_01.m2", + }, + { + fileId = "148730", + text = "wand_1h_zulaman_d_02.m2", + value = "wand_1h_zulaman_d_02.m2", + }, + { + fileId = "148734", + text = "wand_1h_zulgurub_d_01.m2", + value = "wand_1h_zulgurub_d_01.m2", + }, + { + fileId = "148735", + text = "wand_1h_zulgurub_d_02.m2", + value = "wand_1h_zulgurub_d_02.m2", + }, + { + fileId = "148736", + text = "wand_1h_zulgurub_d_03.m2", + value = "wand_1h_zulgurub_d_03.m2", + }, + }, + text = "weapon", + value = "weapon", + }, + }, + text = "objectcomponents", + value = "objectcomponents", + }, + }, + text = "item", + value = "item", + }, + { + children = { + { + children = { + { + fileId = "165398", + text = "bloodspurt.m2", + value = "bloodspurt.m2", + }, + { + fileId = "165399", + text = "bloodspurtblack.m2", + value = "bloodspurtblack.m2", + }, + { + fileId = "165400", + text = "bloodspurtblacklarge.m2", + value = "bloodspurtblacklarge.m2", + }, + { + fileId = "165401", + text = "bloodspurtblue.m2", + value = "bloodspurtblue.m2", + }, + { + fileId = "165402", + text = "bloodspurtbluelarge.m2", + value = "bloodspurtbluelarge.m2", + }, + { + fileId = "165404", + text = "bloodspurtgreen.m2", + value = "bloodspurtgreen.m2", + }, + { + fileId = "165405", + text = "bloodspurtgreenlarge.m2", + value = "bloodspurtgreenlarge.m2", + }, + { + fileId = "165407", + text = "bloodspurtlarge.m2", + value = "bloodspurtlarge.m2", + }, + }, + text = "bloodspurts", + value = "bloodspurts", + }, + { + fileId = "165411", + text = "bubbles.m2", + value = "bubbles.m2", + }, + { + fileId = "165412", + text = "coldbreath.m2", + value = "coldbreath.m2", + }, + { + fileId = "165415", + text = "ember_trail.m2", + value = "ember_trail.m2", + }, + { + fileId = "165417", + text = "footstepspraydirt.m2", + value = "footstepspraydirt.m2", + }, + { + fileId = "165418", + text = "footstepspraydirtwalk.m2", + value = "footstepspraydirtwalk.m2", + }, + { + fileId = "165419", + text = "footstepspraysnow.m2", + value = "footstepspraysnow.m2", + }, + { + fileId = "165420", + text = "footstepspraysnowwalk.m2", + value = "footstepspraysnowwalk.m2", + }, + { + fileId = "165421", + text = "footstepspraywater.m2", + value = "footstepspraywater.m2", + }, + { + fileId = "165422", + text = "footstepspraywaterwalk.m2", + value = "footstepspraywaterwalk.m2", + }, + { + fileId = "165427", + text = "greenleaves.m2", + value = "greenleaves.m2", + }, + { + fileId = "165433", + text = "loginfx.m2", + value = "loginfx.m2", + }, + { + fileId = "165434", + text = "lootfx.m2", + value = "lootfx.m2", + }, + { + fileId = "2198654", + text = "moltenblast_missile.m2", + value = "moltenblast_missile.m2", + }, + { + fileId = "165436", + text = "morphfx.m2", + value = "morphfx.m2", + }, + { + fileId = "165437", + text = "pick_spellobject.m2", + value = "pick_spellobject.m2", + }, + { + fileId = "2198578", + text = "stunswirl_state_head.m2", + value = "stunswirl_state_head.m2", + }, + }, + text = "particles", + value = "particles", + }, + { + children = { + { + fileId = "165528", + text = "sonicboom_impactdd_uber_chest.m2", + value = "sonicboom_impactdd_uber_chest.m2", + }, + }, + text = "spell", + value = "spell", + }, + { + children = { + { + fileId = "165529", + text = "abolishmagic_base.m2", + value = "abolishmagic_base.m2", + }, + { + fileId = "165530", + text = "abyssal_ball.m2", + value = "abyssal_ball.m2", + }, + { + fileId = "165531", + text = "abyssal_impact_base.m2", + value = "abyssal_impact_base.m2", + }, + { + fileId = "240784", + text = "achievement_onroot.m2", + value = "achievement_onroot.m2", + }, + { + fileId = "327202", + text = "acid_ground_cloud.m2", + value = "acid_ground_cloud.m2", + }, + { + fileId = "327203", + text = "acid_ground_cloud_purple.m2", + value = "acid_ground_cloud_purple.m2", + }, + { + fileId = "165532", + text = "acidbreath.m2", + value = "acidbreath.m2", + }, + { + fileId = "344547", + text = "acidbreath_supergreen.m2", + value = "acidbreath_supergreen.m2", + }, + { + fileId = "165533", + text = "acidburn.m2", + value = "acidburn.m2", + }, + { + fileId = "165534", + text = "acidburn_black.m2", + value = "acidburn_black.m2", + }, + { + fileId = "165535", + text = "acidburn_blue.m2", + value = "acidburn_blue.m2", + }, + { + fileId = "165536", + text = "acidburn_lightblue.m2", + value = "acidburn_lightblue.m2", + }, + { + fileId = "165537", + text = "acidburn_orange.m2", + value = "acidburn_orange.m2", + }, + { + fileId = "165538", + text = "acidburn_purple.m2", + value = "acidburn_purple.m2", + }, + { + fileId = "165539", + text = "acidburn_red.m2", + value = "acidburn_red.m2", + }, + { + fileId = "165540", + text = "acidburn_small.m2", + value = "acidburn_small.m2", + }, + { + fileId = "165541", + text = "acidburn_small_black.m2", + value = "acidburn_small_black.m2", + }, + { + fileId = "250762", + text = "acidburn_small_black_wo_bubbles.m2", + value = "acidburn_small_black_wo_bubbles.m2", + }, + { + fileId = "165542", + text = "acidburn_small_blue.m2", + value = "acidburn_small_blue.m2", + }, + { + fileId = "165543", + text = "acidburn_small_lightblue.m2", + value = "acidburn_small_lightblue.m2", + }, + { + fileId = "165544", + text = "acidburn_small_orange.m2", + value = "acidburn_small_orange.m2", + }, + { + fileId = "165545", + text = "acidburn_small_purple.m2", + value = "acidburn_small_purple.m2", + }, + { + fileId = "165546", + text = "acidburn_small_red.m2", + value = "acidburn_small_red.m2", + }, + { + fileId = "165547", + text = "acidburn_small_yellow.m2", + value = "acidburn_small_yellow.m2", + }, + { + fileId = "165548", + text = "acidburn_yellow.m2", + value = "acidburn_yellow.m2", + }, + { + fileId = "165549", + text = "acidcloudbreath.m2", + value = "acidcloudbreath.m2", + }, + { + fileId = "165550", + text = "acidcloudbreath_fast.m2", + value = "acidcloudbreath_fast.m2", + }, + { + fileId = "240785", + text = "acidcloudbreath_fast_blue.m2", + value = "acidcloudbreath_fast_blue.m2", + }, + { + fileId = "165551", + text = "acidcloudbreath_groundsmoke.m2", + value = "acidcloudbreath_groundsmoke.m2", + }, + { + fileId = "240786", + text = "acidcloudbreath_groundsmoke_blue.m2", + value = "acidcloudbreath_groundsmoke_blue.m2", + }, + { + fileId = "165552", + text = "acidliquidbreath.m2", + value = "acidliquidbreath.m2", + }, + { + fileId = "240787", + text = "acidliquidbreath_purple.m2", + value = "acidliquidbreath_purple.m2", + }, + { + fileId = "240788", + text = "acidliquidbreathred.m2", + value = "acidliquidbreathred.m2", + }, + { + fileId = "165554", + text = "adrenalinerush_cast_base.m2", + value = "adrenalinerush_cast_base.m2", + }, + { + fileId = "165556", + text = "aegis.m2", + value = "aegis.m2", + }, + { + fileId = "165559", + text = "aimedshot_impact_chest.m2", + value = "aimedshot_impact_chest.m2", + }, + { + fileId = "240789", + text = "alliancectfflag_generic_spell.m2", + value = "alliancectfflag_generic_spell.m2", + }, + { + fileId = "165560", + text = "alliancectfflag_spell.m2", + value = "alliancectfflag_spell.m2", + }, + { + fileId = "165562", + text = "amplifymagic_impact_base.m2", + value = "amplifymagic_impact_base.m2", + }, + { + fileId = "165563", + text = "antimagic_precast_hand.m2", + value = "antimagic_precast_hand.m2", + }, + { + fileId = "165564", + text = "antimagic_state_base.m2", + value = "antimagic_state_base.m2", + }, + { + fileId = "165565", + text = "antimagic_state_blue.m2", + value = "antimagic_state_blue.m2", + }, + { + fileId = "165566", + text = "antimagic_state_red.m2", + value = "antimagic_state_red.m2", + }, + { + fileId = "165567", + text = "arcane_fire_weapon_effect.m2", + value = "arcane_fire_weapon_effect.m2", + }, + { + fileId = "165568", + text = "arcane_form_precast.m2", + value = "arcane_form_precast.m2", + }, + { + fileId = "165569", + text = "arcane_missile.m2", + value = "arcane_missile.m2", + }, + { + fileId = "165570", + text = "arcane_missile_lvl1.m2", + value = "arcane_missile_lvl1.m2", + }, + { + fileId = "165571", + text = "arcane_missile_lvl2.m2", + value = "arcane_missile_lvl2.m2", + }, + { + fileId = "165572", + text = "arcane_missile_lvl3.m2", + value = "arcane_missile_lvl3.m2", + }, + { + fileId = "165573", + text = "arcane_missile_lvl4.m2", + value = "arcane_missile_lvl4.m2", + }, + { + fileId = "304165", + text = "arcane_rune_base_impact.m2", + value = "arcane_rune_base_impact.m2", + }, + { + fileId = "304550", + text = "arcane_rune_impact_base.m2", + value = "arcane_rune_impact_base.m2", + }, + { + fileId = "304265", + text = "arcane_rune_shield_impact_base.m2", + value = "arcane_rune_shield_impact_base.m2", + }, + { + fileId = "165574", + text = "arcanebomb_missle.m2", + value = "arcanebomb_missle.m2", + }, + { + fileId = "165575", + text = "arcanebreath.m2", + value = "arcanebreath.m2", + }, + { + fileId = "165576", + text = "arcaneexplosion_base.m2", + value = "arcaneexplosion_base.m2", + }, + { + fileId = "165577", + text = "arcaneexplosion_boss_base.m2", + value = "arcaneexplosion_boss_base.m2", + }, + { + fileId = "165578", + text = "arcaneexplosion_impact_chest.m2", + value = "arcaneexplosion_impact_chest.m2", + }, + { + fileId = "165579", + text = "arcaneforceshield_blue.m2", + value = "arcaneforceshield_blue.m2", + }, + { + fileId = "165580", + text = "arcaneforceshield_dark.m2", + value = "arcaneforceshield_dark.m2", + }, + { + fileId = "165581", + text = "arcaneforceshield_green.m2", + value = "arcaneforceshield_green.m2", + }, + { + fileId = "165582", + text = "arcaneforceshield_purple.m2", + value = "arcaneforceshield_purple.m2", + }, + { + fileId = "165583", + text = "arcaneforceshield_red.m2", + value = "arcaneforceshield_red.m2", + }, + { + fileId = "165584", + text = "arcaneforceshield_yellow.m2", + value = "arcaneforceshield_yellow.m2", + }, + { + fileId = "165585", + text = "arcaneintellect_impact_base.m2", + value = "arcaneintellect_impact_base.m2", + }, + { + fileId = "165586", + text = "arcanelightning.m2", + value = "arcanelightning.m2", + }, + { + fileId = "165587", + text = "arcanelightning01.m2", + value = "arcanelightning01.m2", + }, + { + fileId = "165588", + text = "arcanelightning02.m2", + value = "arcanelightning02.m2", + }, + { + fileId = "165589", + text = "arcanepower_state_chest.m2", + value = "arcanepower_state_chest.m2", + }, + { + fileId = "165590", + text = "arcanereflect_state_chest.m2", + value = "arcanereflect_state_chest.m2", + }, + { + fileId = "165591", + text = "arcaneshot_area.m2", + value = "arcaneshot_area.m2", + }, + { + fileId = "165592", + text = "arcaneshot_missile.m2", + value = "arcaneshot_missile.m2", + }, + { + fileId = "165593", + text = "arcaneshot_missile2.m2", + value = "arcaneshot_missile2.m2", + }, + { + fileId = "165594", + text = "arcanespirit_impact_base.m2", + value = "arcanespirit_impact_base.m2", + }, + { + fileId = "165595", + text = "arcanetorrent.m2", + value = "arcanetorrent.m2", + }, + { + fileId = "165596", + text = "arcanevolley_missile.m2", + value = "arcanevolley_missile.m2", + }, + { + fileId = "165597", + text = "arcaneward_impact_chest.m2", + value = "arcaneward_impact_chest.m2", + }, + { + fileId = "165598", + text = "archimonde_blue_fire.m2", + value = "archimonde_blue_fire.m2", + }, + { + fileId = "165599", + text = "archimonde_fire.m2", + value = "archimonde_fire.m2", + }, + { + fileId = "240790", + text = "argentcrusade_ctfflag_spell.m2", + value = "argentcrusade_ctfflag_spell.m2", + }, + { + fileId = "352511", + text = "arthas_souls_attack.m2", + value = "arthas_souls_attack.m2", + }, + { + fileId = "165613", + text = "aspectbeast_impact_head.m2", + value = "aspectbeast_impact_head.m2", + }, + { + fileId = "165614", + text = "aspectcheetah_impact_head.m2", + value = "aspectcheetah_impact_head.m2", + }, + { + fileId = "165615", + text = "aspecthawk_impact_head.m2", + value = "aspecthawk_impact_head.m2", + }, + { + fileId = "165616", + text = "aspectmonkey_impact_head.m2", + value = "aspectmonkey_impact_head.m2", + }, + { + fileId = "165617", + text = "aspectsnake_impact_head.m2", + value = "aspectsnake_impact_head.m2", + }, + { + fileId = "165618", + text = "aspectwild_impact_head.m2", + value = "aspectwild_impact_head.m2", + }, + { + fileId = "165619", + text = "aspectwolf_impact_head.m2", + value = "aspectwolf_impact_head.m2", + }, + { + fileId = "165620", + text = "assassinate_impact.m2", + value = "assassinate_impact.m2", + }, + { + fileId = "165621", + text = "assassinate_missile.m2", + value = "assassinate_missile.m2", + }, + { + fileId = "165622", + text = "astral_recall_impact_base.m2", + value = "astral_recall_impact_base.m2", + }, + { + fileId = "165643", + text = "avengingwrath_impact_base.m2", + value = "avengingwrath_impact_base.m2", + }, + { + fileId = "165644", + text = "avengingwrath_state_chest.m2", + value = "avengingwrath_state_chest.m2", + }, + { + fileId = "165645", + text = "backstab_cast_base.m2", + value = "backstab_cast_base.m2", + }, + { + fileId = "165646", + text = "backstab_impact_chest.m2", + value = "backstab_impact_chest.m2", + }, + { + fileId = "165647", + text = "balanceofnature_impact_base.m2", + value = "balanceofnature_impact_base.m2", + }, + { + fileId = "165648", + text = "banish_chest.m2", + value = "banish_chest.m2", + }, + { + fileId = "165649", + text = "banish_chest_blue.m2", + value = "banish_chest_blue.m2", + }, + { + fileId = "165650", + text = "banish_chest_dark.m2", + value = "banish_chest_dark.m2", + }, + { + fileId = "165651", + text = "banish_chest_purple.m2", + value = "banish_chest_purple.m2", + }, + { + fileId = "165652", + text = "banish_chest_white.m2", + value = "banish_chest_white.m2", + }, + { + fileId = "165653", + text = "banish_chest_yellow.m2", + value = "banish_chest_yellow.m2", + }, + { + fileId = "165654", + text = "barkshield_state_base.m2", + value = "barkshield_state_base.m2", + }, + { + fileId = "165655", + text = "barkskin_state_base.m2", + value = "barkskin_state_base.m2", + }, + { + fileId = "165656", + text = "baseflagcapred_impact_base.m2", + value = "baseflagcapred_impact_base.m2", + }, + { + fileId = "165657", + text = "basicstrike.m2", + value = "basicstrike.m2", + }, + { + fileId = "165658", + text = "battleshout_cast_base.m2", + value = "battleshout_cast_base.m2", + }, + { + fileId = "165659", + text = "battlestance_impact_head.m2", + value = "battlestance_impact_head.m2", + }, + { + fileId = "240797", + text = "beacon_of_light_impact.m2", + value = "beacon_of_light_impact.m2", + }, + { + fileId = "253566", + text = "beamtarget_onground.m2", + value = "beamtarget_onground.m2", + }, + { + fileId = "165664", + text = "bearfrenzy.m2", + value = "bearfrenzy.m2", + }, + { + fileId = "165665", + text = "bearfrenzyimpact.m2", + value = "bearfrenzyimpact.m2", + }, + { + fileId = "165666", + text = "beartrap.m2", + value = "beartrap.m2", + }, + { + fileId = "165667", + text = "beartrap_state.m2", + value = "beartrap_state.m2", + }, + { + fileId = "165668", + text = "beastcall_impact_head.m2", + value = "beastcall_impact_head.m2", + }, + { + fileId = "165669", + text = "beastlore_impact_base.m2", + value = "beastlore_impact_base.m2", + }, + { + fileId = "165670", + text = "beastlore_impact_head.m2", + value = "beastlore_impact_head.m2", + }, + { + fileId = "165672", + text = "beastragecaster.m2", + value = "beastragecaster.m2", + }, + { + fileId = "165673", + text = "beastragestate.m2", + value = "beastragestate.m2", + }, + { + fileId = "165674", + text = "beastsoothe_impact_head.m2", + value = "beastsoothe_impact_head.m2", + }, + { + fileId = "165675", + text = "beastsoothe_state_head.m2", + value = "beastsoothe_state_head.m2", + }, + { + fileId = "165676", + text = "beastwithin_state_base.m2", + value = "beastwithin_state_base.m2", + }, + { + fileId = "165678", + text = "berzerkerstance_impact_head.m2", + value = "berzerkerstance_impact_head.m2", + }, + { + fileId = "165679", + text = "bestowdisease_impact_chest.m2", + value = "bestowdisease_impact_chest.m2", + }, + { + fileId = "165680", + text = "bind2_impact_base.m2", + value = "bind2_impact_base.m2", + }, + { + fileId = "165681", + text = "bind_impact_base.m2", + value = "bind_impact_base.m2", + }, + { + fileId = "240798", + text = "black_roseshower_impact_base.m2", + value = "black_roseshower_impact_base.m2", + }, + { + fileId = "306870", + text = "blackhole_white.m2", + value = "blackhole_white.m2", + }, + { + fileId = "310424", + text = "blackhole_white_h.m2", + value = "blackhole_white_h.m2", + }, + { + fileId = "165685", + text = "blackmagic_precast_base.m2", + value = "blackmagic_precast_base.m2", + }, + { + fileId = "165686", + text = "blackradiationfog.m2", + value = "blackradiationfog.m2", + }, + { + fileId = "165687", + text = "blackshot_missile.m2", + value = "blackshot_missile.m2", + }, + { + fileId = "165688", + text = "blades_ring.m2", + value = "blades_ring.m2", + }, + { + fileId = "240799", + text = "blessed_mending_impact.m2", + value = "blessed_mending_impact.m2", + }, + { + fileId = "240800", + text = "blessed_mending_proc_impact.m2", + value = "blessed_mending_proc_impact.m2", + }, + { + fileId = "165690", + text = "blessingofagility_base.m2", + value = "blessingofagility_base.m2", + }, + { + fileId = "165692", + text = "blessingoffreedom_impact.m2", + value = "blessingoffreedom_impact.m2", + }, + { + fileId = "165693", + text = "blessingoffreedom_state.m2", + value = "blessingoffreedom_state.m2", + }, + { + fileId = "165694", + text = "blessingofkings_base.m2", + value = "blessingofkings_base.m2", + }, + { + fileId = "165696", + text = "blessingoflight_impact.m2", + value = "blessingoflight_impact.m2", + }, + { + fileId = "165698", + text = "blessingofmight_base.m2", + value = "blessingofmight_base.m2", + }, + { + fileId = "165700", + text = "blessingofprotection_base.m2", + value = "blessingofprotection_base.m2", + }, + { + fileId = "165701", + text = "blessingofprotection_chest.m2", + value = "blessingofprotection_chest.m2", + }, + { + fileId = "165702", + text = "blessingofprotection_impact.m2", + value = "blessingofprotection_impact.m2", + }, + { + fileId = "165703", + text = "blessingofprotection_state_classic.m2", + value = "blessingofprotection_state_classic.m2", + }, + { + fileId = "165705", + text = "blessingofsacrifice_impact.m2", + value = "blessingofsacrifice_impact.m2", + }, + { + fileId = "165707", + text = "blessingofsalvation_impact.m2", + value = "blessingofsalvation_impact.m2", + }, + { + fileId = "165708", + text = "blessingofsanctuary.m2", + value = "blessingofsanctuary.m2", + }, + { + fileId = "165709", + text = "blessingofspellprotection_base.m2", + value = "blessingofspellprotection_base.m2", + }, + { + fileId = "165710", + text = "blessingofstamina_base.m2", + value = "blessingofstamina_base.m2", + }, + { + fileId = "165711", + text = "blessingofstrength_base.m2", + value = "blessingofstrength_base.m2", + }, + { + fileId = "165712", + text = "blessingofwisdom_base.m2", + value = "blessingofwisdom_base.m2", + }, + { + fileId = "165713", + text = "blindingshot_impact.m2", + value = "blindingshot_impact.m2", + }, + { + fileId = "165714", + text = "blindingshot_missile.m2", + value = "blindingshot_missile.m2", + }, + { + fileId = "165715", + text = "blink_impact_chest.m2", + value = "blink_impact_chest.m2", + }, + { + fileId = "165716", + text = "blizzard_impact_base.m2", + value = "blizzard_impact_base.m2", + }, + { + fileId = "309825", + text = "blizzard_spawn.m2", + value = "blizzard_spawn.m2", + }, + { + fileId = "344272", + text = "blood_rain.m2", + value = "blood_rain.m2", + }, + { + fileId = "344273", + text = "blood_rain_impact_base.m2", + value = "blood_rain_impact_base.m2", + }, + { + fileId = "344548", + text = "blood_rain_main_impact_base.m2", + value = "blood_rain_main_impact_base.m2", + }, + { + fileId = "165722", + text = "bloodboil_impact_chest.m2", + value = "bloodboil_impact_chest.m2", + }, + { + fileId = "165723", + text = "bloodbolt_chest.m2", + value = "bloodbolt_chest.m2", + }, + { + fileId = "165724", + text = "bloodbolt_missile_low.m2", + value = "bloodbolt_missile_low.m2", + }, + { + fileId = "165725", + text = "bloodlust_cast_hand.m2", + value = "bloodlust_cast_hand.m2", + }, + { + fileId = "165726", + text = "bloodlust_player_cast_head.m2", + value = "bloodlust_player_cast_head.m2", + }, + { + fileId = "165727", + text = "bloodlust_player_state_head.m2", + value = "bloodlust_player_state_head.m2", + }, + { + fileId = "165728", + text = "bloodlust_state_hand.m2", + value = "bloodlust_state_hand.m2", + }, + { + fileId = "344271", + text = "bloodqueen_fire.m2", + value = "bloodqueen_fire.m2", + }, + { + fileId = "165737", + text = "bloodyexplosion.m2", + value = "bloodyexplosion.m2", + }, + { + fileId = "165738", + text = "bloodyexplosiongreen.m2", + value = "bloodyexplosiongreen.m2", + }, + { + fileId = "240802", + text = "bloodyexplosionpurple.m2", + value = "bloodyexplosionpurple.m2", + }, + { + fileId = "165743", + text = "blueradiationfog.m2", + value = "blueradiationfog.m2", + }, + { + fileId = "165744", + text = "bomb_explosiona.m2", + value = "bomb_explosiona.m2", + }, + { + fileId = "327753", + text = "bone_cyclone_impact.m2", + value = "bone_cyclone_impact.m2", + }, + { + fileId = "326745", + text = "bone_cyclone_state.m2", + value = "bone_cyclone_state.m2", + }, + { + fileId = "240803", + text = "bonearm_01.m2", + value = "bonearm_01.m2", + }, + { + fileId = "165749", + text = "bonearmor_head.m2", + value = "bonearmor_head.m2", + }, + { + fileId = "165750", + text = "bonearmor_recursive.m2", + value = "bonearmor_recursive.m2", + }, + { + fileId = "165751", + text = "bonearmor_state_chest.m2", + value = "bonearmor_state_chest.m2", + }, + { + fileId = "341893", + text = "boneguardspike.m2", + value = "boneguardspike.m2", + }, + { + fileId = "165752", + text = "boneworm_attackeffects.m2", + value = "boneworm_attackeffects.m2", + }, + { + fileId = "165756", + text = "boulder_missile.m2", + value = "boulder_missile.m2", + }, + { + fileId = "165757", + text = "bouldergiant_missile.m2", + value = "bouldergiant_missile.m2", + }, + { + fileId = "165759", + text = "brillianceaura.m2", + value = "brillianceaura.m2", + }, + { + fileId = "165760", + text = "bubble_drunk.m2", + value = "bubble_drunk.m2", + }, + { + fileId = "165761", + text = "burningintellect_impact_base.m2", + value = "burningintellect_impact_base.m2", + }, + { + fileId = "165762", + text = "burningspirit_impact_base.m2", + value = "burningspirit_impact_base.m2", + }, + { + fileId = "165763", + text = "burningspirit_impact_head.m2", + value = "burningspirit_impact_head.m2", + }, + { + fileId = "165764", + text = "burrowearth_bonewaste_missile.m2", + value = "burrowearth_bonewaste_missile.m2", + }, + { + fileId = "165765", + text = "burrowearth_brown_missile.m2", + value = "burrowearth_brown_missile.m2", + }, + { + fileId = "307486", + text = "burrowearth_brown_missile_v2.m2", + value = "burrowearth_brown_missile_v2.m2", + }, + { + fileId = "165766", + text = "burrowearth_hellfire_missile.m2", + value = "burrowearth_hellfire_missile.m2", + }, + { + fileId = "165768", + text = "calllightning_impact.m2", + value = "calllightning_impact.m2", + }, + { + fileId = "165769", + text = "camouflage_base.m2", + value = "camouflage_base.m2", + }, + { + fileId = "165770", + text = "camouflage_hands.m2", + value = "camouflage_hands.m2", + }, + { + fileId = "165771", + text = "camouflage_head.m2", + value = "camouflage_head.m2", + }, + { + fileId = "165772", + text = "camouflage_impact.m2", + value = "camouflage_impact.m2", + }, + { + fileId = "165777", + text = "canon_impact_dust.m2", + value = "canon_impact_dust.m2", + }, + { + fileId = "165778", + text = "catmark.m2", + value = "catmark.m2", + }, + { + fileId = "343978", + text = "catmark_black.m2", + value = "catmark_black.m2", + }, + { + fileId = "343979", + text = "catmark_blue.m2", + value = "catmark_blue.m2", + }, + { + fileId = "343980", + text = "catmark_green.m2", + value = "catmark_green.m2", + }, + { + fileId = "343981", + text = "catmark_orange.m2", + value = "catmark_orange.m2", + }, + { + fileId = "343982", + text = "catmark_red.m2", + value = "catmark_red.m2", + }, + { + fileId = "343983", + text = "catmark_white.m2", + value = "catmark_white.m2", + }, + { + fileId = "343984", + text = "catmark_yellow.m2", + value = "catmark_yellow.m2", + }, + { + fileId = "1375559", + text = "cfx_paladin_shieldofvengeance_castchest.m2", + value = "cfx_paladin_shieldofvengeance_castchest.m2", + }, + { + fileId = "165779", + text = "chainlightning_fel_impact_chest.m2", + value = "chainlightning_fel_impact_chest.m2", + }, + { + fileId = "165780", + text = "chainlightning_impact_chest.m2", + value = "chainlightning_impact_chest.m2", + }, + { + fileId = "165782", + text = "chainsofice_low_base.m2", + value = "chainsofice_low_base.m2", + }, + { + fileId = "165783", + text = "challengingshout_cast_base.m2", + value = "challengingshout_cast_base.m2", + }, + { + fileId = "165784", + text = "chargetrail.m2", + value = "chargetrail.m2", + }, + { + fileId = "165785", + text = "cheapshot_cast_base.m2", + value = "cheapshot_cast_base.m2", + }, + { + fileId = "165786", + text = "cheapshot_impact_chest.m2", + value = "cheapshot_impact_chest.m2", + }, + { + fileId = "165787", + text = "cheapshot_state_head.m2", + value = "cheapshot_state_head.m2", + }, + { + fileId = "165788", + text = "cheat_death.m2", + value = "cheat_death.m2", + }, + { + fileId = "165790", + text = "chimerashot_impact.m2", + value = "chimerashot_impact.m2", + }, + { + fileId = "165791", + text = "chimerashot_missile.m2", + value = "chimerashot_missile.m2", + }, + { + fileId = "165792", + text = "christmassnowrain.m2", + value = "christmassnowrain.m2", + }, + { + fileId = "1083712", + text = "cinematic_omni_light.m2", + value = "cinematic_omni_light.m2", + }, + { + fileId = "165794", + text = "circle_of_renewal_impact.m2", + value = "circle_of_renewal_impact.m2", + }, + { + fileId = "165795", + text = "clearcasting_impact_chest.m2", + value = "clearcasting_impact_chest.m2", + }, + { + fileId = "165796", + text = "cleave_cast_base.m2", + value = "cleave_cast_base.m2", + }, + { + fileId = "165797", + text = "cleave_cast_base_purple.m2", + value = "cleave_cast_base_purple.m2", + }, + { + fileId = "165798", + text = "cleave_impact_chest.m2", + value = "cleave_impact_chest.m2", + }, + { + fileId = "165799", + text = "clense_base.m2", + value = "clense_base.m2", + }, + { + fileId = "240807", + text = "cobrastrikes_impact.m2", + value = "cobrastrikes_impact.m2", + }, + { + fileId = "254266", + text = "collapsingstar.m2", + value = "collapsingstar.m2", + }, + { + fileId = "165810", + text = "coneofcold_geo.m2", + value = "coneofcold_geo.m2", + }, + { + fileId = "165811", + text = "coneofcold_hand.m2", + value = "coneofcold_hand.m2", + }, + { + fileId = "240808", + text = "coneofcold_mouth.m2", + value = "coneofcold_mouth.m2", + }, + { + fileId = "165812", + text = "coneoffire_hand.m2", + value = "coneoffire_hand.m2", + }, + { + fileId = "165813", + text = "conflagrate_impact_chest.m2", + value = "conflagrate_impact_chest.m2", + }, + { + fileId = "165815", + text = "confused_state_head.m2", + value = "confused_state_head.m2", + }, + { + fileId = "165816", + text = "conjureitem.m2", + value = "conjureitem.m2", + }, + { + fileId = "165817", + text = "conjureitemcast.m2", + value = "conjureitemcast.m2", + }, + { + fileId = "165818", + text = "consecration_impact_base.m2", + value = "consecration_impact_base.m2", + }, + { + fileId = "165819", + text = "consume_magic_impact.m2", + value = "consume_magic_impact.m2", + }, + { + fileId = "165820", + text = "corrosivesandbreath.m2", + value = "corrosivesandbreath.m2", + }, + { + fileId = "165821", + text = "corruption_impactdot_med_base.m2", + value = "corruption_impactdot_med_base.m2", + }, + { + fileId = "165822", + text = "counterspell_impact_chest.m2", + value = "counterspell_impact_chest.m2", + }, + { + fileId = "165824", + text = "createsoulstone_cast.m2", + value = "createsoulstone_cast.m2", + }, + { + fileId = "165825", + text = "creature_scourgerunecirclecrystal.m2", + value = "creature_scourgerunecirclecrystal.m2", + }, + { + fileId = "240810", + text = "creature_scourgerunecirclecrystal_no_coll.m2", + value = "creature_scourgerunecirclecrystal_no_coll.m2", + }, + { + fileId = "165826", + text = "creature_spellportal_blue.m2", + value = "creature_spellportal_blue.m2", + }, + { + fileId = "351493", + text = "creature_spellportal_clickable.m2", + value = "creature_spellportal_clickable.m2", + }, + { + fileId = "165827", + text = "creature_spellportal_green.m2", + value = "creature_spellportal_green.m2", + }, + { + fileId = "165828", + text = "creature_spellportal_largeshadow.m2", + value = "creature_spellportal_largeshadow.m2", + }, + { + fileId = "165829", + text = "creature_spellportal_purple.m2", + value = "creature_spellportal_purple.m2", + }, + { + fileId = "165830", + text = "creature_spellportal_white.m2", + value = "creature_spellportal_white.m2", + }, + { + fileId = "165831", + text = "creature_spellportal_yellow.m2", + value = "creature_spellportal_yellow.m2", + }, + { + fileId = "165832", + text = "creature_spellportallarge_blue.m2", + value = "creature_spellportallarge_blue.m2", + }, + { + fileId = "165833", + text = "creature_spellportallarge_green.m2", + value = "creature_spellportallarge_green.m2", + }, + { + fileId = "240811", + text = "creature_spellportallarge_lightred.m2", + value = "creature_spellportallarge_lightred.m2", + }, + { + fileId = "165834", + text = "creature_spellportallarge_purple.m2", + value = "creature_spellportallarge_purple.m2", + }, + { + fileId = "165835", + text = "creature_spellportallarge_red.m2", + value = "creature_spellportallarge_red.m2", + }, + { + fileId = "165836", + text = "creature_spellportallarge_yellow.m2", + value = "creature_spellportallarge_yellow.m2", + }, + { + fileId = "165837", + text = "cripple_impact_base.m2", + value = "cripple_impact_base.m2", + }, + { + fileId = "165838", + text = "cripple_state_base.m2", + value = "cripple_state_base.m2", + }, + { + fileId = "165839", + text = "cripple_state_chest.m2", + value = "cripple_state_chest.m2", + }, + { + fileId = "165840", + text = "crow_baked.m2", + value = "crow_baked.m2", + }, + { + fileId = "165850", + text = "cthuneeyeattack.m2", + value = "cthuneeyeattack.m2", + }, + { + fileId = "165851", + text = "curseelements_impact_head.m2", + value = "curseelements_impact_head.m2", + }, + { + fileId = "165852", + text = "curseofagony_head.m2", + value = "curseofagony_head.m2", + }, + { + fileId = "165853", + text = "curseoffrailty_head.m2", + value = "curseoffrailty_head.m2", + }, + { + fileId = "165854", + text = "curseofmannoroth_head.m2", + value = "curseofmannoroth_head.m2", + }, + { + fileId = "165855", + text = "curseofrecklessness_impact_chest.m2", + value = "curseofrecklessness_impact_chest.m2", + }, + { + fileId = "165856", + text = "curseoftongues_impact.m2", + value = "curseoftongues_impact.m2", + }, + { + fileId = "165857", + text = "curseoftongues_state_chest.m2", + value = "curseoftongues_state_chest.m2", + }, + { + fileId = "165858", + text = "curseofweakness_head.m2", + value = "curseofweakness_head.m2", + }, + { + fileId = "240813", + text = "cuttothechase_impact.m2", + value = "cuttothechase_impact.m2", + }, + { + fileId = "165861", + text = "cyclone_caster_state.m2", + value = "cyclone_caster_state.m2", + }, + { + fileId = "240814", + text = "cyclone_caster_state_scaled.m2", + value = "cyclone_caster_state_scaled.m2", + }, + { + fileId = "165862", + text = "cyclone_state.m2", + value = "cyclone_state.m2", + }, + { + fileId = "165863", + text = "cycloneearth_state.m2", + value = "cycloneearth_state.m2", + }, + { + fileId = "165864", + text = "cyclonefire_state.m2", + value = "cyclonefire_state.m2", + }, + { + fileId = "165865", + text = "cyclonegeo.m2", + value = "cyclonegeo.m2", + }, + { + fileId = "165866", + text = "cyclonegeo2.m2", + value = "cyclonegeo2.m2", + }, + { + fileId = "165867", + text = "cyclonegeo2_additive.m2", + value = "cyclonegeo2_additive.m2", + }, + { + fileId = "165868", + text = "cyclonegeo3.m2", + value = "cyclonegeo3.m2", + }, + { + fileId = "165869", + text = "cyclonegeo3_additive.m2", + value = "cyclonegeo3_additive.m2", + }, + { + fileId = "165870", + text = "cyclonegeo_additive.m2", + value = "cyclonegeo_additive.m2", + }, + { + fileId = "165871", + text = "cyclonerock1.m2", + value = "cyclonerock1.m2", + }, + { + fileId = "165872", + text = "cyclonerock2.m2", + value = "cyclonerock2.m2", + }, + { + fileId = "165873", + text = "cyclonewater_state.m2", + value = "cyclonewater_state.m2", + }, + { + fileId = "240815", + text = "dalaran_forgearms_smokefx.m2", + value = "dalaran_forgearms_smokefx.m2", + }, + { + fileId = "165874", + text = "dampenmagic_impact_base.m2", + value = "dampenmagic_impact_base.m2", + }, + { + fileId = "165877", + text = "darkmoonvengeance_impact_chest.m2", + value = "darkmoonvengeance_impact_chest.m2", + }, + { + fileId = "165878", + text = "darkmoonvengeance_impact_head.m2", + value = "darkmoonvengeance_impact_head.m2", + }, + { + fileId = "165879", + text = "darkritual_precast_base.m2", + value = "darkritual_precast_base.m2", + }, + { + fileId = "252133", + text = "darkritual_precast_baseblue.m2", + value = "darkritual_precast_baseblue.m2", + }, + { + fileId = "165880", + text = "darkshade.m2", + value = "darkshade.m2", + }, + { + fileId = "165883", + text = "deadly_throw_impact_chest.m2", + value = "deadly_throw_impact_chest.m2", + }, + { + fileId = "165886", + text = "deathanddecay.m2", + value = "deathanddecay.m2", + }, + { + fileId = "165887", + text = "deathanddecay_area_base.m2", + value = "deathanddecay_area_base.m2", + }, + { + fileId = "165888", + text = "deathanddecay_area_runes.m2", + value = "deathanddecay_area_runes.m2", + }, + { + fileId = "341896", + text = "deathanddecay_area_runesgreen.m2", + value = "deathanddecay_area_runesgreen.m2", + }, + { + fileId = "341895", + text = "deathanddecaygreen.m2", + value = "deathanddecaygreen.m2", + }, + { + fileId = "165889", + text = "deathbolt_missile_low.m2", + value = "deathbolt_missile_low.m2", + }, + { + fileId = "165890", + text = "deathcoil_impact_chest.m2", + value = "deathcoil_impact_chest.m2", + }, + { + fileId = "165891", + text = "deathcoil_missile.m2", + value = "deathcoil_missile.m2", + }, + { + fileId = "240816", + text = "deathknight_antimagiczone.m2", + value = "deathknight_antimagiczone.m2", + }, + { + fileId = "304282", + text = "deathknight_antimagiczone_green.m2", + value = "deathknight_antimagiczone_green.m2", + }, + { + fileId = "240817", + text = "deathknight_bladebarrier.m2", + value = "deathknight_bladebarrier.m2", + }, + { + fileId = "165893", + text = "deathknight_bloodboil.m2", + value = "deathknight_bloodboil.m2", + }, + { + fileId = "165894", + text = "deathknight_bloodpresence.m2", + value = "deathknight_bloodpresence.m2", + }, + { + fileId = "165895", + text = "deathknight_bloodstrike.m2", + value = "deathknight_bloodstrike.m2", + }, + { + fileId = "240818", + text = "deathknight_bloodstrike_impact.m2", + value = "deathknight_bloodstrike_impact.m2", + }, + { + fileId = "165896", + text = "deathknight_bloodtap.m2", + value = "deathknight_bloodtap.m2", + }, + { + fileId = "240819", + text = "deathknight_bonearmor.m2", + value = "deathknight_bonearmor.m2", + }, + { + fileId = "303643", + text = "deathknight_chains_of_ice.m2", + value = "deathknight_chains_of_ice.m2", + }, + { + fileId = "240820", + text = "deathknight_corpseexplosion.m2", + value = "deathknight_corpseexplosion.m2", + }, + { + fileId = "240821", + text = "deathknight_dancingruneblade_despawn.m2", + value = "deathknight_dancingruneblade_despawn.m2", + }, + { + fileId = "240822", + text = "deathknight_dancingruneblade_spawn.m2", + value = "deathknight_dancingruneblade_spawn.m2", + }, + { + fileId = "240823", + text = "deathknight_dancingruneblade_state.m2", + value = "deathknight_dancingruneblade_state.m2", + }, + { + fileId = "240824", + text = "deathknight_deathchill.m2", + value = "deathknight_deathchill.m2", + }, + { + fileId = "165897", + text = "deathknight_deathcoil_missile.m2", + value = "deathknight_deathcoil_missile.m2", + }, + { + fileId = "240825", + text = "deathknight_deathgate_q.m2", + value = "deathknight_deathgate_q.m2", + }, + { + fileId = "165898", + text = "deathknight_deathpactcaster.m2", + value = "deathknight_deathpactcaster.m2", + }, + { + fileId = "165899", + text = "deathknight_deathpacttarget.m2", + value = "deathknight_deathpacttarget.m2", + }, + { + fileId = "240826", + text = "deathknight_desecration.m2", + value = "deathknight_desecration.m2", + }, + { + fileId = "240827", + text = "deathknight_desecration_spawn.m2", + value = "deathknight_desecration_spawn.m2", + }, + { + fileId = "240828", + text = "deathknight_destroycorpse_02.m2", + value = "deathknight_destroycorpse_02.m2", + }, + { + fileId = "240829", + text = "deathknight_destroycorpse_03.m2", + value = "deathknight_destroycorpse_03.m2", + }, + { + fileId = "240830", + text = "deathknight_destroycorpse_bones_01.m2", + value = "deathknight_destroycorpse_bones_01.m2", + }, + { + fileId = "240831", + text = "deathknight_empowerruneblade.m2", + value = "deathknight_empowerruneblade.m2", + }, + { + fileId = "165900", + text = "deathknight_frostpresence.m2", + value = "deathknight_frostpresence.m2", + }, + { + fileId = "240832", + text = "deathknight_froststrike.m2", + value = "deathknight_froststrike.m2", + }, + { + fileId = "240833", + text = "deathknight_froststrike_impact.m2", + value = "deathknight_froststrike_impact.m2", + }, + { + fileId = "240834", + text = "deathknight_frozenruneweapon_impact.m2", + value = "deathknight_frozenruneweapon_impact.m2", + }, + { + fileId = "240835", + text = "deathknight_frozenruneweapon_state.m2", + value = "deathknight_frozenruneweapon_state.m2", + }, + { + fileId = "165901", + text = "deathknight_ghoul_explode.m2", + value = "deathknight_ghoul_explode.m2", + }, + { + fileId = "240836", + text = "deathknight_ghoul_explode_simple.m2", + value = "deathknight_ghoul_explode_simple.m2", + }, + { + fileId = "240837", + text = "deathknight_howlingblastprimary.m2", + value = "deathknight_howlingblastprimary.m2", + }, + { + fileId = "240838", + text = "deathknight_howlingblastsecondary.m2", + value = "deathknight_howlingblastsecondary.m2", + }, + { + fileId = "240839", + text = "deathknight_hungeringcold.m2", + value = "deathknight_hungeringcold.m2", + }, + { + fileId = "240840", + text = "deathknight_hysteria.m2", + value = "deathknight_hysteria.m2", + }, + { + fileId = "165902", + text = "deathknight_iceboundfortitude.m2", + value = "deathknight_iceboundfortitude.m2", + }, + { + fileId = "165903", + text = "deathknight_icytouch.m2", + value = "deathknight_icytouch.m2", + }, + { + fileId = "240841", + text = "deathknight_lichborne_state.m2", + value = "deathknight_lichborne_state.m2", + }, + { + fileId = "240842", + text = "deathknight_markofblood.m2", + value = "deathknight_markofblood.m2", + }, + { + fileId = "165904", + text = "deathknight_mindfreeze.m2", + value = "deathknight_mindfreeze.m2", + }, + { + fileId = "240843", + text = "deathknight_obliterate.m2", + value = "deathknight_obliterate.m2", + }, + { + fileId = "240844", + text = "deathknight_obliterate_impact.m2", + value = "deathknight_obliterate_impact.m2", + }, + { + fileId = "240845", + text = "deathknight_pathoffrost.m2", + value = "deathknight_pathoffrost.m2", + }, + { + fileId = "240846", + text = "deathknight_plaguestrikecaster.m2", + value = "deathknight_plaguestrikecaster.m2", + }, + { + fileId = "240847", + text = "deathknight_plaguestrikecaster_impact.m2", + value = "deathknight_plaguestrikecaster_impact.m2", + }, + { + fileId = "341898", + text = "deathknight_plaguestrikecaster_impactred.m2", + value = "deathknight_plaguestrikecaster_impactred.m2", + }, + { + fileId = "240848", + text = "deathknight_plaguestrikestate.m2", + value = "deathknight_plaguestrikestate.m2", + }, + { + fileId = "341899", + text = "deathknight_plaguestrikestatered.m2", + value = "deathknight_plaguestrikestatered.m2", + }, + { + fileId = "240849", + text = "deathknight_runetap.m2", + value = "deathknight_runetap.m2", + }, + { + fileId = "165905", + text = "deathknight_strangulate.m2", + value = "deathknight_strangulate.m2", + }, + { + fileId = "240850", + text = "deathknight_strangulate_chain.m2", + value = "deathknight_strangulate_chain.m2", + }, + { + fileId = "165906", + text = "deathknight_summonwarhorse_impact_base.m2", + value = "deathknight_summonwarhorse_impact_base.m2", + }, + { + fileId = "240851", + text = "deathknight_unholyblight.m2", + value = "deathknight_unholyblight.m2", + }, + { + fileId = "240852", + text = "deathknight_unholyblight_state.m2", + value = "deathknight_unholyblight_state.m2", + }, + { + fileId = "165907", + text = "deathknight_unholypresence.m2", + value = "deathknight_unholypresence.m2", + }, + { + fileId = "240853", + text = "deathknight_wanderingplague.m2", + value = "deathknight_wanderingplague.m2", + }, + { + fileId = "165908", + text = "deathwish_state_hand.m2", + value = "deathwish_state_hand.m2", + }, + { + fileId = "165909", + text = "decimate_impact_chest.m2", + value = "decimate_impact_chest.m2", + }, + { + fileId = "165910", + text = "decimate_missile.m2", + value = "decimate_missile.m2", + }, + { + fileId = "165911", + text = "decimate_state.m2", + value = "decimate_state.m2", + }, + { + fileId = "165913", + text = "decisivestrike_impact_chest.m2", + value = "decisivestrike_impact_chest.m2", + }, + { + fileId = "165914", + text = "defensivestance_impact_chest.m2", + value = "defensivestance_impact_chest.m2", + }, + { + fileId = "165915", + text = "defensivestance_impact_head.m2", + value = "defensivestance_impact_head.m2", + }, + { + fileId = "240855", + text = "demolisher_missile.m2", + value = "demolisher_missile.m2", + }, + { + fileId = "253465", + text = "demolisher_missile_blue.m2", + value = "demolisher_missile_blue.m2", + }, + { + fileId = "165918", + text = "demonarmor_impact_head.m2", + value = "demonarmor_impact_head.m2", + }, + { + fileId = "165919", + text = "demonbreath_impact_head.m2", + value = "demonbreath_impact_head.m2", + }, + { + fileId = "165920", + text = "demoniccirclesummon_base.m2", + value = "demoniccirclesummon_base.m2", + }, + { + fileId = "165921", + text = "demoniccirclesummon_teleport.m2", + value = "demoniccirclesummon_teleport.m2", + }, + { + fileId = "165923", + text = "demonicsacrifice_felhunter_chest.m2", + value = "demonicsacrifice_felhunter_chest.m2", + }, + { + fileId = "165924", + text = "demonicsacrifice_imp_chest.m2", + value = "demonicsacrifice_imp_chest.m2", + }, + { + fileId = "165925", + text = "demonicsacrifice_succubus_chest.m2", + value = "demonicsacrifice_succubus_chest.m2", + }, + { + fileId = "165926", + text = "demonicsacrifice_voidwalker_chest.m2", + value = "demonicsacrifice_voidwalker_chest.m2", + }, + { + fileId = "165930", + text = "demoralizingshout_cast_base.m2", + value = "demoralizingshout_cast_base.m2", + }, + { + fileId = "165931", + text = "demoralizingshout_impact_head.m2", + value = "demoralizingshout_impact_head.m2", + }, + { + fileId = "165932", + text = "dest_tower_damaged_on_hit_smoke_fx.m2", + value = "dest_tower_damaged_on_hit_smoke_fx.m2", + }, + { + fileId = "165933", + text = "dest_tower_damaged_smoke_fx.m2", + value = "dest_tower_damaged_smoke_fx.m2", + }, + { + fileId = "165934", + text = "dest_tower_impact_fx.m2", + value = "dest_tower_impact_fx.m2", + }, + { + fileId = "165935", + text = "dest_tower_impact_smoke_fx.m2", + value = "dest_tower_impact_smoke_fx.m2", + }, + { + fileId = "165936", + text = "destructible_ambient_fx01.m2", + value = "destructible_ambient_fx01.m2", + }, + { + fileId = "165937", + text = "destructible_dustfall_fx01.m2", + value = "destructible_dustfall_fx01.m2", + }, + { + fileId = "165938", + text = "destructible_dustfall_fx02.m2", + value = "destructible_dustfall_fx02.m2", + }, + { + fileId = "165939", + text = "destructible_on_hit_fx01.m2", + value = "destructible_on_hit_fx01.m2", + }, + { + fileId = "240856", + text = "destructible_shake_fx01.m2", + value = "destructible_shake_fx01.m2", + }, + { + fileId = "165940", + text = "detectinvis_impact_base.m2", + value = "detectinvis_impact_base.m2", + }, + { + fileId = "165941", + text = "detectinvis_impact_head.m2", + value = "detectinvis_impact_head.m2", + }, + { + fileId = "165942", + text = "detectmagic_base.m2", + value = "detectmagic_base.m2", + }, + { + fileId = "165943", + text = "detectmagic_recursive.m2", + value = "detectmagic_recursive.m2", + }, + { + fileId = "165944", + text = "detectsealth_state_base.m2", + value = "detectsealth_state_base.m2", + }, + { + fileId = "165945", + text = "detectstealth_state_head.m2", + value = "detectstealth_state_head.m2", + }, + { + fileId = "165946", + text = "deterrence_impact.m2", + value = "deterrence_impact.m2", + }, + { + fileId = "165947", + text = "deterrence_state_base.m2", + value = "deterrence_state_base.m2", + }, + { + fileId = "255366", + text = "deterrence_state_chest.m2", + value = "deterrence_state_chest.m2", + }, + { + fileId = "240857", + text = "devious_impact.m2", + value = "devious_impact.m2", + }, + { + fileId = "165948", + text = "devotionaura_base.m2", + value = "devotionaura_base.m2", + }, + { + fileId = "165949", + text = "disarm_impact_chest.m2", + value = "disarm_impact_chest.m2", + }, + { + fileId = "240858", + text = "diseasecloud.m2", + value = "diseasecloud.m2", + }, + { + fileId = "165952", + text = "disembowel_impact.m2", + value = "disembowel_impact.m2", + }, + { + fileId = "165953", + text = "disenchant_cast_hand.m2", + value = "disenchant_cast_hand.m2", + }, + { + fileId = "165954", + text = "disenchant_precast_hand.m2", + value = "disenchant_precast_hand.m2", + }, + { + fileId = "240859", + text = "dismantle_state.m2", + value = "dismantle_state.m2", + }, + { + fileId = "165955", + text = "dispel_low_base.m2", + value = "dispel_low_base.m2", + }, + { + fileId = "165956", + text = "dispel_low_recursive.m2", + value = "dispel_low_recursive.m2", + }, + { + fileId = "165957", + text = "distract_impact_base.m2", + value = "distract_impact_base.m2", + }, + { + fileId = "165958", + text = "distract_impact_chest.m2", + value = "distract_impact_chest.m2", + }, + { + fileId = "240860", + text = "divine_protector_state.m2", + value = "divine_protector_state.m2", + }, + { + fileId = "240861", + text = "divine_storm_impact_damage.m2", + value = "divine_storm_impact_damage.m2", + }, + { + fileId = "240862", + text = "divine_storm_impact_heal.m2", + value = "divine_storm_impact_heal.m2", + }, + { + fileId = "240863", + text = "divine_storm_state.m2", + value = "divine_storm_state.m2", + }, + { + fileId = "165959", + text = "divinebubble_low_base.m2", + value = "divinebubble_low_base.m2", + }, + { + fileId = "165960", + text = "divineillumination_base.m2", + value = "divineillumination_base.m2", + }, + { + fileId = "165961", + text = "divineshield_low_base.m2", + value = "divineshield_low_base.m2", + }, + { + fileId = "165962", + text = "divineshield_low_chest.m2", + value = "divineshield_low_chest.m2", + }, + { + fileId = "240865", + text = "dragonbreath_arcane.m2", + value = "dragonbreath_arcane.m2", + }, + { + fileId = "240866", + text = "dragonbreath_fire.m2", + value = "dragonbreath_fire.m2", + }, + { + fileId = "306871", + text = "dragonbreath_fire_offset.m2", + value = "dragonbreath_fire_offset.m2", + }, + { + fileId = "240867", + text = "dragonbreath_frost.m2", + value = "dragonbreath_frost.m2", + }, + { + fileId = "240868", + text = "dragonbreath_shadow.m2", + value = "dragonbreath_shadow.m2", + }, + { + fileId = "165964", + text = "dragonflamebreath.m2", + value = "dragonflamebreath.m2", + }, + { + fileId = "165965", + text = "dragonflamebreath180.m2", + value = "dragonflamebreath180.m2", + }, + { + fileId = "165967", + text = "dreadlord_carrion_impact.m2", + value = "dreadlord_carrion_impact.m2", + }, + { + fileId = "165968", + text = "dreadlord_carrion_swarm_cast.m2", + value = "dreadlord_carrion_swarm_cast.m2", + }, + { + fileId = "240869", + text = "druid_berserk.m2", + value = "druid_berserk.m2", + }, + { + fileId = "240870", + text = "druid_eclipse.m2", + value = "druid_eclipse.m2", + }, + { + fileId = "240871", + text = "druid_eclipse_orange.m2", + value = "druid_eclipse_orange.m2", + }, + { + fileId = "240872", + text = "druid_flourish.m2", + value = "druid_flourish.m2", + }, + { + fileId = "240873", + text = "druid_infectedwounds.m2", + value = "druid_infectedwounds.m2", + }, + { + fileId = "240874", + text = "druid_living_seed.m2", + value = "druid_living_seed.m2", + }, + { + fileId = "240875", + text = "druid_nourish.m2", + value = "druid_nourish.m2", + }, + { + fileId = "240876", + text = "druid_owlkin_frenzy.m2", + value = "druid_owlkin_frenzy.m2", + }, + { + fileId = "240877", + text = "druid_starfallmissile.m2", + value = "druid_starfallmissile.m2", + }, + { + fileId = "240878", + text = "druid_starfallstate.m2", + value = "druid_starfallstate.m2", + }, + { + fileId = "240879", + text = "druid_survival_instincts.m2", + value = "druid_survival_instincts.m2", + }, + { + fileId = "165969", + text = "druidmorph_aqua_impact_base.m2", + value = "druidmorph_aqua_impact_base.m2", + }, + { + fileId = "165970", + text = "druidmorph_impact_base.m2", + value = "druidmorph_impact_base.m2", + }, + { + fileId = "165976", + text = "dustcloud_land.m2", + value = "dustcloud_land.m2", + }, + { + fileId = "326016", + text = "dustfall_fx.m2", + value = "dustfall_fx.m2", + }, + { + fileId = "165977", + text = "dustnova_cast_base.m2", + value = "dustnova_cast_base.m2", + }, + { + fileId = "165980", + text = "dynamitea_missile.m2", + value = "dynamitea_missile.m2", + }, + { + fileId = "165981", + text = "dynamitea_spellobject.m2", + value = "dynamitea_spellobject.m2", + }, + { + fileId = "165983", + text = "eagleeye_impact_head.m2", + value = "eagleeye_impact_head.m2", + }, + { + fileId = "165984", + text = "earthshield_impact_base.m2", + value = "earthshield_impact_base.m2", + }, + { + fileId = "165986", + text = "earthshield_state_base.m2", + value = "earthshield_state_base.m2", + }, + { + fileId = "165987", + text = "earthshock_impact_chest.m2", + value = "earthshock_impact_chest.m2", + }, + { + fileId = "165988", + text = "enchant_cast_hand.m2", + value = "enchant_cast_hand.m2", + }, + { + fileId = "165989", + text = "enchant_precast_hand.m2", + value = "enchant_precast_hand.m2", + }, + { + children = { + { + fileId = "165990", + text = "battlemasterglow_high.m2", + value = "battlemasterglow_high.m2", + }, + { + fileId = "165991", + text = "blackflame_low.m2", + value = "blackflame_low.m2", + }, + { + fileId = "165992", + text = "blackglow_high.m2", + value = "blackglow_high.m2", + }, + { + fileId = "165993", + text = "blackglow_low.m2", + value = "blackglow_low.m2", + }, + { + fileId = "165994", + text = "blueflame_high.m2", + value = "blueflame_high.m2", + }, + { + fileId = "165995", + text = "blueflame_low.m2", + value = "blueflame_low.m2", + }, + { + fileId = "165996", + text = "blueglow_high.m2", + value = "blueglow_high.m2", + }, + { + fileId = "165997", + text = "blueglow_low.m2", + value = "blueglow_low.m2", + }, + { + fileId = "165998", + text = "blueglow_med.m2", + value = "blueglow_med.m2", + }, + { + fileId = "166000", + text = "disintigrateglow_high.m2", + value = "disintigrateglow_high.m2", + }, + { + fileId = "166001", + text = "executionerglow_high.m2", + value = "executionerglow_high.m2", + }, + { + fileId = "166003", + text = "greenflame_low.m2", + value = "greenflame_low.m2", + }, + { + fileId = "166004", + text = "greenglow_high.m2", + value = "greenglow_high.m2", + }, + { + fileId = "166005", + text = "greenglow_low.m2", + value = "greenglow_low.m2", + }, + { + fileId = "166006", + text = "mongooseglow_high.m2", + value = "mongooseglow_high.m2", + }, + { + fileId = "166007", + text = "poisondrip.m2", + value = "poisondrip.m2", + }, + { + fileId = "166008", + text = "purpleflame_low.m2", + value = "purpleflame_low.m2", + }, + { + fileId = "166009", + text = "purpleglow_high.m2", + value = "purpleglow_high.m2", + }, + { + fileId = "166010", + text = "purpleglow_low.m2", + value = "purpleglow_low.m2", + }, + { + fileId = "166011", + text = "redflame_low.m2", + value = "redflame_low.m2", + }, + { + fileId = "166012", + text = "redglow_high.m2", + value = "redglow_high.m2", + }, + { + fileId = "166013", + text = "redglow_low.m2", + value = "redglow_low.m2", + }, + { + fileId = "166014", + text = "rune_intellect.m2", + value = "rune_intellect.m2", + }, + { + fileId = "166015", + text = "savageryglow_high.m2", + value = "savageryglow_high.m2", + }, + { + fileId = "166016", + text = "shaman_fire.m2", + value = "shaman_fire.m2", + }, + { + fileId = "166017", + text = "shaman_frost.m2", + value = "shaman_frost.m2", + }, + { + fileId = "166018", + text = "shaman_green.m2", + value = "shaman_green.m2", + }, + { + fileId = "166019", + text = "shaman_purple.m2", + value = "shaman_purple.m2", + }, + { + fileId = "166020", + text = "shaman_red.m2", + value = "shaman_red.m2", + }, + { + fileId = "166021", + text = "shaman_rock.m2", + value = "shaman_rock.m2", + }, + { + fileId = "166022", + text = "shaman_wind.m2", + value = "shaman_wind.m2", + }, + { + fileId = "166023", + text = "shaman_yellow.m2", + value = "shaman_yellow.m2", + }, + { + fileId = "166024", + text = "skullballs.m2", + value = "skullballs.m2", + }, + { + fileId = "166026", + text = "soulfrostglow_high.m2", + value = "soulfrostglow_high.m2", + }, + { + fileId = "166027", + text = "sparkle_a.m2", + value = "sparkle_a.m2", + }, + { + fileId = "166028", + text = "spellsurgeglow_high.m2", + value = "spellsurgeglow_high.m2", + }, + { + fileId = "166029", + text = "sunfireglow_high.m2", + value = "sunfireglow_high.m2", + }, + { + fileId = "166030", + text = "whiteflame_low.m2", + value = "whiteflame_low.m2", + }, + { + fileId = "166031", + text = "whiteglow_high.m2", + value = "whiteglow_high.m2", + }, + { + fileId = "166032", + text = "whiteglow_low.m2", + value = "whiteglow_low.m2", + }, + { + fileId = "166033", + text = "yellowflame_low.m2", + value = "yellowflame_low.m2", + }, + { + fileId = "166034", + text = "yellowglow_high.m2", + value = "yellowglow_high.m2", + }, + { + fileId = "166035", + text = "yellowglow_low.m2", + value = "yellowglow_low.m2", + }, + }, + text = "enchantments", + value = "enchantments", + }, + { + fileId = "166037", + text = "endlessrage_impact_head.m2", + value = "endlessrage_impact_head.m2", + }, + { + fileId = "166038", + text = "endlessrage_state_head.m2", + value = "endlessrage_state_head.m2", + }, + { + fileId = "240882", + text = "energizegain_energy.m2", + value = "energizegain_energy.m2", + }, + { + fileId = "240883", + text = "energizegain_mana.m2", + value = "energizegain_mana.m2", + }, + { + fileId = "240884", + text = "energizegain_rage.m2", + value = "energizegain_rage.m2", + }, + { + fileId = "240885", + text = "energizelost_energy.m2", + value = "energizelost_energy.m2", + }, + { + fileId = "240886", + text = "energizelost_mana.m2", + value = "energizelost_mana.m2", + }, + { + fileId = "240887", + text = "energizelost_rage.m2", + value = "energizelost_rage.m2", + }, + { + fileId = "166039", + text = "enslavedemon_impact_base.m2", + value = "enslavedemon_impact_base.m2", + }, + { + fileId = "166040", + text = "enslavedemon_impact_chest.m2", + value = "enslavedemon_impact_chest.m2", + }, + { + fileId = "166041", + text = "enslavedemon_impact_head.m2", + value = "enslavedemon_impact_head.m2", + }, + { + fileId = "166042", + text = "entanglingroots_state.m2", + value = "entanglingroots_state.m2", + }, + { + fileId = "250763", + text = "entanglingrootsbrown_state.m2", + value = "entanglingrootsbrown_state.m2", + }, + { + fileId = "166043", + text = "envenom_cast.m2", + value = "envenom_cast.m2", + }, + { + fileId = "166044", + text = "envenom_impact_chest.m2", + value = "envenom_impact_chest.m2", + }, + { + fileId = "166045", + text = "eradication_hand.m2", + value = "eradication_hand.m2", + }, + { + fileId = "166046", + text = "errorcube.m2", + value = "errorcube.m2", + }, + { + fileId = "166047", + text = "eviscerate_cast_hands.m2", + value = "eviscerate_cast_hands.m2", + }, + { + fileId = "166048", + text = "eviscerate_impact_chest.m2", + value = "eviscerate_impact_chest.m2", + }, + { + fileId = "166049", + text = "exorcism_impact_chest.m2", + value = "exorcism_impact_chest.m2", + }, + { + fileId = "166050", + text = "expanding_force_bubble.m2", + value = "expanding_force_bubble.m2", + }, + { + fileId = "166051", + text = "explodertrail.m2", + value = "explodertrail.m2", + }, + { + fileId = "166052", + text = "exploding_stone_impact.m2", + value = "exploding_stone_impact.m2", + }, + { + fileId = "240889", + text = "explosive_shot_impact.m2", + value = "explosive_shot_impact.m2", + }, + { + fileId = "240890", + text = "explosive_shot_missile.m2", + value = "explosive_shot_missile.m2", + }, + { + fileId = "166053", + text = "explosivegaseous_nova.m2", + value = "explosivegaseous_nova.m2", + }, + { + fileId = "166054", + text = "explosivetrap_recursive.m2", + value = "explosivetrap_recursive.m2", + }, + { + fileId = "166055", + text = "exposearmor_head.m2", + value = "exposearmor_head.m2", + }, + { + fileId = "343322", + text = "external_barrier_fx.m2", + value = "external_barrier_fx.m2", + }, + { + fileId = "166059", + text = "eyesofbeast_impact_head.m2", + value = "eyesofbeast_impact_head.m2", + }, + { + fileId = "166060", + text = "faeriefire.m2", + value = "faeriefire.m2", + }, + { + fileId = "166061", + text = "faeriefire_impact.m2", + value = "faeriefire_impact.m2", + }, + { + fileId = "166062", + text = "faeriefire_noglow.m2", + value = "faeriefire_noglow.m2", + }, + { + fileId = "166063", + text = "faeriefire_noglow_impact.m2", + value = "faeriefire_noglow_impact.m2", + }, + { + fileId = "249502", + text = "fanofknives.m2", + value = "fanofknives.m2", + }, + { + fileId = "240892", + text = "fanofknives_impact.m2", + value = "fanofknives_impact.m2", + }, + { + fileId = "240893", + text = "fanofknives_missile.m2", + value = "fanofknives_missile.m2", + }, + { + fileId = "240894", + text = "fanofknives_precast.m2", + value = "fanofknives_precast.m2", + }, + { + fileId = "166064", + text = "farsight_impact_base.m2", + value = "farsight_impact_base.m2", + }, + { + fileId = "166065", + text = "fear_impact_chest.m2", + value = "fear_impact_chest.m2", + }, + { + fileId = "166066", + text = "fear_state_base.m2", + value = "fear_state_base.m2", + }, + { + fileId = "166067", + text = "fear_state_head.m2", + value = "fear_state_head.m2", + }, + { + fileId = "166068", + text = "feint_impact_chest.m2", + value = "feint_impact_chest.m2", + }, + { + fileId = "166069", + text = "fel_archimonde_fire.m2", + value = "fel_archimonde_fire.m2", + }, + { + fileId = "166070", + text = "fel_fire_impactdd_high_chest.m2", + value = "fel_fire_impactdd_high_chest.m2", + }, + { + fileId = "166071", + text = "fel_fire_precast_hand.m2", + value = "fel_fire_precast_hand.m2", + }, + { + fileId = "166072", + text = "fel_fire_precast_high_hand.m2", + value = "fel_fire_precast_high_hand.m2", + }, + { + fileId = "166073", + text = "fel_fire_precast_uber_hand.m2", + value = "fel_fire_precast_uber_hand.m2", + }, + { + fileId = "166074", + text = "fel_fireball_missile_high.m2", + value = "fel_fireball_missile_high.m2", + }, + { + fileId = "166075", + text = "fel_fireblast_impact_chest.m2", + value = "fel_fireblast_impact_chest.m2", + }, + { + fileId = "166076", + text = "fel_firebolt_missile_low.m2", + value = "fel_firebolt_missile_low.m2", + }, + { + fileId = "166077", + text = "fel_firenova_area.m2", + value = "fel_firenova_area.m2", + }, + { + fileId = "166078", + text = "fel_firenova_state.m2", + value = "fel_firenova_state.m2", + }, + { + fileId = "166079", + text = "fel_fireshieldfinal_impact_head.m2", + value = "fel_fireshieldfinal_impact_head.m2", + }, + { + fileId = "166080", + text = "fel_fireward_impact_chest.m2", + value = "fel_fireward_impact_chest.m2", + }, + { + fileId = "166081", + text = "fel_flamebreath.m2", + value = "fel_flamebreath.m2", + }, + { + fileId = "166082", + text = "fel_flamebreath180.m2", + value = "fel_flamebreath180.m2", + }, + { + fileId = "166083", + text = "fel_flamecircleeffect.m2", + value = "fel_flamecircleeffect.m2", + }, + { + fileId = "166084", + text = "fel_flameshock_impact_chest.m2", + value = "fel_flameshock_impact_chest.m2", + }, + { + fileId = "166085", + text = "fel_flamestrike_impact_base.m2", + value = "fel_flamestrike_impact_base.m2", + }, + { + fileId = "166086", + text = "fel_flamestrikesmall_impact_base.m2", + value = "fel_flamestrikesmall_impact_base.m2", + }, + { + fileId = "166087", + text = "fel_hellfire_area_base.m2", + value = "fel_hellfire_area_base.m2", + }, + { + fileId = "166088", + text = "fel_hellfire_firepuff_caster_base.m2", + value = "fel_hellfire_firepuff_caster_base.m2", + }, + { + fileId = "166089", + text = "fel_hellfire_impact_base.m2", + value = "fel_hellfire_impact_base.m2", + }, + { + fileId = "166090", + text = "fel_hellfire_impact_caster_base.m2", + value = "fel_hellfire_impact_caster_base.m2", + }, + { + fileId = "166091", + text = "fel_immolate_impact_chest.m2", + value = "fel_immolate_impact_chest.m2", + }, + { + fileId = "166092", + text = "fel_immolate_state_base.m2", + value = "fel_immolate_state_base.m2", + }, + { + fileId = "166093", + text = "fel_lowpolyfireanim.m2", + value = "fel_lowpolyfireanim.m2", + }, + { + fileId = "166094", + text = "fel_pyroblast_missile.m2", + value = "fel_pyroblast_missile.m2", + }, + { + fileId = "166095", + text = "fel_rainoffire_impact_base.m2", + value = "fel_rainoffire_impact_base.m2", + }, + { + fileId = "166096", + text = "fel_rainoffire_missile.m2", + value = "fel_rainoffire_missile.m2", + }, + { + fileId = "166098", + text = "felarmor_impact_head.m2", + value = "felarmor_impact_head.m2", + }, + { + fileId = "166106", + text = "fire_blue_impactdd_high_chest.m2", + value = "fire_blue_impactdd_high_chest.m2", + }, + { + fileId = "166107", + text = "fire_blue_precast_hand.m2", + value = "fire_blue_precast_hand.m2", + }, + { + fileId = "166108", + text = "fire_blue_precast_high_hand.m2", + value = "fire_blue_precast_high_hand.m2", + }, + { + fileId = "166109", + text = "fire_blue_precast_uber_hand.m2", + value = "fire_blue_precast_uber_hand.m2", + }, + { + fileId = "166110", + text = "fire_cast_hand.m2", + value = "fire_cast_hand.m2", + }, + { + fileId = "166111", + text = "fire_dot_state_chest.m2", + value = "fire_dot_state_chest.m2", + }, + { + fileId = "166112", + text = "fire_form_precast.m2", + value = "fire_form_precast.m2", + }, + { + fileId = "166113", + text = "fire_impactdd_chest.m2", + value = "fire_impactdd_chest.m2", + }, + { + fileId = "166114", + text = "fire_impactdd_high_base.m2", + value = "fire_impactdd_high_base.m2", + }, + { + fileId = "166115", + text = "fire_impactdd_high_chest.m2", + value = "fire_impactdd_high_chest.m2", + }, + { + fileId = "166116", + text = "fire_impactdd_low_chest.m2", + value = "fire_impactdd_low_chest.m2", + }, + { + fileId = "166117", + text = "fire_impactdd_med_chest.m2", + value = "fire_impactdd_med_chest.m2", + }, + { + fileId = "166118", + text = "fire_impactdd_uber_base.m2", + value = "fire_impactdd_uber_base.m2", + }, + { + fileId = "166119", + text = "fire_impactdd_uber_chest.m2", + value = "fire_impactdd_uber_chest.m2", + }, + { + fileId = "166120", + text = "fire_precast_hand.m2", + value = "fire_precast_hand.m2", + }, + { + fileId = "166121", + text = "fire_precast_high_hand.m2", + value = "fire_precast_high_hand.m2", + }, + { + fileId = "166122", + text = "fire_precast_low_hand.m2", + value = "fire_precast_low_hand.m2", + }, + { + fileId = "166123", + text = "fire_precast_med_hand.m2", + value = "fire_precast_med_hand.m2", + }, + { + fileId = "166124", + text = "fire_precast_uber_hand.m2", + value = "fire_precast_uber_hand.m2", + }, + { + fileId = "304169", + text = "fire_rune_impact_base.m2", + value = "fire_rune_impact_base.m2", + }, + { + fileId = "304317", + text = "fire_rune_shield_impact_base.m2", + value = "fire_rune_shield_impact_base.m2", + }, + { + fileId = "166126", + text = "fire_smoketrail.m2", + value = "fire_smoketrail.m2", + }, + { + fileId = "332856", + text = "firearm_2h_rifle_01_spellobject.m2", + value = "firearm_2h_rifle_01_spellobject.m2", + }, + { + fileId = "332857", + text = "firearm_2h_rifle_02_spellobject.m2", + value = "firearm_2h_rifle_02_spellobject.m2", + }, + { + fileId = "305290", + text = "firearm_2h_rifle_plague_a_01_spell.m2", + value = "firearm_2h_rifle_plague_a_01_spell.m2", + }, + { + fileId = "166127", + text = "fireball_blue_missile_high.m2", + value = "fireball_blue_missile_high.m2", + }, + { + fileId = "166128", + text = "fireball_missile_high.m2", + value = "fireball_missile_high.m2", + }, + { + fileId = "166129", + text = "fireball_missile_low.m2", + value = "fireball_missile_low.m2", + }, + { + fileId = "303842", + text = "firebeam_neutral_state_base.m2", + value = "firebeam_neutral_state_base.m2", + }, + { + fileId = "253567", + text = "firebeam_state_base.m2", + value = "firebeam_state_base.m2", + }, + { + fileId = "166130", + text = "fireblast_blue_impact_chest.m2", + value = "fireblast_blue_impact_chest.m2", + }, + { + fileId = "166131", + text = "fireblast_impact_chest.m2", + value = "fireblast_impact_chest.m2", + }, + { + fileId = "166132", + text = "firebolt_blue_impactdd_med_chest.m2", + value = "firebolt_blue_impactdd_med_chest.m2", + }, + { + fileId = "166133", + text = "firebolt_blue_missile_low.m2", + value = "firebolt_blue_missile_low.m2", + }, + { + fileId = "166134", + text = "firebolt_impactdd_med_chest.m2", + value = "firebolt_impactdd_med_chest.m2", + }, + { + fileId = "166135", + text = "firebolt_missile_low.m2", + value = "firebolt_missile_low.m2", + }, + { + fileId = "240896", + text = "firebomb_missle.m2", + value = "firebomb_missle.m2", + }, + { + fileId = "166137", + text = "firecrackers_thrown.m2", + value = "firecrackers_thrown.m2", + }, + { + fileId = "166138", + text = "fireforceshield_blue.m2", + value = "fireforceshield_blue.m2", + }, + { + fileId = "166139", + text = "fireforceshield_dark.m2", + value = "fireforceshield_dark.m2", + }, + { + fileId = "166140", + text = "fireforceshield_green.m2", + value = "fireforceshield_green.m2", + }, + { + fileId = "166141", + text = "fireforceshield_purple.m2", + value = "fireforceshield_purple.m2", + }, + { + fileId = "166142", + text = "fireforceshield_red.m2", + value = "fireforceshield_red.m2", + }, + { + fileId = "166143", + text = "fireforceshield_yellow.m2", + value = "fireforceshield_yellow.m2", + }, + { + fileId = "166144", + text = "firenova_area.m2", + value = "firenova_area.m2", + }, + { + fileId = "166145", + text = "firenova_blue_area.m2", + value = "firenova_blue_area.m2", + }, + { + fileId = "166146", + text = "firenova_blue_state.m2", + value = "firenova_blue_state.m2", + }, + { + fileId = "166147", + text = "firenova_state.m2", + value = "firenova_state.m2", + }, + { + fileId = "166149", + text = "firereflect_state_chest.m2", + value = "firereflect_state_chest.m2", + }, + { + fileId = "166150", + text = "fireresistance_impact_base.m2", + value = "fireresistance_impact_base.m2", + }, + { + fileId = "166156", + text = "fireshield_impact_head.m2", + value = "fireshield_impact_head.m2", + }, + { + fileId = "166157", + text = "fireshieldfinal_impact_head.m2", + value = "fireshieldfinal_impact_head.m2", + }, + { + fileId = "166158", + text = "fireshot_missile.m2", + value = "fireshot_missile.m2", + }, + { + fileId = "166159", + text = "firestrike_missile_low.m2", + value = "firestrike_missile_low.m2", + }, + { + fileId = "166162", + text = "fireward_impact_chest.m2", + value = "fireward_impact_chest.m2", + }, + { + fileId = "166163", + text = "firework_romancandle_impact_chest_01.m2", + value = "firework_romancandle_impact_chest_01.m2", + }, + { + fileId = "166164", + text = "firework_romancandle_missle_01.m2", + value = "firework_romancandle_missle_01.m2", + }, + { + fileId = "166165", + text = "fireworks_blue_01.m2", + value = "fireworks_blue_01.m2", + }, + { + fileId = "315383", + text = "fireworks_blue_02.m2", + value = "fireworks_blue_02.m2", + }, + { + fileId = "166166", + text = "fireworks_green_01.m2", + value = "fireworks_green_01.m2", + }, + { + fileId = "166167", + text = "fireworks_red_01.m2", + value = "fireworks_red_01.m2", + }, + { + fileId = "166168", + text = "fireworks_redstreaks_01.m2", + value = "fireworks_redstreaks_01.m2", + }, + { + fileId = "315384", + text = "fireworks_redstreaks_02.m2", + value = "fireworks_redstreaks_02.m2", + }, + { + fileId = "166169", + text = "fireworks_rwb_01.m2", + value = "fireworks_rwb_01.m2", + }, + { + fileId = "166170", + text = "fireworks_yellowrose.m2", + value = "fireworks_yellowrose.m2", + }, + { + fileId = "166171", + text = "fireyseductress.m2", + value = "fireyseductress.m2", + }, + { + fileId = "166172", + text = "firstaid__impact_base.m2", + value = "firstaid__impact_base.m2", + }, + { + fileId = "166173", + text = "firstaid_hand.m2", + value = "firstaid_hand.m2", + }, + { + fileId = "166174", + text = "fistofjustice_cast_base.m2", + value = "fistofjustice_cast_base.m2", + }, + { + fileId = "166175", + text = "fistofjustice_impact_chest.m2", + value = "fistofjustice_impact_chest.m2", + }, + { + fileId = "166176", + text = "flamebreath.m2", + value = "flamebreath.m2", + }, + { + fileId = "166177", + text = "flamebreath180.m2", + value = "flamebreath180.m2", + }, + { + fileId = "166178", + text = "flamebreath180_blue.m2", + value = "flamebreath180_blue.m2", + }, + { + fileId = "166179", + text = "flamebreath_blue.m2", + value = "flamebreath_blue.m2", + }, + { + fileId = "166180", + text = "flamebreathmff.m2", + value = "flamebreathmff.m2", + }, + { + fileId = "166181", + text = "flamecircleeffect.m2", + value = "flamecircleeffect.m2", + }, + { + fileId = "166182", + text = "flamecircleeffect_blue.m2", + value = "flamecircleeffect_blue.m2", + }, + { + fileId = "166185", + text = "flameshock_blue_impact_chest.m2", + value = "flameshock_blue_impact_chest.m2", + }, + { + fileId = "166186", + text = "flameshock_impact_chest.m2", + value = "flameshock_impact_chest.m2", + }, + { + fileId = "166187", + text = "flamestrike_area.m2", + value = "flamestrike_area.m2", + }, + { + fileId = "306878", + text = "flamestrike_black_impactdd_med_base.m2", + value = "flamestrike_black_impactdd_med_base.m2", + }, + { + fileId = "166188", + text = "flamestrike_blue_impact_base.m2", + value = "flamestrike_blue_impact_base.m2", + }, + { + fileId = "166189", + text = "flamestrike_impact.m2", + value = "flamestrike_impact.m2", + }, + { + fileId = "166190", + text = "flamestrike_impact_base.m2", + value = "flamestrike_impact_base.m2", + }, + { + fileId = "166191", + text = "flamestrike_impactdd_med_base.m2", + value = "flamestrike_impactdd_med_base.m2", + }, + { + fileId = "166192", + text = "flamestrikesmall_blue_impact_base.m2", + value = "flamestrikesmall_blue_impact_base.m2", + }, + { + fileId = "166193", + text = "flamestrikesmall_impact_base.m2", + value = "flamestrikesmall_impact_base.m2", + }, + { + fileId = "328497", + text = "flamezone.m2", + value = "flamezone.m2", + }, + { + fileId = "166195", + text = "flare_cast_base.m2", + value = "flare_cast_base.m2", + }, + { + fileId = "166196", + text = "flare_state_base.m2", + value = "flare_state_base.m2", + }, + { + fileId = "166197", + text = "flashheal_base.m2", + value = "flashheal_base.m2", + }, + { + fileId = "166199", + text = "floatingmine.m2", + value = "floatingmine.m2", + }, + { + fileId = "240899", + text = "floatingminenexus.m2", + value = "floatingminenexus.m2", + }, + { + fileId = "240900", + text = "floatingminenexuspulse.m2", + value = "floatingminenexuspulse.m2", + }, + { + fileId = "166200", + text = "floatingminepulse.m2", + value = "floatingminepulse.m2", + }, + { + fileId = "240901", + text = "focused_attacks_impact.m2", + value = "focused_attacks_impact.m2", + }, + { + fileId = "166203", + text = "focusedcasting_state_chest.m2", + value = "focusedcasting_state_chest.m2", + }, + { + fileId = "166204", + text = "food_healeffect_base.m2", + value = "food_healeffect_base.m2", + }, + { + fileId = "166205", + text = "forceofnature_impact.m2", + value = "forceofnature_impact.m2", + }, + { + fileId = "166206", + text = "forceshield_andxplosion.m2", + value = "forceshield_andxplosion.m2", + }, + { + fileId = "240902", + text = "forsakencatapult_missile.m2", + value = "forsakencatapult_missile.m2", + }, + { + fileId = "253466", + text = "forsakencatapult_missile_blue.m2", + value = "forsakencatapult_missile_blue.m2", + }, + { + fileId = "166209", + text = "frost_form_precast.m2", + value = "frost_form_precast.m2", + }, + { + fileId = "240906", + text = "frost_ground_trail_highq.m2", + value = "frost_ground_trail_highq.m2", + }, + { + fileId = "166210", + text = "frost_nova_area.m2", + value = "frost_nova_area.m2", + }, + { + fileId = "166211", + text = "frost_nova_state.m2", + value = "frost_nova_state.m2", + }, + { + fileId = "166212", + text = "frostarmor_low_head.m2", + value = "frostarmor_low_head.m2", + }, + { + fileId = "166213", + text = "frostarmoreffect_impact_chest.m2", + value = "frostarmoreffect_impact_chest.m2", + }, + { + fileId = "303843", + text = "frostbeam_neutral_state_base.m2", + value = "frostbeam_neutral_state_base.m2", + }, + { + fileId = "253568", + text = "frostbeam_state_base.m2", + value = "frostbeam_state_base.m2", + }, + { + fileId = "166214", + text = "frostbolt.m2", + value = "frostbolt.m2", + }, + { + fileId = "166215", + text = "frostbreath.m2", + value = "frostbreath.m2", + }, + { + fileId = "352948", + text = "frostmourne_shatters.m2", + value = "frostmourne_shatters.m2", + }, + { + fileId = "166216", + text = "frostreflect_state_chest.m2", + value = "frostreflect_state_chest.m2", + }, + { + fileId = "166217", + text = "frostshot_missile.m2", + value = "frostshot_missile.m2", + }, + { + fileId = "166218", + text = "frostslash_base_cast.m2", + value = "frostslash_base_cast.m2", + }, + { + fileId = "166219", + text = "frosttrap_aura.m2", + value = "frosttrap_aura.m2", + }, + { + fileId = "166220", + text = "frosttrap_aura_nomist.m2", + value = "frosttrap_aura_nomist.m2", + }, + { + fileId = "307487", + text = "frosttrap_aura_nomist_refelctive.m2", + value = "frosttrap_aura_nomist_refelctive.m2", + }, + { + fileId = "166221", + text = "frostward_impact_chest.m2", + value = "frostward_impact_chest.m2", + }, + { + fileId = "337786", + text = "frostycircle.m2", + value = "frostycircle.m2", + }, + { + fileId = "166222", + text = "gaseousform.m2", + value = "gaseousform.m2", + }, + { + fileId = "166237", + text = "ghost_state.m2", + value = "ghost_state.m2", + }, + { + fileId = "166238", + text = "ghost_state2.m2", + value = "ghost_state2.m2", + }, + { + fileId = "166239", + text = "ghostlystrike_impact_chest.m2", + value = "ghostlystrike_impact_chest.m2", + }, + { + fileId = "166240", + text = "giantinsectswarm_state_chest.m2", + value = "giantinsectswarm_state_chest.m2", + }, + { + fileId = "166241", + text = "giantinsectswarm_state_ground.m2", + value = "giantinsectswarm_state_ground.m2", + }, + { + fileId = "166243", + text = "giftofnaaru.m2", + value = "giftofnaaru.m2", + }, + { + fileId = "166244", + text = "giftwaterspirit_impact_base.m2", + value = "giftwaterspirit_impact_base.m2", + }, + { + fileId = "305974", + text = "glaivethrowervehicle_glaive_spell_purple.m2", + value = "glaivethrowervehicle_glaive_spell_purple.m2", + }, + { + fileId = "305979", + text = "glaivethrowervehicle_glaive_spell_red.m2", + value = "glaivethrowervehicle_glaive_spell_red.m2", + }, + { + fileId = "240910", + text = "goblin_cannon_missile.m2", + value = "goblin_cannon_missile.m2", + }, + { + fileId = "166247", + text = "goblin_weather_machine_cloudy.m2", + value = "goblin_weather_machine_cloudy.m2", + }, + { + fileId = "166248", + text = "goblin_weather_machine_lightning.m2", + value = "goblin_weather_machine_lightning.m2", + }, + { + fileId = "166249", + text = "goblin_weather_machine_rain.m2", + value = "goblin_weather_machine_rain.m2", + }, + { + fileId = "166250", + text = "goblin_weather_machine_snow.m2", + value = "goblin_weather_machine_snow.m2", + }, + { + fileId = "166251", + text = "goblin_weather_machine_sunny.m2", + value = "goblin_weather_machine_sunny.m2", + }, + { + fileId = "166252", + text = "goldarenaflag_spell.m2", + value = "goldarenaflag_spell.m2", + }, + { + fileId = "166253", + text = "goldhordeflag_spell.m2", + value = "goldhordeflag_spell.m2", + }, + { + fileId = "331091", + text = "goo_flow_state.m2", + value = "goo_flow_state.m2", + }, + { + fileId = "347879", + text = "goo_flow_stateblack.m2", + value = "goo_flow_stateblack.m2", + }, + { + fileId = "347883", + text = "goo_flow_stateblue.m2", + value = "goo_flow_stateblue.m2", + }, + { + fileId = "347886", + text = "goo_flow_statepurple.m2", + value = "goo_flow_statepurple.m2", + }, + { + fileId = "347889", + text = "goo_flow_statered.m2", + value = "goo_flow_statered.m2", + }, + { + fileId = "347892", + text = "goo_flow_stateyellow.m2", + value = "goo_flow_stateyellow.m2", + }, + { + fileId = "166254", + text = "goobolt_missile_low.m2", + value = "goobolt_missile_low.m2", + }, + { + fileId = "240912", + text = "goobolt_missile_low_purple.m2", + value = "goobolt_missile_low_purple.m2", + }, + { + fileId = "166255", + text = "gouge_precast_state_hand.m2", + value = "gouge_precast_state_hand.m2", + }, + { + fileId = "166273", + text = "greaterheal_low_base.m2", + value = "greaterheal_low_base.m2", + }, + { + fileId = "166277", + text = "greenarenaflag_spell.m2", + value = "greenarenaflag_spell.m2", + }, + { + fileId = "166278", + text = "greenghost_state.m2", + value = "greenghost_state.m2", + }, + { + fileId = "166279", + text = "greenhordeflag_spell.m2", + value = "greenhordeflag_spell.m2", + }, + { + fileId = "166280", + text = "greenradiationfog.m2", + value = "greenradiationfog.m2", + }, + { + fileId = "166284", + text = "ground_rupture.m2", + value = "ground_rupture.m2", + }, + { + fileId = "166285", + text = "grounddust.m2", + value = "grounddust.m2", + }, + { + fileId = "166286", + text = "groundingtotem_impact.m2", + value = "groundingtotem_impact.m2", + }, + { + fileId = "240915", + text = "groundspike_impact.m2", + value = "groundspike_impact.m2", + }, + { + fileId = "240916", + text = "guarded_by_light_impact.m2", + value = "guarded_by_light_impact.m2", + }, + { + fileId = "240917", + text = "hammer_of_the_righteous_cast.m2", + value = "hammer_of_the_righteous_cast.m2", + }, + { + fileId = "240918", + text = "hammer_of_the_righteous_impact.m2", + value = "hammer_of_the_righteous_impact.m2", + }, + { + fileId = "240919", + text = "hammer_of_the_righteous_missile.m2", + value = "hammer_of_the_righteous_missile.m2", + }, + { + fileId = "166288", + text = "harmundeadaura_base.m2", + value = "harmundeadaura_base.m2", + }, + { + fileId = "166289", + text = "harpoon_fire_missile.m2", + value = "harpoon_fire_missile.m2", + }, + { + fileId = "240920", + text = "haunt_heal.m2", + value = "haunt_heal.m2", + }, + { + fileId = "240921", + text = "haunt_impact.m2", + value = "haunt_impact.m2", + }, + { + fileId = "240922", + text = "haunt_missile.m2", + value = "haunt_missile.m2", + }, + { + fileId = "240923", + text = "haunt_missile_soul.m2", + value = "haunt_missile_soul.m2", + }, + { + fileId = "166290", + text = "headlesshorsemanhelmet.m2", + value = "headlesshorsemanhelmet.m2", + }, + { + fileId = "166291", + text = "headsplitter_impact_chest.m2", + value = "headsplitter_impact_chest.m2", + }, + { + fileId = "166292", + text = "heal_low_base.m2", + value = "heal_low_base.m2", + }, + { + fileId = "166293", + text = "healingaura_base.m2", + value = "healingaura_base.m2", + }, + { + fileId = "166294", + text = "healrag_state_chest.m2", + value = "healrag_state_chest.m2", + }, + { + fileId = "166297", + text = "hellfire_area_base.m2", + value = "hellfire_area_base.m2", + }, + { + fileId = "166298", + text = "hellfire_blue_firepuff_caster_base.m2", + value = "hellfire_blue_firepuff_caster_base.m2", + }, + { + fileId = "166299", + text = "hellfire_blue_impact_base.m2", + value = "hellfire_blue_impact_base.m2", + }, + { + fileId = "166300", + text = "hellfire_blue_impact_caster_base.m2", + value = "hellfire_blue_impact_caster_base.m2", + }, + { + fileId = "166301", + text = "hellfire_channel_base.m2", + value = "hellfire_channel_base.m2", + }, + { + fileId = "166302", + text = "hellfire_firepuff_caster_base.m2", + value = "hellfire_firepuff_caster_base.m2", + }, + { + fileId = "166303", + text = "hellfire_impact_base.m2", + value = "hellfire_impact_base.m2", + }, + { + fileId = "166304", + text = "hellfire_impact_caster_base.m2", + value = "hellfire_impact_caster_base.m2", + }, + { + fileId = "166305", + text = "hellfire_impact_head.m2", + value = "hellfire_impact_head.m2", + }, + { + fileId = "166306", + text = "hellfireraid_dust_impact_base.m2", + value = "hellfireraid_dust_impact_base.m2", + }, + { + fileId = "166307", + text = "heroism_cast.m2", + value = "heroism_cast.m2", + }, + { + fileId = "166308", + text = "heroism_state.m2", + value = "heroism_state.m2", + }, + { + fileId = "166309", + text = "hitsplatfire.m2", + value = "hitsplatfire.m2", + }, + { + children = { + { + fileId = "166313", + text = "valentines_brokenheart.m2", + value = "valentines_brokenheart.m2", + }, + { + fileId = "166314", + text = "valentines_cupidsarrow_impact_chest.m2", + value = "valentines_cupidsarrow_impact_chest.m2", + }, + { + fileId = "166315", + text = "valentines_cupidsarrow_missle.m2", + value = "valentines_cupidsarrow_missle.m2", + }, + { + fileId = "166316", + text = "valentines_lookingforloveheart.m2", + value = "valentines_lookingforloveheart.m2", + }, + { + fileId = "166317", + text = "valentines_roseshower_impact_base.m2", + value = "valentines_roseshower_impact_base.m2", + }, + { + fileId = "166318", + text = "valentines_spellobject_cupidsbow.m2", + value = "valentines_spellobject_cupidsbow.m2", + }, + }, + text = "holidays", + value = "holidays", + }, + { + fileId = "166322", + text = "holy_form_precast.m2", + value = "holy_form_precast.m2", + }, + { + fileId = "166323", + text = "holy_hammer_missile.m2", + value = "holy_hammer_missile.m2", + }, + { + fileId = "166324", + text = "holy_impactdd_high_base.m2", + value = "holy_impactdd_high_base.m2", + }, + { + fileId = "166325", + text = "holy_impactdd_high_chest.m2", + value = "holy_impactdd_high_chest.m2", + }, + { + fileId = "166326", + text = "holy_impactdd_low_chest.m2", + value = "holy_impactdd_low_chest.m2", + }, + { + fileId = "166327", + text = "holy_impactdd_med_chest.m2", + value = "holy_impactdd_med_chest.m2", + }, + { + fileId = "166328", + text = "holy_impactdd_uber_base.m2", + value = "holy_impactdd_uber_base.m2", + }, + { + fileId = "166329", + text = "holy_impactdd_uber_chest.m2", + value = "holy_impactdd_uber_chest.m2", + }, + { + fileId = "166330", + text = "holy_missile_high.m2", + value = "holy_missile_high.m2", + }, + { + fileId = "166331", + text = "holy_missile_low.m2", + value = "holy_missile_low.m2", + }, + { + fileId = "166332", + text = "holy_missile_med.m2", + value = "holy_missile_med.m2", + }, + { + fileId = "166333", + text = "holy_missile_uber.m2", + value = "holy_missile_uber.m2", + }, + { + fileId = "166334", + text = "holy_precast_high_base.m2", + value = "holy_precast_high_base.m2", + }, + { + fileId = "166335", + text = "holy_precast_high_hand.m2", + value = "holy_precast_high_hand.m2", + }, + { + fileId = "166336", + text = "holy_precast_low_hand.m2", + value = "holy_precast_low_hand.m2", + }, + { + fileId = "166337", + text = "holy_precast_med_hand.m2", + value = "holy_precast_med_hand.m2", + }, + { + fileId = "166338", + text = "holy_precast_uber_base.m2", + value = "holy_precast_uber_base.m2", + }, + { + fileId = "166339", + text = "holy_precast_uber_hand.m2", + value = "holy_precast_uber_hand.m2", + }, + { + fileId = "304172", + text = "holy_rune_impact_base.m2", + value = "holy_rune_impact_base.m2", + }, + { + fileId = "304318", + text = "holy_rune_shield_impact_base.m2", + value = "holy_rune_shield_impact_base.m2", + }, + { + fileId = "240924", + text = "holybomb_missle.m2", + value = "holybomb_missle.m2", + }, + { + fileId = "166342", + text = "holydivineshield_state_base.m2", + value = "holydivineshield_state_base.m2", + }, + { + fileId = "166343", + text = "holydivineshieldblue_state_base.m2", + value = "holydivineshieldblue_state_base.m2", + }, + { + fileId = "166344", + text = "holydivineshielddark_state_base.m2", + value = "holydivineshielddark_state_base.m2", + }, + { + fileId = "166345", + text = "holydivineshieldgreen_state_base.m2", + value = "holydivineshieldgreen_state_base.m2", + }, + { + fileId = "166346", + text = "holydivineshieldpurple_state_base.m2", + value = "holydivineshieldpurple_state_base.m2", + }, + { + fileId = "166347", + text = "holydivineshieldred_state_base.m2", + value = "holydivineshieldred_state_base.m2", + }, + { + fileId = "166348", + text = "holylight_impact_head.m2", + value = "holylight_impact_head.m2", + }, + { + fileId = "166349", + text = "holylight_low_head.m2", + value = "holylight_low_head.m2", + }, + { + fileId = "166350", + text = "holynova_impact_base.m2", + value = "holynova_impact_base.m2", + }, + { + fileId = "166351", + text = "holyprotection_chest.m2", + value = "holyprotection_chest.m2", + }, + { + fileId = "166352", + text = "holyreflect_state_chest.m2", + value = "holyreflect_state_chest.m2", + }, + { + fileId = "166353", + text = "holyshield_state.m2", + value = "holyshield_state.m2", + }, + { + fileId = "166354", + text = "holysmite_low_chest.m2", + value = "holysmite_low_chest.m2", + }, + { + fileId = "166355", + text = "holyward_impact_chest.m2", + value = "holyward_impact_chest.m2", + }, + { + fileId = "306879", + text = "holyward_state_chest.m2", + value = "holyward_state_chest.m2", + }, + { + fileId = "166356", + text = "holyword_fortitude_impact_base.m2", + value = "holyword_fortitude_impact_base.m2", + }, + { + fileId = "166357", + text = "holywordheal_base.m2", + value = "holywordheal_base.m2", + }, + { + fileId = "166358", + text = "holywordshield_base.m2", + value = "holywordshield_base.m2", + }, + { + fileId = "166359", + text = "holywordshield_state_base.m2", + value = "holywordshield_state_base.m2", + }, + { + fileId = "166360", + text = "holywordshield_state_chest.m2", + value = "holywordshield_state_chest.m2", + }, + { + fileId = "328500", + text = "holyzone.m2", + value = "holyzone.m2", + }, + { + fileId = "240926", + text = "honor_among_thieves_impact.m2", + value = "honor_among_thieves_impact.m2", + }, + { + fileId = "166361", + text = "hordectfflag_spell.m2", + value = "hordectfflag_spell.m2", + }, + { + fileId = "252302", + text = "horn_01_spellobject.m2", + value = "horn_01_spellobject.m2", + }, + { + fileId = "240927", + text = "hungerforblood_impact.m2", + value = "hungerforblood_impact.m2", + }, + { + fileId = "240928", + text = "hungerforblood_state.m2", + value = "hungerforblood_state.m2", + }, + { + fileId = "240929", + text = "hunter_lockandload.m2", + value = "hunter_lockandload.m2", + }, + { + fileId = "240930", + text = "hunter_rapidfire.m2", + value = "hunter_rapidfire.m2", + }, + { + fileId = "166362", + text = "huntersmark_impact_chest.m2", + value = "huntersmark_impact_chest.m2", + }, + { + fileId = "166363", + text = "huntersmark_impact_head.m2", + value = "huntersmark_impact_head.m2", + }, + { + fileId = "166364", + text = "huntersmark_impact_head_hold.m2", + value = "huntersmark_impact_head_hold.m2", + }, + { + fileId = "166366", + text = "ice_barrier_state_chest.m2", + value = "ice_barrier_state_chest.m2", + }, + { + fileId = "166367", + text = "ice_cast_low_hand.m2", + value = "ice_cast_low_hand.m2", + }, + { + fileId = "324975", + text = "ice_deepfreeze.m2", + value = "ice_deepfreeze.m2", + }, + { + fileId = "166368", + text = "ice_impactdd_high_chest.m2", + value = "ice_impactdd_high_chest.m2", + }, + { + fileId = "166369", + text = "ice_impactdd_low_chest.m2", + value = "ice_impactdd_low_chest.m2", + }, + { + fileId = "166370", + text = "ice_impactdd_med_chest.m2", + value = "ice_impactdd_med_chest.m2", + }, + { + fileId = "166371", + text = "ice_impactdd_uber_chest.m2", + value = "ice_impactdd_uber_chest.m2", + }, + { + fileId = "166372", + text = "ice_lance_impact.m2", + value = "ice_lance_impact.m2", + }, + { + fileId = "166373", + text = "ice_lance_missile.m2", + value = "ice_lance_missile.m2", + }, + { + fileId = "166374", + text = "ice_missile_high.m2", + value = "ice_missile_high.m2", + }, + { + fileId = "166375", + text = "ice_missile_low.m2", + value = "ice_missile_low.m2", + }, + { + fileId = "166376", + text = "ice_missile_med.m2", + value = "ice_missile_med.m2", + }, + { + fileId = "166377", + text = "ice_missile_uber.m2", + value = "ice_missile_uber.m2", + }, + { + fileId = "355805", + text = "ice_nova.m2", + value = "ice_nova.m2", + }, + { + fileId = "166378", + text = "ice_precast_high_base.m2", + value = "ice_precast_high_base.m2", + }, + { + fileId = "166379", + text = "ice_precast_high_hand.m2", + value = "ice_precast_high_hand.m2", + }, + { + fileId = "166380", + text = "ice_precast_high_head.m2", + value = "ice_precast_high_head.m2", + }, + { + fileId = "166381", + text = "ice_precast_low_hand.m2", + value = "ice_precast_low_hand.m2", + }, + { + fileId = "166382", + text = "ice_precast_med_hand.m2", + value = "ice_precast_med_hand.m2", + }, + { + fileId = "166383", + text = "ice_precast_uber_base.m2", + value = "ice_precast_uber_base.m2", + }, + { + fileId = "344549", + text = "ice_precast_uber_base_var2.m2", + value = "ice_precast_uber_base_var2.m2", + }, + { + fileId = "166384", + text = "ice_precast_uber_hand.m2", + value = "ice_precast_uber_hand.m2", + }, + { + fileId = "166385", + text = "ice_precast_uber_head.m2", + value = "ice_precast_uber_head.m2", + }, + { + fileId = "304174", + text = "ice_rune_impact_base.m2", + value = "ice_rune_impact_base.m2", + }, + { + fileId = "304319", + text = "ice_rune_shield_impact_base.m2", + value = "ice_rune_shield_impact_base.m2", + }, + { + fileId = "166387", + text = "icearmor_low_head.m2", + value = "icearmor_low_head.m2", + }, + { + fileId = "166388", + text = "icebarrier_state.m2", + value = "icebarrier_state.m2", + }, + { + fileId = "304811", + text = "icebarrier_state_selectable.m2", + value = "icebarrier_state_selectable.m2", + }, + { + fileId = "240931", + text = "iceboundfortitude_ground.m2", + value = "iceboundfortitude_ground.m2", + }, + { + fileId = "348995", + text = "icecrown_frostmourne_altar_effect.m2", + value = "icecrown_frostmourne_altar_effect.m2", + }, + { + fileId = "342405", + text = "icecrown_labbottle_01_spell.m2", + value = "icecrown_labbottle_01_spell.m2", + }, + { + fileId = "342406", + text = "icecrown_labbottle_02_spell.m2", + value = "icecrown_labbottle_02_spell.m2", + }, + { + fileId = "342407", + text = "icecrown_labbottle_03_spell.m2", + value = "icecrown_labbottle_03_spell.m2", + }, + { + fileId = "348085", + text = "icecrown_snowflake.m2", + value = "icecrown_snowflake.m2", + }, + { + fileId = "340812", + text = "icecrownraid_arthas_precipice_phase1_quad1.m2", + value = "icecrownraid_arthas_precipice_phase1_quad1.m2", + }, + { + fileId = "340713", + text = "icecrownraid_arthas_precipice_phase1_quad2.m2", + value = "icecrownraid_arthas_precipice_phase1_quad2.m2", + }, + { + fileId = "340813", + text = "icecrownraid_arthas_precipice_phase1_quad3.m2", + value = "icecrownraid_arthas_precipice_phase1_quad3.m2", + }, + { + fileId = "340714", + text = "icecrownraid_arthas_precipice_phase1_quad4.m2", + value = "icecrownraid_arthas_precipice_phase1_quad4.m2", + }, + { + fileId = "341549", + text = "icecrownraid_arthas_precipice_phase2_quad1.m2", + value = "icecrownraid_arthas_precipice_phase2_quad1.m2", + }, + { + fileId = "341550", + text = "icecrownraid_arthas_precipice_phase2_quad2.m2", + value = "icecrownraid_arthas_precipice_phase2_quad2.m2", + }, + { + fileId = "341551", + text = "icecrownraid_arthas_precipice_phase2_quad3.m2", + value = "icecrownraid_arthas_precipice_phase2_quad3.m2", + }, + { + fileId = "341552", + text = "icecrownraid_arthas_precipice_phase2_quad4.m2", + value = "icecrownraid_arthas_precipice_phase2_quad4.m2", + }, + { + fileId = "166389", + text = "icenuke_base_impact.m2", + value = "icenuke_base_impact.m2", + }, + { + fileId = "166390", + text = "icenuke_missile.m2", + value = "icenuke_missile.m2", + }, + { + fileId = "166391", + text = "iceprison_base.m2", + value = "iceprison_base.m2", + }, + { + fileId = "166392", + text = "iceshield_state.m2", + value = "iceshield_state.m2", + }, + { + fileId = "166394", + text = "icespike_impact_base.m2", + value = "icespike_impact_base.m2", + }, + { + fileId = "309648", + text = "icespike_impact_base_v2.m2", + value = "icespike_impact_base_v2.m2", + }, + { + fileId = "166395", + text = "icespike_impact_new.m2", + value = "icespike_impact_new.m2", + }, + { + fileId = "349761", + text = "icespire_fx.m2", + value = "icespire_fx.m2", + }, + { + fileId = "166396", + text = "icyenchant_high.m2", + value = "icyenchant_high.m2", + }, + { + fileId = "166397", + text = "icyveins_fx.m2", + value = "icyveins_fx.m2", + }, + { + fileId = "166398", + text = "illidan_glave_missile.m2", + value = "illidan_glave_missile.m2", + }, + { + fileId = "166399", + text = "immolate_blue_impact_chest.m2", + value = "immolate_blue_impact_chest.m2", + }, + { + fileId = "166400", + text = "immolate_blue_state_base.m2", + value = "immolate_blue_state_base.m2", + }, + { + fileId = "166401", + text = "immolate_impact_chest.m2", + value = "immolate_impact_chest.m2", + }, + { + fileId = "166402", + text = "immolate_state.m2", + value = "immolate_state.m2", + }, + { + fileId = "166403", + text = "immolate_state_base.m2", + value = "immolate_state_base.m2", + }, + { + fileId = "166404", + text = "immolationtrap_recursive.m2", + value = "immolationtrap_recursive.m2", + }, + { + fileId = "308400", + text = "impact_dark.m2", + value = "impact_dark.m2", + }, + { + fileId = "308401", + text = "impact_light.m2", + value = "impact_light.m2", + }, + { + fileId = "166405", + text = "incinerate_impact_base.m2", + value = "incinerate_impact_base.m2", + }, + { + fileId = "166406", + text = "incinerate_low_base.m2", + value = "incinerate_low_base.m2", + }, + { + fileId = "166407", + text = "incinerate_low_base_bossaoe.m2", + value = "incinerate_low_base_bossaoe.m2", + }, + { + fileId = "166408", + text = "incinerateblue_impact_base.m2", + value = "incinerateblue_impact_base.m2", + }, + { + fileId = "166409", + text = "incinerateblue_low_base.m2", + value = "incinerateblue_low_base.m2", + }, + { + fileId = "166410", + text = "infernal_ball.m2", + value = "infernal_ball.m2", + }, + { + fileId = "310868", + text = "infernal_ball_02.m2", + value = "infernal_ball_02.m2", + }, + { + fileId = "166411", + text = "infernal_flare_rec.m2", + value = "infernal_flare_rec.m2", + }, + { + fileId = "166412", + text = "infernal_geo.m2", + value = "infernal_geo.m2", + }, + { + fileId = "166413", + text = "infernal_impact.m2", + value = "infernal_impact.m2", + }, + { + fileId = "166414", + text = "infernal_impact_base.m2", + value = "infernal_impact_base.m2", + }, + { + fileId = "166415", + text = "infernal_smoke_rec.m2", + value = "infernal_smoke_rec.m2", + }, + { + fileId = "240932", + text = "infusion_of_light_impact.m2", + value = "infusion_of_light_impact.m2", + }, + { + fileId = "166417", + text = "innerfire_base.m2", + value = "innerfire_base.m2", + }, + { + fileId = "166419", + text = "innerfocus_impact_chest.m2", + value = "innerfocus_impact_chest.m2", + }, + { + fileId = "166420", + text = "innerrage_impact_chest.m2", + value = "innerrage_impact_chest.m2", + }, + { + fileId = "166421", + text = "insectswarm_state_chest.m2", + value = "insectswarm_state_chest.m2", + }, + { + fileId = "593325", + text = "instancenewportal_base.m2", + value = "instancenewportal_base.m2", + }, + { + fileId = "240933", + text = "instancenewportal_blue.m2", + value = "instancenewportal_blue.m2", + }, + { + fileId = "240934", + text = "instancenewportal_blue_arcane.m2", + value = "instancenewportal_blue_arcane.m2", + }, + { + fileId = "240935", + text = "instancenewportal_green.m2", + value = "instancenewportal_green.m2", + }, + { + fileId = "240936", + text = "instancenewportal_green_skull.m2", + value = "instancenewportal_green_skull.m2", + }, + { + fileId = "240937", + text = "instancenewportal_purple.m2", + value = "instancenewportal_purple.m2", + }, + { + fileId = "240938", + text = "instancenewportal_purple_skull.m2", + value = "instancenewportal_purple_skull.m2", + }, + { + fileId = "240939", + text = "instancenewportal_red.m2", + value = "instancenewportal_red.m2", + }, + { + fileId = "593327", + text = "instancenewportal_skull.m2", + value = "instancenewportal_skull.m2", + }, + { + fileId = "311582", + text = "instanceportal_green_10man.m2", + value = "instanceportal_green_10man.m2", + }, + { + fileId = "311586", + text = "instanceportal_green_10man_heroic.m2", + value = "instanceportal_green_10man_heroic.m2", + }, + { + fileId = "311587", + text = "instanceportal_green_25man.m2", + value = "instanceportal_green_25man.m2", + }, + { + fileId = "311588", + text = "instanceportal_green_25man_heroic.m2", + value = "instanceportal_green_25man_heroic.m2", + }, + { + fileId = "166425", + text = "intervene_impact_chest.m2", + value = "intervene_impact_chest.m2", + }, + { + fileId = "166426", + text = "intervenetrail.m2", + value = "intervenetrail.m2", + }, + { + fileId = "166427", + text = "intimidatingshout_cast_base.m2", + value = "intimidatingshout_cast_base.m2", + }, + { + fileId = "166428", + text = "intimidatingshout_impact_head.m2", + value = "intimidatingshout_impact_head.m2", + }, + { + fileId = "166429", + text = "invisibility.m2", + value = "invisibility.m2", + }, + { + fileId = "166430", + text = "invisibility_impact_base.m2", + value = "invisibility_impact_base.m2", + }, + { + fileId = "166431", + text = "invisibility_impact_chest.m2", + value = "invisibility_impact_chest.m2", + }, + { + fileId = "166432", + text = "invisible.m2", + value = "invisible.m2", + }, + { + fileId = "166434", + text = "item_bread.m2", + value = "item_bread.m2", + }, + { + fileId = "334368", + text = "jetpack.m2", + value = "jetpack.m2", + }, + { + fileId = "336507", + text = "jetpack_flame.m2", + value = "jetpack_flame.m2", + }, + { + fileId = "166435", + text = "judgement_impact_chest.m2", + value = "judgement_impact_chest.m2", + }, + { + fileId = "240940", + text = "judgement_impact_chest_blue.m2", + value = "judgement_impact_chest_blue.m2", + }, + { + fileId = "240941", + text = "judgement_impact_chest_red.m2", + value = "judgement_impact_chest_red.m2", + }, + { + fileId = "240942", + text = "judgement_of_the_pure_impact.m2", + value = "judgement_of_the_pure_impact.m2", + }, + { + fileId = "240943", + text = "judgements_of_the_wise_impact.m2", + value = "judgements_of_the_wise_impact.m2", + }, + { + fileId = "166437", + text = "kick_chest_impact.m2", + value = "kick_chest_impact.m2", + }, + { + fileId = "166438", + text = "kidneyshot_base_cast.m2", + value = "kidneyshot_base_cast.m2", + }, + { + fileId = "166439", + text = "killcommand_impact_head.m2", + value = "killcommand_impact_head.m2", + }, + { + fileId = "298681", + text = "kologarn_arm_fadein.m2", + value = "kologarn_arm_fadein.m2", + }, + { + fileId = "166440", + text = "lacerate_impact.m2", + value = "lacerate_impact.m2", + }, + { + fileId = "166441", + text = "largebluegreenradiationfog.m2", + value = "largebluegreenradiationfog.m2", + }, + { + fileId = "166442", + text = "largegreenradiationfog.m2", + value = "largegreenradiationfog.m2", + }, + { + fileId = "166443", + text = "lash_cast_base.m2", + value = "lash_cast_base.m2", + }, + { + fileId = "240944", + text = "lavaelemental_impact_base.m2", + value = "lavaelemental_impact_base.m2", + }, + { + fileId = "166452", + text = "layonhands_low_chest.m2", + value = "layonhands_low_chest.m2", + }, + { + fileId = "166453", + text = "layonhands_low_head.m2", + value = "layonhands_low_head.m2", + }, + { + fileId = "166457", + text = "learn_impact_base.m2", + value = "learn_impact_base.m2", + }, + { + fileId = "166463", + text = "lesserheal_base.m2", + value = "lesserheal_base.m2", + }, + { + children = { + { + fileId = "166464", + text = "levelup.m2", + value = "levelup.m2", + }, + }, + text = "levelup", + value = "levelup", + }, + { + fileId = "240947", + text = "levelup_red.m2", + value = "levelup_red.m2", + }, + { + children = { + { + fileId = "166465", + text = "levelupspell.m2", + value = "levelupspell.m2", + }, + }, + text = "levelupspell", + value = "levelupspell", + }, + { + fileId = "166466", + text = "levitate_impact_base.m2", + value = "levitate_impact_base.m2", + }, + { + fileId = "166467", + text = "lifebloom_impact.m2", + value = "lifebloom_impact.m2", + }, + { + fileId = "166468", + text = "lifebloom_state.m2", + value = "lifebloom_state.m2", + }, + { + fileId = "166469", + text = "lifedrain_missile.m2", + value = "lifedrain_missile.m2", + }, + { + fileId = "166470", + text = "lifetap.m2", + value = "lifetap.m2", + }, + { + fileId = "166471", + text = "lifetap_state_chest.m2", + value = "lifetap_state_chest.m2", + }, + { + fileId = "303844", + text = "lightingbeam_neutral_state_base.m2", + value = "lightingbeam_neutral_state_base.m2", + }, + { + fileId = "253569", + text = "lightingbeam_state_base.m2", + value = "lightingbeam_state_base.m2", + }, + { + fileId = "166488", + text = "lightning_cast_hand.m2", + value = "lightning_cast_hand.m2", + }, + { + fileId = "166490", + text = "lightning_fel_cast_hand.m2", + value = "lightning_fel_cast_hand.m2", + }, + { + fileId = "166491", + text = "lightning_fel_precast_low_hand.m2", + value = "lightning_fel_precast_low_hand.m2", + }, + { + fileId = "166492", + text = "lightning_precast_low_hand.m2", + value = "lightning_precast_low_hand.m2", + }, + { + fileId = "166493", + text = "lightning_ring_nova.m2", + value = "lightning_ring_nova.m2", + }, + { + fileId = "166496", + text = "lightningbolt_impact_chest.m2", + value = "lightningbolt_impact_chest.m2", + }, + { + fileId = "166497", + text = "lightningbolt_missile.m2", + value = "lightningbolt_missile.m2", + }, + { + fileId = "166498", + text = "lightningboltivus_missile.m2", + value = "lightningboltivus_missile.m2", + }, + { + fileId = "166499", + text = "lightningshield_impact_base.m2", + value = "lightningshield_impact_base.m2", + }, + { + fileId = "166500", + text = "lightningshield_state_base.m2", + value = "lightningshield_state_base.m2", + }, + { + fileId = "166501", + text = "lightningshield_state_base_s.m2", + value = "lightningshield_state_base_s.m2", + }, + { + fileId = "166502", + text = "lightningstorm_cloud_state.m2", + value = "lightningstorm_cloud_state.m2", + }, + { + fileId = "366757", + text = "lightningstorm_cloud_state_2.m2", + value = "lightningstorm_cloud_state_2.m2", + }, + { + fileId = "166503", + text = "lightningstorm_cloudlow_state.m2", + value = "lightningstorm_cloudlow_state.m2", + }, + { + fileId = "166504", + text = "lightningstreak_missile.m2", + value = "lightningstreak_missile.m2", + }, + { + fileId = "166505", + text = "lighttest.m2", + value = "lighttest.m2", + }, + { + fileId = "166506", + text = "lovestruck_state_chest.m2", + value = "lovestruck_state_chest.m2", + }, + { + fileId = "166507", + text = "lowpolyfireanim_blue.m2", + value = "lowpolyfireanim_blue.m2", + }, + { + fileId = "166508", + text = "loyaltydown_impact_base.m2", + value = "loyaltydown_impact_base.m2", + }, + { + fileId = "166509", + text = "loyaltydown_impact_head.m2", + value = "loyaltydown_impact_head.m2", + }, + { + fileId = "166510", + text = "loyaltyup_impact_base.m2", + value = "loyaltyup_impact_base.m2", + }, + { + fileId = "166511", + text = "loyaltyup_impact_head.m2", + value = "loyaltyup_impact_head.m2", + }, + { + fileId = "350835", + text = "lshoulder_mail_raidshaman_h_01spell.m2", + value = "lshoulder_mail_raidshaman_h_01spell.m2", + }, + { + fileId = "352514", + text = "lshoulder_mail_raidshaman_h_02spell_green.m2", + value = "lshoulder_mail_raidshaman_h_02spell_green.m2", + }, + { + fileId = "352517", + text = "lshoulder_mail_raidshaman_h_02spell_red.m2", + value = "lshoulder_mail_raidshaman_h_02spell_red.m2", + }, + { + fileId = "166512", + text = "mage_arcanebarrage_impact.m2", + value = "mage_arcanebarrage_impact.m2", + }, + { + fileId = "166513", + text = "mage_arcanebarrage_missile.m2", + value = "mage_arcanebarrage_missile.m2", + }, + { + fileId = "166514", + text = "mage_deepfreeze.m2", + value = "mage_deepfreeze.m2", + }, + { + fileId = "166515", + text = "mage_dragons_breath.m2", + value = "mage_dragons_breath.m2", + }, + { + fileId = "240950", + text = "mage_firefrostbolt.m2", + value = "mage_firefrostbolt.m2", + }, + { + fileId = "240951", + text = "mage_firestarter.m2", + value = "mage_firestarter.m2", + }, + { + fileId = "166516", + text = "mage_hotstreak.m2", + value = "mage_hotstreak.m2", + }, + { + fileId = "166517", + text = "mage_incantersabsorbtion.m2", + value = "mage_incantersabsorbtion.m2", + }, + { + fileId = "166518", + text = "mage_livingbomb_area.m2", + value = "mage_livingbomb_area.m2", + }, + { + fileId = "166519", + text = "mage_livingbomb_state.m2", + value = "mage_livingbomb_state.m2", + }, + { + fileId = "240952", + text = "mage_missilebarrage.m2", + value = "mage_missilebarrage.m2", + }, + { + fileId = "166520", + text = "mage_netherwingpresence.m2", + value = "mage_netherwingpresence.m2", + }, + { + fileId = "310458", + text = "mage_rainoffire_spawn.m2", + value = "mage_rainoffire_spawn.m2", + }, + { + fileId = "240953", + text = "mage_riptide_impact.m2", + value = "mage_riptide_impact.m2", + }, + { + fileId = "240954", + text = "mage_riptide_state.m2", + value = "mage_riptide_state.m2", + }, + { + fileId = "240955", + text = "mage_shattershield.m2", + value = "mage_shattershield.m2", + }, + { + fileId = "166522", + text = "magearmor_impact_head.m2", + value = "magearmor_impact_head.m2", + }, + { + fileId = "166523", + text = "mageportal_blank.m2", + value = "mageportal_blank.m2", + }, + { + fileId = "166524", + text = "magic_cast_hand.m2", + value = "magic_cast_hand.m2", + }, + { + fileId = "166525", + text = "magic_impact_chest.m2", + value = "magic_impact_chest.m2", + }, + { + fileId = "166526", + text = "magic_precast_hand.m2", + value = "magic_precast_hand.m2", + }, + { + fileId = "240956", + text = "magicburst_impact.m2", + value = "magicburst_impact.m2", + }, + { + fileId = "166527", + text = "magicnet_missile.m2", + value = "magicnet_missile.m2", + }, + { + fileId = "166528", + text = "magicnet_state.m2", + value = "magicnet_state.m2", + }, + { + fileId = "166529", + text = "magicstonehelmet_green.m2", + value = "magicstonehelmet_green.m2", + }, + { + fileId = "166530", + text = "magicstonehelmet_red.m2", + value = "magicstonehelmet_red.m2", + }, + { + fileId = "166531", + text = "magicunlock.m2", + value = "magicunlock.m2", + }, + { + fileId = "166532", + text = "magtheradonceilingchunk.m2", + value = "magtheradonceilingchunk.m2", + }, + { + fileId = "166534", + text = "maim_impact_chest.m2", + value = "maim_impact_chest.m2", + }, + { + fileId = "166535", + text = "mame_impact.m2", + value = "mame_impact.m2", + }, + { + fileId = "166536", + text = "mana_impactdot_chest.m2", + value = "mana_impactdot_chest.m2", + }, + { + fileId = "166537", + text = "manaburn_chest.m2", + value = "manaburn_chest.m2", + }, + { + fileId = "166538", + text = "manafunnel_impact_chest.m2", + value = "manafunnel_impact_chest.m2", + }, + { + fileId = "166539", + text = "manainfuse_base.m2", + value = "manainfuse_base.m2", + }, + { + fileId = "166540", + text = "manashield_state_base.m2", + value = "manashield_state_base.m2", + }, + { + fileId = "166541", + text = "manashield_state_chest.m2", + value = "manashield_state_chest.m2", + }, + { + fileId = "166542", + text = "manashot_missile.m2", + value = "manashot_missile.m2", + }, + { + fileId = "166543", + text = "manatideinfuse_base.m2", + value = "manatideinfuse_base.m2", + }, + { + fileId = "166544", + text = "mangle_impact.m2", + value = "mangle_impact.m2", + }, + { + fileId = "240957", + text = "mangle_impact_demon.m2", + value = "mangle_impact_demon.m2", + }, + { + fileId = "166545", + text = "markofbeast_impact_head.m2", + value = "markofbeast_impact_head.m2", + }, + { + fileId = "166546", + text = "markofwild_impact_head.m2", + value = "markofwild_impact_head.m2", + }, + { + fileId = "166547", + text = "mass_dispell_impact.m2", + value = "mass_dispell_impact.m2", + }, + { + fileId = "166548", + text = "masterscall_impact.m2", + value = "masterscall_impact.m2", + }, + { + fileId = "166549", + text = "maul.m2", + value = "maul.m2", + }, + { + fileId = "166550", + text = "maulcasterbase.m2", + value = "maulcasterbase.m2", + }, + { + fileId = "166551", + text = "maulimpact.m2", + value = "maulimpact.m2", + }, + { + fileId = "240958", + text = "metamorphosis.m2", + value = "metamorphosis.m2", + }, + { + fileId = "166553", + text = "meteor_ball_missile.m2", + value = "meteor_ball_missile.m2", + }, + { + fileId = "166554", + text = "meteor_impact_base.m2", + value = "meteor_impact_base.m2", + }, + { + fileId = "166555", + text = "meteor_impact_base_red.m2", + value = "meteor_impact_base_red.m2", + }, + { + fileId = "166557", + text = "mightaura_impact_base.m2", + value = "mightaura_impact_base.m2", + }, + { + fileId = "166558", + text = "mindblast_head.m2", + value = "mindblast_head.m2", + }, + { + fileId = "166559", + text = "mindrot_head.m2", + value = "mindrot_head.m2", + }, + { + fileId = "166560", + text = "miningpick_spellobject.m2", + value = "miningpick_spellobject.m2", + }, + { + fileId = "240959", + text = "mirrorimage_impact.m2", + value = "mirrorimage_impact.m2", + }, + { + fileId = "166561", + text = "misdirection_impact_head.m2", + value = "misdirection_impact_head.m2", + }, + { + fileId = "166562", + text = "missile_axe_1houtlandraidd06.m2", + value = "missile_axe_1houtlandraidd06.m2", + }, + { + fileId = "166563", + text = "missile_axe_copper.m2", + value = "missile_axe_copper.m2", + }, + { + fileId = "166564", + text = "missile_bomb.m2", + value = "missile_bomb.m2", + }, + { + fileId = "308826", + text = "missile_bomb_static.m2", + value = "missile_bomb_static.m2", + }, + { + fileId = "166565", + text = "missile_boomerang.m2", + value = "missile_boomerang.m2", + }, + { + fileId = "308402", + text = "missile_dark.m2", + value = "missile_dark.m2", + }, + { + fileId = "166566", + text = "missile_flare.m2", + value = "missile_flare.m2", + }, + { + fileId = "166567", + text = "missile_hammer.m2", + value = "missile_hammer.m2", + }, + { + fileId = "166568", + text = "missile_leatherball.m2", + value = "missile_leatherball.m2", + }, + { + fileId = "308403", + text = "missile_light.m2", + value = "missile_light.m2", + }, + { + fileId = "166569", + text = "missile_sawblade.m2", + value = "missile_sawblade.m2", + }, + { + fileId = "166570", + text = "missile_snowball.m2", + value = "missile_snowball.m2", + }, + { + fileId = "166571", + text = "missile_thorns.m2", + value = "missile_thorns.m2", + }, + { + fileId = "166572", + text = "missile_wave_arcane.m2", + value = "missile_wave_arcane.m2", + }, + { + fileId = "166573", + text = "missile_wave_fire.m2", + value = "missile_wave_fire.m2", + }, + { + fileId = "166574", + text = "missile_wave_holy.m2", + value = "missile_wave_holy.m2", + }, + { + fileId = "341982", + text = "missile_wave_ice.m2", + value = "missile_wave_ice.m2", + }, + { + fileId = "345788", + text = "missile_wave_ice_geo.m2", + value = "missile_wave_ice_geo.m2", + }, + { + fileId = "166575", + text = "missile_wave_nature.m2", + value = "missile_wave_nature.m2", + }, + { + fileId = "166576", + text = "missile_wave_shadow.m2", + value = "missile_wave_shadow.m2", + }, + { + fileId = "240960", + text = "missile_wave_watepurple.m2", + value = "missile_wave_watepurple.m2", + }, + { + fileId = "166577", + text = "missile_wave_water.m2", + value = "missile_wave_water.m2", + }, + { + fileId = "166578", + text = "missile_wave_watergreen.m2", + value = "missile_wave_watergreen.m2", + }, + { + fileId = "166579", + text = "missile_wrench.m2", + value = "missile_wrench.m2", + }, + { + fileId = "166580", + text = "missle_rocket.m2", + value = "missle_rocket.m2", + }, + { + fileId = "166581", + text = "missle_rocket02.m2", + value = "missle_rocket02.m2", + }, + { + fileId = "322125", + text = "missle_rocket_off.m2", + value = "missle_rocket_off.m2", + }, + { + fileId = "330708", + text = "mohawkexplosion.m2", + value = "mohawkexplosion.m2", + }, + { + fileId = "166582", + text = "molten_armor_head.m2", + value = "molten_armor_head.m2", + }, + { + fileId = "166583", + text = "moltenblast_impact_chest.m2", + value = "moltenblast_impact_chest.m2", + }, + { + fileId = "166584", + text = "moltenblast_missile.m2", + value = "moltenblast_missile.m2", + }, + { + fileId = "166585", + text = "moltenblast_missile_lvl2.m2", + value = "moltenblast_missile_lvl2.m2", + }, + { + fileId = "166586", + text = "moltenblast_missile_lvl3.m2", + value = "moltenblast_missile_lvl3.m2", + }, + { + fileId = "166590", + text = "moonbeam_impact_base.m2", + value = "moonbeam_impact_base.m2", + }, + { + fileId = "166591", + text = "moonbeamblue_impact_base.m2", + value = "moonbeamblue_impact_base.m2", + }, + { + fileId = "166592", + text = "moonbeamred_impact_base.m2", + value = "moonbeamred_impact_base.m2", + }, + { + fileId = "166593", + text = "moonfire_impact_base.m2", + value = "moonfire_impact_base.m2", + }, + { + fileId = "240962", + text = "mountmorph_impact.m2", + value = "mountmorph_impact.m2", + }, + { + fileId = "166594", + text = "movementimmunity_base.m2", + value = "movementimmunity_base.m2", + }, + { + fileId = "166595", + text = "mug_missile.m2", + value = "mug_missile.m2", + }, + { + fileId = "166596", + text = "mug_missile_hitbounce.m2", + value = "mug_missile_hitbounce.m2", + }, + { + fileId = "166597", + text = "multishot_impact.m2", + value = "multishot_impact.m2", + }, + { + fileId = "166598", + text = "multishot_missile.m2", + value = "multishot_missile.m2", + }, + { + fileId = "240963", + text = "murder_spree_impact.m2", + value = "murder_spree_impact.m2", + }, + { + fileId = "166599", + text = "mutilate_impact_chest.m2", + value = "mutilate_impact_chest.m2", + }, + { + fileId = "166600", + text = "nagalordshell_impact.m2", + value = "nagalordshell_impact.m2", + }, + { + fileId = "166601", + text = "nagalordshell_missile.m2", + value = "nagalordshell_missile.m2", + }, + { + fileId = "166602", + text = "nature_cast_hand.m2", + value = "nature_cast_hand.m2", + }, + { + fileId = "240964", + text = "nature_cast_hand_purple.m2", + value = "nature_cast_hand_purple.m2", + }, + { + fileId = "166603", + text = "nature_form_precast.m2", + value = "nature_form_precast.m2", + }, + { + fileId = "166604", + text = "nature_precast_chest.m2", + value = "nature_precast_chest.m2", + }, + { + fileId = "166605", + text = "nature_precast_low_hand.m2", + value = "nature_precast_low_hand.m2", + }, + { + fileId = "304176", + text = "nature_rune_impact_base.m2", + value = "nature_rune_impact_base.m2", + }, + { + fileId = "304323", + text = "nature_rune_shield_impact_base.m2", + value = "nature_rune_shield_impact_base.m2", + }, + { + fileId = "303845", + text = "naturebeam_neutral_state_base.m2", + value = "naturebeam_neutral_state_base.m2", + }, + { + fileId = "253570", + text = "naturebeam_state_base.m2", + value = "naturebeam_state_base.m2", + }, + { + fileId = "166607", + text = "naturereflect_state_chest.m2", + value = "naturereflect_state_chest.m2", + }, + { + fileId = "166608", + text = "natureresistance_impact_base.m2", + value = "natureresistance_impact_base.m2", + }, + { + fileId = "166609", + text = "natureward_impact_chest.m2", + value = "natureward_impact_chest.m2", + }, + { + fileId = "329062", + text = "naturezone.m2", + value = "naturezone.m2", + }, + { + fileId = "166610", + text = "naxxramasstrike_impactdd_med_base.m2", + value = "naxxramasstrike_impactdd_med_base.m2", + }, + { + fileId = "166611", + text = "nefarian_impact_base.m2", + value = "nefarian_impact_base.m2", + }, + { + fileId = "166612", + text = "nefarian_state_base.m2", + value = "nefarian_state_base.m2", + }, + { + fileId = "166613", + text = "nefarianflamebreath.m2", + value = "nefarianflamebreath.m2", + }, + { + fileId = "166614", + text = "nefarianflamebreath_impact.m2", + value = "nefarianflamebreath_impact.m2", + }, + { + fileId = "166615", + text = "net_missile.m2", + value = "net_missile.m2", + }, + { + fileId = "166616", + text = "net_state.m2", + value = "net_state.m2", + }, + { + fileId = "166617", + text = "neutralctfflag_spell.m2", + value = "neutralctfflag_spell.m2", + }, + { + fileId = "240965", + text = "new_windfury.m2", + value = "new_windfury.m2", + }, + { + fileId = "240967", + text = "nexus_raid_floating_platform_beamfx.m2", + value = "nexus_raid_floating_platform_beamfx.m2", + }, + { + fileId = "240968", + text = "nexus_raid_floating_platform_fx.m2", + value = "nexus_raid_floating_platform_fx.m2", + }, + { + fileId = "166618", + text = "nightbane_area_base.m2", + value = "nightbane_area_base.m2", + }, + { + fileId = "166619", + text = "nightbane_bone_missile.m2", + value = "nightbane_bone_missile.m2", + }, + { + fileId = "166620", + text = "nightbane_bone_spurs.m2", + value = "nightbane_bone_spurs.m2", + }, + { + fileId = "166621", + text = "nightbane_breath.m2", + value = "nightbane_breath.m2", + }, + { + fileId = "166622", + text = "nightbane_fire_missile.m2", + value = "nightbane_fire_missile.m2", + }, + { + fileId = "166623", + text = "nightmare_impact_base.m2", + value = "nightmare_impact_base.m2", + }, + { + fileId = "166624", + text = "noname_area.m2", + value = "noname_area.m2", + }, + { + fileId = "166625", + text = "nullifydisease_base.m2", + value = "nullifydisease_base.m2", + }, + { + fileId = "166626", + text = "nullifypoison_base.m2", + value = "nullifypoison_base.m2", + }, + { + fileId = "166628", + text = "oilliquidbreath.m2", + value = "oilliquidbreath.m2", + }, + { + fileId = "166629", + text = "onyxia_impact_base.m2", + value = "onyxia_impact_base.m2", + }, + { + fileId = "326407", + text = "orange_gas_01.m2", + value = "orange_gas_01.m2", + }, + { + fileId = "329520", + text = "orange_gas_plague_cloud_l1.m2", + value = "orange_gas_plague_cloud_l1.m2", + }, + { + fileId = "344550", + text = "orange_gas_plague_cloud_l1_b.m2", + value = "orange_gas_plague_cloud_l1_b.m2", + }, + { + fileId = "329521", + text = "orange_gas_plague_cloud_l2.m2", + value = "orange_gas_plague_cloud_l2.m2", + }, + { + fileId = "344551", + text = "orange_gas_plague_cloud_l2_b.m2", + value = "orange_gas_plague_cloud_l2_b.m2", + }, + { + fileId = "329522", + text = "orange_gas_plague_cloud_l3.m2", + value = "orange_gas_plague_cloud_l3.m2", + }, + { + fileId = "344552", + text = "orange_gas_plague_cloud_l3_b.m2", + value = "orange_gas_plague_cloud_l3_b.m2", + }, + { + fileId = "166630", + text = "orangeradiationfog.m2", + value = "orangeradiationfog.m2", + }, + { + fileId = "240971", + text = "orgrimmararena_firefx.m2", + value = "orgrimmararena_firefx.m2", + }, + { + fileId = "166631", + text = "painsuppression_state.m2", + value = "painsuppression_state.m2", + }, + { + fileId = "166633", + text = "parachute.m2", + value = "parachute.m2", + }, + { + fileId = "166634", + text = "parachute_wings_head.m2", + value = "parachute_wings_head.m2", + }, + { + fileId = "166636", + text = "pathfind_cast_head.m2", + value = "pathfind_cast_head.m2", + }, + { + fileId = "166637", + text = "pestilence_impact_chest.m2", + value = "pestilence_impact_chest.m2", + }, + { + fileId = "166638", + text = "piercinghowl_impact_head.m2", + value = "piercinghowl_impact_head.m2", + }, + { + fileId = "166639", + text = "piercingstrike.m2", + value = "piercingstrike.m2", + }, + { + fileId = "166640", + text = "piercingstrike_cast_hand.m2", + value = "piercingstrike_cast_hand.m2", + }, + { + fileId = "337504", + text = "plague_gas_blue_01.m2", + value = "plague_gas_blue_01.m2", + }, + { + fileId = "337505", + text = "plague_gas_orange_02.m2", + value = "plague_gas_orange_02.m2", + }, + { + fileId = "166642", + text = "poison_cloud_grobbulus.m2", + value = "poison_cloud_grobbulus.m2", + }, + { + fileId = "166643", + text = "poison_impact_chest.m2", + value = "poison_impact_chest.m2", + }, + { + fileId = "166644", + text = "poison_impactdot_med_base.m2", + value = "poison_impactdot_med_base.m2", + }, + { + fileId = "166645", + text = "poison_impactdot_med_chest.m2", + value = "poison_impactdot_med_chest.m2", + }, + { + fileId = "334806", + text = "poison_impactdot_orange_med_base.m2", + value = "poison_impactdot_orange_med_base.m2", + }, + { + fileId = "166646", + text = "poisonelemental_impact_base.m2", + value = "poisonelemental_impact_base.m2", + }, + { + fileId = "334805", + text = "poisonelemental_orange_impact_base.m2", + value = "poisonelemental_orange_impact_base.m2", + }, + { + fileId = "166647", + text = "poisonshield_state_base.m2", + value = "poisonshield_state_base.m2", + }, + { + fileId = "166648", + text = "poisonshot_missile.m2", + value = "poisonshot_missile.m2", + }, + { + fileId = "166649", + text = "polymorph_impact.m2", + value = "polymorph_impact.m2", + }, + { + fileId = "166650", + text = "polymorph_impact_base.m2", + value = "polymorph_impact_base.m2", + }, + { + fileId = "327754", + text = "portalofkathune_v2.m2", + value = "portalofkathune_v2.m2", + }, + { + fileId = "240973", + text = "potion_black01_spellobject.m2", + value = "potion_black01_spellobject.m2", + }, + { + fileId = "240974", + text = "potion_black02_spellobject.m2", + value = "potion_black02_spellobject.m2", + }, + { + fileId = "240975", + text = "potion_black03_spellobject.m2", + value = "potion_black03_spellobject.m2", + }, + { + fileId = "240976", + text = "potion_black04_spellobject.m2", + value = "potion_black04_spellobject.m2", + }, + { + fileId = "240977", + text = "potion_black05_spellobject.m2", + value = "potion_black05_spellobject.m2", + }, + { + fileId = "240978", + text = "potion_blue01_spellobject.m2", + value = "potion_blue01_spellobject.m2", + }, + { + fileId = "240979", + text = "potion_blue02_spellobject.m2", + value = "potion_blue02_spellobject.m2", + }, + { + fileId = "240980", + text = "potion_gold01_spellobject.m2", + value = "potion_gold01_spellobject.m2", + }, + { + fileId = "240981", + text = "potion_green01_spellobject.m2", + value = "potion_green01_spellobject.m2", + }, + { + fileId = "240982", + text = "potion_green02_spellobject.m2", + value = "potion_green02_spellobject.m2", + }, + { + fileId = "240983", + text = "potion_green03_spellobject.m2", + value = "potion_green03_spellobject.m2", + }, + { + fileId = "240984", + text = "potion_green04_spellobject.m2", + value = "potion_green04_spellobject.m2", + }, + { + fileId = "240985", + text = "potion_iron01_spellobject.m2", + value = "potion_iron01_spellobject.m2", + }, + { + fileId = "240986", + text = "potion_purple01_spellobject.m2", + value = "potion_purple01_spellobject.m2", + }, + { + fileId = "240987", + text = "potion_purple02_spellobject.m2", + value = "potion_purple02_spellobject.m2", + }, + { + fileId = "240988", + text = "potion_purple03_spellobject.m2", + value = "potion_purple03_spellobject.m2", + }, + { + fileId = "240989", + text = "potion_red01_spellobject.m2", + value = "potion_red01_spellobject.m2", + }, + { + fileId = "240990", + text = "potion_red02_spellobject.m2", + value = "potion_red02_spellobject.m2", + }, + { + fileId = "240991", + text = "potion_red03_spellobject.m2", + value = "potion_red03_spellobject.m2", + }, + { + fileId = "240992", + text = "potion_silver01_spellobject.m2", + value = "potion_silver01_spellobject.m2", + }, + { + fileId = "166654", + text = "potiona_spellobject.m2", + value = "potiona_spellobject.m2", + }, + { + fileId = "166655", + text = "potionb_spellobject.m2", + value = "potionb_spellobject.m2", + }, + { + fileId = "166656", + text = "prayerofhealing_chest.m2", + value = "prayerofhealing_chest.m2", + }, + { + fileId = "166657", + text = "prayerofmending_impact_head.m2", + value = "prayerofmending_impact_head.m2", + }, + { + fileId = "166658", + text = "presenceofmind_cast_base.m2", + value = "presenceofmind_cast_base.m2", + }, + { + fileId = "166659", + text = "priest_dispersion.m2", + value = "priest_dispersion.m2", + }, + { + fileId = "240993", + text = "priest_divineaegis.m2", + value = "priest_divineaegis.m2", + }, + { + fileId = "166660", + text = "priest_divinehymn.m2", + value = "priest_divinehymn.m2", + }, + { + fileId = "240994", + text = "priest_guardianspirit.m2", + value = "priest_guardianspirit.m2", + }, + { + fileId = "240995", + text = "priest_mindshear.m2", + value = "priest_mindshear.m2", + }, + { + fileId = "166661", + text = "priest_pennance_missile.m2", + value = "priest_pennance_missile.m2", + }, + { + fileId = "240996", + text = "priest_powerinfusion.m2", + value = "priest_powerinfusion.m2", + }, + { + fileId = "253326", + text = "priest_powerwardbarrier.m2", + value = "priest_powerwardbarrier.m2", + }, + { + fileId = "166663", + text = "protectionfromfire_chest.m2", + value = "protectionfromfire_chest.m2", + }, + { + fileId = "166664", + text = "protectionfromnature_chest.m2", + value = "protectionfromnature_chest.m2", + }, + { + fileId = "166665", + text = "purge_impact_chest.m2", + value = "purge_impact_chest.m2", + }, + { + fileId = "166666", + text = "purge_new_impact_chest.m2", + value = "purge_new_impact_chest.m2", + }, + { + fileId = "166667", + text = "purify_base.m2", + value = "purify_base.m2", + }, + { + fileId = "4058678", + text = "purplearenaflag_spell.m2", + value = "purplearenaflag_spell.m2", + }, + { + fileId = "166672", + text = "purpleghost_state.m2", + value = "purpleghost_state.m2", + }, + { + fileId = "4058677", + text = "purplehordeflag_spell.m2", + value = "purplehordeflag_spell.m2", + }, + { + fileId = "166673", + text = "pyroblast_blue_missile.m2", + value = "pyroblast_blue_missile.m2", + }, + { + fileId = "166674", + text = "pyroblast_missile.m2", + value = "pyroblast_missile.m2", + }, + { + fileId = "166675", + text = "rag_firenova_area.m2", + value = "rag_firenova_area.m2", + }, + { + fileId = "166676", + text = "rainofcandys_impact_base.m2", + value = "rainofcandys_impact_base.m2", + }, + { + fileId = "166677", + text = "rainoffire_impact_base.m2", + value = "rainoffire_impact_base.m2", + }, + { + fileId = "166678", + text = "rainoffire_missile.m2", + value = "rainoffire_missile.m2", + }, + { + fileId = "166679", + text = "rake.m2", + value = "rake.m2", + }, + { + fileId = "166681", + text = "rampage_state_head.m2", + value = "rampage_state_head.m2", + }, + { + fileId = "166682", + text = "rapidfire_base.m2", + value = "rapidfire_base.m2", + }, + { + fileId = "166684", + text = "readiness_impact_chest.m2", + value = "readiness_impact_chest.m2", + }, + { + fileId = "166685", + text = "recklessness_impact_chest.m2", + value = "recklessness_impact_chest.m2", + }, + { + fileId = "240999", + text = "redctfflag_spell.m2", + value = "redctfflag_spell.m2", + }, + { + fileId = "166690", + text = "reddustcloud.m2", + value = "reddustcloud.m2", + }, + { + fileId = "166691", + text = "redemption_base.m2", + value = "redemption_base.m2", + }, + { + fileId = "166692", + text = "redghost_state.m2", + value = "redghost_state.m2", + }, + { + fileId = "166693", + text = "redradiationfog.m2", + value = "redradiationfog.m2", + }, + { + fileId = "166694", + text = "rejuvenation_impact_base.m2", + value = "rejuvenation_impact_base.m2", + }, + { + fileId = "166695", + text = "removecurse_base.m2", + value = "removecurse_base.m2", + }, + { + fileId = "166696", + text = "renew_base.m2", + value = "renew_base.m2", + }, + { + fileId = "166697", + text = "renew_chest.m2", + value = "renew_chest.m2", + }, + { + fileId = "166698", + text = "reputationlevelup.m2", + value = "reputationlevelup.m2", + }, + { + fileId = "166699", + text = "resfx.m2", + value = "resfx.m2", + }, + { + fileId = "166700", + text = "resist_immune_effect.m2", + value = "resist_immune_effect.m2", + }, + { + fileId = "166701", + text = "resistanceaura_base.m2", + value = "resistanceaura_base.m2", + }, + { + fileId = "166702", + text = "resistfrost_chest.m2", + value = "resistfrost_chest.m2", + }, + { + fileId = "166703", + text = "restoration_impact_base.m2", + value = "restoration_impact_base.m2", + }, + { + fileId = "166704", + text = "resurrection_low_base.m2", + value = "resurrection_low_base.m2", + }, + { + fileId = "166705", + text = "retaliation_state_chest.m2", + value = "retaliation_state_chest.m2", + }, + { + fileId = "166707", + text = "retributionaura_base.m2", + value = "retributionaura_base.m2", + }, + { + fileId = "166708", + text = "retributionaurared_base.m2", + value = "retributionaurared_base.m2", + }, + { + fileId = "166709", + text = "revivepet_impact_base.m2", + value = "revivepet_impact_base.m2", + }, + { + fileId = "166731", + text = "ribbontrail.m2", + value = "ribbontrail.m2", + }, + { + fileId = "166732", + text = "righteousfury_chest.m2", + value = "righteousfury_chest.m2", + }, + { + fileId = "166733", + text = "righteousnessaura_base.m2", + value = "righteousnessaura_base.m2", + }, + { + fileId = "324681", + text = "ring_of_smoke.m2", + value = "ring_of_smoke.m2", + }, + { + fileId = "324991", + text = "ring_of_smoke_fwd.m2", + value = "ring_of_smoke_fwd.m2", + }, + { + fileId = "166734", + text = "ritual_arcane_precast_base.m2", + value = "ritual_arcane_precast_base.m2", + }, + { + fileId = "166735", + text = "ritual_fire_precast_base.m2", + value = "ritual_fire_precast_base.m2", + }, + { + fileId = "166736", + text = "ritual_frost_precast_base.m2", + value = "ritual_frost_precast_base.m2", + }, + { + fileId = "166737", + text = "ritualsummoning_precast_base.m2", + value = "ritualsummoning_precast_base.m2", + }, + { + fileId = "166739", + text = "rocketblast.m2", + value = "rocketblast.m2", + }, + { + fileId = "241000", + text = "rocketblast_down.m2", + value = "rocketblast_down.m2", + }, + { + fileId = "166740", + text = "rocketlauncher_cast.m2", + value = "rocketlauncher_cast.m2", + }, + { + fileId = "166741", + text = "rocketlauncher_precast.m2", + value = "rocketlauncher_precast.m2", + }, + { + fileId = "166743", + text = "rockyfrost_nova_state.m2", + value = "rockyfrost_nova_state.m2", + }, + { + fileId = "241001", + text = "rogue_trick_of_the_trade_impact.m2", + value = "rogue_trick_of_the_trade_impact.m2", + }, + { + fileId = "241002", + text = "rogue_trick_of_the_trade_state.m2", + value = "rogue_trick_of_the_trade_state.m2", + }, + { + fileId = "166744", + text = "romancandle_a_01.m2", + value = "romancandle_a_01.m2", + }, + { + fileId = "350836", + text = "rshoulder_mail_raidshaman_h_01spell.m2", + value = "rshoulder_mail_raidshaman_h_01spell.m2", + }, + { + fileId = "352518", + text = "rshoulder_mail_raidshaman_h_02spell_green.m2", + value = "rshoulder_mail_raidshaman_h_02spell_green.m2", + }, + { + fileId = "352519", + text = "rshoulder_mail_raidshaman_h_02spell_red.m2", + value = "rshoulder_mail_raidshaman_h_02spell_red.m2", + }, + { + fileId = "305293", + text = "rshoulder_robe_plague_a_01_spell.m2", + value = "rshoulder_robe_plague_a_01_spell.m2", + }, + { + fileId = "345789", + text = "rshoulder_robe_plague_a_01_spell_green.m2", + value = "rshoulder_robe_plague_a_01_spell_green.m2", + }, + { + fileId = "345748", + text = "rshoulder_robe_plague_a_01_spell_purple.m2", + value = "rshoulder_robe_plague_a_01_spell_purple.m2", + }, + { + fileId = "331093", + text = "saberlash_impact.m2", + value = "saberlash_impact.m2", + }, + { + fileId = "241006", + text = "sacred_cleansing_impact.m2", + value = "sacred_cleansing_impact.m2", + }, + { + fileId = "166759", + text = "sandvortex_state_base.m2", + value = "sandvortex_state_base.m2", + }, + { + fileId = "166760", + text = "sandworm_attackeffects.m2", + value = "sandworm_attackeffects.m2", + }, + { + fileId = "166761", + text = "sap_cast_base.m2", + value = "sap_cast_base.m2", + }, + { + fileId = "166762", + text = "sap_impact_chest.m2", + value = "sap_impact_chest.m2", + }, + { + fileId = "166763", + text = "sap_state_head.m2", + value = "sap_state_head.m2", + }, + { + fileId = "166764", + text = "savageblow_impact_chest.m2", + value = "savageblow_impact_chest.m2", + }, + { + fileId = "241009", + text = "sc_ctfflag_spell.m2", + value = "sc_ctfflag_spell.m2", + }, + { + fileId = "166766", + text = "scorch_low_chest.m2", + value = "scorch_low_chest.m2", + }, + { + fileId = "166767", + text = "scorpidshot_missile.m2", + value = "scorpidshot_missile.m2", + }, + { + fileId = "166768", + text = "scorpidsting_impact_base.m2", + value = "scorpidsting_impact_base.m2", + }, + { + fileId = "166769", + text = "sealofblood_impact_base.m2", + value = "sealofblood_impact_base.m2", + }, + { + fileId = "166770", + text = "sealofcommand_impact_base.m2", + value = "sealofcommand_impact_base.m2", + }, + { + fileId = "166771", + text = "sealofcrusader_impact.m2", + value = "sealofcrusader_impact.m2", + }, + { + fileId = "166772", + text = "sealoffury_impact_base.m2", + value = "sealoffury_impact_base.m2", + }, + { + fileId = "166773", + text = "sealoflight_impact_base.m2", + value = "sealoflight_impact_base.m2", + }, + { + fileId = "166774", + text = "sealofmight_impact_base.m2", + value = "sealofmight_impact_base.m2", + }, + { + fileId = "166775", + text = "sealofmight_low_base.m2", + value = "sealofmight_low_base.m2", + }, + { + fileId = "166776", + text = "sealofprotection_impact_base.m2", + value = "sealofprotection_impact_base.m2", + }, + { + fileId = "166777", + text = "sealofrighteous_impact_base.m2", + value = "sealofrighteous_impact_base.m2", + }, + { + fileId = "166778", + text = "sealofsacrifice_impact_base.m2", + value = "sealofsacrifice_impact_base.m2", + }, + { + fileId = "166779", + text = "sealofsalvation_impact_base.m2", + value = "sealofsalvation_impact_base.m2", + }, + { + fileId = "166780", + text = "sealofvengeance_impact_base.m2", + value = "sealofvengeance_impact_base.m2", + }, + { + fileId = "166781", + text = "sealofwisdom_impact_base.m2", + value = "sealofwisdom_impact_base.m2", + }, + { + fileId = "166782", + text = "sealofwrath_impact_base.m2", + value = "sealofwrath_impact_base.m2", + }, + { + fileId = "166783", + text = "seduction_state_head.m2", + value = "seduction_state_head.m2", + }, + { + fileId = "166784", + text = "seedofcorruption_state.m2", + value = "seedofcorruption_state.m2", + }, + { + fileId = "166785", + text = "seepinggaseous_fel_nova.m2", + value = "seepinggaseous_fel_nova.m2", + }, + { + fileId = "166786", + text = "seepinggaseous_nova.m2", + value = "seepinggaseous_nova.m2", + }, + { + fileId = "166788", + text = "sensedemons_impact_head.m2", + value = "sensedemons_impact_head.m2", + }, + { + fileId = "166789", + text = "shadesofdarkness_cast.m2", + value = "shadesofdarkness_cast.m2", + }, + { + fileId = "166790", + text = "shadow_dotparticle.m2", + value = "shadow_dotparticle.m2", + }, + { + fileId = "166791", + text = "shadow_fissure_base.m2", + value = "shadow_fissure_base.m2", + }, + { + fileId = "252134", + text = "shadow_fissure_baseblue.m2", + value = "shadow_fissure_baseblue.m2", + }, + { + fileId = "166792", + text = "shadow_form_precast.m2", + value = "shadow_form_precast.m2", + }, + { + fileId = "166793", + text = "shadow_frost_weapon_effect.m2", + value = "shadow_frost_weapon_effect.m2", + }, + { + fileId = "166794", + text = "shadow_impactbuff_base.m2", + value = "shadow_impactbuff_base.m2", + }, + { + fileId = "166795", + text = "shadow_impactdd_high_chest.m2", + value = "shadow_impactdd_high_chest.m2", + }, + { + fileId = "166796", + text = "shadow_impactdd_low_chest.m2", + value = "shadow_impactdd_low_chest.m2", + }, + { + fileId = "654834", + text = "shadow_impactdd_lownoskull_chest.m2", + value = "shadow_impactdd_lownoskull_chest.m2", + }, + { + fileId = "166797", + text = "shadow_impactdd_med_base.m2", + value = "shadow_impactdd_med_base.m2", + }, + { + fileId = "166798", + text = "shadow_impactdd_med_chest.m2", + value = "shadow_impactdd_med_chest.m2", + }, + { + fileId = "166799", + text = "shadow_impactdd_uber_chest.m2", + value = "shadow_impactdd_uber_chest.m2", + }, + { + fileId = "166800", + text = "shadow_impactdot_med_chest.m2", + value = "shadow_impactdot_med_chest.m2", + }, + { + fileId = "166801", + text = "shadow_impactdot_med_head.m2", + value = "shadow_impactdot_med_head.m2", + }, + { + fileId = "166802", + text = "shadow_mend_impact.m2", + value = "shadow_mend_impact.m2", + }, + { + fileId = "166803", + text = "shadow_nova_area.m2", + value = "shadow_nova_area.m2", + }, + { + fileId = "166804", + text = "shadow_nova_area_noprojection.m2", + value = "shadow_nova_area_noprojection.m2", + }, + { + fileId = "166805", + text = "shadow_precast_high_base.m2", + value = "shadow_precast_high_base.m2", + }, + { + fileId = "166806", + text = "shadow_precast_high_hand.m2", + value = "shadow_precast_high_hand.m2", + }, + { + fileId = "166807", + text = "shadow_precast_low_hand.m2", + value = "shadow_precast_low_hand.m2", + }, + { + fileId = "166808", + text = "shadow_precast_med_base.m2", + value = "shadow_precast_med_base.m2", + }, + { + fileId = "166809", + text = "shadow_precast_med_hand.m2", + value = "shadow_precast_med_hand.m2", + }, + { + fileId = "166810", + text = "shadow_precast_uber_base.m2", + value = "shadow_precast_uber_base.m2", + }, + { + fileId = "166811", + text = "shadow_precast_uber_hand.m2", + value = "shadow_precast_uber_hand.m2", + }, + { + fileId = "304178", + text = "shadow_rune_impact_base.m2", + value = "shadow_rune_impact_base.m2", + }, + { + fileId = "304183", + text = "shadow_rune_shield_impact_base.m2", + value = "shadow_rune_shield_impact_base.m2", + }, + { + fileId = "166812", + text = "shadow_snare_high_base.m2", + value = "shadow_snare_high_base.m2", + }, + { + fileId = "166813", + text = "shadow_strikes_state_hand.m2", + value = "shadow_strikes_state_hand.m2", + }, + { + fileId = "166814", + text = "shadowbolt_chest_impact.m2", + value = "shadowbolt_chest_impact.m2", + }, + { + fileId = "166815", + text = "shadowbolt_missile.m2", + value = "shadowbolt_missile.m2", + }, + { + fileId = "166816", + text = "shadowbolt_missile_noribbon.m2", + value = "shadowbolt_missile_noribbon.m2", + }, + { + fileId = "241011", + text = "shadowdance_state.m2", + value = "shadowdance_state.m2", + }, + { + fileId = "166817", + text = "shadowflame_cast_hand.m2", + value = "shadowflame_cast_hand.m2", + }, + { + fileId = "166818", + text = "shadowflame_caster.m2", + value = "shadowflame_caster.m2", + }, + { + fileId = "166819", + text = "shadowflame_impact.m2", + value = "shadowflame_impact.m2", + }, + { + fileId = "166820", + text = "shadowflame_state.m2", + value = "shadowflame_state.m2", + }, + { + fileId = "166821", + text = "shadowfury_impact_base.m2", + value = "shadowfury_impact_base.m2", + }, + { + fileId = "166822", + text = "shadowmissile.m2", + value = "shadowmissile.m2", + }, + { + fileId = "304542", + text = "shadowmissile_noshadow.m2", + value = "shadowmissile_noshadow.m2", + }, + { + fileId = "345806", + text = "shadowmourne_cast_high.m2", + value = "shadowmourne_cast_high.m2", + }, + { + fileId = "345807", + text = "shadowmourne_cast_low.m2", + value = "shadowmourne_cast_low.m2", + }, + { + fileId = "345751", + text = "shadowmourne_cast_med.m2", + value = "shadowmourne_cast_med.m2", + }, + { + fileId = "345808", + text = "shadowmourne_missile.m2", + value = "shadowmourne_missile.m2", + }, + { + fileId = "166823", + text = "shadowprotection_chest.m2", + value = "shadowprotection_chest.m2", + }, + { + fileId = "166824", + text = "shadowreflect_state_chest.m2", + value = "shadowreflect_state_chest.m2", + }, + { + fileId = "166826", + text = "shadowshield_impact.m2", + value = "shadowshield_impact.m2", + }, + { + fileId = "166827", + text = "shadowshield_state_base.m2", + value = "shadowshield_state_base.m2", + }, + { + fileId = "166828", + text = "shadowsteps_fx.m2", + value = "shadowsteps_fx.m2", + }, + { + fileId = "166829", + text = "shadowstrike_impact_chest.m2", + value = "shadowstrike_impact_chest.m2", + }, + { + fileId = "166830", + text = "shadowward_impact_chest.m2", + value = "shadowward_impact_chest.m2", + }, + { + fileId = "166831", + text = "shadowword_death_impact.m2", + value = "shadowword_death_impact.m2", + }, + { + fileId = "166832", + text = "shadowwordbefuddle_head.m2", + value = "shadowwordbefuddle_head.m2", + }, + { + fileId = "166833", + text = "shadowworddominate_chest.m2", + value = "shadowworddominate_chest.m2", + }, + { + fileId = "166834", + text = "shadowwordfumble_head.m2", + value = "shadowwordfumble_head.m2", + }, + { + fileId = "166835", + text = "shadowwordpain_chest.m2", + value = "shadowwordpain_chest.m2", + }, + { + fileId = "166836", + text = "shadowwordsilence_breath.m2", + value = "shadowwordsilence_breath.m2", + }, + { + fileId = "241012", + text = "shaman_ancestralawakening.m2", + value = "shaman_ancestralawakening.m2", + }, + { + fileId = "241013", + text = "shaman_astralshift.m2", + value = "shaman_astralshift.m2", + }, + { + fileId = "241014", + text = "shaman_earthliving_ground.m2", + value = "shaman_earthliving_ground.m2", + }, + { + fileId = "241015", + text = "shaman_earthliving_target.m2", + value = "shaman_earthliving_target.m2", + }, + { + fileId = "241016", + text = "shaman_healing_wave.m2", + value = "shaman_healing_wave.m2", + }, + { + fileId = "241017", + text = "shaman_lavaburst.m2", + value = "shaman_lavaburst.m2", + }, + { + fileId = "311326", + text = "shaman_lavaburst_green.m2", + value = "shaman_lavaburst_green.m2", + }, + { + fileId = "311327", + text = "shaman_lavaburst_green_missile.m2", + value = "shaman_lavaburst_green_missile.m2", + }, + { + fileId = "241018", + text = "shaman_lavaburst_missile.m2", + value = "shaman_lavaburst_missile.m2", + }, + { + fileId = "241019", + text = "shaman_spiritlink.m2", + value = "shaman_spiritlink.m2", + }, + { + fileId = "241020", + text = "shaman_thunder.m2", + value = "shaman_thunder.m2", + }, + { + fileId = "241021", + text = "shaman_thunder_hold.m2", + value = "shaman_thunder_hold.m2", + }, + { + fileId = "241022", + text = "shaman_tidal_force.m2", + value = "shaman_tidal_force.m2", + }, + { + fileId = "333782", + text = "shaman_windshear.m2", + value = "shaman_windshear.m2", + }, + { + fileId = "166837", + text = "shamanisticrage_cast_hand.m2", + value = "shamanisticrage_cast_hand.m2", + }, + { + fileId = "166838", + text = "shamanisticrage_state_hand.m2", + value = "shamanisticrage_state_hand.m2", + }, + { + fileId = "166840", + text = "shellshield_state_base.m2", + value = "shellshield_state_base.m2", + }, + { + fileId = "241024", + text = "shield_of_vengeance_cast.m2", + value = "shield_of_vengeance_cast.m2", + }, + { + fileId = "241025", + text = "shield_of_vengeance_impact.m2", + value = "shield_of_vengeance_impact.m2", + }, + { + fileId = "166841", + text = "shieldbash_impact_chest.m2", + value = "shieldbash_impact_chest.m2", + }, + { + fileId = "166842", + text = "shieldwall_impact_base.m2", + value = "shieldwall_impact_base.m2", + }, + { + fileId = "241027", + text = "shieldwall_impact_base_blue.m2", + value = "shieldwall_impact_base_blue.m2", + }, + { + fileId = "241028", + text = "shieldwall_impact_base_red.m2", + value = "shieldwall_impact_base_red.m2", + }, + { + fileId = "166843", + text = "shieldwallwar_impact_base.m2", + value = "shieldwallwar_impact_base.m2", + }, + { + fileId = "166844", + text = "shock_impact_chest.m2", + value = "shock_impact_chest.m2", + }, + { + fileId = "166845", + text = "shock_missile.m2", + value = "shock_missile.m2", + }, + { + fileId = "166875", + text = "shout_cast.m2", + value = "shout_cast.m2", + }, + { + fileId = "241035", + text = "siegetank_missile.m2", + value = "siegetank_missile.m2", + }, + { + fileId = "166877", + text = "sinisterstrike_base_cast.m2", + value = "sinisterstrike_base_cast.m2", + }, + { + fileId = "166878", + text = "sinisterstrike_impact_chest.m2", + value = "sinisterstrike_impact_chest.m2", + }, + { + fileId = "166881", + text = "skull.m2", + value = "skull.m2", + }, + { + fileId = "166882", + text = "skull180.m2", + value = "skull180.m2", + }, + { + fileId = "166890", + text = "slam_impact_chest.m2", + value = "slam_impact_chest.m2", + }, + { + fileId = "166891", + text = "sleep_state_head.m2", + value = "sleep_state_head.m2", + }, + { + fileId = "166892", + text = "slicedice_chest.m2", + value = "slicedice_chest.m2", + }, + { + fileId = "166893", + text = "slicedice_impact_chest.m2", + value = "slicedice_impact_chest.m2", + }, + { + fileId = "166896", + text = "slimelesser_missile.m2", + value = "slimelesser_missile.m2", + }, + { + fileId = "166897", + text = "slimelesserexplode_missile.m2", + value = "slimelesserexplode_missile.m2", + }, + { + fileId = "338508", + text = "slimelesserexplode_missile_no_flip.m2", + value = "slimelesserexplode_missile_no_flip.m2", + }, + { + fileId = "166898", + text = "slow_impact_base.m2", + value = "slow_impact_base.m2", + }, + { + fileId = "166899", + text = "slowingstrike_cast_hand.m2", + value = "slowingstrike_cast_hand.m2", + }, + { + fileId = "166900", + text = "slowingstrike_impact_base.m2", + value = "slowingstrike_impact_base.m2", + }, + { + fileId = "166901", + text = "slowingstrike_impact_chest.m2", + value = "slowingstrike_impact_chest.m2", + }, + { + fileId = "166902", + text = "smash_impact_chest.m2", + value = "smash_impact_chest.m2", + }, + { + fileId = "166905", + text = "smokeflare_blue.m2", + value = "smokeflare_blue.m2", + }, + { + fileId = "166906", + text = "smokeflare_green.m2", + value = "smokeflare_green.m2", + }, + { + fileId = "166907", + text = "smokeflare_purple.m2", + value = "smokeflare_purple.m2", + }, + { + fileId = "166908", + text = "smokeflare_red.m2", + value = "smokeflare_red.m2", + }, + { + fileId = "166909", + text = "smokeflare_white.m2", + value = "smokeflare_white.m2", + }, + { + fileId = "241039", + text = "snakespin.m2", + value = "snakespin.m2", + }, + { + fileId = "241040", + text = "snakespin_hold.m2", + value = "snakespin_hold.m2", + }, + { + fileId = "355806", + text = "snow_tempest_state.m2", + value = "snow_tempest_state.m2", + }, + { + fileId = "166912", + text = "snowball_impact_chest.m2", + value = "snowball_impact_chest.m2", + }, + { + fileId = "166913", + text = "snowballpowdery_impact_base.m2", + value = "snowballpowdery_impact_base.m2", + }, + { + fileId = "306880", + text = "snowflakecreature_var1.m2", + value = "snowflakecreature_var1.m2", + }, + { + fileId = "334824", + text = "snowflakecreature_var1_missile.m2", + value = "snowflakecreature_var1_missile.m2", + }, + { + fileId = "306881", + text = "snowflakecreature_var2.m2", + value = "snowflakecreature_var2.m2", + }, + { + fileId = "166918", + text = "sonicboom_missile_high.m2", + value = "sonicboom_missile_high.m2", + }, + { + fileId = "166919", + text = "sonicwave_cast.m2", + value = "sonicwave_cast.m2", + }, + { + fileId = "166920", + text = "sonicwave_cast_down.m2", + value = "sonicwave_cast_down.m2", + }, + { + fileId = "166921", + text = "sonicwave_missile.m2", + value = "sonicwave_missile.m2", + }, + { + fileId = "166922", + text = "soothingkiss_impact_head.m2", + value = "soothingkiss_impact_head.m2", + }, + { + fileId = "166923", + text = "soulfunnel_impact_chest.m2", + value = "soulfunnel_impact_chest.m2", + }, + { + fileId = "166924", + text = "soulshatter_cast.m2", + value = "soulshatter_cast.m2", + }, + { + fileId = "166925", + text = "soulshatter_impact.m2", + value = "soulshatter_impact.m2", + }, + { + fileId = "166926", + text = "soulshatter_missile.m2", + value = "soulshatter_missile.m2", + }, + { + fileId = "341900", + text = "soulshatter_missileblue.m2", + value = "soulshatter_missileblue.m2", + }, + { + fileId = "166927", + text = "soulstoneresurrection_base.m2", + value = "soulstoneresurrection_base.m2", + }, + { + fileId = "320104", + text = "soulstoneresurrection_base_02.m2", + value = "soulstoneresurrection_base_02.m2", + }, + { + fileId = "166930", + text = "sparktrail.m2", + value = "sparktrail.m2", + }, + { + fileId = "166931", + text = "spawn_impact_base.m2", + value = "spawn_impact_base.m2", + }, + { + fileId = "166932", + text = "spellbreak_cast_base.m2", + value = "spellbreak_cast_base.m2", + }, + { + fileId = "166934", + text = "spelllevelup.m2", + value = "spelllevelup.m2", + }, + { + fileId = "166935", + text = "spellobject_bomb.m2", + value = "spellobject_bomb.m2", + }, + { + fileId = "166936", + text = "spellobject_boomerang.m2", + value = "spellobject_boomerang.m2", + }, + { + fileId = "2199509", + text = "spellobject_invisibletrap.m2", + value = "spellobject_invisibletrap.m2", + }, + { + fileId = "166938", + text = "spellobject_smithinghammer.m2", + value = "spellobject_smithinghammer.m2", + }, + { + fileId = "166939", + text = "spellobject_wrench.m2", + value = "spellobject_wrench.m2", + }, + { + fileId = "166940", + text = "spellreflection_state_shield.m2", + value = "spellreflection_state_shield.m2", + }, + { + fileId = "166941", + text = "spellsteal_impact_chest.m2", + value = "spellsteal_impact_chest.m2", + }, + { + fileId = "166942", + text = "spellsteal_missile.m2", + value = "spellsteal_missile.m2", + }, + { + fileId = "241042", + text = "spike2_impact_base.m2", + value = "spike2_impact_base.m2", + }, + { + fileId = "166944", + text = "spike_impact_base.m2", + value = "spike_impact_base.m2", + }, + { + fileId = "166945", + text = "spike_low_base.m2", + value = "spike_low_base.m2", + }, + { + fileId = "166947", + text = "spikes_area.m2", + value = "spikes_area.m2", + }, + { + fileId = "166950", + text = "spiritarmor_impact_head.m2", + value = "spiritarmor_impact_head.m2", + }, + { + fileId = "341983", + text = "sporeling_01.m2", + value = "sporeling_01.m2", + }, + { + fileId = "166951", + text = "sprint_cast_base.m2", + value = "sprint_cast_base.m2", + }, + { + fileId = "166952", + text = "sprint_impact_chest.m2", + value = "sprint_impact_chest.m2", + }, + { + fileId = "241044", + text = "starfall_state_nosun.m2", + value = "starfall_state_nosun.m2", + }, + { + fileId = "166973", + text = "starfire_area.m2", + value = "starfire_area.m2", + }, + { + fileId = "166980", + text = "starshards_impact_base.m2", + value = "starshards_impact_base.m2", + }, + { + fileId = "241045", + text = "stayofexecution_impact.m2", + value = "stayofexecution_impact.m2", + }, + { + fileId = "166981", + text = "steam.m2", + value = "steam.m2", + }, + { + fileId = "166982", + text = "stoneform_state_base.m2", + value = "stoneform_state_base.m2", + }, + { + fileId = "166985", + text = "strike_cast_chest.m2", + value = "strike_cast_chest.m2", + }, + { + fileId = "166986", + text = "strike_impact_chest.m2", + value = "strike_impact_chest.m2", + }, + { + fileId = "166988", + text = "stunswirl_state_head.m2", + value = "stunswirl_state_head.m2", + }, + { + fileId = "166990", + text = "summerfest_roseshower_impact_base.m2", + value = "summerfest_roseshower_impact_base.m2", + }, + { + fileId = "166991", + text = "summon_precast_hand.m2", + value = "summon_precast_hand.m2", + }, + { + fileId = "166992", + text = "summonghouls.m2", + value = "summonghouls.m2", + }, + { + fileId = "249505", + text = "summonground_blizzard.m2", + value = "summonground_blizzard.m2", + }, + { + fileId = "334807", + text = "summonground_blizzard_state.m2", + value = "summonground_blizzard_state.m2", + }, + { + fileId = "249506", + text = "summonground_rainoffire.m2", + value = "summonground_rainoffire.m2", + }, + { + fileId = "166993", + text = "summonpet_cast_impact_base.m2", + value = "summonpet_cast_impact_base.m2", + }, + { + fileId = "166994", + text = "summonpet_impact_base.m2", + value = "summonpet_impact_base.m2", + }, + { + fileId = "166995", + text = "summonwarhorse_impact_base.m2", + value = "summonwarhorse_impact_base.m2", + }, + { + fileId = "166996", + text = "sunder_impact_chest.m2", + value = "sunder_impact_chest.m2", + }, + { + fileId = "249507", + text = "sunfire_impact_base.m2", + value = "sunfire_impact_base.m2", + }, + { + fileId = "166997", + text = "sunwell_beamfx.m2", + value = "sunwell_beamfx.m2", + }, + { + fileId = "304283", + text = "sunwell_beamfx_3s.m2", + value = "sunwell_beamfx_3s.m2", + }, + { + fileId = "166998", + text = "sunwell_fel_portal.m2", + value = "sunwell_fel_portal.m2", + }, + { + fileId = "166999", + text = "sunwell_fire_barrier.m2", + value = "sunwell_fire_barrier.m2", + }, + { + fileId = "167000", + text = "sunwell_fire_barrier_ext.m2", + value = "sunwell_fire_barrier_ext.m2", + }, + { + fileId = "167001", + text = "sunwell_groundfx.m2", + value = "sunwell_groundfx.m2", + }, + { + fileId = "167002", + text = "sunwell_wallfx.m2", + value = "sunwell_wallfx.m2", + }, + { + fileId = "167003", + text = "sweepingstrike_impact_chest.m2", + value = "sweepingstrike_impact_chest.m2", + }, + { + fileId = "167004", + text = "swipecaster.m2", + value = "swipecaster.m2", + }, + { + fileId = "167005", + text = "swipeimpact.m2", + value = "swipeimpact.m2", + }, + { + fileId = "344274", + text = "sword_1h_queldelar_d_01_spell.m2", + value = "sword_1h_queldelar_d_01_spell.m2", + }, + { + fileId = "167006", + text = "symbolofhope_impact_base.m2", + value = "symbolofhope_impact_base.m2", + }, + { + fileId = "167090", + text = "tankarda_spellobject.m2", + value = "tankarda_spellobject.m2", + }, + { + fileId = "241094", + text = "tankardb_spellobject.m2", + value = "tankardb_spellobject.m2", + }, + { + fileId = "167092", + text = "taunt_cast.m2", + value = "taunt_cast.m2", + }, + { + fileId = "167093", + text = "taunt_head.m2", + value = "taunt_head.m2", + }, + { + fileId = "241095", + text = "taunt_head_orange.m2", + value = "taunt_head_orange.m2", + }, + { + fileId = "241096", + text = "taunt_head_yellow.m2", + value = "taunt_head_yellow.m2", + }, + { + fileId = "167094", + text = "teleport.m2", + value = "teleport.m2", + }, + { + fileId = "249508", + text = "thanksgiving_cranberry.m2", + value = "thanksgiving_cranberry.m2", + }, + { + fileId = "305622", + text = "thanksgiving_cranberry_missile_hitbounce.m2", + value = "thanksgiving_cranberry_missile_hitbounce.m2", + }, + { + fileId = "249509", + text = "thanksgiving_pie.m2", + value = "thanksgiving_pie.m2", + }, + { + fileId = "305623", + text = "thanksgiving_pie_missile_hitbounce.m2", + value = "thanksgiving_pie_missile_hitbounce.m2", + }, + { + fileId = "249510", + text = "thanksgiving_plate.m2", + value = "thanksgiving_plate.m2", + }, + { + fileId = "249511", + text = "thanksgiving_stuffing.m2", + value = "thanksgiving_stuffing.m2", + }, + { + fileId = "305624", + text = "thanksgiving_stuffing_missile_hitbounce.m2", + value = "thanksgiving_stuffing_missile_hitbounce.m2", + }, + { + fileId = "249512", + text = "thanksgiving_turkey.m2", + value = "thanksgiving_turkey.m2", + }, + { + fileId = "305625", + text = "thanksgiving_turkey_missile_hitbounce.m2", + value = "thanksgiving_turkey_missile_hitbounce.m2", + }, + { + fileId = "249513", + text = "thanksgiving_yams.m2", + value = "thanksgiving_yams.m2", + }, + { + fileId = "305626", + text = "thanksgiving_yams_missile_hitbounce.m2", + value = "thanksgiving_yams_missile_hitbounce.m2", + }, + { + fileId = "241101", + text = "the_art_of_war_impact.m2", + value = "the_art_of_war_impact.m2", + }, + { + fileId = "167112", + text = "thorns_base.m2", + value = "thorns_base.m2", + }, + { + fileId = "167113", + text = "thorns_damage_base.m2", + value = "thorns_damage_base.m2", + }, + { + fileId = "167114", + text = "thorns_low_chest.m2", + value = "thorns_low_chest.m2", + }, + { + fileId = "167115", + text = "thorns_state_base.m2", + value = "thorns_state_base.m2", + }, + { + fileId = "167116", + text = "thorns_state_base_s.m2", + value = "thorns_state_base_s.m2", + }, + { + fileId = "167117", + text = "threatreduce_impact_head.m2", + value = "threatreduce_impact_head.m2", + }, + { + fileId = "167118", + text = "throatshot_impact_chest.m2", + value = "throatshot_impact_chest.m2", + }, + { + fileId = "167120", + text = "thunderclap_cast_base.m2", + value = "thunderclap_cast_base.m2", + }, + { + fileId = "241104", + text = "titanium_weaponchain_01.m2", + value = "titanium_weaponchain_01.m2", + }, + { + fileId = "167128", + text = "torch_missile.m2", + value = "torch_missile.m2", + }, + { + fileId = "167129", + text = "torchlit.m2", + value = "torchlit.m2", + }, + { + fileId = "167130", + text = "torchspell.m2", + value = "torchspell.m2", + }, + { + fileId = "167132", + text = "totemb_spellobject.m2", + value = "totemb_spellobject.m2", + }, + { + fileId = "307489", + text = "tournament_brewfest_pennant.m2", + value = "tournament_brewfest_pennant.m2", + }, + { + fileId = "294392", + text = "tournament_shield_green.m2", + value = "tournament_shield_green.m2", + }, + { + fileId = "294393", + text = "tournament_shield_red.m2", + value = "tournament_shield_red.m2", + }, + { + fileId = "294394", + text = "tournament_shield_yellow.m2", + value = "tournament_shield_yellow.m2", + }, + { + fileId = "167134", + text = "tranquility_area.m2", + value = "tranquility_area.m2", + }, + { + fileId = "167135", + text = "tranquility_impact_base.m2", + value = "tranquility_impact_base.m2", + }, + { + fileId = "167136", + text = "transport_ship_ud_fx.m2", + value = "transport_ship_ud_fx.m2", + }, + { + fileId = "167139", + text = "trickortreat_treat_head.m2", + value = "trickortreat_treat_head.m2", + }, + { + fileId = "167140", + text = "trickortreat_trick_head.m2", + value = "trickortreat_trick_head.m2", + }, + { + fileId = "241106", + text = "trueshot_aura_cast_base.m2", + value = "trueshot_aura_cast_base.m2", + }, + { + fileId = "241107", + text = "turnthetables_impact.m2", + value = "turnthetables_impact.m2", + }, + { + fileId = "167141", + text = "turnundead_impact.m2", + value = "turnundead_impact.m2", + }, + { + fileId = "249516", + text = "ulduar_blackhole.m2", + value = "ulduar_blackhole.m2", + }, + { + fileId = "310425", + text = "ulduar_blackhole_h.m2", + value = "ulduar_blackhole_h.m2", + }, + { + fileId = "250130", + text = "ulduar_bosssmoke.m2", + value = "ulduar_bosssmoke.m2", + }, + { + fileId = "249517", + text = "ulduar_missile.m2", + value = "ulduar_missile.m2", + }, + { + fileId = "249518", + text = "ulduar_starmissile.m2", + value = "ulduar_starmissile.m2", + }, + { + fileId = "167143", + text = "undying_strength_impact_chest.m2", + value = "undying_strength_impact_chest.m2", + }, + { + fileId = "241108", + text = "unfairadvantage_cast.m2", + value = "unfairadvantage_cast.m2", + }, + { + fileId = "167144", + text = "unholyshackles_state_base.m2", + value = "unholyshackles_state_base.m2", + }, + { + fileId = "167145", + text = "unitcube.m2", + value = "unitcube.m2", + }, + { + fileId = "167146", + text = "unstableaffliction_impact_chest.m2", + value = "unstableaffliction_impact_chest.m2", + }, + { + fileId = "167147", + text = "unyielding_will_impact_chest.m2", + value = "unyielding_will_impact_chest.m2", + }, + { + fileId = "241109", + text = "utgarde_mirror_fx.m2", + value = "utgarde_mirror_fx.m2", + }, + { + fileId = "294489", + text = "valanry_proc_01.m2", + value = "valanry_proc_01.m2", + }, + { + fileId = "167148", + text = "valentinefirework.m2", + value = "valentinefirework.m2", + }, + { + fileId = "167150", + text = "vampiricembrace_state_base.m2", + value = "vampiricembrace_state_base.m2", + }, + { + fileId = "167151", + text = "vanish_cast_base.m2", + value = "vanish_cast_base.m2", + }, + { + fileId = "167152", + text = "vengeance_state_hand.m2", + value = "vengeance_state_hand.m2", + }, + { + fileId = "167153", + text = "victory_rush_impact.m2", + value = "victory_rush_impact.m2", + }, + { + fileId = "167155", + text = "vrykulharpoon.m2", + value = "vrykulharpoon.m2", + }, + { + fileId = "167156", + text = "warlock_atrocity.m2", + value = "warlock_atrocity.m2", + }, + { + fileId = "241110", + text = "warlock_backdraft.m2", + value = "warlock_backdraft.m2", + }, + { + fileId = "167157", + text = "warlock_decimate_impact.m2", + value = "warlock_decimate_impact.m2", + }, + { + fileId = "167158", + text = "warlock_decimate_missile.m2", + value = "warlock_decimate_missile.m2", + }, + { + fileId = "167159", + text = "warlock_decimate_state.m2", + value = "warlock_decimate_state.m2", + }, + { + fileId = "241111", + text = "warlock_demonic_empathy.m2", + value = "warlock_demonic_empathy.m2", + }, + { + fileId = "241112", + text = "warlock_demonic_empowerment.m2", + value = "warlock_demonic_empowerment.m2", + }, + { + fileId = "167160", + text = "warlock_demoniccircle_summon.m2", + value = "warlock_demoniccircle_summon.m2", + }, + { + fileId = "167161", + text = "warlock_demoniccircle_teleport.m2", + value = "warlock_demoniccircle_teleport.m2", + }, + { + fileId = "167162", + text = "warlock_haunt_impact.m2", + value = "warlock_haunt_impact.m2", + }, + { + fileId = "167163", + text = "warlock_haunt_missile.m2", + value = "warlock_haunt_missile.m2", + }, + { + fileId = "167164", + text = "warlock_haunt_state.m2", + value = "warlock_haunt_state.m2", + }, + { + fileId = "167165", + text = "warlock_shadowflame.m2", + value = "warlock_shadowflame.m2", + }, + { + fileId = "167166", + text = "warrior_bladestorm.m2", + value = "warrior_bladestorm.m2", + }, + { + fileId = "167167", + text = "warrior_bloodbath.m2", + value = "warrior_bloodbath.m2", + }, + { + fileId = "167168", + text = "warrior_bloodsurge.m2", + value = "warrior_bloodsurge.m2", + }, + { + fileId = "241113", + text = "warrior_devastate.m2", + value = "warrior_devastate.m2", + }, + { + fileId = "334825", + text = "warrior_devastate_axe.m2", + value = "warrior_devastate_axe.m2", + }, + { + fileId = "241114", + text = "warrior_heroicthrow_impact.m2", + value = "warrior_heroicthrow_impact.m2", + }, + { + fileId = "241115", + text = "warrior_heroicthrow_missile.m2", + value = "warrior_heroicthrow_missile.m2", + }, + { + fileId = "167169", + text = "warrior_safeguard.m2", + value = "warrior_safeguard.m2", + }, + { + fileId = "167170", + text = "warrior_shockwave_area.m2", + value = "warrior_shockwave_area.m2", + }, + { + fileId = "167171", + text = "warrior_shockwave_impact.m2", + value = "warrior_shockwave_impact.m2", + }, + { + fileId = "254562", + text = "warrior_shockwave_nopulse.m2", + value = "warrior_shockwave_nopulse.m2", + }, + { + fileId = "241116", + text = "warrior_sweepingstrikes.m2", + value = "warrior_sweepingstrikes.m2", + }, + { + fileId = "241117", + text = "warrior_vigilance.m2", + value = "warrior_vigilance.m2", + }, + { + fileId = "253425", + text = "water_explosion.m2", + value = "water_explosion.m2", + }, + { + fileId = "167172", + text = "water_nova.m2", + value = "water_nova.m2", + }, + { + fileId = "167174", + text = "waterbolt_missile_low.m2", + value = "waterbolt_missile_low.m2", + }, + { + fileId = "167175", + text = "waterbreathing_impact_base.m2", + value = "waterbreathing_impact_base.m2", + }, + { + fileId = "167177", + text = "waterbubble.m2", + value = "waterbubble.m2", + }, + { + fileId = "167178", + text = "waterelemental_impact_base.m2", + value = "waterelemental_impact_base.m2", + }, + { + fileId = "167179", + text = "waterelementallow_impact_base.m2", + value = "waterelementallow_impact_base.m2", + }, + { + fileId = "167182", + text = "waterliquidbreath.m2", + value = "waterliquidbreath.m2", + }, + { + fileId = "167183", + text = "watershield_impact_base.m2", + value = "watershield_impact_base.m2", + }, + { + fileId = "167184", + text = "watershield_state_base.m2", + value = "watershield_state_base.m2", + }, + { + fileId = "167185", + text = "watershield_state_base_s.m2", + value = "watershield_state_base_s.m2", + }, + { + fileId = "167186", + text = "watersteam_impact.m2", + value = "watersteam_impact.m2", + }, + { + fileId = "167189", + text = "waterwalking_impact_head.m2", + value = "waterwalking_impact_head.m2", + }, + { + fileId = "167191", + text = "wave_water.m2", + value = "wave_water.m2", + }, + { + fileId = "241119", + text = "waylay_state.m2", + value = "waylay_state.m2", + }, + { + fileId = "167194", + text = "web_missile.m2", + value = "web_missile.m2", + }, + { + fileId = "167195", + text = "web_state.m2", + value = "web_state.m2", + }, + { + fileId = "167196", + text = "webspin.m2", + value = "webspin.m2", + }, + { + fileId = "331094", + text = "well_of_souls_base.m2", + value = "well_of_souls_base.m2", + }, + { + fileId = "167198", + text = "wellofsouls_base.m2", + value = "wellofsouls_base.m2", + }, + { + fileId = "167199", + text = "whirlwind_state_base.m2", + value = "whirlwind_state_base.m2", + }, + { + fileId = "167200", + text = "whirlwindgeo1.m2", + value = "whirlwindgeo1.m2", + }, + { + fileId = "167201", + text = "whirlwindgeo2.m2", + value = "whirlwindgeo2.m2", + }, + { + fileId = "167202", + text = "whirlwindgeowhite.m2", + value = "whirlwindgeowhite.m2", + }, + { + fileId = "167206", + text = "whiteradiationfog.m2", + value = "whiteradiationfog.m2", + }, + { + fileId = "348086", + text = "windblast.m2", + value = "windblast.m2", + }, + { + fileId = "241120", + text = "wineglass_01_spellobject.m2", + value = "wineglass_01_spellobject.m2", + }, + { + fileId = "241121", + text = "wineglass_02_spellobject.m2", + value = "wineglass_02_spellobject.m2", + }, + { + fileId = "167211", + text = "wisdomaura_impact_base.m2", + value = "wisdomaura_impact_base.m2", + }, + { + fileId = "167212", + text = "wrath_impact_chest.m2", + value = "wrath_impact_chest.m2", + }, + { + fileId = "167213", + text = "wrath_missile.m2", + value = "wrath_missile.m2", + }, + { + fileId = "167214", + text = "wrath_precast_hand.m2", + value = "wrath_precast_hand.m2", + }, + { + fileId = "241124", + text = "wrongfully_accused_impact.m2", + value = "wrongfully_accused_impact.m2", + }, + { + fileId = "241125", + text = "xplosion_dust_impact.m2", + value = "xplosion_dust_impact.m2", + }, + { + fileId = "241126", + text = "xplosion_fel_impact.m2", + value = "xplosion_fel_impact.m2", + }, + { + fileId = "241127", + text = "xplosion_fire_impact.m2", + value = "xplosion_fire_impact.m2", + }, + { + fileId = "315385", + text = "xplosion_fire_impact_02.m2", + value = "xplosion_fire_impact_02.m2", + }, + { + fileId = "254262", + text = "xplosion_fire_impact_blue.m2", + value = "xplosion_fire_impact_blue.m2", + }, + { + fileId = "253571", + text = "xplosion_frost_impact.m2", + value = "xplosion_frost_impact.m2", + }, + { + fileId = "349187", + text = "xplosion_frost_impact_b.m2", + value = "xplosion_frost_impact_b.m2", + }, + { + fileId = "253572", + text = "xplosion_lightning_impact.m2", + value = "xplosion_lightning_impact.m2", + }, + { + fileId = "253573", + text = "xplosion_nature_impact.m2", + value = "xplosion_nature_impact.m2", + }, + { + fileId = "349960", + text = "yoggsaron_green.m2", + value = "yoggsaron_green.m2", + }, + { + fileId = "167224", + text = "zangarmarsh_arcane_impact.m2", + value = "zangarmarsh_arcane_impact.m2", + }, + { + fileId = "167225", + text = "zangarmarsh_arcane_missile.m2", + value = "zangarmarsh_arcane_missile.m2", + }, + { + fileId = "167229", + text = "zig_missile.m2", + value = "zig_missile.m2", + }, + { + fileId = "241128", + text = "zulaman_firedoor_unit.m2", + value = "zulaman_firedoor_unit.m2", + }, + }, + text = "spells", + value = "spells", + }, + { + children = { + { + children = { + { + fileId = "2353357", + text = "boartest.m2", + value = "boartest.m2", + }, + }, + text = "boartest", + value = "boartest", + }, + }, + text = "test", + value = "test", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189077", + text = "xyz.m2", + value = "xyz.m2", + }, + }, + text = "boxtest", + value = "boxtest", + }, + { + children = { + { + fileId = "189078", + text = "shadertest_01.m2", + value = "shadertest_01.m2", + }, + }, + text = "shader", + value = "shader", + }, + }, + text = "arttest", + value = "arttest", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "189079", + text = "bootybayentrance_02.m2", + value = "bootybayentrance_02.m2", + }, + }, + text = "bootyentrance", + value = "bootyentrance", + }, + { + children = { + { + fileId = "189085", + text = "fishdeadblue.m2", + value = "fishdeadblue.m2", + }, + { + fileId = "189086", + text = "fishdeadgreen.m2", + value = "fishdeadgreen.m2", + }, + { + fileId = "189087", + text = "fishdeadorange.m2", + value = "fishdeadorange.m2", + }, + { + fileId = "189088", + text = "fishdeadpurple.m2", + value = "fishdeadpurple.m2", + }, + { + fileId = "189089", + text = "fishfrenzyblue.m2", + value = "fishfrenzyblue.m2", + }, + { + fileId = "189090", + text = "fishfrenzygreen.m2", + value = "fishfrenzygreen.m2", + }, + { + fileId = "189091", + text = "fishrack.m2", + value = "fishrack.m2", + }, + }, + text = "deadfish", + value = "deadfish", + }, + { + children = { + { + fileId = "189092", + text = "fishingbox.m2", + value = "fishingbox.m2", + }, + }, + text = "fishingbox", + value = "fishingbox", + }, + { + children = { + { + fileId = "189093", + text = "fishingpole01.m2", + value = "fishingpole01.m2", + }, + { + fileId = "189094", + text = "fishingpole02.m2", + value = "fishingpole02.m2", + }, + }, + text = "fishingpoles", + value = "fishingpoles", + }, + { + children = { + { + fileId = "189095", + text = "goblinstatuebooty.m2", + value = "goblinstatuebooty.m2", + }, + }, + text = "goblinstatue", + value = "goblinstatue", + }, + { + children = { + { + fileId = "189097", + text = "harpoon01.m2", + value = "harpoon01.m2", + }, + }, + text = "harpoons", + value = "harpoons", + }, + { + children = { + { + fileId = "189099", + text = "sharkmodel01.m2", + value = "sharkmodel01.m2", + }, + }, + text = "sharkmodels", + value = "sharkmodels", + }, + }, + text = "passivedoodad", + value = "passivedoodad", + }, + }, + text = "bootybay", + value = "bootybay", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189103", + text = "darkironnode.m2", + value = "darkironnode.m2", + }, + { + fileId = "189104", + text = "darkironnodeparticlerock.m2", + value = "darkironnodeparticlerock.m2", + }, + }, + text = "darkironnode", + value = "darkironnode", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "189105", + text = "deadheadboar.m2", + value = "deadheadboar.m2", + }, + { + fileId = "189106", + text = "deadheaddeer.m2", + value = "deadheaddeer.m2", + }, + }, + text = "animalheads", + value = "animalheads", + }, + { + children = { + { + fileId = "189110", + text = "ashpeople01.m2", + value = "ashpeople01.m2", + }, + { + fileId = "189112", + text = "ashpeople02.m2", + value = "ashpeople02.m2", + }, + { + fileId = "189113", + text = "ashpeople03.m2", + value = "ashpeople03.m2", + }, + { + fileId = "189114", + text = "ashpeople04.m2", + value = "ashpeople04.m2", + }, + { + fileId = "189115", + text = "ashpeople05.m2", + value = "ashpeople05.m2", + }, + }, + text = "ashpeople", + value = "ashpeople", + }, + { + children = { + { + fileId = "189118", + text = "orcbonfire.m2", + value = "orcbonfire.m2", + }, + { + fileId = "189119", + text = "orcbonfire_blue.m2", + value = "orcbonfire_blue.m2", + }, + { + fileId = "189120", + text = "orcbonfireoff.m2", + value = "orcbonfireoff.m2", + }, + }, + text = "bonfire", + value = "bonfire", + }, + { + children = { + { + fileId = "189124", + text = "burningropebridge.m2", + value = "burningropebridge.m2", + }, + }, + text = "bridges", + value = "bridges", + }, + { + children = { + { + fileId = "189126", + text = "burninggiantwheel.m2", + value = "burninggiantwheel.m2", + }, + }, + text = "burninggiantwheel", + value = "burninggiantwheel", + }, + { + children = { + { + fileId = "189127", + text = "burningsteppscliffrock01.m2", + value = "burningsteppscliffrock01.m2", + }, + { + fileId = "189128", + text = "burningsteppscliffrock02.m2", + value = "burningsteppscliffrock02.m2", + }, + { + fileId = "189129", + text = "burningsteppscliffrock03.m2", + value = "burningsteppscliffrock03.m2", + }, + { + fileId = "189130", + text = "burningsteppscliffrock04.m2", + value = "burningsteppscliffrock04.m2", + }, + { + fileId = "189131", + text = "burningsteppscliffrock05.m2", + value = "burningsteppscliffrock05.m2", + }, + { + fileId = "189132", + text = "burningsteppscliffrock06.m2", + value = "burningsteppscliffrock06.m2", + }, + }, + text = "cliffrocks", + value = "cliffrocks", + }, + { + children = { + { + fileId = "189134", + text = "fallingembers.m2", + value = "fallingembers.m2", + }, + }, + text = "fallingembers", + value = "fallingembers", + }, + { + children = { + { + fileId = "189135", + text = "burningsteppesfence.m2", + value = "burningsteppesfence.m2", + }, + { + fileId = "189136", + text = "burningsteppesfencechain.m2", + value = "burningsteppesfencechain.m2", + }, + { + fileId = "189137", + text = "burningsteppesfencepost.m2", + value = "burningsteppesfencepost.m2", + }, + }, + text = "fences", + value = "fences", + }, + { + children = { + { + fileId = "189141", + text = "lavaaltar.m2", + value = "lavaaltar.m2", + }, + }, + text = "lavaaltar", + value = "lavaaltar", + }, + { + children = { + { + fileId = "189147", + text = "lavabridge.m2", + value = "lavabridge.m2", + }, + }, + text = "lavabridge", + value = "lavabridge", + }, + { + children = { + { + fileId = "189151", + text = "lavafallsblackrock01.m2", + value = "lavafallsblackrock01.m2", + }, + { + fileId = "189152", + text = "lavafallsblackrock02.m2", + value = "lavafallsblackrock02.m2", + }, + { + fileId = "189153", + text = "lavafallsblackrock03.m2", + value = "lavafallsblackrock03.m2", + }, + { + fileId = "189154", + text = "lavafallsblackrock04.m2", + value = "lavafallsblackrock04.m2", + }, + }, + text = "lavafalls", + value = "lavafalls", + }, + { + children = { + { + fileId = "189158", + text = "lavapillar01.m2", + value = "lavapillar01.m2", + }, + { + fileId = "189159", + text = "lavapillar02.m2", + value = "lavapillar02.m2", + }, + { + fileId = "189160", + text = "lavapillar03.m2", + value = "lavapillar03.m2", + }, + { + fileId = "189161", + text = "lavapillar04.m2", + value = "lavapillar04.m2", + }, + }, + text = "lavapillar", + value = "lavapillar", + }, + { + children = { + { + fileId = "189165", + text = "lavaplug01.m2", + value = "lavaplug01.m2", + }, + { + fileId = "189166", + text = "lavaplug02.m2", + value = "lavaplug02.m2", + }, + }, + text = "lavaplugs", + value = "lavaplugs", + }, + { + children = { + { + fileId = "189170", + text = "lavashrine01.m2", + value = "lavashrine01.m2", + }, + { + fileId = "189171", + text = "lavashrine02.m2", + value = "lavashrine02.m2", + }, + { + fileId = "189172", + text = "lavashrine03.m2", + value = "lavashrine03.m2", + }, + { + fileId = "189173", + text = "lavashrine04.m2", + value = "lavashrine04.m2", + }, + { + fileId = "189178", + text = "searinggorgelavashrine.m2", + value = "searinggorgelavashrine.m2", + }, + }, + text = "lavashrine", + value = "lavashrine", + }, + { + children = { + { + fileId = "189179", + text = "lotharstatue.m2", + value = "lotharstatue.m2", + }, + }, + text = "lotharstatue", + value = "lotharstatue", + }, + { + children = { + { + fileId = "189180", + text = "ogreheadpike.m2", + value = "ogreheadpike.m2", + }, + }, + text = "ogreheadpike", + value = "ogreheadpike", + }, + { + children = { + { + fileId = "189186", + text = "orcanvilstoneburningsteppes.m2", + value = "orcanvilstoneburningsteppes.m2", + }, + }, + text = "orcanvilstoneburningsteppes", + value = "orcanvilstoneburningsteppes", + }, + { + children = { + { + fileId = "189187", + text = "orcstoneburialpyre.m2", + value = "orcstoneburialpyre.m2", + }, + { + fileId = "189188", + text = "orcstoneburialpyrebody.m2", + value = "orcstoneburialpyrebody.m2", + }, + }, + text = "orcburialpyres", + value = "orcburialpyres", + }, + { + children = { + { + fileId = "189193", + text = "orcsmallfoundrypit.m2", + value = "orcsmallfoundrypit.m2", + }, + }, + text = "orcfoundrypit", + value = "orcfoundrypit", + }, + { + children = { + { + fileId = "189196", + text = "orcsleepmat01.m2", + value = "orcsleepmat01.m2", + }, + { + fileId = "189197", + text = "orcsleepmat02.m2", + value = "orcsleepmat02.m2", + }, + { + fileId = "189198", + text = "orcsleepmat03.m2", + value = "orcsleepmat03.m2", + }, + }, + text = "orcsleepmats", + value = "orcsleepmats", + }, + { + children = { + { + fileId = "189200", + text = "orctent.m2", + value = "orctent.m2", + }, + }, + text = "orctents", + value = "orctents", + }, + { + children = { + { + fileId = "189204", + text = "orctoolrackburningsteppes.m2", + value = "orctoolrackburningsteppes.m2", + }, + }, + text = "orctoolrackburningsteppes", + value = "orctoolrackburningsteppes", + }, + { + children = { + { + fileId = "189208", + text = "pentagramdirt.m2", + value = "pentagramdirt.m2", + }, + }, + text = "pentagramdirt", + value = "pentagramdirt", + }, + { + children = { + { + fileId = "189212", + text = "burningsteppesboulders01.m2", + value = "burningsteppesboulders01.m2", + }, + { + fileId = "189213", + text = "burningsteppesboulders02.m2", + value = "burningsteppesboulders02.m2", + }, + { + fileId = "189214", + text = "burningsteppesboulders03.m2", + value = "burningsteppesboulders03.m2", + }, + { + fileId = "189215", + text = "burningsteppesboulders04.m2", + value = "burningsteppesboulders04.m2", + }, + { + fileId = "189216", + text = "burningsteppesboulders05.m2", + value = "burningsteppesboulders05.m2", + }, + { + fileId = "189217", + text = "burningsteppesboulders06.m2", + value = "burningsteppesboulders06.m2", + }, + { + fileId = "189218", + text = "lavarock01.m2", + value = "lavarock01.m2", + }, + { + fileId = "189219", + text = "lavarock02.m2", + value = "lavarock02.m2", + }, + { + fileId = "189220", + text = "lavarock03.m2", + value = "lavarock03.m2", + }, + { + fileId = "189221", + text = "lavarock04.m2", + value = "lavarock04.m2", + }, + { + fileId = "189222", + text = "lavarock05.m2", + value = "lavarock05.m2", + }, + { + fileId = "189223", + text = "lavarock06.m2", + value = "lavarock06.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "189226", + text = "burnedbeam.m2", + value = "burnedbeam.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "189229", + text = "smeltingcauldron.m2", + value = "smeltingcauldron.m2", + }, + }, + text = "smeltingcauldron", + value = "smeltingcauldron", + }, + { + children = { + { + fileId = "189232", + text = "smeltingweapons.m2", + value = "smeltingweapons.m2", + }, + }, + text = "smeltingweapons", + value = "smeltingweapons", + }, + { + children = { + { + fileId = "189233", + text = "ashtreesmoke01.m2", + value = "ashtreesmoke01.m2", + }, + }, + text = "smoke", + value = "smoke", + }, + { + children = { + { + fileId = "189236", + text = "stoneblock01.m2", + value = "stoneblock01.m2", + }, + { + fileId = "253204", + text = "stoneblock02.m2", + value = "stoneblock02.m2", + }, + { + fileId = "189237", + text = "stonebracket01.m2", + value = "stonebracket01.m2", + }, + { + fileId = "189238", + text = "stonebracket02.m2", + value = "stonebracket02.m2", + }, + { + fileId = "189239", + text = "stonebracket03.m2", + value = "stonebracket03.m2", + }, + }, + text = "stonebrackets", + value = "stonebrackets", + }, + { + children = { + { + fileId = "189240", + text = "stonegolemstatue1-9.m2", + value = "stonegolemstatue1-9.m2", + }, + { + fileId = "189241", + text = "stonegolemstatue2-9.m2", + value = "stonegolemstatue2-9.m2", + }, + { + fileId = "189242", + text = "stonegolemstatue3-9.m2", + value = "stonegolemstatue3-9.m2", + }, + { + fileId = "189243", + text = "stonegolemstatue4-9.m2", + value = "stonegolemstatue4-9.m2", + }, + { + fileId = "189244", + text = "stonegolemstatue5-9.m2", + value = "stonegolemstatue5-9.m2", + }, + { + fileId = "189245", + text = "stonegolemstatue6-9.m2", + value = "stonegolemstatue6-9.m2", + }, + { + fileId = "189246", + text = "stonegolemstatue7-9.m2", + value = "stonegolemstatue7-9.m2", + }, + { + fileId = "189247", + text = "stonegolemstatue8-9.m2", + value = "stonegolemstatue8-9.m2", + }, + { + fileId = "189248", + text = "stonegolemstatue9-9.m2", + value = "stonegolemstatue9-9.m2", + }, + }, + text = "stonegolemstatue", + value = "stonegolemstatue", + }, + { + children = { + { + fileId = "189253", + text = "ashtree01.m2", + value = "ashtree01.m2", + }, + { + fileId = "189254", + text = "ashtree02.m2", + value = "ashtree02.m2", + }, + { + fileId = "189255", + text = "ashtree03.m2", + value = "ashtree03.m2", + }, + { + fileId = "189258", + text = "burningmidtree01.m2", + value = "burningmidtree01.m2", + }, + { + fileId = "189260", + text = "burningmidtree02.m2", + value = "burningmidtree02.m2", + }, + { + fileId = "189262", + text = "burningmidtree03.m2", + value = "burningmidtree03.m2", + }, + { + fileId = "189263", + text = "burningmidtree04.m2", + value = "burningmidtree04.m2", + }, + { + fileId = "189264", + text = "burningsteppestree01.m2", + value = "burningsteppestree01.m2", + }, + { + fileId = "189265", + text = "burningsteppestree02.m2", + value = "burningsteppestree02.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "189270", + text = "volcanicventlarge01.m2", + value = "volcanicventlarge01.m2", + }, + { + fileId = "189271", + text = "volcanicventlargeoff01.m2", + value = "volcanicventlargeoff01.m2", + }, + { + fileId = "189272", + text = "volcanicventmed01.m2", + value = "volcanicventmed01.m2", + }, + { + fileId = "189273", + text = "volcanicventmedoff01.m2", + value = "volcanicventmedoff01.m2", + }, + { + fileId = "189274", + text = "volcanicventsmall01.m2", + value = "volcanicventsmall01.m2", + }, + { + fileId = "189275", + text = "volcanicventsmalloff01.m2", + value = "volcanicventsmalloff01.m2", + }, + }, + text = "volcanicvents", + value = "volcanicvents", + }, + { + children = { + { + fileId = "189280", + text = "warlockshrine.m2", + value = "warlockshrine.m2", + }, + }, + text = "warlockshrine", + value = "warlockshrine", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "burningsteppes", + value = "burningsteppes", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189282", + text = "goblinmeltingpot.m2", + value = "goblinmeltingpot.m2", + }, + }, + text = "goblinmeltingpot", + value = "goblinmeltingpot", + }, + { + fileId = "189287", + text = "lavasink.m2", + value = "lavasink.m2", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "deadmines", + value = "deadmines", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189288", + text = "abandonedhumanguardtower.m2", + value = "abandonedhumanguardtower.m2", + }, + }, + text = "abandonedguardtower", + value = "abandonedguardtower", + }, + { + children = { + { + fileId = "189292", + text = "deadwindrockbridge.m2", + value = "deadwindrockbridge.m2", + }, + }, + text = "rockbridge", + value = "rockbridge", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "189294", + text = "deadwindtotem01.m2", + value = "deadwindtotem01.m2", + }, + { + fileId = "189295", + text = "deadwindtotem02.m2", + value = "deadwindtotem02.m2", + }, + { + fileId = "189296", + text = "deadwindtotem03.m2", + value = "deadwindtotem03.m2", + }, + { + fileId = "189297", + text = "deadwindtotem04.m2", + value = "deadwindtotem04.m2", + }, + }, + text = "deadwindtotems", + value = "deadwindtotems", + }, + { + children = { + { + fileId = "189299", + text = "deadwindhangingbody01.m2", + value = "deadwindhangingbody01.m2", + }, + { + fileId = "189300", + text = "deadwindhangingbody02.m2", + value = "deadwindhangingbody02.m2", + }, + }, + text = "hangingbodies", + value = "hangingbodies", + }, + { + children = { + { + fileId = "189304", + text = "deadwindhangingtree.m2", + value = "deadwindhangingtree.m2", + }, + }, + text = "hangingtree", + value = "hangingtree", + }, + { + children = { + { + fileId = "189307", + text = "kharazan_brick.m2", + value = "kharazan_brick.m2", + }, + }, + text = "kharazan_brick", + value = "kharazan_brick", + }, + { + children = { + { + fileId = "189308", + text = "deadwindpasscliffrock01dnr.m2", + value = "deadwindpasscliffrock01dnr.m2", + }, + { + fileId = "189309", + text = "deadwindpasscliffrock02dnr.m2", + value = "deadwindpasscliffrock02dnr.m2", + }, + { + fileId = "189310", + text = "deadwindpasscliffrock03dnr.m2", + value = "deadwindpasscliffrock03dnr.m2", + }, + { + fileId = "189311", + text = "deadwindpasscliffrock04dnr.m2", + value = "deadwindpasscliffrock04dnr.m2", + }, + { + fileId = "189312", + text = "deadwindpasscliffrock05dnr.m2", + value = "deadwindpasscliffrock05dnr.m2", + }, + { + fileId = "189313", + text = "deadwindpassgroundrock01dnr.m2", + value = "deadwindpassgroundrock01dnr.m2", + }, + { + fileId = "189314", + text = "deadwindpassgroundrock02dnr.m2", + value = "deadwindpassgroundrock02dnr.m2", + }, + { + fileId = "189315", + text = "deadwindpassgroundrock03dnr.m2", + value = "deadwindpassgroundrock03dnr.m2", + }, + { + fileId = "189316", + text = "rockarch01dnr.m2", + value = "rockarch01dnr.m2", + }, + { + fileId = "189317", + text = "rockarch02dnr.m2", + value = "rockarch02dnr.m2", + }, + { + fileId = "189318", + text = "rockarch03dnr.m2", + value = "rockarch03dnr.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "189319", + text = "deadwindpassrocktree01.m2", + value = "deadwindpassrocktree01.m2", + }, + { + fileId = "189322", + text = "deadwindpassrocktree02.m2", + value = "deadwindpassrocktree02.m2", + }, + { + fileId = "189324", + text = "deadwindpassrocktree03.m2", + value = "deadwindpassrocktree03.m2", + }, + { + fileId = "189325", + text = "deadwindpassrocktree04.m2", + value = "deadwindpassrocktree04.m2", + }, + { + fileId = "189326", + text = "deadwindpassrocktree05.m2", + value = "deadwindpassrocktree05.m2", + }, + { + fileId = "189327", + text = "deadwindpassrocktree06.m2", + value = "deadwindpassrocktree06.m2", + }, + { + fileId = "189328", + text = "deadwindpassrocktreebroken01.m2", + value = "deadwindpassrocktreebroken01.m2", + }, + { + fileId = "189329", + text = "deadwindpassrocktreebroken02.m2", + value = "deadwindpassrocktreebroken02.m2", + }, + { + fileId = "189330", + text = "deadwindpassrocktreebroken03.m2", + value = "deadwindpassrocktreebroken03.m2", + }, + }, + text = "rocktrees", + value = "rocktrees", + }, + { + children = { + { + fileId = "189335", + text = "deadwindpassroot01.m2", + value = "deadwindpassroot01.m2", + }, + }, + text = "roots", + value = "roots", + }, + { + children = { + { + fileId = "189336", + text = "deadwindpassmidtree01.m2", + value = "deadwindpassmidtree01.m2", + }, + { + fileId = "189337", + text = "deadwindpassmidtree02.m2", + value = "deadwindpassmidtree02.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "189344", + text = "deadwindhangingweedsgroup01.m2", + value = "deadwindhangingweedsgroup01.m2", + }, + { + fileId = "189345", + text = "deadwindhangingweedsgroup02.m2", + value = "deadwindhangingweedsgroup02.m2", + }, + { + fileId = "189346", + text = "deadwindhangingweedsgroup03.m2", + value = "deadwindhangingweedsgroup03.m2", + }, + { + fileId = "189347", + text = "deadwindhangingweedslarge01.m2", + value = "deadwindhangingweedslarge01.m2", + }, + { + fileId = "189348", + text = "deadwindhangingweedslarge02.m2", + value = "deadwindhangingweedslarge02.m2", + }, + { + fileId = "189349", + text = "deadwindhangingweedssmall01.m2", + value = "deadwindhangingweedssmall01.m2", + }, + { + fileId = "189350", + text = "deadwindhangingweedssmall02.m2", + value = "deadwindhangingweedssmall02.m2", + }, + { + fileId = "189351", + text = "deadwindhangingweedssmall03.m2", + value = "deadwindhangingweedssmall03.m2", + }, + { + fileId = "189352", + text = "deadwindhangingweedssmall04.m2", + value = "deadwindhangingweedssmall04.m2", + }, + }, + text = "weeds", + value = "weeds", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "deadwindpass", + value = "deadwindpass", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189359", + text = "gnolltent02.m2", + value = "gnolltent02.m2", + }, + { + fileId = "189361", + text = "gnolltent03.m2", + value = "gnolltent03.m2", + }, + }, + text = "gnolltent", + value = "gnolltent", + }, + { + children = { + { + fileId = "189375", + text = "gypsywagon.m2", + value = "gypsywagon.m2", + }, + }, + text = "gypsywagon", + value = "gypsywagon", + }, + { + children = { + { + fileId = "189386", + text = "ogremound.m2", + value = "ogremound.m2", + }, + }, + text = "ogremound", + value = "ogremound", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "242690", + text = "duskwood_barn_closed.m2", + value = "duskwood_barn_closed.m2", + }, + }, + text = "barn", + value = "barn", + }, + { + children = { + { + fileId = "189395", + text = "duskwoodbush01.m2", + value = "duskwoodbush01.m2", + }, + { + fileId = "189396", + text = "duskwoodbush02.m2", + value = "duskwoodbush02.m2", + }, + { + fileId = "189397", + text = "duskwoodbush03.m2", + value = "duskwoodbush03.m2", + }, + { + fileId = "189398", + text = "duskwoodbush04.m2", + value = "duskwoodbush04.m2", + }, + { + fileId = "189399", + text = "duskwoodbush05.m2", + value = "duskwoodbush05.m2", + }, + { + fileId = "189400", + text = "duskwoodbush06.m2", + value = "duskwoodbush06.m2", + }, + { + fileId = "189402", + text = "duskwoodbush07.m2", + value = "duskwoodbush07.m2", + }, + { + fileId = "189405", + text = "duskwoodspookybush01.m2", + value = "duskwoodspookybush01.m2", + }, + { + fileId = "189406", + text = "duskwoodspookybush02.m2", + value = "duskwoodspookybush02.m2", + }, + { + fileId = "189407", + text = "duskwoodspookybush03.m2", + value = "duskwoodspookybush03.m2", + }, + { + fileId = "189408", + text = "duskwoodspookybush04.m2", + value = "duskwoodspookybush04.m2", + }, + { + fileId = "189409", + text = "pumpkin01.m2", + value = "pumpkin01.m2", + }, + { + fileId = "189410", + text = "pumpkinpatch01.m2", + value = "pumpkinpatch01.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + fileId = "189411", + text = "duskwoodchasmbridge.m2", + value = "duskwoodchasmbridge.m2", + }, + }, + text = "chasmbridge", + value = "chasmbridge", + }, + { + children = { + { + fileId = "189415", + text = "coffin.m2", + value = "coffin.m2", + }, + }, + text = "coffin", + value = "coffin", + }, + { + children = { + { + fileId = "189416", + text = "coffinlid.m2", + value = "coffinlid.m2", + }, + }, + text = "coffinlid", + value = "coffinlid", + }, + { + children = { + { + fileId = "189417", + text = "duskwoodcoveredbridge.m2", + value = "duskwoodcoveredbridge.m2", + }, + }, + text = "coveredbridge", + value = "coveredbridge", + }, + { + children = { + { + fileId = "189423", + text = "darkshireentrance01.m2", + value = "darkshireentrance01.m2", + }, + }, + text = "darkshireentrance", + value = "darkshireentrance", + }, + { + children = { + { + children = { + { + fileId = "189426", + text = "duskwoodcatails01.m2", + value = "duskwoodcatails01.m2", + }, + }, + text = "duskwoodcatails01", + value = "duskwoodcatails01", + }, + { + children = { + { + fileId = "189427", + text = "duskwoodgrass01.m2", + value = "duskwoodgrass01.m2", + }, + }, + text = "duskwoodgrass01", + value = "duskwoodgrass01", + }, + { + children = { + { + fileId = "189429", + text = "duskwoodlillypad01.m2", + value = "duskwoodlillypad01.m2", + }, + }, + text = "duskwoodlillypad01", + value = "duskwoodlillypad01", + }, + { + children = { + { + fileId = "189432", + text = "duskwoodmushroom01.m2", + value = "duskwoodmushroom01.m2", + }, + }, + text = "duskwoodmushroom01", + value = "duskwoodmushroom01", + }, + { + children = { + { + fileId = "189434", + text = "duskwoodseaweed01.m2", + value = "duskwoodseaweed01.m2", + }, + }, + text = "duskwoodseaweed01", + value = "duskwoodseaweed01", + }, + { + children = { + { + fileId = "189437", + text = "duskwoodthornbush01.m2", + value = "duskwoodthornbush01.m2", + }, + }, + text = "duskwoodthornbush01", + value = "duskwoodthornbush01", + }, + { + children = { + { + fileId = "189438", + text = "duskwoodthornbush02.m2", + value = "duskwoodthornbush02.m2", + }, + }, + text = "duskwoodthornbush02", + value = "duskwoodthornbush02", + }, + { + children = { + { + fileId = "189440", + text = "duskwoodvine01.m2", + value = "duskwoodvine01.m2", + }, + }, + text = "duskwoodvine01", + value = "duskwoodvine01", + }, + { + children = { + { + fileId = "189442", + text = "duskwoodvine02.m2", + value = "duskwoodvine02.m2", + }, + }, + text = "duskwoodvine02", + value = "duskwoodvine02", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + fileId = "189445", + text = "barnduskwood.m2", + value = "barnduskwood.m2", + }, + }, + text = "duskwoodbarn", + value = "duskwoodbarn", + }, + { + children = { + { + fileId = "189452", + text = "duskwoodhaystack.m2", + value = "duskwoodhaystack.m2", + }, + }, + text = "duskwoodhaystack", + value = "duskwoodhaystack", + }, + { + children = { + { + fileId = "189455", + text = "duskwoodhaywagon.m2", + value = "duskwoodhaywagon.m2", + }, + }, + text = "duskwoodhaywagon", + value = "duskwoodhaywagon", + }, + { + children = { + { + fileId = "189457", + text = "duskwoodhearse.m2", + value = "duskwoodhearse.m2", + }, + }, + text = "duskwoodhearse", + value = "duskwoodhearse", + }, + { + children = { + { + fileId = "189458", + text = "duskscarecrow.m2", + value = "duskscarecrow.m2", + }, + }, + text = "duskwoodscarecrow", + value = "duskwoodscarecrow", + }, + { + children = { + { + fileId = "189461", + text = "duskwoodstraw.m2", + value = "duskwoodstraw.m2", + }, + }, + text = "duskwoodstraw", + value = "duskwoodstraw", + }, + { + children = { + { + fileId = "189462", + text = "duskwoodwheat.m2", + value = "duskwoodwheat.m2", + }, + }, + text = "duskwoodwheat", + value = "duskwoodwheat", + }, + { + children = { + { + fileId = "242691", + text = "duskwood_human_farm_closed.m2", + value = "duskwood_human_farm_closed.m2", + }, + { + fileId = "242692", + text = "duskwood_lumbermill.m2", + value = "duskwood_lumbermill.m2", + }, + }, + text = "farm", + value = "farm", + }, + { + children = { + { + fileId = "189464", + text = "duskwoodfencebottom.m2", + value = "duskwoodfencebottom.m2", + }, + { + fileId = "189465", + text = "duskwoodfencebottombroken.m2", + value = "duskwoodfencebottombroken.m2", + }, + { + fileId = "189466", + text = "duskwoodfencebrokensegment.m2", + value = "duskwoodfencebrokensegment.m2", + }, + { + fileId = "189467", + text = "duskwoodfencepost.m2", + value = "duskwoodfencepost.m2", + }, + { + fileId = "189468", + text = "duskwoodfencerail.m2", + value = "duskwoodfencerail.m2", + }, + { + fileId = "189469", + text = "duskwoodfencesegment.m2", + value = "duskwoodfencesegment.m2", + }, + { + fileId = "189470", + text = "duskwoodfencesegment02.m2", + value = "duskwoodfencesegment02.m2", + }, + { + fileId = "189471", + text = "duskwoodfencetop.m2", + value = "duskwoodfencetop.m2", + }, + { + fileId = "189472", + text = "duskwoodfencetopbroken.m2", + value = "duskwoodfencetopbroken.m2", + }, + { + fileId = "189477", + text = "rockwallend.m2", + value = "rockwallend.m2", + }, + { + fileId = "189478", + text = "rockwallrubble.m2", + value = "rockwallrubble.m2", + }, + }, + text = "fence", + value = "fence", + }, + { + children = { + { + fileId = "189480", + text = "duskwoodgate01.m2", + value = "duskwoodgate01.m2", + }, + { + fileId = "189481", + text = "duskwoodtallcemetarygate.m2", + value = "duskwoodtallcemetarygate.m2", + }, + }, + text = "gates", + value = "gates", + }, + { + children = { + { + fileId = "189485", + text = "duskwoodgraveframe.m2", + value = "duskwoodgraveframe.m2", + }, + }, + text = "graveframe", + value = "graveframe", + }, + { + children = { + { + fileId = "189488", + text = "cemetarygate01.m2", + value = "cemetarygate01.m2", + }, + { + fileId = "189491", + text = "gatepost.m2", + value = "gatepost.m2", + }, + { + fileId = "189492", + text = "gatesegment01.m2", + value = "gatesegment01.m2", + }, + { + fileId = "189493", + text = "gatesegment02.m2", + value = "gatesegment02.m2", + }, + { + fileId = "189494", + text = "gatesegment03.m2", + value = "gatesegment03.m2", + }, + }, + text = "irongate", + value = "irongate", + }, + { + children = { + { + fileId = "189496", + text = "duskwoodmausoleum.m2", + value = "duskwoodmausoleum.m2", + }, + { + fileId = "189498", + text = "mausoleumactivedoors.m2", + value = "mausoleumactivedoors.m2", + }, + }, + text = "mausoleum", + value = "mausoleum", + }, + { + children = { + { + fileId = "189499", + text = "duskwoodboulder01.m2", + value = "duskwoodboulder01.m2", + }, + { + fileId = "189500", + text = "duskwoodboulder02.m2", + value = "duskwoodboulder02.m2", + }, + { + fileId = "189501", + text = "duskwoodboulder03.m2", + value = "duskwoodboulder03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "189505", + text = "duskwoodchimney01.m2", + value = "duskwoodchimney01.m2", + }, + { + fileId = "189506", + text = "duskwoodruins01.m2", + value = "duskwoodruins01.m2", + }, + { + fileId = "189507", + text = "duskwoodruins02.m2", + value = "duskwoodruins02.m2", + }, + { + fileId = "189508", + text = "duskwoodruins03.m2", + value = "duskwoodruins03.m2", + }, + { + fileId = "189509", + text = "duskwoodruins04.m2", + value = "duskwoodruins04.m2", + }, + { + fileId = "189510", + text = "duskwoodruinsbeam.m2", + value = "duskwoodruinsbeam.m2", + }, + { + fileId = "189511", + text = "duskwoodruinsbrick.m2", + value = "duskwoodruinsbrick.m2", + }, + { + fileId = "189512", + text = "duskwoodruinsfoundation01.m2", + value = "duskwoodruinsfoundation01.m2", + }, + { + fileId = "189513", + text = "duskwoodruinsfoundation02.m2", + value = "duskwoodruinsfoundation02.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "189516", + text = "duskwoodcs01.m2", + value = "duskwoodcs01.m2", + }, + { + fileId = "189517", + text = "duskwoodcs02.m2", + value = "duskwoodcs02.m2", + }, + { + fileId = "189521", + text = "duskwoodtreespookless01.m2", + value = "duskwoodtreespookless01.m2", + }, + { + fileId = "189522", + text = "duskwoodtreespookless02.m2", + value = "duskwoodtreespookless02.m2", + }, + }, + text = "spooklesstrees", + value = "spooklesstrees", + }, + { + children = { + { + fileId = "242693", + text = "duskwood_stable.m2", + value = "duskwood_stable.m2", + }, + }, + text = "stable", + value = "stable", + }, + { + children = { + { + fileId = "189523", + text = "duskwoodstoneframecorner.m2", + value = "duskwoodstoneframecorner.m2", + }, + { + fileId = "189524", + text = "duskwoodstoneframelong.m2", + value = "duskwoodstoneframelong.m2", + }, + { + fileId = "189525", + text = "duskwoodstoneframeshort.m2", + value = "duskwoodstoneframeshort.m2", + }, + }, + text = "stoneframes", + value = "stoneframes", + }, + { + children = { + { + fileId = "189527", + text = "duskwoodstraw02.m2", + value = "duskwoodstraw02.m2", + }, + }, + text = "straw", + value = "straw", + }, + { + children = { + { + fileId = "189528", + text = "dirtmound01.m2", + value = "dirtmound01.m2", + }, + { + fileId = "189530", + text = "tombstone05.m2", + value = "tombstone05.m2", + }, + { + fileId = "189532", + text = "tombstone06.m2", + value = "tombstone06.m2", + }, + { + fileId = "189534", + text = "tombstone07.m2", + value = "tombstone07.m2", + }, + { + fileId = "189535", + text = "tombstone08.m2", + value = "tombstone08.m2", + }, + { + fileId = "189536", + text = "tombstonemonument01.m2", + value = "tombstonemonument01.m2", + }, + { + fileId = "189538", + text = "tombstonemonument02.m2", + value = "tombstonemonument02.m2", + }, + { + fileId = "189540", + text = "woodcross01.m2", + value = "woodcross01.m2", + }, + { + fileId = "189541", + text = "woodcross02.m2", + value = "woodcross02.m2", + }, + }, + text = "tombs", + value = "tombs", + }, + { + children = { + { + fileId = "189544", + text = "duskwoodbrowntree.m2", + value = "duskwoodbrowntree.m2", + }, + { + fileId = "189545", + text = "duskwoodfallentree.m2", + value = "duskwoodfallentree.m2", + }, + { + fileId = "189546", + text = "duskwoodfallentree02.m2", + value = "duskwoodfallentree02.m2", + }, + { + fileId = "189547", + text = "duskwoodspookytree01.m2", + value = "duskwoodspookytree01.m2", + }, + { + fileId = "189551", + text = "duskwoodspookytree02.m2", + value = "duskwoodspookytree02.m2", + }, + { + fileId = "189552", + text = "duskwoodspookytree03.m2", + value = "duskwoodspookytree03.m2", + }, + { + fileId = "189557", + text = "duskwoodtree05.m2", + value = "duskwoodtree05.m2", + }, + { + fileId = "189558", + text = "duskwoodtree06.m2", + value = "duskwoodtree06.m2", + }, + { + fileId = "189559", + text = "duskwoodtree07.m2", + value = "duskwoodtree07.m2", + }, + { + fileId = "189560", + text = "duskwoodtreecanopy01.m2", + value = "duskwoodtreecanopy01.m2", + }, + { + fileId = "189561", + text = "duskwoodtreecanopy02.m2", + value = "duskwoodtreecanopy02.m2", + }, + { + fileId = "189562", + text = "duskwoodtreecanopy03.m2", + value = "duskwoodtreecanopy03.m2", + }, + { + fileId = "189566", + text = "duskwoodtreestump01.m2", + value = "duskwoodtreestump01.m2", + }, + { + fileId = "189567", + text = "duskwoodtreestump02.m2", + value = "duskwoodtreestump02.m2", + }, + { + fileId = "189571", + text = "duskwoodwhitetree.m2", + value = "duskwoodwhitetree.m2", + }, + { + fileId = "189575", + text = "newduskwoodtreehuge.m2", + value = "newduskwoodtreehuge.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "189580", + text = "duskwoodrockwall.m2", + value = "duskwoodrockwall.m2", + }, + }, + text = "walls", + value = "walls", + }, + { + children = { + { + fileId = "189581", + text = "warningtree.m2", + value = "warningtree.m2", + }, + }, + text = "warningtree", + value = "warningtree", + }, + { + children = { + { + fileId = "189589", + text = "duskwoodwarpgate.m2", + value = "duskwoodwarpgate.m2", + }, + }, + text = "warpgate", + value = "warpgate", + }, + { + children = { + { + fileId = "189595", + text = "webdangle01.m2", + value = "webdangle01.m2", + }, + { + fileId = "189596", + text = "webdangle02.m2", + value = "webdangle02.m2", + }, + { + fileId = "189597", + text = "webstretch01.m2", + value = "webstretch01.m2", + }, + }, + text = "webs", + value = "webs", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "duskwood", + value = "duskwood", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189599", + text = "nsabbeybell.m2", + value = "nsabbeybell.m2", + }, + }, + text = "abbeybell", + value = "abbeybell", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "189601", + text = "blacksmith.m2", + value = "blacksmith.m2", + }, + }, + text = "blacksmith", + value = "blacksmith", + }, + { + children = { + { + fileId = "189610", + text = "elwynnfootbridge.m2", + value = "elwynnfootbridge.m2", + }, + }, + text = "bridges", + value = "bridges", + }, + { + children = { + { + fileId = "189611", + text = "distillery.m2", + value = "distillery.m2", + }, + }, + text = "distillery", + value = "distillery", + }, + { + children = { + { + fileId = "189620", + text = "goldmine.m2", + value = "goldmine.m2", + }, + { + fileId = "189621", + text = "goldminetrackcurve.m2", + value = "goldminetrackcurve.m2", + }, + { + fileId = "189622", + text = "goldminetracks.m2", + value = "goldminetracks.m2", + }, + }, + text = "goldmine", + value = "goldmine", + }, + { + children = { + { + fileId = "189629", + text = "humanguardtower.m2", + value = "humanguardtower.m2", + }, + }, + text = "humanguardtower", + value = "humanguardtower", + }, + { + children = { + { + fileId = "189632", + text = "humanwatchtower.m2", + value = "humanwatchtower.m2", + }, + }, + text = "humanwatchtower", + value = "humanwatchtower", + }, + { + children = { + { + fileId = "189641", + text = "stormwindgate.m2", + value = "stormwindgate.m2", + }, + }, + text = "stormwindentrance", + value = "stormwindentrance", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "189642", + text = "anvil.m2", + value = "anvil.m2", + }, + }, + text = "anvil", + value = "anvil", + }, + { + children = { + { + fileId = "189652", + text = "ballista.m2", + value = "ballista.m2", + }, + }, + text = "ballista", + value = "ballista", + }, + { + children = { + { + fileId = "189657", + text = "ballistaruined.m2", + value = "ballistaruined.m2", + }, + }, + text = "ballistaruined", + value = "ballistaruined", + }, + { + children = { + { + fileId = "189666", + text = "battlegladebanner1.m2", + value = "battlegladebanner1.m2", + }, + }, + text = "battlegladebanner1", + value = "battlegladebanner1", + }, + { + children = { + { + fileId = "189670", + text = "battlegladebanner2.m2", + value = "battlegladebanner2.m2", + }, + }, + text = "battlegladebanner2", + value = "battlegladebanner2", + }, + { + children = { + { + fileId = "189674", + text = "battlegladepolearmskull.m2", + value = "battlegladepolearmskull.m2", + }, + }, + text = "battlegladepolearmskull", + value = "battlegladepolearmskull", + }, + { + children = { + { + fileId = "189676", + text = "battlegladeshield1.m2", + value = "battlegladeshield1.m2", + }, + }, + text = "battlegladeshield1", + value = "battlegladeshield1", + }, + { + children = { + { + fileId = "189678", + text = "battlegladeshield2.m2", + value = "battlegladeshield2.m2", + }, + }, + text = "battlegladeshield2", + value = "battlegladeshield2", + }, + { + children = { + { + fileId = "189680", + text = "battlegladeshield3.m2", + value = "battlegladeshield3.m2", + }, + }, + text = "battlegladeshield3", + value = "battlegladeshield3", + }, + { + children = { + { + fileId = "189682", + text = "battlegladeskullhuman1.m2", + value = "battlegladeskullhuman1.m2", + }, + }, + text = "battlegladeskullhuman1", + value = "battlegladeskullhuman1", + }, + { + children = { + { + fileId = "189684", + text = "battlegladeskullhuman2.m2", + value = "battlegladeskullhuman2.m2", + }, + }, + text = "battlegladeskullhuman2", + value = "battlegladeskullhuman2", + }, + { + children = { + { + fileId = "189685", + text = "battlegladeskullorc1.m2", + value = "battlegladeskullorc1.m2", + }, + }, + text = "battlegladeskullorc1", + value = "battlegladeskullorc1", + }, + { + children = { + { + fileId = "189686", + text = "battlegladeskullorc2.m2", + value = "battlegladeskullorc2.m2", + }, + }, + text = "battlegladeskullorc2", + value = "battlegladeskullorc2", + }, + { + children = { + { + fileId = "189687", + text = "battlegladesword.m2", + value = "battlegladesword.m2", + }, + }, + text = "battlegladesword", + value = "battlegladesword", + }, + { + children = { + { + fileId = "189689", + text = "battlegladeswordskull.m2", + value = "battlegladeswordskull.m2", + }, + }, + text = "battlegladeswordskull", + value = "battlegladeswordskull", + }, + { + children = { + { + fileId = "189690", + text = "battlegladewoodspikes.m2", + value = "battlegladewoodspikes.m2", + }, + }, + text = "battlegladewoodspikes", + value = "battlegladewoodspikes", + }, + { + children = { + { + fileId = "189691", + text = "bellow.m2", + value = "bellow.m2", + }, + }, + text = "bellow", + value = "bellow", + }, + { + children = { + { + fileId = "189692", + text = "elwynnbush01.m2", + value = "elwynnbush01.m2", + }, + { + fileId = "189693", + text = "elwynnbush02.m2", + value = "elwynnbush02.m2", + }, + { + fileId = "189694", + text = "elwynnbush03.m2", + value = "elwynnbush03.m2", + }, + { + fileId = "189695", + text = "elwynnbush04.m2", + value = "elwynnbush04.m2", + }, + { + fileId = "189696", + text = "elwynnbush05.m2", + value = "elwynnbush05.m2", + }, + { + fileId = "189697", + text = "elwynnbush06.m2", + value = "elwynnbush06.m2", + }, + { + fileId = "189698", + text = "elwynnbush07.m2", + value = "elwynnbush07.m2", + }, + { + fileId = "189699", + text = "elwynnbush08.m2", + value = "elwynnbush08.m2", + }, + { + fileId = "189700", + text = "elwynnbush09.m2", + value = "elwynnbush09.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + fileId = "189705", + text = "elwynncampfire.m2", + value = "elwynncampfire.m2", + }, + { + fileId = "189706", + text = "elwynncampfire_blue.m2", + value = "elwynncampfire_blue.m2", + }, + }, + text = "campfire", + value = "campfire", + }, + { + children = { + { + fileId = "189709", + text = "catapult.m2", + value = "catapult.m2", + }, + }, + text = "catapult", + value = "catapult", + }, + { + children = { + { + fileId = "189715", + text = "elwynncliffrock01.m2", + value = "elwynncliffrock01.m2", + }, + { + fileId = "189716", + text = "elwynncliffrock02.m2", + value = "elwynncliffrock02.m2", + }, + { + fileId = "189717", + text = "elwynncliffrock03.m2", + value = "elwynncliffrock03.m2", + }, + { + fileId = "189718", + text = "elwynncliffrock04.m2", + value = "elwynncliffrock04.m2", + }, + { + fileId = "189719", + text = "elwynncliffrock05.m2", + value = "elwynncliffrock05.m2", + }, + }, + text = "cliffrocks", + value = "cliffrocks", + }, + { + children = { + { + fileId = "189723", + text = "corn.m2", + value = "corn.m2", + }, + { + fileId = "189725", + text = "corncrop1.m2", + value = "corncrop1.m2", + }, + { + fileId = "189727", + text = "corncrop2.m2", + value = "corncrop2.m2", + }, + { + fileId = "189728", + text = "corncrop3.m2", + value = "corncrop3.m2", + }, + { + fileId = "189730", + text = "corncropdead.m2", + value = "corncropdead.m2", + }, + { + fileId = "189731", + text = "corncroplowpoly.m2", + value = "corncroplowpoly.m2", + }, + { + fileId = "189732", + text = "corncroprow.m2", + value = "corncroprow.m2", + }, + { + fileId = "189733", + text = "corncroprowlowpoly01.m2", + value = "corncroprowlowpoly01.m2", + }, + { + fileId = "189734", + text = "corncroprowlowpoly02.m2", + value = "corncroprowlowpoly02.m2", + }, + }, + text = "corncrop", + value = "corncrop", + }, + { + children = { + { + children = { + { + fileId = "189739", + text = "elwynncatails01.m2", + value = "elwynncatails01.m2", + }, + }, + text = "elwynncatails01", + value = "elwynncatails01", + }, + { + children = { + { + fileId = "189740", + text = "elwynncatails02.m2", + value = "elwynncatails02.m2", + }, + }, + text = "elwynncatails02", + value = "elwynncatails02", + }, + { + children = { + { + fileId = "189742", + text = "elwynndetailflowers01.m2", + value = "elwynndetailflowers01.m2", + }, + { + fileId = "189743", + text = "elwynndetailflowers02.m2", + value = "elwynndetailflowers02.m2", + }, + }, + text = "elwynndetailflowers", + value = "elwynndetailflowers", + }, + { + children = { + { + fileId = "189744", + text = "elwynndetailgrass01.m2", + value = "elwynndetailgrass01.m2", + }, + { + fileId = "189745", + text = "elwynndetailgrass02.m2", + value = "elwynndetailgrass02.m2", + }, + { + fileId = "189746", + text = "elwynndetailgrass03.m2", + value = "elwynndetailgrass03.m2", + }, + { + fileId = "189747", + text = "elwynndetailgrass04.m2", + value = "elwynndetailgrass04.m2", + }, + }, + text = "elwynndetailgrass", + value = "elwynndetailgrass", + }, + { + children = { + { + fileId = "189749", + text = "elwynndetailrock01.m2", + value = "elwynndetailrock01.m2", + }, + { + fileId = "189750", + text = "elwynndetailrock02.m2", + value = "elwynndetailrock02.m2", + }, + }, + text = "elwynndetailrocks", + value = "elwynndetailrocks", + }, + { + fileId = "189751", + text = "elwynnflower01.m2", + value = "elwynnflower01.m2", + }, + { + fileId = "189752", + text = "elwynnflower02.m2", + value = "elwynnflower02.m2", + }, + { + fileId = "189754", + text = "elwynngrass01.m2", + value = "elwynngrass01.m2", + }, + { + children = { + { + fileId = "189755", + text = "elwynngrass02.m2", + value = "elwynngrass02.m2", + }, + }, + text = "elwynngrass02", + value = "elwynngrass02", + }, + { + children = { + { + fileId = "189757", + text = "elwynngrass1.m2", + value = "elwynngrass1.m2", + }, + }, + text = "elwynngrass1", + value = "elwynngrass1", + }, + { + children = { + { + fileId = "189759", + text = "elwynnlillypad01.m2", + value = "elwynnlillypad01.m2", + }, + }, + text = "elwynnlillypad01", + value = "elwynnlillypad01", + }, + { + fileId = "189760", + text = "elwynnmelon01.m2", + value = "elwynnmelon01.m2", + }, + { + children = { + { + fileId = "189761", + text = "elwynnmushroom01.m2", + value = "elwynnmushroom01.m2", + }, + }, + text = "elwynnmushroom01", + value = "elwynnmushroom01", + }, + { + children = { + { + fileId = "189763", + text = "elwynnpoppy1.m2", + value = "elwynnpoppy1.m2", + }, + }, + text = "elwynnpoppy1", + value = "elwynnpoppy1", + }, + { + children = { + { + fileId = "189765", + text = "elwynnpoppy2.m2", + value = "elwynnpoppy2.m2", + }, + }, + text = "elwynnpoppy2", + value = "elwynnpoppy2", + }, + { + children = { + { + fileId = "189767", + text = "elwynnreeds01.m2", + value = "elwynnreeds01.m2", + }, + }, + text = "elwynnreeds01", + value = "elwynnreeds01", + }, + { + children = { + { + fileId = "189768", + text = "elwynnrock1.m2", + value = "elwynnrock1.m2", + }, + }, + text = "elwynnrock1", + value = "elwynnrock1", + }, + { + children = { + { + fileId = "189770", + text = "elwynnrock2.m2", + value = "elwynnrock2.m2", + }, + }, + text = "elwynnrock2", + value = "elwynnrock2", + }, + { + children = { + { + fileId = "189772", + text = "elwynnseaweed01.m2", + value = "elwynnseaweed01.m2", + }, + }, + text = "elwynnseaweed01", + value = "elwynnseaweed01", + }, + { + children = { + { + fileId = "189774", + text = "elwynnshrub1.m2", + value = "elwynnshrub1.m2", + }, + }, + text = "elwynnshrub1", + value = "elwynnshrub1", + }, + { + children = { + { + fileId = "189777", + text = "elwynnthornbush01.m2", + value = "elwynnthornbush01.m2", + }, + }, + text = "elwynnthornbush01", + value = "elwynnthornbush01", + }, + { + children = { + { + fileId = "189778", + text = "elwynnthornbush02.m2", + value = "elwynnthornbush02.m2", + }, + }, + text = "elwynnthornbush02", + value = "elwynnthornbush02", + }, + { + children = { + { + fileId = "189779", + text = "elwynnvines01.m2", + value = "elwynnvines01.m2", + }, + }, + text = "elwynnvines01", + value = "elwynnvines01", + }, + { + children = { + { + fileId = "189781", + text = "elwynnvines02.m2", + value = "elwynnvines02.m2", + }, + }, + text = "elwynnvines02", + value = "elwynnvines02", + }, + { + children = { + { + fileId = "189784", + text = "elwynnvineyard01.m2", + value = "elwynnvineyard01.m2", + }, + }, + text = "elwynnvineyard", + value = "elwynnvineyard", + }, + { + children = { + { + fileId = "189788", + text = "elwynnwheat01.m2", + value = "elwynnwheat01.m2", + }, + }, + text = "elwynnwheat", + value = "elwynnwheat", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + fileId = "189790", + text = "elwynnfencesimple.m2", + value = "elwynnfencesimple.m2", + }, + { + fileId = "189791", + text = "elwynnfencesimplepost.m2", + value = "elwynnfencesimplepost.m2", + }, + { + fileId = "189792", + text = "elwynnfencetop.m2", + value = "elwynnfencetop.m2", + }, + { + fileId = "189793", + text = "elwynnstonefence.m2", + value = "elwynnstonefence.m2", + }, + { + fileId = "189794", + text = "elwynnstonefencepost.m2", + value = "elwynnstonefencepost.m2", + }, + { + fileId = "189795", + text = "elwynnwoodfence01.m2", + value = "elwynnwoodfence01.m2", + }, + { + fileId = "189796", + text = "elwynnwoodpost01.m2", + value = "elwynnwoodpost01.m2", + }, + }, + text = "elwynnfences", + value = "elwynnfences", + }, + { + children = { + { + fileId = "189802", + text = "eyeofazora.m2", + value = "eyeofazora.m2", + }, + }, + text = "eyeofazora", + value = "eyeofazora", + }, + { + children = { + { + fileId = "189805", + text = "grapebucket01.m2", + value = "grapebucket01.m2", + }, + { + fileId = "189806", + text = "grapebucket02.m2", + value = "grapebucket02.m2", + }, + }, + text = "grapebuckets", + value = "grapebuckets", + }, + { + children = { + { + fileId = "189810", + text = "haystack01.m2", + value = "haystack01.m2", + }, + { + fileId = "189811", + text = "haystack02.m2", + value = "haystack02.m2", + }, + }, + text = "haystacks", + value = "haystacks", + }, + { + children = { + { + fileId = "189815", + text = "jar01.m2", + value = "jar01.m2", + }, + { + fileId = "189816", + text = "jar02.m2", + value = "jar02.m2", + }, + { + fileId = "189817", + text = "jar03.m2", + value = "jar03.m2", + }, + }, + text = "jars", + value = "jars", + }, + { + children = { + { + fileId = "189820", + text = "jug01.m2", + value = "jug01.m2", + }, + { + fileId = "189821", + text = "jug02.m2", + value = "jug02.m2", + }, + }, + text = "jugs", + value = "jugs", + }, + { + children = { + { + fileId = "189825", + text = "lamppost.m2", + value = "lamppost.m2", + }, + }, + text = "lamppost", + value = "lamppost", + }, + { + children = { + { + fileId = "189827", + text = "elwynnminecart.m2", + value = "elwynnminecart.m2", + }, + }, + text = "minecart", + value = "minecart", + }, + { + children = { + { + fileId = "189830", + text = "monumentrock.m2", + value = "monumentrock.m2", + }, + }, + text = "monumentrock", + value = "monumentrock", + }, + { + children = { + { + fileId = "189834", + text = "pick.m2", + value = "pick.m2", + }, + }, + text = "pick", + value = "pick", + }, + { + children = { + { + fileId = "189840", + text = "ruinedcatapult.m2", + value = "ruinedcatapult.m2", + }, + }, + text = "ruinedcatapult", + value = "ruinedcatapult", + }, + { + children = { + { + fileId = "189852", + text = "ruinedfountain.m2", + value = "ruinedfountain.m2", + }, + }, + text = "ruinedfountain", + value = "ruinedfountain", + }, + { + children = { + { + fileId = "189854", + text = "shovel.m2", + value = "shovel.m2", + }, + }, + text = "shovel", + value = "shovel", + }, + { + children = { + { + children = { + { + fileId = "189855", + text = "duskwooddirectionalsign.m2", + value = "duskwooddirectionalsign.m2", + }, + { + fileId = "189857", + text = "goldshiredirectionalsign.m2", + value = "goldshiredirectionalsign.m2", + }, + { + fileId = "189859", + text = "northshiredirectionalsign.m2", + value = "northshiredirectionalsign.m2", + }, + { + fileId = "189862", + text = "runestonedirectionalsign.m2", + value = "runestonedirectionalsign.m2", + }, + { + fileId = "189863", + text = "stormwinddirectionalsign.m2", + value = "stormwinddirectionalsign.m2", + }, + { + fileId = "189866", + text = "westfalldirectionalsign.m2", + value = "westfalldirectionalsign.m2", + }, + }, + text = "directional", + value = "directional", + }, + { + children = { + { + fileId = "189868", + text = "genericsmallsignpost01.m2", + value = "genericsmallsignpost01.m2", + }, + }, + text = "genericposts", + value = "genericposts", + }, + { + children = { + { + fileId = "189878", + text = "humanalchemistsign.m2", + value = "humanalchemistsign.m2", + }, + { + fileId = "189879", + text = "humanbaitandtacklesign.m2", + value = "humanbaitandtacklesign.m2", + }, + { + fileId = "189880", + text = "humanbanksign.m2", + value = "humanbanksign.m2", + }, + { + fileId = "189881", + text = "humanblacksmithsign.m2", + value = "humanblacksmithsign.m2", + }, + { + fileId = "189882", + text = "humanboathousesign.m2", + value = "humanboathousesign.m2", + }, + { + fileId = "189883", + text = "humaninnsign.m2", + value = "humaninnsign.m2", + }, + { + fileId = "189884", + text = "humaninnsignpost.m2", + value = "humaninnsignpost.m2", + }, + { + fileId = "189885", + text = "humanmagicshopsign.m2", + value = "humanmagicshopsign.m2", + }, + { + fileId = "189886", + text = "humantannersign.m2", + value = "humantannersign.m2", + }, + }, + text = "shop", + value = "shop", + }, + }, + text = "signs", + value = "signs", + }, + { + children = { + { + fileId = "189893", + text = "battlegladeboneshumandark.m2", + value = "battlegladeboneshumandark.m2", + }, + { + fileId = "189894", + text = "battlegladebskeletonhumandark.m2", + value = "battlegladebskeletonhumandark.m2", + }, + { + fileId = "189896", + text = "battlegladeskullhumandark.m2", + value = "battlegladeskullhumandark.m2", + }, + { + fileId = "189898", + text = "battlegladespinehumandark.m2", + value = "battlegladespinehumandark.m2", + }, + }, + text = "skeleton", + value = "skeleton", + }, + { + children = { + { + fileId = "189904", + text = "smalldock.m2", + value = "smalldock.m2", + }, + }, + text = "smalldock", + value = "smalldock", + }, + { + children = { + { + fileId = "189906", + text = "spike.m2", + value = "spike.m2", + }, + }, + text = "spike", + value = "spike", + }, + { + children = { + { + fileId = "189908", + text = "lionstatue.m2", + value = "lionstatue.m2", + }, + }, + text = "statue", + value = "statue", + }, + { + children = { + { + fileId = "189910", + text = "stonepyre.m2", + value = "stonepyre.m2", + }, + }, + text = "stonepyre", + value = "stonepyre", + }, + { + children = { + { + children = { + { + fileId = "189914", + text = "roundtable.m2", + value = "roundtable.m2", + }, + }, + text = "roundtable", + value = "roundtable", + }, + }, + text = "tables", + value = "tables", + }, + { + children = { + { + fileId = "189915", + text = "elwynnlog01.m2", + value = "elwynnlog01.m2", + }, + { + fileId = "189916", + text = "elwynnlog02.m2", + value = "elwynnlog02.m2", + }, + }, + text = "tree", + value = "tree", + }, + { + children = { + { + fileId = "189919", + text = "canopylesstree01.m2", + value = "canopylesstree01.m2", + }, + { + fileId = "189920", + text = "canopylesstree02.m2", + value = "canopylesstree02.m2", + }, + { + fileId = "189921", + text = "canopylesstree03.m2", + value = "canopylesstree03.m2", + }, + { + fileId = "189922", + text = "canopylesstree04.m2", + value = "canopylesstree04.m2", + }, + { + fileId = "189923", + text = "elwynnfirtree01.m2", + value = "elwynnfirtree01.m2", + }, + { + children = { + { + fileId = "189924", + text = "elwynnpine01.m2", + value = "elwynnpine01.m2", + }, + { + fileId = "189925", + text = "elwynnpine02.m2", + value = "elwynnpine02.m2", + }, + }, + text = "elwynntree01", + value = "elwynntree01", + }, + { + fileId = "189927", + text = "elwynntreecanopy01.m2", + value = "elwynntreecanopy01.m2", + }, + { + fileId = "189928", + text = "elwynntreecanopy02.m2", + value = "elwynntreecanopy02.m2", + }, + { + fileId = "189929", + text = "elwynntreecanopy03.m2", + value = "elwynntreecanopy03.m2", + }, + { + fileId = "189930", + text = "elwynntreecanopy04.m2", + value = "elwynntreecanopy04.m2", + }, + { + fileId = "189932", + text = "elwynntreemid01.m2", + value = "elwynntreemid01.m2", + }, + { + children = { + { + fileId = "189939", + text = "elwynntreestump01.m2", + value = "elwynntreestump01.m2", + }, + { + fileId = "189940", + text = "elwynntreestump02.m2", + value = "elwynntreestump02.m2", + }, + }, + text = "stumps", + value = "stumps", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "189948", + text = "vineyard.m2", + value = "vineyard.m2", + }, + { + fileId = "189949", + text = "vineyardcube01.m2", + value = "vineyardcube01.m2", + }, + { + fileId = "189950", + text = "vineyardcube02.m2", + value = "vineyardcube02.m2", + }, + { + fileId = "189951", + text = "vineyardlowpoly.m2", + value = "vineyardlowpoly.m2", + }, + { + fileId = "189953", + text = "vineyardwired.m2", + value = "vineyardwired.m2", + }, + }, + text = "vineyard", + value = "vineyard", + }, + { + children = { + { + fileId = "189956", + text = "waterbasin.m2", + value = "waterbasin.m2", + }, + }, + text = "waterbasin", + value = "waterbasin", + }, + { + children = { + { + fileId = "189958", + text = "elwynnmediumwaterfall01.m2", + value = "elwynnmediumwaterfall01.m2", + }, + { + fileId = "189959", + text = "elwynntallwaterfall01.m2", + value = "elwynntallwaterfall01.m2", + }, + }, + text = "waterfall", + value = "waterfall", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "elwynn", + value = "elwynn", + }, + { + children = { + { + children = { + { + fileId = "189960", + text = "karazahn_bridgedoors.m2", + value = "karazahn_bridgedoors.m2", + }, + { + fileId = "189961", + text = "karazahn_chessroomdoors.m2", + value = "karazahn_chessroomdoors.m2", + }, + { + fileId = "189962", + text = "karazahn_cptnqrtzdoors.m2", + value = "karazahn_cptnqrtzdoors.m2", + }, + { + fileId = "189963", + text = "karazahn_diningdoors.m2", + value = "karazahn_diningdoors.m2", + }, + { + fileId = "189964", + text = "karazahn_diningruindoor.m2", + value = "karazahn_diningruindoor.m2", + }, + { + fileId = "189965", + text = "karazahn_gatedoors.m2", + value = "karazahn_gatedoors.m2", + }, + { + fileId = "189966", + text = "karazahn_secretdoor.m2", + value = "karazahn_secretdoor.m2", + }, + { + fileId = "189967", + text = "karazahn_secretdoor01.m2", + value = "karazahn_secretdoor01.m2", + }, + { + fileId = "189968", + text = "karazahn_secretroomdoor.m2", + value = "karazahn_secretroomdoor.m2", + }, + { + fileId = "189969", + text = "karazahn_silverrmdoor01.m2", + value = "karazahn_silverrmdoor01.m2", + }, + { + fileId = "189970", + text = "karazahn_silverrmdoor02.m2", + value = "karazahn_silverrmdoor02.m2", + }, + { + fileId = "189971", + text = "karazahn_stagedoor.m2", + value = "karazahn_stagedoor.m2", + }, + { + fileId = "189972", + text = "karazahnportcullis.m2", + value = "karazahnportcullis.m2", + }, + { + fileId = "189973", + text = "karazhan_observe_door.m2", + value = "karazhan_observe_door.m2", + }, + { + fileId = "189974", + text = "karazhan_red_curtain.m2", + value = "karazhan_red_curtain.m2", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "189980", + text = "karazahnbarrel01.m2", + value = "karazahnbarrel01.m2", + }, + { + fileId = "189981", + text = "karazahnbarrel02.m2", + value = "karazahnbarrel02.m2", + }, + }, + text = "barrel", + value = "barrel", + }, + { + children = { + { + fileId = "189983", + text = "karazahnbonfire01.m2", + value = "karazahnbonfire01.m2", + }, + { + fileId = "189984", + text = "karazahnbonfire02.m2", + value = "karazahnbonfire02.m2", + }, + { + fileId = "189985", + text = "karazahnbonfireblue01.m2", + value = "karazahnbonfireblue01.m2", + }, + }, + text = "bonfire", + value = "bonfire", + }, + { + children = { + { + fileId = "189992", + text = "karazahnbookshelflarge.m2", + value = "karazahnbookshelflarge.m2", + }, + { + fileId = "189993", + text = "karazahnbookshelfsmall.m2", + value = "karazahnbookshelfsmall.m2", + }, + { + fileId = "189994", + text = "karazahnbookshelfxtralarge.m2", + value = "karazahnbookshelfxtralarge.m2", + }, + }, + text = "bookshelves", + value = "bookshelves", + }, + { + children = { + { + fileId = "189997", + text = "kn_brokencart.m2", + value = "kn_brokencart.m2", + }, + { + fileId = "189998", + text = "kn_brokencart02.m2", + value = "kn_brokencart02.m2", + }, + }, + text = "brokencart", + value = "brokencart", + }, + { + children = { + { + fileId = "190000", + text = "booksonfire.m2", + value = "booksonfire.m2", + }, + }, + text = "burningbooks", + value = "burningbooks", + }, + { + children = { + { + fileId = "190006", + text = "karazanchandelier_01.m2", + value = "karazanchandelier_01.m2", + }, + { + fileId = "190007", + text = "karazanchandelier_02.m2", + value = "karazanchandelier_02.m2", + }, + { + fileId = "190008", + text = "karazanchandelier_03.m2", + value = "karazanchandelier_03.m2", + }, + { + fileId = "190009", + text = "karazanchandelier_03_broken.m2", + value = "karazanchandelier_03_broken.m2", + }, + }, + text = "chandeliers", + value = "chandeliers", + }, + { + children = { + { + fileId = "190012", + text = "karazahncrate01.m2", + value = "karazahncrate01.m2", + }, + { + fileId = "190013", + text = "karazahncrate02.m2", + value = "karazahncrate02.m2", + }, + }, + text = "crates", + value = "crates", + }, + { + children = { + { + fileId = "190015", + text = "kn_grainsack01.m2", + value = "kn_grainsack01.m2", + }, + { + fileId = "190016", + text = "kn_grainsack02.m2", + value = "kn_grainsack02.m2", + }, + { + fileId = "190017", + text = "kn_grainsack03.m2", + value = "kn_grainsack03.m2", + }, + { + fileId = "190018", + text = "kn_spilledsack01.m2", + value = "kn_spilledsack01.m2", + }, + }, + text = "grainsacks", + value = "grainsacks", + }, + { + children = { + { + fileId = "190019", + text = "karazahnweb01.m2", + value = "karazahnweb01.m2", + }, + { + fileId = "190020", + text = "karazahnweb02.m2", + value = "karazahnweb02.m2", + }, + { + fileId = "190021", + text = "karazahnweb03.m2", + value = "karazahnweb03.m2", + }, + }, + text = "karazahnwebs", + value = "karazahnwebs", + }, + { + children = { + { + fileId = "190022", + text = "karazahn_owlstatue.m2", + value = "karazahn_owlstatue.m2", + }, + }, + text = "owlstatue", + value = "owlstatue", + }, + { + children = { + { + fileId = "190024", + text = "karazahnpedestals01.m2", + value = "karazahnpedestals01.m2", + }, + { + fileId = "190025", + text = "karazahnpedestals02.m2", + value = "karazahnpedestals02.m2", + }, + }, + text = "pedestals", + value = "pedestals", + }, + { + children = { + { + fileId = "190026", + text = "karazahn_rubble_floating.m2", + value = "karazahn_rubble_floating.m2", + }, + { + fileId = "190027", + text = "karazahnrockrubble01.m2", + value = "karazahnrockrubble01.m2", + }, + { + fileId = "190028", + text = "karazahnrockrubble02.m2", + value = "karazahnrockrubble02.m2", + }, + }, + text = "rubble", + value = "rubble", + }, + { + children = { + { + fileId = "190030", + text = "karazahnsconce01.m2", + value = "karazahnsconce01.m2", + }, + { + fileId = "190031", + text = "karazahnsconce02.m2", + value = "karazahnsconce02.m2", + }, + { + fileId = "190032", + text = "karazahnsconce03.m2", + value = "karazahnsconce03.m2", + }, + { + fileId = "190033", + text = "karazahnsconce04.m2", + value = "karazahnsconce04.m2", + }, + { + fileId = "190034", + text = "karazahnsconce05.m2", + value = "karazahnsconce05.m2", + }, + { + fileId = "190035", + text = "karazahnsconce06.m2", + value = "karazahnsconce06.m2", + }, + { + fileId = "190036", + text = "karazahnsconce07.m2", + value = "karazahnsconce07.m2", + }, + }, + text = "sconces", + value = "sconces", + }, + { + children = { + { + fileId = "190039", + text = "karazahnstarlab.m2", + value = "karazahnstarlab.m2", + }, + }, + text = "starlab", + value = "starlab", + }, + { + children = { + { + fileId = "190041", + text = "karazahntablebig.m2", + value = "karazahntablebig.m2", + }, + { + fileId = "190043", + text = "karazahntablesmall.m2", + value = "karazahntablesmall.m2", + }, + }, + text = "tables", + value = "tables", + }, + { + children = { + { + fileId = "190044", + text = "karazantapestry01.m2", + value = "karazantapestry01.m2", + }, + { + fileId = "190045", + text = "karazantapestry02.m2", + value = "karazantapestry02.m2", + }, + }, + text = "tapestries", + value = "tapestries", + }, + { + children = { + { + fileId = "190056", + text = "karazahn_rj_balcony.m2", + value = "karazahn_rj_balcony.m2", + }, + { + fileId = "190057", + text = "karazahn_rj_moon.m2", + value = "karazahn_rj_moon.m2", + }, + { + fileId = "190058", + text = "karazahn_rj_stars.m2", + value = "karazahn_rj_stars.m2", + }, + { + fileId = "190059", + text = "karazahn_rrh_forest.m2", + value = "karazahn_rrh_forest.m2", + }, + { + fileId = "190060", + text = "karazahn_rrh_house.m2", + value = "karazahn_rrh_house.m2", + }, + { + fileId = "190061", + text = "karazahn_rrh_tree.m2", + value = "karazahn_rrh_tree.m2", + }, + { + fileId = "190062", + text = "karazahn_wo_hay.m2", + value = "karazahn_wo_hay.m2", + }, + { + fileId = "190063", + text = "karazan_wo_brickroad.m2", + value = "karazan_wo_brickroad.m2", + }, + }, + text = "theater", + value = "theater", + }, + { + children = { + { + fileId = "190064", + text = "karazahnthrone01.m2", + value = "karazahnthrone01.m2", + }, + }, + text = "throne", + value = "throne", + }, + { + children = { + { + fileId = "2198647", + text = "karazahndiningrays.m2", + value = "karazahndiningrays.m2", + }, + }, + text = "volumetriclights", + value = "volumetriclights", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "karazahn", + value = "karazahn", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190069", + text = "pvp_bridge_parts01.m2", + value = "pvp_bridge_parts01.m2", + }, + { + fileId = "190070", + text = "pvp_bridge_parts02.m2", + value = "pvp_bridge_parts02.m2", + }, + { + fileId = "190071", + text = "pvp_bridge_parts03.m2", + value = "pvp_bridge_parts03.m2", + }, + { + fileId = "190072", + text = "pvp_bridge_parts04.m2", + value = "pvp_bridge_parts04.m2", + }, + { + fileId = "190073", + text = "pvp_bridge_parts05.m2", + value = "pvp_bridge_parts05.m2", + }, + }, + text = "bridgeruins", + value = "bridgeruins", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "pvp", + value = "pvp", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "242695", + text = "redridge_barn_closed.m2", + value = "redridge_barn_closed.m2", + }, + }, + text = "barn", + value = "barn", + }, + { + children = { + { + fileId = "190076", + text = "redridgebridgebrick01.m2", + value = "redridgebridgebrick01.m2", + }, + { + fileId = "190077", + text = "redridgebridgebrick02.m2", + value = "redridgebridgebrick02.m2", + }, + { + fileId = "190078", + text = "redridgebridgebrick03.m2", + value = "redridgebridgebrick03.m2", + }, + }, + text = "bricks", + value = "bricks", + }, + { + children = { + { + fileId = "190080", + text = "redridgebush01.m2", + value = "redridgebush01.m2", + }, + { + fileId = "190081", + text = "redridgebush02.m2", + value = "redridgebush02.m2", + }, + { + fileId = "190082", + text = "redridgebush03.m2", + value = "redridgebush03.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + children = { + { + fileId = "190084", + text = "catailpatch01.m2", + value = "catailpatch01.m2", + }, + }, + text = "catailpatch", + value = "catailpatch", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + fileId = "190087", + text = "redridgedocksbeam01.m2", + value = "redridgedocksbeam01.m2", + }, + { + fileId = "190088", + text = "redridgedocksboardwalk01.m2", + value = "redridgedocksboardwalk01.m2", + }, + { + fileId = "190089", + text = "redridgedocksboardwalk02.m2", + value = "redridgedocksboardwalk02.m2", + }, + { + fileId = "190090", + text = "redridgedocksboardwalk03.m2", + value = "redridgedocksboardwalk03.m2", + }, + { + fileId = "190091", + text = "redridgedocksplank01.m2", + value = "redridgedocksplank01.m2", + }, + { + fileId = "190093", + text = "redridgedockspylon01.m2", + value = "redridgedockspylon01.m2", + }, + }, + text = "dockpieces", + value = "dockpieces", + }, + { + children = { + { + fileId = "190095", + text = "redridgedocks01.m2", + value = "redridgedocks01.m2", + }, + { + fileId = "190096", + text = "redridgedocks03.m2", + value = "redridgedocks03.m2", + }, + }, + text = "docks", + value = "docks", + }, + { + children = { + { + fileId = "242696", + text = "redridge_human_farm_closed.m2", + value = "redridge_human_farm_closed.m2", + }, + }, + text = "farm", + value = "farm", + }, + { + children = { + { + fileId = "242697", + text = "redridge_lumbermill.m2", + value = "redridge_lumbermill.m2", + }, + }, + text = "lumbermill", + value = "lumbermill", + }, + { + children = { + { + fileId = "190097", + text = "insectmound.m2", + value = "insectmound.m2", + }, + }, + text = "misc", + value = "misc", + }, + { + children = { + { + fileId = "190101", + text = "redridgerock01.m2", + value = "redridgerock01.m2", + }, + { + fileId = "190102", + text = "redridgerock02.m2", + value = "redridgerock02.m2", + }, + { + fileId = "190103", + text = "redridgerock03.m2", + value = "redridgerock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "190104", + text = "rowboat01.m2", + value = "rowboat01.m2", + }, + }, + text = "rowboat", + value = "rowboat", + }, + { + children = { + { + fileId = "190106", + text = "battlegladewoodspikeslongrow.m2", + value = "battlegladewoodspikeslongrow.m2", + }, + { + fileId = "190107", + text = "battlegladewoodspikesshortrow.m2", + value = "battlegladewoodspikesshortrow.m2", + }, + }, + text = "spikewall", + value = "spikewall", + }, + { + children = { + { + fileId = "242698", + text = "redridge_stable.m2", + value = "redridge_stable.m2", + }, + }, + text = "stable", + value = "stable", + }, + { + children = { + { + fileId = "190108", + text = "redridgestump02.m2", + value = "redridgestump02.m2", + }, + }, + text = "stumps", + value = "stumps", + }, + { + children = { + { + fileId = "190114", + text = "redridgefallentree01.m2", + value = "redridgefallentree01.m2", + }, + { + fileId = "190115", + text = "redridgefallentree01moss.m2", + value = "redridgefallentree01moss.m2", + }, + { + fileId = "190116", + text = "redridgefallentree02.m2", + value = "redridgefallentree02.m2", + }, + { + fileId = "190117", + text = "redridgefallentree02moss.m2", + value = "redridgefallentree02moss.m2", + }, + { + fileId = "190118", + text = "redridgefallentree03.m2", + value = "redridgefallentree03.m2", + }, + { + fileId = "190119", + text = "redridgetree01.m2", + value = "redridgetree01.m2", + }, + { + fileId = "190120", + text = "redridgetree02.m2", + value = "redridgetree02.m2", + }, + { + fileId = "190121", + text = "redridgetreecanopy01.m2", + value = "redridgetreecanopy01.m2", + }, + { + fileId = "190122", + text = "redridgetreecanopy02.m2", + value = "redridgetreecanopy02.m2", + }, + { + fileId = "190123", + text = "redridgetreecanopy03.m2", + value = "redridgetreecanopy03.m2", + }, + { + fileId = "190124", + text = "redridgetreecanopy04.m2", + value = "redridgetreecanopy04.m2", + }, + { + fileId = "190126", + text = "redridgetreemid01.m2", + value = "redridgetreemid01.m2", + }, + { + fileId = "190128", + text = "redridgetreestump01.m2", + value = "redridgetreestump01.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "redridge", + value = "redridge", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190141", + text = "cage01.m2", + value = "cage01.m2", + }, + { + fileId = "190142", + text = "cage02.m2", + value = "cage02.m2", + }, + { + fileId = "190143", + text = "cage03.m2", + value = "cage03.m2", + }, + }, + text = "cages", + value = "cages", + }, + { + children = { + { + fileId = "190153", + text = "holdingpen.m2", + value = "holdingpen.m2", + }, + }, + text = "holdingpen", + value = "holdingpen", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "190160", + text = "crashzeppelin.m2", + value = "crashzeppelin.m2", + }, + }, + text = "crashzeppelin", + value = "crashzeppelin", + }, + { + children = { + { + fileId = "190165", + text = "oilrig.m2", + value = "oilrig.m2", + }, + }, + text = "oilrig", + value = "oilrig", + }, + { + children = { + { + fileId = "190169", + text = "runestonemoss_01.m2", + value = "runestonemoss_01.m2", + }, + }, + text = "runestonemoss_01", + value = "runestonemoss_01", + }, + { + children = { + { + fileId = "190175", + text = "trollwatchtower.m2", + value = "trollwatchtower.m2", + }, + }, + text = "trollwatchtower", + value = "trollwatchtower", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "190178", + text = "aquaductstone_corner1.m2", + value = "aquaductstone_corner1.m2", + }, + { + fileId = "190179", + text = "aquaductstone_corner2.m2", + value = "aquaductstone_corner2.m2", + }, + { + fileId = "190180", + text = "aquaductstone_longpillar.m2", + value = "aquaductstone_longpillar.m2", + }, + { + fileId = "190181", + text = "aquaductstone_pillar1.m2", + value = "aquaductstone_pillar1.m2", + }, + { + fileId = "190182", + text = "aquaductstone_pillar2.m2", + value = "aquaductstone_pillar2.m2", + }, + { + fileId = "190183", + text = "aquaductstone_pillar3.m2", + value = "aquaductstone_pillar3.m2", + }, + { + fileId = "190184", + text = "aquaductstone_short.m2", + value = "aquaductstone_short.m2", + }, + { + fileId = "190185", + text = "aquaductstone_straight.m2", + value = "aquaductstone_straight.m2", + }, + { + fileId = "190186", + text = "aquaductstone_straight6.m2", + value = "aquaductstone_straight6.m2", + }, + }, + text = "aquaduct", + value = "aquaduct", + }, + { + children = { + { + fileId = "190192", + text = "jaguarstatue.m2", + value = "jaguarstatue.m2", + }, + { + fileId = "190193", + text = "ropebridge.m2", + value = "ropebridge.m2", + }, + { + fileId = "190194", + text = "stonebridgelong.m2", + value = "stonebridgelong.m2", + }, + { + fileId = "190195", + text = "stonebridgeshort.m2", + value = "stonebridgeshort.m2", + }, + { + fileId = "190196", + text = "stranglechasmbridge.m2", + value = "stranglechasmbridge.m2", + }, + }, + text = "bridge", + value = "bridge", + }, + { + children = { + { + fileId = "190202", + text = "crystallizedhuman01.m2", + value = "crystallizedhuman01.m2", + }, + { + fileId = "190203", + text = "crystallizedhuman02.m2", + value = "crystallizedhuman02.m2", + }, + { + fileId = "190204", + text = "crystallizedhuman03.m2", + value = "crystallizedhuman03.m2", + }, + { + fileId = "190205", + text = "crystallizedtroll01.m2", + value = "crystallizedtroll01.m2", + }, + { + fileId = "190206", + text = "crystallizedtroll02.m2", + value = "crystallizedtroll02.m2", + }, + { + fileId = "190207", + text = "crystallizedtroll03.m2", + value = "crystallizedtroll03.m2", + }, + }, + text = "crystalcreatures", + value = "crystalcreatures", + }, + { + children = { + { + fileId = "190223", + text = "strangleplant06.m2", + value = "strangleplant06.m2", + }, + { + fileId = "190224", + text = "strangleplant07.m2", + value = "strangleplant07.m2", + }, + { + fileId = "190225", + text = "strangleplant08.m2", + value = "strangleplant08.m2", + }, + { + fileId = "190226", + text = "strangleplant09.m2", + value = "strangleplant09.m2", + }, + { + fileId = "190227", + text = "strangleplant10.m2", + value = "strangleplant10.m2", + }, + { + fileId = "190228", + text = "stranglethornfern01.m2", + value = "stranglethornfern01.m2", + }, + { + fileId = "190229", + text = "stranglethornfern02.m2", + value = "stranglethornfern02.m2", + }, + { + fileId = "190230", + text = "stranglethornfern03.m2", + value = "stranglethornfern03.m2", + }, + { + fileId = "190231", + text = "stranglethornfern04.m2", + value = "stranglethornfern04.m2", + }, + { + fileId = "190232", + text = "stranglethornfern05.m2", + value = "stranglethornfern05.m2", + }, + { + fileId = "190233", + text = "stranglethornfern06.m2", + value = "stranglethornfern06.m2", + }, + { + fileId = "190235", + text = "stranglethornplant01.m2", + value = "stranglethornplant01.m2", + }, + { + fileId = "190237", + text = "stranglethornplant02.m2", + value = "stranglethornplant02.m2", + }, + { + fileId = "190238", + text = "stranglethornplant03.m2", + value = "stranglethornplant03.m2", + }, + { + fileId = "190239", + text = "stranglethornplant04.m2", + value = "stranglethornplant04.m2", + }, + { + fileId = "190241", + text = "stranglethornplant05.m2", + value = "stranglethornplant05.m2", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + fileId = "190246", + text = "diamondminewalllantern.m2", + value = "diamondminewalllantern.m2", + }, + }, + text = "diamondminewalllantern", + value = "diamondminewalllantern", + }, + { + children = { + { + fileId = "190252", + text = "gemminecar01.m2", + value = "gemminecar01.m2", + }, + }, + text = "gemminecar01", + value = "gemminecar01", + }, + { + children = { + { + fileId = "190256", + text = "gemminecar02.m2", + value = "gemminecar02.m2", + }, + { + fileId = "190257", + text = "gemminecar03.m2", + value = "gemminecar03.m2", + }, + }, + text = "gemminecar02", + value = "gemminecar02", + }, + { + children = { + { + fileId = "190260", + text = "holyspringwell.m2", + value = "holyspringwell.m2", + }, + }, + text = "holyspringwell", + value = "holyspringwell", + }, + { + children = { + { + fileId = "190262", + text = "overgrowth02.m2", + value = "overgrowth02.m2", + }, + }, + text = "overgrowth02", + value = "overgrowth02", + }, + { + children = { + { + fileId = "190263", + text = "bootybaypost.m2", + value = "bootybaypost.m2", + }, + }, + text = "post", + value = "post", + }, + { + children = { + { + fileId = "190264", + text = "stranglethorncliffrock01.m2", + value = "stranglethorncliffrock01.m2", + }, + { + fileId = "190266", + text = "stranglethorncliffrock02.m2", + value = "stranglethorncliffrock02.m2", + }, + { + fileId = "190267", + text = "stranglethorncliffrock03.m2", + value = "stranglethorncliffrock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "190271", + text = "stranglethornruins01.m2", + value = "stranglethornruins01.m2", + }, + { + fileId = "190272", + text = "stranglethornruins02.m2", + value = "stranglethornruins02.m2", + }, + { + fileId = "190273", + text = "stranglethornruins03.m2", + value = "stranglethornruins03.m2", + }, + { + fileId = "190274", + text = "stranglethornruins04.m2", + value = "stranglethornruins04.m2", + }, + { + fileId = "190275", + text = "stranglethornruins05.m2", + value = "stranglethornruins05.m2", + }, + { + fileId = "190276", + text = "stranglethornruins06.m2", + value = "stranglethornruins06.m2", + }, + { + fileId = "190277", + text = "stranglethornruins07.m2", + value = "stranglethornruins07.m2", + }, + { + fileId = "190278", + text = "stranglethornruins08.m2", + value = "stranglethornruins08.m2", + }, + { + fileId = "190279", + text = "stranglethornruins09.m2", + value = "stranglethornruins09.m2", + }, + { + fileId = "190280", + text = "stranglethornruins10.m2", + value = "stranglethornruins10.m2", + }, + { + fileId = "190281", + text = "stranglethornruins11.m2", + value = "stranglethornruins11.m2", + }, + { + fileId = "190282", + text = "stranglethornruins12.m2", + value = "stranglethornruins12.m2", + }, + { + fileId = "190283", + text = "stranglethornruins13.m2", + value = "stranglethornruins13.m2", + }, + { + fileId = "190284", + text = "stranglethornruins14.m2", + value = "stranglethornruins14.m2", + }, + { + fileId = "190285", + text = "stranglethornruins15.m2", + value = "stranglethornruins15.m2", + }, + { + fileId = "190286", + text = "stranglethornruins16.m2", + value = "stranglethornruins16.m2", + }, + { + fileId = "190287", + text = "stranglethornruins17.m2", + value = "stranglethornruins17.m2", + }, + { + fileId = "190288", + text = "stranglethornruins18.m2", + value = "stranglethornruins18.m2", + }, + { + fileId = "190289", + text = "stranglethornruins19.m2", + value = "stranglethornruins19.m2", + }, + { + fileId = "190290", + text = "stranglethornruins20.m2", + value = "stranglethornruins20.m2", + }, + { + fileId = "190291", + text = "stranglethornruins21.m2", + value = "stranglethornruins21.m2", + }, + { + fileId = "190292", + text = "stranglethornruins_pylon.m2", + value = "stranglethornruins_pylon.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "190300", + text = "sack01_01.m2", + value = "sack01_01.m2", + }, + }, + text = "sack01_01", + value = "sack01_01", + }, + { + children = { + { + fileId = "190304", + text = "serpentstatue02.m2", + value = "serpentstatue02.m2", + }, + }, + text = "serpentstatue02", + value = "serpentstatue02", + }, + { + children = { + { + fileId = "190308", + text = "strangledeadtree01.m2", + value = "strangledeadtree01.m2", + }, + }, + text = "strangledeadtrees", + value = "strangledeadtrees", + }, + { + children = { + { + fileId = "190311", + text = "bootybaytree01.m2", + value = "bootybaytree01.m2", + }, + { + fileId = "190312", + text = "strangledeadtreenovine.m2", + value = "strangledeadtreenovine.m2", + }, + { + fileId = "190313", + text = "stranglethornroot01.m2", + value = "stranglethornroot01.m2", + }, + { + fileId = "190314", + text = "stranglethornroot02.m2", + value = "stranglethornroot02.m2", + }, + { + fileId = "190315", + text = "stranglethornroot03.m2", + value = "stranglethornroot03.m2", + }, + { + children = { + { + fileId = "190316", + text = "stranglethorntree01.m2", + value = "stranglethorntree01.m2", + }, + }, + text = "stranglethorntree01", + value = "stranglethorntree01", + }, + { + children = { + { + fileId = "190319", + text = "stranglethorntree02.m2", + value = "stranglethorntree02.m2", + }, + }, + text = "stranglethorntree02", + value = "stranglethorntree02", + }, + { + children = { + { + fileId = "190322", + text = "stranglethorntree04.m2", + value = "stranglethorntree04.m2", + }, + }, + text = "stranglethorntree04", + value = "stranglethorntree04", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "190331", + text = "trolldrumsoundobj.m2", + value = "trolldrumsoundobj.m2", + }, + { + fileId = "190332", + text = "trolldungeondrum03.m2", + value = "trolldungeondrum03.m2", + }, + { + fileId = "190333", + text = "trollruinsdrum01.m2", + value = "trollruinsdrum01.m2", + }, + }, + text = "trolldrum", + value = "trolldrum", + }, + { + children = { + { + fileId = "190337", + text = "trolldungeonfountain.m2", + value = "trolldungeonfountain.m2", + }, + }, + text = "trolldungeonfountain", + value = "trolldungeonfountain", + }, + { + children = { + { + fileId = "190341", + text = "trolldungeonpottery01.m2", + value = "trolldungeonpottery01.m2", + }, + { + fileId = "190342", + text = "trolldungeonpottery02.m2", + value = "trolldungeonpottery02.m2", + }, + { + fileId = "190343", + text = "trolldungeonpottery03.m2", + value = "trolldungeonpottery03.m2", + }, + }, + text = "trolldungeonpottery", + value = "trolldungeonpottery", + }, + { + children = { + { + fileId = "190345", + text = "trolldungeonring.m2", + value = "trolldungeonring.m2", + }, + }, + text = "trolldungeonring", + value = "trolldungeonring", + }, + { + fileId = "2198507", + text = "trolldungeonring.m2", + value = "trolldungeonring.m2", + }, + { + children = { + { + fileId = "190347", + text = "trolldungeonsacks.m2", + value = "trolldungeonsacks.m2", + }, + }, + text = "trolldungeonsacks", + value = "trolldungeonsacks", + }, + { + children = { + { + fileId = "190348", + text = "trolldungeonserpentstatue.m2", + value = "trolldungeonserpentstatue.m2", + }, + }, + text = "trolldungeonserpentstatue", + value = "trolldungeonserpentstatue", + }, + { + children = { + { + fileId = "190353", + text = "trollruinsgong03.m2", + value = "trollruinsgong03.m2", + }, + }, + text = "trollruinsgong", + value = "trollruinsgong", + }, + { + children = { + { + fileId = "190354", + text = "stranglethorntikihead.m2", + value = "stranglethorntikihead.m2", + }, + { + fileId = "190358", + text = "trollshrine.m2", + value = "trollshrine.m2", + }, + }, + text = "trollshrine", + value = "trollshrine", + }, + { + children = { + { + fileId = "190361", + text = "stranglethornwaterfall01.m2", + value = "stranglethornwaterfall01.m2", + }, + }, + text = "waterfall", + value = "waterfall", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "stranglethorn", + value = "stranglethorn", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190363", + text = "serpentaltar.m2", + value = "serpentaltar.m2", + }, + }, + text = "serpentaltar", + value = "serpentaltar", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "sunkentemple", + value = "sunkentemple", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190364", + text = "runestonecrud_01.m2", + value = "runestonecrud_01.m2", + }, + }, + text = "runestonecrud_01", + value = "runestonecrud_01", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "190375", + text = "swampofsorrowlilypad01.m2", + value = "swampofsorrowlilypad01.m2", + }, + { + fileId = "190376", + text = "swampofsorrowlilypad02.m2", + value = "swampofsorrowlilypad02.m2", + }, + { + fileId = "190377", + text = "swampplant03.m2", + value = "swampplant03.m2", + }, + { + fileId = "190378", + text = "swampplant04.m2", + value = "swampplant04.m2", + }, + { + fileId = "190379", + text = "swampplant05.m2", + value = "swampplant05.m2", + }, + { + fileId = "190380", + text = "swampsorrowplant01.m2", + value = "swampsorrowplant01.m2", + }, + { + fileId = "190381", + text = "swampsorrowplant02.m2", + value = "swampsorrowplant02.m2", + }, + { + fileId = "190382", + text = "swampsorrowroot01.m2", + value = "swampsorrowroot01.m2", + }, + { + fileId = "190383", + text = "swampsorrowroot02.m2", + value = "swampsorrowroot02.m2", + }, + { + fileId = "190384", + text = "swampsorrowroot03.m2", + value = "swampsorrowroot03.m2", + }, + }, + text = "plants", + value = "plants", + }, + { + children = { + { + fileId = "190388", + text = "swampsorrowrock01.m2", + value = "swampsorrowrock01.m2", + }, + { + fileId = "190389", + text = "swampsorrowrock02.m2", + value = "swampsorrowrock02.m2", + }, + { + fileId = "190390", + text = "swampsorrowrock03.m2", + value = "swampsorrowrock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "190393", + text = "swampbeastbone01.m2", + value = "swampbeastbone01.m2", + }, + }, + text = "swampbeastbones", + value = "swampbeastbones", + }, + { + children = { + { + fileId = "190398", + text = "swampboat01.m2", + value = "swampboat01.m2", + }, + }, + text = "swampboats", + value = "swampboats", + }, + { + children = { + { + fileId = "190400", + text = "swampskulls01.m2", + value = "swampskulls01.m2", + }, + { + fileId = "190401", + text = "swampskulls02.m2", + value = "swampskulls02.m2", + }, + }, + text = "swampskulls", + value = "swampskulls", + }, + { + children = { + { + fileId = "190404", + text = "swampsnakestatue01.m2", + value = "swampsnakestatue01.m2", + }, + }, + text = "swampsnakestatue", + value = "swampsnakestatue", + }, + { + children = { + { + fileId = "190405", + text = "swampwagon01.m2", + value = "swampwagon01.m2", + }, + }, + text = "swampwagon", + value = "swampwagon", + }, + { + children = { + { + fileId = "190408", + text = "losttreehuts01.m2", + value = "losttreehuts01.m2", + }, + { + fileId = "190409", + text = "losttreehuts02.m2", + value = "losttreehuts02.m2", + }, + { + fileId = "190410", + text = "losttreehuts03.m2", + value = "losttreehuts03.m2", + }, + }, + text = "treehuts", + value = "treehuts", + }, + { + children = { + { + fileId = "190411", + text = "swamptreelog01.m2", + value = "swamptreelog01.m2", + }, + { + fileId = "190412", + text = "swamptreelog02.m2", + value = "swamptreelog02.m2", + }, + { + fileId = "190413", + text = "swamptreelog03.m2", + value = "swamptreelog03.m2", + }, + { + fileId = "190414", + text = "swamptreelog04.m2", + value = "swamptreelog04.m2", + }, + }, + text = "treelogs", + value = "treelogs", + }, + { + children = { + { + fileId = "190418", + text = "swampsorrowcanopytree01.m2", + value = "swampsorrowcanopytree01.m2", + }, + { + fileId = "190419", + text = "swampsorrowcanopytree02.m2", + value = "swampsorrowcanopytree02.m2", + }, + { + fileId = "190420", + text = "swampsorrowcanopytree03.m2", + value = "swampsorrowcanopytree03.m2", + }, + { + fileId = "190421", + text = "swampsorrowcanopytree04.m2", + value = "swampsorrowcanopytree04.m2", + }, + { + fileId = "190422", + text = "swampsorrowcanopytree05.m2", + value = "swampsorrowcanopytree05.m2", + }, + { + fileId = "190423", + text = "swampsorrowcanopytree06.m2", + value = "swampsorrowcanopytree06.m2", + }, + { + fileId = "190424", + text = "swampsorrowtree01.m2", + value = "swampsorrowtree01.m2", + }, + { + fileId = "190425", + text = "swampsorrowtree02.m2", + value = "swampsorrowtree02.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "190428", + text = "swamphangingvines01.m2", + value = "swamphangingvines01.m2", + }, + { + fileId = "190429", + text = "swamphangingvines02.m2", + value = "swamphangingvines02.m2", + }, + }, + text = "vines", + value = "vines", + }, + { + children = { + { + fileId = "190430", + text = "waterhut01.m2", + value = "waterhut01.m2", + }, + { + fileId = "190431", + text = "waterhut02.m2", + value = "waterhut02.m2", + }, + }, + text = "waterhuts", + value = "waterhuts", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "swamposorrow", + value = "swamposorrow", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190434", + text = "blastedlandsblastedcow.m2", + value = "blastedlandsblastedcow.m2", + }, + { + fileId = "190435", + text = "blastedlandsblastedmule.m2", + value = "blastedlandsblastedmule.m2", + }, + { + fileId = "190436", + text = "blastedlandsbone01.m2", + value = "blastedlandsbone01.m2", + }, + { + fileId = "190437", + text = "blastedlandsbonepile02.m2", + value = "blastedlandsbonepile02.m2", + }, + { + fileId = "190438", + text = "blastedlandsbonepile03.m2", + value = "blastedlandsbonepile03.m2", + }, + { + fileId = "190439", + text = "blastedlandsskull01.m2", + value = "blastedlandsskull01.m2", + }, + { + fileId = "190440", + text = "blastedlandsskull02.m2", + value = "blastedlandsskull02.m2", + }, + { + fileId = "190441", + text = "blastedlandsspine01.m2", + value = "blastedlandsspine01.m2", + }, + }, + text = "bones", + value = "bones", + }, + { + children = { + { + fileId = "190444", + text = "blastedlandsbrokencolumn01.m2", + value = "blastedlandsbrokencolumn01.m2", + }, + { + fileId = "190445", + text = "blastedlandsbrokencolumn02.m2", + value = "blastedlandsbrokencolumn02.m2", + }, + }, + text = "column", + value = "column", + }, + { + children = { + { + fileId = "190447", + text = "blastedlandsrock01.m2", + value = "blastedlandsrock01.m2", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + fileId = "190450", + text = "blastedlandsportalrock01.m2", + value = "blastedlandsportalrock01.m2", + }, + { + fileId = "190451", + text = "blastedlandsportalrock02.m2", + value = "blastedlandsportalrock02.m2", + }, + { + fileId = "190452", + text = "blastedlandsportalrock03.m2", + value = "blastedlandsportalrock03.m2", + }, + { + fileId = "190453", + text = "blastedlandsrock02.m2", + value = "blastedlandsrock02.m2", + }, + { + fileId = "190454", + text = "blastedlandsrock03.m2", + value = "blastedlandsrock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "190456", + text = "blastedlandsroot01.m2", + value = "blastedlandsroot01.m2", + }, + { + fileId = "190457", + text = "blastedlandsroot03.m2", + value = "blastedlandsroot03.m2", + }, + }, + text = "roots", + value = "roots", + }, + { + children = { + { + fileId = "190462", + text = "blastedlandsportalruins01.m2", + value = "blastedlandsportalruins01.m2", + }, + { + fileId = "190463", + text = "blastedlandsportalruins02.m2", + value = "blastedlandsportalruins02.m2", + }, + { + fileId = "190464", + text = "blastedlandsportalruins03.m2", + value = "blastedlandsportalruins03.m2", + }, + { + fileId = "190466", + text = "blastedlandsruins01.m2", + value = "blastedlandsruins01.m2", + }, + { + fileId = "190467", + text = "blastedlandsruins02.m2", + value = "blastedlandsruins02.m2", + }, + { + fileId = "190468", + text = "blastedlandsruins03.m2", + value = "blastedlandsruins03.m2", + }, + { + fileId = "190469", + text = "blastedlandsruinstusk.m2", + value = "blastedlandsruinstusk.m2", + }, + { + fileId = "190470", + text = "brokengatearch.m2", + value = "brokengatearch.m2", + }, + { + fileId = "190471", + text = "brokengatechain01.m2", + value = "brokengatechain01.m2", + }, + { + fileId = "190472", + text = "brokengatechain02.m2", + value = "brokengatechain02.m2", + }, + { + fileId = "190474", + text = "brokengateside01.m2", + value = "brokengateside01.m2", + }, + { + fileId = "190475", + text = "brokengateside02.m2", + value = "brokengateside02.m2", + }, + { + fileId = "190476", + text = "brokengatewall.m2", + value = "brokengatewall.m2", + }, + { + fileId = "190477", + text = "brokengatewood01.m2", + value = "brokengatewood01.m2", + }, + { + fileId = "190478", + text = "brokengatewood02.m2", + value = "brokengatewood02.m2", + }, + { + fileId = "190479", + text = "brokengatewood03.m2", + value = "brokengatewood03.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "190484", + text = "blastedlandsashtree02.m2", + value = "blastedlandsashtree02.m2", + }, + { + fileId = "190485", + text = "blastedlandsashtree03.m2", + value = "blastedlandsashtree03.m2", + }, + { + fileId = "190486", + text = "blastedlandsblastedtree01.m2", + value = "blastedlandsblastedtree01.m2", + }, + { + fileId = "190487", + text = "blastedlandsblastedtree03.m2", + value = "blastedlandsblastedtree03.m2", + }, + { + fileId = "190488", + text = "blastedlandsblastedtree04.m2", + value = "blastedlandsblastedtree04.m2", + }, + { + fileId = "190489", + text = "blastedlandstree01.m2", + value = "blastedlandstree01.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "theblastedlands", + value = "theblastedlands", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190505", + text = "westfallchurch.m2", + value = "westfallchurch.m2", + }, + }, + text = "church", + value = "church", + }, + { + children = { + { + fileId = "190508", + text = "westfallgrainsilo01.m2", + value = "westfallgrainsilo01.m2", + }, + }, + text = "grainsilo", + value = "grainsilo", + }, + { + children = { + { + fileId = "190511", + text = "lighthousered.m2", + value = "lighthousered.m2", + }, + { + fileId = "190515", + text = "westfalllighthouse.m2", + value = "westfalllighthouse.m2", + }, + }, + text = "lighthouse", + value = "lighthouse", + }, + { + children = { + { + fileId = "190517", + text = "westfallshed.m2", + value = "westfallshed.m2", + }, + }, + text = "shed", + value = "shed", + }, + { + children = { + { + fileId = "190519", + text = "westfallwindmill.m2", + value = "westfallwindmill.m2", + }, + }, + text = "windmill", + value = "windmill", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "190520", + text = "aquaduct_corner1.m2", + value = "aquaduct_corner1.m2", + }, + { + fileId = "190521", + text = "aquaduct_corner2.m2", + value = "aquaduct_corner2.m2", + }, + { + fileId = "190522", + text = "aquaduct_longpillar.m2", + value = "aquaduct_longpillar.m2", + }, + { + fileId = "190523", + text = "aquaduct_pillar1.m2", + value = "aquaduct_pillar1.m2", + }, + { + fileId = "190524", + text = "aquaduct_pillar2.m2", + value = "aquaduct_pillar2.m2", + }, + { + fileId = "190525", + text = "aquaduct_pillar3.m2", + value = "aquaduct_pillar3.m2", + }, + { + fileId = "190526", + text = "aquaduct_short.m2", + value = "aquaduct_short.m2", + }, + { + fileId = "190527", + text = "aquaduct_straight.m2", + value = "aquaduct_straight.m2", + }, + { + fileId = "190528", + text = "aquaduct_straight6.m2", + value = "aquaduct_straight6.m2", + }, + { + fileId = "190529", + text = "aquaduct_xsupport.m2", + value = "aquaduct_xsupport.m2", + }, + }, + text = "aquaduct", + value = "aquaduct", + }, + { + children = { + { + fileId = "190535", + text = "westfallbarrel01.m2", + value = "westfallbarrel01.m2", + }, + }, + text = "barrel", + value = "barrel", + }, + { + children = { + { + fileId = "190536", + text = "brokencart.m2", + value = "brokencart.m2", + }, + }, + text = "brokencart", + value = "brokencart", + }, + { + children = { + { + fileId = "190537", + text = "butterchurner.m2", + value = "butterchurner.m2", + }, + }, + text = "butterchurner", + value = "butterchurner", + }, + { + children = { + { + fileId = "190541", + text = "hangingcage01.m2", + value = "hangingcage01.m2", + }, + { + fileId = "190542", + text = "hangingcage02.m2", + value = "hangingcage02.m2", + }, + }, + text = "cages", + value = "cages", + }, + { + children = { + { + fileId = "190543", + text = "westfallcrate.m2", + value = "westfallcrate.m2", + }, + }, + text = "crate", + value = "crate", + }, + { + children = { + { + fileId = "190545", + text = "deadcow.m2", + value = "deadcow.m2", + }, + }, + text = "deadcow", + value = "deadcow", + }, + { + children = { + { + fileId = "190546", + text = "deadmule.m2", + value = "deadmule.m2", + }, + }, + text = "deadmule", + value = "deadmule", + }, + { + children = { + { + fileId = "190548", + text = "deadseamonster.m2", + value = "deadseamonster.m2", + }, + { + fileId = "190549", + text = "seamonsterchunk.m2", + value = "seamonsterchunk.m2", + }, + }, + text = "deadseamonster", + value = "deadseamonster", + }, + { + children = { + { + fileId = "190564", + text = "westfallberrybush.m2", + value = "westfallberrybush.m2", + }, + { + fileId = "190566", + text = "westfallbush01.m2", + value = "westfallbush01.m2", + }, + { + fileId = "190567", + text = "westfallcabbage.m2", + value = "westfallcabbage.m2", + }, + { + fileId = "190568", + text = "westfallcatails.m2", + value = "westfallcatails.m2", + }, + { + fileId = "190571", + text = "westfallcornfield.m2", + value = "westfallcornfield.m2", + }, + { + fileId = "190572", + text = "westfallcotton.m2", + value = "westfallcotton.m2", + }, + { + fileId = "190573", + text = "westfalldandilion.m2", + value = "westfalldandilion.m2", + }, + { + fileId = "190574", + text = "westfalldriftwood.m2", + value = "westfalldriftwood.m2", + }, + { + fileId = "190576", + text = "westfallmandrake.m2", + value = "westfallmandrake.m2", + }, + { + fileId = "190577", + text = "westfallreeds01.m2", + value = "westfallreeds01.m2", + }, + { + fileId = "190578", + text = "westfalltobbaco.m2", + value = "westfalltobbaco.m2", + }, + { + fileId = "190579", + text = "westfallwheat01.m2", + value = "westfallwheat01.m2", + }, + { + fileId = "190580", + text = "westfallwheat02.m2", + value = "westfallwheat02.m2", + }, + { + fileId = "190581", + text = "westfallwheat03.m2", + value = "westfallwheat03.m2", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + fileId = "190586", + text = "westfallbed01.m2", + value = "westfallbed01.m2", + }, + }, + text = "furniture", + value = "furniture", + }, + { + children = { + { + fileId = "190587", + text = "grindstone.m2", + value = "grindstone.m2", + }, + }, + text = "grindstone", + value = "grindstone", + }, + { + children = { + { + fileId = "190592", + text = "harempillow01.m2", + value = "harempillow01.m2", + }, + }, + text = "harempillow01", + value = "harempillow01", + }, + { + children = { + { + fileId = "190595", + text = "harempillow02.m2", + value = "harempillow02.m2", + }, + }, + text = "harempillow02", + value = "harempillow02", + }, + { + children = { + { + fileId = "190596", + text = "harness.m2", + value = "harness.m2", + }, + }, + text = "harness", + value = "harness", + }, + { + children = { + { + fileId = "190597", + text = "westfallhaystack01.m2", + value = "westfallhaystack01.m2", + }, + { + fileId = "190598", + text = "westfallhaystack02.m2", + value = "westfallhaystack02.m2", + }, + }, + text = "haystack", + value = "haystack", + }, + { + children = { + { + fileId = "190599", + text = "westfallhaywagon.m2", + value = "westfallhaywagon.m2", + }, + }, + text = "haywagon", + value = "haywagon", + }, + { + children = { + { + fileId = "190608", + text = "lampdeadmines.m2", + value = "lampdeadmines.m2", + }, + }, + text = "lampdeadmines", + value = "lampdeadmines", + }, + { + children = { + { + fileId = "190612", + text = "westfalllamppost.m2", + value = "westfalllamppost.m2", + }, + { + fileId = "190613", + text = "westfalllamppost01.m2", + value = "westfalllamppost01.m2", + }, + { + fileId = "190614", + text = "westfalllamppost02.m2", + value = "westfalllamppost02.m2", + }, + }, + text = "lamppost", + value = "lamppost", + }, + { + children = { + { + fileId = "190615", + text = "lighthouseeffect.m2", + value = "lighthouseeffect.m2", + }, + }, + text = "lighthousebeam", + value = "lighthousebeam", + }, + { + children = { + { + fileId = "190617", + text = "outhouse.m2", + value = "outhouse.m2", + }, + }, + text = "outhouse", + value = "outhouse", + }, + { + children = { + { + fileId = "190619", + text = "plow.m2", + value = "plow.m2", + }, + }, + text = "plow", + value = "plow", + }, + { + children = { + { + fileId = "190620", + text = "rakecart.m2", + value = "rakecart.m2", + }, + }, + text = "rakecart", + value = "rakecart", + }, + { + children = { + { + fileId = "190623", + text = "westfallboulder01.m2", + value = "westfallboulder01.m2", + }, + { + fileId = "190624", + text = "westfallboulder02.m2", + value = "westfallboulder02.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "190626", + text = "rugrack01.m2", + value = "rugrack01.m2", + }, + { + fileId = "190627", + text = "rugrack02.m2", + value = "rugrack02.m2", + }, + }, + text = "rugracks", + value = "rugracks", + }, + { + children = { + { + fileId = "190629", + text = "westfallscarecrow.m2", + value = "westfallscarecrow.m2", + }, + }, + text = "scarecrow", + value = "scarecrow", + }, + { + children = { + { + fileId = "190632", + text = "sunkenanchor.m2", + value = "sunkenanchor.m2", + }, + }, + text = "sunkenanchor", + value = "sunkenanchor", + }, + { + children = { + { + fileId = "190633", + text = "tombstone01.m2", + value = "tombstone01.m2", + }, + { + fileId = "190634", + text = "tombstone02.m2", + value = "tombstone02.m2", + }, + { + fileId = "190635", + text = "tombstone03.m2", + value = "tombstone03.m2", + }, + { + fileId = "190636", + text = "tombstone04.m2", + value = "tombstone04.m2", + }, + }, + text = "tombstones", + value = "tombstones", + }, + { + children = { + { + fileId = "190638", + text = "westfalltree01.m2", + value = "westfalltree01.m2", + }, + { + fileId = "190639", + text = "westfalltree02.m2", + value = "westfalltree02.m2", + }, + { + fileId = "190640", + text = "westfalltree03.m2", + value = "westfalltree03.m2", + }, + { + fileId = "190641", + text = "westfalltree04.m2", + value = "westfalltree04.m2", + }, + { + fileId = "190642", + text = "westfalltreecanopy01.m2", + value = "westfalltreecanopy01.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "190647", + text = "westfalltreestump01.m2", + value = "westfalltreestump01.m2", + }, + { + fileId = "190648", + text = "westfalltreestump02.m2", + value = "westfalltreestump02.m2", + }, + }, + text = "treestumps", + value = "treestumps", + }, + { + children = { + { + fileId = "190650", + text = "bowl.m2", + value = "bowl.m2", + }, + { + fileId = "190653", + text = "plate.m2", + value = "plate.m2", + }, + { + fileId = "190654", + text = "stein.m2", + value = "stein.m2", + }, + }, + text = "utensils", + value = "utensils", + }, + { + children = { + { + fileId = "190658", + text = "westfallchair.m2", + value = "westfallchair.m2", + }, + }, + text = "westfallchair", + value = "westfallchair", + }, + { + children = { + { + fileId = "190659", + text = "westfallfence.m2", + value = "westfallfence.m2", + }, + { + fileId = "190660", + text = "westfallfenceend.m2", + value = "westfallfenceend.m2", + }, + { + fileId = "190661", + text = "westfallfencepost.m2", + value = "westfallfencepost.m2", + }, + }, + text = "westfallfence", + value = "westfallfence", + }, + { + children = { + { + fileId = "190662", + text = "westfallfountain.m2", + value = "westfallfountain.m2", + }, + }, + text = "westfallfountain", + value = "westfallfountain", + }, + { + children = { + { + fileId = "190666", + text = "westfallruins01.m2", + value = "westfallruins01.m2", + }, + { + fileId = "190667", + text = "westfallruins02.m2", + value = "westfallruins02.m2", + }, + { + fileId = "190668", + text = "westfallruins03.m2", + value = "westfallruins03.m2", + }, + { + fileId = "190669", + text = "westfallruins04.m2", + value = "westfallruins04.m2", + }, + }, + text = "westfallruins", + value = "westfallruins", + }, + { + children = { + { + fileId = "190671", + text = "westfallskeleton.m2", + value = "westfallskeleton.m2", + }, + }, + text = "westfallskeleton", + value = "westfallskeleton", + }, + { + children = { + { + fileId = "190673", + text = "westfalltable.m2", + value = "westfalltable.m2", + }, + }, + text = "westfalltable", + value = "westfalltable", + }, + { + children = { + { + fileId = "190675", + text = "westfallvineyard01.m2", + value = "westfallvineyard01.m2", + }, + }, + text = "westfallvineyards", + value = "westfallvineyards", + }, + { + children = { + { + fileId = "190677", + text = "wreckedrowboat.m2", + value = "wreckedrowboat.m2", + }, + }, + text = "wreckedrowboat", + value = "wreckedrowboat", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "westfall", + value = "westfall", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190678", + text = "collisionwallpendoor01.m2", + value = "collisionwallpendoor01.m2", + }, + { + fileId = "190680", + text = "zulgurubforcefield.m2", + value = "zulgurubforcefield.m2", + }, + { + fileId = "190681", + text = "zulgurubpendoor.m2", + value = "zulgurubpendoor.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "190683", + text = "zulgurubmaindoor.m2", + value = "zulgurubmaindoor.m2", + }, + }, + text = "maindoor", + value = "maindoor", + }, + { + children = { + { + fileId = "190685", + text = "nastyspideregg.m2", + value = "nastyspideregg.m2", + }, + }, + text = "spiderarea", + value = "spiderarea", + }, + { + children = { + { + fileId = "190688", + text = "voodoopile01.m2", + value = "voodoopile01.m2", + }, + }, + text = "voodoopile", + value = "voodoopile", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "190690", + text = "trollbattotem.m2", + value = "trollbattotem.m2", + }, + }, + text = "battotem", + value = "battotem", + }, + { + children = { + { + fileId = "190693", + text = "heartofhakkar.m2", + value = "heartofhakkar.m2", + }, + }, + text = "heart", + value = "heart", + }, + { + children = { + { + fileId = "190694", + text = "zulgurublightningmadness.m2", + value = "zulgurublightningmadness.m2", + }, + }, + text = "lightning", + value = "lightning", + }, + { + children = { + { + fileId = "190695", + text = "zulgurubruins04.m2", + value = "zulgurubruins04.m2", + }, + { + fileId = "190696", + text = "zulgurubruins05.m2", + value = "zulgurubruins05.m2", + }, + { + fileId = "190697", + text = "zulgurubruins06.m2", + value = "zulgurubruins06.m2", + }, + { + fileId = "190698", + text = "zulgurubruins07.m2", + value = "zulgurubruins07.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "190699", + text = "nastyspiderweb01.m2", + value = "nastyspiderweb01.m2", + }, + { + fileId = "190700", + text = "nastyspiderweb02.m2", + value = "nastyspiderweb02.m2", + }, + { + fileId = "190701", + text = "nastyspiderweb03.m2", + value = "nastyspiderweb03.m2", + }, + { + fileId = "190706", + text = "spiderpod01.m2", + value = "spiderpod01.m2", + }, + { + fileId = "190707", + text = "spiderpod02.m2", + value = "spiderpod02.m2", + }, + }, + text = "spiderarea", + value = "spiderarea", + }, + { + children = { + { + fileId = "190711", + text = "zulgurubtree01.m2", + value = "zulgurubtree01.m2", + }, + { + fileId = "190712", + text = "zulgurubtree02.m2", + value = "zulgurubtree02.m2", + }, + { + fileId = "190713", + text = "zulgurubtree03.m2", + value = "zulgurubtree03.m2", + }, + { + fileId = "190714", + text = "zulgurubtree04.m2", + value = "zulgurubtree04.m2", + }, + { + fileId = "190715", + text = "zulgurubtree05.m2", + value = "zulgurubtree05.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "zulgurub", + value = "zulgurub", + }, + }, + text = "azeroth", + value = "azeroth", + }, + { + children = { + { + children = { + { + fileId = "190716", + text = "bat01.m2", + value = "bat01.m2", + }, + { + fileId = "190717", + text = "bat02.m2", + value = "bat02.m2", + }, + }, + text = "bats", + value = "bats", + }, + { + children = { + { + fileId = "190719", + text = "bird01.m2", + value = "bird01.m2", + }, + { + fileId = "190720", + text = "bird02.m2", + value = "bird02.m2", + }, + { + fileId = "190723", + text = "wasp01.m2", + value = "wasp01.m2", + }, + { + fileId = "190724", + text = "wasp02.m2", + value = "wasp02.m2", + }, + }, + text = "birds", + value = "birds", + }, + { + children = { + { + fileId = "190725", + text = "butterflyorange01.m2", + value = "butterflyorange01.m2", + }, + { + fileId = "190726", + text = "butterflypurple01.m2", + value = "butterflypurple01.m2", + }, + { + fileId = "190727", + text = "butterflywhite01.m2", + value = "butterflywhite01.m2", + }, + }, + text = "butterflies", + value = "butterflies", + }, + { + children = { + { + fileId = "190731", + text = "fireflies01.m2", + value = "fireflies01.m2", + }, + }, + text = "fireflies", + value = "fireflies", + }, + { + children = { + { + fileId = "190733", + text = "fish01.m2", + value = "fish01.m2", + }, + }, + text = "fish", + value = "fish", + }, + { + children = { + { + fileId = "190739", + text = "flies01.m2", + value = "flies01.m2", + }, + }, + text = "flies", + value = "flies", + }, + }, + text = "critter", + value = "critter", + }, + { + children = { + { + fileId = "2198651", + text = "drkbus01.m2", + value = "drkbus01.m2", + }, + { + fileId = "2198569", + text = "drkbus02.m2", + value = "drkbus02.m2", + }, + { + fileId = "2198633", + text = "drkbus03.m2", + value = "drkbus03.m2", + }, + { + fileId = "2198552", + text = "drkbus04.m2", + value = "drkbus04.m2", + }, + { + fileId = "2198589", + text = "drkbus05.m2", + value = "drkbus05.m2", + }, + { + fileId = "2198528", + text = "drkbus06.m2", + value = "drkbus06.m2", + }, + { + fileId = "2199417", + text = "drkbus07.m2", + value = "drkbus07.m2", + }, + { + fileId = "2198572", + text = "drkgra01.m2", + value = "drkgra01.m2", + }, + { + fileId = "2198494", + text = "drkgra02.m2", + value = "drkgra02.m2", + }, + { + fileId = "2198594", + text = "drkgra03.m2", + value = "drkgra03.m2", + }, + { + fileId = "2198627", + text = "drkgra04.m2", + value = "drkgra04.m2", + }, + { + fileId = "2198545", + text = "drkgra05.m2", + value = "drkgra05.m2", + }, + { + fileId = "2198584", + text = "drkgra06.m2", + value = "drkgra06.m2", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190755", + text = "emeralddreamcatcher01.m2", + value = "emeralddreamcatcher01.m2", + }, + { + fileId = "190756", + text = "emeralddreamcatcher02.m2", + value = "emeralddreamcatcher02.m2", + }, + { + fileId = "190757", + text = "emeralddreamcatcher03.m2", + value = "emeralddreamcatcher03.m2", + }, + { + fileId = "190758", + text = "emeralddreamcatcher04.m2", + value = "emeralddreamcatcher04.m2", + }, + }, + text = "dreamcatchers", + value = "dreamcatchers", + }, + { + children = { + { + fileId = "190760", + text = "emeralddreamgiant01.m2", + value = "emeralddreamgiant01.m2", + }, + }, + text = "emeralddreamgiant", + value = "emeralddreamgiant", + }, + { + children = { + { + fileId = "190763", + text = "dnrdreambellflower01.m2", + value = "dnrdreambellflower01.m2", + }, + { + fileId = "190764", + text = "dnrdreambellflower02.m2", + value = "dnrdreambellflower02.m2", + }, + { + fileId = "190765", + text = "dnrdreambellflower03.m2", + value = "dnrdreambellflower03.m2", + }, + { + fileId = "190766", + text = "dnrdreamdrippingflower01.m2", + value = "dnrdreamdrippingflower01.m2", + }, + { + fileId = "190767", + text = "dnrdreamdrippingflower02.m2", + value = "dnrdreamdrippingflower02.m2", + }, + { + fileId = "190768", + text = "dnrdreamdroopingflower01.m2", + value = "dnrdreamdroopingflower01.m2", + }, + { + fileId = "190769", + text = "dnrdreamdroopingflower02.m2", + value = "dnrdreamdroopingflower02.m2", + }, + { + fileId = "190770", + text = "dnrdreamorangeflower01.m2", + value = "dnrdreamorangeflower01.m2", + }, + { + fileId = "190771", + text = "dnrdreamorangeflower02.m2", + value = "dnrdreamorangeflower02.m2", + }, + { + fileId = "190772", + text = "dnrdreampurpleflower01.m2", + value = "dnrdreampurpleflower01.m2", + }, + { + fileId = "190773", + text = "dnrdreampurpleflower02.m2", + value = "dnrdreampurpleflower02.m2", + }, + { + fileId = "190774", + text = "dnrdreampurpleflower03.m2", + value = "dnrdreampurpleflower03.m2", + }, + { + fileId = "190775", + text = "dnrdreamspinningflower01.m2", + value = "dnrdreamspinningflower01.m2", + }, + }, + text = "flowers", + value = "flowers", + }, + { + children = { + { + fileId = "190793", + text = "emeralddreamfountaintree01.m2", + value = "emeralddreamfountaintree01.m2", + }, + { + fileId = "190794", + text = "emeralddreamfountaintree02.m2", + value = "emeralddreamfountaintree02.m2", + }, + { + fileId = "190795", + text = "emeralddreamfountaintree03.m2", + value = "emeralddreamfountaintree03.m2", + }, + { + fileId = "190796", + text = "emeralddreamfountaintree04.m2", + value = "emeralddreamfountaintree04.m2", + }, + { + fileId = "190797", + text = "emeralddreamfountaintree05.m2", + value = "emeralddreamfountaintree05.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "dreaming", + value = "dreaming", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "190803", + text = "basiliskcrystal02.m2", + value = "basiliskcrystal02.m2", + }, + { + fileId = "190804", + text = "caveminecrystalformation01.m2", + value = "caveminecrystalformation01.m2", + }, + { + fileId = "190805", + text = "caveminecrystalformation02.m2", + value = "caveminecrystalformation02.m2", + }, + { + fileId = "190806", + text = "caveminecrystalformation03.m2", + value = "caveminecrystalformation03.m2", + }, + { + fileId = "190807", + text = "caveminecrystalformation04.m2", + value = "caveminecrystalformation04.m2", + }, + { + fileId = "190808", + text = "caveminecrystalformation05.m2", + value = "caveminecrystalformation05.m2", + }, + { + fileId = "190809", + text = "caveminecrystalformation06.m2", + value = "caveminecrystalformation06.m2", + }, + { + fileId = "190810", + text = "caveminecrystalformation07.m2", + value = "caveminecrystalformation07.m2", + }, + { + fileId = "190811", + text = "caveminecrystalformation08.m2", + value = "caveminecrystalformation08.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "190813", + text = "caveicicle1.m2", + value = "caveicicle1.m2", + }, + { + fileId = "190814", + text = "caveicicle2.m2", + value = "caveicicle2.m2", + }, + }, + text = "icicles", + value = "icicles", + }, + { + children = { + { + fileId = "190815", + text = "stalagmite01.m2", + value = "stalagmite01.m2", + }, + }, + text = "stalagmite", + value = "stalagmite", + }, + { + children = { + { + fileId = "190816", + text = "deadminesstalagtite01.m2", + value = "deadminesstalagtite01.m2", + }, + { + fileId = "190817", + text = "deadminesstalagtite02.m2", + value = "deadminesstalagtite02.m2", + }, + { + fileId = "190819", + text = "stalagtite01.m2", + value = "stalagtite01.m2", + }, + { + fileId = "190820", + text = "stalagtite02.m2", + value = "stalagtite02.m2", + }, + }, + text = "stalagtite", + value = "stalagtite", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "cave", + value = "cave", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190822", + text = "caverndoor.m2", + value = "caverndoor.m2", + }, + }, + text = "cavernsoftimedoor", + value = "cavernsoftimedoor", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "190823", + text = "cot_portalparticles.m2", + value = "cot_portalparticles.m2", + }, + { + fileId = "190824", + text = "cot_standingstone01.m2", + value = "cot_standingstone01.m2", + }, + { + fileId = "190825", + text = "cot_standingstone02.m2", + value = "cot_standingstone02.m2", + }, + }, + text = "darkportal", + value = "darkportal", + }, + { + children = { + { + fileId = "190828", + text = "energytrail01.m2", + value = "energytrail01.m2", + }, + { + fileId = "190829", + text = "energytrail01b.m2", + value = "energytrail01b.m2", + }, + { + fileId = "190830", + text = "energytrail01c.m2", + value = "energytrail01c.m2", + }, + { + fileId = "190831", + text = "energytrail02.m2", + value = "energytrail02.m2", + }, + { + fileId = "190832", + text = "energytrail02b.m2", + value = "energytrail02b.m2", + }, + { + fileId = "190833", + text = "energytrail03.m2", + value = "energytrail03.m2", + }, + { + fileId = "190834", + text = "energytrail03b.m2", + value = "energytrail03b.m2", + }, + { + fileId = "190835", + text = "energytrail04.m2", + value = "energytrail04.m2", + }, + { + fileId = "190836", + text = "energytrail04b.m2", + value = "energytrail04b.m2", + }, + { + fileId = "190837", + text = "energytrail05.m2", + value = "energytrail05.m2", + }, + { + fileId = "190838", + text = "energytrail05b.m2", + value = "energytrail05b.m2", + }, + { + fileId = "190839", + text = "energytrail05c.m2", + value = "energytrail05c.m2", + }, + { + fileId = "190840", + text = "energytrailhourglass.m2", + value = "energytrailhourglass.m2", + }, + { + fileId = "190841", + text = "energytrailhourglassb.m2", + value = "energytrailhourglassb.m2", + }, + { + fileId = "190842", + text = "energytrailhourglassblue.m2", + value = "energytrailhourglassblue.m2", + }, + { + fileId = "190843", + text = "energytrailhourglasspink.m2", + value = "energytrailhourglasspink.m2", + }, + { + fileId = "190844", + text = "energytrailhourglassred.m2", + value = "energytrailhourglassred.m2", + }, + }, + text = "energytrails", + value = "energytrails", + }, + { + children = { + { + fileId = "190849", + text = "cot_hourglass.m2", + value = "cot_hourglass.m2", + }, + { + fileId = "190850", + text = "cot_hourglass_redo.m2", + value = "cot_hourglass_redo.m2", + }, + }, + text = "hourglass", + value = "hourglass", + }, + { + children = { + { + fileId = "190858", + text = "cot_portal01.m2", + value = "cot_portal01.m2", + }, + { + fileId = "190859", + text = "cot_portalfx.m2", + value = "cot_portalfx.m2", + }, + }, + text = "portal", + value = "portal", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "cavernsoftime", + value = "cavernsoftime", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190869", + text = "caveminelantern01.m2", + value = "caveminelantern01.m2", + }, + { + fileId = "190870", + text = "caveminelantern02.m2", + value = "caveminelantern02.m2", + }, + { + fileId = "190871", + text = "caveminelantern03.m2", + value = "caveminelantern03.m2", + }, + }, + text = "cavelanterns", + value = "cavelanterns", + }, + { + children = { + { + fileId = "190872", + text = "caveminekobold01.m2", + value = "caveminekobold01.m2", + }, + { + fileId = "190873", + text = "caveminekobold02.m2", + value = "caveminekobold02.m2", + }, + { + fileId = "190874", + text = "caveminekobold04.m2", + value = "caveminekobold04.m2", + }, + { + fileId = "190875", + text = "caveminekobold05.m2", + value = "caveminekobold05.m2", + }, + { + fileId = "190876", + text = "caveminekobold06.m2", + value = "caveminekobold06.m2", + }, + }, + text = "caveminekobolds", + value = "caveminekobolds", + }, + { + children = { + { + fileId = "190880", + text = "caveminespiderpillar01.m2", + value = "caveminespiderpillar01.m2", + }, + }, + text = "caveminespiderpillar01", + value = "caveminespiderpillar01", + }, + { + children = { + { + fileId = "190882", + text = "cavespiderweb01.m2", + value = "cavespiderweb01.m2", + }, + { + fileId = "190883", + text = "cavespiderweb02.m2", + value = "cavespiderweb02.m2", + }, + }, + text = "cavespiderwebs", + value = "cavespiderwebs", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "goldmine", + value = "goldmine", + }, + { + children = { + { + children = { + { + fileId = "190885", + text = "innbarrel.m2", + value = "innbarrel.m2", + }, + }, + text = "innbarrel", + value = "innbarrel", + }, + { + children = { + { + fileId = "190886", + text = "innbed.m2", + value = "innbed.m2", + }, + }, + text = "innbed", + value = "innbed", + }, + { + children = { + { + fileId = "190887", + text = "innbedcanopy.m2", + value = "innbedcanopy.m2", + }, + }, + text = "innbedcanopy", + value = "innbedcanopy", + }, + { + children = { + { + fileId = "190890", + text = "innchandelier.m2", + value = "innchandelier.m2", + }, + }, + text = "innchandelier", + value = "innchandelier", + }, + { + children = { + { + fileId = "190893", + text = "innlantern.m2", + value = "innlantern.m2", + }, + }, + text = "innlantern", + value = "innlantern", + }, + { + children = { + { + fileId = "190895", + text = "innpillow.m2", + value = "innpillow.m2", + }, + }, + text = "innpillow", + value = "innpillow", + }, + }, + text = "goldshireinn", + value = "goldshireinn", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190898", + text = "fishfountain.m2", + value = "fishfountain.m2", + }, + { + fileId = "190900", + text = "monasteryfalls.m2", + value = "monasteryfalls.m2", + }, + }, + text = "fountains", + value = "fountains", + }, + { + children = { + { + fileId = "190914", + text = "statuedmmountainking.m2", + value = "statuedmmountainking.m2", + }, + { + fileId = "190915", + text = "statuefountain.m2", + value = "statuefountain.m2", + }, + { + fileId = "190916", + text = "statuehefranger.m2", + value = "statuehefranger.m2", + }, + { + fileId = "190917", + text = "statuehemmage.m2", + value = "statuehemmage.m2", + }, + { + fileId = "190918", + text = "statuehfspear.m2", + value = "statuehfspear.m2", + }, + { + fileId = "190919", + text = "statuehfsunshield.m2", + value = "statuehfsunshield.m2", + }, + { + fileId = "190920", + text = "statuehfsunshieldclean.m2", + value = "statuehfsunshieldclean.m2", + }, + { + fileId = "190921", + text = "statuehftwinblades.m2", + value = "statuehftwinblades.m2", + }, + { + fileId = "190922", + text = "statuehmcaptain.m2", + value = "statuehmcaptain.m2", + }, + { + fileId = "190923", + text = "statuehmcaptainclean.m2", + value = "statuehmcaptainclean.m2", + }, + { + fileId = "190924", + text = "statuehmcrusader.m2", + value = "statuehmcrusader.m2", + }, + { + fileId = "190925", + text = "statuehmcrusaderclean.m2", + value = "statuehmcrusaderclean.m2", + }, + { + fileId = "190926", + text = "statuehmcrusadersoldier.m2", + value = "statuehmcrusadersoldier.m2", + }, + { + fileId = "190927", + text = "statuehmonearm.m2", + value = "statuehmonearm.m2", + }, + { + fileId = "190928", + text = "statuehmpaladin.m2", + value = "statuehmpaladin.m2", + }, + { + fileId = "190929", + text = "statuehmpriest.m2", + value = "statuehmpriest.m2", + }, + }, + text = "statues", + value = "statues", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "scarletmonastery", + value = "scarletmonastery", + }, + { + children = { + { + fileId = "190933", + text = "sunwell_bushes.m2", + value = "sunwell_bushes.m2", + }, + { + fileId = "190934", + text = "sunwell_lamps.m2", + value = "sunwell_lamps.m2", + }, + { + fileId = "190935", + text = "sunwell_trees.m2", + value = "sunwell_trees.m2", + }, + }, + text = "sunwell", + value = "sunwell", + }, + }, + text = "dungeon", + value = "dungeon", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "190963", + text = "hive_fireflies_01.m2", + value = "hive_fireflies_01.m2", + }, + { + fileId = "190964", + text = "hive_fireflies_large.m2", + value = "hive_fireflies_large.m2", + }, + }, + text = "fireflies", + value = "fireflies", + }, + { + children = { + { + fileId = "190967", + text = "hive_lightshaft01.m2", + value = "hive_lightshaft01.m2", + }, + { + fileId = "190968", + text = "hive_lightshaft02.m2", + value = "hive_lightshaft02.m2", + }, + }, + text = "lightshaft", + value = "lightshaft", + }, + { + children = { + { + fileId = "190970", + text = "hive_sand.m2", + value = "hive_sand.m2", + }, + { + fileId = "190971", + text = "hive_sandwaterfall.m2", + value = "hive_sandwaterfall.m2", + }, + }, + text = "sandwaterfall", + value = "sandwaterfall", + }, + { + children = { + { + fileId = "190974", + text = "hivesteam.m2", + value = "hivesteam.m2", + }, + }, + text = "steam", + value = "steam", + }, + }, + text = "anquiraj", + value = "anquiraj", + }, + { + children = { + { + fileId = "191009", + text = "animaltrainer.m2", + value = "animaltrainer.m2", + }, + { + fileId = "191016", + text = "carni_cannon.m2", + value = "carni_cannon.m2", + }, + { + fileId = "191018", + text = "carni_cannontarget.m2", + value = "carni_cannontarget.m2", + }, + { + fileId = "191019", + text = "carni_wagon01.m2", + value = "carni_wagon01.m2", + }, + { + fileId = "191020", + text = "carni_wagon_empty01.m2", + value = "carni_wagon_empty01.m2", + }, + { + fileId = "191021", + text = "carnie_merchant01.m2", + value = "carnie_merchant01.m2", + }, + { + fileId = "191022", + text = "carnietent_small01.m2", + value = "carnietent_small01.m2", + }, + { + fileId = "191023", + text = "carnival_banner01.m2", + value = "carnival_banner01.m2", + }, + { + fileId = "191024", + text = "carnival_banner02.m2", + value = "carnival_banner02.m2", + }, + { + fileId = "191025", + text = "carnivalrailing.m2", + value = "carnivalrailing.m2", + }, + { + fileId = "191026", + text = "coketent.m2", + value = "coketent.m2", + }, + { + fileId = "191029", + text = "darkmoonfaireposter.m2", + value = "darkmoonfaireposter.m2", + }, + { + fileId = "191031", + text = "foodvendor.m2", + value = "foodvendor.m2", + }, + { + fileId = "191032", + text = "fortuneteller.m2", + value = "fortuneteller.m2", + }, + { + fileId = "191033", + text = "haybail01.m2", + value = "haybail01.m2", + }, + { + fileId = "191034", + text = "haybail02.m2", + value = "haybail02.m2", + }, + { + fileId = "191037", + text = "shoutbox.m2", + value = "shoutbox.m2", + }, + { + fileId = "191038", + text = "souvenireshop.m2", + value = "souvenireshop.m2", + }, + { + fileId = "191039", + text = "targetpractice.m2", + value = "targetpractice.m2", + }, + { + fileId = "191040", + text = "ticketmaster.m2", + value = "ticketmaster.m2", + }, + }, + text = "carnival", + value = "carnival", + }, + { + children = { + { + children = { + { + fileId = "2198606", + text = "centaur_arch01.m2", + value = "centaur_arch01.m2", + }, + { + fileId = "2198556", + text = "centaur_brokearch01.m2", + value = "centaur_brokearch01.m2", + }, + { + fileId = "2198540", + text = "centaur_brokearch02.m2", + value = "centaur_brokearch02.m2", + }, + { + fileId = "2198616", + text = "centaur_brokepillar01.m2", + value = "centaur_brokepillar01.m2", + }, + { + fileId = "2198523", + text = "centaur_pillar01.m2", + value = "centaur_pillar01.m2", + }, + { + fileId = "2198845", + text = "centaur_wall01.m2", + value = "centaur_wall01.m2", + }, + { + fileId = "2198518", + text = "centaur_wall_ruin01.m2", + value = "centaur_wall_ruin01.m2", + }, + }, + text = "centaurruins", + value = "centaurruins", + }, + }, + text = "desolace", + value = "desolace", + }, + { + children = { + { + children = { + { + fileId = "191084", + text = "altartidalmastery01.m2", + value = "altartidalmastery01.m2", + }, + }, + text = "altaroftidalmastery", + value = "altaroftidalmastery", + }, + { + children = { + { + fileId = "191085", + text = "airrift.m2", + value = "airrift.m2", + }, + { + fileId = "191087", + text = "earthrift.m2", + value = "earthrift.m2", + }, + { + fileId = "191088", + text = "firerift.m2", + value = "firerift.m2", + }, + { + fileId = "191093", + text = "waterrift.m2", + value = "waterrift.m2", + }, + }, + text = "elementalrifts", + value = "elementalrifts", + }, + { + children = { + { + fileId = "191094", + text = "helpwantedposter.m2", + value = "helpwantedposter.m2", + }, + }, + text = "helpwantedposter", + value = "helpwantedposter", + }, + { + children = { + { + fileId = "191096", + text = "ne_lanternblue01.m2", + value = "ne_lanternblue01.m2", + }, + }, + text = "nightelflanternblue", + value = "nightelflanternblue", + }, + { + children = { + { + fileId = "191098", + text = "ne_glaive01.m2", + value = "ne_glaive01.m2", + }, + { + fileId = "191099", + text = "ne_glaive02.m2", + value = "ne_glaive02.m2", + }, + { + fileId = "191100", + text = "ne_glaive03.m2", + value = "ne_glaive03.m2", + }, + { + fileId = "191101", + text = "ne_glaive04.m2", + value = "ne_glaive04.m2", + }, + }, + text = "nightelfweapons", + value = "nightelfweapons", + }, + { + children = { + { + fileId = "191103", + text = "novagrave1.m2", + value = "novagrave1.m2", + }, + }, + text = "novagrave", + value = "novagrave", + }, + { + children = { + { + fileId = "191107", + text = "horde_package01.m2", + value = "horde_package01.m2", + }, + }, + text = "package", + value = "package", + }, + { + children = { + { + fileId = "191109", + text = "paladinshrine.m2", + value = "paladinshrine.m2", + }, + }, + text = "paladinshrine", + value = "paladinshrine", + }, + }, + text = "generaldoodads", + value = "generaldoodads", + }, + { + children = { + { + fileId = "191177", + text = "icyrune01.m2", + value = "icyrune01.m2", + }, + }, + text = "naxxramas", + value = "naxxramas", + }, + { + children = { + { + children = { + { + fileId = "191217", + text = "plaguecauldronactive.m2", + value = "plaguecauldronactive.m2", + }, + { + fileId = "191218", + text = "plaguecauldronactivebase.m2", + value = "plaguecauldronactivebase.m2", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + }, + text = "plaguelands", + value = "plaguelands", + }, + { + children = { + { + children = { + { + fileId = "191347", + text = "cracked_ice01.m2", + value = "cracked_ice01.m2", + }, + }, + text = "crackedice", + value = "crackedice", + }, + }, + text = "winterspringgrove", + value = "winterspringgrove", + }, + }, + text = "doodad", + value = "doodad", + }, + }, + text = "environment", + value = "environment", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "191370", + text = "arakkoahouse_interiorglow.m2", + value = "arakkoahouse_interiorglow.m2", + }, + { + fileId = "191371", + text = "arakkoahut_interiorglow.m2", + value = "arakkoahut_interiorglow.m2", + }, + { + fileId = "191372", + text = "arakkoashack_insideglow.m2", + value = "arakkoashack_insideglow.m2", + }, + }, + text = "arakkoa_hut_glow", + value = "arakkoa_hut_glow", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "arakkoa", + value = "arakkoa", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "191379", + text = "auchindoun_bridge_fx.m2", + value = "auchindoun_bridge_fx.m2", + }, + { + fileId = "191380", + text = "auchindoun_bridge_spirits_floating.m2", + value = "auchindoun_bridge_spirits_floating.m2", + }, + { + fileId = "191381", + text = "auchindoun_bridge_spirits_flying.m2", + value = "auchindoun_bridge_spirits_flying.m2", + }, + { + fileId = "191382", + text = "auchindoun_bridge_spirits_simple.m2", + value = "auchindoun_bridge_spirits_simple.m2", + }, + { + fileId = "191383", + text = "auchindoun_bridge_swirl_filler.m2", + value = "auchindoun_bridge_swirl_filler.m2", + }, + { + fileId = "191384", + text = "auchindoun_bridge_volumelight.m2", + value = "auchindoun_bridge_volumelight.m2", + }, + }, + text = "bridge_fx", + value = "bridge_fx", + }, + { + children = { + { + fileId = "191395", + text = "ancient_d_coffin.m2", + value = "ancient_d_coffin.m2", + }, + }, + text = "coffin", + value = "coffin", + }, + { + children = { + { + fileId = "191398", + text = "auchindoun_door_swinging.m2", + value = "auchindoun_door_swinging.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "191399", + text = "auchindoun_ethereal_ribbon_type1.m2", + value = "auchindoun_ethereal_ribbon_type1.m2", + }, + { + fileId = "191400", + text = "auchindoun_ethereal_ribbon_type2.m2", + value = "auchindoun_ethereal_ribbon_type2.m2", + }, + { + fileId = "191401", + text = "auchindoun_ethereal_ribbon_type3.m2", + value = "auchindoun_ethereal_ribbon_type3.m2", + }, + { + fileId = "191402", + text = "auchindoun_ethereal_ribbon_type4.m2", + value = "auchindoun_ethereal_ribbon_type4.m2", + }, + { + fileId = "191403", + text = "auchindoun_ethereal_ribbon_type5.m2", + value = "auchindoun_ethereal_ribbon_type5.m2", + }, + }, + text = "ethereal_ribbons", + value = "ethereal_ribbons", + }, + { + children = { + { + fileId = "191408", + text = "auch_etherreal_ribbon_type1_part_a.m2", + value = "auch_etherreal_ribbon_type1_part_a.m2", + }, + { + fileId = "191409", + text = "auch_etherreal_ribbon_type1_part_b.m2", + value = "auch_etherreal_ribbon_type1_part_b.m2", + }, + { + fileId = "191410", + text = "auch_etherreal_ribbon_type1_part_c.m2", + value = "auch_etherreal_ribbon_type1_part_c.m2", + }, + { + fileId = "191411", + text = "auch_etherreal_ribbon_type2_part_a.m2", + value = "auch_etherreal_ribbon_type2_part_a.m2", + }, + { + fileId = "191412", + text = "auch_etherreal_ribbon_type2_part_b.m2", + value = "auch_etherreal_ribbon_type2_part_b.m2", + }, + { + fileId = "191413", + text = "auch_etherreal_ribbon_type2_part_c.m2", + value = "auch_etherreal_ribbon_type2_part_c.m2", + }, + { + fileId = "191414", + text = "auch_etherreal_ribbon_type3_part_a.m2", + value = "auch_etherreal_ribbon_type3_part_a.m2", + }, + { + fileId = "191415", + text = "auch_etherreal_ribbon_type3_part_b.m2", + value = "auch_etherreal_ribbon_type3_part_b.m2", + }, + { + fileId = "191416", + text = "auch_etherreal_ribbon_type3_part_c.m2", + value = "auch_etherreal_ribbon_type3_part_c.m2", + }, + { + fileId = "191417", + text = "auch_etherreal_ribbon_type4_part_a.m2", + value = "auch_etherreal_ribbon_type4_part_a.m2", + }, + { + fileId = "191418", + text = "auch_etherreal_ribbon_type4_part_b.m2", + value = "auch_etherreal_ribbon_type4_part_b.m2", + }, + { + fileId = "191419", + text = "auch_etherreal_ribbon_type4_part_c.m2", + value = "auch_etherreal_ribbon_type4_part_c.m2", + }, + { + fileId = "191420", + text = "auch_etherreal_ribbon_type5_part_a.m2", + value = "auch_etherreal_ribbon_type5_part_a.m2", + }, + { + fileId = "191421", + text = "auch_etherreal_ribbon_type5_part_b.m2", + value = "auch_etherreal_ribbon_type5_part_b.m2", + }, + { + fileId = "191422", + text = "auch_etherreal_ribbon_type5_part_c.m2", + value = "auch_etherreal_ribbon_type5_part_c.m2", + }, + }, + text = "ethereal_ribbons_individual", + value = "ethereal_ribbons_individual", + }, + { + children = { + { + fileId = "191425", + text = "draenei_spirit_head.m2", + value = "draenei_spirit_head.m2", + }, + { + fileId = "191426", + text = "draenei_spirit_red.m2", + value = "draenei_spirit_red.m2", + }, + }, + text = "spirit_fx", + value = "spirit_fx", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "auchindoun", + value = "auchindoun", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "191427", + text = "blacktemple_gen_door.m2", + value = "blacktemple_gen_door.m2", + }, + { + fileId = "191428", + text = "bt_commondoor.m2", + value = "bt_commondoor.m2", + }, + { + fileId = "191430", + text = "bt_gate.m2", + value = "bt_gate.m2", + }, + { + fileId = "191433", + text = "bt_gate_solid.m2", + value = "bt_gate_solid.m2", + }, + { + fileId = "191436", + text = "bt_illidan_door.m2", + value = "bt_illidan_door.m2", + }, + { + fileId = "191437", + text = "bt_illidan_door_left.m2", + value = "bt_illidan_door_left.m2", + }, + { + fileId = "191438", + text = "bt_illidan_door_right.m2", + value = "bt_illidan_door_right.m2", + }, + { + fileId = "191439", + text = "bt_maindoor.m2", + value = "bt_maindoor.m2", + }, + }, + text = "doors", + value = "doors", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "191444", + text = "blacktemple_waterfall_type1.m2", + value = "blacktemple_waterfall_type1.m2", + }, + }, + text = "blueenergy", + value = "blueenergy", + }, + { + children = { + { + fileId = "191447", + text = "bt_brazier.m2", + value = "bt_brazier.m2", + }, + { + fileId = "191448", + text = "bt_brazier_blue.m2", + value = "bt_brazier_blue.m2", + }, + { + fileId = "191449", + text = "bt_brazier_broken.m2", + value = "bt_brazier_broken.m2", + }, + { + fileId = "191450", + text = "bt_brazier_green.m2", + value = "bt_brazier_green.m2", + }, + { + fileId = "191451", + text = "bt_brazier_red.m2", + value = "bt_brazier_red.m2", + }, + { + fileId = "191452", + text = "bt_brazier_violet.m2", + value = "bt_brazier_violet.m2", + }, + { + fileId = "191453", + text = "bt_brazier_yellow.m2", + value = "bt_brazier_yellow.m2", + }, + }, + text = "brazier", + value = "brazier", + }, + { + children = { + { + fileId = "191454", + text = "bt_drapes.m2", + value = "bt_drapes.m2", + }, + }, + text = "drapes", + value = "drapes", + }, + { + children = { + { + fileId = "191467", + text = "bt_sewerfall.m2", + value = "bt_sewerfall.m2", + }, + { + fileId = "191468", + text = "bt_sewergutter_hall.m2", + value = "bt_sewergutter_hall.m2", + }, + { + fileId = "191469", + text = "bt_sewergutter_section2.m2", + value = "bt_sewergutter_section2.m2", + }, + { + fileId = "191470", + text = "bt_sewerramp.m2", + value = "bt_sewerramp.m2", + }, + { + fileId = "191471", + text = "bt_sewerwater_bossroom.m2", + value = "bt_sewerwater_bossroom.m2", + }, + { + fileId = "191472", + text = "bt_sewerwater_section1.m2", + value = "bt_sewerwater_section1.m2", + }, + }, + text = "sewerwater", + value = "sewerwater", + }, + { + children = { + { + fileId = "191473", + text = "bt_statueeyes.m2", + value = "bt_statueeyes.m2", + }, + { + fileId = "191474", + text = "bt_statueeyes_green.m2", + value = "bt_statueeyes_green.m2", + }, + }, + text = "statue", + value = "statue", + }, + { + children = { + { + fileId = "191476", + text = "bt_vines01.m2", + value = "bt_vines01.m2", + }, + { + fileId = "191477", + text = "bt_vines02.m2", + value = "bt_vines02.m2", + }, + }, + text = "vines", + value = "vines", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "blacktemple", + value = "blacktemple", + }, + { + children = { + { + children = { + { + fileId = "191478", + text = "bladesedgebush01.m2", + value = "bladesedgebush01.m2", + }, + { + fileId = "191479", + text = "bladesedgebush02.m2", + value = "bladesedgebush02.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + fileId = "191482", + text = "darkportal_bladesedge_particles.m2", + value = "darkportal_bladesedge_particles.m2", + }, + }, + text = "darkportal", + value = "darkportal", + }, + { + children = { + { + fileId = "191483", + text = "bem_dragon_01.m2", + value = "bem_dragon_01.m2", + }, + { + fileId = "191484", + text = "bem_dragon_02.m2", + value = "bem_dragon_02.m2", + }, + { + fileId = "191485", + text = "bem_dragon_03.m2", + value = "bem_dragon_03.m2", + }, + { + fileId = "191486", + text = "bem_dragon_04.m2", + value = "bem_dragon_04.m2", + }, + { + fileId = "191487", + text = "bem_dragon_05.m2", + value = "bem_dragon_05.m2", + }, + }, + text = "dragon", + value = "dragon", + }, + { + children = { + { + children = { + { + fileId = "191488", + text = "ogrila_crystal01.m2", + value = "ogrila_crystal01.m2", + }, + { + fileId = "191489", + text = "ogrila_crystal02.m2", + value = "ogrila_crystal02.m2", + }, + { + fileId = "191490", + text = "ogrila_crystal03.m2", + value = "ogrila_crystal03.m2", + }, + }, + text = "ogrilacrystals", + value = "ogrilacrystals", + }, + { + children = { + { + fileId = "191491", + text = "ogrila_banner.m2", + value = "ogrila_banner.m2", + }, + { + fileId = "191492", + text = "ogrila_hut.m2", + value = "ogrila_hut.m2", + }, + }, + text = "ogrilahut", + value = "ogrilahut", + }, + }, + text = "ogrila", + value = "ogrila", + }, + { + children = { + { + fileId = "191497", + text = "bladesedge_floatingsmall01.m2", + value = "bladesedge_floatingsmall01.m2", + }, + { + fileId = "191498", + text = "bladesedge_floatingsmall02.m2", + value = "bladesedge_floatingsmall02.m2", + }, + { + fileId = "191499", + text = "bladesedge_overhangrock_large_01.m2", + value = "bladesedge_overhangrock_large_01.m2", + }, + { + fileId = "191500", + text = "bladesedge_overhangrock_large_02.m2", + value = "bladesedge_overhangrock_large_02.m2", + }, + { + fileId = "191501", + text = "bladesedge_overhangrock_small_01.m2", + value = "bladesedge_overhangrock_small_01.m2", + }, + { + fileId = "191502", + text = "bladesedge_overhangrock_small_02.m2", + value = "bladesedge_overhangrock_small_02.m2", + }, + { + fileId = "191503", + text = "bladesedge_overhangrock_small_03.m2", + value = "bladesedge_overhangrock_small_03.m2", + }, + { + fileId = "191504", + text = "bladesedgecliffrock01.m2", + value = "bladesedgecliffrock01.m2", + }, + { + fileId = "191505", + text = "bladesedgecliffrock02.m2", + value = "bladesedgecliffrock02.m2", + }, + { + fileId = "191506", + text = "bladesedgecliffrock03.m2", + value = "bladesedgecliffrock03.m2", + }, + { + fileId = "191507", + text = "bladesedgegroundrock01.m2", + value = "bladesedgegroundrock01.m2", + }, + { + fileId = "191508", + text = "bladesedgegroundrock02.m2", + value = "bladesedgegroundrock02.m2", + }, + { + fileId = "191509", + text = "bladesedgegroundrock03.m2", + value = "bladesedgegroundrock03.m2", + }, + { + fileId = "191510", + text = "bladesedgerock_finger01.m2", + value = "bladesedgerock_finger01.m2", + }, + { + fileId = "191511", + text = "bladesedgerock_finger02.m2", + value = "bladesedgerock_finger02.m2", + }, + { + fileId = "191512", + text = "bladesedgerock_finger03.m2", + value = "bladesedgerock_finger03.m2", + }, + { + fileId = "191514", + text = "bladesedgerockarch01.m2", + value = "bladesedgerockarch01.m2", + }, + { + fileId = "191515", + text = "bladesedgerockarch02.m2", + value = "bladesedgerockarch02.m2", + }, + { + fileId = "191516", + text = "bladesedgerockbridge01.m2", + value = "bladesedgerockbridge01.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "191535", + text = "simongame_floatingcrystal.m2", + value = "simongame_floatingcrystal.m2", + }, + { + fileId = "191536", + text = "simongame_largebase.m2", + value = "simongame_largebase.m2", + }, + { + fileId = "191537", + text = "simongame_largebluetree.m2", + value = "simongame_largebluetree.m2", + }, + { + fileId = "191538", + text = "simongame_largegreentree.m2", + value = "simongame_largegreentree.m2", + }, + { + fileId = "191539", + text = "simongame_largeredtree.m2", + value = "simongame_largeredtree.m2", + }, + { + fileId = "191540", + text = "simongame_largeyellowtree.m2", + value = "simongame_largeyellowtree.m2", + }, + { + fileId = "191541", + text = "simongame_smallbluebase.m2", + value = "simongame_smallbluebase.m2", + }, + { + fileId = "191542", + text = "simongame_smallbluetree.m2", + value = "simongame_smallbluetree.m2", + }, + { + fileId = "191543", + text = "simongame_smallgreenbase.m2", + value = "simongame_smallgreenbase.m2", + }, + { + fileId = "191544", + text = "simongame_smallgreentree.m2", + value = "simongame_smallgreentree.m2", + }, + { + fileId = "191545", + text = "simongame_smallredbase.m2", + value = "simongame_smallredbase.m2", + }, + { + fileId = "191546", + text = "simongame_smallredtree.m2", + value = "simongame_smallredtree.m2", + }, + { + fileId = "191547", + text = "simongame_smallyellowbase.m2", + value = "simongame_smallyellowbase.m2", + }, + { + fileId = "191548", + text = "simongame_smallyellowtree.m2", + value = "simongame_smallyellowtree.m2", + }, + }, + text = "simon", + value = "simon", + }, + { + children = { + { + fileId = "191550", + text = "bladesedgecrater01.m2", + value = "bladesedgecrater01.m2", + }, + { + fileId = "191551", + text = "bladesedgetree01.m2", + value = "bladesedgetree01.m2", + }, + { + fileId = "191552", + text = "bladesedgetree02.m2", + value = "bladesedgetree02.m2", + }, + { + fileId = "191553", + text = "bladesedgetree03.m2", + value = "bladesedgetree03.m2", + }, + { + fileId = "191554", + text = "bladesedgetree04.m2", + value = "bladesedgetree04.m2", + }, + { + fileId = "191555", + text = "bladesedgetree05.m2", + value = "bladesedgetree05.m2", + }, + { + fileId = "191556", + text = "bladesedgetree06.m2", + value = "bladesedgetree06.m2", + }, + { + fileId = "191557", + text = "bladesedgetree07.m2", + value = "bladesedgetree07.m2", + }, + { + fileId = "191558", + text = "bladesedgetree08.m2", + value = "bladesedgetree08.m2", + }, + { + fileId = "191559", + text = "bladesedgetreestump.m2", + value = "bladesedgetreestump.m2", + }, + { + fileId = "191561", + text = "bladesterokkarbush01.m2", + value = "bladesterokkarbush01.m2", + }, + { + fileId = "191562", + text = "bladesterokkarfallentree.m2", + value = "bladesterokkarfallentree.m2", + }, + { + fileId = "191563", + text = "bladesterokkartreelarge.m2", + value = "bladesterokkartreelarge.m2", + }, + { + fileId = "191564", + text = "bladesterokkartreemedium.m2", + value = "bladesterokkartreemedium.m2", + }, + { + fileId = "191565", + text = "bladesterokkartreenoleaves01.m2", + value = "bladesterokkartreenoleaves01.m2", + }, + { + fileId = "191566", + text = "bladesterokkartreenoleaves02.m2", + value = "bladesterokkartreenoleaves02.m2", + }, + { + fileId = "191567", + text = "bladesterokkartreesapling.m2", + value = "bladesterokkartreesapling.m2", + }, + { + fileId = "191568", + text = "bladesterokkartreesmall.m2", + value = "bladesterokkartreesmall.m2", + }, + { + fileId = "191569", + text = "bladesterokkartreestump.m2", + value = "bladesterokkartreestump.m2", + }, + { + fileId = "191570", + text = "bladesterokkartreestump02.m2", + value = "bladesterokkartreestump02.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "bladesedge", + value = "bladesedge", + }, + { + children = { + { + children = { + { + fileId = "191576", + text = "bloodmyst_be_portal.m2", + value = "bloodmyst_be_portal.m2", + }, + }, + text = "be_portal", + value = "be_portal", + }, + { + children = { + { + fileId = "191579", + text = "bloodmystcrystal01.m2", + value = "bloodmystcrystal01.m2", + }, + { + fileId = "191580", + text = "bloodmystcrystal02.m2", + value = "bloodmystcrystal02.m2", + }, + { + fileId = "191581", + text = "bloodmystcrystal03.m2", + value = "bloodmystcrystal03.m2", + }, + { + fileId = "191583", + text = "bloodmystcrystalaparatus01.m2", + value = "bloodmystcrystalaparatus01.m2", + }, + { + fileId = "191584", + text = "bloodmystcrystalbig01_corrupted.m2", + value = "bloodmystcrystalbig01_corrupted.m2", + }, + { + fileId = "191585", + text = "bloodmystcrystalbig02_corrupted.m2", + value = "bloodmystcrystalbig02_corrupted.m2", + }, + { + fileId = "191586", + text = "bloodmystcrystalbig03_corrupted.m2", + value = "bloodmystcrystalbig03_corrupted.m2", + }, + { + fileId = "191588", + text = "bloodmystcrystalfloating01.m2", + value = "bloodmystcrystalfloating01.m2", + }, + { + fileId = "191589", + text = "bloodmystcrystalsmall01_corrupted.m2", + value = "bloodmystcrystalsmall01_corrupted.m2", + }, + { + fileId = "191590", + text = "bloodmystcrystalsmall02_corrupted.m2", + value = "bloodmystcrystalsmall02_corrupted.m2", + }, + { + fileId = "191591", + text = "bloodmystcrystalsmall03_corrupted.m2", + value = "bloodmystcrystalsmall03_corrupted.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "191594", + text = "bloodmyst_powercore.m2", + value = "bloodmyst_powercore.m2", + }, + { + fileId = "191614", + text = "powercore_coil_fx.m2", + value = "powercore_coil_fx.m2", + }, + }, + text = "powercore", + value = "powercore", + }, + { + children = { + { + fileId = "191616", + text = "bloodmystrockrune01.m2", + value = "bloodmystrockrune01.m2", + }, + { + fileId = "191618", + text = "bloodmystrockrune02.m2", + value = "bloodmystrockrune02.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "191627", + text = "bloodmystbush01.m2", + value = "bloodmystbush01.m2", + }, + { + fileId = "191628", + text = "bloodmystbush02.m2", + value = "bloodmystbush02.m2", + }, + { + fileId = "191629", + text = "bloodmystbush03.m2", + value = "bloodmystbush03.m2", + }, + { + fileId = "191631", + text = "bloodmystredwaterfall.m2", + value = "bloodmystredwaterfall.m2", + }, + { + fileId = "191632", + text = "bloodmysttree01.m2", + value = "bloodmysttree01.m2", + }, + { + fileId = "191633", + text = "bloodmysttree01_web.m2", + value = "bloodmysttree01_web.m2", + }, + { + fileId = "191634", + text = "bloodmysttree02.m2", + value = "bloodmysttree02.m2", + }, + { + fileId = "191635", + text = "bloodmysttree02_web.m2", + value = "bloodmysttree02_web.m2", + }, + { + fileId = "191636", + text = "bloodmysttree03_web.m2", + value = "bloodmysttree03_web.m2", + }, + { + fileId = "191637", + text = "bloodmysttree07_web.m2", + value = "bloodmysttree07_web.m2", + }, + { + fileId = "191638", + text = "bloodmysttreecrystal01.m2", + value = "bloodmysttreecrystal01.m2", + }, + { + fileId = "191639", + text = "bloodmysttreecrystal02.m2", + value = "bloodmysttreecrystal02.m2", + }, + { + fileId = "191640", + text = "bloodmysttreefallen.m2", + value = "bloodmysttreefallen.m2", + }, + { + fileId = "191641", + text = "bloodmysttreerunes01.m2", + value = "bloodmysttreerunes01.m2", + }, + { + fileId = "191642", + text = "bloodmysttreerunes02.m2", + value = "bloodmysttreerunes02.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "191644", + text = "cocoon_yellow.m2", + value = "cocoon_yellow.m2", + }, + { + fileId = "191645", + text = "cocoontrap_yellow.m2", + value = "cocoontrap_yellow.m2", + }, + { + fileId = "191648", + text = "nastyspiderweb_yellow.m2", + value = "nastyspiderweb_yellow.m2", + }, + { + fileId = "191651", + text = "spidereggsack_yellow.m2", + value = "spidereggsack_yellow.m2", + }, + { + fileId = "191652", + text = "spidereggsground_yellow.m2", + value = "spidereggsground_yellow.m2", + }, + { + fileId = "191656", + text = "webdangle_yellow.m2", + value = "webdangle_yellow.m2", + }, + }, + text = "webs", + value = "webs", + }, + }, + text = "bloodmyst", + value = "bloodmyst", + }, + { + children = { + { + children = { + { + fileId = "191658", + text = "bonewastesboneshrine01.m2", + value = "bonewastesboneshrine01.m2", + }, + }, + text = "boneshrine", + value = "boneshrine", + }, + { + children = { + { + fileId = "191661", + text = "bonewastestreetrunk01.m2", + value = "bonewastestreetrunk01.m2", + }, + { + fileId = "191663", + text = "bonewastestreetrunk02.m2", + value = "bonewastestreetrunk02.m2", + }, + { + fileId = "191664", + text = "bonewastestreetrunk03.m2", + value = "bonewastestreetrunk03.m2", + }, + { + fileId = "191665", + text = "bonewastestreetrunk04.m2", + value = "bonewastestreetrunk04.m2", + }, + { + fileId = "191666", + text = "bonewastestreetrunk05.m2", + value = "bonewastestreetrunk05.m2", + }, + { + fileId = "191667", + text = "bonewastestreetrunk06.m2", + value = "bonewastestreetrunk06.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "bonewastes", + value = "bonewastes", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "191668", + text = "cf_elevatorplatform.m2", + value = "cf_elevatorplatform.m2", + }, + { + fileId = "191669", + text = "cf_elevatorplatform_small.m2", + value = "cf_elevatorplatform_small.m2", + }, + }, + text = "elevator", + value = "elevator", + }, + { + children = { + { + fileId = "191683", + text = "coilfang_pumpingdoor.m2", + value = "coilfang_pumpingdoor.m2", + }, + }, + text = "pumpingdoor", + value = "pumpingdoor", + }, + { + children = { + { + fileId = "191688", + text = "coilfang_raid_bridge_part1.m2", + value = "coilfang_raid_bridge_part1.m2", + }, + { + fileId = "191689", + text = "coilfang_raid_bridge_part2.m2", + value = "coilfang_raid_bridge_part2.m2", + }, + { + fileId = "191690", + text = "coilfang_raid_bridge_part3.m2", + value = "coilfang_raid_bridge_part3.m2", + }, + }, + text = "raid_bridge", + value = "raid_bridge", + }, + { + children = { + { + fileId = "191705", + text = "coilfang_raid_bridge_controls.m2", + value = "coilfang_raid_bridge_controls.m2", + }, + { + fileId = "191706", + text = "coilfang_raid_console.m2", + value = "coilfang_raid_console.m2", + }, + { + fileId = "191707", + text = "coilfang_raid_gate.m2", + value = "coilfang_raid_gate.m2", + }, + }, + text = "raid_bridge_control", + value = "raid_bridge_control", + }, + { + children = { + { + fileId = "191715", + text = "coilfang_raid_door.m2", + value = "coilfang_raid_door.m2", + }, + }, + text = "raid_door", + value = "raid_door", + }, + { + children = { + { + fileId = "191724", + text = "coilfang_steam_off_on.m2", + value = "coilfang_steam_off_on.m2", + }, + }, + text = "steam", + value = "steam", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "191725", + text = "coilfang_blue_energy.m2", + value = "coilfang_blue_energy.m2", + }, + }, + text = "blueenergy", + value = "blueenergy", + }, + { + children = { + { + fileId = "191727", + text = "cf_groundcage.m2", + value = "cf_groundcage.m2", + }, + { + fileId = "191728", + text = "cf_hangingcage.m2", + value = "cf_hangingcage.m2", + }, + }, + text = "cages", + value = "cages", + }, + { + children = { + { + fileId = "191729", + text = "coilfang_circularlightwindow_blue.m2", + value = "coilfang_circularlightwindow_blue.m2", + }, + { + fileId = "191730", + text = "coilfang_floor_light.m2", + value = "coilfang_floor_light.m2", + }, + { + fileId = "191731", + text = "coilfang_orb.m2", + value = "coilfang_orb.m2", + }, + { + fileId = "191732", + text = "coilfang_orb_orange.m2", + value = "coilfang_orb_orange.m2", + }, + { + fileId = "191733", + text = "coilfang_wall_light.m2", + value = "coilfang_wall_light.m2", + }, + }, + text = "lights", + value = "lights", + }, + { + children = { + { + fileId = "191745", + text = "zangarmushroom06_blueglow.m2", + value = "zangarmushroom06_blueglow.m2", + }, + { + fileId = "191746", + text = "zangarmushroom07_blueglow.m2", + value = "zangarmushroom07_blueglow.m2", + }, + }, + text = "mushrooms", + value = "mushrooms", + }, + { + children = { + { + fileId = "191747", + text = "cf_pipea.m2", + value = "cf_pipea.m2", + }, + { + fileId = "191748", + text = "cf_pipeb.m2", + value = "cf_pipeb.m2", + }, + { + fileId = "191749", + text = "cf_pipec.m2", + value = "cf_pipec.m2", + }, + }, + text = "pipepieces", + value = "pipepieces", + }, + { + children = { + { + fileId = "191752", + text = "coilfang_pump.m2", + value = "coilfang_pump.m2", + }, + { + fileId = "191753", + text = "coilfang_pump_raidwater.m2", + value = "coilfang_pump_raidwater.m2", + }, + }, + text = "pump", + value = "pump", + }, + { + children = { + { + fileId = "191756", + text = "cf_raid_giantpump.m2", + value = "cf_raid_giantpump.m2", + }, + }, + text = "raid", + value = "raid", + }, + { + children = { + { + fileId = "191760", + text = "cf_railing.m2", + value = "cf_railing.m2", + }, + }, + text = "railing", + value = "railing", + }, + { + children = { + { + fileId = "191762", + text = "coilfang_steam.m2", + value = "coilfang_steam.m2", + }, + { + fileId = "191763", + text = "coilfang_steam_choppy.m2", + value = "coilfang_steam_choppy.m2", + }, + }, + text = "steam", + value = "steam", + }, + { + children = { + { + fileId = "191766", + text = "coilfang_marsh_waterfall.m2", + value = "coilfang_marsh_waterfall.m2", + }, + { + fileId = "191767", + text = "coilfang_waterfall_type1.m2", + value = "coilfang_waterfall_type1.m2", + }, + { + fileId = "191768", + text = "coilfang_waterfall_type2.m2", + value = "coilfang_waterfall_type2.m2", + }, + { + fileId = "191769", + text = "coilfang_waterfall_type3.m2", + value = "coilfang_waterfall_type3.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + { + children = { + { + fileId = "191770", + text = "giantglasswindow01.m2", + value = "giantglasswindow01.m2", + }, + }, + text = "windows", + value = "windows", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "coilfang", + value = "coilfang", + }, + { + children = { + { + children = { + { + fileId = "191771", + text = "be_fence_eversong01.m2", + value = "be_fence_eversong01.m2", + }, + { + fileId = "191772", + text = "be_fence_eversong02.m2", + value = "be_fence_eversong02.m2", + }, + { + fileId = "191773", + text = "be_fence_eversong03.m2", + value = "be_fence_eversong03.m2", + }, + }, + text = "fence", + value = "fence", + }, + { + children = { + { + fileId = "191775", + text = "be_lamppost_eversong01-optimized.m2", + value = "be_lamppost_eversong01-optimized.m2", + }, + { + fileId = "191776", + text = "be_lamppost_eversong01.m2", + value = "be_lamppost_eversong01.m2", + }, + }, + text = "lamppost", + value = "lamppost", + }, + { + children = { + { + fileId = "191777", + text = "be_signpost_eversong.m2", + value = "be_signpost_eversong.m2", + }, + { + fileId = "191778", + text = "be_signpost_sign_eversong.m2", + value = "be_signpost_sign_eversong.m2", + }, + }, + text = "signpost", + value = "signpost", + }, + }, + text = "eversong", + value = "eversong", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "191780", + text = "ao_banner01.m2", + value = "ao_banner01.m2", + }, + { + fileId = "191781", + text = "ao_banner02.m2", + value = "ao_banner02.m2", + }, + { + fileId = "191783", + text = "ao_wall_hanging_01.m2", + value = "ao_wall_hanging_01.m2", + }, + { + fileId = "191784", + text = "ao_wall_hanging_02.m2", + value = "ao_wall_hanging_02.m2", + }, + { + fileId = "191785", + text = "ao_wall_hanging_03.m2", + value = "ao_wall_hanging_03.m2", + }, + { + fileId = "191786", + text = "ao_wall_hanging_04.m2", + value = "ao_wall_hanging_04.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "191787", + text = "ao_barrel01.m2", + value = "ao_barrel01.m2", + }, + }, + text = "barrel", + value = "barrel", + }, + { + children = { + { + fileId = "191790", + text = "ao_boardwalk01.m2", + value = "ao_boardwalk01.m2", + }, + { + fileId = "191791", + text = "ao_boardwalk02.m2", + value = "ao_boardwalk02.m2", + }, + { + fileId = "191792", + text = "ao_boardwalk03.m2", + value = "ao_boardwalk03.m2", + }, + { + fileId = "191793", + text = "ao_boardwalk04.m2", + value = "ao_boardwalk04.m2", + }, + { + fileId = "191794", + text = "ao_boardwalk05.m2", + value = "ao_boardwalk05.m2", + }, + { + fileId = "191795", + text = "ao_boardwalk_corner.m2", + value = "ao_boardwalk_corner.m2", + }, + }, + text = "boardwalk", + value = "boardwalk", + }, + { + children = { + { + fileId = "191796", + text = "ao_bridgelong01.m2", + value = "ao_bridgelong01.m2", + }, + { + fileId = "191797", + text = "ao_bridgelong02.m2", + value = "ao_bridgelong02.m2", + }, + { + fileId = "191798", + text = "ao_bridgerock01.m2", + value = "ao_bridgerock01.m2", + }, + { + fileId = "191801", + text = "ao_bridgetree01.m2", + value = "ao_bridgetree01.m2", + }, + }, + text = "bridgepieces", + value = "bridgepieces", + }, + { + children = { + { + fileId = "191802", + text = "ao_orccrate01.m2", + value = "ao_orccrate01.m2", + }, + { + fileId = "191803", + text = "ao_orccrate02.m2", + value = "ao_orccrate02.m2", + }, + { + fileId = "191804", + text = "ao_orccrate03.m2", + value = "ao_orccrate03.m2", + }, + }, + text = "crates", + value = "crates", + }, + { + children = { + { + fileId = "191807", + text = "ao_lamppost01.m2", + value = "ao_lamppost01.m2", + }, + { + fileId = "191808", + text = "ao_lamppost02.m2", + value = "ao_lamppost02.m2", + }, + }, + text = "lampost", + value = "lampost", + }, + { + children = { + { + fileId = "191809", + text = "ao_outpostwall01.m2", + value = "ao_outpostwall01.m2", + }, + { + fileId = "191810", + text = "ao_outpostwall02.m2", + value = "ao_outpostwall02.m2", + }, + { + fileId = "191811", + text = "ao_outpostwall03.m2", + value = "ao_outpostwall03.m2", + }, + { + fileId = "191812", + text = "ao_outpostwall04.m2", + value = "ao_outpostwall04.m2", + }, + { + fileId = "191813", + text = "ao_outpostwall05.m2", + value = "ao_outpostwall05.m2", + }, + { + fileId = "191814", + text = "ao_outpostwall06.m2", + value = "ao_outpostwall06.m2", + }, + { + fileId = "191815", + text = "ao_outpostwall07.m2", + value = "ao_outpostwall07.m2", + }, + }, + text = "outpostwalls", + value = "outpostwalls", + }, + { + children = { + { + fileId = "191817", + text = "ao_pyre01.m2", + value = "ao_pyre01.m2", + }, + { + fileId = "191818", + text = "ao_pyre02.m2", + value = "ao_pyre02.m2", + }, + }, + text = "pyres", + value = "pyres", + }, + { + children = { + { + fileId = "191820", + text = "ao_signpost01.m2", + value = "ao_signpost01.m2", + }, + { + fileId = "191821", + text = "ao_signpostpointer01.m2", + value = "ao_signpostpointer01.m2", + }, + }, + text = "signposts", + value = "signposts", + }, + { + children = { + { + fileId = "191822", + text = "ao_sticks_01.m2", + value = "ao_sticks_01.m2", + }, + }, + text = "sticks", + value = "sticks", + }, + { + children = { + { + fileId = "191823", + text = "ao_totem01.m2", + value = "ao_totem01.m2", + }, + }, + text = "totem", + value = "totem", + }, + { + children = { + { + fileId = "191824", + text = "ao_windmill.m2", + value = "ao_windmill.m2", + }, + }, + text = "windmill", + value = "windmill", + }, + }, + text = "ancientorc", + value = "ancientorc", + }, + { + children = { + { + fileId = "191825", + text = "ak_alchemybottle01.m2", + value = "ak_alchemybottle01.m2", + }, + { + fileId = "191826", + text = "ak_alchemybottle02.m2", + value = "ak_alchemybottle02.m2", + }, + { + fileId = "191827", + text = "ak_alchemybottle03.m2", + value = "ak_alchemybottle03.m2", + }, + { + children = { + { + fileId = "191829", + text = "ak_banner01.m2", + value = "ak_banner01.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "191830", + text = "ak_crystalball01.m2", + value = "ak_crystalball01.m2", + }, + { + fileId = "191831", + text = "ak_crystalball02.m2", + value = "ak_crystalball02.m2", + }, + }, + text = "crystalball", + value = "crystalball", + }, + { + children = { + { + fileId = "191832", + text = "ak_egg01.m2", + value = "ak_egg01.m2", + }, + { + fileId = "191833", + text = "ak_egg02.m2", + value = "ak_egg02.m2", + }, + { + fileId = "191834", + text = "ak_nest01.m2", + value = "ak_nest01.m2", + }, + { + fileId = "191835", + text = "ak_nestdebris01.m2", + value = "ak_nestdebris01.m2", + }, + }, + text = "nest", + value = "nest", + }, + { + children = { + { + fileId = "191839", + text = "ak_scarecrow01.m2", + value = "ak_scarecrow01.m2", + }, + }, + text = "scarecrow", + value = "scarecrow", + }, + { + children = { + { + fileId = "191841", + text = "ak_shelter01.m2", + value = "ak_shelter01.m2", + }, + { + fileId = "191842", + text = "ak_shelter02.m2", + value = "ak_shelter02.m2", + }, + { + fileId = "191843", + text = "ak_shelter03.m2", + value = "ak_shelter03.m2", + }, + }, + text = "shelters", + value = "shelters", + }, + { + children = { + { + fileId = "191858", + text = "ak_torch01.m2", + value = "ak_torch01.m2", + }, + }, + text = "torch", + value = "torch", + }, + { + children = { + { + fileId = "191859", + text = "ak_totem01.m2", + value = "ak_totem01.m2", + }, + { + fileId = "191860", + text = "ak_totem02.m2", + value = "ak_totem02.m2", + }, + }, + text = "totem", + value = "totem", + }, + { + children = { + { + fileId = "191863", + text = "ak_alchemyset01.m2", + value = "ak_alchemyset01.m2", + }, + { + fileId = "191864", + text = "ak_blacksmithset01.m2", + value = "ak_blacksmithset01.m2", + }, + }, + text = "tradeskill", + value = "tradeskill", + }, + }, + text = "arakkoa", + value = "arakkoa", + }, + { + children = { + { + children = { + { + fileId = "191874", + text = "be_ballista01.m2", + value = "be_ballista01.m2", + }, + { + fileId = "191875", + text = "be_ballistaarm.m2", + value = "be_ballistaarm.m2", + }, + { + fileId = "191876", + text = "be_ballistarail.m2", + value = "be_ballistarail.m2", + }, + { + fileId = "191877", + text = "be_ballistashield.m2", + value = "be_ballistashield.m2", + }, + { + fileId = "191878", + text = "be_ballistaslide.m2", + value = "be_ballistaslide.m2", + }, + { + fileId = "191879", + text = "be_ballistawheel.m2", + value = "be_ballistawheel.m2", + }, + { + fileId = "191880", + text = "be_ballistawinch.m2", + value = "be_ballistawinch.m2", + }, + { + fileId = "191882", + text = "be_ballistawrecked01.m2", + value = "be_ballistawrecked01.m2", + }, + { + fileId = "191885", + text = "be_statueghostlands01.m2", + value = "be_statueghostlands01.m2", + }, + }, + text = "ballista", + value = "ballista", + }, + { + children = { + { + fileId = "191887", + text = "be_banner01.m2", + value = "be_banner01.m2", + }, + { + fileId = "191889", + text = "be_banner02.m2", + value = "be_banner02.m2", + }, + { + fileId = "191891", + text = "be_banner03.m2", + value = "be_banner03.m2", + }, + { + fileId = "191893", + text = "be_banner04.m2", + value = "be_banner04.m2", + }, + { + fileId = "191894", + text = "be_banner_kael_01.m2", + value = "be_banner_kael_01.m2", + }, + { + fileId = "191896", + text = "be_banner_kael_02.m2", + value = "be_banner_kael_02.m2", + }, + { + fileId = "191898", + text = "be_banner_kael_03.m2", + value = "be_banner_kael_03.m2", + }, + { + fileId = "191901", + text = "be_banner_shatariskyguard.m2", + value = "be_banner_shatariskyguard.m2", + }, + { + fileId = "191903", + text = "be_banner_tallblack.m2", + value = "be_banner_tallblack.m2", + }, + { + fileId = "191905", + text = "be_banner_tallblue.m2", + value = "be_banner_tallblue.m2", + }, + { + fileId = "191907", + text = "be_banner_tallpurple.m2", + value = "be_banner_tallpurple.m2", + }, + { + fileId = "191909", + text = "be_banner_tallred.m2", + value = "be_banner_tallred.m2", + }, + { + fileId = "191911", + text = "be_banner_wide_black.m2", + value = "be_banner_wide_black.m2", + }, + { + fileId = "191912", + text = "be_banner_wide_blue.m2", + value = "be_banner_wide_blue.m2", + }, + { + fileId = "191913", + text = "be_banner_wide_purple.m2", + value = "be_banner_wide_purple.m2", + }, + { + fileId = "191914", + text = "be_banner_wide_red.m2", + value = "be_banner_wide_red.m2", + }, + { + fileId = "191915", + text = "be_banner_wide_red_anim.m2", + value = "be_banner_wide_red_anim.m2", + }, + { + fileId = "191916", + text = "be_banner_wide_red_anim02.m2", + value = "be_banner_wide_red_anim02.m2", + }, + { + fileId = "191917", + text = "be_banner_wide_red_anim03.m2", + value = "be_banner_wide_red_anim03.m2", + }, + { + fileId = "191918", + text = "be_banner_wide_red_torn01.m2", + value = "be_banner_wide_red_torn01.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "191919", + text = "be_bannister.m2", + value = "be_bannister.m2", + }, + }, + text = "bannister", + value = "bannister", + }, + { + children = { + { + fileId = "191921", + text = "be_barrel_01.m2", + value = "be_barrel_01.m2", + }, + { + fileId = "242711", + text = "be_barrel_01_nocollision.m2", + value = "be_barrel_01_nocollision.m2", + }, + { + fileId = "191922", + text = "be_barrel_broken_01.m2", + value = "be_barrel_broken_01.m2", + }, + { + fileId = "191923", + text = "be_barrel_broken_02.m2", + value = "be_barrel_broken_02.m2", + }, + { + fileId = "191924", + text = "be_barrel_fruit01.m2", + value = "be_barrel_fruit01.m2", + }, + }, + text = "barrel", + value = "barrel", + }, + { + children = { + { + fileId = "191927", + text = "be_barrierspikes01.m2", + value = "be_barrierspikes01.m2", + }, + { + fileId = "191928", + text = "be_barrierspikes02.m2", + value = "be_barrierspikes02.m2", + }, + { + fileId = "191929", + text = "be_barrierspikes03.m2", + value = "be_barrierspikes03.m2", + }, + }, + text = "barrierspikes", + value = "barrierspikes", + }, + { + children = { + { + fileId = "191931", + text = "be_bed_01.m2", + value = "be_bed_01.m2", + }, + { + fileId = "191933", + text = "be_bed_02.m2", + value = "be_bed_02.m2", + }, + { + fileId = "191934", + text = "be_bed_wrecked_01.m2", + value = "be_bed_wrecked_01.m2", + }, + }, + text = "beds", + value = "beds", + }, + { + children = { + { + fileId = "191936", + text = "be_bench01.m2", + value = "be_bench01.m2", + }, + { + fileId = "191938", + text = "be_bench_garden01.m2", + value = "be_bench_garden01.m2", + }, + { + fileId = "191939", + text = "be_bench_wrecked_01.m2", + value = "be_bench_wrecked_01.m2", + }, + }, + text = "benches", + value = "benches", + }, + { + children = { + { + fileId = "191942", + text = "be_book_large01.m2", + value = "be_book_large01.m2", + }, + { + fileId = "191943", + text = "be_book_large02.m2", + value = "be_book_large02.m2", + }, + { + fileId = "191945", + text = "be_book_large05.m2", + value = "be_book_large05.m2", + }, + { + fileId = "191946", + text = "be_book_medium01.m2", + value = "be_book_medium01.m2", + }, + { + fileId = "191947", + text = "be_book_medium02.m2", + value = "be_book_medium02.m2", + }, + { + fileId = "191948", + text = "be_book_small01.m2", + value = "be_book_small01.m2", + }, + { + fileId = "191949", + text = "be_book_small02.m2", + value = "be_book_small02.m2", + }, + }, + text = "books", + value = "books", + }, + { + children = { + { + fileId = "191954", + text = "be_bookshelf_wrecked_01.m2", + value = "be_bookshelf_wrecked_01.m2", + }, + { + fileId = "191955", + text = "be_bookshelf_wrecked_02.m2", + value = "be_bookshelf_wrecked_02.m2", + }, + { + fileId = "191956", + text = "be_bookshelfempty_01.m2", + value = "be_bookshelfempty_01.m2", + }, + { + fileId = "191957", + text = "be_bookshelfempty_02.m2", + value = "be_bookshelfempty_02.m2", + }, + { + fileId = "191958", + text = "be_bookshelffilled_01.m2", + value = "be_bookshelffilled_01.m2", + }, + { + fileId = "191959", + text = "be_bookshelffilled_02.m2", + value = "be_bookshelffilled_02.m2", + }, + { + fileId = "191960", + text = "be_bookshelfshort.m2", + value = "be_bookshelfshort.m2", + }, + { + fileId = "191961", + text = "be_bookshelfspiral.m2", + value = "be_bookshelfspiral.m2", + }, + { + fileId = "191962", + text = "be_bookshelftall.m2", + value = "be_bookshelftall.m2", + }, + }, + text = "bookshelf", + value = "bookshelf", + }, + { + children = { + { + fileId = "191963", + text = "be_bottle01.m2", + value = "be_bottle01.m2", + }, + { + fileId = "191964", + text = "be_bottle02.m2", + value = "be_bottle02.m2", + }, + { + fileId = "191965", + text = "be_bottle03.m2", + value = "be_bottle03.m2", + }, + { + fileId = "242712", + text = "be_bottle03_nocollision.m2", + value = "be_bottle03_nocollision.m2", + }, + { + fileId = "191966", + text = "be_bottle04.m2", + value = "be_bottle04.m2", + }, + { + fileId = "242713", + text = "be_bottle04_nocollision.m2", + value = "be_bottle04_nocollision.m2", + }, + }, + text = "bottles", + value = "bottles", + }, + { + children = { + { + fileId = "191969", + text = "be_mop01.m2", + value = "be_mop01.m2", + }, + }, + text = "broom", + value = "broom", + }, + { + children = { + { + fileId = "191971", + text = "be_campfire01.m2", + value = "be_campfire01.m2", + }, + { + fileId = "191973", + text = "be_campfire02.m2", + value = "be_campfire02.m2", + }, + }, + text = "campfire", + value = "campfire", + }, + { + children = { + { + fileId = "191978", + text = "be_candle_01.m2", + value = "be_candle_01.m2", + }, + { + fileId = "191979", + text = "be_candle_02.m2", + value = "be_candle_02.m2", + }, + { + fileId = "191980", + text = "be_candleabra01.m2", + value = "be_candleabra01.m2", + }, + }, + text = "candles", + value = "candles", + }, + { + children = { + { + fileId = "191981", + text = "be_chair01.m2", + value = "be_chair01.m2", + }, + { + fileId = "191982", + text = "be_chair02.m2", + value = "be_chair02.m2", + }, + { + fileId = "191983", + text = "be_chair03.m2", + value = "be_chair03.m2", + }, + { + fileId = "191984", + text = "be_chair04.m2", + value = "be_chair04.m2", + }, + { + fileId = "191985", + text = "be_chair_wrecked_01.m2", + value = "be_chair_wrecked_01.m2", + }, + { + fileId = "191986", + text = "be_chair_wrecked_02.m2", + value = "be_chair_wrecked_02.m2", + }, + { + fileId = "191992", + text = "be_throne_01.m2", + value = "be_throne_01.m2", + }, + }, + text = "chairs", + value = "chairs", + }, + { + children = { + { + fileId = "191994", + text = "be_chandelier01.m2", + value = "be_chandelier01.m2", + }, + }, + text = "chandelier", + value = "chandelier", + }, + { + children = { + { + fileId = "191999", + text = "be_cookpot01.m2", + value = "be_cookpot01.m2", + }, + }, + text = "cookpot", + value = "cookpot", + }, + { + children = { + { + fileId = "192001", + text = "be_couch01.m2", + value = "be_couch01.m2", + }, + }, + text = "couch", + value = "couch", + }, + { + children = { + { + fileId = "192002", + text = "be_crate01.m2", + value = "be_crate01.m2", + }, + }, + text = "crate", + value = "crate", + }, + { + children = { + { + fileId = "192003", + text = "be_cup01.m2", + value = "be_cup01.m2", + }, + { + fileId = "192004", + text = "be_cup02.m2", + value = "be_cup02.m2", + }, + { + fileId = "192008", + text = "be_mug01.m2", + value = "be_mug01.m2", + }, + }, + text = "cups", + value = "cups", + }, + { + children = { + { + fileId = "192010", + text = "be_demoncrystal_01.m2", + value = "be_demoncrystal_01.m2", + }, + { + fileId = "192011", + text = "be_demoncrystal_02.m2", + value = "be_demoncrystal_02.m2", + }, + }, + text = "demoncrystals", + value = "demoncrystals", + }, + { + children = { + { + fileId = "192014", + text = "be_demonenergycollector01.m2", + value = "be_demonenergycollector01.m2", + }, + }, + text = "demonenergycollectors", + value = "demonenergycollectors", + }, + { + children = { + { + fileId = "192017", + text = "be_drapery_01.m2", + value = "be_drapery_01.m2", + }, + { + fileId = "192018", + text = "be_drapery_02.m2", + value = "be_drapery_02.m2", + }, + { + fileId = "192019", + text = "be_drapery_03.m2", + value = "be_drapery_03.m2", + }, + { + fileId = "192020", + text = "be_drapery_04.m2", + value = "be_drapery_04.m2", + }, + { + fileId = "192021", + text = "be_drapery_05.m2", + value = "be_drapery_05.m2", + }, + { + fileId = "192022", + text = "be_drapery_06.m2", + value = "be_drapery_06.m2", + }, + { + fileId = "312603", + text = "be_draperycircle_07.m2", + value = "be_draperycircle_07.m2", + }, + }, + text = "drapery", + value = "drapery", + }, + { + children = { + { + fileId = "192026", + text = "be_fish01.m2", + value = "be_fish01.m2", + }, + { + fileId = "192028", + text = "be_meat01.m2", + value = "be_meat01.m2", + }, + }, + text = "food", + value = "food", + }, + { + children = { + { + fileId = "192030", + text = "be_forge.m2", + value = "be_forge.m2", + }, + { + fileId = "192031", + text = "be_forge01.m2", + value = "be_forge01.m2", + }, + }, + text = "forge", + value = "forge", + }, + { + children = { + { + fileId = "192034", + text = "be_fountain01.m2", + value = "be_fountain01.m2", + }, + { + fileId = "192035", + text = "be_fountain01_base.m2", + value = "be_fountain01_base.m2", + }, + { + fileId = "192045", + text = "be_fountaininnardssilvermoon.m2", + value = "be_fountaininnardssilvermoon.m2", + }, + }, + text = "fountains", + value = "fountains", + }, + { + children = { + { + fileId = "192049", + text = "be_gravestone01.m2", + value = "be_gravestone01.m2", + }, + { + fileId = "192050", + text = "be_gravestone02.m2", + value = "be_gravestone02.m2", + }, + { + fileId = "192051", + text = "be_gravestone03.m2", + value = "be_gravestone03.m2", + }, + { + fileId = "192054", + text = "be_tomb01.m2", + value = "be_tomb01.m2", + }, + }, + text = "graveyard", + value = "graveyard", + }, + { + children = { + { + fileId = "192055", + text = "be_hedge_hanging01.m2", + value = "be_hedge_hanging01.m2", + }, + { + fileId = "192056", + text = "be_hedge_hanging02.m2", + value = "be_hedge_hanging02.m2", + }, + { + fileId = "192057", + text = "be_hedge_hanging03.m2", + value = "be_hedge_hanging03.m2", + }, + { + fileId = "192058", + text = "be_hedge_hanging04.m2", + value = "be_hedge_hanging04.m2", + }, + { + fileId = "192059", + text = "be_hedge_hanging05.m2", + value = "be_hedge_hanging05.m2", + }, + { + fileId = "192060", + text = "be_hedge_hanging06.m2", + value = "be_hedge_hanging06.m2", + }, + { + fileId = "192061", + text = "be_hedge_hanging07.m2", + value = "be_hedge_hanging07.m2", + }, + { + fileId = "192062", + text = "be_hedge_hanging08.m2", + value = "be_hedge_hanging08.m2", + }, + { + fileId = "192063", + text = "be_hedge_hanging09.m2", + value = "be_hedge_hanging09.m2", + }, + { + fileId = "192064", + text = "be_hedge_hanging10.m2", + value = "be_hedge_hanging10.m2", + }, + { + fileId = "192065", + text = "be_hedge_hanging11.m2", + value = "be_hedge_hanging11.m2", + }, + { + fileId = "192066", + text = "be_hedge_hanging12.m2", + value = "be_hedge_hanging12.m2", + }, + { + fileId = "192071", + text = "silvermoonhedge01.m2", + value = "silvermoonhedge01.m2", + }, + }, + text = "hedge", + value = "hedge", + }, + { + children = { + { + fileId = "192073", + text = "be_hookah_01.m2", + value = "be_hookah_01.m2", + }, + { + fileId = "192074", + text = "be_hookah_02.m2", + value = "be_hookah_02.m2", + }, + }, + text = "hookah", + value = "hookah", + }, + { + children = { + { + fileId = "192076", + text = "be_incense_01.m2", + value = "be_incense_01.m2", + }, + }, + text = "incense", + value = "incense", + }, + { + children = { + { + fileId = "192078", + text = "be_harp01.m2", + value = "be_harp01.m2", + }, + { + fileId = "192080", + text = "be_lute01.m2", + value = "be_lute01.m2", + }, + }, + text = "instruments", + value = "instruments", + }, + { + children = { + { + fileId = "192082", + text = "be_jar_03.m2", + value = "be_jar_03.m2", + }, + { + fileId = "192083", + text = "be_jar_04.m2", + value = "be_jar_04.m2", + }, + }, + text = "jars", + value = "jars", + }, + { + children = { + { + fileId = "192085", + text = "be_magicalknickknack02.m2", + value = "be_magicalknickknack02.m2", + }, + { + fileId = "192087", + text = "be_magicalknickknack03.m2", + value = "be_magicalknickknack03.m2", + }, + { + fileId = "192089", + text = "be_magicalknickknack04.m2", + value = "be_magicalknickknack04.m2", + }, + }, + text = "knickknacks", + value = "knickknacks", + }, + { + children = { + { + fileId = "192091", + text = "be_lamp01.m2", + value = "be_lamp01.m2", + }, + }, + text = "lamp", + value = "lamp", + }, + { + children = { + { + fileId = "192093", + text = "be_lantern01.m2", + value = "be_lantern01.m2", + }, + }, + text = "lantern", + value = "lantern", + }, + { + children = { + { + fileId = "192094", + text = "be_lavapool.m2", + value = "be_lavapool.m2", + }, + }, + text = "lava", + value = "lava", + }, + { + children = { + { + fileId = "192095", + text = "be_loom_01.m2", + value = "be_loom_01.m2", + }, + }, + text = "loom", + value = "loom", + }, + { + children = { + { + fileId = "192098", + text = "be_merchantstand01.m2", + value = "be_merchantstand01.m2", + }, + { + fileId = "192099", + text = "be_merchantstand02.m2", + value = "be_merchantstand02.m2", + }, + { + fileId = "192100", + text = "be_merchantstand03.m2", + value = "be_merchantstand03.m2", + }, + { + fileId = "242714", + text = "be_merchantstand04.m2", + value = "be_merchantstand04.m2", + }, + }, + text = "merchantstand", + value = "merchantstand", + }, + { + children = { + { + fileId = "192103", + text = "be_roadpillar01.m2", + value = "be_roadpillar01.m2", + }, + }, + text = "pillar", + value = "pillar", + }, + { + children = { + { + fileId = "192105", + text = "be_pillow_01.m2", + value = "be_pillow_01.m2", + }, + { + fileId = "192106", + text = "be_pillow_02.m2", + value = "be_pillow_02.m2", + }, + { + fileId = "192107", + text = "be_pillow_03.m2", + value = "be_pillow_03.m2", + }, + { + fileId = "192108", + text = "be_pillow_04.m2", + value = "be_pillow_04.m2", + }, + }, + text = "pillows", + value = "pillows", + }, + { + children = { + { + fileId = "192113", + text = "be_planetarium.m2", + value = "be_planetarium.m2", + }, + { + fileId = "192114", + text = "be_planetarium_active.m2", + value = "be_planetarium_active.m2", + }, + { + fileId = "192115", + text = "be_planetariumdestroyed01.m2", + value = "be_planetariumdestroyed01.m2", + }, + { + fileId = "192116", + text = "be_planetariumdestroyed02.m2", + value = "be_planetariumdestroyed02.m2", + }, + { + fileId = "192117", + text = "be_planetariumdestroyed03.m2", + value = "be_planetariumdestroyed03.m2", + }, + { + fileId = "192118", + text = "be_planetariumdestroyed04.m2", + value = "be_planetariumdestroyed04.m2", + }, + }, + text = "planetarium", + value = "planetarium", + }, + { + children = { + { + fileId = "192120", + text = "be_planter_flowers_01.m2", + value = "be_planter_flowers_01.m2", + }, + { + fileId = "192121", + text = "be_planter_long_01.m2", + value = "be_planter_long_01.m2", + }, + { + fileId = "192122", + text = "be_planter_long_02.m2", + value = "be_planter_long_02.m2", + }, + { + fileId = "192123", + text = "be_planter_long_03.m2", + value = "be_planter_long_03.m2", + }, + { + fileId = "192124", + text = "be_planter_medium_01.m2", + value = "be_planter_medium_01.m2", + }, + { + fileId = "192125", + text = "be_planter_medium_02.m2", + value = "be_planter_medium_02.m2", + }, + { + fileId = "192126", + text = "be_planter_medium_03.m2", + value = "be_planter_medium_03.m2", + }, + { + fileId = "192127", + text = "be_planter_short_01.m2", + value = "be_planter_short_01.m2", + }, + { + fileId = "192128", + text = "be_planter_short_02.m2", + value = "be_planter_short_02.m2", + }, + { + fileId = "192129", + text = "be_planter_short_03.m2", + value = "be_planter_short_03.m2", + }, + }, + text = "planters", + value = "planters", + }, + { + children = { + { + fileId = "192131", + text = "be_podium01.m2", + value = "be_podium01.m2", + }, + }, + text = "podium", + value = "podium", + }, + { + children = { + { + fileId = "192133", + text = "be_signs_wanted.m2", + value = "be_signs_wanted.m2", + }, + }, + text = "posters", + value = "posters", + }, + { + children = { + { + fileId = "192134", + text = "bloodelf_powerorb_green.m2", + value = "bloodelf_powerorb_green.m2", + }, + { + fileId = "192135", + text = "bloodelf_powerorb_red.m2", + value = "bloodelf_powerorb_red.m2", + }, + { + fileId = "350858", + text = "bloodelf_powerorb_red_nosound.m2", + value = "bloodelf_powerorb_red_nosound.m2", + }, + }, + text = "powerorb", + value = "powerorb", + }, + { + children = { + { + fileId = "192149", + text = "be_roadsign_sign01.m2", + value = "be_roadsign_sign01.m2", + }, + }, + text = "roadsign", + value = "roadsign", + }, + { + children = { + { + fileId = "192151", + text = "be_rowboat.m2", + value = "be_rowboat.m2", + }, + { + fileId = "192153", + text = "be_rowboatwrecked.m2", + value = "be_rowboatwrecked.m2", + }, + }, + text = "rowboat", + value = "rowboat", + }, + { + children = { + { + fileId = "192154", + text = "be_rug_large01.m2", + value = "be_rug_large01.m2", + }, + { + fileId = "192155", + text = "be_rug_large02.m2", + value = "be_rug_large02.m2", + }, + { + fileId = "192156", + text = "be_rug_largeruined01.m2", + value = "be_rug_largeruined01.m2", + }, + { + fileId = "192157", + text = "be_rug_largeruined02.m2", + value = "be_rug_largeruined02.m2", + }, + { + fileId = "192159", + text = "be_rug_medium01.m2", + value = "be_rug_medium01.m2", + }, + { + fileId = "192160", + text = "be_rug_medium02.m2", + value = "be_rug_medium02.m2", + }, + { + fileId = "192161", + text = "be_rug_mediumruined01.m2", + value = "be_rug_mediumruined01.m2", + }, + { + fileId = "192162", + text = "be_rug_mediumruined02.m2", + value = "be_rug_mediumruined02.m2", + }, + { + fileId = "192163", + text = "be_rug_small01.m2", + value = "be_rug_small01.m2", + }, + { + fileId = "192164", + text = "be_rug_small02.m2", + value = "be_rug_small02.m2", + }, + { + fileId = "192165", + text = "be_rug_smallruined01.m2", + value = "be_rug_smallruined01.m2", + }, + { + fileId = "192166", + text = "be_rug_smallruined02.m2", + value = "be_rug_smallruined02.m2", + }, + }, + text = "rugs", + value = "rugs", + }, + { + children = { + { + fileId = "192173", + text = "be_runestone01.m2", + value = "be_runestone01.m2", + }, + }, + text = "runestone", + value = "runestone", + }, + { + children = { + { + fileId = "192175", + text = "be_sconce01.m2", + value = "be_sconce01.m2", + }, + { + fileId = "192176", + text = "be_sconce02.m2", + value = "be_sconce02.m2", + }, + }, + text = "sconce", + value = "sconce", + }, + { + children = { + { + fileId = "192179", + text = "be_scryingorb.m2", + value = "be_scryingorb.m2", + }, + { + fileId = "192180", + text = "be_scryingorb_epic.m2", + value = "be_scryingorb_epic.m2", + }, + }, + text = "scryingorb", + value = "scryingorb", + }, + { + children = { + { + fileId = "192181", + text = "be_shield01.m2", + value = "be_shield01.m2", + }, + { + fileId = "192182", + text = "be_shield02.m2", + value = "be_shield02.m2", + }, + { + fileId = "192183", + text = "be_shield03.m2", + value = "be_shield03.m2", + }, + }, + text = "shield", + value = "shield", + }, + { + children = { + { + fileId = "192184", + text = "be_signs_alchemy.m2", + value = "be_signs_alchemy.m2", + }, + { + fileId = "192186", + text = "be_signs_axe.m2", + value = "be_signs_axe.m2", + }, + { + fileId = "192188", + text = "be_signs_bank.m2", + value = "be_signs_bank.m2", + }, + { + fileId = "192190", + text = "be_signs_book.m2", + value = "be_signs_book.m2", + }, + { + fileId = "192192", + text = "be_signs_bow.m2", + value = "be_signs_bow.m2", + }, + { + fileId = "192194", + text = "be_signs_bread.m2", + value = "be_signs_bread.m2", + }, + { + fileId = "192196", + text = "be_signs_cheese.m2", + value = "be_signs_cheese.m2", + }, + { + fileId = "192198", + text = "be_signs_cooking.m2", + value = "be_signs_cooking.m2", + }, + { + fileId = "192200", + text = "be_signs_drink.m2", + value = "be_signs_drink.m2", + }, + { + fileId = "192202", + text = "be_signs_engineering.m2", + value = "be_signs_engineering.m2", + }, + { + fileId = "192204", + text = "be_signs_generalshop.m2", + value = "be_signs_generalshop.m2", + }, + { + fileId = "192206", + text = "be_signs_helm.m2", + value = "be_signs_helm.m2", + }, + { + fileId = "192208", + text = "be_signs_herbalism.m2", + value = "be_signs_herbalism.m2", + }, + { + fileId = "192210", + text = "be_signs_meat.m2", + value = "be_signs_meat.m2", + }, + { + fileId = "192212", + text = "be_signs_poison.m2", + value = "be_signs_poison.m2", + }, + { + fileId = "192214", + text = "be_signs_shield.m2", + value = "be_signs_shield.m2", + }, + { + fileId = "192216", + text = "be_signs_staff.m2", + value = "be_signs_staff.m2", + }, + { + fileId = "192218", + text = "be_signs_sword.m2", + value = "be_signs_sword.m2", + }, + { + fileId = "192220", + text = "be_signs_tailor.m2", + value = "be_signs_tailor.m2", + }, + { + fileId = "192222", + text = "be_signs_tavern.m2", + value = "be_signs_tavern.m2", + }, + }, + text = "shopsigns", + value = "shopsigns", + }, + { + children = { + { + fileId = "192224", + text = "ghostlandsshroom01.m2", + value = "ghostlandsshroom01.m2", + }, + { + fileId = "192228", + text = "ghostlandssporemound01.m2", + value = "ghostlandssporemound01.m2", + }, + }, + text = "shrooms", + value = "shrooms", + }, + { + children = { + { + fileId = "192229", + text = "be_statue01.m2", + value = "be_statue01.m2", + }, + { + fileId = "192230", + text = "be_statue02.m2", + value = "be_statue02.m2", + }, + { + fileId = "192232", + text = "be_statuebig.m2", + value = "be_statuebig.m2", + }, + { + fileId = "192234", + text = "be_statuemale.m2", + value = "be_statuemale.m2", + }, + { + fileId = "192236", + text = "be_statueranger.m2", + value = "be_statueranger.m2", + }, + }, + text = "statues", + value = "statues", + }, + { + children = { + { + fileId = "192242", + text = "be_table_large01.m2", + value = "be_table_large01.m2", + }, + { + fileId = "192243", + text = "be_table_large02.m2", + value = "be_table_large02.m2", + }, + { + fileId = "192244", + text = "be_table_large03.m2", + value = "be_table_large03.m2", + }, + { + fileId = "192245", + text = "be_table_small01.m2", + value = "be_table_small01.m2", + }, + { + fileId = "192247", + text = "be_table_wrecked_01.m2", + value = "be_table_wrecked_01.m2", + }, + { + fileId = "192248", + text = "be_table_wrecked_02.m2", + value = "be_table_wrecked_02.m2", + }, + }, + text = "tables", + value = "tables", + }, + { + children = { + { + fileId = "192250", + text = "be_teleporter_01.m2", + value = "be_teleporter_01.m2", + }, + }, + text = "teleporter", + value = "teleporter", + }, + { + children = { + { + fileId = "192252", + text = "be_tent01.m2", + value = "be_tent01.m2", + }, + { + fileId = "192253", + text = "be_tent02.m2", + value = "be_tent02.m2", + }, + { + fileId = "192254", + text = "be_tent03.m2", + value = "be_tent03.m2", + }, + { + fileId = "192255", + text = "be_tent04.m2", + value = "be_tent04.m2", + }, + { + fileId = "192257", + text = "be_tentwrecked01.m2", + value = "be_tentwrecked01.m2", + }, + { + fileId = "192258", + text = "be_tentwrecked02.m2", + value = "be_tentwrecked02.m2", + }, + }, + text = "tents", + value = "tents", + }, + { + children = { + { + fileId = "192262", + text = "be_translocator.m2", + value = "be_translocator.m2", + }, + { + fileId = "192266", + text = "be_translocator_minor.m2", + value = "be_translocator_minor.m2", + }, + }, + text = "translocator", + value = "translocator", + }, + { + children = { + { + fileId = "192279", + text = "ghostlandssmalltree01.m2", + value = "ghostlandssmalltree01.m2", + }, + { + fileId = "192280", + text = "ghostlandssmalltree02.m2", + value = "ghostlandssmalltree02.m2", + }, + { + fileId = "192281", + text = "ghostlandssmalltree03.m2", + value = "ghostlandssmalltree03.m2", + }, + { + fileId = "192282", + text = "ghostlandstree01.m2", + value = "ghostlandstree01.m2", + }, + { + fileId = "192283", + text = "ghostlandstree02.m2", + value = "ghostlandstree02.m2", + }, + { + fileId = "192284", + text = "ghostlandstree03.m2", + value = "ghostlandstree03.m2", + }, + { + fileId = "192285", + text = "ghostlandstree04.m2", + value = "ghostlandstree04.m2", + }, + { + fileId = "192286", + text = "ghostlandstree05.m2", + value = "ghostlandstree05.m2", + }, + { + fileId = "192287", + text = "silvermoonbush01.m2", + value = "silvermoonbush01.m2", + }, + { + fileId = "192289", + text = "silvermoonbush02.m2", + value = "silvermoonbush02.m2", + }, + { + fileId = "192291", + text = "silvermoonbush03.m2", + value = "silvermoonbush03.m2", + }, + { + fileId = "192292", + text = "silvermoonbush04.m2", + value = "silvermoonbush04.m2", + }, + { + fileId = "192293", + text = "silvermoontree09.m2", + value = "silvermoontree09.m2", + }, + { + fileId = "192294", + text = "silvermoontree10.m2", + value = "silvermoontree10.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "192299", + text = "be_wagon.m2", + value = "be_wagon.m2", + }, + { + fileId = "192300", + text = "be_wagon02.m2", + value = "be_wagon02.m2", + }, + { + fileId = "192303", + text = "be_wagon_wrecked.m2", + value = "be_wagon_wrecked.m2", + }, + }, + text = "wagon", + value = "wagon", + }, + { + children = { + { + fileId = "192306", + text = "be_weaponrack_01.m2", + value = "be_weaponrack_01.m2", + }, + { + fileId = "192307", + text = "be_weaponrack_02.m2", + value = "be_weaponrack_02.m2", + }, + }, + text = "weaponracks", + value = "weaponracks", + }, + { + children = { + { + fileId = "192309", + text = "be_knife01.m2", + value = "be_knife01.m2", + }, + { + fileId = "192310", + text = "be_knife02.m2", + value = "be_knife02.m2", + }, + { + fileId = "192311", + text = "be_knife03.m2", + value = "be_knife03.m2", + }, + { + fileId = "192312", + text = "be_stave01.m2", + value = "be_stave01.m2", + }, + { + fileId = "192313", + text = "be_stave02.m2", + value = "be_stave02.m2", + }, + { + fileId = "192314", + text = "be_sword01.m2", + value = "be_sword01.m2", + }, + { + fileId = "192315", + text = "be_sword02.m2", + value = "be_sword02.m2", + }, + { + fileId = "192316", + text = "be_sword03.m2", + value = "be_sword03.m2", + }, + }, + text = "weapons", + value = "weapons", + }, + }, + text = "bloodelf", + value = "bloodelf", + }, + { + children = { + { + children = { + { + fileId = "192317", + text = "bu_banner_01.m2", + value = "bu_banner_01.m2", + }, + { + fileId = "192318", + text = "bu_banner_02.m2", + value = "bu_banner_02.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "192324", + text = "bu_brazier_01.m2", + value = "bu_brazier_01.m2", + }, + }, + text = "braziers", + value = "braziers", + }, + { + children = { + { + fileId = "192327", + text = "bu_cannon_01.m2", + value = "bu_cannon_01.m2", + }, + { + fileId = "192328", + text = "bu_cannon_base.m2", + value = "bu_cannon_base.m2", + }, + { + fileId = "192329", + text = "bu_cannon_base_02.m2", + value = "bu_cannon_base_02.m2", + }, + }, + text = "cannon", + value = "cannon", + }, + { + children = { + { + fileId = "192331", + text = "bu_crystalforge.m2", + value = "bu_crystalforge.m2", + }, + { + fileId = "192332", + text = "bu_crystalforgecontroller.m2", + value = "bu_crystalforgecontroller.m2", + }, + }, + text = "crystalforge", + value = "crystalforge", + }, + { + children = { + { + fileId = "192333", + text = "felcannonballs01.m2", + value = "felcannonballs01.m2", + }, + { + fileId = "192334", + text = "felcannonballs02.m2", + value = "felcannonballs02.m2", + }, + }, + text = "felcannonballs", + value = "felcannonballs", + }, + { + children = { + { + fileId = "192335", + text = "bu_felreaver_01.m2", + value = "bu_felreaver_01.m2", + }, + { + fileId = "192336", + text = "bu_felreaver_02.m2", + value = "bu_felreaver_02.m2", + }, + { + fileId = "192337", + text = "bu_felreaver_03.m2", + value = "bu_felreaver_03.m2", + }, + { + fileId = "192338", + text = "bu_felreaver_04.m2", + value = "bu_felreaver_04.m2", + }, + { + fileId = "192339", + text = "bu_felreaver_05.m2", + value = "bu_felreaver_05.m2", + }, + { + fileId = "192340", + text = "bu_felreaver_06.m2", + value = "bu_felreaver_06.m2", + }, + }, + text = "felreaver", + value = "felreaver", + }, + { + children = { + { + fileId = "192342", + text = "bu_generator_01.m2", + value = "bu_generator_01.m2", + }, + }, + text = "generator", + value = "generator", + }, + { + children = { + { + fileId = "192343", + text = "bu_junk_01.m2", + value = "bu_junk_01.m2", + }, + { + fileId = "192344", + text = "bu_junk_02.m2", + value = "bu_junk_02.m2", + }, + { + fileId = "192346", + text = "bu_oblisk_01.m2", + value = "bu_oblisk_01.m2", + }, + { + fileId = "192347", + text = "bu_smoke_stack_01.m2", + value = "bu_smoke_stack_01.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "192349", + text = "bu_teleporter_01.m2", + value = "bu_teleporter_01.m2", + }, + { + fileId = "192350", + text = "bu_teleporter_02.m2", + value = "bu_teleporter_02.m2", + }, + }, + text = "teleporter", + value = "teleporter", + }, + { + children = { + { + fileId = "192354", + text = "bu_forge_01.m2", + value = "bu_forge_01.m2", + }, + }, + text = "tradeskill", + value = "tradeskill", + }, + }, + text = "burninglegion", + value = "burninglegion", + }, + { + children = { + { + children = { + { + fileId = "192356", + text = "dr_banner01.m2", + value = "dr_banner01.m2", + }, + }, + text = "banner", + value = "banner", + }, + { + children = { + { + fileId = "192358", + text = "draenei_bed01.m2", + value = "draenei_bed01.m2", + }, + }, + text = "bed", + value = "bed", + }, + { + children = { + { + fileId = "192359", + text = "dr_bench_01.m2", + value = "dr_bench_01.m2", + }, + }, + text = "bench", + value = "bench", + }, + { + children = { + { + fileId = "192362", + text = "dr_anvil_01.m2", + value = "dr_anvil_01.m2", + }, + { + fileId = "192363", + text = "dr_forge_01.m2", + value = "dr_forge_01.m2", + }, + }, + text = "blacksmith", + value = "blacksmith", + }, + { + children = { + { + fileId = "192364", + text = "dr_bottle_01.m2", + value = "dr_bottle_01.m2", + }, + { + fileId = "192365", + text = "dr_bottle_02.m2", + value = "dr_bottle_02.m2", + }, + }, + text = "bottles", + value = "bottles", + }, + { + children = { + { + fileId = "192367", + text = "dr_bowl_01.m2", + value = "dr_bowl_01.m2", + }, + { + fileId = "192368", + text = "dr_bowl_02.m2", + value = "dr_bowl_02.m2", + }, + }, + text = "bowls", + value = "bowls", + }, + { + children = { + { + fileId = "192371", + text = "dr_brazier_01.m2", + value = "dr_brazier_01.m2", + }, + { + fileId = "192373", + text = "dr_brazier_02.m2", + value = "dr_brazier_02.m2", + }, + { + fileId = "192374", + text = "dr_brazier_03.m2", + value = "dr_brazier_03.m2", + }, + }, + text = "brazier", + value = "brazier", + }, + { + children = { + { + fileId = "192375", + text = "dr_cable_medium.m2", + value = "dr_cable_medium.m2", + }, + { + fileId = "192376", + text = "dr_cable_thin.m2", + value = "dr_cable_thin.m2", + }, + { + fileId = "192377", + text = "dr_cable_wide.m2", + value = "dr_cable_wide.m2", + }, + }, + text = "cables", + value = "cables", + }, + { + children = { + { + fileId = "192379", + text = "dr_chandelier_01.m2", + value = "dr_chandelier_01.m2", + }, + }, + text = "chandelier", + value = "chandelier", + }, + { + children = { + { + fileId = "192381", + text = "dr_cookpot_01.m2", + value = "dr_cookpot_01.m2", + }, + }, + text = "cookpots", + value = "cookpots", + }, + { + children = { + { + fileId = "192382", + text = "dr_crashplate01.m2", + value = "dr_crashplate01.m2", + }, + { + fileId = "192383", + text = "dr_crashplate02.m2", + value = "dr_crashplate02.m2", + }, + }, + text = "crashplate", + value = "crashplate", + }, + { + children = { + { + fileId = "192387", + text = "dr_crate_01.m2", + value = "dr_crate_01.m2", + }, + { + fileId = "192388", + text = "dr_crate_02.m2", + value = "dr_crate_02.m2", + }, + }, + text = "crates", + value = "crates", + }, + { + children = { + { + fileId = "192390", + text = "dr_cryopod_bottom.m2", + value = "dr_cryopod_bottom.m2", + }, + { + fileId = "192391", + text = "dr_cryopod_intact.m2", + value = "dr_cryopod_intact.m2", + }, + { + fileId = "192392", + text = "dr_cryopod_top.m2", + value = "dr_cryopod_top.m2", + }, + { + fileId = "192393", + text = "dr_cryopod_wrecked.m2", + value = "dr_cryopod_wrecked.m2", + }, + }, + text = "cryopods", + value = "cryopods", + }, + { + children = { + { + fileId = "192397", + text = "hellfirecrystalformation_01_pink.m2", + value = "hellfirecrystalformation_01_pink.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "192398", + text = "dr_cup_01.m2", + value = "dr_cup_01.m2", + }, + { + fileId = "192399", + text = "dr_cup_02.m2", + value = "dr_cup_02.m2", + }, + }, + text = "cups", + value = "cups", + }, + { + children = { + { + fileId = "192401", + text = "tech_arch01.m2", + value = "tech_arch01.m2", + }, + { + fileId = "192402", + text = "tech_arch02.m2", + value = "tech_arch02.m2", + }, + }, + text = "draenei_arches", + value = "draenei_arches", + }, + { + children = { + { + fileId = "192403", + text = "draenei_wreckage_claw.m2", + value = "draenei_wreckage_claw.m2", + }, + { + fileId = "192404", + text = "draenei_wreckage_frame.m2", + value = "draenei_wreckage_frame.m2", + }, + { + fileId = "192405", + text = "draenei_wreckage_smallwindow.m2", + value = "draenei_wreckage_smallwindow.m2", + }, + }, + text = "draenei_wreckage", + value = "draenei_wreckage", + }, + { + children = { + { + fileId = "192406", + text = "exodarbridge01.m2", + value = "exodarbridge01.m2", + }, + { + fileId = "192407", + text = "exodarbridge02.m2", + value = "exodarbridge02.m2", + }, + { + fileId = "192408", + text = "exodarbridge03.m2", + value = "exodarbridge03.m2", + }, + { + fileId = "192409", + text = "exodarplatform01.m2", + value = "exodarplatform01.m2", + }, + }, + text = "exodar", + value = "exodar", + }, + { + children = { + { + fileId = "192410", + text = "dr_exodarwall01.m2", + value = "dr_exodarwall01.m2", + }, + { + fileId = "192411", + text = "dr_exodarwall02.m2", + value = "dr_exodarwall02.m2", + }, + }, + text = "exxodarwalls", + value = "exxodarwalls", + }, + { + children = { + { + fileId = "192412", + text = "glowywaterstream01.m2", + value = "glowywaterstream01.m2", + }, + }, + text = "fountain", + value = "fountain", + }, + { + children = { + { + fileId = "192413", + text = "dr_fountian.m2", + value = "dr_fountian.m2", + }, + { + fileId = "192414", + text = "dr_fountian_ruined.m2", + value = "dr_fountian_ruined.m2", + }, + }, + text = "fountian", + value = "fountian", + }, + { + children = { + { + fileId = "192416", + text = "dr_glow.m2", + value = "dr_glow.m2", + }, + { + fileId = "192417", + text = "dr_glow_blue.m2", + value = "dr_glow_blue.m2", + }, + { + fileId = "192418", + text = "dr_rays_blue.m2", + value = "dr_rays_blue.m2", + }, + { + fileId = "192419", + text = "dr_rays_orange.m2", + value = "dr_rays_orange.m2", + }, + { + fileId = "192420", + text = "dr_rays_pink.m2", + value = "dr_rays_pink.m2", + }, + }, + text = "glow", + value = "glow", + }, + { + children = { + { + fileId = "192423", + text = "dr_tomb.m2", + value = "dr_tomb.m2", + }, + { + fileId = "192424", + text = "dr_tombstone01.m2", + value = "dr_tombstone01.m2", + }, + { + fileId = "192425", + text = "dr_tombstone02.m2", + value = "dr_tombstone02.m2", + }, + { + fileId = "192426", + text = "dr_tombstone03.m2", + value = "dr_tombstone03.m2", + }, + }, + text = "graveyard", + value = "graveyard", + }, + { + children = { + { + fileId = "192427", + text = "dr_draenei_holorunes01.m2", + value = "dr_draenei_holorunes01.m2", + }, + { + fileId = "192428", + text = "dr_draenei_holorunes01_big.m2", + value = "dr_draenei_holorunes01_big.m2", + }, + { + fileId = "192429", + text = "dr_draenei_holorunes01_bigred.m2", + value = "dr_draenei_holorunes01_bigred.m2", + }, + { + fileId = "192430", + text = "dr_draenei_holorunes02.m2", + value = "dr_draenei_holorunes02.m2", + }, + { + fileId = "192431", + text = "dr_draenei_holorunes02_big.m2", + value = "dr_draenei_holorunes02_big.m2", + }, + { + fileId = "192432", + text = "dr_draenei_holorunes02_bigred.m2", + value = "dr_draenei_holorunes02_bigred.m2", + }, + { + fileId = "192433", + text = "dr_draenei_holorunes03.m2", + value = "dr_draenei_holorunes03.m2", + }, + { + fileId = "192434", + text = "dr_draenei_holorunes03_big.m2", + value = "dr_draenei_holorunes03_big.m2", + }, + { + fileId = "192435", + text = "dr_draenei_holorunes03_bigred.m2", + value = "dr_draenei_holorunes03_bigred.m2", + }, + }, + text = "holo", + value = "holo", + }, + { + children = { + { + fileId = "192441", + text = "dr_holographic_stand.m2", + value = "dr_holographic_stand.m2", + }, + }, + text = "holographicstand", + value = "holographicstand", + }, + { + children = { + { + fileId = "370668", + text = "doodadsword_1h_draenei_b_01.m2", + value = "doodadsword_1h_draenei_b_01.m2", + }, + { + fileId = "370669", + text = "doodadsword_1h_draenei_c_01.m2", + value = "doodadsword_1h_draenei_c_01.m2", + }, + { + fileId = "192445", + text = "dr_banner02.m2", + value = "dr_banner02.m2", + }, + { + fileId = "192446", + text = "dr_cryopod_intact2.m2", + value = "dr_cryopod_intact2.m2", + }, + { + fileId = "192447", + text = "dr_knickknack_01.m2", + value = "dr_knickknack_01.m2", + }, + { + fileId = "192448", + text = "dr_knickknack_02.m2", + value = "dr_knickknack_02.m2", + }, + { + fileId = "192449", + text = "dr_knickknack_02b.m2", + value = "dr_knickknack_02b.m2", + }, + { + fileId = "192450", + text = "dr_knickknack_03.m2", + value = "dr_knickknack_03.m2", + }, + { + fileId = "192451", + text = "dr_knickknack_04.m2", + value = "dr_knickknack_04.m2", + }, + }, + text = "knickknacks", + value = "knickknacks", + }, + { + children = { + { + fileId = "192455", + text = "dr_lamppost_01.m2", + value = "dr_lamppost_01.m2", + }, + { + fileId = "192456", + text = "dr_lamppost_02.m2", + value = "dr_lamppost_02.m2", + }, + }, + text = "lampposts", + value = "lampposts", + }, + { + children = { + { + fileId = "192458", + text = "dr_lantern_01.m2", + value = "dr_lantern_01.m2", + }, + }, + text = "lanterns", + value = "lanterns", + }, + { + children = { + { + fileId = "192460", + text = "dr_loom_01.m2", + value = "dr_loom_01.m2", + }, + }, + text = "loom", + value = "loom", + }, + { + children = { + { + fileId = "192461", + text = "dr_machineparts01.m2", + value = "dr_machineparts01.m2", + }, + }, + text = "machines", + value = "machines", + }, + { + children = { + { + fileId = "242720", + text = "dalaranpostbox.m2", + value = "dalaranpostbox.m2", + }, + { + fileId = "192464", + text = "draeneipostbox.m2", + value = "draeneipostbox.m2", + }, + }, + text = "mailbox", + value = "mailbox", + }, + { + children = { + { + fileId = "192465", + text = "dr_parasol_large.m2", + value = "dr_parasol_large.m2", + }, + { + fileId = "192466", + text = "dr_parasol_small.m2", + value = "dr_parasol_small.m2", + }, + }, + text = "parasol", + value = "parasol", + }, + { + children = { + { + fileId = "192468", + text = "dr_signs_wanted.m2", + value = "dr_signs_wanted.m2", + }, + }, + text = "posters", + value = "posters", + }, + { + children = { + { + fileId = "192470", + text = "dr_signs_alchemy.m2", + value = "dr_signs_alchemy.m2", + }, + { + fileId = "192472", + text = "dr_signs_anvil.m2", + value = "dr_signs_anvil.m2", + }, + { + fileId = "192474", + text = "dr_signs_axes.m2", + value = "dr_signs_axes.m2", + }, + { + fileId = "192476", + text = "dr_signs_bank.m2", + value = "dr_signs_bank.m2", + }, + { + fileId = "192479", + text = "dr_signs_book.m2", + value = "dr_signs_book.m2", + }, + { + fileId = "192481", + text = "dr_signs_bow.m2", + value = "dr_signs_bow.m2", + }, + { + fileId = "192483", + text = "dr_signs_bread.m2", + value = "dr_signs_bread.m2", + }, + { + fileId = "192485", + text = "dr_signs_cheese.m2", + value = "dr_signs_cheese.m2", + }, + { + fileId = "192487", + text = "dr_signs_container.m2", + value = "dr_signs_container.m2", + }, + { + fileId = "192489", + text = "dr_signs_cooking.m2", + value = "dr_signs_cooking.m2", + }, + { + fileId = "192491", + text = "dr_signs_engineering.m2", + value = "dr_signs_engineering.m2", + }, + { + fileId = "192493", + text = "dr_signs_generalshop.m2", + value = "dr_signs_generalshop.m2", + }, + { + fileId = "192495", + text = "dr_signs_helm.m2", + value = "dr_signs_helm.m2", + }, + { + fileId = "192497", + text = "dr_signs_herbalism.m2", + value = "dr_signs_herbalism.m2", + }, + { + fileId = "192499", + text = "dr_signs_meat.m2", + value = "dr_signs_meat.m2", + }, + { + fileId = "192501", + text = "dr_signs_poisons.m2", + value = "dr_signs_poisons.m2", + }, + { + fileId = "192503", + text = "dr_signs_shield.m2", + value = "dr_signs_shield.m2", + }, + { + fileId = "192505", + text = "dr_signs_staff.m2", + value = "dr_signs_staff.m2", + }, + { + fileId = "192507", + text = "dr_signs_swords.m2", + value = "dr_signs_swords.m2", + }, + { + fileId = "192509", + text = "dr_signs_tailor.m2", + value = "dr_signs_tailor.m2", + }, + { + fileId = "192511", + text = "dr_signs_tavern.m2", + value = "dr_signs_tavern.m2", + }, + }, + text = "shopsigns", + value = "shopsigns", + }, + { + children = { + { + fileId = "192513", + text = "dr_signpost_01.m2", + value = "dr_signpost_01.m2", + }, + { + fileId = "192514", + text = "dr_signpost_sign01.m2", + value = "dr_signpost_sign01.m2", + }, + }, + text = "signs", + value = "signs", + }, + { + children = { + { + fileId = "192515", + text = "dr_table_medium_01.m2", + value = "dr_table_medium_01.m2", + }, + { + fileId = "192516", + text = "dr_table_small_02.m2", + value = "dr_table_small_02.m2", + }, + }, + text = "tables", + value = "tables", + }, + { + children = { + { + fileId = "192518", + text = "atriumbridge.m2", + value = "atriumbridge.m2", + }, + { + fileId = "192529", + text = "factorybridge.m2", + value = "factorybridge.m2", + }, + { + fileId = "192530", + text = "factoryelevator.m2", + value = "factoryelevator.m2", + }, + { + fileId = "192531", + text = "factoryenergycube.m2", + value = "factoryenergycube.m2", + }, + { + fileId = "192532", + text = "factoryenergycube_3x3.m2", + value = "factoryenergycube_3x3.m2", + }, + { + fileId = "192533", + text = "factoryfloor.m2", + value = "factoryfloor.m2", + }, + { + fileId = "192535", + text = "narru_crystal_corrupted.m2", + value = "narru_crystal_corrupted.m2", + }, + { + fileId = "192536", + text = "narru_crystal_corrupted_no_lightning.m2", + value = "narru_crystal_corrupted_no_lightning.m2", + }, + { + fileId = "192537", + text = "raid_circle_floor.m2", + value = "raid_circle_floor.m2", + }, + }, + text = "tempestkeep", + value = "tempestkeep", + }, + { + children = { + { + fileId = "192542", + text = "dr_tent_01.m2", + value = "dr_tent_01.m2", + }, + { + fileId = "192543", + text = "dr_tent_02.m2", + value = "dr_tent_02.m2", + }, + }, + text = "tents", + value = "tents", + }, + { + children = { + { + fileId = "192545", + text = "draenei_tubes.m2", + value = "draenei_tubes.m2", + }, + { + fileId = "192546", + text = "draenei_tubes_offset.m2", + value = "draenei_tubes_offset.m2", + }, + }, + text = "tubes", + value = "tubes", + }, + { + children = { + { + fileId = "192554", + text = "draenei_ancientwall01.m2", + value = "draenei_ancientwall01.m2", + }, + { + fileId = "192555", + text = "draenei_ancientwall02.m2", + value = "draenei_ancientwall02.m2", + }, + }, + text = "wall", + value = "wall", + }, + }, + text = "draenei", + value = "draenei", + }, + { + children = { + { + children = { + { + fileId = "192556", + text = "et_barrel01.m2", + value = "et_barrel01.m2", + }, + { + fileId = "192557", + text = "et_barrel01off.m2", + value = "et_barrel01off.m2", + }, + }, + text = "barrel", + value = "barrel", + }, + { + children = { + { + fileId = "192559", + text = "et_cage.m2", + value = "et_cage.m2", + }, + { + fileId = "192561", + text = "et_cagebase.m2", + value = "et_cagebase.m2", + }, + }, + text = "cage", + value = "cage", + }, + { + children = { + { + fileId = "192562", + text = "et_collector01.m2", + value = "et_collector01.m2", + }, + }, + text = "collector", + value = "collector", + }, + { + children = { + { + fileId = "192563", + text = "et_crate01.m2", + value = "et_crate01.m2", + }, + { + fileId = "192564", + text = "et_crate01off.m2", + value = "et_crate01off.m2", + }, + }, + text = "crate", + value = "crate", + }, + { + children = { + { + fileId = "192566", + text = "et_crystalforge.m2", + value = "et_crystalforge.m2", + }, + { + fileId = "192567", + text = "et_crystalforgecontroller.m2", + value = "et_crystalforgecontroller.m2", + }, + }, + text = "crystalforge", + value = "crystalforge", + }, + { + children = { + { + fileId = "192568", + text = "et_holographic_stand.m2", + value = "et_holographic_stand.m2", + }, + }, + text = "holographicstand", + value = "holographicstand", + }, + { + children = { + { + fileId = "192569", + text = "et_lamppost01.m2", + value = "et_lamppost01.m2", + }, + { + fileId = "192570", + text = "et_lamppost01off.m2", + value = "et_lamppost01off.m2", + }, + }, + text = "lamppost", + value = "lamppost", + }, + { + children = { + { + fileId = "192572", + text = "et_portal01.m2", + value = "et_portal01.m2", + }, + { + fileId = "192573", + text = "et_portal01off.m2", + value = "et_portal01off.m2", + }, + { + fileId = "192574", + text = "et_portal01offhalf.m2", + value = "et_portal01offhalf.m2", + }, + }, + text = "portal", + value = "portal", + }, + { + children = { + { + fileId = "192576", + text = "et_standard.m2", + value = "et_standard.m2", + }, + }, + text = "standard", + value = "standard", + }, + { + children = { + { + fileId = "192577", + text = "et_tent01.m2", + value = "et_tent01.m2", + }, + { + fileId = "192578", + text = "et_tent02.m2", + value = "et_tent02.m2", + }, + }, + text = "tents", + value = "tents", + }, + }, + text = "ethereal", + value = "ethereal", + }, + { + children = { + { + fileId = "192579", + text = "fishfrenzy.m2", + value = "fishfrenzy.m2", + }, + }, + text = "fishfrenzy", + value = "fishfrenzy", + }, + { + children = { + { + children = { + { + fileId = "192581", + text = "ghostlands_gravestone01.m2", + value = "ghostlands_gravestone01.m2", + }, + { + fileId = "192582", + text = "ghostlands_gravestone02.m2", + value = "ghostlands_gravestone02.m2", + }, + { + fileId = "192583", + text = "ghostlands_gravestone03.m2", + value = "ghostlands_gravestone03.m2", + }, + { + fileId = "192585", + text = "ghostlands_tomb01.m2", + value = "ghostlands_tomb01.m2", + }, + }, + text = "graveyard", + value = "graveyard", + }, + }, + text = "ghostlands", + value = "ghostlands", + }, + { + children = { + { + fileId = "192586", + text = "hologram_doomguard.m2", + value = "hologram_doomguard.m2", + }, + { + fileId = "192590", + text = "hologram_dreadlord.m2", + value = "hologram_dreadlord.m2", + }, + { + fileId = "192593", + text = "hologram_eredar.m2", + value = "hologram_eredar.m2", + }, + { + fileId = "192596", + text = "hologram_felguard.m2", + value = "hologram_felguard.m2", + }, + { + fileId = "192598", + text = "hologram_felhound.m2", + value = "hologram_felhound.m2", + }, + { + fileId = "192600", + text = "hologram_ganarg.m2", + value = "hologram_ganarg.m2", + }, + { + fileId = "192602", + text = "hologram_imp.m2", + value = "hologram_imp.m2", + }, + { + fileId = "192604", + text = "hologram_infernal.m2", + value = "hologram_infernal.m2", + }, + { + fileId = "192606", + text = "hologram_moarg.m2", + value = "hologram_moarg.m2", + }, + { + fileId = "192608", + text = "hologram_pitlord.m2", + value = "hologram_pitlord.m2", + }, + { + fileId = "192612", + text = "hologram_shivan.m2", + value = "hologram_shivan.m2", + }, + { + fileId = "192615", + text = "hologram_succubus.m2", + value = "hologram_succubus.m2", + }, + { + fileId = "192619", + text = "hologram_voidwalker.m2", + value = "hologram_voidwalker.m2", + }, + { + fileId = "192621", + text = "hologram_wrathguard.m2", + value = "hologram_wrathguard.m2", + }, + }, + text = "holograms", + value = "holograms", + }, + { + children = { + { + children = { + { + fileId = "192623", + text = "bannerillidan.m2", + value = "bannerillidan.m2", + }, + }, + text = "banners", + value = "banners", + }, + }, + text = "illidan", + value = "illidan", + }, + { + children = { + { + children = { + { + fileId = "192626", + text = "lo_wagon_01.m2", + value = "lo_wagon_01.m2", + }, + }, + text = "wagon", + value = "wagon", + }, + { + children = { + { + fileId = "192631", + text = "lo_weaponrack.m2", + value = "lo_weaponrack.m2", + }, + }, + text = "weaponrack", + value = "weaponrack", + }, + }, + text = "lostones", + value = "lostones", + }, + { + children = { + { + children = { + { + fileId = "192633", + text = "na_ark.m2", + value = "na_ark.m2", + }, + }, + text = "ark", + value = "ark", + }, + { + children = { + { + fileId = "192637", + text = "na_banner01.m2", + value = "na_banner01.m2", + }, + }, + text = "banner", + value = "banner", + }, + { + children = { + { + fileId = "192638", + text = "na_crate01.m2", + value = "na_crate01.m2", + }, + { + fileId = "192639", + text = "na_crate02.m2", + value = "na_crate02.m2", + }, + }, + text = "crates", + value = "crates", + }, + { + children = { + { + fileId = "192641", + text = "na_distiller.m2", + value = "na_distiller.m2", + }, + }, + text = "distiller", + value = "distiller", + }, + { + children = { + { + fileId = "192642", + text = "na_jar01.m2", + value = "na_jar01.m2", + }, + { + fileId = "192643", + text = "na_jar02.m2", + value = "na_jar02.m2", + }, + }, + text = "jars", + value = "jars", + }, + { + children = { + { + fileId = "192645", + text = "nagapagodahut01.m2", + value = "nagapagodahut01.m2", + }, + }, + text = "pagoda", + value = "pagoda", + }, + { + children = { + { + fileId = "192647", + text = "na_torch01.m2", + value = "na_torch01.m2", + }, + }, + text = "torch", + value = "torch", + }, + { + children = { + { + fileId = "192649", + text = "na_weaponstack01.m2", + value = "na_weaponstack01.m2", + }, + { + fileId = "192650", + text = "na_weaponstack02.m2", + value = "na_weaponstack02.m2", + }, + }, + text = "weaponstacks", + value = "weaponstacks", + }, + }, + text = "naga", + value = "naga", + }, + { + children = { + { + children = { + { + fileId = "192651", + text = "om_bones_01.m2", + value = "om_bones_01.m2", + }, + { + fileId = "192652", + text = "om_bones_02.m2", + value = "om_bones_02.m2", + }, + { + fileId = "192653", + text = "om_bones_03.m2", + value = "om_bones_03.m2", + }, + }, + text = "bones", + value = "bones", + }, + { + children = { + { + fileId = "192655", + text = "om_chains_01.m2", + value = "om_chains_01.m2", + }, + { + fileId = "192656", + text = "om_chains_02.m2", + value = "om_chains_02.m2", + }, + { + fileId = "192657", + text = "om_chains_03.m2", + value = "om_chains_03.m2", + }, + { + fileId = "192658", + text = "om_chains_04.m2", + value = "om_chains_04.m2", + }, + }, + text = "chains", + value = "chains", + }, + { + children = { + { + fileId = "192659", + text = "om_chair_01.m2", + value = "om_chair_01.m2", + }, + }, + text = "chair", + value = "chair", + }, + { + children = { + { + fileId = "192662", + text = "om_campfire_01.m2", + value = "om_campfire_01.m2", + }, + { + fileId = "192664", + text = "om_torch_01.m2", + value = "om_torch_01.m2", + }, + }, + text = "fires", + value = "fires", + }, + { + children = { + { + fileId = "192666", + text = "om_forge_01.m2", + value = "om_forge_01.m2", + }, + }, + text = "forge", + value = "forge", + }, + { + children = { + { + fileId = "192667", + text = "om_pillar_01.m2", + value = "om_pillar_01.m2", + }, + }, + text = "pillar", + value = "pillar", + }, + { + children = { + { + fileId = "192668", + text = "om_rock_01.m2", + value = "om_rock_01.m2", + }, + { + fileId = "192669", + text = "om_rock_02.m2", + value = "om_rock_02.m2", + }, + { + fileId = "192670", + text = "om_rock_03.m2", + value = "om_rock_03.m2", + }, + { + fileId = "192671", + text = "om_rock_04.m2", + value = "om_rock_04.m2", + }, + { + fileId = "192672", + text = "om_rock_05.m2", + value = "om_rock_05.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "192674", + text = "om_iron_spike_01.m2", + value = "om_iron_spike_01.m2", + }, + { + fileId = "192675", + text = "om_iron_spike_02.m2", + value = "om_iron_spike_02.m2", + }, + }, + text = "spikes", + value = "spikes", + }, + { + children = { + { + fileId = "192677", + text = "om_stonehenge_01.m2", + value = "om_stonehenge_01.m2", + }, + { + fileId = "192678", + text = "om_stonehenge_02.m2", + value = "om_stonehenge_02.m2", + }, + { + fileId = "192679", + text = "om_stonehenge_03.m2", + value = "om_stonehenge_03.m2", + }, + }, + text = "stonehenge", + value = "stonehenge", + }, + { + children = { + { + fileId = "192680", + text = "om_table_01.m2", + value = "om_table_01.m2", + }, + }, + text = "table", + value = "table", + }, + { + children = { + { + fileId = "192682", + text = "om_tent_01.m2", + value = "om_tent_01.m2", + }, + { + fileId = "192683", + text = "om_tent_02.m2", + value = "om_tent_02.m2", + }, + { + fileId = "192684", + text = "om_tent_03.m2", + value = "om_tent_03.m2", + }, + }, + text = "tents", + value = "tents", + }, + { + children = { + { + fileId = "192685", + text = "om_totem_01.m2", + value = "om_totem_01.m2", + }, + }, + text = "totem", + value = "totem", + }, + { + children = { + { + fileId = "192686", + text = "om_weaponrack_01.m2", + value = "om_weaponrack_01.m2", + }, + { + fileId = "192687", + text = "om_weapons_01.m2", + value = "om_weapons_01.m2", + }, + { + fileId = "192688", + text = "om_weapons_02.m2", + value = "om_weapons_02.m2", + }, + { + fileId = "192689", + text = "om_weapons_03.m2", + value = "om_weapons_03.m2", + }, + { + fileId = "192690", + text = "om_weapons_04.m2", + value = "om_weapons_04.m2", + }, + }, + text = "weapons", + value = "weapons", + }, + }, + text = "ogre", + value = "ogre", + }, + { + children = { + { + children = { + { + fileId = "192692", + text = "overhangrock_large_01.m2", + value = "overhangrock_large_01.m2", + }, + { + fileId = "192693", + text = "overhangrock_large_02.m2", + value = "overhangrock_large_02.m2", + }, + { + fileId = "192694", + text = "overhangrock_large_03.m2", + value = "overhangrock_large_03.m2", + }, + { + fileId = "192695", + text = "overhangrock_small_01.m2", + value = "overhangrock_small_01.m2", + }, + { + fileId = "192696", + text = "overhangrock_small_02.m2", + value = "overhangrock_small_02.m2", + }, + { + fileId = "192697", + text = "overhangrock_small_03.m2", + value = "overhangrock_small_03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + }, + text = "outland", + value = "outland", + }, + { + children = { + { + children = { + { + fileId = "192699", + text = "shadowcouncil_banner01.m2", + value = "shadowcouncil_banner01.m2", + }, + { + fileId = "192700", + text = "shadowcouncil_banner02.m2", + value = "shadowcouncil_banner02.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "192701", + text = "shadowcouncil_magicdevice01.m2", + value = "shadowcouncil_magicdevice01.m2", + }, + { + fileId = "192702", + text = "shadowcouncil_magicdevice02.m2", + value = "shadowcouncil_magicdevice02.m2", + }, + }, + text = "magicdevices", + value = "magicdevices", + }, + { + children = { + { + fileId = "192704", + text = "shadowcouncil_tent01.m2", + value = "shadowcouncil_tent01.m2", + }, + { + fileId = "192705", + text = "shadowcouncil_tent02.m2", + value = "shadowcouncil_tent02.m2", + }, + }, + text = "tents", + value = "tents", + }, + { + children = { + { + fileId = "192707", + text = "shadowcouncil_torch.m2", + value = "shadowcouncil_torch.m2", + }, + }, + text = "torch", + value = "torch", + }, + }, + text = "shadowcouncil", + value = "shadowcouncil", + }, + { + children = { + { + children = { + { + fileId = "249606", + text = "jewelcraft_blueheart_01.m2", + value = "jewelcraft_blueheart_01.m2", + }, + { + fileId = "192710", + text = "jewelcraft_figurine01.m2", + value = "jewelcraft_figurine01.m2", + }, + { + fileId = "192711", + text = "jewelcraft_figurine02.m2", + value = "jewelcraft_figurine02.m2", + }, + { + fileId = "242724", + text = "jewelcraft_figurine03.m2", + value = "jewelcraft_figurine03.m2", + }, + { + fileId = "192712", + text = "jewelcraft_gemcut_01.m2", + value = "jewelcraft_gemcut_01.m2", + }, + { + fileId = "192713", + text = "jewelcraft_gemcut_02.m2", + value = "jewelcraft_gemcut_02.m2", + }, + { + fileId = "192714", + text = "jewelcraft_gemcut_03.m2", + value = "jewelcraft_gemcut_03.m2", + }, + { + fileId = "242725", + text = "jewelcraft_gemcut_04.m2", + value = "jewelcraft_gemcut_04.m2", + }, + { + fileId = "192715", + text = "jewelcraft_gemuncut_01.m2", + value = "jewelcraft_gemuncut_01.m2", + }, + { + fileId = "192716", + text = "jewelcraft_gemuncut_02.m2", + value = "jewelcraft_gemuncut_02.m2", + }, + { + fileId = "192717", + text = "jewelcraft_gemuncut_03.m2", + value = "jewelcraft_gemuncut_03.m2", + }, + { + fileId = "192718", + text = "jewelcraft_grinder01.m2", + value = "jewelcraft_grinder01.m2", + }, + { + fileId = "242726", + text = "jewelcraft_necklace01.m2", + value = "jewelcraft_necklace01.m2", + }, + { + fileId = "242727", + text = "jewelcraft_necklace02.m2", + value = "jewelcraft_necklace02.m2", + }, + { + fileId = "242728", + text = "jewelcraft_ring01.m2", + value = "jewelcraft_ring01.m2", + }, + { + fileId = "242729", + text = "jewelcraft_ring02.m2", + value = "jewelcraft_ring02.m2", + }, + { + fileId = "242730", + text = "jewelcraft_ring03.m2", + value = "jewelcraft_ring03.m2", + }, + }, + text = "jewelcrafting", + value = "jewelcrafting", + }, + }, + text = "tradeskill", + value = "tradeskill", + }, + { + children = { + { + children = { + { + fileId = "192721", + text = "vr_weaponrack_01.m2", + value = "vr_weaponrack_01.m2", + }, + }, + text = "weaponracks", + value = "weaponracks", + }, + }, + text = "vrykul", + value = "vrykul", + }, + }, + text = "generic", + value = "generic", + }, + { + children = { + { + children = { + { + fileId = "192723", + text = "ghostlands_arch_01.m2", + value = "ghostlands_arch_01.m2", + }, + }, + text = "arch", + value = "arch", + }, + { + children = { + { + fileId = "192725", + text = "ghostlandsbush01.m2", + value = "ghostlandsbush01.m2", + }, + { + fileId = "192726", + text = "ghostlandsbush02.m2", + value = "ghostlandsbush02.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "192727", + text = "fence_ghostlands01.m2", + value = "fence_ghostlands01.m2", + }, + { + fileId = "192728", + text = "fence_ghostlands02.m2", + value = "fence_ghostlands02.m2", + }, + { + fileId = "192729", + text = "fence_ghostlands03.m2", + value = "fence_ghostlands03.m2", + }, + { + fileId = "192730", + text = "fence_ghostlands04.m2", + value = "fence_ghostlands04.m2", + }, + }, + text = "fence", + value = "fence", + }, + { + children = { + { + fileId = "192732", + text = "be_lamppost_ghostlands01.m2", + value = "be_lamppost_ghostlands01.m2", + }, + { + fileId = "192733", + text = "be_lamppost_ghostlands02.m2", + value = "be_lamppost_ghostlands02.m2", + }, + }, + text = "lampposts", + value = "lampposts", + }, + { + children = { + { + fileId = "192734", + text = "ghostlands_moonstone.m2", + value = "ghostlands_moonstone.m2", + }, + }, + text = "moonstone", + value = "moonstone", + }, + { + children = { + { + fileId = "192738", + text = "ghostland_obelisk_01.m2", + value = "ghostland_obelisk_01.m2", + }, + { + fileId = "192739", + text = "ghostland_obelisk_02.m2", + value = "ghostland_obelisk_02.m2", + }, + { + fileId = "192740", + text = "ghostland_obelisk_03.m2", + value = "ghostland_obelisk_03.m2", + }, + }, + text = "obelisk", + value = "obelisk", + }, + { + children = { + { + fileId = "192742", + text = "ghostland_planter_01.m2", + value = "ghostland_planter_01.m2", + }, + { + fileId = "192743", + text = "ghostland_planter_02.m2", + value = "ghostland_planter_02.m2", + }, + { + fileId = "192744", + text = "ghostland_planter_03.m2", + value = "ghostland_planter_03.m2", + }, + }, + text = "planter", + value = "planter", + }, + { + children = { + { + fileId = "192746", + text = "gl_bluepollen.m2", + value = "gl_bluepollen.m2", + }, + }, + text = "pollen", + value = "pollen", + }, + { + children = { + { + fileId = "192747", + text = "ghostlandscliffrock01.m2", + value = "ghostlandscliffrock01.m2", + }, + { + fileId = "192748", + text = "ghostlandscliffrock02.m2", + value = "ghostlandscliffrock02.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "192750", + text = "ghostlandssmallroots01.m2", + value = "ghostlandssmallroots01.m2", + }, + { + fileId = "192751", + text = "ghostlandssmallroots02.m2", + value = "ghostlandssmallroots02.m2", + }, + { + fileId = "192752", + text = "ghostlandssmallroots03.m2", + value = "ghostlandssmallroots03.m2", + }, + { + fileId = "192753", + text = "ghostlandssmallroots04.m2", + value = "ghostlandssmallroots04.m2", + }, + }, + text = "roots", + value = "roots", + }, + { + children = { + { + fileId = "192754", + text = "be_signpost_ghostlands.m2", + value = "be_signpost_ghostlands.m2", + }, + { + fileId = "192755", + text = "be_signpost_sign_ghostlands.m2", + value = "be_signpost_sign_ghostlands.m2", + }, + }, + text = "signpost", + value = "signpost", + }, + { + children = { + { + fileId = "192756", + text = "swath_skull.m2", + value = "swath_skull.m2", + }, + }, + text = "skulls", + value = "skulls", + }, + { + children = { + { + fileId = "192759", + text = "ghostlands_webstretch_01.m2", + value = "ghostlands_webstretch_01.m2", + }, + { + fileId = "192760", + text = "ghostlandsweb_01.m2", + value = "ghostlandsweb_01.m2", + }, + { + fileId = "192761", + text = "ghostlandsweb_02.m2", + value = "ghostlandsweb_02.m2", + }, + { + fileId = "192762", + text = "ghostlandsweb_03.m2", + value = "ghostlandsweb_03.m2", + }, + { + fileId = "192763", + text = "ghostlandswebdangle_01.m2", + value = "ghostlandswebdangle_01.m2", + }, + { + fileId = "192764", + text = "ghostlandswebdangle_02.m2", + value = "ghostlandswebdangle_02.m2", + }, + }, + text = "webs", + value = "webs", + }, + }, + text = "ghostlands", + value = "ghostlands", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "192766", + text = "magtheradoncube.m2", + value = "magtheradoncube.m2", + }, + }, + text = "cube", + value = "cube", + }, + { + children = { + { + fileId = "192768", + text = "hellfire_bossdoor01.m2", + value = "hellfire_bossdoor01.m2", + }, + { + fileId = "192769", + text = "hf_mag_door.m2", + value = "hf_mag_door.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "192771", + text = "hellfire_raid_fx.m2", + value = "hellfire_raid_fx.m2", + }, + { + fileId = "192772", + text = "raid_column_fx.m2", + value = "raid_column_fx.m2", + }, + }, + text = "raid_fx", + value = "raid_fx", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "192781", + text = "hellfire_dw_fellconversionchamber.m2", + value = "hellfire_dw_fellconversionchamber.m2", + }, + }, + text = "chamber", + value = "chamber", + }, + { + children = { + { + fileId = "192782", + text = "hellfire_dw_largefloor_crack_onoff.m2", + value = "hellfire_dw_largefloor_crack_onoff.m2", + }, + { + fileId = "192783", + text = "hellfire_dw_smallfloor_crack_onoff.m2", + value = "hellfire_dw_smallfloor_crack_onoff.m2", + }, + }, + text = "cracks", + value = "cracks", + }, + { + children = { + { + fileId = "192784", + text = "hellfire_dw_mainprisonentry.m2", + value = "hellfire_dw_mainprisonentry.m2", + }, + { + fileId = "192785", + text = "hellfire_dw_prisondoor.m2", + value = "hellfire_dw_prisondoor.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "192786", + text = "hellfire_dw_summonroomdoor.m2", + value = "hellfire_dw_summonroomdoor.m2", + }, + }, + text = "summon_door", + value = "summon_door", + }, + { + children = { + { + fileId = "192790", + text = "hellfire_dw_summonpower.m2", + value = "hellfire_dw_summonpower.m2", + }, + }, + text = "summoning_power_room", + value = "summoning_power_room", + }, + { + children = { + { + fileId = "192793", + text = "hf_floor_switch.m2", + value = "hf_floor_switch.m2", + }, + }, + text = "switches", + value = "switches", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "192802", + text = "dw_conversionchamber.m2", + value = "dw_conversionchamber.m2", + }, + { + fileId = "192806", + text = "hellfire_dw_conversionchamber_broken.m2", + value = "hellfire_dw_conversionchamber_broken.m2", + }, + }, + text = "chamber", + value = "chamber", + }, + { + children = { + { + fileId = "192811", + text = "hellfire_dw_largefloor_crack.m2", + value = "hellfire_dw_largefloor_crack.m2", + }, + { + fileId = "192812", + text = "hellfire_dw_largewall_crack.m2", + value = "hellfire_dw_largewall_crack.m2", + }, + { + fileId = "192813", + text = "hellfire_dw_smallfloor_crack.m2", + value = "hellfire_dw_smallfloor_crack.m2", + }, + { + fileId = "192814", + text = "hellfire_dw_smallwall_crack.m2", + value = "hellfire_dw_smallwall_crack.m2", + }, + }, + text = "cracks", + value = "cracks", + }, + { + children = { + { + fileId = "192818", + text = "hellfire_dw_celldoor.m2", + value = "hellfire_dw_celldoor.m2", + }, + { + fileId = "192819", + text = "hellfire_dw_prisonentry.m2", + value = "hellfire_dw_prisonentry.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "192822", + text = "hellfire_dw_banner_type01.m2", + value = "hellfire_dw_banner_type01.m2", + }, + { + fileId = "192823", + text = "hellfire_dw_banner_type02.m2", + value = "hellfire_dw_banner_type02.m2", + }, + { + fileId = "192824", + text = "hellfire_dw_banner_type03.m2", + value = "hellfire_dw_banner_type03.m2", + }, + { + fileId = "192825", + text = "hellfire_dw_banner_type04.m2", + value = "hellfire_dw_banner_type04.m2", + }, + { + fileId = "192826", + text = "hellfire_dw_banner_typelarge_longchain.m2", + value = "hellfire_dw_banner_typelarge_longchain.m2", + }, + { + fileId = "192827", + text = "hellfire_dw_banner_typewide.m2", + value = "hellfire_dw_banner_typewide.m2", + }, + }, + text = "dw_banners", + value = "dw_banners", + }, + { + children = { + { + fileId = "192830", + text = "hellfire_dw_floorbraizer.m2", + value = "hellfire_dw_floorbraizer.m2", + }, + { + fileId = "192831", + text = "hellfire_dw_hangingbraizer.m2", + value = "hellfire_dw_hangingbraizer.m2", + }, + }, + text = "dw_braizer", + value = "dw_braizer", + }, + { + children = { + { + fileId = "192833", + text = "hellfire_dw_hook.m2", + value = "hellfire_dw_hook.m2", + }, + { + fileId = "192834", + text = "hellfire_dw_hook_swing.m2", + value = "hellfire_dw_hook_swing.m2", + }, + }, + text = "dw_hooks", + value = "dw_hooks", + }, + { + children = { + { + fileId = "192836", + text = "hf_demonwing_lantern_nolight.m2", + value = "hf_demonwing_lantern_nolight.m2", + }, + }, + text = "dw_lantern", + value = "dw_lantern", + }, + { + children = { + { + fileId = "192839", + text = "hellfire_dw_pipe_type1.m2", + value = "hellfire_dw_pipe_type1.m2", + }, + { + fileId = "192840", + text = "hellfire_dw_pipe_type2.m2", + value = "hellfire_dw_pipe_type2.m2", + }, + { + fileId = "192841", + text = "hellfire_dw_pipe_type3.m2", + value = "hellfire_dw_pipe_type3.m2", + }, + { + fileId = "192842", + text = "hellfire_dw_pipe_type4.m2", + value = "hellfire_dw_pipe_type4.m2", + }, + { + fileId = "192843", + text = "hellfire_dw_pipe_typebasic.m2", + value = "hellfire_dw_pipe_typebasic.m2", + }, + }, + text = "dw_pipes", + value = "dw_pipes", + }, + { + children = { + { + fileId = "192853", + text = "hf_demonwing_lantern.m2", + value = "hf_demonwing_lantern.m2", + }, + }, + text = "lantern", + value = "lantern", + }, + { + children = { + { + fileId = "192863", + text = "hellfire_dw_machine_fin2.m2", + value = "hellfire_dw_machine_fin2.m2", + }, + { + fileId = "192864", + text = "hellfire_dw_machine_ver2.m2", + value = "hellfire_dw_machine_ver2.m2", + }, + { + fileId = "192865", + text = "hellfire_dw_machine_ver3.m2", + value = "hellfire_dw_machine_ver3.m2", + }, + { + fileId = "192866", + text = "hellfire_dw_tank.m2", + value = "hellfire_dw_tank.m2", + }, + }, + text = "machine", + value = "machine", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "demonwing", + value = "demonwing", + }, + { + children = { + { + children = { + { + fileId = "192870", + text = "hellfire_banner_type01.m2", + value = "hellfire_banner_type01.m2", + }, + { + fileId = "192871", + text = "hellfire_banner_type01_burning.m2", + value = "hellfire_banner_type01_burning.m2", + }, + { + fileId = "192872", + text = "hellfire_banner_type02.m2", + value = "hellfire_banner_type02.m2", + }, + { + fileId = "192873", + text = "hellfire_banner_type03.m2", + value = "hellfire_banner_type03.m2", + }, + { + fileId = "192874", + text = "hellfire_banner_type04.m2", + value = "hellfire_banner_type04.m2", + }, + { + fileId = "192875", + text = "hellfire_banner_typelarge_longchain.m2", + value = "hellfire_banner_typelarge_longchain.m2", + }, + { + fileId = "192876", + text = "hellfire_banner_typesmall_shortchain.m2", + value = "hellfire_banner_typesmall_shortchain.m2", + }, + { + fileId = "192877", + text = "hellfire_banner_typewide.m2", + value = "hellfire_banner_typewide.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "192879", + text = "hellfire_barrier.m2", + value = "hellfire_barrier.m2", + }, + }, + text = "barrier", + value = "barrier", + }, + { + children = { + { + fileId = "192883", + text = "hellfire_floorbraizer.m2", + value = "hellfire_floorbraizer.m2", + }, + { + fileId = "192884", + text = "hellfire_floorbraizer_broken.m2", + value = "hellfire_floorbraizer_broken.m2", + }, + { + fileId = "192885", + text = "hellfire_floorbraizer_purple.m2", + value = "hellfire_floorbraizer_purple.m2", + }, + { + fileId = "192886", + text = "hellfire_hangingbraizer.m2", + value = "hellfire_hangingbraizer.m2", + }, + { + fileId = "192887", + text = "hellfire_hangingbraizer_purpleflame.m2", + value = "hellfire_hangingbraizer_purpleflame.m2", + }, + { + fileId = "192888", + text = "hellfire_standingbraizer_purple.m2", + value = "hellfire_standingbraizer_purple.m2", + }, + }, + text = "braizers", + value = "braizers", + }, + { + children = { + { + fileId = "192891", + text = "hellfire_militarywing_throne.m2", + value = "hellfire_militarywing_throne.m2", + }, + }, + text = "throne", + value = "throne", + }, + { + children = { + { + fileId = "192893", + text = "hellfire_gastorch01.m2", + value = "hellfire_gastorch01.m2", + }, + }, + text = "torches", + value = "torches", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "hellfirecitadel", + value = "hellfirecitadel", + }, + { + children = { + { + children = { + { + fileId = "192895", + text = "hellfire_oldorcbanner01.m2", + value = "hellfire_oldorcbanner01.m2", + }, + { + fileId = "192896", + text = "hellfire_oldorcbanner02.m2", + value = "hellfire_oldorcbanner02.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "192899", + text = "hellfirebushthorn01.m2", + value = "hellfirebushthorn01.m2", + }, + { + fileId = "192900", + text = "hellfirebushthorn02.m2", + value = "hellfirebushthorn02.m2", + }, + { + fileId = "192901", + text = "hellfirebushthorn03.m2", + value = "hellfirebushthorn03.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "192903", + text = "hellfirecrystal01.m2", + value = "hellfirecrystal01.m2", + }, + { + fileId = "192905", + text = "hellfirecrystalformation_01.m2", + value = "hellfirecrystalformation_01.m2", + }, + { + fileId = "192906", + text = "hellfirecrystalformation_02.m2", + value = "hellfirecrystalformation_02.m2", + }, + { + fileId = "192907", + text = "hellfirecrystalformation_03.m2", + value = "hellfirecrystalformation_03.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "192909", + text = "hellfire_fireparticle.m2", + value = "hellfire_fireparticle.m2", + }, + { + fileId = "192910", + text = "hellfirecurb_01.m2", + value = "hellfirecurb_01.m2", + }, + { + fileId = "192911", + text = "hellfirecurb_02.m2", + value = "hellfirecurb_02.m2", + }, + { + fileId = "192912", + text = "hellfirecurb_03.m2", + value = "hellfirecurb_03.m2", + }, + { + fileId = "192913", + text = "hellfirecurb_fire_01.m2", + value = "hellfirecurb_fire_01.m2", + }, + { + fileId = "192914", + text = "hellfirecurb_fire_02.m2", + value = "hellfirecurb_fire_02.m2", + }, + }, + text = "curb", + value = "curb", + }, + { + children = { + { + fileId = "192920", + text = "hellfire_darkportal_fx.m2", + value = "hellfire_darkportal_fx.m2", + }, + }, + text = "darkportal", + value = "darkportal", + }, + { + children = { + { + fileId = "192930", + text = "dr_post_hellfire.m2", + value = "dr_post_hellfire.m2", + }, + { + fileId = "192931", + text = "dr_post_hellfire_ruin.m2", + value = "dr_post_hellfire_ruin.m2", + }, + { + fileId = "192932", + text = "dr_wall_hellfire.m2", + value = "dr_wall_hellfire.m2", + }, + { + fileId = "192933", + text = "dr_wall_hellfire_ruin.m2", + value = "dr_wall_hellfire_ruin.m2", + }, + }, + text = "draeneifence", + value = "draeneifence", + }, + { + children = { + { + fileId = "192938", + text = "hellfire_fel_firewall_01.m2", + value = "hellfire_fel_firewall_01.m2", + }, + { + fileId = "192939", + text = "hellfire_firewall_01.m2", + value = "hellfire_firewall_01.m2", + }, + }, + text = "firewall", + value = "firewall", + }, + { + children = { + { + fileId = "192940", + text = "hellfire_gravestones_alliance_01.m2", + value = "hellfire_gravestones_alliance_01.m2", + }, + { + fileId = "192941", + text = "hellfire_gravestones_alliance_02.m2", + value = "hellfire_gravestones_alliance_02.m2", + }, + { + fileId = "192942", + text = "hellfire_gravestones_alliance_03.m2", + value = "hellfire_gravestones_alliance_03.m2", + }, + { + fileId = "192943", + text = "hellfire_gravestones_horde_01.m2", + value = "hellfire_gravestones_horde_01.m2", + }, + { + fileId = "192944", + text = "hellfire_gravestones_horde_02.m2", + value = "hellfire_gravestones_horde_02.m2", + }, + { + fileId = "192945", + text = "hellfire_gravestones_horde_03.m2", + value = "hellfire_gravestones_horde_03.m2", + }, + }, + text = "gravestones", + value = "gravestones", + }, + { + children = { + { + fileId = "192948", + text = "hellfirefloatingrock_large_01.m2", + value = "hellfirefloatingrock_large_01.m2", + }, + { + fileId = "192949", + text = "hellfirefloatingrock_large_02.m2", + value = "hellfirefloatingrock_large_02.m2", + }, + { + fileId = "192950", + text = "hellfirefloatingrock_large_03.m2", + value = "hellfirefloatingrock_large_03.m2", + }, + { + fileId = "192951", + text = "hellfirefloatingrock_small_01.m2", + value = "hellfirefloatingrock_small_01.m2", + }, + { + fileId = "192952", + text = "hellfirefloatingrock_small_02.m2", + value = "hellfirefloatingrock_small_02.m2", + }, + { + fileId = "192953", + text = "hellfirefloatingrock_small_03.m2", + value = "hellfirefloatingrock_small_03.m2", + }, + }, + text = "hellfirefloatingrock", + value = "hellfirefloatingrock", + }, + { + children = { + { + fileId = "192956", + text = "hellfire_overhangrock_large_01.m2", + value = "hellfire_overhangrock_large_01.m2", + }, + { + fileId = "192957", + text = "hellfire_overhangrock_large_02.m2", + value = "hellfire_overhangrock_large_02.m2", + }, + { + fileId = "192958", + text = "hellfire_overhangrock_large_03.m2", + value = "hellfire_overhangrock_large_03.m2", + }, + { + fileId = "192959", + text = "hellfire_overhangrock_small_01.m2", + value = "hellfire_overhangrock_small_01.m2", + }, + { + fileId = "192960", + text = "hellfire_overhangrock_small_02.m2", + value = "hellfire_overhangrock_small_02.m2", + }, + { + fileId = "192961", + text = "hellfire_overhangrock_small_03.m2", + value = "hellfire_overhangrock_small_03.m2", + }, + }, + text = "hellfireoverhangrock", + value = "hellfireoverhangrock", + }, + { + children = { + { + fileId = "192964", + text = "hellfirewarpstorm01.m2", + value = "hellfirewarpstorm01.m2", + }, + }, + text = "hellfirewarpstorm", + value = "hellfirewarpstorm", + }, + { + children = { + { + fileId = "192965", + text = "ancient_drainei_lamppost.m2", + value = "ancient_drainei_lamppost.m2", + }, + { + fileId = "192966", + text = "ancient_drainei_lamppost_ruined.m2", + value = "ancient_drainei_lamppost_ruined.m2", + }, + { + fileId = "192968", + text = "dr_signpost_ancient.m2", + value = "dr_signpost_ancient.m2", + }, + { + fileId = "192969", + text = "dr_signpost_sign_ancient.m2", + value = "dr_signpost_sign_ancient.m2", + }, + }, + text = "lamppost", + value = "lamppost", + }, + { + children = { + { + fileId = "192972", + text = "hellfiremonolith01.m2", + value = "hellfiremonolith01.m2", + }, + }, + text = "monolith", + value = "monolith", + }, + { + children = { + { + fileId = "192973", + text = "ancient_draenei_plaform_06.m2", + value = "ancient_draenei_plaform_06.m2", + }, + { + fileId = "192974", + text = "ancient_draenei_plaform_07.m2", + value = "ancient_draenei_plaform_07.m2", + }, + }, + text = "platform", + value = "platform", + }, + { + children = { + { + fileId = "192977", + text = "hellfire_pvpflags_northfort.m2", + value = "hellfire_pvpflags_northfort.m2", + }, + { + fileId = "192978", + text = "hellfire_pvpflags_northfortflagsa.m2", + value = "hellfire_pvpflags_northfortflagsa.m2", + }, + { + fileId = "192979", + text = "hellfire_pvpflags_northfortflagsh.m2", + value = "hellfire_pvpflags_northfortflagsh.m2", + }, + { + fileId = "192980", + text = "hellfire_pvpflags_northfortflagsn.m2", + value = "hellfire_pvpflags_northfortflagsn.m2", + }, + { + fileId = "192981", + text = "hellfire_pvpflags_southfort.m2", + value = "hellfire_pvpflags_southfort.m2", + }, + { + fileId = "192982", + text = "hellfire_pvpflags_southfortflagsa.m2", + value = "hellfire_pvpflags_southfortflagsa.m2", + }, + { + fileId = "192983", + text = "hellfire_pvpflags_southfortflagsh.m2", + value = "hellfire_pvpflags_southfortflagsh.m2", + }, + { + fileId = "192984", + text = "hellfire_pvpflags_southfortflagsn.m2", + value = "hellfire_pvpflags_southfortflagsn.m2", + }, + { + fileId = "192985", + text = "hellfire_pvpflags_westfort.m2", + value = "hellfire_pvpflags_westfort.m2", + }, + { + fileId = "192986", + text = "hellfire_pvpflags_westfortflagsa.m2", + value = "hellfire_pvpflags_westfortflagsa.m2", + }, + { + fileId = "192987", + text = "hellfire_pvpflags_westfortflagsh.m2", + value = "hellfire_pvpflags_westfortflagsh.m2", + }, + { + fileId = "192988", + text = "hellfire_pvpflags_westfortflagsn.m2", + value = "hellfire_pvpflags_westfortflagsn.m2", + }, + }, + text = "pvpflags", + value = "pvpflags", + }, + { + children = { + { + fileId = "192990", + text = "hellfirerock_razor01.m2", + value = "hellfirerock_razor01.m2", + }, + { + fileId = "192991", + text = "hellfirerock_razor02.m2", + value = "hellfirerock_razor02.m2", + }, + { + fileId = "192992", + text = "hellfirerock_razor03.m2", + value = "hellfirerock_razor03.m2", + }, + { + fileId = "192993", + text = "hellfirerock_short01.m2", + value = "hellfirerock_short01.m2", + }, + { + fileId = "192994", + text = "hellfirerock_short02.m2", + value = "hellfirerock_short02.m2", + }, + { + fileId = "192995", + text = "hellfirerock_short03.m2", + value = "hellfirerock_short03.m2", + }, + { + fileId = "192996", + text = "hellfirerock_tall01.m2", + value = "hellfirerock_tall01.m2", + }, + { + fileId = "192997", + text = "hellfirerock_tall02.m2", + value = "hellfirerock_tall02.m2", + }, + { + fileId = "192998", + text = "hellfirerock_tall03.m2", + value = "hellfirerock_tall03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "193001", + text = "hellfirecliffrocks01.m2", + value = "hellfirecliffrocks01.m2", + }, + { + fileId = "193002", + text = "hellfirecliffrocks02.m2", + value = "hellfirecliffrocks02.m2", + }, + { + fileId = "193003", + text = "hellfirecliffrocks03.m2", + value = "hellfirecliffrocks03.m2", + }, + { + fileId = "193004", + text = "hellfirecliffrocks04.m2", + value = "hellfirecliffrocks04.m2", + }, + { + fileId = "193005", + text = "hellfirecliffrocks05.m2", + value = "hellfirecliffrocks05.m2", + }, + }, + text = "rockscliff", + value = "rockscliff", + }, + { + children = { + { + fileId = "193007", + text = "hellfirerocks_floatinglarge01.m2", + value = "hellfirerocks_floatinglarge01.m2", + }, + { + fileId = "193008", + text = "hellfirerocks_floatinglarge02.m2", + value = "hellfirerocks_floatinglarge02.m2", + }, + { + fileId = "193009", + text = "hellfirerocks_floatinglarge03.m2", + value = "hellfirerocks_floatinglarge03.m2", + }, + { + fileId = "193010", + text = "hellfirerocks_floatingmedium01.m2", + value = "hellfirerocks_floatingmedium01.m2", + }, + { + fileId = "193011", + text = "hellfirerocks_floatingmedium02.m2", + value = "hellfirerocks_floatingmedium02.m2", + }, + { + fileId = "193012", + text = "hellfirerocks_floatingmedium03.m2", + value = "hellfirerocks_floatingmedium03.m2", + }, + { + fileId = "193013", + text = "hellfirerocks_floatingsmall01.m2", + value = "hellfirerocks_floatingsmall01.m2", + }, + { + fileId = "193014", + text = "hellfirerocks_floatingsmall02.m2", + value = "hellfirerocks_floatingsmall02.m2", + }, + { + fileId = "193015", + text = "hellfirerocks_floatingsmall03.m2", + value = "hellfirerocks_floatingsmall03.m2", + }, + }, + text = "rocksfloating", + value = "rocksfloating", + }, + { + children = { + { + fileId = "193016", + text = "hellfiresandtrap.m2", + value = "hellfiresandtrap.m2", + }, + }, + text = "sandtrap", + value = "sandtrap", + }, + { + children = { + { + fileId = "193019", + text = "hellfiresupplies_01.m2", + value = "hellfiresupplies_01.m2", + }, + { + fileId = "193020", + text = "hellfiresupplies_02.m2", + value = "hellfiresupplies_02.m2", + }, + { + fileId = "193021", + text = "hellfiresupplies_03.m2", + value = "hellfiresupplies_03.m2", + }, + { + fileId = "193022", + text = "hellfiresupplies_04.m2", + value = "hellfiresupplies_04.m2", + }, + { + fileId = "193023", + text = "hellfiresupplies_05.m2", + value = "hellfiresupplies_05.m2", + }, + { + fileId = "193024", + text = "hellfiresupplies_06.m2", + value = "hellfiresupplies_06.m2", + }, + }, + text = "supplies", + value = "supplies", + }, + { + children = { + { + fileId = "193027", + text = "hellfireseedpod01.m2", + value = "hellfireseedpod01.m2", + }, + { + fileId = "193028", + text = "hellfiretreethorns01.m2", + value = "hellfiretreethorns01.m2", + }, + { + fileId = "193029", + text = "hellfiretreethorns02.m2", + value = "hellfiretreethorns02.m2", + }, + { + fileId = "193030", + text = "hellfiretreethorns03.m2", + value = "hellfiretreethorns03.m2", + }, + { + fileId = "193031", + text = "hellfiretreethorns04.m2", + value = "hellfiretreethorns04.m2", + }, + { + fileId = "193032", + text = "hellfiretreethorns05.m2", + value = "hellfiretreethorns05.m2", + }, + { + fileId = "193033", + text = "hellfiretreethorns06.m2", + value = "hellfiretreethorns06.m2", + }, + { + fileId = "193034", + text = "hellfiretreethornspods01.m2", + value = "hellfiretreethornspods01.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "193036", + text = "humanwagon01.m2", + value = "humanwagon01.m2", + }, + { + fileId = "193038", + text = "orcwagon07.m2", + value = "orcwagon07.m2", + }, + }, + text = "wagons", + value = "wagons", + }, + }, + text = "hellfirepeninsula", + value = "hellfirepeninsula", + }, + { + children = { + { + fileId = "193039", + text = "m2_light_lightblue.m2", + value = "m2_light_lightblue.m2", + }, + }, + text = "m2lights", + value = "m2lights", + }, + { + children = { + { + children = { + { + fileId = "193041", + text = "nagrandbush01.m2", + value = "nagrandbush01.m2", + }, + { + fileId = "193043", + text = "nagrandbush02.m2", + value = "nagrandbush02.m2", + }, + { + fileId = "193045", + text = "nagrandbush03.m2", + value = "nagrandbush03.m2", + }, + { + fileId = "193047", + text = "nagrandbush04.m2", + value = "nagrandbush04.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + fileId = "193048", + text = "darkportal_nagrand_particles.m2", + value = "darkportal_nagrand_particles.m2", + }, + }, + text = "darkportal", + value = "darkportal", + }, + { + children = { + { + fileId = "193063", + text = "diamondmountain_bit.m2", + value = "diamondmountain_bit.m2", + }, + { + fileId = "193064", + text = "diamondmountain_final.m2", + value = "diamondmountain_final.m2", + }, + { + fileId = "193065", + text = "diamondmountain_mediumbit.m2", + value = "diamondmountain_mediumbit.m2", + }, + { + fileId = "193066", + text = "dm_crystal_bunch.m2", + value = "dm_crystal_bunch.m2", + }, + { + fileId = "193067", + text = "dm_crystal_large.m2", + value = "dm_crystal_large.m2", + }, + { + fileId = "193068", + text = "dm_crystal_slim.m2", + value = "dm_crystal_slim.m2", + }, + }, + text = "diamondmount", + value = "diamondmount", + }, + { + children = { + { + fileId = "193074", + text = "nagrandtest.m2", + value = "nagrandtest.m2", + }, + }, + text = "grass", + value = "grass", + }, + { + children = { + { + fileId = "193077", + text = "nagrand_arch_01.m2", + value = "nagrand_arch_01.m2", + }, + { + fileId = "193078", + text = "nagrand_arch_02.m2", + value = "nagrand_arch_02.m2", + }, + { + fileId = "193079", + text = "nagrand_arch_03.m2", + value = "nagrand_arch_03.m2", + }, + { + fileId = "193080", + text = "nagrand_arch_04.m2", + value = "nagrand_arch_04.m2", + }, + { + fileId = "193081", + text = "nagrand_arch_05.m2", + value = "nagrand_arch_05.m2", + }, + { + fileId = "193082", + text = "nagrand_arch_06.m2", + value = "nagrand_arch_06.m2", + }, + { + fileId = "193083", + text = "nagrand_arch_07.m2", + value = "nagrand_arch_07.m2", + }, + { + fileId = "193084", + text = "nagrand_arch_08.m2", + value = "nagrand_arch_08.m2", + }, + { + fileId = "193085", + text = "nagrand_arch_09.m2", + value = "nagrand_arch_09.m2", + }, + { + fileId = "193086", + text = "nagrand_arch_10.m2", + value = "nagrand_arch_10.m2", + }, + { + fileId = "193087", + text = "nagrand_arch_11.m2", + value = "nagrand_arch_11.m2", + }, + { + fileId = "193088", + text = "nagrand_largerock_01.m2", + value = "nagrand_largerock_01.m2", + }, + { + fileId = "193089", + text = "nagrand_largerock_02.m2", + value = "nagrand_largerock_02.m2", + }, + { + fileId = "193090", + text = "nagrand_largerock_03.m2", + value = "nagrand_largerock_03.m2", + }, + { + fileId = "193091", + text = "nagrand_rockfloating_huge01.m2", + value = "nagrand_rockfloating_huge01.m2", + }, + { + fileId = "193096", + text = "nagrand_smallrock_01.m2", + value = "nagrand_smallrock_01.m2", + }, + { + fileId = "193097", + text = "nagrand_smallrock_02.m2", + value = "nagrand_smallrock_02.m2", + }, + { + fileId = "193098", + text = "nagrand_smallrock_03.m2", + value = "nagrand_smallrock_03.m2", + }, + { + fileId = "193099", + text = "nagrand_smallrock_04.m2", + value = "nagrand_smallrock_04.m2", + }, + { + fileId = "193100", + text = "nagrand_smallrock_05.m2", + value = "nagrand_smallrock_05.m2", + }, + { + fileId = "193101", + text = "nagrand_smallrock_06.m2", + value = "nagrand_smallrock_06.m2", + }, + { + fileId = "193102", + text = "nagrand_waterfalls_forfloatingrocks.m2", + value = "nagrand_waterfalls_forfloatingrocks.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "193108", + text = "nagrandcorruptedroot01.m2", + value = "nagrandcorruptedroot01.m2", + }, + { + fileId = "193109", + text = "nagrandcorruptedroot02.m2", + value = "nagrandcorruptedroot02.m2", + }, + { + fileId = "193110", + text = "nagrandroot01.m2", + value = "nagrandroot01.m2", + }, + { + fileId = "193111", + text = "nagrandroot01vara.m2", + value = "nagrandroot01vara.m2", + }, + { + fileId = "193112", + text = "nagrandroot02.m2", + value = "nagrandroot02.m2", + }, + { + fileId = "193113", + text = "nagrandroot02vara.m2", + value = "nagrandroot02vara.m2", + }, + { + fileId = "193114", + text = "nagrandroot03.m2", + value = "nagrandroot03.m2", + }, + { + fileId = "193115", + text = "nagrandroot03vara.m2", + value = "nagrandroot03vara.m2", + }, + { + fileId = "193116", + text = "nagrandroot04.m2", + value = "nagrandroot04.m2", + }, + { + fileId = "193117", + text = "nagrandroot04vara.m2", + value = "nagrandroot04vara.m2", + }, + { + fileId = "193118", + text = "nagrandroot05.m2", + value = "nagrandroot05.m2", + }, + { + fileId = "193119", + text = "nagrandroot05vara.m2", + value = "nagrandroot05vara.m2", + }, + }, + text = "roots", + value = "roots", + }, + { + children = { + { + fileId = "193123", + text = "nagrandcorruptedtree01.m2", + value = "nagrandcorruptedtree01.m2", + }, + { + fileId = "193124", + text = "nagrandcorruptedtree02.m2", + value = "nagrandcorruptedtree02.m2", + }, + { + fileId = "193125", + text = "nagrandcorruptedtree03.m2", + value = "nagrandcorruptedtree03.m2", + }, + { + fileId = "193127", + text = "nagrandtree01.m2", + value = "nagrandtree01.m2", + }, + { + fileId = "193128", + text = "nagrandtree02.m2", + value = "nagrandtree02.m2", + }, + { + fileId = "193129", + text = "nagrandtree03.m2", + value = "nagrandtree03.m2", + }, + { + fileId = "193130", + text = "nagrandtree04.m2", + value = "nagrandtree04.m2", + }, + { + fileId = "193131", + text = "nagrandtree05.m2", + value = "nagrandtree05.m2", + }, + { + fileId = "193132", + text = "nagrandtree06.m2", + value = "nagrandtree06.m2", + }, + { + fileId = "193133", + text = "nagrandtree07.m2", + value = "nagrandtree07.m2", + }, + { + fileId = "193134", + text = "nagrandtree08.m2", + value = "nagrandtree08.m2", + }, + { + fileId = "193135", + text = "nagrandtree09.m2", + value = "nagrandtree09.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "nagrand", + value = "nagrand", + }, + { + children = { + { + children = { + { + fileId = "193142", + text = "ns_biodome_all_fx_north.m2", + value = "ns_biodome_all_fx_north.m2", + }, + { + fileId = "193143", + text = "ns_biodome_all_fx_south.m2", + value = "ns_biodome_all_fx_south.m2", + }, + { + fileId = "193144", + text = "ns_biodome_all_fx_stormspire.m2", + value = "ns_biodome_all_fx_stormspire.m2", + }, + { + fileId = "193146", + text = "ns_biodome_bg.m2", + value = "ns_biodome_bg.m2", + }, + { + fileId = "193147", + text = "ns_biodome_device.m2", + value = "ns_biodome_device.m2", + }, + { + fileId = "193148", + text = "ns_biodome_generic.m2", + value = "ns_biodome_generic.m2", + }, + { + fileId = "193149", + text = "ns_biodome_pylon_effects.m2", + value = "ns_biodome_pylon_effects.m2", + }, + { + fileId = "193152", + text = "ns_biodome_stormspire.m2", + value = "ns_biodome_stormspire.m2", + }, + }, + text = "biodomes", + value = "biodomes", + }, + { + children = { + { + fileId = "193155", + text = "nethercollectorcap.m2", + value = "nethercollectorcap.m2", + }, + }, + text = "collectorcap", + value = "collectorcap", + }, + { + children = { + { + fileId = "193156", + text = "collectortop.m2", + value = "collectortop.m2", + }, + { + fileId = "193157", + text = "collectortop_nether.m2", + value = "collectortop_nether.m2", + }, + { + fileId = "193158", + text = "collectortop_off.m2", + value = "collectortop_off.m2", + }, + }, + text = "collectortop", + value = "collectortop", + }, + { + children = { + { + fileId = "193165", + text = "collectortubes.m2", + value = "collectortubes.m2", + }, + { + fileId = "193166", + text = "collectortubes_building_attach.m2", + value = "collectortubes_building_attach.m2", + }, + { + fileId = "193167", + text = "collectortubes_building_attach_off.m2", + value = "collectortubes_building_attach_off.m2", + }, + { + fileId = "193168", + text = "collectortubes_joint_45.m2", + value = "collectortubes_joint_45.m2", + }, + { + fileId = "193169", + text = "collectortubes_joint_90.m2", + value = "collectortubes_joint_90.m2", + }, + { + fileId = "193170", + text = "collectortubes_joint_ground.m2", + value = "collectortubes_joint_ground.m2", + }, + { + fileId = "193171", + text = "collectortubes_straight.m2", + value = "collectortubes_straight.m2", + }, + { + fileId = "193172", + text = "collectortubes_straight_medium.m2", + value = "collectortubes_straight_medium.m2", + }, + { + fileId = "193173", + text = "collectortubes_straight_medium_off.m2", + value = "collectortubes_straight_medium_off.m2", + }, + { + fileId = "193174", + text = "collectortubes_straight_off.m2", + value = "collectortubes_straight_off.m2", + }, + { + fileId = "193175", + text = "collectortubes_straight_short.m2", + value = "collectortubes_straight_short.m2", + }, + { + fileId = "193176", + text = "collectortubes_straight_short_off.m2", + value = "collectortubes_straight_short_off.m2", + }, + { + fileId = "193177", + text = "collectortubes_straight_states.m2", + value = "collectortubes_straight_states.m2", + }, + { + fileId = "193178", + text = "collectortubes_support.m2", + value = "collectortubes_support.m2", + }, + }, + text = "collectortubes", + value = "collectortubes", + }, + { + children = { + { + fileId = "193180", + text = "netherstormcracksmoke01.m2", + value = "netherstormcracksmoke01.m2", + }, + { + fileId = "193181", + text = "netherstormcracksmokeblue.m2", + value = "netherstormcracksmokeblue.m2", + }, + }, + text = "crackeffects", + value = "crackeffects", + }, + { + children = { + { + fileId = "193184", + text = "nethergravedirtmound01.m2", + value = "nethergravedirtmound01.m2", + }, + }, + text = "dirt", + value = "dirt", + }, + { + children = { + { + fileId = "193185", + text = "netherstorm_particles.m2", + value = "netherstorm_particles.m2", + }, + { + fileId = "193186", + text = "netherstorm_particles_pink.m2", + value = "netherstorm_particles_pink.m2", + }, + }, + text = "float_particles", + value = "float_particles", + }, + { + children = { + { + fileId = "193191", + text = "netherstorm_floatingsmall01.m2", + value = "netherstorm_floatingsmall01.m2", + }, + { + fileId = "193192", + text = "netherstorm_floatingsmall02.m2", + value = "netherstorm_floatingsmall02.m2", + }, + { + fileId = "193193", + text = "netherstorm_overhangrock_large_01.m2", + value = "netherstorm_overhangrock_large_01.m2", + }, + { + fileId = "193194", + text = "netherstorm_overhangrock_large_02.m2", + value = "netherstorm_overhangrock_large_02.m2", + }, + { + fileId = "193195", + text = "netherstorm_overhangrock_small_01.m2", + value = "netherstorm_overhangrock_small_01.m2", + }, + { + fileId = "193196", + text = "netherstorm_overhangrock_small_02.m2", + value = "netherstorm_overhangrock_small_02.m2", + }, + { + fileId = "193197", + text = "netherstorm_overhangrock_small_03.m2", + value = "netherstorm_overhangrock_small_03.m2", + }, + { + fileId = "193198", + text = "netherstorm_short02.m2", + value = "netherstorm_short02.m2", + }, + }, + text = "floatingrocks", + value = "floatingrocks", + }, + { + children = { + { + fileId = "193201", + text = "ol_goblinbridge_gears01.m2", + value = "ol_goblinbridge_gears01.m2", + }, + }, + text = "goblinbridge", + value = "goblinbridge", + }, + { + children = { + { + fileId = "193203", + text = "netherstorm_goblinwall01.m2", + value = "netherstorm_goblinwall01.m2", + }, + { + fileId = "193204", + text = "netherstorm_goblinwall02.m2", + value = "netherstorm_goblinwall02.m2", + }, + { + fileId = "193205", + text = "netherstorm_goblinwall_blasteast.m2", + value = "netherstorm_goblinwall_blasteast.m2", + }, + { + fileId = "193206", + text = "netherstorm_goblinwall_blastwest.m2", + value = "netherstorm_goblinwall_blastwest.m2", + }, + { + fileId = "193207", + text = "netherstorm_goblinwallcurve01.m2", + value = "netherstorm_goblinwallcurve01.m2", + }, + { + fileId = "193208", + text = "netherstorm_goblinwallgate01.m2", + value = "netherstorm_goblinwallgate01.m2", + }, + { + fileId = "193210", + text = "netherstorm_goblinwallpost01.m2", + value = "netherstorm_goblinwallpost01.m2", + }, + }, + text = "goblinwall", + value = "goblinwall", + }, + { + children = { + { + fileId = "193211", + text = "netherstormcracklighting01.m2", + value = "netherstormcracklighting01.m2", + }, + { + fileId = "193212", + text = "netherstormcracksmokeonly01.m2", + value = "netherstormcracksmokeonly01.m2", + }, + { + fileId = "193214", + text = "netherstormlightning01.m2", + value = "netherstormlightning01.m2", + }, + { + fileId = "193215", + text = "netherstormlightning02.m2", + value = "netherstormlightning02.m2", + }, + { + fileId = "193216", + text = "netherstormlightning03.m2", + value = "netherstormlightning03.m2", + }, + { + fileId = "193217", + text = "netherstormlightning04.m2", + value = "netherstormlightning04.m2", + }, + { + fileId = "193218", + text = "netherstormlightning05.m2", + value = "netherstormlightning05.m2", + }, + { + fileId = "193219", + text = "netherstormlightning06.m2", + value = "netherstormlightning06.m2", + }, + }, + text = "lightning", + value = "lightning", + }, + { + children = { + { + fileId = "193227", + text = "ns_rock_01.m2", + value = "ns_rock_01.m2", + }, + { + fileId = "193228", + text = "ns_rock_02.m2", + value = "ns_rock_02.m2", + }, + { + fileId = "193229", + text = "ns_rock_03.m2", + value = "ns_rock_03.m2", + }, + { + fileId = "193230", + text = "ns_rock_04.m2", + value = "ns_rock_04.m2", + }, + { + fileId = "193231", + text = "ns_rock_05.m2", + value = "ns_rock_05.m2", + }, + { + fileId = "193232", + text = "ns_rock_06.m2", + value = "ns_rock_06.m2", + }, + { + fileId = "193233", + text = "ns_rock_07.m2", + value = "ns_rock_07.m2", + }, + { + fileId = "193234", + text = "ns_rock_08.m2", + value = "ns_rock_08.m2", + }, + { + fileId = "193235", + text = "ns_rock_09.m2", + value = "ns_rock_09.m2", + }, + { + fileId = "193236", + text = "ns_rock_10.m2", + value = "ns_rock_10.m2", + }, + { + fileId = "193237", + text = "ns_rock_11.m2", + value = "ns_rock_11.m2", + }, + { + fileId = "193238", + text = "ns_rock_12.m2", + value = "ns_rock_12.m2", + }, + { + fileId = "193239", + text = "ns_rock_13.m2", + value = "ns_rock_13.m2", + }, + { + fileId = "193240", + text = "ns_rock_14.m2", + value = "ns_rock_14.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "193242", + text = "netherstormsporemound01.m2", + value = "netherstormsporemound01.m2", + }, + }, + text = "sporemound", + value = "sporemound", + }, + }, + text = "netherstorm", + value = "netherstorm", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "193243", + text = "pvp_lordaeron_door.m2", + value = "pvp_lordaeron_door.m2", + }, + { + fileId = "193244", + text = "pvp_ogre_door_front.m2", + value = "pvp_ogre_door_front.m2", + }, + { + fileId = "193245", + text = "pvp_ogre_door_interior.m2", + value = "pvp_ogre_door_interior.m2", + }, + { + fileId = "193246", + text = "pvp_orc_door_front.m2", + value = "pvp_orc_door_front.m2", + }, + { + fileId = "193247", + text = "pvp_orc_door_interior.m2", + value = "pvp_orc_door_interior.m2", + }, + }, + text = "doors", + value = "doors", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + }, + text = "pvp", + value = "pvp", + }, + { + children = { + { + children = { + { + fileId = "193248", + text = "ol_dwarvenbattlementmossy01.m2", + value = "ol_dwarvenbattlementmossy01.m2", + }, + { + fileId = "193249", + text = "ol_dwarvenbattlementmossy02.m2", + value = "ol_dwarvenbattlementmossy02.m2", + }, + { + fileId = "193250", + text = "ol_dwarvenbattlementmossy03.m2", + value = "ol_dwarvenbattlementmossy03.m2", + }, + { + fileId = "193251", + text = "ol_dwarvenbattlementmossy04.m2", + value = "ol_dwarvenbattlementmossy04.m2", + }, + { + fileId = "193252", + text = "ol_dwarvenbattlementmossy05.m2", + value = "ol_dwarvenbattlementmossy05.m2", + }, + { + fileId = "193253", + text = "ol_dwarvenbattlementmossy06.m2", + value = "ol_dwarvenbattlementmossy06.m2", + }, + { + fileId = "193254", + text = "ol_dwarvenbattlementmossy07.m2", + value = "ol_dwarvenbattlementmossy07.m2", + }, + { + fileId = "193255", + text = "ol_lochlamppost.m2", + value = "ol_lochlamppost.m2", + }, + { + fileId = "193257", + text = "ol_lochmodanstonefence02.m2", + value = "ol_lochmodanstonefence02.m2", + }, + }, + text = "base", + value = "base", + }, + { + children = { + { + fileId = "193261", + text = "shadowmoonblacktemplebrazier01.m2", + value = "shadowmoonblacktemplebrazier01.m2", + }, + }, + text = "brazier", + value = "brazier", + }, + { + children = { + { + fileId = "193263", + text = "chromaticcrystralformation_01.m2", + value = "chromaticcrystralformation_01.m2", + }, + { + fileId = "193264", + text = "chromaticcrystralformation_02.m2", + value = "chromaticcrystralformation_02.m2", + }, + { + fileId = "193265", + text = "chromaticcrystralformation_03.m2", + value = "chromaticcrystralformation_03.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "193269", + text = "shadowmoon_gravestones_horde_01.m2", + value = "shadowmoon_gravestones_horde_01.m2", + }, + { + fileId = "193270", + text = "shadowmoon_gravestones_horde_02.m2", + value = "shadowmoon_gravestones_horde_02.m2", + }, + { + fileId = "193271", + text = "shadowmoon_gravestones_horde_03.m2", + value = "shadowmoon_gravestones_horde_03.m2", + }, + }, + text = "graveyard", + value = "graveyard", + }, + { + children = { + { + fileId = "193278", + text = "shadowmoon_lavaguyser.m2", + value = "shadowmoon_lavaguyser.m2", + }, + { + fileId = "193279", + text = "shadowmoon_lavasplash01.m2", + value = "shadowmoon_lavasplash01.m2", + }, + { + fileId = "193280", + text = "shadowmoon_lavasplash02.m2", + value = "shadowmoon_lavasplash02.m2", + }, + }, + text = "guyser", + value = "guyser", + }, + { + children = { + { + fileId = "193282", + text = "shadowmoonlavaplaug01.m2", + value = "shadowmoonlavaplaug01.m2", + }, + { + fileId = "193283", + text = "shadowmoonlavaplaug02.m2", + value = "shadowmoonlavaplaug02.m2", + }, + }, + text = "lavaplugs", + value = "lavaplugs", + }, + { + children = { + { + fileId = "193284", + text = "markofkael.m2", + value = "markofkael.m2", + }, + }, + text = "markofkael", + value = "markofkael", + }, + { + children = { + { + fileId = "193286", + text = "shadowmoonmeteora.m2", + value = "shadowmoonmeteora.m2", + }, + { + fileId = "193287", + text = "shadowmoonmeteorb.m2", + value = "shadowmoonmeteorb.m2", + }, + { + fileId = "193288", + text = "shadowmoonmeteorc.m2", + value = "shadowmoonmeteorc.m2", + }, + { + fileId = "193289", + text = "shadowmoonmeteord.m2", + value = "shadowmoonmeteord.m2", + }, + { + fileId = "193290", + text = "shadowmoonmeteore.m2", + value = "shadowmoonmeteore.m2", + }, + }, + text = "meteor", + value = "meteor", + }, + { + children = { + { + fileId = "193291", + text = "infernallowpoly.m2", + value = "infernallowpoly.m2", + }, + }, + text = "quest", + value = "quest", + }, + { + children = { + { + fileId = "193293", + text = "shadowmoon_floatingsmall01.m2", + value = "shadowmoon_floatingsmall01.m2", + }, + { + fileId = "193294", + text = "shadowmoon_floatingsmall02.m2", + value = "shadowmoon_floatingsmall02.m2", + }, + { + fileId = "193295", + text = "shadowmoon_overhangrock_large_01.m2", + value = "shadowmoon_overhangrock_large_01.m2", + }, + { + fileId = "193296", + text = "shadowmoon_overhangrock_large_02.m2", + value = "shadowmoon_overhangrock_large_02.m2", + }, + { + fileId = "193297", + text = "shadowmoon_overhangrock_small_01.m2", + value = "shadowmoon_overhangrock_small_01.m2", + }, + { + fileId = "193298", + text = "shadowmoon_overhangrock_small_02.m2", + value = "shadowmoon_overhangrock_small_02.m2", + }, + { + fileId = "193299", + text = "shadowmoon_overhangrock_small_03.m2", + value = "shadowmoon_overhangrock_small_03.m2", + }, + { + fileId = "193300", + text = "shadowmoon_rock_01.m2", + value = "shadowmoon_rock_01.m2", + }, + { + fileId = "193301", + text = "shadowmoon_rock_02.m2", + value = "shadowmoon_rock_02.m2", + }, + { + fileId = "193302", + text = "shadowmoon_rock_03.m2", + value = "shadowmoon_rock_03.m2", + }, + { + fileId = "193303", + text = "shadowmoon_rock_04.m2", + value = "shadowmoon_rock_04.m2", + }, + { + fileId = "193304", + text = "shadowmoon_rock_05.m2", + value = "shadowmoon_rock_05.m2", + }, + { + fileId = "193305", + text = "shadowmoon_rock_06.m2", + value = "shadowmoon_rock_06.m2", + }, + { + fileId = "193306", + text = "shadowmoon_rock_07.m2", + value = "shadowmoon_rock_07.m2", + }, + { + fileId = "193307", + text = "shadowmoon_short02.m2", + value = "shadowmoon_short02.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "193312", + text = "shadowmoon_rune1.m2", + value = "shadowmoon_rune1.m2", + }, + { + fileId = "193313", + text = "shadowmoon_rune2.m2", + value = "shadowmoon_rune2.m2", + }, + }, + text = "rune", + value = "rune", + }, + { + children = { + { + fileId = "193314", + text = "shadowmoon_scaffolding01.m2", + value = "shadowmoon_scaffolding01.m2", + }, + { + fileId = "193315", + text = "shadowmoon_scaffolding02.m2", + value = "shadowmoon_scaffolding02.m2", + }, + { + fileId = "193316", + text = "shadowmoon_scaffolding03.m2", + value = "shadowmoon_scaffolding03.m2", + }, + }, + text = "scaffolding", + value = "scaffolding", + }, + { + children = { + { + fileId = "193318", + text = "burningash02.m2", + value = "burningash02.m2", + }, + { + fileId = "193319", + text = "burningash03.m2", + value = "burningash03.m2", + }, + { + fileId = "193321", + text = "shadowmooncracksmoke01.m2", + value = "shadowmooncracksmoke01.m2", + }, + }, + text = "smoke", + value = "smoke", + }, + { + children = { + { + fileId = "193326", + text = "shadowmoonvolcanotop.m2", + value = "shadowmoonvolcanotop.m2", + }, + }, + text = "volcano", + value = "volcano", + }, + }, + text = "shadowmoon", + value = "shadowmoon", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "193328", + text = "ancdrae_elevatorpiece.m2", + value = "ancdrae_elevatorpiece.m2", + }, + { + fileId = "193329", + text = "ancdrae_elevatorpiece_netherstorm.m2", + value = "ancdrae_elevatorpiece_netherstorm.m2", + }, + }, + text = "elevator", + value = "elevator", + }, + { + children = { + { + fileId = "193330", + text = "shattrathsouptent.m2", + value = "shattrathsouptent.m2", + }, + }, + text = "events", + value = "events", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "193331", + text = "battlemasterpedestal.m2", + value = "battlemasterpedestal.m2", + }, + }, + text = "battlemasterpedestal", + value = "battlemasterpedestal", + }, + { + children = { + { + fileId = "193332", + text = "ancient_d_bookshelf.m2", + value = "ancient_d_bookshelf.m2", + }, + }, + text = "bookshelf", + value = "bookshelf", + }, + { + children = { + { + fileId = "193340", + text = "shattrath_narru_energy_fx.m2", + value = "shattrath_narru_energy_fx.m2", + }, + }, + text = "central_energy_fx", + value = "central_energy_fx", + }, + { + children = { + { + fileId = "193342", + text = "hf_outpostcrystals.m2", + value = "hf_outpostcrystals.m2", + }, + { + fileId = "193343", + text = "outpost_crystals1.m2", + value = "outpost_crystals1.m2", + }, + { + fileId = "193347", + text = "shattrath_crystal_bank.m2", + value = "shattrath_crystal_bank.m2", + }, + { + fileId = "193348", + text = "shattrath_crystal_holyaldurtemple.m2", + value = "shattrath_crystal_holyaldurtemple.m2", + }, + { + fileId = "193349", + text = "shattrath_crystal_huta.m2", + value = "shattrath_crystal_huta.m2", + }, + { + fileId = "193350", + text = "shattrath_crystal_hutb.m2", + value = "shattrath_crystal_hutb.m2", + }, + { + fileId = "193351", + text = "shattrath_crystal_hutc.m2", + value = "shattrath_crystal_hutc.m2", + }, + { + fileId = "193352", + text = "shattrath_crystal_inn_bottom.m2", + value = "shattrath_crystal_inn_bottom.m2", + }, + { + fileId = "193353", + text = "shattrath_crystal_inn_floating.m2", + value = "shattrath_crystal_inn_floating.m2", + }, + { + fileId = "193355", + text = "shattrath_crystal_outpost.m2", + value = "shattrath_crystal_outpost.m2", + }, + { + fileId = "193356", + text = "shattrath_crystal_temple_ext.m2", + value = "shattrath_crystal_temple_ext.m2", + }, + { + fileId = "193357", + text = "shattrath_crystal_temple_int.m2", + value = "shattrath_crystal_temple_int.m2", + }, + { + fileId = "193358", + text = "shattrath_crystal_terrace.m2", + value = "shattrath_crystal_terrace.m2", + }, + }, + text = "crystal_tops", + value = "crystal_tops", + }, + { + children = { + { + fileId = "193359", + text = "shattrath_scryerdoodads.m2", + value = "shattrath_scryerdoodads.m2", + }, + { + fileId = "193360", + text = "shattrath_scryerdoodads_backcrates.m2", + value = "shattrath_scryerdoodads_backcrates.m2", + }, + }, + text = "giantdoodads", + value = "giantdoodads", + }, + { + children = { + { + fileId = "193362", + text = "shattrath_draenei_holy_fx.m2", + value = "shattrath_draenei_holy_fx.m2", + }, + }, + text = "holy_energy_fx", + value = "holy_energy_fx", + }, + { + children = { + { + fileId = "193363", + text = "ancient_d_braizer.m2", + value = "ancient_d_braizer.m2", + }, + { + fileId = "193364", + text = "ancient_d_braizer_blue.m2", + value = "ancient_d_braizer_blue.m2", + }, + { + fileId = "193365", + text = "ancient_d_braizer_blue_lowbatch.m2", + value = "ancient_d_braizer_blue_lowbatch.m2", + }, + { + fileId = "193366", + text = "ancient_d_braizer_blue_shortsmoke.m2", + value = "ancient_d_braizer_blue_shortsmoke.m2", + }, + { + fileId = "193367", + text = "ancient_d_braizer_broken.m2", + value = "ancient_d_braizer_broken.m2", + }, + { + fileId = "193368", + text = "ancient_d_braizer_red.m2", + value = "ancient_d_braizer_red.m2", + }, + { + fileId = "193369", + text = "ancient_d_sconce.m2", + value = "ancient_d_sconce.m2", + }, + { + fileId = "193370", + text = "ancient_d_sconce_off.m2", + value = "ancient_d_sconce_off.m2", + }, + { + fileId = "193371", + text = "ancient_d_standing_light.m2", + value = "ancient_d_standing_light.m2", + }, + { + fileId = "193372", + text = "ancient_d_standing_light_off.m2", + value = "ancient_d_standing_light_off.m2", + }, + }, + text = "lighting", + value = "lighting", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "shattrath", + value = "shattrath", + }, + { + children = { + { + children = { + { + fileId = "193383", + text = "silvermoonbush05.m2", + value = "silvermoonbush05.m2", + }, + { + fileId = "193384", + text = "silvermoonbush06.m2", + value = "silvermoonbush06.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "193386", + text = "floatingdandelions01.m2", + value = "floatingdandelions01.m2", + }, + }, + text = "floatingdandelions", + value = "floatingdandelions", + }, + { + children = { + { + fileId = "193392", + text = "silvermoonflower01.m2", + value = "silvermoonflower01.m2", + }, + { + fileId = "193393", + text = "silvermoonflower02.m2", + value = "silvermoonflower02.m2", + }, + { + fileId = "193394", + text = "silvermoonflower03.m2", + value = "silvermoonflower03.m2", + }, + { + fileId = "193395", + text = "silvermoonflower04.m2", + value = "silvermoonflower04.m2", + }, + { + fileId = "193396", + text = "silvermoonflower05.m2", + value = "silvermoonflower05.m2", + }, + { + fileId = "193397", + text = "silvermoonflower06.m2", + value = "silvermoonflower06.m2", + }, + }, + text = "flowers", + value = "flowers", + }, + { + children = { + { + fileId = "193399", + text = "eversongcliffrock01.m2", + value = "eversongcliffrock01.m2", + }, + { + fileId = "193400", + text = "eversongcliffrock02.m2", + value = "eversongcliffrock02.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "193402", + text = "silvermoontree08.m2", + value = "silvermoontree08.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "193405", + text = "bigfountainwater.m2", + value = "bigfountainwater.m2", + }, + }, + text = "water", + value = "water", + }, + }, + text = "silvermoon", + value = "silvermoon", + }, + { + children = { + { + children = { + { + fileId = "193407", + text = "silvermystbush01.m2", + value = "silvermystbush01.m2", + }, + { + fileId = "193408", + text = "silvermystbush02.m2", + value = "silvermystbush02.m2", + }, + { + fileId = "193409", + text = "silvermystbush03.m2", + value = "silvermystbush03.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "193414", + text = "silvermystcompass01.m2", + value = "silvermystcompass01.m2", + }, + }, + text = "compass", + value = "compass", + }, + { + children = { + { + fileId = "193420", + text = "silvermyst_elfinn_crystal.m2", + value = "silvermyst_elfinn_crystal.m2", + }, + { + fileId = "193421", + text = "silvermystcrystal01.m2", + value = "silvermystcrystal01.m2", + }, + { + fileId = "193422", + text = "silvermystcrystal01_orange.m2", + value = "silvermystcrystal01_orange.m2", + }, + { + fileId = "193423", + text = "silvermystcrystal01_yellow.m2", + value = "silvermystcrystal01_yellow.m2", + }, + { + fileId = "193424", + text = "silvermystcrystal02.m2", + value = "silvermystcrystal02.m2", + }, + { + fileId = "193425", + text = "silvermystcrystal02_orange.m2", + value = "silvermystcrystal02_orange.m2", + }, + { + fileId = "193426", + text = "silvermystcrystal02_yellow.m2", + value = "silvermystcrystal02_yellow.m2", + }, + { + fileId = "193427", + text = "silvermystcrystal03.m2", + value = "silvermystcrystal03.m2", + }, + { + fileId = "193428", + text = "silvermystcrystal03_orange.m2", + value = "silvermystcrystal03_orange.m2", + }, + { + fileId = "193429", + text = "silvermystcrystal03_yellow.m2", + value = "silvermystcrystal03_yellow.m2", + }, + { + fileId = "193434", + text = "silvermystcrystalbig01.m2", + value = "silvermystcrystalbig01.m2", + }, + { + fileId = "193435", + text = "silvermystcrystalbig01_orange.m2", + value = "silvermystcrystalbig01_orange.m2", + }, + { + fileId = "193436", + text = "silvermystcrystalbig01_yellow.m2", + value = "silvermystcrystalbig01_yellow.m2", + }, + { + fileId = "193437", + text = "silvermystcrystalbig02.m2", + value = "silvermystcrystalbig02.m2", + }, + { + fileId = "193438", + text = "silvermystcrystalbig02_orange.m2", + value = "silvermystcrystalbig02_orange.m2", + }, + { + fileId = "193439", + text = "silvermystcrystalbig02_yellow.m2", + value = "silvermystcrystalbig02_yellow.m2", + }, + { + fileId = "193440", + text = "silvermystcrystalbig03.m2", + value = "silvermystcrystalbig03.m2", + }, + { + fileId = "193441", + text = "silvermystcrystalbig03_orange.m2", + value = "silvermystcrystalbig03_orange.m2", + }, + { + fileId = "193442", + text = "silvermystcrystalbig03_yellow.m2", + value = "silvermystcrystalbig03_yellow.m2", + }, + { + fileId = "193446", + text = "silvermystcrystalsmall01.m2", + value = "silvermystcrystalsmall01.m2", + }, + { + fileId = "193447", + text = "silvermystcrystalsmall01_orange.m2", + value = "silvermystcrystalsmall01_orange.m2", + }, + { + fileId = "193448", + text = "silvermystcrystalsmall01_yellow.m2", + value = "silvermystcrystalsmall01_yellow.m2", + }, + { + fileId = "193449", + text = "silvermystcrystalsmall02.m2", + value = "silvermystcrystalsmall02.m2", + }, + { + fileId = "193450", + text = "silvermystcrystalsmall02_orange.m2", + value = "silvermystcrystalsmall02_orange.m2", + }, + { + fileId = "193451", + text = "silvermystcrystalsmall02_yellow.m2", + value = "silvermystcrystalsmall02_yellow.m2", + }, + { + fileId = "193452", + text = "silvermystcrystalsmall03.m2", + value = "silvermystcrystalsmall03.m2", + }, + { + fileId = "193453", + text = "silvermystcrystalsmall03_orange.m2", + value = "silvermystcrystalsmall03_orange.m2", + }, + { + fileId = "193454", + text = "silvermystcrystalsmall03_yellow.m2", + value = "silvermystcrystalsmall03_yellow.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "193457", + text = "silvermyst_leafpile.m2", + value = "silvermyst_leafpile.m2", + }, + }, + text = "leafpile", + value = "leafpile", + }, + { + children = { + { + fileId = "193458", + text = "silvermystlightningbolt01.m2", + value = "silvermystlightningbolt01.m2", + }, + }, + text = "lightning", + value = "lightning", + }, + { + children = { + { + fileId = "193460", + text = "silvermyst_lightshaft.m2", + value = "silvermyst_lightshaft.m2", + }, + { + fileId = "193461", + text = "silvermyst_lightshaft02.m2", + value = "silvermyst_lightshaft02.m2", + }, + { + fileId = "193462", + text = "silvermyst_lightshaft03.m2", + value = "silvermyst_lightshaft03.m2", + }, + }, + text = "lightshaft", + value = "lightshaft", + }, + { + children = { + { + fileId = "193464", + text = "silvermyst_moonstone_blue.m2", + value = "silvermyst_moonstone_blue.m2", + }, + { + fileId = "193466", + text = "silvermyst_moonstone_green.m2", + value = "silvermyst_moonstone_green.m2", + }, + { + fileId = "193468", + text = "silvermyst_moonstone_red.m2", + value = "silvermyst_moonstone_red.m2", + }, + }, + text = "moonstone", + value = "moonstone", + }, + { + children = { + { + fileId = "193469", + text = "d_smoke.m2", + value = "d_smoke.m2", + }, + }, + text = "smoke", + value = "smoke", + }, + { + children = { + { + fileId = "193478", + text = "silvermysttree01.m2", + value = "silvermysttree01.m2", + }, + { + fileId = "193479", + text = "silvermysttree02.m2", + value = "silvermysttree02.m2", + }, + { + fileId = "193480", + text = "silvermysttree03.m2", + value = "silvermysttree03.m2", + }, + { + fileId = "193481", + text = "silvermysttree04.m2", + value = "silvermysttree04.m2", + }, + { + fileId = "193482", + text = "silvermysttree05.m2", + value = "silvermysttree05.m2", + }, + { + fileId = "193483", + text = "silvermysttree_fallen01.m2", + value = "silvermysttree_fallen01.m2", + }, + { + fileId = "193484", + text = "silvermysttreeroots01.m2", + value = "silvermysttreeroots01.m2", + }, + { + fileId = "193485", + text = "silvermysttreetorn01.m2", + value = "silvermysttreetorn01.m2", + }, + { + fileId = "193486", + text = "silvermysttreetorn02.m2", + value = "silvermysttreetorn02.m2", + }, + { + fileId = "193487", + text = "silvermysttreetorn03.m2", + value = "silvermysttreetorn03.m2", + }, + { + fileId = "193488", + text = "silvermysttreetorn04.m2", + value = "silvermysttreetorn04.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "silvermyst", + value = "silvermyst", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "193491", + text = "frostwurmfellfire_birth.m2", + value = "frostwurmfellfire_birth.m2", + }, + { + fileId = "193497", + text = "sunwell_bosscollision01.m2", + value = "sunwell_bosscollision01.m2", + }, + { + fileId = "193498", + text = "sunwell_bosscollision02.m2", + value = "sunwell_bosscollision02.m2", + }, + { + fileId = "193499", + text = "sunwell_bossforcefield.m2", + value = "sunwell_bossforcefield.m2", + }, + { + fileId = "193508", + text = "sunwell_fx.m2", + value = "sunwell_fx.m2", + }, + { + fileId = "193511", + text = "sunwell_ice_barrier.m2", + value = "sunwell_ice_barrier.m2", + }, + { + fileId = "193518", + text = "sunwell_replica.m2", + value = "sunwell_replica.m2", + }, + { + fileId = "193525", + text = "sunwell_windowdust.m2", + value = "sunwell_windowdust.m2", + }, + { + fileId = "193527", + text = "sunwellraid_gate_01.m2", + value = "sunwellraid_gate_01.m2", + }, + { + fileId = "193528", + text = "sunwellraid_gate_02.m2", + value = "sunwellraid_gate_02.m2", + }, + { + fileId = "193529", + text = "sunwellraid_gate_03.m2", + value = "sunwellraid_gate_03.m2", + }, + { + fileId = "193530", + text = "sunwellraid_gate_04.m2", + value = "sunwellraid_gate_04.m2", + }, + }, + text = "sunwell", + value = "sunwell", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "sunwell", + value = "sunwell", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "193538", + text = "tk_boss_pod.m2", + value = "tk_boss_pod.m2", + }, + }, + text = "arcane_boss_pod", + value = "arcane_boss_pod", + }, + { + children = { + { + fileId = "193539", + text = "tk_arcane_door_horiz.m2", + value = "tk_arcane_door_horiz.m2", + }, + { + fileId = "193540", + text = "tk_arcane_door_vert.m2", + value = "tk_arcane_door_vert.m2", + }, + }, + text = "arcane_doors", + value = "arcane_doors", + }, + { + children = { + { + fileId = "193541", + text = "tk_prison_cell.m2", + value = "tk_prison_cell.m2", + }, + }, + text = "arcane_pod", + value = "arcane_pod", + }, + { + children = { + { + fileId = "193551", + text = "tk_main_control_console.m2", + value = "tk_main_control_console.m2", + }, + { + fileId = "193552", + text = "tk_short_control_console.m2", + value = "tk_short_control_console.m2", + }, + { + fileId = "193553", + text = "tk_tall_control_console.m2", + value = "tk_tall_control_console.m2", + }, + }, + text = "control_console", + value = "control_console", + }, + { + children = { + { + fileId = "193558", + text = "tk_exterior_crystals.m2", + value = "tk_exterior_crystals.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "193564", + text = "tk_factory_door.m2", + value = "tk_factory_door.m2", + }, + { + fileId = "193565", + text = "tk_factory_door_vert.m2", + value = "tk_factory_door_vert.m2", + }, + }, + text = "factory_door", + value = "factory_door", + }, + { + children = { + { + fileId = "193566", + text = "kael_explode_fx_left.m2", + value = "kael_explode_fx_left.m2", + }, + { + fileId = "193567", + text = "kael_explode_fx_right.m2", + value = "kael_explode_fx_right.m2", + }, + }, + text = "kael_statue", + value = "kael_statue", + }, + { + children = { + { + fileId = "193569", + text = "tk_raid_door.m2", + value = "tk_raid_door.m2", + }, + }, + text = "raid_door", + value = "raid_door", + }, + { + children = { + { + fileId = "193572", + text = "tk_raid_windows_tall.m2", + value = "tk_raid_windows_tall.m2", + }, + }, + text = "raid_windows", + value = "raid_windows", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "193573", + text = "tk_bridge_graphics.m2", + value = "tk_bridge_graphics.m2", + }, + { + fileId = "193574", + text = "tk_bridge_graphics2.m2", + value = "tk_bridge_graphics2.m2", + }, + }, + text = "bridges", + value = "bridges", + }, + { + children = { + { + fileId = "193577", + text = "tk_container_01.m2", + value = "tk_container_01.m2", + }, + { + fileId = "193578", + text = "tk_container_02.m2", + value = "tk_container_02.m2", + }, + }, + text = "container", + value = "container", + }, + { + children = { + { + fileId = "193585", + text = "tk_exterior_crystals_bottom.m2", + value = "tk_exterior_crystals_bottom.m2", + }, + { + fileId = "193586", + text = "tk_exterior_crystals_top.m2", + value = "tk_exterior_crystals_top.m2", + }, + { + fileId = "193587", + text = "tk_smallwing_arcane_crystals_bottom.m2", + value = "tk_smallwing_arcane_crystals_bottom.m2", + }, + { + fileId = "193588", + text = "tk_smallwing_arcane_crystals_top.m2", + value = "tk_smallwing_arcane_crystals_top.m2", + }, + { + fileId = "193589", + text = "tk_smallwing_crystals.m2", + value = "tk_smallwing_crystals.m2", + }, + { + fileId = "193590", + text = "tk_smallwing_crystals_bottom.m2", + value = "tk_smallwing_crystals_bottom.m2", + }, + { + fileId = "193591", + text = "tk_smallwing_crystals_top.m2", + value = "tk_smallwing_crystals_top.m2", + }, + { + fileId = "193592", + text = "tk_smallwing_factory_crystals_bottom.m2", + value = "tk_smallwing_factory_crystals_bottom.m2", + }, + { + fileId = "193593", + text = "tk_smallwing_factory_crystals_top.m2", + value = "tk_smallwing_factory_crystals_top.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "193595", + text = "tk_energy_exhaust_01.m2", + value = "tk_energy_exhaust_01.m2", + }, + { + fileId = "193596", + text = "tk_forcefield_atrium_outline.m2", + value = "tk_forcefield_atrium_outline.m2", + }, + { + fileId = "193597", + text = "tk_forcefield_entry_outline.m2", + value = "tk_forcefield_entry_outline.m2", + }, + { + fileId = "193598", + text = "tk_forcefield_outline.m2", + value = "tk_forcefield_outline.m2", + }, + }, + text = "forcefields", + value = "forcefields", + }, + { + children = { + { + fileId = "193605", + text = "tk_helix_floor_reflection.m2", + value = "tk_helix_floor_reflection.m2", + }, + { + fileId = "193606", + text = "tk_main_bridge_reflection.m2", + value = "tk_main_bridge_reflection.m2", + }, + { + fileId = "193607", + text = "tk_ramp_reflection.m2", + value = "tk_ramp_reflection.m2", + }, + }, + text = "prisonbridges", + value = "prisonbridges", + }, + { + children = { + { + fileId = "193614", + text = "tk_prison_cell_dark.m2", + value = "tk_prison_cell_dark.m2", + }, + { + fileId = "193615", + text = "tk_prison_cell_illuminated.m2", + value = "tk_prison_cell_illuminated.m2", + }, + { + fileId = "193616", + text = "tk_prison_cell_toponly.m2", + value = "tk_prison_cell_toponly.m2", + }, + }, + text = "prisoncellglass", + value = "prisoncellglass", + }, + { + children = { + { + fileId = "193626", + text = "tk_lightning_ball.m2", + value = "tk_lightning_ball.m2", + }, + { + fileId = "193627", + text = "tk_lightning_diagonal.m2", + value = "tk_lightning_diagonal.m2", + }, + { + fileId = "193628", + text = "tk_lightning_diagonal_ball.m2", + value = "tk_lightning_diagonal_ball.m2", + }, + { + fileId = "193629", + text = "tk_lightning_fx_3_sides_room.m2", + value = "tk_lightning_fx_3_sides_room.m2", + }, + { + fileId = "193630", + text = "tk_lightning_fx_helix_room.m2", + value = "tk_lightning_fx_helix_room.m2", + }, + { + fileId = "193631", + text = "tk_lightning_fx_tri_room.m2", + value = "tk_lightning_fx_tri_room.m2", + }, + { + fileId = "193632", + text = "tk_lightning_horizontal.m2", + value = "tk_lightning_horizontal.m2", + }, + { + fileId = "193633", + text = "tk_prison_fx.m2", + value = "tk_prison_fx.m2", + }, + }, + text = "prisonfx", + value = "prisonfx", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "tempestkeep", + value = "tempestkeep", + }, + { + children = { + { + children = { + { + fileId = "193634", + text = "be_arcanebomb.m2", + value = "be_arcanebomb.m2", + }, + { + fileId = "193639", + text = "be_arcanebomb_orb.m2", + value = "be_arcanebomb_orb.m2", + }, + }, + text = "bomb", + value = "bomb", + }, + { + children = { + { + fileId = "193645", + text = "terokkar_bonepile01.m2", + value = "terokkar_bonepile01.m2", + }, + { + fileId = "193646", + text = "terokkar_bonepile02.m2", + value = "terokkar_bonepile02.m2", + }, + }, + text = "bonepile", + value = "bonepile", + }, + { + children = { + { + fileId = "193648", + text = "chokeberrybush.m2", + value = "chokeberrybush.m2", + }, + { + fileId = "193650", + text = "terokkarbush01.m2", + value = "terokkarbush01.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "193653", + text = "terokkarcrystal01.m2", + value = "terokkarcrystal01.m2", + }, + { + fileId = "193654", + text = "terokkarcrystal02.m2", + value = "terokkarcrystal02.m2", + }, + { + fileId = "193655", + text = "terokkarcrystal03.m2", + value = "terokkarcrystal03.m2", + }, + }, + text = "crystal", + value = "crystal", + }, + { + children = { + { + fileId = "193659", + text = "terokkar_lightray01.m2", + value = "terokkar_lightray01.m2", + }, + { + fileId = "193660", + text = "terokkar_lightray02.m2", + value = "terokkar_lightray02.m2", + }, + }, + text = "lightray", + value = "lightray", + }, + { + children = { + { + fileId = "193663", + text = "terokkarpinecone.m2", + value = "terokkarpinecone.m2", + }, + }, + text = "pinecone", + value = "pinecone", + }, + { + children = { + { + fileId = "193666", + text = "terokkar_floatingsmall01.m2", + value = "terokkar_floatingsmall01.m2", + }, + { + fileId = "193667", + text = "terokkar_floatingsmall02.m2", + value = "terokkar_floatingsmall02.m2", + }, + { + fileId = "193668", + text = "terokkar_overhangrock_large_01.m2", + value = "terokkar_overhangrock_large_01.m2", + }, + { + fileId = "193669", + text = "terokkar_overhangrock_large_02.m2", + value = "terokkar_overhangrock_large_02.m2", + }, + { + fileId = "193670", + text = "terokkar_overhangrock_small_01.m2", + value = "terokkar_overhangrock_small_01.m2", + }, + { + fileId = "193671", + text = "terokkar_overhangrock_small_02.m2", + value = "terokkar_overhangrock_small_02.m2", + }, + { + fileId = "193672", + text = "terokkar_overhangrock_small_03.m2", + value = "terokkar_overhangrock_small_03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "193674", + text = "terokkar_auch_ruin01.m2", + value = "terokkar_auch_ruin01.m2", + }, + { + fileId = "193675", + text = "terokkar_auch_ruin02.m2", + value = "terokkar_auch_ruin02.m2", + }, + { + fileId = "193676", + text = "terokkar_auch_ruin03.m2", + value = "terokkar_auch_ruin03.m2", + }, + { + fileId = "193677", + text = "terokkar_auch_ruin04.m2", + value = "terokkar_auch_ruin04.m2", + }, + { + fileId = "193678", + text = "terokkar_auch_ruin05.m2", + value = "terokkar_auch_ruin05.m2", + }, + { + fileId = "193679", + text = "terokkar_auch_ruin06.m2", + value = "terokkar_auch_ruin06.m2", + }, + { + fileId = "193680", + text = "terokkar_auch_ruin07.m2", + value = "terokkar_auch_ruin07.m2", + }, + { + fileId = "193681", + text = "terokkar_auch_ruin08.m2", + value = "terokkar_auch_ruin08.m2", + }, + { + fileId = "193682", + text = "terokkar_auch_ruin09.m2", + value = "terokkar_auch_ruin09.m2", + }, + { + fileId = "193683", + text = "terokkar_auch_ruin10.m2", + value = "terokkar_auch_ruin10.m2", + }, + }, + text = "ruin", + value = "ruin", + }, + { + children = { + { + fileId = "193686", + text = "terokkar_boneshrine_arch01.m2", + value = "terokkar_boneshrine_arch01.m2", + }, + { + fileId = "193687", + text = "terokkar_boneshrine_arch02.m2", + value = "terokkar_boneshrine_arch02.m2", + }, + }, + text = "shrine", + value = "shrine", + }, + { + children = { + { + fileId = "193688", + text = "terokkar_signpost_01.m2", + value = "terokkar_signpost_01.m2", + }, + { + fileId = "193689", + text = "terokkar_signpost_sign.m2", + value = "terokkar_signpost_sign.m2", + }, + }, + text = "signposts", + value = "signposts", + }, + { + children = { + { + fileId = "193691", + text = "terokkarfallentree.m2", + value = "terokkarfallentree.m2", + }, + { + fileId = "193692", + text = "terokkartreelarge.m2", + value = "terokkartreelarge.m2", + }, + { + fileId = "193693", + text = "terokkartreelargepinecones.m2", + value = "terokkartreelargepinecones.m2", + }, + { + fileId = "193694", + text = "terokkartreemedium.m2", + value = "terokkartreemedium.m2", + }, + { + fileId = "193695", + text = "terokkartreemediumpinecones.m2", + value = "terokkartreemediumpinecones.m2", + }, + { + fileId = "193696", + text = "terokkartreenoleaves01.m2", + value = "terokkartreenoleaves01.m2", + }, + { + fileId = "193697", + text = "terokkartreenoleaves02.m2", + value = "terokkartreenoleaves02.m2", + }, + { + fileId = "193698", + text = "terokkartreesapling.m2", + value = "terokkartreesapling.m2", + }, + { + fileId = "193699", + text = "terokkartreesmall.m2", + value = "terokkartreesmall.m2", + }, + { + fileId = "193700", + text = "terokkartreestump.m2", + value = "terokkartreestump.m2", + }, + { + fileId = "193701", + text = "terokkartreestump02.m2", + value = "terokkartreestump02.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "193710", + text = "terokkar_post_01.m2", + value = "terokkar_post_01.m2", + }, + { + fileId = "193711", + text = "terokkar_post_ruin_01.m2", + value = "terokkar_post_ruin_01.m2", + }, + { + fileId = "193712", + text = "terokkar_wall_01.m2", + value = "terokkar_wall_01.m2", + }, + { + fileId = "193713", + text = "terokkar_wall_ruin_01.m2", + value = "terokkar_wall_ruin_01.m2", + }, + }, + text = "walls", + value = "walls", + }, + { + children = { + { + fileId = "193719", + text = "terokkarweb01.m2", + value = "terokkarweb01.m2", + }, + { + fileId = "193720", + text = "terokkarweb02.m2", + value = "terokkarweb02.m2", + }, + { + fileId = "193721", + text = "terokkarweb03.m2", + value = "terokkarweb03.m2", + }, + { + fileId = "193722", + text = "terokkarweb04.m2", + value = "terokkarweb04.m2", + }, + }, + text = "webs", + value = "webs", + }, + }, + text = "terokkar", + value = "terokkar", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "193727", + text = "exodar_long_banner.m2", + value = "exodar_long_banner.m2", + }, + { + fileId = "193728", + text = "exodar_long_banner_anim.m2", + value = "exodar_long_banner_anim.m2", + }, + { + fileId = "193729", + text = "exodar_medium_banner.m2", + value = "exodar_medium_banner.m2", + }, + { + fileId = "193730", + text = "exodar_medium_banner_anim.m2", + value = "exodar_medium_banner_anim.m2", + }, + { + fileId = "193731", + text = "exodar_medium_hang_banner.m2", + value = "exodar_medium_hang_banner.m2", + }, + { + fileId = "193732", + text = "exodar_medium_hang_banner_anim.m2", + value = "exodar_medium_hang_banner_anim.m2", + }, + { + fileId = "193733", + text = "exodar_medium_hang_banner_anim_type2.m2", + value = "exodar_medium_hang_banner_anim_type2.m2", + }, + { + fileId = "193734", + text = "exodar_thin2_hang_banner.m2", + value = "exodar_thin2_hang_banner.m2", + }, + { + fileId = "193735", + text = "exodar_thin_banner.m2", + value = "exodar_thin_banner.m2", + }, + { + fileId = "193736", + text = "exodar_thin_banner_anim.m2", + value = "exodar_thin_banner_anim.m2", + }, + { + fileId = "193737", + text = "exodar_thin_hang_banner.m2", + value = "exodar_thin_hang_banner.m2", + }, + { + fileId = "193738", + text = "exodar_thin_hang_banner_anim.m2", + value = "exodar_thin_hang_banner_anim.m2", + }, + { + fileId = "193739", + text = "exodar_thin_hang_banner_animtype2.m2", + value = "exodar_thin_hang_banner_animtype2.m2", + }, + { + fileId = "193740", + text = "exodar_thin_hang_banner_animtype3.m2", + value = "exodar_thin_hang_banner_animtype3.m2", + }, + { + fileId = "193741", + text = "exodar_tri_banner_blue.m2", + value = "exodar_tri_banner_blue.m2", + }, + { + fileId = "193742", + text = "exodar_tri_banner_red.m2", + value = "exodar_tri_banner_red.m2", + }, + { + fileId = "193743", + text = "exodar_tri_banner_s_blue.m2", + value = "exodar_tri_banner_s_blue.m2", + }, + { + fileId = "193744", + text = "exodar_tri_banner_s_red.m2", + value = "exodar_tri_banner_s_red.m2", + }, + { + fileId = "193745", + text = "exodar_wide_banner.m2", + value = "exodar_wide_banner.m2", + }, + { + fileId = "193746", + text = "exodar_wide_banner_anim.m2", + value = "exodar_wide_banner_anim.m2", + }, + { + fileId = "193747", + text = "exodar_wide_hang_banner.m2", + value = "exodar_wide_hang_banner.m2", + }, + { + fileId = "193748", + text = "exodar_wide_hang_banner_anim.m2", + value = "exodar_wide_hang_banner_anim.m2", + }, + { + fileId = "193749", + text = "exodar_wide_hang_banner_anim_type2.m2", + value = "exodar_wide_hang_banner_anim_type2.m2", + }, + { + fileId = "193750", + text = "exodar_wide_hang_banner_anim_type3.m2", + value = "exodar_wide_hang_banner_anim_type3.m2", + }, + }, + text = "clothobjects", + value = "clothobjects", + }, + { + children = { + { + fileId = "193754", + text = "crystal_corrupted.m2", + value = "crystal_corrupted.m2", + }, + { + fileId = "193756", + text = "narru_crystal_pot.m2", + value = "narru_crystal_pot.m2", + }, + { + fileId = "193757", + text = "narru_crystal_pure.m2", + value = "narru_crystal_pure.m2", + }, + }, + text = "crystal", + value = "crystal", + }, + { + children = { + { + fileId = "193760", + text = "exodar_center_naaru_crystals.m2", + value = "exodar_center_naaru_crystals.m2", + }, + { + fileId = "193761", + text = "exodar_crystal_chandelier.m2", + value = "exodar_crystal_chandelier.m2", + }, + { + fileId = "193762", + text = "exodar_crystal_large.m2", + value = "exodar_crystal_large.m2", + }, + { + fileId = "193763", + text = "exodar_crystal_large_yelllow.m2", + value = "exodar_crystal_large_yelllow.m2", + }, + { + fileId = "193764", + text = "exodar_crystal_thin.m2", + value = "exodar_crystal_thin.m2", + }, + { + fileId = "193765", + text = "exodar_crystal_thin_type2.m2", + value = "exodar_crystal_thin_type2.m2", + }, + { + fileId = "193766", + text = "exodar_crystal_thin_yellow.m2", + value = "exodar_crystal_thin_yellow.m2", + }, + { + fileId = "193767", + text = "exodar_crystal_yellow_bunch.m2", + value = "exodar_crystal_yellow_bunch.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "193780", + text = "exodar_sconce.m2", + value = "exodar_sconce.m2", + }, + { + fileId = "193781", + text = "exodar_sconce_blue.m2", + value = "exodar_sconce_blue.m2", + }, + { + fileId = "193782", + text = "exodar_sconce_magenta.m2", + value = "exodar_sconce_magenta.m2", + }, + }, + text = "light_sconces", + value = "light_sconces", + }, + { + children = { + { + fileId = "193789", + text = "exodar_narucore_fx.m2", + value = "exodar_narucore_fx.m2", + }, + }, + text = "naaru_core", + value = "naaru_core", + }, + { + children = { + { + fileId = "193800", + text = "exodar_paladin_shrine_energyfx.m2", + value = "exodar_paladin_shrine_energyfx.m2", + }, + }, + text = "paladin_energy_fx", + value = "paladin_energy_fx", + }, + { + children = { + { + fileId = "193805", + text = "draenei_shamen_stones_t1.m2", + value = "draenei_shamen_stones_t1.m2", + }, + { + fileId = "193806", + text = "draenei_shamen_stones_t1_broken.m2", + value = "draenei_shamen_stones_t1_broken.m2", + }, + { + fileId = "193807", + text = "draenei_shamen_stones_t2.m2", + value = "draenei_shamen_stones_t2.m2", + }, + { + fileId = "193808", + text = "draenei_shamen_stones_yellow_t1.m2", + value = "draenei_shamen_stones_yellow_t1.m2", + }, + { + fileId = "193809", + text = "draenei_shamen_stones_yellow_t1_broken.m2", + value = "draenei_shamen_stones_yellow_t1_broken.m2", + }, + { + fileId = "193810", + text = "draenei_shamen_stones_yellow_t2.m2", + value = "draenei_shamen_stones_yellow_t2.m2", + }, + }, + text = "shamen_stones", + value = "shamen_stones", + }, + { + children = { + { + fileId = "193823", + text = "exodar_cheese_sign.m2", + value = "exodar_cheese_sign.m2", + }, + { + fileId = "193824", + text = "exodar_herbalism_sign.m2", + value = "exodar_herbalism_sign.m2", + }, + { + fileId = "193825", + text = "exodar_hunter_sign.m2", + value = "exodar_hunter_sign.m2", + }, + { + fileId = "193826", + text = "exodar_inn_sign.m2", + value = "exodar_inn_sign.m2", + }, + { + fileId = "193828", + text = "exodar_smith_sign.m2", + value = "exodar_smith_sign.m2", + }, + { + fileId = "193829", + text = "exodar_warrior_sign.m2", + value = "exodar_warrior_sign.m2", + }, + }, + text = "signs", + value = "signs", + }, + { + children = { + { + fileId = "193841", + text = "exodar_sky_portal.m2", + value = "exodar_sky_portal.m2", + }, + }, + text = "sky_portal", + value = "sky_portal", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "theexodar", + value = "theexodar", + }, + { + children = { + { + children = { + { + fileId = "193845", + text = "zangargrass01.m2", + value = "zangargrass01.m2", + }, + { + fileId = "193846", + text = "zangargrass01_husk.m2", + value = "zangargrass01_husk.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + fileId = "193856", + text = "zangarmarsh_floatingspore01.m2", + value = "zangarmarsh_floatingspore01.m2", + }, + { + fileId = "193857", + text = "zangarmarsh_floatingspore02.m2", + value = "zangarmarsh_floatingspore02.m2", + }, + { + fileId = "193858", + text = "zm_big_spore_01.m2", + value = "zm_big_spore_01.m2", + }, + { + fileId = "193859", + text = "zm_big_spore_02.m2", + value = "zm_big_spore_02.m2", + }, + { + fileId = "193860", + text = "zm_big_spore_03.m2", + value = "zm_big_spore_03.m2", + }, + { + fileId = "193861", + text = "zm_big_spore_anim_01.m2", + value = "zm_big_spore_anim_01.m2", + }, + { + fileId = "193862", + text = "zm_big_spore_anim_02.m2", + value = "zm_big_spore_anim_02.m2", + }, + { + fileId = "193863", + text = "zm_big_spore_anim_03.m2", + value = "zm_big_spore_anim_03.m2", + }, + }, + text = "floatingspore", + value = "floatingspore", + }, + { + children = { + { + fileId = "193865", + text = "zangarfogring01.m2", + value = "zangarfogring01.m2", + }, + }, + text = "fog", + value = "fog", + }, + { + children = { + { + fileId = "193876", + text = "zangarfountain01.m2", + value = "zangarfountain01.m2", + }, + }, + text = "fountain", + value = "fountain", + }, + { + children = { + { + fileId = "193878", + text = "zangarlamppost01.m2", + value = "zangarlamppost01.m2", + }, + }, + text = "lamp", + value = "lamp", + }, + { + children = { + { + fileId = "193882", + text = "zangarlilypad01.m2", + value = "zangarlilypad01.m2", + }, + { + fileId = "193886", + text = "zangarlilypad02.m2", + value = "zangarlilypad02.m2", + }, + { + fileId = "193887", + text = "zangarlilypad03.m2", + value = "zangarlilypad03.m2", + }, + { + fileId = "193888", + text = "zangarlilypad04.m2", + value = "zangarlilypad04.m2", + }, + { + fileId = "193889", + text = "zangarlilypad05.m2", + value = "zangarlilypad05.m2", + }, + { + fileId = "193890", + text = "zangarlilypad06.m2", + value = "zangarlilypad06.m2", + }, + }, + text = "lilypads", + value = "lilypads", + }, + { + children = { + { + fileId = "193892", + text = "zangarlog01.m2", + value = "zangarlog01.m2", + }, + { + fileId = "193894", + text = "zangarlog02.m2", + value = "zangarlog02.m2", + }, + }, + text = "logs", + value = "logs", + }, + { + children = { + { + fileId = "193897", + text = "lo_well_01.m2", + value = "lo_well_01.m2", + }, + }, + text = "lostones", + value = "lostones", + }, + { + children = { + { + fileId = "193909", + text = "zangarfallenshroom01.m2", + value = "zangarfallenshroom01.m2", + }, + { + fileId = "193910", + text = "zangarfallenshroom02.m2", + value = "zangarfallenshroom02.m2", + }, + { + fileId = "193911", + text = "zangarmushroom01.m2", + value = "zangarmushroom01.m2", + }, + { + fileId = "193912", + text = "zangarmushroom02.m2", + value = "zangarmushroom02.m2", + }, + { + fileId = "193914", + text = "zangarmushroom03.m2", + value = "zangarmushroom03.m2", + }, + { + fileId = "193915", + text = "zangarmushroom04.m2", + value = "zangarmushroom04.m2", + }, + { + fileId = "193917", + text = "zangarmushroom05.m2", + value = "zangarmushroom05.m2", + }, + { + fileId = "193918", + text = "zangarmushroom06_blue.m2", + value = "zangarmushroom06_blue.m2", + }, + { + fileId = "193919", + text = "zangarmushroom06_green.m2", + value = "zangarmushroom06_green.m2", + }, + { + fileId = "193920", + text = "zangarmushroom06_orange.m2", + value = "zangarmushroom06_orange.m2", + }, + { + fileId = "193921", + text = "zangarmushroom07_blue.m2", + value = "zangarmushroom07_blue.m2", + }, + { + fileId = "193922", + text = "zangarmushroom07_green.m2", + value = "zangarmushroom07_green.m2", + }, + { + fileId = "193923", + text = "zangarmushroom07_orange.m2", + value = "zangarmushroom07_orange.m2", + }, + { + fileId = "193924", + text = "zangarmushroomblue.m2", + value = "zangarmushroomblue.m2", + }, + { + fileId = "193925", + text = "zangarmushroomgreen.m2", + value = "zangarmushroomgreen.m2", + }, + { + fileId = "193926", + text = "zangarmushroompurple.m2", + value = "zangarmushroompurple.m2", + }, + { + fileId = "193932", + text = "zangarmushroomshelf01.m2", + value = "zangarmushroomshelf01.m2", + }, + { + fileId = "193933", + text = "zangarmushroomshelf02.m2", + value = "zangarmushroomshelf02.m2", + }, + { + fileId = "193934", + text = "zangarmushroomshelf03.m2", + value = "zangarmushroomshelf03.m2", + }, + { + fileId = "193936", + text = "zangarmushroomtree05.m2", + value = "zangarmushroomtree05.m2", + }, + { + fileId = "193937", + text = "zangarmushroomtree06.m2", + value = "zangarmushroomtree06.m2", + }, + { + fileId = "193938", + text = "zangarmushroomtree07.m2", + value = "zangarmushroomtree07.m2", + }, + { + fileId = "193940", + text = "zangarmushroomtree08dead.m2", + value = "zangarmushroomtree08dead.m2", + }, + { + fileId = "193942", + text = "zangarmushroomtree09dying.m2", + value = "zangarmushroomtree09dying.m2", + }, + { + fileId = "193944", + text = "zangarmushroomtreesmall01.m2", + value = "zangarmushroomtreesmall01.m2", + }, + { + fileId = "193945", + text = "zangarmushroomtreesmall02.m2", + value = "zangarmushroomtreesmall02.m2", + }, + { + fileId = "193946", + text = "zangarmushroomtreesmall03.m2", + value = "zangarmushroomtreesmall03.m2", + }, + { + fileId = "193947", + text = "zangarmushroomwater01.m2", + value = "zangarmushroomwater01.m2", + }, + { + fileId = "193948", + text = "zangarmushroomwater02.m2", + value = "zangarmushroomwater02.m2", + }, + { + fileId = "193949", + text = "zangarmushroomwater03.m2", + value = "zangarmushroomwater03.m2", + }, + { + fileId = "193950", + text = "zangartreesmallblue.m2", + value = "zangartreesmallblue.m2", + }, + { + fileId = "193951", + text = "zangartreesmallblue01.m2", + value = "zangartreesmallblue01.m2", + }, + { + fileId = "193952", + text = "zangartreesmallgreen.m2", + value = "zangartreesmallgreen.m2", + }, + { + fileId = "193953", + text = "zangartreesmallgreen01.m2", + value = "zangartreesmallgreen01.m2", + }, + { + fileId = "193954", + text = "zangartreesmallpurple.m2", + value = "zangartreesmallpurple.m2", + }, + { + fileId = "193955", + text = "zangartreesmallpurple01.m2", + value = "zangartreesmallpurple01.m2", + }, + }, + text = "mushroom", + value = "mushroom", + }, + { + children = { + { + fileId = "193956", + text = "mushroombase_beacon.m2", + value = "mushroombase_beacon.m2", + }, + { + fileId = "193957", + text = "mushroombase_bottom.m2", + value = "mushroombase_bottom.m2", + }, + { + fileId = "193958", + text = "mushroombase_elevator.m2", + value = "mushroombase_elevator.m2", + }, + }, + text = "mushroombase", + value = "mushroombase", + }, + { + children = { + { + fileId = "193962", + text = "zangarbushwithered01.m2", + value = "zangarbushwithered01.m2", + }, + { + fileId = "193963", + text = "zangarbushwithered02.m2", + value = "zangarbushwithered02.m2", + }, + { + fileId = "193970", + text = "zangarmushroomtree01.m2", + value = "zangarmushroomtree01.m2", + }, + { + fileId = "193971", + text = "zangarmushroomtree02.m2", + value = "zangarmushroomtree02.m2", + }, + { + fileId = "193972", + text = "zangarmushroomtree03.m2", + value = "zangarmushroomtree03.m2", + }, + { + fileId = "193973", + text = "zangarmushroomtree04.m2", + value = "zangarmushroomtree04.m2", + }, + { + fileId = "193978", + text = "zangartreeblue01.m2", + value = "zangartreeblue01.m2", + }, + { + fileId = "193979", + text = "zangartreeblue02.m2", + value = "zangartreeblue02.m2", + }, + { + fileId = "193980", + text = "zangartreeblue03.m2", + value = "zangartreeblue03.m2", + }, + { + fileId = "193981", + text = "zangartreeblue04.m2", + value = "zangartreeblue04.m2", + }, + { + fileId = "193982", + text = "zangartreegreen01.m2", + value = "zangartreegreen01.m2", + }, + { + fileId = "193983", + text = "zangartreegreen02.m2", + value = "zangartreegreen02.m2", + }, + { + fileId = "193984", + text = "zangartreegreen03.m2", + value = "zangartreegreen03.m2", + }, + { + fileId = "193985", + text = "zangartreegreen04.m2", + value = "zangartreegreen04.m2", + }, + { + fileId = "193986", + text = "zangartreepurple01.m2", + value = "zangartreepurple01.m2", + }, + { + fileId = "193987", + text = "zangartreepurple02.m2", + value = "zangartreepurple02.m2", + }, + { + fileId = "193988", + text = "zangartreepurple03.m2", + value = "zangartreepurple03.m2", + }, + { + fileId = "193989", + text = "zangartreepurple04.m2", + value = "zangartreepurple04.m2", + }, + { + fileId = "193990", + text = "zangartreewithered01.m2", + value = "zangartreewithered01.m2", + }, + { + fileId = "193991", + text = "zangartreewithered02.m2", + value = "zangartreewithered02.m2", + }, + { + fileId = "193992", + text = "zangartreewithered03.m2", + value = "zangartreewithered03.m2", + }, + { + fileId = "193993", + text = "zangartreewithered04.m2", + value = "zangartreewithered04.m2", + }, + { + fileId = "193994", + text = "zangartreewithered05.m2", + value = "zangartreewithered05.m2", + }, + }, + text = "mushroomtrees", + value = "mushroomtrees", + }, + { + children = { + { + fileId = "193995", + text = "zangarplantgroup01.m2", + value = "zangarplantgroup01.m2", + }, + { + fileId = "193996", + text = "zangarplantgroup02.m2", + value = "zangarplantgroup02.m2", + }, + { + fileId = "193997", + text = "zangarplantgroup03.m2", + value = "zangarplantgroup03.m2", + }, + { + fileId = "193998", + text = "zangarplantgroup04.m2", + value = "zangarplantgroup04.m2", + }, + { + fileId = "193999", + text = "zangarplantgroup05.m2", + value = "zangarplantgroup05.m2", + }, + }, + text = "plantgroups", + value = "plantgroups", + }, + { + children = { + { + fileId = "194001", + text = "zm_bluepollen.m2", + value = "zm_bluepollen.m2", + }, + { + fileId = "194002", + text = "zm_orangepollen.m2", + value = "zm_orangepollen.m2", + }, + }, + text = "pollen", + value = "pollen", + }, + { + children = { + { + fileId = "194003", + text = "zangarwalkway01.m2", + value = "zangarwalkway01.m2", + }, + { + fileId = "194004", + text = "zangarwalkway02.m2", + value = "zangarwalkway02.m2", + }, + { + fileId = "194005", + text = "zangarwalkway03.m2", + value = "zangarwalkway03.m2", + }, + { + fileId = "194006", + text = "zangarwalkway_board.m2", + value = "zangarwalkway_board.m2", + }, + { + fileId = "194007", + text = "zangarwalkway_pole.m2", + value = "zangarwalkway_pole.m2", + }, + { + fileId = "194008", + text = "zangarwalkway_wide01.m2", + value = "zangarwalkway_wide01.m2", + }, + { + fileId = "194009", + text = "zangarwalkway_wide02.m2", + value = "zangarwalkway_wide02.m2", + }, + { + fileId = "194010", + text = "zangarwalkway_wide03.m2", + value = "zangarwalkway_wide03.m2", + }, + { + fileId = "194011", + text = "zangarwalkway_wide04.m2", + value = "zangarwalkway_wide04.m2", + }, + { + fileId = "194012", + text = "zangarwalkwayend01.m2", + value = "zangarwalkwayend01.m2", + }, + { + fileId = "194013", + text = "zangarwalkwayend02.m2", + value = "zangarwalkwayend02.m2", + }, + }, + text = "road", + value = "road", + }, + { + children = { + { + fileId = "194015", + text = "dirtmound_zangar.m2", + value = "dirtmound_zangar.m2", + }, + { + fileId = "194017", + text = "zangar_floatingsmall01.m2", + value = "zangar_floatingsmall01.m2", + }, + { + fileId = "194018", + text = "zangar_floatingsmall02.m2", + value = "zangar_floatingsmall02.m2", + }, + { + fileId = "194019", + text = "zangar_overhangrock_large_01.m2", + value = "zangar_overhangrock_large_01.m2", + }, + { + fileId = "194020", + text = "zangar_overhangrock_large_02.m2", + value = "zangar_overhangrock_large_02.m2", + }, + { + fileId = "194021", + text = "zangar_overhangrock_small_01.m2", + value = "zangar_overhangrock_small_01.m2", + }, + { + fileId = "194022", + text = "zangar_overhangrock_small_02.m2", + value = "zangar_overhangrock_small_02.m2", + }, + { + fileId = "194023", + text = "zangar_overhangrock_small_03.m2", + value = "zangar_overhangrock_small_03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "194025", + text = "zangarsignpost01.m2", + value = "zangarsignpost01.m2", + }, + { + fileId = "194026", + text = "zangarsignpostpointer01.m2", + value = "zangarsignpostpointer01.m2", + }, + }, + text = "signposts", + value = "signposts", + }, + { + children = { + { + fileId = "194028", + text = "zangarshroomstump01.m2", + value = "zangarshroomstump01.m2", + }, + { + fileId = "194030", + text = "zangarshroomstump02.m2", + value = "zangarshroomstump02.m2", + }, + { + fileId = "194032", + text = "zangarshroomstump03.m2", + value = "zangarshroomstump03.m2", + }, + }, + text = "stump", + value = "stump", + }, + }, + text = "zangar", + value = "zangar", + }, + { + children = { + { + children = { + { + fileId = "194044", + text = "zulaman_entrancegate.m2", + value = "zulaman_entrancegate.m2", + }, + { + fileId = "194045", + text = "zulaman_firedoor.m2", + value = "zulaman_firedoor.m2", + }, + { + fileId = "194046", + text = "zulaman_lynxgate.m2", + value = "zulaman_lynxgate.m2", + }, + { + fileId = "194047", + text = "zulaman_torchfire.m2", + value = "zulaman_torchfire.m2", + }, + { + fileId = "194048", + text = "zulaman_winddoor.m2", + value = "zulaman_winddoor.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "194050", + text = "foresttrolldungeonfountain.m2", + value = "foresttrolldungeonfountain.m2", + }, + }, + text = "fountain", + value = "fountain", + }, + { + children = { + { + fileId = "194052", + text = "eaglegargoyle.m2", + value = "eaglegargoyle.m2", + }, + }, + text = "gargoyle", + value = "gargoyle", + }, + { + children = { + { + fileId = "194054", + text = "foresttrolldungeongong.m2", + value = "foresttrolldungeongong.m2", + }, + }, + text = "gong", + value = "gong", + }, + { + children = { + { + fileId = "194057", + text = "trollruins_zulaman_01.m2", + value = "trollruins_zulaman_01.m2", + }, + { + fileId = "194058", + text = "trollruins_zulaman_02.m2", + value = "trollruins_zulaman_02.m2", + }, + { + fileId = "194059", + text = "trollruins_zulaman_03.m2", + value = "trollruins_zulaman_03.m2", + }, + { + fileId = "194060", + text = "trollruins_zulaman_04.m2", + value = "trollruins_zulaman_04.m2", + }, + { + fileId = "194061", + text = "trollruins_zulaman_05.m2", + value = "trollruins_zulaman_05.m2", + }, + { + fileId = "194062", + text = "trollruins_zulaman_06.m2", + value = "trollruins_zulaman_06.m2", + }, + { + fileId = "194063", + text = "trollruins_zulaman_07.m2", + value = "trollruins_zulaman_07.m2", + }, + { + fileId = "194064", + text = "trollruins_zulaman_08.m2", + value = "trollruins_zulaman_08.m2", + }, + { + fileId = "194065", + text = "trollruins_zulaman_09.m2", + value = "trollruins_zulaman_09.m2", + }, + { + fileId = "194066", + text = "trollruins_zulaman_10.m2", + value = "trollruins_zulaman_10.m2", + }, + { + fileId = "194067", + text = "trollruins_zulaman_11.m2", + value = "trollruins_zulaman_11.m2", + }, + { + fileId = "194068", + text = "trollruins_zulaman_12.m2", + value = "trollruins_zulaman_12.m2", + }, + { + fileId = "194069", + text = "trollruins_zulaman_14.m2", + value = "trollruins_zulaman_14.m2", + }, + { + fileId = "194070", + text = "trollruins_zulaman_15.m2", + value = "trollruins_zulaman_15.m2", + }, + { + fileId = "194071", + text = "trollruins_zulaman_16.m2", + value = "trollruins_zulaman_16.m2", + }, + { + fileId = "194072", + text = "trollruins_zulaman_17.m2", + value = "trollruins_zulaman_17.m2", + }, + { + fileId = "194073", + text = "trollruins_zulaman_18.m2", + value = "trollruins_zulaman_18.m2", + }, + { + fileId = "194074", + text = "trollruins_zulaman_20.m2", + value = "trollruins_zulaman_20.m2", + }, + { + fileId = "194075", + text = "trollruins_zulaman_21.m2", + value = "trollruins_zulaman_21.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "194083", + text = "eaglestatue01.m2", + value = "eaglestatue01.m2", + }, + }, + text = "statues", + value = "statues", + }, + { + children = { + { + fileId = "194086", + text = "foresttrolltablet.m2", + value = "foresttrolltablet.m2", + }, + }, + text = "tablet", + value = "tablet", + }, + { + children = { + { + fileId = "194087", + text = "eaglethrone01.m2", + value = "eaglethrone01.m2", + }, + }, + text = "throne", + value = "throne", + }, + { + children = { + { + fileId = "194088", + text = "trollskulltiki.m2", + value = "trollskulltiki.m2", + }, + }, + text = "tiki", + value = "tiki", + }, + { + children = { + { + fileId = "194097", + text = "zulamantree01.m2", + value = "zulamantree01.m2", + }, + { + fileId = "194098", + text = "zulamantree02.m2", + value = "zulamantree02.m2", + }, + { + fileId = "194099", + text = "zulamantree03.m2", + value = "zulamantree03.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "194100", + text = "foresttrolldungeonbasinwall.m2", + value = "foresttrolldungeonbasinwall.m2", + }, + }, + text = "wall", + value = "wall", + }, + { + children = { + { + fileId = "194105", + text = "zulamanwaterfalls.m2", + value = "zulamanwaterfalls.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + }, + text = "zulaman", + value = "zulaman", + }, + }, + text = "doodads", + value = "doodads", + }, + }, + text = "expansion01", + value = "expansion01", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "242735", + text = "azjol_arch_a.m2", + value = "azjol_arch_a.m2", + }, + { + fileId = "242736", + text = "azjol_arch_a_closed.m2", + value = "azjol_arch_a_closed.m2", + }, + { + fileId = "242737", + text = "azjol_arch_b.m2", + value = "azjol_arch_b.m2", + }, + { + fileId = "242738", + text = "azjol_arch_b_closed.m2", + value = "azjol_arch_b_closed.m2", + }, + { + fileId = "242739", + text = "azjol_arch_corner.m2", + value = "azjol_arch_corner.m2", + }, + { + fileId = "242740", + text = "azjol_arch_corner_b.m2", + value = "azjol_arch_corner_b.m2", + }, + { + fileId = "242741", + text = "azjol_arch_corner_b_closed.m2", + value = "azjol_arch_corner_b_closed.m2", + }, + { + fileId = "242742", + text = "azjol_arch_corner_closed.m2", + value = "azjol_arch_corner_closed.m2", + }, + { + fileId = "194106", + text = "azjol_bigarchhalf01.m2", + value = "azjol_bigarchhalf01.m2", + }, + { + fileId = "194107", + text = "azjol_spiderarch01.m2", + value = "azjol_spiderarch01.m2", + }, + { + fileId = "242743", + text = "azjol_wall_arch.m2", + value = "azjol_wall_arch.m2", + }, + { + fileId = "242744", + text = "azjol_wall_arch_closed.m2", + value = "azjol_wall_arch_closed.m2", + }, + { + fileId = "242745", + text = "azjol_wall_arch_window.m2", + value = "azjol_wall_arch_window.m2", + }, + }, + text = "arches", + value = "arches", + }, + { + fileId = "194108", + text = "azjol_arch01.m2", + value = "azjol_arch01.m2", + }, + { + fileId = "194109", + text = "azjol_arch02.m2", + value = "azjol_arch02.m2", + }, + { + fileId = "242749", + text = "azjol_banner_01.m2", + value = "azjol_banner_01.m2", + }, + { + fileId = "242751", + text = "azjol_banner_02.m2", + value = "azjol_banner_02.m2", + }, + { + fileId = "242753", + text = "azjol_banner_03.m2", + value = "azjol_banner_03.m2", + }, + { + fileId = "242755", + text = "azjol_banner_04.m2", + value = "azjol_banner_04.m2", + }, + { + fileId = "242756", + text = "azjol_banner_05.m2", + value = "azjol_banner_05.m2", + }, + { + fileId = "242757", + text = "azjol_brazier_01.m2", + value = "azjol_brazier_01.m2", + }, + { + fileId = "242758", + text = "azjol_brazier_02.m2", + value = "azjol_brazier_02.m2", + }, + { + fileId = "242759", + text = "azjol_brazier_03.m2", + value = "azjol_brazier_03.m2", + }, + { + fileId = "242760", + text = "azjol_brazier_04.m2", + value = "azjol_brazier_04.m2", + }, + { + fileId = "242761", + text = "azjol_brazier_05.m2", + value = "azjol_brazier_05.m2", + }, + { + fileId = "242762", + text = "azjol_brazier_06.m2", + value = "azjol_brazier_06.m2", + }, + { + fileId = "242764", + text = "azjol_chandelier_01.m2", + value = "azjol_chandelier_01.m2", + }, + { + fileId = "242765", + text = "azjol_chandelier_02.m2", + value = "azjol_chandelier_02.m2", + }, + { + fileId = "242766", + text = "azjol_circleplatform01.m2", + value = "azjol_circleplatform01.m2", + }, + { + fileId = "242767", + text = "azjol_circleplatform02.m2", + value = "azjol_circleplatform02.m2", + }, + { + fileId = "194110", + text = "azjol_cliff01.m2", + value = "azjol_cliff01.m2", + }, + { + fileId = "194111", + text = "azjol_cliff02.m2", + value = "azjol_cliff02.m2", + }, + { + fileId = "194112", + text = "azjol_cliff03.m2", + value = "azjol_cliff03.m2", + }, + { + fileId = "194113", + text = "azjol_cliff04.m2", + value = "azjol_cliff04.m2", + }, + { + fileId = "242768", + text = "azjol_console_01.m2", + value = "azjol_console_01.m2", + }, + { + fileId = "242770", + text = "azjol_door_boss_01.m2", + value = "azjol_door_boss_01.m2", + }, + { + fileId = "242771", + text = "azjol_door_boss_02.m2", + value = "azjol_door_boss_02.m2", + }, + { + fileId = "242772", + text = "azjol_door_boss_03.m2", + value = "azjol_door_boss_03.m2", + }, + { + fileId = "242773", + text = "azjol_door_large_01.m2", + value = "azjol_door_large_01.m2", + }, + { + fileId = "242774", + text = "azjol_door_small_01.m2", + value = "azjol_door_small_01.m2", + }, + { + fileId = "242775", + text = "azjol_ghostbats_01.m2", + value = "azjol_ghostbats_01.m2", + }, + { + fileId = "242776", + text = "azjol_giantmushroom01.m2", + value = "azjol_giantmushroom01.m2", + }, + { + fileId = "242777", + text = "azjol_giantmushroom02.m2", + value = "azjol_giantmushroom02.m2", + }, + { + fileId = "242778", + text = "azjol_giantmushroom03.m2", + value = "azjol_giantmushroom03.m2", + }, + { + fileId = "242780", + text = "azjol_glow_worms_01.m2", + value = "azjol_glow_worms_01.m2", + }, + { + fileId = "242791", + text = "azjol_mushroom04.m2", + value = "azjol_mushroom04.m2", + }, + { + fileId = "242792", + text = "azjol_mushroom05.m2", + value = "azjol_mushroom05.m2", + }, + { + fileId = "242793", + text = "azjol_mushroom06.m2", + value = "azjol_mushroom06.m2", + }, + { + fileId = "242794", + text = "azjol_ornatespider.m2", + value = "azjol_ornatespider.m2", + }, + { + fileId = "242795", + text = "azjol_ornatespike.m2", + value = "azjol_ornatespike.m2", + }, + { + fileId = "242796", + text = "azjol_platform01.m2", + value = "azjol_platform01.m2", + }, + { + fileId = "242797", + text = "azjol_platform_bottom_01.m2", + value = "azjol_platform_bottom_01.m2", + }, + { + fileId = "242798", + text = "azjol_platform_fx_01.m2", + value = "azjol_platform_fx_01.m2", + }, + { + fileId = "242799", + text = "azjol_platform_top_01.m2", + value = "azjol_platform_top_01.m2", + }, + { + fileId = "194114", + text = "azjol_roof.m2", + value = "azjol_roof.m2", + }, + { + fileId = "242801", + text = "azjol_sarcophagus_01.m2", + value = "azjol_sarcophagus_01.m2", + }, + { + fileId = "242802", + text = "azjol_sconce_01.m2", + value = "azjol_sconce_01.m2", + }, + { + fileId = "242803", + text = "azjol_sconce_02.m2", + value = "azjol_sconce_02.m2", + }, + { + fileId = "242804", + text = "azjol_sconce_03.m2", + value = "azjol_sconce_03.m2", + }, + { + fileId = "242805", + text = "azjol_sconce_04.m2", + value = "azjol_sconce_04.m2", + }, + { + fileId = "242806", + text = "azjol_sconce_05.m2", + value = "azjol_sconce_05.m2", + }, + { + fileId = "242807", + text = "azjol_sconce_06.m2", + value = "azjol_sconce_06.m2", + }, + { + fileId = "242809", + text = "azjol_shelfmushroom_02.m2", + value = "azjol_shelfmushroom_02.m2", + }, + { + fileId = "242813", + text = "azjol_shelfmushroom_04.m2", + value = "azjol_shelfmushroom_04.m2", + }, + { + fileId = "242814", + text = "azjol_shelfmushroom_05.m2", + value = "azjol_shelfmushroom_05.m2", + }, + { + fileId = "242815", + text = "azjol_shelfmushroom_06.m2", + value = "azjol_shelfmushroom_06.m2", + }, + { + fileId = "194115", + text = "azjol_spiderfinger01.m2", + value = "azjol_spiderfinger01.m2", + }, + { + fileId = "242816", + text = "azjol_spiderleg01.m2", + value = "azjol_spiderleg01.m2", + }, + { + fileId = "242817", + text = "azjol_spiderleg02.m2", + value = "azjol_spiderleg02.m2", + }, + { + fileId = "194116", + text = "azjol_spike01.m2", + value = "azjol_spike01.m2", + }, + { + fileId = "242819", + text = "azjol_statue_01.m2", + value = "azjol_statue_01.m2", + }, + { + fileId = "242820", + text = "azjol_statue_02.m2", + value = "azjol_statue_02.m2", + }, + { + fileId = "242821", + text = "azjol_vase_01.m2", + value = "azjol_vase_01.m2", + }, + { + fileId = "242822", + text = "azjol_vase_02.m2", + value = "azjol_vase_02.m2", + }, + { + fileId = "242824", + text = "azjol_water_pool_01.m2", + value = "azjol_water_pool_01.m2", + }, + { + fileId = "242826", + text = "azjol_water_pool_02.m2", + value = "azjol_water_pool_02.m2", + }, + { + fileId = "194117", + text = "azjol_web_01.m2", + value = "azjol_web_01.m2", + }, + { + fileId = "194118", + text = "azjol_web_02.m2", + value = "azjol_web_02.m2", + }, + { + fileId = "242830", + text = "azjol_web_rope_angled_01.m2", + value = "azjol_web_rope_angled_01.m2", + }, + { + fileId = "242831", + text = "azjol_web_rope_angled_02.m2", + value = "azjol_web_rope_angled_02.m2", + }, + { + fileId = "242832", + text = "azjol_web_rope_angled_03.m2", + value = "azjol_web_rope_angled_03.m2", + }, + { + fileId = "242833", + text = "azjol_web_rope_looped_01.m2", + value = "azjol_web_rope_looped_01.m2", + }, + { + fileId = "242834", + text = "azjol_web_rope_looped_02.m2", + value = "azjol_web_rope_looped_02.m2", + }, + { + fileId = "242835", + text = "azjol_web_rope_looped_03.m2", + value = "azjol_web_rope_looped_03.m2", + }, + { + fileId = "242836", + text = "azjol_web_rope_looped_04.m2", + value = "azjol_web_rope_looped_04.m2", + }, + { + fileId = "242837", + text = "azjol_web_rope_straight_01.m2", + value = "azjol_web_rope_straight_01.m2", + }, + { + fileId = "242838", + text = "azjol_web_rope_straight_02.m2", + value = "azjol_web_rope_straight_02.m2", + }, + { + fileId = "242839", + text = "azjol_web_rope_straight_03.m2", + value = "azjol_web_rope_straight_03.m2", + }, + { + fileId = "242841", + text = "azjol_webbridge_01.m2", + value = "azjol_webbridge_01.m2", + }, + { + fileId = "242842", + text = "azjol_webbridge_02.m2", + value = "azjol_webbridge_02.m2", + }, + { + fileId = "242843", + text = "azjol_webbridge_03.m2", + value = "azjol_webbridge_03.m2", + }, + { + fileId = "242844", + text = "azjol_webbridge_04.m2", + value = "azjol_webbridge_04.m2", + }, + { + fileId = "194119", + text = "azjol_webfloor_01.m2", + value = "azjol_webfloor_01.m2", + }, + { + fileId = "242845", + text = "azjol_webfloor_01b.m2", + value = "azjol_webfloor_01b.m2", + }, + { + fileId = "194120", + text = "azjol_webfloor_02.m2", + value = "azjol_webfloor_02.m2", + }, + { + fileId = "242846", + text = "azjol_webfloor_02b.m2", + value = "azjol_webfloor_02b.m2", + }, + { + fileId = "242847", + text = "azjol_webfloor_03.m2", + value = "azjol_webfloor_03.m2", + }, + { + fileId = "242848", + text = "azjol_webfloor_03b.m2", + value = "azjol_webfloor_03b.m2", + }, + { + fileId = "194121", + text = "azjolcolumn01.m2", + value = "azjolcolumn01.m2", + }, + { + fileId = "194122", + text = "azjolcolumn02.m2", + value = "azjolcolumn02.m2", + }, + { + fileId = "194123", + text = "azjolcolumn03.m2", + value = "azjolcolumn03.m2", + }, + { + fileId = "194124", + text = "azjolcolumn04.m2", + value = "azjolcolumn04.m2", + }, + { + fileId = "194125", + text = "azjolcolumn05.m2", + value = "azjolcolumn05.m2", + }, + { + fileId = "194126", + text = "azjolcolumn06.m2", + value = "azjolcolumn06.m2", + }, + { + fileId = "242849", + text = "azjolcolumn06_long.m2", + value = "azjolcolumn06_long.m2", + }, + { + fileId = "194127", + text = "azjolcolumn07.m2", + value = "azjolcolumn07.m2", + }, + { + fileId = "194128", + text = "azjolcolumn08.m2", + value = "azjolcolumn08.m2", + }, + { + fileId = "242850", + text = "azjolcolumn08_long.m2", + value = "azjolcolumn08_long.m2", + }, + { + fileId = "194129", + text = "azjolcolumn09.m2", + value = "azjolcolumn09.m2", + }, + { + fileId = "194130", + text = "azjolcolumn10.m2", + value = "azjolcolumn10.m2", + }, + { + fileId = "194131", + text = "azjolcolumn11.m2", + value = "azjolcolumn11.m2", + }, + { + fileId = "194132", + text = "azjolcolumn12.m2", + value = "azjolcolumn12.m2", + }, + { + fileId = "194133", + text = "azjolcolumn13.m2", + value = "azjolcolumn13.m2", + }, + { + fileId = "194134", + text = "azjolcolumn14.m2", + value = "azjolcolumn14.m2", + }, + { + fileId = "194135", + text = "azjolcolumn15.m2", + value = "azjolcolumn15.m2", + }, + { + fileId = "194136", + text = "azjolcolumn16.m2", + value = "azjolcolumn16.m2", + }, + { + fileId = "194137", + text = "azjolcolumn17.m2", + value = "azjolcolumn17.m2", + }, + { + fileId = "194138", + text = "azjolcolumn18.m2", + value = "azjolcolumn18.m2", + }, + { + fileId = "194139", + text = "azjolcolumn19.m2", + value = "azjolcolumn19.m2", + }, + { + fileId = "194140", + text = "azjolcolumn20.m2", + value = "azjolcolumn20.m2", + }, + { + fileId = "194141", + text = "azjolcolumn21.m2", + value = "azjolcolumn21.m2", + }, + { + fileId = "194142", + text = "azjolcolumn22.m2", + value = "azjolcolumn22.m2", + }, + { + fileId = "194143", + text = "azjolcolumn23.m2", + value = "azjolcolumn23.m2", + }, + { + fileId = "194144", + text = "azjolcolumn24.m2", + value = "azjolcolumn24.m2", + }, + { + fileId = "194145", + text = "azjolcolumn25.m2", + value = "azjolcolumn25.m2", + }, + { + fileId = "194146", + text = "azjolcolumn26.m2", + value = "azjolcolumn26.m2", + }, + { + fileId = "194147", + text = "azjolroofgiant.m2", + value = "azjolroofgiant.m2", + }, + { + children = { + { + fileId = "194149", + text = "azjol_bridge01.m2", + value = "azjol_bridge01.m2", + }, + { + fileId = "194150", + text = "azjol_bridge02.m2", + value = "azjol_bridge02.m2", + }, + { + fileId = "194151", + text = "azjol_bridge03.m2", + value = "azjol_bridge03.m2", + }, + { + fileId = "242851", + text = "azjol_bridge_a.m2", + value = "azjol_bridge_a.m2", + }, + { + fileId = "242852", + text = "azjol_bridge_b.m2", + value = "azjol_bridge_b.m2", + }, + }, + text = "bridges", + value = "bridges", + }, + { + children = { + { + fileId = "194152", + text = "azjol_archbuilding01.m2", + value = "azjol_archbuilding01.m2", + }, + { + fileId = "194153", + text = "azjol_building01.m2", + value = "azjol_building01.m2", + }, + { + fileId = "194154", + text = "azjol_building02.m2", + value = "azjol_building02.m2", + }, + { + fileId = "194155", + text = "azjol_building03.m2", + value = "azjol_building03.m2", + }, + { + fileId = "242853", + text = "azjol_facade1.m2", + value = "azjol_facade1.m2", + }, + { + fileId = "242854", + text = "azjol_facade2.m2", + value = "azjol_facade2.m2", + }, + { + fileId = "242855", + text = "azjol_facade3.m2", + value = "azjol_facade3.m2", + }, + { + fileId = "242856", + text = "azjol_facade4.m2", + value = "azjol_facade4.m2", + }, + { + fileId = "242857", + text = "azjol_facade5.m2", + value = "azjol_facade5.m2", + }, + { + fileId = "242858", + text = "azjol_final_boss.m2", + value = "azjol_final_boss.m2", + }, + { + fileId = "242859", + text = "azjol_pyramid1.m2", + value = "azjol_pyramid1.m2", + }, + { + fileId = "242860", + text = "azjol_pyramid2.m2", + value = "azjol_pyramid2.m2", + }, + { + fileId = "242861", + text = "azjol_pyramid3.m2", + value = "azjol_pyramid3.m2", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + fileId = "242865", + text = "azjol_column_a.m2", + value = "azjol_column_a.m2", + }, + { + fileId = "242866", + text = "azjol_column_b.m2", + value = "azjol_column_b.m2", + }, + { + fileId = "242867", + text = "azjol_column_c.m2", + value = "azjol_column_c.m2", + }, + { + fileId = "194156", + text = "azjol_obelisk01.m2", + value = "azjol_obelisk01.m2", + }, + { + fileId = "242868", + text = "azjol_obeliskgold01.m2", + value = "azjol_obeliskgold01.m2", + }, + { + fileId = "242869", + text = "azjol_obeliskobsidian01.m2", + value = "azjol_obeliskobsidian01.m2", + }, + { + fileId = "242870", + text = "azjol_obeliskorange.m2", + value = "azjol_obeliskorange.m2", + }, + { + fileId = "194157", + text = "azjol_spidercolumn01.m2", + value = "azjol_spidercolumn01.m2", + }, + { + fileId = "194158", + text = "azjol_spidercolumn02.m2", + value = "azjol_spidercolumn02.m2", + }, + }, + text = "columns", + value = "columns", + }, + { + children = { + { + fileId = "242874", + text = "azjol_eggsacks_01.m2", + value = "azjol_eggsacks_01.m2", + }, + { + fileId = "242875", + text = "azjol_eggsacks_02.m2", + value = "azjol_eggsacks_02.m2", + }, + { + fileId = "242876", + text = "azjol_eggtower_01.m2", + value = "azjol_eggtower_01.m2", + }, + { + fileId = "242877", + text = "azjol_eggtower_02.m2", + value = "azjol_eggtower_02.m2", + }, + }, + text = "eggs", + value = "eggs", + }, + { + children = { + { + fileId = "194163", + text = "omnilight_purple.m2", + value = "omnilight_purple.m2", + }, + }, + text = "omnilights", + value = "omnilights", + }, + { + children = { + { + fileId = "194164", + text = "azjol_rockcolumn01.m2", + value = "azjol_rockcolumn01.m2", + }, + { + fileId = "194165", + text = "azjol_rockcolumn02.m2", + value = "azjol_rockcolumn02.m2", + }, + { + fileId = "194166", + text = "azjol_rockcolumn03.m2", + value = "azjol_rockcolumn03.m2", + }, + { + fileId = "194167", + text = "azjol_rockcolumn04.m2", + value = "azjol_rockcolumn04.m2", + }, + { + fileId = "194168", + text = "azjol_rockcolumn05.m2", + value = "azjol_rockcolumn05.m2", + }, + }, + text = "rockcolumns", + value = "rockcolumns", + }, + { + children = { + { + fileId = "194169", + text = "azjol_roof02.m2", + value = "azjol_roof02.m2", + }, + { + fileId = "242881", + text = "azjol_roof03.m2", + value = "azjol_roof03.m2", + }, + { + fileId = "242882", + text = "azjol_roof04.m2", + value = "azjol_roof04.m2", + }, + }, + text = "roof", + value = "roof", + }, + { + children = { + { + fileId = "242884", + text = "saronite_arrow_01.m2", + value = "saronite_arrow_01.m2", + }, + { + fileId = "194170", + text = "saronite_node_01.m2", + value = "saronite_node_01.m2", + }, + { + fileId = "339945", + text = "saronite_node_01_pos.m2", + value = "saronite_node_01_pos.m2", + }, + { + fileId = "242885", + text = "saronite_rock01.m2", + value = "saronite_rock01.m2", + }, + { + fileId = "242886", + text = "saronite_rock02.m2", + value = "saronite_rock02.m2", + }, + { + fileId = "242887", + text = "saronite_slimefalls.m2", + value = "saronite_slimefalls.m2", + }, + }, + text = "saronite", + value = "saronite", + }, + { + children = { + { + fileId = "242888", + text = "azjol_fern_01.m2", + value = "azjol_fern_01.m2", + }, + { + fileId = "242889", + text = "azjol_fern_02.m2", + value = "azjol_fern_02.m2", + }, + { + fileId = "242891", + text = "azjol_glowthread_blue.m2", + value = "azjol_glowthread_blue.m2", + }, + { + fileId = "242892", + text = "azjol_glowthread_white.m2", + value = "azjol_glowthread_white.m2", + }, + { + fileId = "242893", + text = "azjol_glowthread_white_02.m2", + value = "azjol_glowthread_white_02.m2", + }, + { + fileId = "242894", + text = "azjol_glowthread_yellow.m2", + value = "azjol_glowthread_yellow.m2", + }, + { + fileId = "242895", + text = "azjol_hangingfern_01.m2", + value = "azjol_hangingfern_01.m2", + }, + { + fileId = "194173", + text = "azjol_mushroom01.m2", + value = "azjol_mushroom01.m2", + }, + { + fileId = "194175", + text = "azjol_mushroom02.m2", + value = "azjol_mushroom02.m2", + }, + { + fileId = "194176", + text = "azjol_mushroom03.m2", + value = "azjol_mushroom03.m2", + }, + { + fileId = "242897", + text = "azjol_shelfmushroom_01.m2", + value = "azjol_shelfmushroom_01.m2", + }, + { + fileId = "242899", + text = "azjol_shelfmushroom_03.m2", + value = "azjol_shelfmushroom_03.m2", + }, + { + fileId = "242900", + text = "azjol_spore_blue_01.m2", + value = "azjol_spore_blue_01.m2", + }, + { + fileId = "242902", + text = "azjol_spore_white_01.m2", + value = "azjol_spore_white_01.m2", + }, + { + fileId = "242903", + text = "azjol_thinmushroom_01.m2", + value = "azjol_thinmushroom_01.m2", + }, + { + fileId = "242904", + text = "azjol_thinmushroom_02.m2", + value = "azjol_thinmushroom_02.m2", + }, + { + fileId = "242905", + text = "azjol_thinmushroom_03.m2", + value = "azjol_thinmushroom_03.m2", + }, + { + fileId = "242906", + text = "azjol_thinmushroom_04.m2", + value = "azjol_thinmushroom_04.m2", + }, + }, + text = "shrubs", + value = "shrubs", + }, + { + children = { + { + fileId = "194177", + text = "azjol_stairs01.m2", + value = "azjol_stairs01.m2", + }, + { + fileId = "194178", + text = "azjol_stairs02.m2", + value = "azjol_stairs02.m2", + }, + { + fileId = "242913", + text = "azjol_stairs_lg.m2", + value = "azjol_stairs_lg.m2", + }, + { + fileId = "242914", + text = "azjol_stairs_sm.m2", + value = "azjol_stairs_sm.m2", + }, + }, + text = "stairs", + value = "stairs", + }, + { + children = { + { + fileId = "194179", + text = "azjol_wall01.m2", + value = "azjol_wall01.m2", + }, + { + fileId = "194180", + text = "azjol_wall02.m2", + value = "azjol_wall02.m2", + }, + { + fileId = "242915", + text = "azjol_wall_corner.m2", + value = "azjol_wall_corner.m2", + }, + { + fileId = "194181", + text = "azjol_wall_curved01.m2", + value = "azjol_wall_curved01.m2", + }, + { + fileId = "242916", + text = "azjol_wall_divider.m2", + value = "azjol_wall_divider.m2", + }, + { + fileId = "242917", + text = "azjol_wall_long_seg.m2", + value = "azjol_wall_long_seg.m2", + }, + { + fileId = "242918", + text = "azjol_wall_long_sideangle.m2", + value = "azjol_wall_long_sideangle.m2", + }, + { + fileId = "242919", + text = "azjol_wall_long_vertangle.m2", + value = "azjol_wall_long_vertangle.m2", + }, + { + fileId = "194182", + text = "azjol_wallend01.m2", + value = "azjol_wallend01.m2", + }, + }, + text = "walls", + value = "walls", + }, + { + children = { + { + fileId = "242920", + text = "waterfalls_azjol_uppercity.m2", + value = "waterfalls_azjol_uppercity.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + }, + text = "azjol-nerub", + value = "azjol-nerub", + }, + { + children = { + { + children = { + { + fileId = "194183", + text = "bt_airport_light_red_blink.m2", + value = "bt_airport_light_red_blink.m2", + }, + { + fileId = "194184", + text = "bt_airport_light_white_blink.m2", + value = "bt_airport_light_white_blink.m2", + }, + { + fileId = "194185", + text = "bt_airport_light_white_static.m2", + value = "bt_airport_light_white_static.m2", + }, + }, + text = "airport", + value = "airport", + }, + { + children = { + { + fileId = "194189", + text = "statue_varianwynn.m2", + value = "statue_varianwynn.m2", + }, + }, + text = "alliancestatue", + value = "alliancestatue", + }, + { + children = { + { + fileId = "194194", + text = "borean_barnacle_plane.m2", + value = "borean_barnacle_plane.m2", + }, + { + fileId = "194195", + text = "borean_barnaclelg.m2", + value = "borean_barnaclelg.m2", + }, + { + fileId = "194196", + text = "borean_barnaclesm01.m2", + value = "borean_barnaclesm01.m2", + }, + { + fileId = "194197", + text = "borean_barnaclesm02.m2", + value = "borean_barnaclesm02.m2", + }, + { + fileId = "194198", + text = "borean_barnaclesm03.m2", + value = "borean_barnaclesm03.m2", + }, + { + fileId = "194199", + text = "borean_starfish.m2", + value = "borean_starfish.m2", + }, + }, + text = "barnacles", + value = "barnacles", + }, + { + children = { + { + fileId = "194201", + text = "borean_deadorca_01.m2", + value = "borean_deadorca_01.m2", + }, + { + fileId = "194202", + text = "borean_deadorca_02.m2", + value = "borean_deadorca_02.m2", + }, + { + fileId = "194204", + text = "borean_seaweed_01.m2", + value = "borean_seaweed_01.m2", + }, + { + fileId = "194205", + text = "borean_seaweed_02.m2", + value = "borean_seaweed_02.m2", + }, + { + fileId = "194206", + text = "borean_seaweed_03.m2", + value = "borean_seaweed_03.m2", + }, + { + fileId = "194208", + text = "borean_starfish_01.m2", + value = "borean_starfish_01.m2", + }, + }, + text = "beach", + value = "beach", + }, + { + children = { + { + fileId = "242921", + text = "broken_bridge_pillar.m2", + value = "broken_bridge_pillar.m2", + }, + }, + text = "bridgepillar", + value = "bridgepillar", + }, + { + children = { + { + fileId = "194211", + text = "borean_bush_01.m2", + value = "borean_bush_01.m2", + }, + { + fileId = "194213", + text = "borean_bush_02.m2", + value = "borean_bush_02.m2", + }, + { + fileId = "194215", + text = "borean_bush_04.m2", + value = "borean_bush_04.m2", + }, + { + fileId = "194216", + text = "borean_bush_05.m2", + value = "borean_bush_05.m2", + }, + { + fileId = "194219", + text = "borean_groundcover_01.m2", + value = "borean_groundcover_01.m2", + }, + { + fileId = "194221", + text = "borean_groundcover_02.m2", + value = "borean_groundcover_02.m2", + }, + { + fileId = "194223", + text = "borean_groundcover_03.m2", + value = "borean_groundcover_03.m2", + }, + { + fileId = "194225", + text = "borean_shrub_02.m2", + value = "borean_shrub_02.m2", + }, + { + fileId = "194226", + text = "borean_shrub_03.m2", + value = "borean_shrub_03.m2", + }, + { + fileId = "194228", + text = "borean_shrub_04.m2", + value = "borean_shrub_04.m2", + }, + { + fileId = "194230", + text = "borean_shrub_05_q.m2", + value = "borean_shrub_05_q.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "194232", + text = "borean_corrupted_crystals_01.m2", + value = "borean_corrupted_crystals_01.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "194235", + text = "borean_bubbles_01.m2", + value = "borean_bubbles_01.m2", + }, + { + fileId = "194238", + text = "borean_geyser_01.m2", + value = "borean_geyser_01.m2", + }, + { + fileId = "194240", + text = "borean_geyser_02.m2", + value = "borean_geyser_02.m2", + }, + { + fileId = "194241", + text = "borean_geyser_03.m2", + value = "borean_geyser_03.m2", + }, + { + fileId = "194242", + text = "borean_geysernosteam_04.m2", + value = "borean_geysernosteam_04.m2", + }, + { + fileId = "194243", + text = "borean_geysernosteam_05.m2", + value = "borean_geysernosteam_05.m2", + }, + { + fileId = "194244", + text = "borean_geysersteam.m2", + value = "borean_geysersteam.m2", + }, + { + fileId = "194246", + text = "borean_mineralpool_01.m2", + value = "borean_mineralpool_01.m2", + }, + }, + text = "geysers", + value = "geysers", + }, + { + children = { + { + fileId = "194249", + text = "borean_towerparts.m2", + value = "borean_towerparts.m2", + }, + }, + text = "gnometower", + value = "gnometower", + }, + { + children = { + { + fileId = "194251", + text = "borean_magnataurbed_01.m2", + value = "borean_magnataurbed_01.m2", + }, + { + fileId = "194254", + text = "borean_redplant_bowl_01.m2", + value = "borean_redplant_bowl_01.m2", + }, + { + fileId = "194255", + text = "borean_redplant_bowl_02.m2", + value = "borean_redplant_bowl_02.m2", + }, + { + fileId = "194256", + text = "borean_redplant_burningpile_01.m2", + value = "borean_redplant_burningpile_01.m2", + }, + { + fileId = "194257", + text = "borean_redplant_burningpile_02.m2", + value = "borean_redplant_burningpile_02.m2", + }, + { + fileId = "194258", + text = "borean_redplant_burningpile_03.m2", + value = "borean_redplant_burningpile_03.m2", + }, + { + fileId = "194260", + text = "borean_redplant_drying_01.m2", + value = "borean_redplant_drying_01.m2", + }, + { + fileId = "194261", + text = "borean_redplant_drying_02.m2", + value = "borean_redplant_drying_02.m2", + }, + { + fileId = "194262", + text = "borean_redplant_drying_03.m2", + value = "borean_redplant_drying_03.m2", + }, + { + fileId = "194265", + text = "magnataur_axe01.m2", + value = "magnataur_axe01.m2", + }, + { + fileId = "194268", + text = "magnataur_legfoot01.m2", + value = "magnataur_legfoot01.m2", + }, + { + fileId = "194269", + text = "magnataur_legfull01.m2", + value = "magnataur_legfull01.m2", + }, + { + fileId = "194270", + text = "magnataur_legfull02.m2", + value = "magnataur_legfull02.m2", + }, + { + fileId = "194271", + text = "magnataur_legthigh01.m2", + value = "magnataur_legthigh01.m2", + }, + { + fileId = "194272", + text = "magnataur_mace01.m2", + value = "magnataur_mace01.m2", + }, + { + fileId = "194273", + text = "magnataur_ribcage01.m2", + value = "magnataur_ribcage01.m2", + }, + { + fileId = "194274", + text = "magnataur_skull01.m2", + value = "magnataur_skull01.m2", + }, + { + fileId = "194275", + text = "magnataur_skull02.m2", + value = "magnataur_skull02.m2", + }, + { + fileId = "194276", + text = "magnataur_spear01.m2", + value = "magnataur_spear01.m2", + }, + { + fileId = "194277", + text = "magnataur_torso01.m2", + value = "magnataur_torso01.m2", + }, + { + fileId = "194278", + text = "magnataur_weaponbroken01.m2", + value = "magnataur_weaponbroken01.m2", + }, + { + fileId = "194280", + text = "snobold_alter01.m2", + value = "snobold_alter01.m2", + }, + { + fileId = "194281", + text = "snobold_cage_01.m2", + value = "snobold_cage_01.m2", + }, + { + fileId = "194282", + text = "snobold_candle01.m2", + value = "snobold_candle01.m2", + }, + { + fileId = "194283", + text = "snobold_candle02.m2", + value = "snobold_candle02.m2", + }, + { + fileId = "194284", + text = "snobold_candle03.m2", + value = "snobold_candle03.m2", + }, + { + fileId = "194285", + text = "snobold_candle04.m2", + value = "snobold_candle04.m2", + }, + { + fileId = "194286", + text = "snobold_candle_group01.m2", + value = "snobold_candle_group01.m2", + }, + { + fileId = "194287", + text = "snobold_candle_group02.m2", + value = "snobold_candle_group02.m2", + }, + { + fileId = "194288", + text = "snobold_warningrock01_hibatch.m2", + value = "snobold_warningrock01_hibatch.m2", + }, + { + fileId = "194289", + text = "snobold_warningrock02_hibatch.m2", + value = "snobold_warningrock02_hibatch.m2", + }, + { + fileId = "194290", + text = "snobold_warningrock03.m2", + value = "snobold_warningrock03.m2", + }, + }, + text = "magnatauritems", + value = "magnatauritems", + }, + { + children = { + { + fileId = "194293", + text = "borean_rock_01.m2", + value = "borean_rock_01.m2", + }, + { + fileId = "194294", + text = "borean_rock_02.m2", + value = "borean_rock_02.m2", + }, + { + fileId = "194295", + text = "borean_rock_03.m2", + value = "borean_rock_03.m2", + }, + { + fileId = "194296", + text = "borean_rock_04.m2", + value = "borean_rock_04.m2", + }, + { + fileId = "194297", + text = "borean_rock_05.m2", + value = "borean_rock_05.m2", + }, + { + fileId = "194299", + text = "borean_rocklarge_01.m2", + value = "borean_rocklarge_01.m2", + }, + { + fileId = "194301", + text = "borean_rocklarge_01_snowy.m2", + value = "borean_rocklarge_01_snowy.m2", + }, + { + fileId = "194303", + text = "borean_rocklarge_02.m2", + value = "borean_rocklarge_02.m2", + }, + { + fileId = "194305", + text = "borean_rocklarge_02_snowy.m2", + value = "borean_rocklarge_02_snowy.m2", + }, + { + fileId = "194307", + text = "borean_rocklarge_03.m2", + value = "borean_rocklarge_03.m2", + }, + { + fileId = "194309", + text = "borean_rocklarge_03_snowy.m2", + value = "borean_rocklarge_03_snowy.m2", + }, + { + fileId = "194310", + text = "borean_rocklarge_04.m2", + value = "borean_rocklarge_04.m2", + }, + { + fileId = "194311", + text = "borean_rocklarge_04_snowy.m2", + value = "borean_rocklarge_04_snowy.m2", + }, + { + fileId = "194312", + text = "borean_rocklarge_05.m2", + value = "borean_rocklarge_05.m2", + }, + { + fileId = "194313", + text = "borean_rocklarge_05_snowy.m2", + value = "borean_rocklarge_05_snowy.m2", + }, + { + fileId = "194314", + text = "borean_rocklarge_06.m2", + value = "borean_rocklarge_06.m2", + }, + { + fileId = "194315", + text = "borean_rocklarge_07.m2", + value = "borean_rocklarge_07.m2", + }, + { + fileId = "194316", + text = "borean_rocklarge_08.m2", + value = "borean_rocklarge_08.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "194318", + text = "borean_rope_01.m2", + value = "borean_rope_01.m2", + }, + }, + text = "ropes", + value = "ropes", + }, + { + children = { + { + fileId = "343852", + text = "nd_scourgewalls_skulls.m2", + value = "nd_scourgewalls_skulls.m2", + }, + }, + text = "scourgewalls", + value = "scourgewalls", + }, + { + children = { + { + fileId = "194320", + text = "borean_snowpile_01.m2", + value = "borean_snowpile_01.m2", + }, + { + fileId = "194321", + text = "borean_snowpile_02.m2", + value = "borean_snowpile_02.m2", + }, + { + fileId = "194322", + text = "borean_snowpile_03.m2", + value = "borean_snowpile_03.m2", + }, + { + fileId = "194323", + text = "borean_snowpile_04.m2", + value = "borean_snowpile_04.m2", + }, + }, + text = "snowpiles", + value = "snowpiles", + }, + { + children = { + { + fileId = "194324", + text = "borean_flag_03.m2", + value = "borean_flag_03.m2", + }, + { + fileId = "194325", + text = "borean_flag_04.m2", + value = "borean_flag_04.m2", + }, + { + fileId = "194326", + text = "borean_flag_05.m2", + value = "borean_flag_05.m2", + }, + { + fileId = "194327", + text = "borean_flags_01.m2", + value = "borean_flags_01.m2", + }, + { + fileId = "194329", + text = "borean_flags_02.m2", + value = "borean_flags_02.m2", + }, + }, + text = "stoneflags", + value = "stoneflags", + }, + { + children = { + { + fileId = "194333", + text = "borean_tuskarrstatue_01.m2", + value = "borean_tuskarrstatue_01.m2", + }, + { + fileId = "194334", + text = "borean_tuskarrstatue_03.m2", + value = "borean_tuskarrstatue_03.m2", + }, + { + fileId = "194335", + text = "borean_tuskarrstatue_broken_01.m2", + value = "borean_tuskarrstatue_broken_01.m2", + }, + }, + text = "stoneheads", + value = "stoneheads", + }, + }, + text = "boreantundra", + value = "boreantundra", + }, + { + children = { + { + children = { + { + fileId = "242922", + text = "chamber_lavafalls_01.m2", + value = "chamber_lavafalls_01.m2", + }, + { + fileId = "242923", + text = "chamber_lavafalls_02.m2", + value = "chamber_lavafalls_02.m2", + }, + { + fileId = "242924", + text = "chamber_lavafalls_03.m2", + value = "chamber_lavafalls_03.m2", + }, + { + fileId = "242925", + text = "chamber_lavafalls_04.m2", + value = "chamber_lavafalls_04.m2", + }, + { + fileId = "242926", + text = "chamber_lavafalls_05.m2", + value = "chamber_lavafalls_05.m2", + }, + { + fileId = "242927", + text = "chamber_lavafalls_06.m2", + value = "chamber_lavafalls_06.m2", + }, + { + fileId = "242928", + text = "chamber_lavafountain01.m2", + value = "chamber_lavafountain01.m2", + }, + }, + text = "aspects_lavafalls", + value = "aspects_lavafalls", + }, + }, + text = "chamber_aspects_black", + value = "chamber_aspects_black", + }, + { + children = { + { + children = { + { + fileId = "194337", + text = "coldarraberry_bush_01.m2", + value = "coldarraberry_bush_01.m2", + }, + { + fileId = "194338", + text = "coldarrafrosty_bush01.m2", + value = "coldarrafrosty_bush01.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "194339", + text = "camouflagebubble_coldarra.m2", + value = "camouflagebubble_coldarra.m2", + }, + }, + text = "camouflagebubble", + value = "camouflagebubble", + }, + { + fileId = "194345", + text = "coldarralocus.m2", + value = "coldarralocus.m2", + }, + { + children = { + { + fileId = "194348", + text = "coldarratree_stump01.m2", + value = "coldarratree_stump01.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "coldarra", + value = "coldarra", + }, + { + children = { + { + children = { + { + fileId = "242931", + text = "camouflagebubble_crystalsong.m2", + value = "camouflagebubble_crystalsong.m2", + }, + }, + text = "bubble", + value = "bubble", + }, + { + children = { + { + fileId = "194351", + text = "crystalsong_rocka.m2", + value = "crystalsong_rocka.m2", + }, + { + fileId = "194352", + text = "crystalsong_rockb.m2", + value = "crystalsong_rockb.m2", + }, + { + fileId = "194353", + text = "crystalsong_rockc.m2", + value = "crystalsong_rockc.m2", + }, + { + fileId = "194354", + text = "crystalsong_rockd.m2", + value = "crystalsong_rockd.m2", + }, + { + fileId = "194356", + text = "crystalsongaspenrock01.m2", + value = "crystalsongaspenrock01.m2", + }, + { + fileId = "194357", + text = "crystalsongaspenrock02.m2", + value = "crystalsongaspenrock02.m2", + }, + { + fileId = "194358", + text = "crystalsongaspenrock03.m2", + value = "crystalsongaspenrock03.m2", + }, + { + fileId = "194359", + text = "crystalsongaspenrock04.m2", + value = "crystalsongaspenrock04.m2", + }, + { + fileId = "194360", + text = "crystalsongaspenrock05.m2", + value = "crystalsongaspenrock05.m2", + }, + { + fileId = "194361", + text = "crystalsongaspenrock06.m2", + value = "crystalsongaspenrock06.m2", + }, + { + fileId = "194363", + text = "crystalsongmagicrock01.m2", + value = "crystalsongmagicrock01.m2", + }, + { + fileId = "194364", + text = "crystalsongmagicrock02.m2", + value = "crystalsongmagicrock02.m2", + }, + { + fileId = "194365", + text = "crystalsongmagicrock03.m2", + value = "crystalsongmagicrock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "242933", + text = "crystalsong_ruins_column_01.m2", + value = "crystalsong_ruins_column_01.m2", + }, + { + fileId = "242934", + text = "crystalsong_ruins_ramp_01.m2", + value = "crystalsong_ruins_ramp_01.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "194366", + text = "crystalsong_glow01.m2", + value = "crystalsong_glow01.m2", + }, + { + fileId = "194368", + text = "crystalsong_sparkles01.m2", + value = "crystalsong_sparkles01.m2", + }, + { + fileId = "194369", + text = "crystalsong_sparkles02.m2", + value = "crystalsong_sparkles02.m2", + }, + { + fileId = "194370", + text = "crystalsong_sparkles03.m2", + value = "crystalsong_sparkles03.m2", + }, + }, + text = "sparkles", + value = "sparkles", + }, + { + children = { + { + fileId = "242936", + text = "crystallineheartwood01.m2", + value = "crystallineheartwood01.m2", + }, + { + fileId = "194409", + text = "crystalsongaspenbush01.m2", + value = "crystalsongaspenbush01.m2", + }, + { + fileId = "194410", + text = "crystalsongaspenbush02.m2", + value = "crystalsongaspenbush02.m2", + }, + { + fileId = "194411", + text = "crystalsongaspentree01.m2", + value = "crystalsongaspentree01.m2", + }, + { + fileId = "194412", + text = "crystalsongaspentree02.m2", + value = "crystalsongaspentree02.m2", + }, + { + fileId = "194413", + text = "crystalsongaspentree03.m2", + value = "crystalsongaspentree03.m2", + }, + { + fileId = "194414", + text = "crystalsongaspentree04.m2", + value = "crystalsongaspentree04.m2", + }, + { + fileId = "194415", + text = "crystalsongaspentree05.m2", + value = "crystalsongaspentree05.m2", + }, + { + fileId = "194416", + text = "crystalsongaspentree06.m2", + value = "crystalsongaspentree06.m2", + }, + { + fileId = "194417", + text = "crystalsongaspentree07.m2", + value = "crystalsongaspentree07.m2", + }, + { + fileId = "242943", + text = "crystalsongaspentree08.m2", + value = "crystalsongaspentree08.m2", + }, + { + fileId = "194418", + text = "crystalsongbush01.m2", + value = "crystalsongbush01.m2", + }, + { + fileId = "194419", + text = "crystalsongbush02.m2", + value = "crystalsongbush02.m2", + }, + { + fileId = "194420", + text = "crystalsongguardiantree01.m2", + value = "crystalsongguardiantree01.m2", + }, + { + fileId = "194421", + text = "crystalsongguardiantree02.m2", + value = "crystalsongguardiantree02.m2", + }, + { + fileId = "194422", + text = "crystalsongtree01.m2", + value = "crystalsongtree01.m2", + }, + { + fileId = "194423", + text = "crystalsongtree02.m2", + value = "crystalsongtree02.m2", + }, + { + fileId = "194424", + text = "crystalsongtree03.m2", + value = "crystalsongtree03.m2", + }, + { + fileId = "194425", + text = "crystalsongtree04.m2", + value = "crystalsongtree04.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "crystalsongforest", + value = "crystalsongforest", + }, + { + children = { + { + children = { + { + fileId = "194455", + text = "hf_burningship_frontpiece.m2", + value = "hf_burningship_frontpiece.m2", + }, + { + fileId = "194456", + text = "hf_burningship_mast.m2", + value = "hf_burningship_mast.m2", + }, + { + fileId = "194457", + text = "hf_burningship_plank1.m2", + value = "hf_burningship_plank1.m2", + }, + { + fileId = "194458", + text = "hf_burningship_plank2.m2", + value = "hf_burningship_plank2.m2", + }, + { + fileId = "194459", + text = "hf_burningship_plank3.m2", + value = "hf_burningship_plank3.m2", + }, + { + fileId = "194460", + text = "hf_burningship_plank4.m2", + value = "hf_burningship_plank4.m2", + }, + { + fileId = "194461", + text = "hf_burningship_rail.m2", + value = "hf_burningship_rail.m2", + }, + { + fileId = "194462", + text = "howlingfjord_burningship.m2", + value = "howlingfjord_burningship.m2", + }, + }, + text = "burningship", + value = "burningship", + }, + }, + text = "daggercap", + value = "daggercap", + }, + { + children = { + { + fileId = "242950", + text = "carrot_on_a_stick.m2", + value = "carrot_on_a_stick.m2", + }, + { + fileId = "242957", + text = "dalaran_airportstatue_01.m2", + value = "dalaran_airportstatue_01.m2", + }, + { + fileId = "242964", + text = "dalaran_anvil.m2", + value = "dalaran_anvil.m2", + }, + { + fileId = "242967", + text = "dalaran_aquarium_01.m2", + value = "dalaran_aquarium_01.m2", + }, + { + fileId = "242971", + text = "dalaran_assorted_counter01.m2", + value = "dalaran_assorted_counter01.m2", + }, + { + fileId = "242972", + text = "dalaran_assorted_counter02.m2", + value = "dalaran_assorted_counter02.m2", + }, + { + fileId = "242973", + text = "dalaran_banner_01.m2", + value = "dalaran_banner_01.m2", + }, + { + fileId = "242974", + text = "dalaran_banner_02.m2", + value = "dalaran_banner_02.m2", + }, + { + fileId = "242975", + text = "dalaran_banner_alliance_01.m2", + value = "dalaran_banner_alliance_01.m2", + }, + { + fileId = "242976", + text = "dalaran_banner_alliance_02.m2", + value = "dalaran_banner_alliance_02.m2", + }, + { + fileId = "242977", + text = "dalaran_banner_horde_01.m2", + value = "dalaran_banner_horde_01.m2", + }, + { + fileId = "242978", + text = "dalaran_banner_horde_02.m2", + value = "dalaran_banner_horde_02.m2", + }, + { + fileId = "242979", + text = "dalaran_banner_main_01.m2", + value = "dalaran_banner_main_01.m2", + }, + { + fileId = "242981", + text = "dalaran_bannerwall_01.m2", + value = "dalaran_bannerwall_01.m2", + }, + { + fileId = "242983", + text = "dalaran_bannerwall_02.m2", + value = "dalaran_bannerwall_02.m2", + }, + { + fileId = "242985", + text = "dalaran_bannerwall_03.m2", + value = "dalaran_bannerwall_03.m2", + }, + { + fileId = "242986", + text = "dalaran_barrel_01.m2", + value = "dalaran_barrel_01.m2", + }, + { + fileId = "242988", + text = "dalaran_bed_01.m2", + value = "dalaran_bed_01.m2", + }, + { + fileId = "242990", + text = "dalaran_bed_02.m2", + value = "dalaran_bed_02.m2", + }, + { + fileId = "242991", + text = "dalaran_beertable_01.m2", + value = "dalaran_beertable_01.m2", + }, + { + fileId = "242992", + text = "dalaran_beertable_seat_01.m2", + value = "dalaran_beertable_seat_01.m2", + }, + { + fileId = "194464", + text = "dalaran_bench01.m2", + value = "dalaran_bench01.m2", + }, + { + fileId = "194465", + text = "dalaran_bench02.m2", + value = "dalaran_bench02.m2", + }, + { + fileId = "242994", + text = "dalaran_bookcase_01.m2", + value = "dalaran_bookcase_01.m2", + }, + { + fileId = "242995", + text = "dalaran_bookcase_empty_01.m2", + value = "dalaran_bookcase_empty_01.m2", + }, + { + fileId = "242997", + text = "dalaran_buildingcrystal_01.m2", + value = "dalaran_buildingcrystal_01.m2", + }, + { + fileId = "242998", + text = "dalaran_buildingcrystal_02.m2", + value = "dalaran_buildingcrystal_02.m2", + }, + { + fileId = "242999", + text = "dalaran_buildingcrystal_02off.m2", + value = "dalaran_buildingcrystal_02off.m2", + }, + { + fileId = "243000", + text = "dalaran_cake_01.m2", + value = "dalaran_cake_01.m2", + }, + { + fileId = "243001", + text = "dalaran_cake_02.m2", + value = "dalaran_cake_02.m2", + }, + { + fileId = "243002", + text = "dalaran_cake_03.m2", + value = "dalaran_cake_03.m2", + }, + { + fileId = "243003", + text = "dalaran_cakeslice_01.m2", + value = "dalaran_cakeslice_01.m2", + }, + { + fileId = "243004", + text = "dalaran_cakeslice_02.m2", + value = "dalaran_cakeslice_02.m2", + }, + { + fileId = "243005", + text = "dalaran_cakeslice_03.m2", + value = "dalaran_cakeslice_03.m2", + }, + { + fileId = "243006", + text = "dalaran_cakeslice_04.m2", + value = "dalaran_cakeslice_04.m2", + }, + { + fileId = "243007", + text = "dalaran_cakestand_01.m2", + value = "dalaran_cakestand_01.m2", + }, + { + fileId = "243008", + text = "dalaran_cakestandlid_01.m2", + value = "dalaran_cakestandlid_01.m2", + }, + { + fileId = "194466", + text = "dalaran_chair01.m2", + value = "dalaran_chair01.m2", + }, + { + fileId = "243010", + text = "dalaran_chair_01.m2", + value = "dalaran_chair_01.m2", + }, + { + fileId = "243011", + text = "dalaran_chair_02.m2", + value = "dalaran_chair_02.m2", + }, + { + fileId = "243013", + text = "dalaran_chandelier01.m2", + value = "dalaran_chandelier01.m2", + }, + { + fileId = "243014", + text = "dalaran_chandelier01_short.m2", + value = "dalaran_chandelier01_short.m2", + }, + { + fileId = "243015", + text = "dalaran_chandelier02.m2", + value = "dalaran_chandelier02.m2", + }, + { + fileId = "243016", + text = "dalaran_chandelier02_short.m2", + value = "dalaran_chandelier02_short.m2", + }, + { + fileId = "243018", + text = "dalaran_cherryblossoms.m2", + value = "dalaran_cherryblossoms.m2", + }, + { + fileId = "243019", + text = "dalaran_cloth_counter01.m2", + value = "dalaran_cloth_counter01.m2", + }, + { + fileId = "243020", + text = "dalaran_cloth_counter02.m2", + value = "dalaran_cloth_counter02.m2", + }, + { + fileId = "243021", + text = "dalaran_cookie_01.m2", + value = "dalaran_cookie_01.m2", + }, + { + fileId = "243022", + text = "dalaran_cookie_02.m2", + value = "dalaran_cookie_02.m2", + }, + { + fileId = "243023", + text = "dalaran_cookie_03.m2", + value = "dalaran_cookie_03.m2", + }, + { + fileId = "243024", + text = "dalaran_cookie_04.m2", + value = "dalaran_cookie_04.m2", + }, + { + fileId = "243025", + text = "dalaran_cookie_05.m2", + value = "dalaran_cookie_05.m2", + }, + { + fileId = "243026", + text = "dalaran_counter_01.m2", + value = "dalaran_counter_01.m2", + }, + { + fileId = "243027", + text = "dalaran_counter_alchemy.m2", + value = "dalaran_counter_alchemy.m2", + }, + { + fileId = "243029", + text = "dalaran_crate_01.m2", + value = "dalaran_crate_01.m2", + }, + { + fileId = "243030", + text = "dalaran_crate_03.m2", + value = "dalaran_crate_03.m2", + }, + { + fileId = "243031", + text = "dalaran_crate_04.m2", + value = "dalaran_crate_04.m2", + }, + { + fileId = "243032", + text = "dalaran_craterdome.m2", + value = "dalaran_craterdome.m2", + }, + { + fileId = "243033", + text = "dalaran_crystalball_01.m2", + value = "dalaran_crystalball_01.m2", + }, + { + fileId = "243034", + text = "dalaran_cupcake_01.m2", + value = "dalaran_cupcake_01.m2", + }, + { + fileId = "243035", + text = "dalaran_cupcake_02.m2", + value = "dalaran_cupcake_02.m2", + }, + { + fileId = "243036", + text = "dalaran_cupcake_03.m2", + value = "dalaran_cupcake_03.m2", + }, + { + fileId = "243037", + text = "dalaran_cupcake_04.m2", + value = "dalaran_cupcake_04.m2", + }, + { + fileId = "243038", + text = "dalaran_doughnut_01.m2", + value = "dalaran_doughnut_01.m2", + }, + { + fileId = "243039", + text = "dalaran_doughnut_02.m2", + value = "dalaran_doughnut_02.m2", + }, + { + fileId = "243040", + text = "dalaran_doughnut_stand.m2", + value = "dalaran_doughnut_stand.m2", + }, + { + fileId = "243044", + text = "dalaran_eye_01.m2", + value = "dalaran_eye_01.m2", + }, + { + fileId = "243046", + text = "dalaran_flower_stand.m2", + value = "dalaran_flower_stand.m2", + }, + { + fileId = "243047", + text = "dalaran_forge.m2", + value = "dalaran_forge.m2", + }, + { + fileId = "243050", + text = "dalaran_forgearms.m2", + value = "dalaran_forgearms.m2", + }, + { + fileId = "243052", + text = "dalaran_forgesmelter.m2", + value = "dalaran_forgesmelter.m2", + }, + { + fileId = "243054", + text = "dalaran_forsale_01.m2", + value = "dalaran_forsale_01.m2", + }, + { + fileId = "243055", + text = "dalaran_fountain_01.m2", + value = "dalaran_fountain_01.m2", + }, + { + fileId = "243056", + text = "dalaran_fountain_02.m2", + value = "dalaran_fountain_02.m2", + }, + { + fileId = "243065", + text = "dalaran_fruit_stand.m2", + value = "dalaran_fruit_stand.m2", + }, + { + fileId = "243067", + text = "dalaran_greenhouse.m2", + value = "dalaran_greenhouse.m2", + }, + { + fileId = "243068", + text = "dalaran_greenhouse_glass.m2", + value = "dalaran_greenhouse_glass.m2", + }, + { + fileId = "243071", + text = "dalaran_guild_counter01.m2", + value = "dalaran_guild_counter01.m2", + }, + { + fileId = "243072", + text = "dalaran_guild_counter02.m2", + value = "dalaran_guild_counter02.m2", + }, + { + fileId = "243074", + text = "dalaran_guildvault_01.m2", + value = "dalaran_guildvault_01.m2", + }, + { + fileId = "243076", + text = "dalaran_hat_01.m2", + value = "dalaran_hat_01.m2", + }, + { + fileId = "243077", + text = "dalaran_helm_deepdivehelm_space.m2", + value = "dalaran_helm_deepdivehelm_space.m2", + }, + { + fileId = "243078", + text = "dalaran_helm_mail_northrend_d_01.m2", + value = "dalaran_helm_mail_northrend_d_01.m2", + }, + { + fileId = "243079", + text = "dalaran_helm_mask_plague.m2", + value = "dalaran_helm_mask_plague.m2", + }, + { + fileId = "243080", + text = "dalaran_helm_plate_northrend_d_01.m2", + value = "dalaran_helm_plate_northrend_d_01.m2", + }, + { + fileId = "243081", + text = "dalaran_helm_plate_viking_d_01.m2", + value = "dalaran_helm_plate_viking_d_01.m2", + }, + { + fileId = "243082", + text = "dalaran_helm_robe_mage_b_01.m2", + value = "dalaran_helm_robe_mage_b_01.m2", + }, + { + fileId = "243083", + text = "dalaran_helm_robe_raidmage_b_01.m2", + value = "dalaran_helm_robe_raidmage_b_01.m2", + }, + { + fileId = "243084", + text = "dalaran_helm_robe_raidmage_d_01.m2", + value = "dalaran_helm_robe_raidmage_d_01.m2", + }, + { + fileId = "243085", + text = "dalaran_helm_robe_raidmage_f_01.m2", + value = "dalaran_helm_robe_raidmage_f_01.m2", + }, + { + fileId = "243087", + text = "dalaran_inn_window.m2", + value = "dalaran_inn_window.m2", + }, + { + fileId = "243088", + text = "dalaran_jewelcounter.m2", + value = "dalaran_jewelcounter.m2", + }, + { + fileId = "194468", + text = "dalaran_lamppost01.m2", + value = "dalaran_lamppost01.m2", + }, + { + fileId = "194470", + text = "dalaran_lampwall01.m2", + value = "dalaran_lampwall01.m2", + }, + { + fileId = "243090", + text = "dalaran_longbanners01.m2", + value = "dalaran_longbanners01.m2", + }, + { + fileId = "243091", + text = "dalaran_mageportal_01.m2", + value = "dalaran_mageportal_01.m2", + }, + { + fileId = "243092", + text = "dalaran_magicaltrash_01.m2", + value = "dalaran_magicaltrash_01.m2", + }, + { + fileId = "243093", + text = "dalaran_magicaltrash_02.m2", + value = "dalaran_magicaltrash_02.m2", + }, + { + fileId = "243094", + text = "dalaran_magicaltrash_03.m2", + value = "dalaran_magicaltrash_03.m2", + }, + { + fileId = "243095", + text = "dalaran_magicaltrash_04.m2", + value = "dalaran_magicaltrash_04.m2", + }, + { + fileId = "243096", + text = "dalaran_painting_01.m2", + value = "dalaran_painting_01.m2", + }, + { + fileId = "243097", + text = "dalaran_painting_02.m2", + value = "dalaran_painting_02.m2", + }, + { + fileId = "243098", + text = "dalaran_painting_03.m2", + value = "dalaran_painting_03.m2", + }, + { + fileId = "243099", + text = "dalaran_painting_04.m2", + value = "dalaran_painting_04.m2", + }, + { + fileId = "243100", + text = "dalaran_painting_05.m2", + value = "dalaran_painting_05.m2", + }, + { + fileId = "243101", + text = "dalaran_painting_06.m2", + value = "dalaran_painting_06.m2", + }, + { + fileId = "243102", + text = "dalaran_painting_07.m2", + value = "dalaran_painting_07.m2", + }, + { + fileId = "243103", + text = "dalaran_painting_08.m2", + value = "dalaran_painting_08.m2", + }, + { + fileId = "243104", + text = "dalaran_painting_09.m2", + value = "dalaran_painting_09.m2", + }, + { + fileId = "243105", + text = "dalaran_painting_10.m2", + value = "dalaran_painting_10.m2", + }, + { + fileId = "243106", + text = "dalaran_painting_11.m2", + value = "dalaran_painting_11.m2", + }, + { + fileId = "243108", + text = "dalaran_petcage_01.m2", + value = "dalaran_petcage_01.m2", + }, + { + fileId = "243109", + text = "dalaran_planter_01.m2", + value = "dalaran_planter_01.m2", + }, + { + fileId = "243110", + text = "dalaran_planter_02.m2", + value = "dalaran_planter_02.m2", + }, + { + fileId = "243112", + text = "dalaran_prisondoor_01.m2", + value = "dalaran_prisondoor_01.m2", + }, + { + fileId = "243113", + text = "dalaran_prisondoor_02.m2", + value = "dalaran_prisondoor_02.m2", + }, + { + fileId = "243118", + text = "dalaran_prisondoor_03.m2", + value = "dalaran_prisondoor_03.m2", + }, + { + fileId = "243119", + text = "dalaran_prisondoor_04.m2", + value = "dalaran_prisondoor_04.m2", + }, + { + fileId = "243120", + text = "dalaran_prisondoor_05.m2", + value = "dalaran_prisondoor_05.m2", + }, + { + fileId = "243121", + text = "dalaran_prisondoor_glow.m2", + value = "dalaran_prisondoor_glow.m2", + }, + { + fileId = "243122", + text = "dalaran_rhinorug_01.m2", + value = "dalaran_rhinorug_01.m2", + }, + { + fileId = "243124", + text = "dalaran_rug_01.m2", + value = "dalaran_rug_01.m2", + }, + { + fileId = "243126", + text = "dalaran_rug_02.m2", + value = "dalaran_rug_02.m2", + }, + { + fileId = "243127", + text = "dalaran_rug_03.m2", + value = "dalaran_rug_03.m2", + }, + { + fileId = "243129", + text = "dalaran_rug_04.m2", + value = "dalaran_rug_04.m2", + }, + { + fileId = "243133", + text = "dalaran_sconce_indoor_01.m2", + value = "dalaran_sconce_indoor_01.m2", + }, + { + fileId = "243134", + text = "dalaran_sconce_indoor_02.m2", + value = "dalaran_sconce_indoor_02.m2", + }, + { + fileId = "243135", + text = "dalaran_sconce_indoor_03.m2", + value = "dalaran_sconce_indoor_03.m2", + }, + { + fileId = "243136", + text = "dalaran_sculpture.m2", + value = "dalaran_sculpture.m2", + }, + { + fileId = "243141", + text = "dalaran_sewer_oldworld_pipe01.m2", + value = "dalaran_sewer_oldworld_pipe01.m2", + }, + { + fileId = "243142", + text = "dalaran_sewer_oldworld_pipe02.m2", + value = "dalaran_sewer_oldworld_pipe02.m2", + }, + { + fileId = "243143", + text = "dalaran_sewerdoor_01.m2", + value = "dalaran_sewerdoor_01.m2", + }, + { + fileId = "243144", + text = "dalaran_sewergrate_01.m2", + value = "dalaran_sewergrate_01.m2", + }, + { + fileId = "243147", + text = "dalaran_sign_alchemy.m2", + value = "dalaran_sign_alchemy.m2", + }, + { + fileId = "243152", + text = "dalaran_sign_armorshop.m2", + value = "dalaran_sign_armorshop.m2", + }, + { + fileId = "243154", + text = "dalaran_sign_bank.m2", + value = "dalaran_sign_bank.m2", + }, + { + fileId = "243156", + text = "dalaran_sign_cheeseshop.m2", + value = "dalaran_sign_cheeseshop.m2", + }, + { + fileId = "243157", + text = "dalaran_sign_enchanting.m2", + value = "dalaran_sign_enchanting.m2", + }, + { + fileId = "243158", + text = "dalaran_sign_engineering.m2", + value = "dalaran_sign_engineering.m2", + }, + { + fileId = "243159", + text = "dalaran_sign_firstaid.m2", + value = "dalaran_sign_firstaid.m2", + }, + { + fileId = "243161", + text = "dalaran_sign_generalgoods.m2", + value = "dalaran_sign_generalgoods.m2", + }, + { + fileId = "243163", + text = "dalaran_sign_informationcenter.m2", + value = "dalaran_sign_informationcenter.m2", + }, + { + fileId = "243164", + text = "dalaran_sign_inscription.m2", + value = "dalaran_sign_inscription.m2", + }, + { + fileId = "243165", + text = "dalaran_sign_jewelcrafting.m2", + value = "dalaran_sign_jewelcrafting.m2", + }, + { + fileId = "243166", + text = "dalaran_sign_leatherworking.m2", + value = "dalaran_sign_leatherworking.m2", + }, + { + fileId = "243168", + text = "dalaran_sign_magicshop.m2", + value = "dalaran_sign_magicshop.m2", + }, + { + fileId = "243169", + text = "dalaran_sign_mining.m2", + value = "dalaran_sign_mining.m2", + }, + { + fileId = "243170", + text = "dalaran_sign_petshop.m2", + value = "dalaran_sign_petshop.m2", + }, + { + fileId = "243172", + text = "dalaran_sign_rangedweaponshop.m2", + value = "dalaran_sign_rangedweaponshop.m2", + }, + { + fileId = "243174", + text = "dalaran_sign_staveswands.m2", + value = "dalaran_sign_staveswands.m2", + }, + { + fileId = "243175", + text = "dalaran_sign_tailoring.m2", + value = "dalaran_sign_tailoring.m2", + }, + { + fileId = "243177", + text = "dalaran_sign_tavern.m2", + value = "dalaran_sign_tavern.m2", + }, + { + fileId = "243179", + text = "dalaran_sign_toyshop.m2", + value = "dalaran_sign_toyshop.m2", + }, + { + fileId = "243181", + text = "dalaran_sign_weaponshop.m2", + value = "dalaran_sign_weaponshop.m2", + }, + { + fileId = "194471", + text = "dalaran_signpost.m2", + value = "dalaran_signpost.m2", + }, + { + fileId = "243184", + text = "dalaran_signpostsign.m2", + value = "dalaran_signpostsign.m2", + }, + { + fileId = "243186", + text = "dalaran_skinning_stand.m2", + value = "dalaran_skinning_stand.m2", + }, + { + fileId = "243187", + text = "dalaran_statueantonidas.m2", + value = "dalaran_statueantonidas.m2", + }, + { + fileId = "243188", + text = "dalaran_statueantonidas_plaque.m2", + value = "dalaran_statueantonidas_plaque.m2", + }, + { + fileId = "243189", + text = "dalaran_table_01.m2", + value = "dalaran_table_01.m2", + }, + { + fileId = "243191", + text = "dalaran_toy_counter.m2", + value = "dalaran_toy_counter.m2", + }, + { + fileId = "243192", + text = "dalaran_toy_shelves01.m2", + value = "dalaran_toy_shelves01.m2", + }, + { + fileId = "243193", + text = "dalaran_toy_shelves02.m2", + value = "dalaran_toy_shelves02.m2", + }, + { + fileId = "243194", + text = "dalaran_toy_shelves03.m2", + value = "dalaran_toy_shelves03.m2", + }, + { + fileId = "243195", + text = "dalaran_toy_shelves04.m2", + value = "dalaran_toy_shelves04.m2", + }, + { + fileId = "243196", + text = "dalaran_wagon01.m2", + value = "dalaran_wagon01.m2", + }, + { + fileId = "243197", + text = "dalaran_wand_stand.m2", + value = "dalaran_wand_stand.m2", + }, + { + fileId = "243198", + text = "dalaran_weapon_stand.m2", + value = "dalaran_weapon_stand.m2", + }, + { + fileId = "243200", + text = "dalaran_well_01.m2", + value = "dalaran_well_01.m2", + }, + { + fileId = "243203", + text = "dalarancounter_01.m2", + value = "dalarancounter_01.m2", + }, + { + fileId = "243210", + text = "dalaranshrub.m2", + value = "dalaranshrub.m2", + }, + { + fileId = "243231", + text = "inscriptionshopdoodads.m2", + value = "inscriptionshopdoodads.m2", + }, + { + fileId = "243232", + text = "jewelry_posterscroll_01.m2", + value = "jewelry_posterscroll_01.m2", + }, + { + fileId = "243233", + text = "jewelry_posterscroll_02.m2", + value = "jewelry_posterscroll_02.m2", + }, + { + fileId = "243235", + text = "jewelrystore_rug_01.m2", + value = "jewelrystore_rug_01.m2", + }, + { + fileId = "243239", + text = "nifty_stopwatch.m2", + value = "nifty_stopwatch.m2", + }, + { + fileId = "243255", + text = "robe_female_a_01.m2", + value = "robe_female_a_01.m2", + }, + { + fileId = "243256", + text = "robe_mage_b_01.m2", + value = "robe_mage_b_01.m2", + }, + { + fileId = "243257", + text = "robe_mage_d_01.m2", + value = "robe_mage_d_01.m2", + }, + { + fileId = "243258", + text = "robe_mage_f_01.m2", + value = "robe_mage_f_01.m2", + }, + { + children = { + { + fileId = "194472", + text = "dalaransewer01.m2", + value = "dalaransewer01.m2", + }, + { + fileId = "243263", + text = "dalaransewer_arena_wave_01.m2", + value = "dalaransewer_arena_wave_01.m2", + }, + { + fileId = "243264", + text = "dalaransewer_arenawaterfall.m2", + value = "dalaransewer_arenawaterfall.m2", + }, + { + fileId = "252201", + text = "dalaransewer_arenawaterfall_collision.m2", + value = "dalaransewer_arenawaterfall_collision.m2", + }, + { + fileId = "243265", + text = "dalaransewer_sewerwater_01.m2", + value = "dalaransewer_sewerwater_01.m2", + }, + { + fileId = "243266", + text = "dalaransewer_sewerwater_02.m2", + value = "dalaransewer_sewerwater_02.m2", + }, + { + fileId = "243267", + text = "dalaransewer_sewerwater_03.m2", + value = "dalaransewer_sewerwater_03.m2", + }, + { + fileId = "243268", + text = "dalaransewer_sewerwater_04.m2", + value = "dalaransewer_sewerwater_04.m2", + }, + { + fileId = "243269", + text = "dalaransewer_sewerwater_05.m2", + value = "dalaransewer_sewerwater_05.m2", + }, + { + fileId = "243270", + text = "dalaransewer_waterfall_endtube_long.m2", + value = "dalaransewer_waterfall_endtube_long.m2", + }, + { + fileId = "243271", + text = "dalaransewer_waterfall_endtube_med.m2", + value = "dalaransewer_waterfall_endtube_med.m2", + }, + { + fileId = "243272", + text = "dalaransewer_waterfall_endtube_short.m2", + value = "dalaransewer_waterfall_endtube_short.m2", + }, + { + fileId = "243273", + text = "dalaransewer_waterfall_halftube_long.m2", + value = "dalaransewer_waterfall_halftube_long.m2", + }, + { + fileId = "243274", + text = "dalaransewer_waterfall_halftube_med.m2", + value = "dalaransewer_waterfall_halftube_med.m2", + }, + { + fileId = "243275", + text = "dalaransewer_waterfall_halftube_short.m2", + value = "dalaransewer_waterfall_halftube_short.m2", + }, + { + fileId = "243276", + text = "dalaransewer_waterfall_tube_01.m2", + value = "dalaransewer_waterfall_tube_01.m2", + }, + }, + text = "sewer", + value = "sewer", + }, + { + fileId = "243291", + text = "shoulder_mage_b_01.m2", + value = "shoulder_mage_b_01.m2", + }, + { + fileId = "243292", + text = "shoulder_mage_f_01.m2", + value = "shoulder_mage_f_01.m2", + }, + { + children = { + { + fileId = "358381", + text = "dalaran_tirionstatue_plaque.m2", + value = "dalaran_tirionstatue_plaque.m2", + }, + }, + text = "statue", + value = "statue", + }, + { + fileId = "243295", + text = "tradeskill_enchanting_01.m2", + value = "tradeskill_enchanting_01.m2", + }, + { + fileId = "243296", + text = "tradeskill_enchanting_02.m2", + value = "tradeskill_enchanting_02.m2", + }, + { + fileId = "243297", + text = "tradeskill_firstaid_01.m2", + value = "tradeskill_firstaid_01.m2", + }, + { + fileId = "243298", + text = "tradeskill_firstaid_02.m2", + value = "tradeskill_firstaid_02.m2", + }, + { + fileId = "243299", + text = "tradeskill_fishing_01.m2", + value = "tradeskill_fishing_01.m2", + }, + { + fileId = "243300", + text = "tradeskill_herbs_01.m2", + value = "tradeskill_herbs_01.m2", + }, + { + fileId = "243301", + text = "tradeskill_herbs_02.m2", + value = "tradeskill_herbs_02.m2", + }, + { + fileId = "243302", + text = "tradeskill_leatherworking_01.m2", + value = "tradeskill_leatherworking_01.m2", + }, + { + fileId = "243303", + text = "tradeskill_leatherworking_02.m2", + value = "tradeskill_leatherworking_02.m2", + }, + { + fileId = "243304", + text = "tradeskill_skinning_01.m2", + value = "tradeskill_skinning_01.m2", + }, + { + fileId = "243305", + text = "tradeskill_skinning_02.m2", + value = "tradeskill_skinning_02.m2", + }, + { + fileId = "243306", + text = "tradeskill_tailoring_01.m2", + value = "tradeskill_tailoring_01.m2", + }, + { + fileId = "243307", + text = "tradeskill_tailoring_02.m2", + value = "tradeskill_tailoring_02.m2", + }, + { + children = { + { + fileId = "243313", + text = "dalaranbigtree_01.m2", + value = "dalaranbigtree_01.m2", + }, + { + fileId = "243314", + text = "dalaranbush_01.m2", + value = "dalaranbush_01.m2", + }, + { + fileId = "243315", + text = "dalarantree_01.m2", + value = "dalarantree_01.m2", + }, + { + fileId = "243316", + text = "dalarantree_02.m2", + value = "dalarantree_02.m2", + }, + }, + text = "tree", + value = "tree", + }, + }, + text = "dalaran", + value = "dalaran", + }, + { + children = { + { + fileId = "194474", + text = "bd_lavafall01.m2", + value = "bd_lavafall01.m2", + }, + { + fileId = "194475", + text = "bd_lavafall02.m2", + value = "bd_lavafall02.m2", + }, + { + fileId = "194476", + text = "bd_lavafall03.m2", + value = "bd_lavafall03.m2", + }, + { + fileId = "194478", + text = "db_dragonarm01_left.m2", + value = "db_dragonarm01_left.m2", + }, + { + fileId = "194479", + text = "db_dragonarm01_leftblack.m2", + value = "db_dragonarm01_leftblack.m2", + }, + { + fileId = "194480", + text = "db_dragonarm01_leftblue.m2", + value = "db_dragonarm01_leftblue.m2", + }, + { + fileId = "194481", + text = "db_dragonarm01_leftgray.m2", + value = "db_dragonarm01_leftgray.m2", + }, + { + fileId = "194482", + text = "db_dragonarm01_leftwhite.m2", + value = "db_dragonarm01_leftwhite.m2", + }, + { + fileId = "194483", + text = "db_dragonarm01_right.m2", + value = "db_dragonarm01_right.m2", + }, + { + fileId = "194484", + text = "db_dragonarm01_rightblack.m2", + value = "db_dragonarm01_rightblack.m2", + }, + { + fileId = "194485", + text = "db_dragonarm01_rightblue.m2", + value = "db_dragonarm01_rightblue.m2", + }, + { + fileId = "194486", + text = "db_dragonarm01_rightgray.m2", + value = "db_dragonarm01_rightgray.m2", + }, + { + fileId = "194487", + text = "db_dragonarm01_rightwhite.m2", + value = "db_dragonarm01_rightwhite.m2", + }, + { + fileId = "194488", + text = "db_dragonarmstraight_left.m2", + value = "db_dragonarmstraight_left.m2", + }, + { + fileId = "194489", + text = "db_dragonarmstraight_leftblack.m2", + value = "db_dragonarmstraight_leftblack.m2", + }, + { + fileId = "194490", + text = "db_dragonarmstraight_leftblue.m2", + value = "db_dragonarmstraight_leftblue.m2", + }, + { + fileId = "194491", + text = "db_dragonarmstraight_right.m2", + value = "db_dragonarmstraight_right.m2", + }, + { + fileId = "194492", + text = "db_dragonarmstraight_rightblack.m2", + value = "db_dragonarmstraight_rightblack.m2", + }, + { + fileId = "194493", + text = "db_dragonarmstraight_rightblue.m2", + value = "db_dragonarmstraight_rightblue.m2", + }, + { + fileId = "194494", + text = "db_dragonclaw01_leftblue.m2", + value = "db_dragonclaw01_leftblue.m2", + }, + { + fileId = "194495", + text = "db_dragonfrozen001.m2", + value = "db_dragonfrozen001.m2", + }, + { + fileId = "194496", + text = "db_dragonfrozen002.m2", + value = "db_dragonfrozen002.m2", + }, + { + fileId = "194497", + text = "db_dragonfrozen003.m2", + value = "db_dragonfrozen003.m2", + }, + { + fileId = "194498", + text = "db_dragonhead01.m2", + value = "db_dragonhead01.m2", + }, + { + fileId = "194499", + text = "db_dragonhead02.m2", + value = "db_dragonhead02.m2", + }, + { + fileId = "194500", + text = "db_dragonhead03.m2", + value = "db_dragonhead03.m2", + }, + { + fileId = "194501", + text = "db_dragonhead04.m2", + value = "db_dragonhead04.m2", + }, + { + fileId = "194502", + text = "db_dragonjaw01.m2", + value = "db_dragonjaw01.m2", + }, + { + fileId = "194503", + text = "db_dragonjaw02.m2", + value = "db_dragonjaw02.m2", + }, + { + fileId = "194504", + text = "db_dragonjaw03.m2", + value = "db_dragonjaw03.m2", + }, + { + fileId = "194505", + text = "db_dragonjaw04.m2", + value = "db_dragonjaw04.m2", + }, + { + fileId = "194506", + text = "db_dragonleg01_left.m2", + value = "db_dragonleg01_left.m2", + }, + { + fileId = "194507", + text = "db_dragonleg01_right.m2", + value = "db_dragonleg01_right.m2", + }, + { + fileId = "194508", + text = "db_dragonrib01.m2", + value = "db_dragonrib01.m2", + }, + { + fileId = "194509", + text = "db_dragonrib01black.m2", + value = "db_dragonrib01black.m2", + }, + { + fileId = "194510", + text = "db_dragonrib01blue.m2", + value = "db_dragonrib01blue.m2", + }, + { + fileId = "194511", + text = "db_dragonrib01gray.m2", + value = "db_dragonrib01gray.m2", + }, + { + fileId = "194512", + text = "db_dragonrib01white.m2", + value = "db_dragonrib01white.m2", + }, + { + fileId = "194513", + text = "db_dragonribcage01.m2", + value = "db_dragonribcage01.m2", + }, + { + fileId = "194514", + text = "db_dragonribcage02.m2", + value = "db_dragonribcage02.m2", + }, + { + fileId = "194515", + text = "db_dragonribcage03.m2", + value = "db_dragonribcage03.m2", + }, + { + fileId = "194516", + text = "db_dragonribcage05.m2", + value = "db_dragonribcage05.m2", + }, + { + fileId = "194517", + text = "db_dragonshoulder01.m2", + value = "db_dragonshoulder01.m2", + }, + { + fileId = "194518", + text = "db_dragonshoulder02.m2", + value = "db_dragonshoulder02.m2", + }, + { + fileId = "194519", + text = "db_dragonsinglerib01.m2", + value = "db_dragonsinglerib01.m2", + }, + { + fileId = "194520", + text = "db_dragonsinglerib02.m2", + value = "db_dragonsinglerib02.m2", + }, + { + fileId = "194521", + text = "db_dragonsinglerib03.m2", + value = "db_dragonsinglerib03.m2", + }, + { + fileId = "194522", + text = "db_dragonskull01.m2", + value = "db_dragonskull01.m2", + }, + { + fileId = "194523", + text = "db_dragonskull02.m2", + value = "db_dragonskull02.m2", + }, + { + fileId = "194524", + text = "db_dragonskull03.m2", + value = "db_dragonskull03.m2", + }, + { + fileId = "194525", + text = "db_dragonskull04.m2", + value = "db_dragonskull04.m2", + }, + { + fileId = "194526", + text = "db_dragonskull05.m2", + value = "db_dragonskull05.m2", + }, + { + fileId = "194527", + text = "db_dragonskull_black.m2", + value = "db_dragonskull_black.m2", + }, + { + fileId = "194528", + text = "db_dragonsparerib01.m2", + value = "db_dragonsparerib01.m2", + }, + { + fileId = "194529", + text = "db_dragonspareribs01.m2", + value = "db_dragonspareribs01.m2", + }, + { + fileId = "194530", + text = "db_dragonspareribs01blue.m2", + value = "db_dragonspareribs01blue.m2", + }, + { + fileId = "194531", + text = "db_dragonspareribs02.m2", + value = "db_dragonspareribs02.m2", + }, + { + fileId = "194532", + text = "db_dragonspike01.m2", + value = "db_dragonspike01.m2", + }, + { + fileId = "194533", + text = "db_dragonspike01black.m2", + value = "db_dragonspike01black.m2", + }, + { + fileId = "194534", + text = "db_dragonspike01blue.m2", + value = "db_dragonspike01blue.m2", + }, + { + fileId = "194535", + text = "db_dragonspike01tan.m2", + value = "db_dragonspike01tan.m2", + }, + { + fileId = "194536", + text = "db_dragonspike02.m2", + value = "db_dragonspike02.m2", + }, + { + fileId = "194537", + text = "db_dragonspike03.m2", + value = "db_dragonspike03.m2", + }, + { + fileId = "194538", + text = "db_dragonspine01.m2", + value = "db_dragonspine01.m2", + }, + { + fileId = "194539", + text = "db_dragonspine01_black.m2", + value = "db_dragonspine01_black.m2", + }, + { + fileId = "194540", + text = "db_dragonspine01_blue.m2", + value = "db_dragonspine01_blue.m2", + }, + { + fileId = "194541", + text = "db_dragonspine01_gray.m2", + value = "db_dragonspine01_gray.m2", + }, + { + fileId = "194542", + text = "db_dragonspine01_white.m2", + value = "db_dragonspine01_white.m2", + }, + { + fileId = "194543", + text = "db_dragonspine02.m2", + value = "db_dragonspine02.m2", + }, + { + fileId = "194544", + text = "db_dragonspine02blue.m2", + value = "db_dragonspine02blue.m2", + }, + { + fileId = "194545", + text = "db_dragonspine03.m2", + value = "db_dragonspine03.m2", + }, + { + fileId = "194546", + text = "db_dragonspine04.m2", + value = "db_dragonspine04.m2", + }, + { + fileId = "194547", + text = "db_dragonspinepiece01.m2", + value = "db_dragonspinepiece01.m2", + }, + { + fileId = "194548", + text = "db_dragonspinepiece02.m2", + value = "db_dragonspinepiece02.m2", + }, + { + fileId = "194549", + text = "db_dragonspinepiece03.m2", + value = "db_dragonspinepiece03.m2", + }, + { + fileId = "194550", + text = "db_dragonwing01_left.m2", + value = "db_dragonwing01_left.m2", + }, + { + fileId = "194551", + text = "db_dragonwing01_leftblack.m2", + value = "db_dragonwing01_leftblack.m2", + }, + { + fileId = "194552", + text = "db_dragonwing01_leftblue.m2", + value = "db_dragonwing01_leftblue.m2", + }, + { + fileId = "194553", + text = "db_dragonwing01_leftgray.m2", + value = "db_dragonwing01_leftgray.m2", + }, + { + fileId = "194554", + text = "db_dragonwing01_leftwhite.m2", + value = "db_dragonwing01_leftwhite.m2", + }, + { + fileId = "194555", + text = "db_dragonwing01_right.m2", + value = "db_dragonwing01_right.m2", + }, + { + fileId = "194556", + text = "db_dragonwing01_rightblack.m2", + value = "db_dragonwing01_rightblack.m2", + }, + { + fileId = "194557", + text = "db_dragonwing01_rightblue.m2", + value = "db_dragonwing01_rightblue.m2", + }, + { + fileId = "194558", + text = "db_dragonwing01_rightgray.m2", + value = "db_dragonwing01_rightgray.m2", + }, + { + fileId = "194559", + text = "db_dragonwing01_rightwhite.m2", + value = "db_dragonwing01_rightwhite.m2", + }, + { + fileId = "194560", + text = "db_flowers01.m2", + value = "db_flowers01.m2", + }, + { + fileId = "194561", + text = "db_flowers02.m2", + value = "db_flowers02.m2", + }, + { + fileId = "194562", + text = "db_flowers03.m2", + value = "db_flowers03.m2", + }, + { + fileId = "194563", + text = "db_frostmornealtar_01.m2", + value = "db_frostmornealtar_01.m2", + }, + { + fileId = "194564", + text = "db_frostmornealtar_02.m2", + value = "db_frostmornealtar_02.m2", + }, + { + fileId = "194565", + text = "db_leaves_fall.m2", + value = "db_leaves_fall.m2", + }, + { + fileId = "194566", + text = "db_leaves_fall02.m2", + value = "db_leaves_fall02.m2", + }, + { + fileId = "194567", + text = "db_lilypads01.m2", + value = "db_lilypads01.m2", + }, + { + fileId = "194568", + text = "db_lilypads02.m2", + value = "db_lilypads02.m2", + }, + { + fileId = "194571", + text = "db_red_dragon_shrine_leafs.m2", + value = "db_red_dragon_shrine_leafs.m2", + }, + { + fileId = "194580", + text = "dragonblight_bush01.m2", + value = "dragonblight_bush01.m2", + }, + { + fileId = "194581", + text = "dragonblight_bush02.m2", + value = "dragonblight_bush02.m2", + }, + { + fileId = "194583", + text = "dragonblight_bush03.m2", + value = "dragonblight_bush03.m2", + }, + { + fileId = "194584", + text = "dragonblight_cliff_01.m2", + value = "dragonblight_cliff_01.m2", + }, + { + fileId = "194585", + text = "dragonblight_cliff_02.m2", + value = "dragonblight_cliff_02.m2", + }, + { + fileId = "194586", + text = "dragonblight_cliff_03.m2", + value = "dragonblight_cliff_03.m2", + }, + { + fileId = "194587", + text = "dragonblight_cliff_04.m2", + value = "dragonblight_cliff_04.m2", + }, + { + fileId = "194588", + text = "dragonblight_cliff_05.m2", + value = "dragonblight_cliff_05.m2", + }, + { + fileId = "194589", + text = "dragonblight_cliff_06.m2", + value = "dragonblight_cliff_06.m2", + }, + { + fileId = "243323", + text = "dragonblight_cliff_grey_01.m2", + value = "dragonblight_cliff_grey_01.m2", + }, + { + fileId = "243324", + text = "dragonblight_cliff_grey_02.m2", + value = "dragonblight_cliff_grey_02.m2", + }, + { + fileId = "243325", + text = "dragonblight_cliff_grey_03.m2", + value = "dragonblight_cliff_grey_03.m2", + }, + { + fileId = "243326", + text = "dragonblight_cliff_grey_04.m2", + value = "dragonblight_cliff_grey_04.m2", + }, + { + fileId = "243327", + text = "dragonblight_cliff_grey_05.m2", + value = "dragonblight_cliff_grey_05.m2", + }, + { + fileId = "243328", + text = "dragonblight_cliff_grey_06.m2", + value = "dragonblight_cliff_grey_06.m2", + }, + { + fileId = "194592", + text = "dragonblight_debrispile_01.m2", + value = "dragonblight_debrispile_01.m2", + }, + { + fileId = "194593", + text = "dragonblight_debrispile_02.m2", + value = "dragonblight_debrispile_02.m2", + }, + { + fileId = "243331", + text = "dragonblight_fires_lower_01.m2", + value = "dragonblight_fires_lower_01.m2", + }, + { + fileId = "243332", + text = "dragonblight_fires_lower_east_02.m2", + value = "dragonblight_fires_lower_east_02.m2", + }, + { + fileId = "243333", + text = "dragonblight_fires_lower_west_03.m2", + value = "dragonblight_fires_lower_west_03.m2", + }, + { + fileId = "243334", + text = "dragonblight_fires_upper_east_01.m2", + value = "dragonblight_fires_upper_east_01.m2", + }, + { + fileId = "243335", + text = "dragonblight_fires_upper_north_03.m2", + value = "dragonblight_fires_upper_north_03.m2", + }, + { + fileId = "243336", + text = "dragonblight_fires_upper_west_02.m2", + value = "dragonblight_fires_upper_west_02.m2", + }, + { + fileId = "194594", + text = "dragonblight_icearch_01.m2", + value = "dragonblight_icearch_01.m2", + }, + { + fileId = "194595", + text = "dragonblight_icearch_02.m2", + value = "dragonblight_icearch_02.m2", + }, + { + fileId = "194597", + text = "dragonblight_iceberg_large_01.m2", + value = "dragonblight_iceberg_large_01.m2", + }, + { + fileId = "194598", + text = "dragonblight_iceberg_large_02.m2", + value = "dragonblight_iceberg_large_02.m2", + }, + { + fileId = "194599", + text = "dragonblight_iceberg_large_03.m2", + value = "dragonblight_iceberg_large_03.m2", + }, + { + fileId = "194600", + text = "dragonblight_iceberg_large_04.m2", + value = "dragonblight_iceberg_large_04.m2", + }, + { + fileId = "194601", + text = "dragonblight_iceberg_large_05.m2", + value = "dragonblight_iceberg_large_05.m2", + }, + { + fileId = "194602", + text = "dragonblight_iceberg_large_06.m2", + value = "dragonblight_iceberg_large_06.m2", + }, + { + fileId = "194605", + text = "dragonblight_icecliff_01.m2", + value = "dragonblight_icecliff_01.m2", + }, + { + fileId = "194606", + text = "dragonblight_icecliff_02.m2", + value = "dragonblight_icecliff_02.m2", + }, + { + fileId = "194607", + text = "dragonblight_icecliff_03.m2", + value = "dragonblight_icecliff_03.m2", + }, + { + fileId = "194608", + text = "dragonblight_icecliff_04.m2", + value = "dragonblight_icecliff_04.m2", + }, + { + fileId = "194609", + text = "dragonblight_icecliff_05.m2", + value = "dragonblight_icecliff_05.m2", + }, + { + fileId = "194610", + text = "dragonblight_icecliff_06.m2", + value = "dragonblight_icecliff_06.m2", + }, + { + fileId = "194613", + text = "dragonblight_icedragonwall_01.m2", + value = "dragonblight_icedragonwall_01.m2", + }, + { + fileId = "194614", + text = "dragonblight_icerock_01.m2", + value = "dragonblight_icerock_01.m2", + }, + { + fileId = "194615", + text = "dragonblight_icerock_02.m2", + value = "dragonblight_icerock_02.m2", + }, + { + fileId = "194616", + text = "dragonblight_icerock_03.m2", + value = "dragonblight_icerock_03.m2", + }, + { + fileId = "194617", + text = "dragonblight_icerock_04.m2", + value = "dragonblight_icerock_04.m2", + }, + { + fileId = "194618", + text = "dragonblight_icerock_05.m2", + value = "dragonblight_icerock_05.m2", + }, + { + fileId = "194619", + text = "dragonblight_icerock_06.m2", + value = "dragonblight_icerock_06.m2", + }, + { + fileId = "194621", + text = "dragonblight_iceshard_01.m2", + value = "dragonblight_iceshard_01.m2", + }, + { + fileId = "194622", + text = "dragonblight_iceshard_02.m2", + value = "dragonblight_iceshard_02.m2", + }, + { + fileId = "194623", + text = "dragonblight_iceshard_03.m2", + value = "dragonblight_iceshard_03.m2", + }, + { + fileId = "194624", + text = "dragonblight_iceshard_04.m2", + value = "dragonblight_iceshard_04.m2", + }, + { + fileId = "194625", + text = "dragonblight_iceshard_05.m2", + value = "dragonblight_iceshard_05.m2", + }, + { + fileId = "194626", + text = "dragonblight_iceshard_06.m2", + value = "dragonblight_iceshard_06.m2", + }, + { + fileId = "194627", + text = "dragonblight_icicle_01.m2", + value = "dragonblight_icicle_01.m2", + }, + { + fileId = "194628", + text = "dragonblight_icicle_02.m2", + value = "dragonblight_icicle_02.m2", + }, + { + fileId = "243338", + text = "dragonblight_leaves_01.m2", + value = "dragonblight_leaves_01.m2", + }, + { + fileId = "243339", + text = "dragonblight_leaveslarge.m2", + value = "dragonblight_leaveslarge.m2", + }, + { + fileId = "194633", + text = "dragonblight_rock_01.m2", + value = "dragonblight_rock_01.m2", + }, + { + fileId = "194634", + text = "dragonblight_rock_02.m2", + value = "dragonblight_rock_02.m2", + }, + { + fileId = "194635", + text = "dragonblight_rock_03.m2", + value = "dragonblight_rock_03.m2", + }, + { + fileId = "194636", + text = "dragonblight_rock_04.m2", + value = "dragonblight_rock_04.m2", + }, + { + fileId = "194637", + text = "dragonblight_rock_05.m2", + value = "dragonblight_rock_05.m2", + }, + { + fileId = "194638", + text = "dragonblight_rock_06.m2", + value = "dragonblight_rock_06.m2", + }, + { + fileId = "243340", + text = "dragonblight_rock_grey_01.m2", + value = "dragonblight_rock_grey_01.m2", + }, + { + fileId = "243341", + text = "dragonblight_rock_grey_02.m2", + value = "dragonblight_rock_grey_02.m2", + }, + { + fileId = "243342", + text = "dragonblight_rock_grey_03.m2", + value = "dragonblight_rock_grey_03.m2", + }, + { + fileId = "243343", + text = "dragonblight_rock_grey_04.m2", + value = "dragonblight_rock_grey_04.m2", + }, + { + fileId = "243344", + text = "dragonblight_rock_grey_05.m2", + value = "dragonblight_rock_grey_05.m2", + }, + { + fileId = "243345", + text = "dragonblight_rock_grey_06.m2", + value = "dragonblight_rock_grey_06.m2", + }, + { + fileId = "194639", + text = "dragonblight_shard_01.m2", + value = "dragonblight_shard_01.m2", + }, + { + fileId = "194640", + text = "dragonblight_shard_02.m2", + value = "dragonblight_shard_02.m2", + }, + { + fileId = "194641", + text = "dragonblight_shard_03.m2", + value = "dragonblight_shard_03.m2", + }, + { + fileId = "194642", + text = "dragonblight_shard_04.m2", + value = "dragonblight_shard_04.m2", + }, + { + fileId = "194643", + text = "dragonblight_shard_05.m2", + value = "dragonblight_shard_05.m2", + }, + { + fileId = "194644", + text = "dragonblight_shard_06.m2", + value = "dragonblight_shard_06.m2", + }, + { + fileId = "243346", + text = "dragonblight_shard_grey_01.m2", + value = "dragonblight_shard_grey_01.m2", + }, + { + fileId = "243347", + text = "dragonblight_shard_grey_02.m2", + value = "dragonblight_shard_grey_02.m2", + }, + { + fileId = "243348", + text = "dragonblight_shard_grey_03.m2", + value = "dragonblight_shard_grey_03.m2", + }, + { + fileId = "243349", + text = "dragonblight_shard_grey_04.m2", + value = "dragonblight_shard_grey_04.m2", + }, + { + fileId = "243350", + text = "dragonblight_shard_grey_05.m2", + value = "dragonblight_shard_grey_05.m2", + }, + { + fileId = "243351", + text = "dragonblight_shard_grey_06.m2", + value = "dragonblight_shard_grey_06.m2", + }, + { + fileId = "194646", + text = "dragonblight_shoreline_ice_01.m2", + value = "dragonblight_shoreline_ice_01.m2", + }, + { + fileId = "194647", + text = "dragonblight_shoreline_ice_02.m2", + value = "dragonblight_shoreline_ice_02.m2", + }, + { + fileId = "243352", + text = "dragonblight_shoreline_ice_single.m2", + value = "dragonblight_shoreline_ice_single.m2", + }, + { + fileId = "194650", + text = "dragonblight_titanicesheet_01.m2", + value = "dragonblight_titanicesheet_01.m2", + }, + { + fileId = "194651", + text = "dragonblight_titanicesheet_02.m2", + value = "dragonblight_titanicesheet_02.m2", + }, + { + fileId = "194652", + text = "dragonblight_titanicesheet_03.m2", + value = "dragonblight_titanicesheet_03.m2", + }, + { + fileId = "194654", + text = "dragonblight_tree01.m2", + value = "dragonblight_tree01.m2", + }, + { + fileId = "194656", + text = "dragonblight_tree02.m2", + value = "dragonblight_tree02.m2", + }, + { + fileId = "194658", + text = "dragonblight_tree03.m2", + value = "dragonblight_tree03.m2", + }, + { + fileId = "194660", + text = "dragonblight_tree04.m2", + value = "dragonblight_tree04.m2", + }, + { + fileId = "194662", + text = "dragonblight_tree05.m2", + value = "dragonblight_tree05.m2", + }, + { + fileId = "194663", + text = "dragonblight_tree06.m2", + value = "dragonblight_tree06.m2", + }, + { + fileId = "194664", + text = "dragonblight_tree07.m2", + value = "dragonblight_tree07.m2", + }, + { + fileId = "194665", + text = "dragonblight_treeinfected01.m2", + value = "dragonblight_treeinfected01.m2", + }, + { + fileId = "194666", + text = "dragonblight_treeinfected02.m2", + value = "dragonblight_treeinfected02.m2", + }, + { + fileId = "194667", + text = "dragonblight_treeinfected03.m2", + value = "dragonblight_treeinfected03.m2", + }, + { + fileId = "194668", + text = "dragonblight_treeinfected04.m2", + value = "dragonblight_treeinfected04.m2", + }, + { + children = { + { + fileId = "194697", + text = "hugeprotodragonskull01.m2", + value = "hugeprotodragonskull01.m2", + }, + }, + text = "hugeprotodragonskull", + value = "hugeprotodragonskull", + }, + { + children = { + { + fileId = "194699", + text = "nd_cavespiderweb.m2", + value = "nd_cavespiderweb.m2", + }, + }, + text = "nerubianspiderwebs", + value = "nerubianspiderwebs", + }, + { + fileId = "243356", + text = "scytheofantiok.m2", + value = "scytheofantiok.m2", + }, + { + children = { + { + fileId = "243357", + text = "dragonblight_combin_waterfall_01.m2", + value = "dragonblight_combin_waterfall_01.m2", + }, + { + fileId = "243358", + text = "dragonblight_combin_waterfall_02.m2", + value = "dragonblight_combin_waterfall_02.m2", + }, + { + fileId = "243359", + text = "dragonblight_combin_waterfall_03.m2", + value = "dragonblight_combin_waterfall_03.m2", + }, + { + fileId = "243360", + text = "dragonblight_combin_waterfall_04.m2", + value = "dragonblight_combin_waterfall_04.m2", + }, + { + fileId = "243361", + text = "dragonblight_combin_waterfall_05.m2", + value = "dragonblight_combin_waterfall_05.m2", + }, + { + fileId = "243362", + text = "dragonblight_combin_waterfall_06.m2", + value = "dragonblight_combin_waterfall_06.m2", + }, + { + fileId = "243363", + text = "dragonblight_combin_waterfall_07.m2", + value = "dragonblight_combin_waterfall_07.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + { + children = { + { + fileId = "194702", + text = "dragonblight_windgust_01.m2", + value = "dragonblight_windgust_01.m2", + }, + }, + text = "weatherfx", + value = "weatherfx", + }, + }, + text = "dragonblight", + value = "dragonblight", + }, + { + children = { + { + children = { + { + fileId = "194703", + text = "dt_bigdoor.m2", + value = "dt_bigdoor.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "194706", + text = "gundrak_trapdoor01.m2", + value = "gundrak_trapdoor01.m2", + }, + }, + text = "trapdoors", + value = "trapdoors", + }, + }, + text = "draktheron", + value = "draktheron", + }, + { + children = { + { + fileId = "255423", + text = "fb_darkshore_totem01.m2", + value = "fb_darkshore_totem01.m2", + }, + { + fileId = "255424", + text = "fb_darkshore_totem02.m2", + value = "fb_darkshore_totem02.m2", + }, + { + fileId = "255403", + text = "fb_lamppost_darkshore_01.m2", + value = "fb_lamppost_darkshore_01.m2", + }, + { + fileId = "194710", + text = "fb_lamppost_gh_01.m2", + value = "fb_lamppost_gh_01.m2", + }, + { + fileId = "255405", + text = "fb_loghouse_darkshore_01.m2", + value = "fb_loghouse_darkshore_01.m2", + }, + { + fileId = "255406", + text = "fb_loghouse_darkshore_02.m2", + value = "fb_loghouse_darkshore_02.m2", + }, + { + fileId = "255407", + text = "fb_loghouse_darkshore_03.m2", + value = "fb_loghouse_darkshore_03.m2", + }, + { + fileId = "194711", + text = "fb_loghouse_gh_01.m2", + value = "fb_loghouse_gh_01.m2", + }, + { + fileId = "194712", + text = "fb_loghouse_gh_02.m2", + value = "fb_loghouse_gh_02.m2", + }, + { + fileId = "194713", + text = "fb_loghouse_gh_03.m2", + value = "fb_loghouse_gh_03.m2", + }, + { + fileId = "194714", + text = "fb_loghouse_gh_snow_01.m2", + value = "fb_loghouse_gh_snow_01.m2", + }, + { + fileId = "194715", + text = "fb_loghouse_gh_snow_02.m2", + value = "fb_loghouse_gh_snow_02.m2", + }, + { + fileId = "194716", + text = "fb_loghouse_gh_snow_03.m2", + value = "fb_loghouse_gh_snow_03.m2", + }, + { + fileId = "194719", + text = "fb_totem01.m2", + value = "fb_totem01.m2", + }, + { + fileId = "194720", + text = "fb_totem01_snow.m2", + value = "fb_totem01_snow.m2", + }, + { + fileId = "194721", + text = "fb_totem02.m2", + value = "fb_totem02.m2", + }, + { + fileId = "194722", + text = "fb_totem02_snow.m2", + value = "fb_totem02_snow.m2", + }, + { + fileId = "293765", + text = "fb_wall_01_darkshore.m2", + value = "fb_wall_01_darkshore.m2", + }, + { + fileId = "194725", + text = "fb_wall_01_grizzlyhills.m2", + value = "fb_wall_01_grizzlyhills.m2", + }, + { + fileId = "194726", + text = "fb_wall_01_grizzlyhills_snow.m2", + value = "fb_wall_01_grizzlyhills_snow.m2", + }, + { + fileId = "293774", + text = "fb_wall_02_darkshore.m2", + value = "fb_wall_02_darkshore.m2", + }, + { + fileId = "194727", + text = "fb_wall_02_grizzlyhills.m2", + value = "fb_wall_02_grizzlyhills.m2", + }, + { + fileId = "194728", + text = "fb_wall_02_grizzlyhills_snow.m2", + value = "fb_wall_02_grizzlyhills_snow.m2", + }, + { + fileId = "293775", + text = "fb_wall_03_darkshore.m2", + value = "fb_wall_03_darkshore.m2", + }, + { + fileId = "194729", + text = "fb_wall_03_grizzlyhills.m2", + value = "fb_wall_03_grizzlyhills.m2", + }, + { + fileId = "194730", + text = "fb_wall_03_grizzlyhills_snow.m2", + value = "fb_wall_03_grizzlyhills_snow.m2", + }, + { + fileId = "293783", + text = "fb_wallgate_01_darkshore.m2", + value = "fb_wallgate_01_darkshore.m2", + }, + { + fileId = "194733", + text = "fb_wallgate_01_grizzlyhills.m2", + value = "fb_wallgate_01_grizzlyhills.m2", + }, + { + fileId = "194734", + text = "fb_wallgate_01_grizzlyhills_snow.m2", + value = "fb_wallgate_01_grizzlyhills_snow.m2", + }, + { + fileId = "293782", + text = "fb_wallgateteeth_01_darkshore.m2", + value = "fb_wallgateteeth_01_darkshore.m2", + }, + { + fileId = "194735", + text = "fb_wallgateteeth_01_grizzlyhills.m2", + value = "fb_wallgateteeth_01_grizzlyhills.m2", + }, + { + fileId = "194736", + text = "fb_wallgateteeth_01_grizzlyhills_snow.m2", + value = "fb_wallgateteeth_01_grizzlyhills_snow.m2", + }, + }, + text = "furbolgs", + value = "furbolgs", + }, + { + children = { + { + fileId = "243364", + text = "alliance_tabard.m2", + value = "alliance_tabard.m2", + }, + { + children = { + { + fileId = "194737", + text = "borean_brokenroadlamp01.m2", + value = "borean_brokenroadlamp01.m2", + }, + { + fileId = "194739", + text = "borean_roadlamp01.m2", + value = "borean_roadlamp01.m2", + }, + { + fileId = "194742", + text = "borean_signpost01.m2", + value = "borean_signpost01.m2", + }, + }, + text = "ancientnightelf", + value = "ancientnightelf", + }, + { + children = { + { + fileId = "252835", + text = "argent_long_banner_01.m2", + value = "argent_long_banner_01.m2", + }, + { + fileId = "329303", + text = "argent_shield.m2", + value = "argent_shield.m2", + }, + { + fileId = "311949", + text = "argent_web_door_01.m2", + value = "argent_web_door_01.m2", + }, + { + fileId = "254462", + text = "argentcrusade_arch_01.m2", + value = "argentcrusade_arch_01.m2", + }, + { + fileId = "194744", + text = "argentcrusade_banner01.m2", + value = "argentcrusade_banner01.m2", + }, + { + fileId = "309202", + text = "argentcrusade_banner01_nocoll.m2", + value = "argentcrusade_banner01_nocoll.m2", + }, + { + fileId = "194745", + text = "argentcrusade_banner02.m2", + value = "argentcrusade_banner02.m2", + }, + { + fileId = "335580", + text = "argentcrusade_batteringram_01.m2", + value = "argentcrusade_batteringram_01.m2", + }, + { + fileId = "339913", + text = "argentcrusade_batteringram_02.m2", + value = "argentcrusade_batteringram_02.m2", + }, + { + fileId = "251630", + text = "argentcrusade_beervendor.m2", + value = "argentcrusade_beervendor.m2", + }, + { + fileId = "254463", + text = "argentcrusade_brick_01.m2", + value = "argentcrusade_brick_01.m2", + }, + { + fileId = "254464", + text = "argentcrusade_brick_02.m2", + value = "argentcrusade_brick_02.m2", + }, + { + fileId = "312682", + text = "argentcrusade_chest_01.m2", + value = "argentcrusade_chest_01.m2", + }, + { + fileId = "254465", + text = "argentcrusade_fence_01.m2", + value = "argentcrusade_fence_01.m2", + }, + { + fileId = "251631", + text = "argentcrusade_foodtent.m2", + value = "argentcrusade_foodtent.m2", + }, + { + fileId = "251633", + text = "argentcrusade_foodtent_02.m2", + value = "argentcrusade_foodtent_02.m2", + }, + { + fileId = "250882", + text = "argentcrusade_jousting_lane_end.m2", + value = "argentcrusade_jousting_lane_end.m2", + }, + { + fileId = "250883", + text = "argentcrusade_jousting_lane_middle.m2", + value = "argentcrusade_jousting_lane_middle.m2", + }, + { + fileId = "254466", + text = "argentcrusade_log_01.m2", + value = "argentcrusade_log_01.m2", + }, + { + fileId = "311967", + text = "argentcrusade_monsterdoor.m2", + value = "argentcrusade_monsterdoor.m2", + }, + { + fileId = "251634", + text = "argentcrusade_opentent.m2", + value = "argentcrusade_opentent.m2", + }, + { + fileId = "251635", + text = "argentcrusade_small01.m2", + value = "argentcrusade_small01.m2", + }, + { + fileId = "254264", + text = "argentcrusade_sword_in_ice.m2", + value = "argentcrusade_sword_in_ice.m2", + }, + { + fileId = "250884", + text = "argentcrusade_sword_n_stone.m2", + value = "argentcrusade_sword_n_stone.m2", + }, + { + fileId = "251637", + text = "argentcrusade_tent05.m2", + value = "argentcrusade_tent05.m2", + }, + { + fileId = "251738", + text = "argentcrusade_tent06.m2", + value = "argentcrusade_tent06.m2", + }, + { + fileId = "340025", + text = "argentcrusade_tent07.m2", + value = "argentcrusade_tent07.m2", + }, + { + fileId = "254467", + text = "argentcrusade_wall_01.m2", + value = "argentcrusade_wall_01.m2", + }, + { + fileId = "254468", + text = "argentcrusade_wall_02.m2", + value = "argentcrusade_wall_02.m2", + }, + { + children = { + { + fileId = "252745", + text = "argentcursade_windypennant01.m2", + value = "argentcursade_windypennant01.m2", + }, + { + fileId = "252836", + text = "tournament_banner_be02.m2", + value = "tournament_banner_be02.m2", + }, + { + fileId = "252724", + text = "tournament_banner_bloodelf01.m2", + value = "tournament_banner_bloodelf01.m2", + }, + { + fileId = "252725", + text = "tournament_banner_bloodelf02.m2", + value = "tournament_banner_bloodelf02.m2", + }, + { + fileId = "252727", + text = "tournament_banner_draenei01.m2", + value = "tournament_banner_draenei01.m2", + }, + { + fileId = "252728", + text = "tournament_banner_draenei02.m2", + value = "tournament_banner_draenei02.m2", + }, + { + fileId = "252730", + text = "tournament_banner_dwarf01.m2", + value = "tournament_banner_dwarf01.m2", + }, + { + fileId = "252731", + text = "tournament_banner_dwarf02.m2", + value = "tournament_banner_dwarf02.m2", + }, + { + fileId = "252733", + text = "tournament_banner_fk01.m2", + value = "tournament_banner_fk01.m2", + }, + { + fileId = "252734", + text = "tournament_banner_fk02.m2", + value = "tournament_banner_fk02.m2", + }, + { + fileId = "252736", + text = "tournament_banner_gnome01.m2", + value = "tournament_banner_gnome01.m2", + }, + { + fileId = "252737", + text = "tournament_banner_gnome02.m2", + value = "tournament_banner_gnome02.m2", + }, + { + fileId = "252739", + text = "tournament_banner_horde01.m2", + value = "tournament_banner_horde01.m2", + }, + { + fileId = "252740", + text = "tournament_banner_horde02.m2", + value = "tournament_banner_horde02.m2", + }, + { + fileId = "252742", + text = "tournament_banner_human01.m2", + value = "tournament_banner_human01.m2", + }, + { + fileId = "252743", + text = "tournament_banner_human02.m2", + value = "tournament_banner_human02.m2", + }, + { + fileId = "252747", + text = "tournament_banner_nelf01.m2", + value = "tournament_banner_nelf01.m2", + }, + { + fileId = "252748", + text = "tournament_banner_nelf02.m2", + value = "tournament_banner_nelf02.m2", + }, + { + fileId = "252750", + text = "tournament_banner_tauren01.m2", + value = "tournament_banner_tauren01.m2", + }, + { + fileId = "252751", + text = "tournament_banner_tauren02.m2", + value = "tournament_banner_tauren02.m2", + }, + { + fileId = "252753", + text = "tournament_banner_trolls01.m2", + value = "tournament_banner_trolls01.m2", + }, + { + fileId = "252754", + text = "tournament_banner_trolls02.m2", + value = "tournament_banner_trolls02.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + fileId = "311589", + text = "nd_argentcrusadecoliseum_floorpieces.m2", + value = "nd_argentcrusadecoliseum_floorpieces.m2", + }, + { + fileId = "311954", + text = "nd_argentcrusadecoliseum_trapdoor_01.m2", + value = "nd_argentcrusadecoliseum_trapdoor_01.m2", + }, + { + children = { + { + fileId = "253328", + text = "tournament_pennant_argentcru01.m2", + value = "tournament_pennant_argentcru01.m2", + }, + { + fileId = "253329", + text = "tournament_pennant_argentcru02.m2", + value = "tournament_pennant_argentcru02.m2", + }, + { + fileId = "253330", + text = "tournament_pennant_argentcru03.m2", + value = "tournament_pennant_argentcru03.m2", + }, + { + fileId = "311968", + text = "tournament_pennant_argentcru_low.m2", + value = "tournament_pennant_argentcru_low.m2", + }, + { + fileId = "252788", + text = "tournament_pennant_be01.m2", + value = "tournament_pennant_be01.m2", + }, + { + fileId = "252789", + text = "tournament_pennant_be02.m2", + value = "tournament_pennant_be02.m2", + }, + { + fileId = "252790", + text = "tournament_pennant_be03.m2", + value = "tournament_pennant_be03.m2", + }, + { + fileId = "311957", + text = "tournament_pennant_be_low.m2", + value = "tournament_pennant_be_low.m2", + }, + { + fileId = "252925", + text = "tournament_pennant_draenei01.m2", + value = "tournament_pennant_draenei01.m2", + }, + { + fileId = "252926", + text = "tournament_pennant_draenei02.m2", + value = "tournament_pennant_draenei02.m2", + }, + { + fileId = "252927", + text = "tournament_pennant_draenei03.m2", + value = "tournament_pennant_draenei03.m2", + }, + { + fileId = "311958", + text = "tournament_pennant_draenei_low.m2", + value = "tournament_pennant_draenei_low.m2", + }, + { + fileId = "252929", + text = "tournament_pennant_dwarf01.m2", + value = "tournament_pennant_dwarf01.m2", + }, + { + fileId = "252930", + text = "tournament_pennant_dwarf02.m2", + value = "tournament_pennant_dwarf02.m2", + }, + { + fileId = "252931", + text = "tournament_pennant_dwarf03.m2", + value = "tournament_pennant_dwarf03.m2", + }, + { + fileId = "311959", + text = "tournament_pennant_dwarf_low.m2", + value = "tournament_pennant_dwarf_low.m2", + }, + { + fileId = "253379", + text = "tournament_pennant_ebonblade01.m2", + value = "tournament_pennant_ebonblade01.m2", + }, + { + fileId = "253380", + text = "tournament_pennant_ebonblade02.m2", + value = "tournament_pennant_ebonblade02.m2", + }, + { + fileId = "253381", + text = "tournament_pennant_ebonblade03.m2", + value = "tournament_pennant_ebonblade03.m2", + }, + { + fileId = "311960", + text = "tournament_pennant_ebonblade_low.m2", + value = "tournament_pennant_ebonblade_low.m2", + }, + { + fileId = "252838", + text = "tournament_pennant_fk01.m2", + value = "tournament_pennant_fk01.m2", + }, + { + fileId = "252839", + text = "tournament_pennant_fk02.m2", + value = "tournament_pennant_fk02.m2", + }, + { + fileId = "252840", + text = "tournament_pennant_fk03.m2", + value = "tournament_pennant_fk03.m2", + }, + { + fileId = "311961", + text = "tournament_pennant_fk_low.m2", + value = "tournament_pennant_fk_low.m2", + }, + { + fileId = "252823", + text = "tournament_pennant_gnome01.m2", + value = "tournament_pennant_gnome01.m2", + }, + { + fileId = "252824", + text = "tournament_pennant_gnome02.m2", + value = "tournament_pennant_gnome02.m2", + }, + { + fileId = "252825", + text = "tournament_pennant_gnome03.m2", + value = "tournament_pennant_gnome03.m2", + }, + { + fileId = "311962", + text = "tournament_pennant_gnome_low.m2", + value = "tournament_pennant_gnome_low.m2", + }, + { + fileId = "252792", + text = "tournament_pennant_human01.m2", + value = "tournament_pennant_human01.m2", + }, + { + fileId = "252793", + text = "tournament_pennant_human02.m2", + value = "tournament_pennant_human02.m2", + }, + { + fileId = "252794", + text = "tournament_pennant_human03.m2", + value = "tournament_pennant_human03.m2", + }, + { + fileId = "311963", + text = "tournament_pennant_human_low.m2", + value = "tournament_pennant_human_low.m2", + }, + { + fileId = "252796", + text = "tournament_pennant_nelf01.m2", + value = "tournament_pennant_nelf01.m2", + }, + { + fileId = "252797", + text = "tournament_pennant_nelf02.m2", + value = "tournament_pennant_nelf02.m2", + }, + { + fileId = "252798", + text = "tournament_pennant_nelf03.m2", + value = "tournament_pennant_nelf03.m2", + }, + { + fileId = "311964", + text = "tournament_pennant_nelf_low.m2", + value = "tournament_pennant_nelf_low.m2", + }, + { + fileId = "252800", + text = "tournament_pennant_orc01.m2", + value = "tournament_pennant_orc01.m2", + }, + { + fileId = "252801", + text = "tournament_pennant_orc02.m2", + value = "tournament_pennant_orc02.m2", + }, + { + fileId = "252802", + text = "tournament_pennant_orc03.m2", + value = "tournament_pennant_orc03.m2", + }, + { + fileId = "311969", + text = "tournament_pennant_orc_low.m2", + value = "tournament_pennant_orc_low.m2", + }, + { + fileId = "252923", + text = "tournament_pennant_tauren01.m2", + value = "tournament_pennant_tauren01.m2", + }, + { + fileId = "252932", + text = "tournament_pennant_tauren02.m2", + value = "tournament_pennant_tauren02.m2", + }, + { + fileId = "252933", + text = "tournament_pennant_tauren03.m2", + value = "tournament_pennant_tauren03.m2", + }, + { + fileId = "311970", + text = "tournament_pennant_tauren_low.m2", + value = "tournament_pennant_tauren_low.m2", + }, + { + fileId = "252827", + text = "tournament_pennant_troll01.m2", + value = "tournament_pennant_troll01.m2", + }, + { + fileId = "252828", + text = "tournament_pennant_troll02.m2", + value = "tournament_pennant_troll02.m2", + }, + { + fileId = "252829", + text = "tournament_pennant_troll03.m2", + value = "tournament_pennant_troll03.m2", + }, + { + fileId = "311971", + text = "tournament_pennant_troll_low.m2", + value = "tournament_pennant_troll_low.m2", + }, + }, + text = "pennants", + value = "pennants", + }, + }, + text = "argentcrusade", + value = "argentcrusade", + }, + { + children = { + { + fileId = "194748", + text = "barbershop_chair01.m2", + value = "barbershop_chair01.m2", + }, + { + fileId = "243367", + text = "barbershop_mirror_01.m2", + value = "barbershop_mirror_01.m2", + }, + { + fileId = "194749", + text = "barbershop_polestanding.m2", + value = "barbershop_polestanding.m2", + }, + { + fileId = "194750", + text = "barbershop_polewall.m2", + value = "barbershop_polewall.m2", + }, + { + fileId = "194751", + text = "barbershop_poster01.m2", + value = "barbershop_poster01.m2", + }, + { + fileId = "194752", + text = "barbershop_poster02.m2", + value = "barbershop_poster02.m2", + }, + { + fileId = "194753", + text = "barbershop_razor.m2", + value = "barbershop_razor.m2", + }, + { + fileId = "194754", + text = "barbershop_shavebrush.m2", + value = "barbershop_shavebrush.m2", + }, + { + fileId = "194755", + text = "barbershop_shavecup.m2", + value = "barbershop_shavecup.m2", + }, + { + fileId = "194756", + text = "barbershop_wig01.m2", + value = "barbershop_wig01.m2", + }, + { + fileId = "194757", + text = "barbershop_wig02.m2", + value = "barbershop_wig02.m2", + }, + { + fileId = "194758", + text = "barbershop_wig03.m2", + value = "barbershop_wig03.m2", + }, + { + fileId = "194759", + text = "barbershop_wig04.m2", + value = "barbershop_wig04.m2", + }, + { + fileId = "194760", + text = "barbershop_wig05.m2", + value = "barbershop_wig05.m2", + }, + }, + text = "barbershop", + value = "barbershop", + }, + { + children = { + { + fileId = "194762", + text = "bonfirenorthrend_01.m2", + value = "bonfirenorthrend_01.m2", + }, + { + fileId = "194763", + text = "bonfirenorthrend_01blue.m2", + value = "bonfirenorthrend_01blue.m2", + }, + }, + text = "bonfire", + value = "bonfire", + }, + { + children = { + { + fileId = "243368", + text = "catwolf_footprint_brush01.m2", + value = "catwolf_footprint_brush01.m2", + }, + { + fileId = "243369", + text = "catwolf_footprint_debris01.m2", + value = "catwolf_footprint_debris01.m2", + }, + { + fileId = "243370", + text = "catwolf_footprint_grass01.m2", + value = "catwolf_footprint_grass01.m2", + }, + { + fileId = "243371", + text = "catwolf_footprint_moss01.m2", + value = "catwolf_footprint_moss01.m2", + }, + { + fileId = "243372", + text = "catwolf_footprint_mud01.m2", + value = "catwolf_footprint_mud01.m2", + }, + { + fileId = "243373", + text = "catwolf_footprint_snow01.m2", + value = "catwolf_footprint_snow01.m2", + }, + }, + text = "catwolftracks", + value = "catwolftracks", + }, + { + fileId = "243380", + text = "dalaran_tabard.m2", + value = "dalaran_tabard.m2", + }, + { + children = { + { + children = { + { + fileId = "194765", + text = "dest_tower_1_a.m2", + value = "dest_tower_1_a.m2", + }, + { + fileId = "194766", + text = "dest_tower_1_b.m2", + value = "dest_tower_1_b.m2", + }, + { + fileId = "194767", + text = "dest_tower_1_c.m2", + value = "dest_tower_1_c.m2", + }, + { + fileId = "194768", + text = "dest_tower_1_d.m2", + value = "dest_tower_1_d.m2", + }, + { + fileId = "194769", + text = "dest_tower_1_e.m2", + value = "dest_tower_1_e.m2", + }, + { + fileId = "194770", + text = "dest_tower_1_f.m2", + value = "dest_tower_1_f.m2", + }, + { + fileId = "194771", + text = "dest_tower_1_g.m2", + value = "dest_tower_1_g.m2", + }, + { + fileId = "194772", + text = "dest_tower_1_h.m2", + value = "dest_tower_1_h.m2", + }, + { + fileId = "194773", + text = "dest_tower_1_i.m2", + value = "dest_tower_1_i.m2", + }, + { + fileId = "194774", + text = "dest_tower_1_j.m2", + value = "dest_tower_1_j.m2", + }, + { + fileId = "194775", + text = "dest_tower_1_k.m2", + value = "dest_tower_1_k.m2", + }, + { + fileId = "194776", + text = "dest_tower_1_l.m2", + value = "dest_tower_1_l.m2", + }, + { + fileId = "194777", + text = "dest_tower_1_m.m2", + value = "dest_tower_1_m.m2", + }, + { + fileId = "194778", + text = "dest_tower_2_a.m2", + value = "dest_tower_2_a.m2", + }, + { + fileId = "194779", + text = "dest_tower_2_b.m2", + value = "dest_tower_2_b.m2", + }, + { + fileId = "194780", + text = "dest_tower_2_c.m2", + value = "dest_tower_2_c.m2", + }, + { + fileId = "194781", + text = "dest_tower_2_d.m2", + value = "dest_tower_2_d.m2", + }, + { + fileId = "194782", + text = "dest_tower_2_e.m2", + value = "dest_tower_2_e.m2", + }, + { + fileId = "194783", + text = "dest_tower_2_f.m2", + value = "dest_tower_2_f.m2", + }, + { + fileId = "194784", + text = "dest_tower_2_g.m2", + value = "dest_tower_2_g.m2", + }, + { + fileId = "194785", + text = "dest_tower_2_h.m2", + value = "dest_tower_2_h.m2", + }, + { + fileId = "194786", + text = "dest_tower_2_i.m2", + value = "dest_tower_2_i.m2", + }, + { + fileId = "194787", + text = "dest_tower_2_j.m2", + value = "dest_tower_2_j.m2", + }, + { + fileId = "194788", + text = "dest_tower_2_k.m2", + value = "dest_tower_2_k.m2", + }, + { + fileId = "194789", + text = "dest_tower_2_l.m2", + value = "dest_tower_2_l.m2", + }, + { + fileId = "194790", + text = "dest_tower_2_m.m2", + value = "dest_tower_2_m.m2", + }, + { + fileId = "194791", + text = "dest_tower_damaged.m2", + value = "dest_tower_damaged.m2", + }, + { + fileId = "194792", + text = "dest_tower_destroyed.m2", + value = "dest_tower_destroyed.m2", + }, + { + fileId = "194793", + text = "dest_tower_pieces.m2", + value = "dest_tower_pieces.m2", + }, + }, + text = "guardtower", + value = "guardtower", + }, + }, + text = "destructible", + value = "destructible", + }, + { + children = { + { + fileId = "194802", + text = "ebonblade_banner01.m2", + value = "ebonblade_banner01.m2", + }, + { + fileId = "194803", + text = "ebonblade_banner02.m2", + value = "ebonblade_banner02.m2", + }, + { + fileId = "303710", + text = "ebonblade_banner02_nocollision.m2", + value = "ebonblade_banner02_nocollision.m2", + }, + }, + text = "ebonblade", + value = "ebonblade", + }, + { + children = { + { + fileId = "243381", + text = "firstaid_nocollision.m2", + value = "firstaid_nocollision.m2", + }, + }, + text = "firstaid", + value = "firstaid", + }, + { + children = { + { + fileId = "194805", + text = "fk_banner01.m2", + value = "fk_banner01.m2", + }, + { + fileId = "194806", + text = "fk_banner01wall.m2", + value = "fk_banner01wall.m2", + }, + { + fileId = "194807", + text = "fk_banner02wall.m2", + value = "fk_banner02wall.m2", + }, + { + fileId = "194809", + text = "fk_barricade_01.m2", + value = "fk_barricade_01.m2", + }, + { + fileId = "194811", + text = "fk_chemistryset_02.m2", + value = "fk_chemistryset_02.m2", + }, + { + fileId = "194812", + text = "fk_chemistryset_03.m2", + value = "fk_chemistryset_03.m2", + }, + { + fileId = "194813", + text = "fk_chemistryset_04.m2", + value = "fk_chemistryset_04.m2", + }, + { + fileId = "194814", + text = "fk_chemistryset_05.m2", + value = "fk_chemistryset_05.m2", + }, + { + fileId = "194815", + text = "fk_chemistryset_06.m2", + value = "fk_chemistryset_06.m2", + }, + { + fileId = "194816", + text = "fk_chemistryset_07.m2", + value = "fk_chemistryset_07.m2", + }, + { + fileId = "194817", + text = "fk_chemistryset_forbuilding_01.m2", + value = "fk_chemistryset_forbuilding_01.m2", + }, + { + fileId = "194818", + text = "fk_chemistryset_forbuilding_02.m2", + value = "fk_chemistryset_forbuilding_02.m2", + }, + { + fileId = "194819", + text = "fk_chemistrytube_01.m2", + value = "fk_chemistrytube_01.m2", + }, + { + fileId = "194820", + text = "fk_chemistrytube_02.m2", + value = "fk_chemistrytube_02.m2", + }, + { + fileId = "194821", + text = "fk_chemistrytube_03.m2", + value = "fk_chemistrytube_03.m2", + }, + { + fileId = "194822", + text = "fk_chemistrytube_04.m2", + value = "fk_chemistrytube_04.m2", + }, + { + fileId = "194825", + text = "fk_fence01.m2", + value = "fk_fence01.m2", + }, + { + fileId = "194826", + text = "fk_fence02.m2", + value = "fk_fence02.m2", + }, + { + fileId = "194827", + text = "fk_fencepost.m2", + value = "fk_fencepost.m2", + }, + { + fileId = "194833", + text = "fk_lamphanging.m2", + value = "fk_lamphanging.m2", + }, + { + fileId = "194834", + text = "fk_lamppost.m2", + value = "fk_lamppost.m2", + }, + { + fileId = "194836", + text = "fk_lamppost_unlit.m2", + value = "fk_lamppost_unlit.m2", + }, + { + fileId = "194837", + text = "fk_painting01.m2", + value = "fk_painting01.m2", + }, + { + fileId = "194838", + text = "fk_painting02.m2", + value = "fk_painting02.m2", + }, + { + fileId = "194839", + text = "fk_painting03.m2", + value = "fk_painting03.m2", + }, + { + fileId = "194840", + text = "fk_painting04.m2", + value = "fk_painting04.m2", + }, + { + fileId = "194841", + text = "fk_painting05.m2", + value = "fk_painting05.m2", + }, + { + fileId = "194843", + text = "fk_plaguebarrel.m2", + value = "fk_plaguebarrel.m2", + }, + { + fileId = "194844", + text = "fk_plaguebarrelbroken01.m2", + value = "fk_plaguebarrelbroken01.m2", + }, + { + fileId = "194845", + text = "fk_plaguebarrelbroken02.m2", + value = "fk_plaguebarrelbroken02.m2", + }, + { + fileId = "194846", + text = "fk_plaguebarrelempty.m2", + value = "fk_plaguebarrelempty.m2", + }, + { + fileId = "194847", + text = "fk_plaguecistern.m2", + value = "fk_plaguecistern.m2", + }, + { + fileId = "194848", + text = "fk_plaguewagon.m2", + value = "fk_plaguewagon.m2", + }, + { + fileId = "194851", + text = "fk_plaguewagon_empty.m2", + value = "fk_plaguewagon_empty.m2", + }, + { + fileId = "194852", + text = "fk_signpost.m2", + value = "fk_signpost.m2", + }, + { + fileId = "194853", + text = "fk_signpost_sign.m2", + value = "fk_signpost_sign.m2", + }, + { + fileId = "194857", + text = "fk_tent01.m2", + value = "fk_tent01.m2", + }, + { + fileId = "194858", + text = "fk_tent01_ruined.m2", + value = "fk_tent01_ruined.m2", + }, + { + fileId = "194860", + text = "fk_tent02.m2", + value = "fk_tent02.m2", + }, + { + fileId = "194861", + text = "fk_tent02_ruined.m2", + value = "fk_tent02_ruined.m2", + }, + { + fileId = "194862", + text = "fk_tent03.m2", + value = "fk_tent03.m2", + }, + { + fileId = "194863", + text = "fk_tent04.m2", + value = "fk_tent04.m2", + }, + { + fileId = "194864", + text = "fk_tent05.m2", + value = "fk_tent05.m2", + }, + { + fileId = "194865", + text = "fk_wagon01.m2", + value = "fk_wagon01.m2", + }, + { + fileId = "194866", + text = "fk_wagon02.m2", + value = "fk_wagon02.m2", + }, + }, + text = "forsaken", + value = "forsaken", + }, + { + children = { + { + fileId = "194868", + text = "frostgiant_club01.m2", + value = "frostgiant_club01.m2", + }, + { + fileId = "194869", + text = "frostgiant_collumn01.m2", + value = "frostgiant_collumn01.m2", + }, + { + fileId = "194870", + text = "frostgiant_collumn02.m2", + value = "frostgiant_collumn02.m2", + }, + { + fileId = "194871", + text = "frostgiant_frostorb01.m2", + value = "frostgiant_frostorb01.m2", + }, + { + fileId = "194872", + text = "frostgiant_frostorbbroken01.m2", + value = "frostgiant_frostorbbroken01.m2", + }, + { + fileId = "194876", + text = "frostgiant_shield01.m2", + value = "frostgiant_shield01.m2", + }, + { + fileId = "194877", + text = "frostgiant_shield02.m2", + value = "frostgiant_shield02.m2", + }, + { + fileId = "194878", + text = "frostgiant_shield03.m2", + value = "frostgiant_shield03.m2", + }, + { + fileId = "194879", + text = "frostgiant_shield04.m2", + value = "frostgiant_shield04.m2", + }, + { + fileId = "194880", + text = "frostgiant_spear01.m2", + value = "frostgiant_spear01.m2", + }, + { + fileId = "243382", + text = "frostgiant_spear02.m2", + value = "frostgiant_spear02.m2", + }, + }, + text = "frostgiant", + value = "frostgiant", + }, + { + children = { + { + fileId = "194881", + text = "gnome_pipe_01.m2", + value = "gnome_pipe_01.m2", + }, + { + fileId = "194882", + text = "gnome_pipe_02.m2", + value = "gnome_pipe_02.m2", + }, + { + fileId = "194883", + text = "gnome_pipe_03.m2", + value = "gnome_pipe_03.m2", + }, + { + fileId = "194884", + text = "gnome_pipe_04.m2", + value = "gnome_pipe_04.m2", + }, + { + fileId = "194885", + text = "gnome_pipe_05.m2", + value = "gnome_pipe_05.m2", + }, + { + fileId = "194886", + text = "gnome_pipe_06.m2", + value = "gnome_pipe_06.m2", + }, + { + fileId = "194887", + text = "gnome_pipe_08.m2", + value = "gnome_pipe_08.m2", + }, + { + fileId = "194888", + text = "gnome_pipe_09.m2", + value = "gnome_pipe_09.m2", + }, + { + fileId = "367502", + text = "gnome_radiation_bomb_01.m2", + value = "gnome_radiation_bomb_01.m2", + }, + }, + text = "gnome", + value = "gnome", + }, + { + children = { + { + children = { + { + fileId = "194890", + text = "goblinbench01.m2", + value = "goblinbench01.m2", + }, + }, + text = "bench", + value = "bench", + }, + { + fileId = "243384", + text = "goblin_fuelcell.m2", + value = "goblin_fuelcell.m2", + }, + { + children = { + { + fileId = "194892", + text = "radiotowerflag01.m2", + value = "radiotowerflag01.m2", + }, + }, + text = "radiotower", + value = "radiotower", + }, + }, + text = "goblin", + value = "goblin", + }, + { + children = { + { + fileId = "243385", + text = "hanging_strider01.m2", + value = "hanging_strider01.m2", + }, + }, + text = "hangingmeat", + value = "hangingmeat", + }, + { + children = { + { + fileId = "243387", + text = "he_ballista_01.m2", + value = "he_ballista_01.m2", + }, + { + fileId = "243391", + text = "he_banner_01.m2", + value = "he_banner_01.m2", + }, + { + fileId = "243392", + text = "he_banner_02.m2", + value = "he_banner_02.m2", + }, + { + fileId = "243393", + text = "he_banner_03.m2", + value = "he_banner_03.m2", + }, + { + fileId = "243395", + text = "he_tent_01.m2", + value = "he_tent_01.m2", + }, + { + fileId = "243396", + text = "he_wagon_01.m2", + value = "he_wagon_01.m2", + }, + }, + text = "highelf", + value = "highelf", + }, + { + fileId = "243397", + text = "horde_gunship_deckflakgun.m2", + value = "horde_gunship_deckflakgun.m2", + }, + { + fileId = "243398", + text = "horde_tabard.m2", + value = "horde_tabard.m2", + }, + { + children = { + { + children = { + { + fileId = "194893", + text = "nd_human_barrier.m2", + value = "nd_human_barrier.m2", + }, + { + fileId = "194894", + text = "nd_human_barrier_end.m2", + value = "nd_human_barrier_end.m2", + }, + }, + text = "barriers", + value = "barriers", + }, + { + children = { + { + fileId = "194896", + text = "cuckooclock_01.m2", + value = "cuckooclock_01.m2", + }, + { + fileId = "194899", + text = "grandfather_clock_01.m2", + value = "grandfather_clock_01.m2", + }, + }, + text = "clocks", + value = "clocks", + }, + { + children = { + { + fileId = "194900", + text = "crategrainnormal_01.m2", + value = "crategrainnormal_01.m2", + }, + { + fileId = "194901", + text = "crategrainplagued_01.m2", + value = "crategrainplagued_01.m2", + }, + }, + text = "crates", + value = "crates", + }, + { + children = { + { + fileId = "194903", + text = "hu_fence01_northrend.m2", + value = "hu_fence01_northrend.m2", + }, + { + fileId = "194904", + text = "hu_fence02_northrend.m2", + value = "hu_fence02_northrend.m2", + }, + { + fileId = "194905", + text = "hu_fence03_northrend.m2", + value = "hu_fence03_northrend.m2", + }, + { + fileId = "194906", + text = "hu_fence04_northrend.m2", + value = "hu_fence04_northrend.m2", + }, + { + fileId = "194907", + text = "hu_fence05_northrend.m2", + value = "hu_fence05_northrend.m2", + }, + { + fileId = "194908", + text = "hu_fence06_northrend.m2", + value = "hu_fence06_northrend.m2", + }, + { + fileId = "194909", + text = "hu_fencepost_northrend.m2", + value = "hu_fencepost_northrend.m2", + }, + }, + text = "fence", + value = "fence", + }, + { + children = { + { + fileId = "194912", + text = "alliance_banner_01.m2", + value = "alliance_banner_01.m2", + }, + }, + text = "flags", + value = "flags", + }, + { + fileId = "194913", + text = "hu_brick_pile01.m2", + value = "hu_brick_pile01.m2", + }, + { + fileId = "194914", + text = "hu_brick_pile02.m2", + value = "hu_brick_pile02.m2", + }, + { + fileId = "194919", + text = "hu_crane_dock.m2", + value = "hu_crane_dock.m2", + }, + { + fileId = "194920", + text = "hu_crane_woodpile.m2", + value = "hu_crane_woodpile.m2", + }, + { + fileId = "194921", + text = "hu_dock_destruction_piling.m2", + value = "hu_dock_destruction_piling.m2", + }, + { + fileId = "194923", + text = "hu_jail_door_01.m2", + value = "hu_jail_door_01.m2", + }, + { + fileId = "194924", + text = "hu_justice_flags_01.m2", + value = "hu_justice_flags_01.m2", + }, + { + fileId = "194925", + text = "hu_justice_flags_02.m2", + value = "hu_justice_flags_02.m2", + }, + { + fileId = "194926", + text = "hu_justice_flags_03.m2", + value = "hu_justice_flags_03.m2", + }, + { + fileId = "194927", + text = "hu_justice_flags_04.m2", + value = "hu_justice_flags_04.m2", + }, + { + fileId = "194928", + text = "hu_justice_flags_05.m2", + value = "hu_justice_flags_05.m2", + }, + { + fileId = "194929", + text = "hu_justice_flags_06.m2", + value = "hu_justice_flags_06.m2", + }, + { + fileId = "194930", + text = "hu_justice_flags_08.m2", + value = "hu_justice_flags_08.m2", + }, + { + fileId = "194933", + text = "hu_piling.m2", + value = "hu_piling.m2", + }, + { + fileId = "194934", + text = "hu_portcullis.m2", + value = "hu_portcullis.m2", + }, + { + fileId = "194935", + text = "hu_pulley.m2", + value = "hu_pulley.m2", + }, + { + fileId = "194936", + text = "hu_pulley_crates.m2", + value = "hu_pulley_crates.m2", + }, + { + fileId = "194937", + text = "hu_rope01.m2", + value = "hu_rope01.m2", + }, + { + fileId = "194938", + text = "hu_scaffolding.m2", + value = "hu_scaffolding.m2", + }, + { + fileId = "194939", + text = "hu_scaffolding02.m2", + value = "hu_scaffolding02.m2", + }, + { + fileId = "194940", + text = "hu_scaffolding03.m2", + value = "hu_scaffolding03.m2", + }, + { + fileId = "194941", + text = "hu_scaffolding04.m2", + value = "hu_scaffolding04.m2", + }, + { + fileId = "194942", + text = "hu_tarp_boxes.m2", + value = "hu_tarp_boxes.m2", + }, + { + children = { + { + fileId = "194949", + text = "hu_lamp_northrend.m2", + value = "hu_lamp_northrend.m2", + }, + }, + text = "lamp", + value = "lamp", + }, + { + children = { + { + fileId = "194951", + text = "hu_lamp_arm_northrend.m2", + value = "hu_lamp_arm_northrend.m2", + }, + { + fileId = "194952", + text = "hu_lamppost_northrend.m2", + value = "hu_lamppost_northrend.m2", + }, + }, + text = "lamppost", + value = "lamppost", + }, + { + fileId = "317602", + text = "nd_human_gate_closed_collision.m2", + value = "nd_human_gate_closed_collision.m2", + }, + { + fileId = "307074", + text = "nd_human_gate_closedfx.m2", + value = "nd_human_gate_closedfx.m2", + }, + { + fileId = "311950", + text = "nd_human_gate_closedfx_door.m2", + value = "nd_human_gate_closedfx_door.m2", + }, + { + fileId = "194953", + text = "nd_human_wall_damagedfx.m2", + value = "nd_human_wall_damagedfx.m2", + }, + { + fileId = "194954", + text = "nd_human_wall_end_damagedfx.m2", + value = "nd_human_wall_end_damagedfx.m2", + }, + { + fileId = "243399", + text = "nd_human_wall_end_small_damagedfx02.m2", + value = "nd_human_wall_end_small_damagedfx02.m2", + }, + { + fileId = "243400", + text = "nd_human_wall_small_damagedfx02.m2", + value = "nd_human_wall_small_damagedfx02.m2", + }, + { + children = { + { + children = { + { + fileId = "194957", + text = "hu_humanladder.m2", + value = "hu_humanladder.m2", + }, + }, + text = "final", + value = "final", + }, + }, + text = "northrend_humanladder", + value = "northrend_humanladder", + }, + { + children = { + { + fileId = "194959", + text = "hu_signpost_northrend.m2", + value = "hu_signpost_northrend.m2", + }, + { + fileId = "194960", + text = "hu_signpost_sign_northrend.m2", + value = "hu_signpost_sign_northrend.m2", + }, + }, + text = "signpost", + value = "signpost", + }, + { + children = { + { + fileId = "194961", + text = "hu_tent01.m2", + value = "hu_tent01.m2", + }, + { + fileId = "194962", + text = "hu_tent02.m2", + value = "hu_tent02.m2", + }, + }, + text = "tents", + value = "tents", + }, + { + children = { + { + fileId = "194965", + text = "northrendtorch_01.m2", + value = "northrendtorch_01.m2", + }, + { + fileId = "194966", + text = "northrendtorch_01blue.m2", + value = "northrendtorch_01blue.m2", + }, + }, + text = "torch", + value = "torch", + }, + }, + text = "human", + value = "human", + }, + { + children = { + { + fileId = "243402", + text = "inscription_inkbottle_black01.m2", + value = "inscription_inkbottle_black01.m2", + }, + { + fileId = "243403", + text = "inscription_inkbottle_black02.m2", + value = "inscription_inkbottle_black02.m2", + }, + { + fileId = "243404", + text = "inscription_inkbottle_black03.m2", + value = "inscription_inkbottle_black03.m2", + }, + { + fileId = "243405", + text = "inscription_inkbottle_black04.m2", + value = "inscription_inkbottle_black04.m2", + }, + { + fileId = "243406", + text = "inscription_inkbottle_black05.m2", + value = "inscription_inkbottle_black05.m2", + }, + { + fileId = "243407", + text = "inscription_inkbottle_blue01.m2", + value = "inscription_inkbottle_blue01.m2", + }, + { + fileId = "243408", + text = "inscription_inkbottle_blue02.m2", + value = "inscription_inkbottle_blue02.m2", + }, + { + fileId = "243409", + text = "inscription_inkbottle_blue03.m2", + value = "inscription_inkbottle_blue03.m2", + }, + { + fileId = "243410", + text = "inscription_inkbottle_gold01.m2", + value = "inscription_inkbottle_gold01.m2", + }, + { + fileId = "243411", + text = "inscription_inkbottle_green01.m2", + value = "inscription_inkbottle_green01.m2", + }, + { + fileId = "243412", + text = "inscription_inkbottle_green02.m2", + value = "inscription_inkbottle_green02.m2", + }, + { + fileId = "243413", + text = "inscription_inkbottle_green03.m2", + value = "inscription_inkbottle_green03.m2", + }, + { + fileId = "243414", + text = "inscription_inkbottle_green04.m2", + value = "inscription_inkbottle_green04.m2", + }, + { + fileId = "243415", + text = "inscription_inkbottle_iron01.m2", + value = "inscription_inkbottle_iron01.m2", + }, + { + fileId = "243416", + text = "inscription_inkbottle_purple01.m2", + value = "inscription_inkbottle_purple01.m2", + }, + { + fileId = "243417", + text = "inscription_inkbottle_purple02.m2", + value = "inscription_inkbottle_purple02.m2", + }, + { + fileId = "243418", + text = "inscription_inkbottle_purple03.m2", + value = "inscription_inkbottle_purple03.m2", + }, + { + fileId = "243419", + text = "inscription_inkbottle_red01.m2", + value = "inscription_inkbottle_red01.m2", + }, + { + fileId = "243420", + text = "inscription_inkbottle_red02.m2", + value = "inscription_inkbottle_red02.m2", + }, + { + fileId = "243421", + text = "inscription_inkbottle_red03.m2", + value = "inscription_inkbottle_red03.m2", + }, + { + fileId = "243422", + text = "inscription_inkbottle_red04.m2", + value = "inscription_inkbottle_red04.m2", + }, + { + fileId = "243423", + text = "inscription_inkbottle_silver01.m2", + value = "inscription_inkbottle_silver01.m2", + }, + { + fileId = "243425", + text = "inscription_quill01.m2", + value = "inscription_quill01.m2", + }, + { + fileId = "243426", + text = "inscription_quill02.m2", + value = "inscription_quill02.m2", + }, + { + fileId = "243427", + text = "inscription_quill03.m2", + value = "inscription_quill03.m2", + }, + { + fileId = "243428", + text = "inscription_quill04.m2", + value = "inscription_quill04.m2", + }, + { + fileId = "243429", + text = "inscription_quill_frosty.m2", + value = "inscription_quill_frosty.m2", + }, + { + fileId = "243430", + text = "inscription_quill_phoenix.m2", + value = "inscription_quill_phoenix.m2", + }, + { + fileId = "243431", + text = "inscription_quillostrich01.m2", + value = "inscription_quillostrich01.m2", + }, + { + fileId = "243432", + text = "inscription_quillpeacock01.m2", + value = "inscription_quillpeacock01.m2", + }, + { + fileId = "243435", + text = "inscription_scroll_boxside.m2", + value = "inscription_scroll_boxside.m2", + }, + { + fileId = "243436", + text = "inscription_scroll_boxup.m2", + value = "inscription_scroll_boxup.m2", + }, + { + fileId = "243437", + text = "inscription_scroll_rolledblank.m2", + value = "inscription_scroll_rolledblank.m2", + }, + { + fileId = "243438", + text = "inscription_scroll_rolledblue.m2", + value = "inscription_scroll_rolledblue.m2", + }, + { + fileId = "243439", + text = "inscription_scroll_rolledgreen.m2", + value = "inscription_scroll_rolledgreen.m2", + }, + { + fileId = "243440", + text = "inscription_scroll_rolledpin01.m2", + value = "inscription_scroll_rolledpin01.m2", + }, + { + fileId = "243441", + text = "inscription_scroll_rolledpin02.m2", + value = "inscription_scroll_rolledpin02.m2", + }, + { + fileId = "243442", + text = "inscription_scroll_rolledpin03.m2", + value = "inscription_scroll_rolledpin03.m2", + }, + { + fileId = "243443", + text = "inscription_scroll_rolledpin04.m2", + value = "inscription_scroll_rolledpin04.m2", + }, + { + fileId = "243444", + text = "inscription_scroll_rolledpindouble01.m2", + value = "inscription_scroll_rolledpindouble01.m2", + }, + { + fileId = "243445", + text = "inscription_scroll_rolledpurple.m2", + value = "inscription_scroll_rolledpurple.m2", + }, + { + fileId = "243446", + text = "inscription_scroll_rolledred.m2", + value = "inscription_scroll_rolledred.m2", + }, + { + fileId = "243447", + text = "inscription_scroll_sealed01.m2", + value = "inscription_scroll_sealed01.m2", + }, + { + fileId = "243448", + text = "inscription_scroll_sealed02.m2", + value = "inscription_scroll_sealed02.m2", + }, + { + fileId = "243449", + text = "inscription_scroll_sealed03.m2", + value = "inscription_scroll_sealed03.m2", + }, + { + fileId = "243450", + text = "inscription_scroll_sealed04.m2", + value = "inscription_scroll_sealed04.m2", + }, + }, + text = "inscription", + value = "inscription", + }, + { + children = { + { + fileId = "194971", + text = "id_anvil.m2", + value = "id_anvil.m2", + }, + { + fileId = "194973", + text = "id_banner1.m2", + value = "id_banner1.m2", + }, + { + fileId = "194974", + text = "id_banner2.m2", + value = "id_banner2.m2", + }, + { + fileId = "194975", + text = "id_barrel.m2", + value = "id_barrel.m2", + }, + { + fileId = "194977", + text = "id_bed1.m2", + value = "id_bed1.m2", + }, + { + fileId = "194978", + text = "id_bed2.m2", + value = "id_bed2.m2", + }, + { + fileId = "194979", + text = "id_bed3.m2", + value = "id_bed3.m2", + }, + { + fileId = "194980", + text = "id_benchsimple.m2", + value = "id_benchsimple.m2", + }, + { + fileId = "194982", + text = "id_cage.m2", + value = "id_cage.m2", + }, + { + fileId = "194983", + text = "id_chairmedium.m2", + value = "id_chairmedium.m2", + }, + { + fileId = "194984", + text = "id_chairmedium_broken.m2", + value = "id_chairmedium_broken.m2", + }, + { + fileId = "194986", + text = "id_chairsmall.m2", + value = "id_chairsmall.m2", + }, + { + fileId = "194987", + text = "id_chairsmall_broken.m2", + value = "id_chairsmall_broken.m2", + }, + { + fileId = "194988", + text = "id_chairthrone.m2", + value = "id_chairthrone.m2", + }, + { + fileId = "194989", + text = "id_chandelier-off.m2", + value = "id_chandelier-off.m2", + }, + { + fileId = "194990", + text = "id_chandelier.m2", + value = "id_chandelier.m2", + }, + { + fileId = "194991", + text = "id_cliff_facade01.m2", + value = "id_cliff_facade01.m2", + }, + { + fileId = "194992", + text = "id_cliff_facade02.m2", + value = "id_cliff_facade02.m2", + }, + { + fileId = "194994", + text = "id_crate.m2", + value = "id_crate.m2", + }, + { + fileId = "194995", + text = "id_crate2.m2", + value = "id_crate2.m2", + }, + { + fileId = "194996", + text = "id_crate3.m2", + value = "id_crate3.m2", + }, + { + fileId = "194997", + text = "id_crate4.m2", + value = "id_crate4.m2", + }, + { + fileId = "194999", + text = "id_elevator.m2", + value = "id_elevator.m2", + }, + { + fileId = "195000", + text = "id_fencepost01.m2", + value = "id_fencepost01.m2", + }, + { + fileId = "195001", + text = "id_fencepost02.m2", + value = "id_fencepost02.m2", + }, + { + fileId = "195002", + text = "id_fencepost03.m2", + value = "id_fencepost03.m2", + }, + { + fileId = "195003", + text = "id_fencepost_base.m2", + value = "id_fencepost_base.m2", + }, + { + fileId = "195006", + text = "id_forge.m2", + value = "id_forge.m2", + }, + { + fileId = "195009", + text = "id_kegmetalfree.m2", + value = "id_kegmetalfree.m2", + }, + { + fileId = "195010", + text = "id_kegmetalstand.m2", + value = "id_kegmetalstand.m2", + }, + { + fileId = "195011", + text = "id_lamppost-off.m2", + value = "id_lamppost-off.m2", + }, + { + fileId = "195012", + text = "id_lamppost.m2", + value = "id_lamppost.m2", + }, + { + fileId = "195013", + text = "id_lamppost_broken.m2", + value = "id_lamppost_broken.m2", + }, + { + fileId = "195014", + text = "id_lantern.m2", + value = "id_lantern.m2", + }, + { + fileId = "195015", + text = "id_large-lantern.m2", + value = "id_large-lantern.m2", + }, + { + fileId = "243453", + text = "id_lightning01_blue.m2", + value = "id_lightning01_blue.m2", + }, + { + fileId = "195016", + text = "id_lowstairs.m2", + value = "id_lowstairs.m2", + }, + { + fileId = "195017", + text = "id_lowstairs_small.m2", + value = "id_lowstairs_small.m2", + }, + { + fileId = "195018", + text = "id_lowwall.m2", + value = "id_lowwall.m2", + }, + { + fileId = "195019", + text = "id_pillar.m2", + value = "id_pillar.m2", + }, + { + fileId = "195020", + text = "id_pillarbase.m2", + value = "id_pillarbase.m2", + }, + { + fileId = "195022", + text = "id_signpost.m2", + value = "id_signpost.m2", + }, + { + fileId = "195023", + text = "id_signpost_sign.m2", + value = "id_signpost_sign.m2", + }, + { + fileId = "195025", + text = "id_tablelarge.m2", + value = "id_tablelarge.m2", + }, + { + fileId = "195026", + text = "id_tablemedium.m2", + value = "id_tablemedium.m2", + }, + { + fileId = "195027", + text = "id_tablemedium_broken.m2", + value = "id_tablemedium_broken.m2", + }, + { + fileId = "195029", + text = "id_tablesmall.m2", + value = "id_tablesmall.m2", + }, + { + fileId = "195030", + text = "id_tablesmall_broken.m2", + value = "id_tablesmall_broken.m2", + }, + { + fileId = "195031", + text = "id_wall_lamp-off.m2", + value = "id_wall_lamp-off.m2", + }, + { + fileId = "195032", + text = "id_wall_lamp.m2", + value = "id_wall_lamp.m2", + }, + { + children = { + { + fileId = "195035", + text = "id_cage-active.m2", + value = "id_cage-active.m2", + }, + }, + text = "quest", + value = "quest", + }, + }, + text = "irondwarf", + value = "irondwarf", + }, + { + fileId = "243454", + text = "leather_chest_armor_01.m2", + value = "leather_chest_armor_01.m2", + }, + { + fileId = "243456", + text = "mail_chest_armor_01.m2", + value = "mail_chest_armor_01.m2", + }, + { + children = { + { + fileId = "306985", + text = "nd_winterorc_wall_gatefx.m2", + value = "nd_winterorc_wall_gatefx.m2", + }, + { + fileId = "311752", + text = "nd_winterorc_wall_gatefx_door.m2", + value = "nd_winterorc_wall_gatefx_door.m2", + }, + { + fileId = "307053", + text = "nd_winterorc_wallfx.m2", + value = "nd_winterorc_wallfx.m2", + }, + }, + text = "nd_winterorc", + value = "nd_winterorc", + }, + { + children = { + { + fileId = "195036", + text = "nerubian_livingegg_01.m2", + value = "nerubian_livingegg_01.m2", + }, + { + fileId = "195037", + text = "nerubian_scourgeegg_01.m2", + value = "nerubian_scourgeegg_01.m2", + }, + { + fileId = "243457", + text = "nerubian_water_01.m2", + value = "nerubian_water_01.m2", + }, + { + children = { + { + fileId = "195039", + text = "nb_smallsinkhole01.m2", + value = "nb_smallsinkhole01.m2", + }, + }, + text = "pits", + value = "pits", + }, + }, + text = "nerubian", + value = "nerubian", + }, + { + fileId = "243460", + text = "northrend_armor_01.m2", + value = "northrend_armor_01.m2", + }, + { + fileId = "243462", + text = "northrend_armor_02.m2", + value = "northrend_armor_02.m2", + }, + { + fileId = "243465", + text = "northrend_helm_01.m2", + value = "northrend_helm_01.m2", + }, + { + fileId = "243466", + text = "northrend_helm_02.m2", + value = "northrend_helm_02.m2", + }, + { + fileId = "243467", + text = "northrend_helm_03.m2", + value = "northrend_helm_03.m2", + }, + { + fileId = "243468", + text = "northrend_helm_04.m2", + value = "northrend_helm_04.m2", + }, + { + fileId = "243469", + text = "northrend_helm_05.m2", + value = "northrend_helm_05.m2", + }, + { + fileId = "243470", + text = "northrend_helm_06.m2", + value = "northrend_helm_06.m2", + }, + { + fileId = "243471", + text = "northrend_helm_07.m2", + value = "northrend_helm_07.m2", + }, + { + fileId = "243472", + text = "northrend_helm_08.m2", + value = "northrend_helm_08.m2", + }, + { + fileId = "243473", + text = "northrend_helm_09.m2", + value = "northrend_helm_09.m2", + }, + { + fileId = "243474", + text = "northrend_shoulder_01.m2", + value = "northrend_shoulder_01.m2", + }, + { + fileId = "243475", + text = "northrend_shoulder_02.m2", + value = "northrend_shoulder_02.m2", + }, + { + fileId = "243476", + text = "northrend_shoulder_03.m2", + value = "northrend_shoulder_03.m2", + }, + { + fileId = "243477", + text = "northrend_shoulder_04.m2", + value = "northrend_shoulder_04.m2", + }, + { + fileId = "243478", + text = "northrend_shoulder_05.m2", + value = "northrend_shoulder_05.m2", + }, + { + children = { + { + fileId = "195050", + text = "o_crystal_01.m2", + value = "o_crystal_01.m2", + }, + { + fileId = "195051", + text = "o_crystal_02.m2", + value = "o_crystal_02.m2", + }, + { + fileId = "195052", + text = "o_crystal_large.m2", + value = "o_crystal_large.m2", + }, + { + fileId = "195053", + text = "o_egg_01.m2", + value = "o_egg_01.m2", + }, + { + fileId = "195054", + text = "o_egg_02.m2", + value = "o_egg_02.m2", + }, + { + fileId = "195055", + text = "o_egg_03.m2", + value = "o_egg_03.m2", + }, + { + fileId = "195056", + text = "o_egg_04.m2", + value = "o_egg_04.m2", + }, + { + fileId = "195057", + text = "o_egg_05.m2", + value = "o_egg_05.m2", + }, + { + fileId = "195059", + text = "o_hanger_bones.m2", + value = "o_hanger_bones.m2", + }, + { + fileId = "195060", + text = "o_hanger_coconuts.m2", + value = "o_hanger_coconuts.m2", + }, + { + fileId = "195061", + text = "o_hanger_crystal01.m2", + value = "o_hanger_crystal01.m2", + }, + { + fileId = "195062", + text = "o_hanger_crystal02.m2", + value = "o_hanger_crystal02.m2", + }, + { + fileId = "195063", + text = "o_hanger_extension.m2", + value = "o_hanger_extension.m2", + }, + { + fileId = "195065", + text = "o_lamppost_01.m2", + value = "o_lamppost_01.m2", + }, + { + fileId = "195066", + text = "o_lampwall_01.m2", + value = "o_lampwall_01.m2", + }, + { + fileId = "195067", + text = "o_surfboard01.m2", + value = "o_surfboard01.m2", + }, + { + fileId = "195068", + text = "o_surfboard02.m2", + value = "o_surfboard02.m2", + }, + { + fileId = "195069", + text = "o_surfboard03.m2", + value = "o_surfboard03.m2", + }, + { + fileId = "195070", + text = "o_surfboard04.m2", + value = "o_surfboard04.m2", + }, + { + fileId = "195073", + text = "o_totem_01.m2", + value = "o_totem_01.m2", + }, + { + fileId = "195074", + text = "o_trashpile_01.m2", + value = "o_trashpile_01.m2", + }, + { + fileId = "195075", + text = "o_trashpile_02.m2", + value = "o_trashpile_02.m2", + }, + }, + text = "oracle", + value = "oracle", + }, + { + children = { + { + fileId = "243479", + text = "potion_black01.m2", + value = "potion_black01.m2", + }, + { + fileId = "243480", + text = "potion_black03.m2", + value = "potion_black03.m2", + }, + { + fileId = "243481", + text = "potion_blue01.m2", + value = "potion_blue01.m2", + }, + { + fileId = "243482", + text = "potion_empty01.m2", + value = "potion_empty01.m2", + }, + { + fileId = "243483", + text = "potion_empty02.m2", + value = "potion_empty02.m2", + }, + { + fileId = "243484", + text = "potion_gold01.m2", + value = "potion_gold01.m2", + }, + { + fileId = "243485", + text = "potion_green01.m2", + value = "potion_green01.m2", + }, + { + fileId = "243486", + text = "potion_green04.m2", + value = "potion_green04.m2", + }, + { + fileId = "243487", + text = "potion_iron01.m2", + value = "potion_iron01.m2", + }, + { + fileId = "243488", + text = "potion_purple01.m2", + value = "potion_purple01.m2", + }, + { + fileId = "243489", + text = "potion_red01.m2", + value = "potion_red01.m2", + }, + { + fileId = "243490", + text = "potion_red04.m2", + value = "potion_red04.m2", + }, + { + fileId = "243491", + text = "potion_silver01.m2", + value = "potion_silver01.m2", + }, + }, + text = "potions", + value = "potions", + }, + { + fileId = "366691", + text = "sandbag_wall_01.m2", + value = "sandbag_wall_01.m2", + }, + { + children = { + { + fileId = "195079", + text = "scarleto_banner01.m2", + value = "scarleto_banner01.m2", + }, + { + fileId = "195080", + text = "scarleto_banner01wall.m2", + value = "scarleto_banner01wall.m2", + }, + { + fileId = "195081", + text = "scarleto_banner02.m2", + value = "scarleto_banner02.m2", + }, + { + fileId = "195082", + text = "scarleto_banner02wall.m2", + value = "scarleto_banner02wall.m2", + }, + { + fileId = "243492", + text = "scarleto_brazier_fire.m2", + value = "scarleto_brazier_fire.m2", + }, + { + fileId = "195084", + text = "scarleto_brazier_lit.m2", + value = "scarleto_brazier_lit.m2", + }, + { + fileId = "195085", + text = "scarleto_brazier_smoker.m2", + value = "scarleto_brazier_smoker.m2", + }, + { + fileId = "195086", + text = "scarleto_brazier_unlit.m2", + value = "scarleto_brazier_unlit.m2", + }, + { + fileId = "243493", + text = "scarleto_brazier_unlit_base.m2", + value = "scarleto_brazier_unlit_base.m2", + }, + { + fileId = "195087", + text = "scarleto_gallows.m2", + value = "scarleto_gallows.m2", + }, + }, + text = "scarletonslaught", + value = "scarletonslaught", + }, + { + children = { + { + children = { + { + fileId = "195090", + text = "cd_altar_02.m2", + value = "cd_altar_02.m2", + }, + }, + text = "cd", + value = "cd", + }, + { + fileId = "195095", + text = "icecrown_stairs01.m2", + value = "icecrown_stairs01.m2", + }, + { + fileId = "243506", + text = "sc_alchemy_table.m2", + value = "sc_alchemy_table.m2", + }, + { + fileId = "195098", + text = "sc_banner.m2", + value = "sc_banner.m2", + }, + { + fileId = "243511", + text = "sc_banner_02.m2", + value = "sc_banner_02.m2", + }, + { + fileId = "243512", + text = "sc_banner_03.m2", + value = "sc_banner_03.m2", + }, + { + fileId = "243513", + text = "sc_banner_04.m2", + value = "sc_banner_04.m2", + }, + { + fileId = "243514", + text = "sc_banner_05.m2", + value = "sc_banner_05.m2", + }, + { + fileId = "243515", + text = "sc_banner_06.m2", + value = "sc_banner_06.m2", + }, + { + fileId = "243519", + text = "sc_barrel_01.m2", + value = "sc_barrel_01.m2", + }, + { + fileId = "243520", + text = "sc_barrel_01_broken.m2", + value = "sc_barrel_01_broken.m2", + }, + { + fileId = "243521", + text = "sc_barrel_02_broken.m2", + value = "sc_barrel_02_broken.m2", + }, + { + fileId = "195100", + text = "sc_barricade.m2", + value = "sc_barricade.m2", + }, + { + fileId = "243523", + text = "sc_barricade_broken.m2", + value = "sc_barricade_broken.m2", + }, + { + fileId = "195101", + text = "sc_blighter.m2", + value = "sc_blighter.m2", + }, + { + fileId = "195104", + text = "sc_blighter2.m2", + value = "sc_blighter2.m2", + }, + { + fileId = "243526", + text = "sc_blighter2_green.m2", + value = "sc_blighter2_green.m2", + }, + { + fileId = "195105", + text = "sc_blighter_broken.m2", + value = "sc_blighter_broken.m2", + }, + { + fileId = "243527", + text = "sc_blighter_green.m2", + value = "sc_blighter_green.m2", + }, + { + fileId = "243528", + text = "sc_bloodorb.m2", + value = "sc_bloodorb.m2", + }, + { + fileId = "243533", + text = "sc_bodycart_01.m2", + value = "sc_bodycart_01.m2", + }, + { + fileId = "243535", + text = "sc_bodycart_02.m2", + value = "sc_bodycart_02.m2", + }, + { + fileId = "243536", + text = "sc_bodycart_body.m2", + value = "sc_bodycart_body.m2", + }, + { + fileId = "243537", + text = "sc_bodycart_destroyed.m2", + value = "sc_bodycart_destroyed.m2", + }, + { + fileId = "243538", + text = "sc_bodycart_nobody.m2", + value = "sc_bodycart_nobody.m2", + }, + { + fileId = "243539", + text = "sc_bodyhook.m2", + value = "sc_bodyhook.m2", + }, + { + fileId = "243540", + text = "sc_bodyhook_arm_01.m2", + value = "sc_bodyhook_arm_01.m2", + }, + { + fileId = "243541", + text = "sc_bodyhook_arm_02.m2", + value = "sc_bodyhook_arm_02.m2", + }, + { + fileId = "243542", + text = "sc_bodyhook_boot.m2", + value = "sc_bodyhook_boot.m2", + }, + { + fileId = "243543", + text = "sc_bodyhook_torso.m2", + value = "sc_bodyhook_torso.m2", + }, + { + fileId = "243545", + text = "sc_bodyjar.m2", + value = "sc_bodyjar.m2", + }, + { + fileId = "333851", + text = "sc_bodyjar_03.m2", + value = "sc_bodyjar_03.m2", + }, + { + fileId = "243546", + text = "sc_bodyjar_ghoul.m2", + value = "sc_bodyjar_ghoul.m2", + }, + { + fileId = "327391", + text = "sc_bodyjar_orange.m2", + value = "sc_bodyjar_orange.m2", + }, + { + fileId = "329355", + text = "sc_bodyjar_orange_02.m2", + value = "sc_bodyjar_orange_02.m2", + }, + { + fileId = "333852", + text = "sc_bodyjar_orange_03.m2", + value = "sc_bodyjar_orange_03.m2", + }, + { + fileId = "243547", + text = "sc_bodyjar_skeleton.m2", + value = "sc_bodyjar_skeleton.m2", + }, + { + fileId = "195106", + text = "sc_bonearm_01.m2", + value = "sc_bonearm_01.m2", + }, + { + fileId = "243550", + text = "sc_bonearm_green_01.m2", + value = "sc_bonearm_green_01.m2", + }, + { + fileId = "195107", + text = "sc_bonesawtable_01.m2", + value = "sc_bonesawtable_01.m2", + }, + { + fileId = "195109", + text = "sc_brazier1.m2", + value = "sc_brazier1.m2", + }, + { + fileId = "195110", + text = "sc_brazier1_long.m2", + value = "sc_brazier1_long.m2", + }, + { + fileId = "315184", + text = "sc_brazier1_long_orange.m2", + value = "sc_brazier1_long_orange.m2", + }, + { + fileId = "195111", + text = "sc_brazier2.m2", + value = "sc_brazier2.m2", + }, + { + fileId = "195112", + text = "sc_brazier2_long.m2", + value = "sc_brazier2_long.m2", + }, + { + fileId = "315185", + text = "sc_brazier2_long_orange.m2", + value = "sc_brazier2_long_orange.m2", + }, + { + fileId = "315186", + text = "sc_brazier2_orange.m2", + value = "sc_brazier2_orange.m2", + }, + { + fileId = "243551", + text = "sc_brazier2_short.m2", + value = "sc_brazier2_short.m2", + }, + { + fileId = "195113", + text = "sc_brazier3.m2", + value = "sc_brazier3.m2", + }, + { + fileId = "315187", + text = "sc_brazier3_orange.m2", + value = "sc_brazier3_orange.m2", + }, + { + fileId = "195115", + text = "sc_cages_01.m2", + value = "sc_cages_01.m2", + }, + { + fileId = "243553", + text = "sc_cages_02.m2", + value = "sc_cages_02.m2", + }, + { + fileId = "195116", + text = "sc_castingcircle_01.m2", + value = "sc_castingcircle_01.m2", + }, + { + fileId = "195118", + text = "sc_cauldron.m2", + value = "sc_cauldron.m2", + }, + { + fileId = "243555", + text = "sc_cauldron_empty.m2", + value = "sc_cauldron_empty.m2", + }, + { + fileId = "243557", + text = "sc_cauldron_green.m2", + value = "sc_cauldron_green.m2", + }, + { + fileId = "243558", + text = "sc_cauldron_green_02.m2", + value = "sc_cauldron_green_02.m2", + }, + { + fileId = "243560", + text = "sc_chain.m2", + value = "sc_chain.m2", + }, + { + fileId = "195121", + text = "sc_chest.m2", + value = "sc_chest.m2", + }, + { + fileId = "243561", + text = "sc_conveyer.m2", + value = "sc_conveyer.m2", + }, + { + fileId = "243563", + text = "sc_crane_01.m2", + value = "sc_crane_01.m2", + }, + { + fileId = "243565", + text = "sc_crane_02.m2", + value = "sc_crane_02.m2", + }, + { + fileId = "243568", + text = "sc_crate_01.m2", + value = "sc_crate_01.m2", + }, + { + fileId = "243569", + text = "sc_crate_02.m2", + value = "sc_crate_02.m2", + }, + { + fileId = "243570", + text = "sc_crystal.m2", + value = "sc_crystal.m2", + }, + { + fileId = "243571", + text = "sc_crystal_base.m2", + value = "sc_crystal_base.m2", + }, + { + fileId = "243572", + text = "sc_deathstar_01.m2", + value = "sc_deathstar_01.m2", + }, + { + fileId = "243574", + text = "sc_embalmingfluid.m2", + value = "sc_embalmingfluid.m2", + }, + { + fileId = "315157", + text = "sc_engineofsouls_effect_01.m2", + value = "sc_engineofsouls_effect_01.m2", + }, + { + fileId = "243578", + text = "sc_eyeofacherus.m2", + value = "sc_eyeofacherus.m2", + }, + { + fileId = "243581", + text = "sc_eyeofacherus_02.m2", + value = "sc_eyeofacherus_02.m2", + }, + { + fileId = "328250", + text = "sc_eyeofacherus_03.m2", + value = "sc_eyeofacherus_03.m2", + }, + { + fileId = "243584", + text = "sc_fence.m2", + value = "sc_fence.m2", + }, + { + fileId = "243585", + text = "sc_fence_base.m2", + value = "sc_fence_base.m2", + }, + { + fileId = "243586", + text = "sc_fleshgiant_arm_01.m2", + value = "sc_fleshgiant_arm_01.m2", + }, + { + fileId = "243587", + text = "sc_fleshgiant_arm_02.m2", + value = "sc_fleshgiant_arm_02.m2", + }, + { + fileId = "243588", + text = "sc_fleshgiant_boot.m2", + value = "sc_fleshgiant_boot.m2", + }, + { + fileId = "243589", + text = "sc_fleshgiant_leg.m2", + value = "sc_fleshgiant_leg.m2", + }, + { + fileId = "243590", + text = "sc_fleshgiant_torso.m2", + value = "sc_fleshgiant_torso.m2", + }, + { + fileId = "243591", + text = "sc_floor_decoration_01.m2", + value = "sc_floor_decoration_01.m2", + }, + { + fileId = "243593", + text = "sc_frostglow.m2", + value = "sc_frostglow.m2", + }, + { + fileId = "195122", + text = "sc_meatwagon_01.m2", + value = "sc_meatwagon_01.m2", + }, + { + fileId = "243594", + text = "sc_meatwagon_01_broken.m2", + value = "sc_meatwagon_01_broken.m2", + }, + { + fileId = "195125", + text = "sc_obelisk1.m2", + value = "sc_obelisk1.m2", + }, + { + fileId = "195126", + text = "sc_obelisk2.m2", + value = "sc_obelisk2.m2", + }, + { + fileId = "243595", + text = "sc_operation_table.m2", + value = "sc_operation_table.m2", + }, + { + fileId = "243596", + text = "sc_pitcylinder.m2", + value = "sc_pitcylinder.m2", + }, + { + fileId = "243597", + text = "sc_pitcylinder_02.m2", + value = "sc_pitcylinder_02.m2", + }, + { + fileId = "243598", + text = "sc_pitcylinder_temp.m2", + value = "sc_pitcylinder_temp.m2", + }, + { + fileId = "243599", + text = "sc_plaguebarrel.m2", + value = "sc_plaguebarrel.m2", + }, + { + fileId = "243600", + text = "sc_plaguebarrel_02.m2", + value = "sc_plaguebarrel_02.m2", + }, + { + fileId = "243601", + text = "sc_plaguebomb_green.m2", + value = "sc_plaguebomb_green.m2", + }, + { + fileId = "243602", + text = "sc_plaguebomb_orange.m2", + value = "sc_plaguebomb_orange.m2", + }, + { + fileId = "195127", + text = "sc_platform.m2", + value = "sc_platform.m2", + }, + { + fileId = "195128", + text = "sc_platform2.m2", + value = "sc_platform2.m2", + }, + { + fileId = "195129", + text = "sc_runeforge_01.m2", + value = "sc_runeforge_01.m2", + }, + { + fileId = "243603", + text = "sc_runeforge_02.m2", + value = "sc_runeforge_02.m2", + }, + { + fileId = "195130", + text = "sc_skullpikes_01.m2", + value = "sc_skullpikes_01.m2", + }, + { + fileId = "195131", + text = "sc_skullpikes_02.m2", + value = "sc_skullpikes_02.m2", + }, + { + fileId = "243604", + text = "sc_slimepool_green.m2", + value = "sc_slimepool_green.m2", + }, + { + fileId = "243605", + text = "sc_slimepool_orange.m2", + value = "sc_slimepool_orange.m2", + }, + { + fileId = "243606", + text = "sc_spiriteffect_01.m2", + value = "sc_spiriteffect_01.m2", + }, + { + fileId = "243608", + text = "sc_spirits_01.m2", + value = "sc_spirits_01.m2", + }, + { + fileId = "327767", + text = "sc_spirits_02.m2", + value = "sc_spirits_02.m2", + }, + { + fileId = "348932", + text = "sc_spirits_03.m2", + value = "sc_spirits_03.m2", + }, + { + fileId = "195133", + text = "sc_stairs.m2", + value = "sc_stairs.m2", + }, + { + fileId = "195134", + text = "sc_stairs2.m2", + value = "sc_stairs2.m2", + }, + { + fileId = "195135", + text = "sc_surgicaltable_01.m2", + value = "sc_surgicaltable_01.m2", + }, + { + fileId = "195136", + text = "sc_surgicaltable_02.m2", + value = "sc_surgicaltable_02.m2", + }, + { + fileId = "243610", + text = "sc_tanktrap.m2", + value = "sc_tanktrap.m2", + }, + { + fileId = "320159", + text = "sc_teleportpad.m2", + value = "sc_teleportpad.m2", + }, + { + fileId = "328180", + text = "sc_teleportpad2.m2", + value = "sc_teleportpad2.m2", + }, + { + fileId = "347030", + text = "sc_teleportpad3.m2", + value = "sc_teleportpad3.m2", + }, + { + fileId = "195139", + text = "sc_tent1.m2", + value = "sc_tent1.m2", + }, + { + fileId = "243612", + text = "sc_tent1_destroyed.m2", + value = "sc_tent1_destroyed.m2", + }, + { + fileId = "195140", + text = "sc_tent2.m2", + value = "sc_tent2.m2", + }, + { + fileId = "195141", + text = "sc_tent_destroyed.m2", + value = "sc_tent_destroyed.m2", + }, + { + fileId = "243613", + text = "sc_tools_table.m2", + value = "sc_tools_table.m2", + }, + { + fileId = "195142", + text = "sc_trench_c_long.m2", + value = "sc_trench_c_long.m2", + }, + { + fileId = "195143", + text = "sc_trench_c_medium.m2", + value = "sc_trench_c_medium.m2", + }, + { + fileId = "195144", + text = "sc_trench_c_tall.m2", + value = "sc_trench_c_tall.m2", + }, + { + fileId = "243614", + text = "sc_trench_m_brace.m2", + value = "sc_trench_m_brace.m2", + }, + { + fileId = "195145", + text = "sc_trench_m_long.m2", + value = "sc_trench_m_long.m2", + }, + { + fileId = "195146", + text = "sc_trench_m_medium.m2", + value = "sc_trench_m_medium.m2", + }, + { + fileId = "195147", + text = "sc_trench_m_tall.m2", + value = "sc_trench_m_tall.m2", + }, + { + fileId = "195148", + text = "sc_trench_p_bar.m2", + value = "sc_trench_p_bar.m2", + }, + { + fileId = "195149", + text = "sc_trench_p_bone1.m2", + value = "sc_trench_p_bone1.m2", + }, + { + fileId = "195150", + text = "sc_trench_p_bone2.m2", + value = "sc_trench_p_bone2.m2", + }, + { + fileId = "195151", + text = "sc_trench_p_bone3.m2", + value = "sc_trench_p_bone3.m2", + }, + { + fileId = "195152", + text = "sc_trench_p_bracer.m2", + value = "sc_trench_p_bracer.m2", + }, + { + fileId = "195153", + text = "sc_trench_p_chain.m2", + value = "sc_trench_p_chain.m2", + }, + { + fileId = "195154", + text = "sc_wagon.m2", + value = "sc_wagon.m2", + }, + { + fileId = "195157", + text = "sc_wagon_02.m2", + value = "sc_wagon_02.m2", + }, + { + fileId = "243615", + text = "sc_wagon_02_broken.m2", + value = "sc_wagon_02_broken.m2", + }, + { + fileId = "243616", + text = "sc_wagon_broken.m2", + value = "sc_wagon_broken.m2", + }, + { + fileId = "243618", + text = "sc_wall_01.m2", + value = "sc_wall_01.m2", + }, + { + fileId = "243619", + text = "sc_wall_01_cap.m2", + value = "sc_wall_01_cap.m2", + }, + { + fileId = "243620", + text = "sc_wall_01_ramp.m2", + value = "sc_wall_01_ramp.m2", + }, + { + fileId = "243621", + text = "sc_wall_02.m2", + value = "sc_wall_02.m2", + }, + { + fileId = "243622", + text = "sc_wall_02_cap.m2", + value = "sc_wall_02_cap.m2", + }, + { + fileId = "243623", + text = "sc_wall_02_ramp.m2", + value = "sc_wall_02_ramp.m2", + }, + { + fileId = "243624", + text = "sc_wall_03.m2", + value = "sc_wall_03.m2", + }, + { + fileId = "243625", + text = "sc_wall_04.m2", + value = "sc_wall_04.m2", + }, + { + fileId = "243626", + text = "sc_wall_05.m2", + value = "sc_wall_05.m2", + }, + { + fileId = "243627", + text = "sc_wall_05_piece.m2", + value = "sc_wall_05_piece.m2", + }, + { + fileId = "243628", + text = "sc_wall_06.m2", + value = "sc_wall_06.m2", + }, + { + fileId = "243629", + text = "sc_wall_06_piece.m2", + value = "sc_wall_06_piece.m2", + }, + { + fileId = "243630", + text = "sc_wall_decoration_01.m2", + value = "sc_wall_decoration_01.m2", + }, + { + fileId = "243631", + text = "sc_wall_decoration_02.m2", + value = "sc_wall_decoration_02.m2", + }, + { + fileId = "195160", + text = "sc_warmachine_01.m2", + value = "sc_warmachine_01.m2", + }, + { + fileId = "243633", + text = "sc_warmachine_01_broken.m2", + value = "sc_warmachine_01_broken.m2", + }, + { + fileId = "243634", + text = "sc_warmachine_01_green.m2", + value = "sc_warmachine_01_green.m2", + }, + { + fileId = "195161", + text = "sc_weaponrack-deathknight.m2", + value = "sc_weaponrack-deathknight.m2", + }, + { + fileId = "195162", + text = "sc_weaponrack-empty.m2", + value = "sc_weaponrack-empty.m2", + }, + { + fileId = "195164", + text = "sc_weaponrack-weapon1.m2", + value = "sc_weaponrack-weapon1.m2", + }, + { + fileId = "195165", + text = "sc_weaponrack-weapon2.m2", + value = "sc_weaponrack-weapon2.m2", + }, + { + fileId = "195166", + text = "sc_weaponrack-weapon3.m2", + value = "sc_weaponrack-weapon3.m2", + }, + { + fileId = "195167", + text = "sc_weaponrack-weapon4.m2", + value = "sc_weaponrack-weapon4.m2", + }, + { + fileId = "195168", + text = "sc_weaponrack-weapon5.m2", + value = "sc_weaponrack-weapon5.m2", + }, + { + fileId = "195170", + text = "sc_weaponrack1.m2", + value = "sc_weaponrack1.m2", + }, + { + fileId = "195171", + text = "sc_weaponrack2.m2", + value = "sc_weaponrack2.m2", + }, + { + fileId = "243636", + text = "sc_whole_body.m2", + value = "sc_whole_body.m2", + }, + { + fileId = "243637", + text = "sc_wolfskull_green_01.m2", + value = "sc_wolfskull_green_01.m2", + }, + { + fileId = "195172", + text = "sc_yoggthoritebar_01.m2", + value = "sc_yoggthoritebar_01.m2", + }, + { + fileId = "195173", + text = "sc_yoggthoritebar_stack_01.m2", + value = "sc_yoggthoritebar_stack_01.m2", + }, + }, + text = "scourge", + value = "scourge", + }, + { + children = { + { + fileId = "243639", + text = "seamine_01.m2", + value = "seamine_01.m2", + }, + }, + text = "seamines", + value = "seamines", + }, + { + children = { + { + children = { + { + fileId = "195179", + text = "vrs_chest_01.m2", + value = "vrs_chest_01.m2", + }, + { + fileId = "195181", + text = "vrs_crate_01.m2", + value = "vrs_crate_01.m2", + }, + { + fileId = "243640", + text = "vrs_crate_destroyed_01.m2", + value = "vrs_crate_destroyed_01.m2", + }, + { + fileId = "195185", + text = "vrs_netpile_01.m2", + value = "vrs_netpile_01.m2", + }, + { + fileId = "195187", + text = "vrs_tent_01.m2", + value = "vrs_tent_01.m2", + }, + { + fileId = "195188", + text = "vrs_tent_02.m2", + value = "vrs_tent_02.m2", + }, + }, + text = "shore", + value = "shore", + }, + { + children = { + { + fileId = "195189", + text = "vrs_weaponrack_01.m2", + value = "vrs_weaponrack_01.m2", + }, + { + fileId = "195190", + text = "vrs_weaponrack_02.m2", + value = "vrs_weaponrack_02.m2", + }, + }, + text = "weapons", + value = "weapons", + }, + }, + text = "seavrykul", + value = "seavrykul", + }, + { + children = { + { + fileId = "243641", + text = "demolisherstatic.m2", + value = "demolisherstatic.m2", + }, + { + fileId = "243642", + text = "siegetankstatic.m2", + value = "siegetankstatic.m2", + }, + }, + text = "seigeequipment", + value = "seigeequipment", + }, + { + children = { + { + fileId = "195191", + text = "skull_protodragon.m2", + value = "skull_protodragon.m2", + }, + { + fileId = "195192", + text = "skull_shoveltusk.m2", + value = "skull_shoveltusk.m2", + }, + { + fileId = "195194", + text = "skull_wolf.m2", + value = "skull_wolf.m2", + }, + { + fileId = "195195", + text = "skull_yeti.m2", + value = "skull_yeti.m2", + }, + }, + text = "skulls", + value = "skulls", + }, + { + children = { + { + children = { + { + fileId = "195197", + text = "sunshatter_banner01.m2", + value = "sunshatter_banner01.m2", + }, + { + fileId = "195198", + text = "sunshatter_banner02.m2", + value = "sunshatter_banner02.m2", + }, + { + fileId = "195199", + text = "sunshatter_banner03.m2", + value = "sunshatter_banner03.m2", + }, + { + fileId = "195200", + text = "sunshatter_monument.m2", + value = "sunshatter_monument.m2", + }, + }, + text = "banner", + value = "banner", + }, + }, + text = "sunshatter", + value = "sunshatter", + }, + { + children = { + { + fileId = "243646", + text = "ti_arch.m2", + value = "ti_arch.m2", + }, + { + fileId = "243647", + text = "ti_archsingle.m2", + value = "ti_archsingle.m2", + }, + { + fileId = "243648", + text = "ti_battlegroundportal_01.m2", + value = "ti_battlegroundportal_01.m2", + }, + { + fileId = "243649", + text = "ti_block01.m2", + value = "ti_block01.m2", + }, + { + fileId = "243650", + text = "ti_bottom01.m2", + value = "ti_bottom01.m2", + }, + { + fileId = "243651", + text = "ti_bottom02.m2", + value = "ti_bottom02.m2", + }, + { + fileId = "243652", + text = "ti_bridge.m2", + value = "ti_bridge.m2", + }, + { + fileId = "243653", + text = "ti_brokenpillar.m2", + value = "ti_brokenpillar.m2", + }, + { + fileId = "243654", + text = "ti_brokenroad01.m2", + value = "ti_brokenroad01.m2", + }, + { + fileId = "243655", + text = "ti_brokenroad02.m2", + value = "ti_brokenroad02.m2", + }, + { + fileId = "243656", + text = "ti_brokenroad03.m2", + value = "ti_brokenroad03.m2", + }, + { + fileId = "243657", + text = "ti_brokenroad04.m2", + value = "ti_brokenroad04.m2", + }, + { + fileId = "243658", + text = "ti_brokenroad05.m2", + value = "ti_brokenroad05.m2", + }, + { + fileId = "254943", + text = "ti_brokenroad05_small.m2", + value = "ti_brokenroad05_small.m2", + }, + { + fileId = "243659", + text = "ti_brokenroad06.m2", + value = "ti_brokenroad06.m2", + }, + { + fileId = "243660", + text = "ti_brokenroad07.m2", + value = "ti_brokenroad07.m2", + }, + { + fileId = "243661", + text = "ti_brokenroad08.m2", + value = "ti_brokenroad08.m2", + }, + { + fileId = "195206", + text = "ti_building01.m2", + value = "ti_building01.m2", + }, + { + fileId = "195207", + text = "ti_building02.m2", + value = "ti_building02.m2", + }, + { + fileId = "243662", + text = "ti_buildingblock01.m2", + value = "ti_buildingblock01.m2", + }, + { + fileId = "243663", + text = "ti_buildingblock02.m2", + value = "ti_buildingblock02.m2", + }, + { + fileId = "243664", + text = "ti_buildingblock03.m2", + value = "ti_buildingblock03.m2", + }, + { + fileId = "243665", + text = "ti_buildingblock04.m2", + value = "ti_buildingblock04.m2", + }, + { + fileId = "243667", + text = "ti_chamberportal_black01.m2", + value = "ti_chamberportal_black01.m2", + }, + { + fileId = "243669", + text = "ti_chamberportal_blue01.m2", + value = "ti_chamberportal_blue01.m2", + }, + { + fileId = "243671", + text = "ti_chamberportal_bronze01.m2", + value = "ti_chamberportal_bronze01.m2", + }, + { + fileId = "243673", + text = "ti_chamberportal_green01.m2", + value = "ti_chamberportal_green01.m2", + }, + { + fileId = "243675", + text = "ti_chamberportal_red01.m2", + value = "ti_chamberportal_red01.m2", + }, + { + fileId = "367652", + text = "ti_chamberportal_red01_broken.m2", + value = "ti_chamberportal_red01_broken.m2", + }, + { + fileId = "243677", + text = "ti_curvestair.m2", + value = "ti_curvestair.m2", + }, + { + fileId = "243678", + text = "ti_disc_01.m2", + value = "ti_disc_01.m2", + }, + { + fileId = "243679", + text = "ti_dome.m2", + value = "ti_dome.m2", + }, + { + fileId = "243680", + text = "ti_dome02.m2", + value = "ti_dome02.m2", + }, + { + fileId = "243681", + text = "ti_domesmall.m2", + value = "ti_domesmall.m2", + }, + { + fileId = "243684", + text = "ti_dragon_roar_01.m2", + value = "ti_dragon_roar_01.m2", + }, + { + fileId = "243685", + text = "ti_dragon_sit_01.m2", + value = "ti_dragon_sit_01.m2", + }, + { + fileId = "195209", + text = "ti_elevatedroad01.m2", + value = "ti_elevatedroad01.m2", + }, + { + fileId = "195210", + text = "ti_elevatedroadend01.m2", + value = "ti_elevatedroadend01.m2", + }, + { + fileId = "195211", + text = "ti_fieldgenerator_01.m2", + value = "ti_fieldgenerator_01.m2", + }, + { + fileId = "195212", + text = "ti_fieldgenerator_02.m2", + value = "ti_fieldgenerator_02.m2", + }, + { + fileId = "195213", + text = "ti_fieldgenerator_03.m2", + value = "ti_fieldgenerator_03.m2", + }, + { + fileId = "195214", + text = "ti_fieldgenerator_04.m2", + value = "ti_fieldgenerator_04.m2", + }, + { + fileId = "195215", + text = "ti_fieldgenerator_05.m2", + value = "ti_fieldgenerator_05.m2", + }, + { + fileId = "195218", + text = "ti_largewall01.m2", + value = "ti_largewall01.m2", + }, + { + fileId = "195219", + text = "ti_largewall01_end.m2", + value = "ti_largewall01_end.m2", + }, + { + fileId = "243686", + text = "ti_lowwall01.m2", + value = "ti_lowwall01.m2", + }, + { + fileId = "243687", + text = "ti_lowwall02.m2", + value = "ti_lowwall02.m2", + }, + { + fileId = "243688", + text = "ti_maintower.m2", + value = "ti_maintower.m2", + }, + { + fileId = "243689", + text = "ti_maintower02.m2", + value = "ti_maintower02.m2", + }, + { + fileId = "243690", + text = "ti_mid01.m2", + value = "ti_mid01.m2", + }, + { + fileId = "243691", + text = "ti_mid02.m2", + value = "ti_mid02.m2", + }, + { + fileId = "243692", + text = "ti_mid03.m2", + value = "ti_mid03.m2", + }, + { + fileId = "243693", + text = "ti_mid04.m2", + value = "ti_mid04.m2", + }, + { + fileId = "243694", + text = "ti_mid05.m2", + value = "ti_mid05.m2", + }, + { + fileId = "243695", + text = "ti_mid06.m2", + value = "ti_mid06.m2", + }, + { + fileId = "195220", + text = "ti_mountainbridge01.m2", + value = "ti_mountainbridge01.m2", + }, + { + fileId = "195221", + text = "ti_mountainbridge02.m2", + value = "ti_mountainbridge02.m2", + }, + { + fileId = "195222", + text = "ti_mountainbridge03.m2", + value = "ti_mountainbridge03.m2", + }, + { + fileId = "195223", + text = "ti_mountainstairs01.m2", + value = "ti_mountainstairs01.m2", + }, + { + fileId = "195224", + text = "ti_obelisk01.m2", + value = "ti_obelisk01.m2", + }, + { + fileId = "243696", + text = "ti_pillar01.m2", + value = "ti_pillar01.m2", + }, + { + fileId = "243697", + text = "ti_pillar02.m2", + value = "ti_pillar02.m2", + }, + { + fileId = "243698", + text = "ti_pillar04.m2", + value = "ti_pillar04.m2", + }, + { + fileId = "243699", + text = "ti_resurrection_off_01.m2", + value = "ti_resurrection_off_01.m2", + }, + { + fileId = "243700", + text = "ti_resurrection_on_01.m2", + value = "ti_resurrection_on_01.m2", + }, + { + fileId = "195228", + text = "ti_roadbroken01.m2", + value = "ti_roadbroken01.m2", + }, + { + fileId = "195229", + text = "ti_roadbroken02.m2", + value = "ti_roadbroken02.m2", + }, + { + fileId = "195230", + text = "ti_roadcolumn01.m2", + value = "ti_roadcolumn01.m2", + }, + { + fileId = "195231", + text = "ti_roadcolumn02.m2", + value = "ti_roadcolumn02.m2", + }, + { + fileId = "195232", + text = "ti_roadcolumn03.m2", + value = "ti_roadcolumn03.m2", + }, + { + fileId = "195233", + text = "ti_roadcolumnarchpiece.m2", + value = "ti_roadcolumnarchpiece.m2", + }, + { + fileId = "195234", + text = "ti_roadcolumnbroken.m2", + value = "ti_roadcolumnbroken.m2", + }, + { + fileId = "195235", + text = "ti_roadcolumnpiece.m2", + value = "ti_roadcolumnpiece.m2", + }, + { + fileId = "195237", + text = "ti_roadcurbbroken01.m2", + value = "ti_roadcurbbroken01.m2", + }, + { + fileId = "195238", + text = "ti_roadcurblong01.m2", + value = "ti_roadcurblong01.m2", + }, + { + fileId = "195239", + text = "ti_roadcurblong02.m2", + value = "ti_roadcurblong02.m2", + }, + { + fileId = "195240", + text = "ti_roadcurbnub01.m2", + value = "ti_roadcurbnub01.m2", + }, + { + fileId = "195241", + text = "ti_roadcurbshort01.m2", + value = "ti_roadcurbshort01.m2", + }, + { + fileId = "195242", + text = "ti_roadcurbshort02.m2", + value = "ti_roadcurbshort02.m2", + }, + { + fileId = "195243", + text = "ti_roadpiece01.m2", + value = "ti_roadpiece01.m2", + }, + { + fileId = "195244", + text = "ti_roadpiece02.m2", + value = "ti_roadpiece02.m2", + }, + { + fileId = "195245", + text = "ti_roadpiece03.m2", + value = "ti_roadpiece03.m2", + }, + { + fileId = "251464", + text = "ti_roadpiece04.m2", + value = "ti_roadpiece04.m2", + }, + { + fileId = "252767", + text = "ti_roadpiece05.m2", + value = "ti_roadpiece05.m2", + }, + { + fileId = "252841", + text = "ti_roadpiece06.m2", + value = "ti_roadpiece06.m2", + }, + { + fileId = "252842", + text = "ti_roadpiece07.m2", + value = "ti_roadpiece07.m2", + }, + { + fileId = "252843", + text = "ti_roadpiece08.m2", + value = "ti_roadpiece08.m2", + }, + { + fileId = "195246", + text = "ti_roadsolid01.m2", + value = "ti_roadsolid01.m2", + }, + { + fileId = "195247", + text = "ti_roadwall01.m2", + value = "ti_roadwall01.m2", + }, + { + fileId = "195248", + text = "ti_roadwall02.m2", + value = "ti_roadwall02.m2", + }, + { + fileId = "195249", + text = "ti_roadwall03.m2", + value = "ti_roadwall03.m2", + }, + { + fileId = "243701", + text = "ti_roof01.m2", + value = "ti_roof01.m2", + }, + { + fileId = "243702", + text = "ti_shrine_01.m2", + value = "ti_shrine_01.m2", + }, + { + fileId = "243703", + text = "ti_singlepillar.m2", + value = "ti_singlepillar.m2", + }, + { + fileId = "195251", + text = "ti_smallwall01.m2", + value = "ti_smallwall01.m2", + }, + { + fileId = "195252", + text = "ti_smallwall01_end.m2", + value = "ti_smallwall01_end.m2", + }, + { + fileId = "195253", + text = "ti_smallwall02.m2", + value = "ti_smallwall02.m2", + }, + { + fileId = "195254", + text = "ti_smallwall02_end.m2", + value = "ti_smallwall02_end.m2", + }, + { + fileId = "243704", + text = "ti_spinningpiece01.m2", + value = "ti_spinningpiece01.m2", + }, + { + fileId = "243705", + text = "ti_stair.m2", + value = "ti_stair.m2", + }, + { + fileId = "243706", + text = "ti_stair02.m2", + value = "ti_stair02.m2", + }, + { + fileId = "243707", + text = "ti_tallwall01.m2", + value = "ti_tallwall01.m2", + }, + { + fileId = "243708", + text = "ti_tallwall02.m2", + value = "ti_tallwall02.m2", + }, + { + fileId = "243709", + text = "ti_tallwallcurve.m2", + value = "ti_tallwallcurve.m2", + }, + { + fileId = "243710", + text = "ti_tallwallpillar.m2", + value = "ti_tallwallpillar.m2", + }, + { + fileId = "243711", + text = "ti_top01.m2", + value = "ti_top01.m2", + }, + { + fileId = "243712", + text = "ti_top02.m2", + value = "ti_top02.m2", + }, + { + fileId = "243713", + text = "ti_top03.m2", + value = "ti_top03.m2", + }, + { + fileId = "195256", + text = "ti_tower_part01.m2", + value = "ti_tower_part01.m2", + }, + { + fileId = "195257", + text = "ti_tower_part02.m2", + value = "ti_tower_part02.m2", + }, + { + fileId = "195258", + text = "ti_tower_part03.m2", + value = "ti_tower_part03.m2", + }, + { + fileId = "195259", + text = "ti_tower_part04.m2", + value = "ti_tower_part04.m2", + }, + { + fileId = "195260", + text = "ti_tower_part05.m2", + value = "ti_tower_part05.m2", + }, + { + fileId = "195261", + text = "ti_tower_part06.m2", + value = "ti_tower_part06.m2", + }, + { + fileId = "243714", + text = "ti_triangleroof01.m2", + value = "ti_triangleroof01.m2", + }, + { + fileId = "243715", + text = "ti_triangleroof02.m2", + value = "ti_triangleroof02.m2", + }, + { + fileId = "243716", + text = "ti_trim01.m2", + value = "ti_trim01.m2", + }, + { + fileId = "243717", + text = "ti_trim02.m2", + value = "ti_trim02.m2", + }, + { + fileId = "243718", + text = "ti_trim03.m2", + value = "ti_trim03.m2", + }, + { + fileId = "243719", + text = "ti_trim04.m2", + value = "ti_trim04.m2", + }, + { + fileId = "243720", + text = "ti_trim05.m2", + value = "ti_trim05.m2", + }, + { + fileId = "243721", + text = "ti_trim06.m2", + value = "ti_trim06.m2", + }, + { + fileId = "243722", + text = "ti_walloval01.m2", + value = "ti_walloval01.m2", + }, + { + fileId = "243723", + text = "ti_walloval02.m2", + value = "ti_walloval02.m2", + }, + { + fileId = "243724", + text = "ti_walloval03.m2", + value = "ti_walloval03.m2", + }, + { + fileId = "195263", + text = "ti_waygate_01.m2", + value = "ti_waygate_01.m2", + }, + { + fileId = "243725", + text = "ti_weathergenerator.m2", + value = "ti_weathergenerator.m2", + }, + { + fileId = "243726", + text = "ti_weathergenerator_broken.m2", + value = "ti_weathergenerator_broken.m2", + }, + }, + text = "titan", + value = "titan", + }, + { + children = { + { + children = { + { + fileId = "195269", + text = "ts_crabbasket_01.m2", + value = "ts_crabbasket_01.m2", + }, + { + fileId = "195270", + text = "ts_fishingbasket_01.m2", + value = "ts_fishingbasket_01.m2", + }, + }, + text = "crate", + value = "crate", + }, + { + children = { + { + fileId = "195274", + text = "ts_dock_01.m2", + value = "ts_dock_01.m2", + }, + }, + text = "dock", + value = "dock", + }, + { + children = { + { + fileId = "195278", + text = "ts_fishingpole_01.m2", + value = "ts_fishingpole_01.m2", + }, + }, + text = "fishing", + value = "fishing", + }, + { + children = { + { + fileId = "195286", + text = "ts_fishlight.m2", + value = "ts_fishlight.m2", + }, + }, + text = "fishlamp", + value = "fishlamp", + }, + { + children = { + { + fileId = "195290", + text = "ts_log_pile_01.m2", + value = "ts_log_pile_01.m2", + }, + { + fileId = "195292", + text = "ts_log_pile_snowed_01.m2", + value = "ts_log_pile_snowed_01.m2", + }, + }, + text = "logs", + value = "logs", + }, + { + children = { + { + fileId = "195293", + text = "ts_fence01.m2", + value = "ts_fence01.m2", + }, + { + fileId = "195294", + text = "ts_fence02.m2", + value = "ts_fence02.m2", + }, + { + fileId = "195295", + text = "ts_light02.m2", + value = "ts_light02.m2", + }, + { + fileId = "195297", + text = "ts_tarp_01.m2", + value = "ts_tarp_01.m2", + }, + { + fileId = "195299", + text = "ts_tarp_02.m2", + value = "ts_tarp_02.m2", + }, + }, + text = "misc", + value = "misc", + }, + { + fileId = "195304", + text = "ts_long_table_02.m2", + value = "ts_long_table_02.m2", + }, + }, + text = "tuskar", + value = "tuskar", + }, + { + children = { + { + children = { + { + fileId = "195306", + text = "ts_banner_01.m2", + value = "ts_banner_01.m2", + }, + }, + text = "banner", + value = "banner", + }, + { + children = { + { + fileId = "195307", + text = "ts_chair_01.m2", + value = "ts_chair_01.m2", + }, + }, + text = "chairs", + value = "chairs", + }, + { + children = { + { + fileId = "195309", + text = "ts_crabbasket_empty01.m2", + value = "ts_crabbasket_empty01.m2", + }, + { + fileId = "195310", + text = "ts_fishingbasket_empty_02.m2", + value = "ts_fishingbasket_empty_02.m2", + }, + { + fileId = "195311", + text = "ts_fishingline_01.m2", + value = "ts_fishingline_01.m2", + }, + }, + text = "fishing", + value = "fishing", + }, + { + children = { + { + fileId = "195314", + text = "ts_anvil_01.m2", + value = "ts_anvil_01.m2", + }, + { + fileId = "195316", + text = "ts_forge_01.m2", + value = "ts_forge_01.m2", + }, + }, + text = "forge", + value = "forge", + }, + { + children = { + { + fileId = "195317", + text = "ts_giantnet01.m2", + value = "ts_giantnet01.m2", + }, + { + fileId = "195318", + text = "ts_giantnet01destroyed.m2", + value = "ts_giantnet01destroyed.m2", + }, + { + fileId = "195319", + text = "ts_giantnet02.m2", + value = "ts_giantnet02.m2", + }, + { + fileId = "195320", + text = "ts_giantnet02destroyed.m2", + value = "ts_giantnet02destroyed.m2", + }, + }, + text = "giantnets", + value = "giantnets", + }, + { + children = { + { + fileId = "195324", + text = "ts_incenseburner_01.m2", + value = "ts_incenseburner_01.m2", + }, + }, + text = "incenseburner", + value = "incenseburner", + }, + { + children = { + { + fileId = "195326", + text = "ts_kite_01.m2", + value = "ts_kite_01.m2", + }, + }, + text = "kites", + value = "kites", + }, + { + children = { + { + fileId = "195329", + text = "ts_lantern01.m2", + value = "ts_lantern01.m2", + }, + { + fileId = "195330", + text = "ts_light.m2", + value = "ts_light.m2", + }, + { + fileId = "195331", + text = "ts_lighthanging.m2", + value = "ts_lighthanging.m2", + }, + { + fileId = "195332", + text = "ts_lightpole.m2", + value = "ts_lightpole.m2", + }, + }, + text = "lights", + value = "lights", + }, + { + children = { + { + fileId = "195338", + text = "ts_logroller_01.m2", + value = "ts_logroller_01.m2", + }, + }, + text = "logs", + value = "logs", + }, + { + children = { + { + fileId = "195340", + text = "ts_mailbox_01.m2", + value = "ts_mailbox_01.m2", + }, + }, + text = "mailbox", + value = "mailbox", + }, + { + children = { + { + fileId = "195342", + text = "ts_long_table_01.m2", + value = "ts_long_table_01.m2", + }, + { + fileId = "195343", + text = "ts_shorttable_01.m2", + value = "ts_shorttable_01.m2", + }, + }, + text = "tables", + value = "tables", + }, + { + children = { + { + fileId = "195344", + text = "nd_tuskarrwhale.m2", + value = "nd_tuskarrwhale.m2", + }, + }, + text = "tempfootprints", + value = "tempfootprints", + }, + { + fileId = "195346", + text = "ts_boat_01.m2", + value = "ts_boat_01.m2", + }, + { + fileId = "195347", + text = "ts_boat_02.m2", + value = "ts_boat_02.m2", + }, + { + fileId = "195349", + text = "ts_chair_broken01.m2", + value = "ts_chair_broken01.m2", + }, + { + fileId = "195350", + text = "ts_crabbasket_broken.m2", + value = "ts_crabbasket_broken.m2", + }, + { + fileId = "195351", + text = "ts_dock_01_destroyed.m2", + value = "ts_dock_01_destroyed.m2", + }, + { + fileId = "195352", + text = "ts_fishingbasket_broken02.m2", + value = "ts_fishingbasket_broken02.m2", + }, + { + fileId = "195353", + text = "ts_fishinghook_broken.m2", + value = "ts_fishinghook_broken.m2", + }, + { + fileId = "195354", + text = "ts_fishinghook_hook.m2", + value = "ts_fishinghook_hook.m2", + }, + { + fileId = "195356", + text = "ts_idols_01.m2", + value = "ts_idols_01.m2", + }, + { + fileId = "195357", + text = "ts_idols_02.m2", + value = "ts_idols_02.m2", + }, + { + fileId = "195358", + text = "ts_light_broken02.m2", + value = "ts_light_broken02.m2", + }, + { + fileId = "195359", + text = "ts_lighthanging02.m2", + value = "ts_lighthanging02.m2", + }, + { + fileId = "195360", + text = "ts_lighthanging_broken.m2", + value = "ts_lighthanging_broken.m2", + }, + { + fileId = "195361", + text = "ts_lightpole_broken.m2", + value = "ts_lightpole_broken.m2", + }, + { + fileId = "195362", + text = "ts_long_table_broken02.m2", + value = "ts_long_table_broken02.m2", + }, + { + fileId = "195364", + text = "ts_tarp_broken01.m2", + value = "ts_tarp_broken01.m2", + }, + }, + text = "tuskarr", + value = "tuskarr", + }, + { + children = { + { + children = { + { + fileId = "195373", + text = "vr_anvil_cold_01.m2", + value = "vr_anvil_cold_01.m2", + }, + { + fileId = "195374", + text = "vr_anvil_glow_01.m2", + value = "vr_anvil_glow_01.m2", + }, + }, + text = "anvil", + value = "anvil", + }, + { + children = { + { + fileId = "195376", + text = "vr_banner_01.m2", + value = "vr_banner_01.m2", + }, + { + fileId = "195378", + text = "vr_banner_02.m2", + value = "vr_banner_02.m2", + }, + { + fileId = "195380", + text = "vr_banner_03.m2", + value = "vr_banner_03.m2", + }, + { + fileId = "195382", + text = "vr_sea_banner_01.m2", + value = "vr_sea_banner_01.m2", + }, + { + fileId = "195383", + text = "vr_wall_banner_01.m2", + value = "vr_wall_banner_01.m2", + }, + { + fileId = "195384", + text = "vr_wall_banner_02.m2", + value = "vr_wall_banner_02.m2", + }, + { + fileId = "195385", + text = "vr_wall_banner_03.m2", + value = "vr_wall_banner_03.m2", + }, + }, + text = "banner", + value = "banner", + }, + { + children = { + { + fileId = "195386", + text = "vr_bed_01.m2", + value = "vr_bed_01.m2", + }, + { + fileId = "195387", + text = "vr_bed_02.m2", + value = "vr_bed_02.m2", + }, + { + fileId = "195388", + text = "vr_wrecked_bed_01.m2", + value = "vr_wrecked_bed_01.m2", + }, + }, + text = "bed", + value = "bed", + }, + { + children = { + { + fileId = "195393", + text = "vr_bellows_01.m2", + value = "vr_bellows_01.m2", + }, + }, + text = "bellows", + value = "bellows", + }, + { + children = { + { + fileId = "195394", + text = "transport_vrykul_medium_doodad.m2", + value = "transport_vrykul_medium_doodad.m2", + }, + { + fileId = "195395", + text = "transport_vrykul_mediumlight_doodad.m2", + value = "transport_vrykul_mediumlight_doodad.m2", + }, + }, + text = "boats", + value = "boats", + }, + { + children = { + { + fileId = "195397", + text = "vr_bookshelf_large_01.m2", + value = "vr_bookshelf_large_01.m2", + }, + { + fileId = "195398", + text = "vr_bookshelf_small_01.m2", + value = "vr_bookshelf_small_01.m2", + }, + { + fileId = "195399", + text = "vr_bookshelf_wrecked_01.m2", + value = "vr_bookshelf_wrecked_01.m2", + }, + { + fileId = "195400", + text = "vr_bookshelf_wrecked_02.m2", + value = "vr_bookshelf_wrecked_02.m2", + }, + }, + text = "bookshelf", + value = "bookshelf", + }, + { + children = { + { + fileId = "195403", + text = "vr_brazier_01.m2", + value = "vr_brazier_01.m2", + }, + { + fileId = "243733", + text = "vr_brazier_01_blue.m2", + value = "vr_brazier_01_blue.m2", + }, + }, + text = "brazier", + value = "brazier", + }, + { + children = { + { + fileId = "195405", + text = "vr_burialmound_01.m2", + value = "vr_burialmound_01.m2", + }, + { + fileId = "195406", + text = "vr_burialmound_02.m2", + value = "vr_burialmound_02.m2", + }, + }, + text = "burialmound", + value = "burialmound", + }, + { + children = { + { + fileId = "195408", + text = "vr_buttress_01.m2", + value = "vr_buttress_01.m2", + }, + { + fileId = "195410", + text = "vr_buttress_snow01.m2", + value = "vr_buttress_snow01.m2", + }, + }, + text = "buttress", + value = "buttress", + }, + { + children = { + { + fileId = "195413", + text = "vr_cage_01.m2", + value = "vr_cage_01.m2", + }, + { + fileId = "195414", + text = "vr_cage_01_snow.m2", + value = "vr_cage_01_snow.m2", + }, + { + fileId = "195415", + text = "vr_cage_02.m2", + value = "vr_cage_02.m2", + }, + { + fileId = "195416", + text = "vr_cage_base.m2", + value = "vr_cage_base.m2", + }, + { + fileId = "195417", + text = "vr_cage_top.m2", + value = "vr_cage_top.m2", + }, + }, + text = "cage", + value = "cage", + }, + { + children = { + { + fileId = "195419", + text = "vr_candle_stand_01.m2", + value = "vr_candle_stand_01.m2", + }, + }, + text = "candles", + value = "candles", + }, + { + children = { + { + fileId = "195421", + text = "vr_centerpiece_01.m2", + value = "vr_centerpiece_01.m2", + }, + { + fileId = "243735", + text = "vr_centerpiece_01blue.m2", + value = "vr_centerpiece_01blue.m2", + }, + }, + text = "centerpiece", + value = "centerpiece", + }, + { + children = { + { + fileId = "195422", + text = "vr_chains_01.m2", + value = "vr_chains_01.m2", + }, + { + fileId = "195423", + text = "vr_chains_02.m2", + value = "vr_chains_02.m2", + }, + }, + text = "chains", + value = "chains", + }, + { + children = { + { + fileId = "195425", + text = "vr_chair_01.m2", + value = "vr_chair_01.m2", + }, + }, + text = "chairs", + value = "chairs", + }, + { + children = { + { + fileId = "195426", + text = "vr_chandelier_01.m2", + value = "vr_chandelier_01.m2", + }, + }, + text = "chandelier", + value = "chandelier", + }, + { + children = { + { + fileId = "195428", + text = "vr_cookpot_01.m2", + value = "vr_cookpot_01.m2", + }, + { + fileId = "195429", + text = "vr_cookpot_02.m2", + value = "vr_cookpot_02.m2", + }, + { + fileId = "195430", + text = "vr_cookpot_off_01.m2", + value = "vr_cookpot_off_01.m2", + }, + }, + text = "cooking", + value = "cooking", + }, + { + children = { + { + fileId = "195433", + text = "vr_bm_wood_01.m2", + value = "vr_bm_wood_01.m2", + }, + { + fileId = "195436", + text = "vr_crate_01.m2", + value = "vr_crate_01.m2", + }, + { + fileId = "195437", + text = "vr_crate_02.m2", + value = "vr_crate_02.m2", + }, + { + fileId = "195438", + text = "vr_crate_03.m2", + value = "vr_crate_03.m2", + }, + { + fileId = "195439", + text = "vr_crate_04.m2", + value = "vr_crate_04.m2", + }, + { + fileId = "195440", + text = "vr_crate_snow_01.m2", + value = "vr_crate_snow_01.m2", + }, + { + fileId = "195441", + text = "vr_crate_snow_02.m2", + value = "vr_crate_snow_02.m2", + }, + { + fileId = "195442", + text = "vr_crate_snow_03.m2", + value = "vr_crate_snow_03.m2", + }, + { + fileId = "195443", + text = "vr_wrecked_crate_01.m2", + value = "vr_wrecked_crate_01.m2", + }, + { + fileId = "195444", + text = "vr_wrecked_crate_02.m2", + value = "vr_wrecked_crate_02.m2", + }, + { + fileId = "195445", + text = "vr_wrecked_crate_snow_01.m2", + value = "vr_wrecked_crate_snow_01.m2", + }, + { + fileId = "195446", + text = "vr_wrecked_crate_snow_02.m2", + value = "vr_wrecked_crate_snow_02.m2", + }, + }, + text = "crates", + value = "crates", + }, + { + children = { + { + fileId = "195457", + text = "vr_crestwood_01.m2", + value = "vr_crestwood_01.m2", + }, + { + fileId = "195458", + text = "vr_crestwood_02.m2", + value = "vr_crestwood_02.m2", + }, + }, + text = "crest", + value = "crest", + }, + { + children = { + { + fileId = "195460", + text = "vr_elevator_gate.m2", + value = "vr_elevator_gate.m2", + }, + { + fileId = "195461", + text = "vr_elevator_gears.m2", + value = "vr_elevator_gears.m2", + }, + { + fileId = "195462", + text = "vr_elevator_lift.m2", + value = "vr_elevator_lift.m2", + }, + { + fileId = "195463", + text = "vr_elevator_pulley.m2", + value = "vr_elevator_pulley.m2", + }, + }, + text = "elevator", + value = "elevator", + }, + { + children = { + { + fileId = "195464", + text = "vr_cliffpost.m2", + value = "vr_cliffpost.m2", + }, + { + fileId = "195466", + text = "vr_fence_01.m2", + value = "vr_fence_01.m2", + }, + { + fileId = "195467", + text = "vr_fence_02.m2", + value = "vr_fence_02.m2", + }, + { + fileId = "195468", + text = "vr_fence_03.m2", + value = "vr_fence_03.m2", + }, + { + fileId = "195469", + text = "vr_fence_04.m2", + value = "vr_fence_04.m2", + }, + { + fileId = "195470", + text = "vr_fence_05.m2", + value = "vr_fence_05.m2", + }, + { + fileId = "195472", + text = "vr_fence_snow02.m2", + value = "vr_fence_snow02.m2", + }, + { + fileId = "195473", + text = "vr_fence_snow04.m2", + value = "vr_fence_snow04.m2", + }, + { + fileId = "195474", + text = "vr_fence_snow05.m2", + value = "vr_fence_snow05.m2", + }, + }, + text = "fence", + value = "fence", + }, + { + children = { + { + fileId = "195476", + text = "vr_forgefire_01.m2", + value = "vr_forgefire_01.m2", + }, + }, + text = "fires", + value = "fires", + }, + { + children = { + { + fileId = "195481", + text = "vr_floorgrate.m2", + value = "vr_floorgrate.m2", + }, + }, + text = "floorgrate", + value = "floorgrate", + }, + { + children = { + { + fileId = "195482", + text = "vr_gondola_pole_01.m2", + value = "vr_gondola_pole_01.m2", + }, + { + fileId = "195483", + text = "vr_gondola_wheel_02.m2", + value = "vr_gondola_wheel_02.m2", + }, + { + fileId = "195484", + text = "vr_gondola_wheel_03.m2", + value = "vr_gondola_wheel_03.m2", + }, + { + fileId = "195485", + text = "vrykul_gondola.m2", + value = "vrykul_gondola.m2", + }, + { + fileId = "195486", + text = "vrykul_gondola_02.m2", + value = "vrykul_gondola_02.m2", + }, + }, + text = "gondola", + value = "gondola", + }, + { + children = { + { + fileId = "254024", + text = "vr_harpoon_02.m2", + value = "vr_harpoon_02.m2", + }, + }, + text = "harpoon", + value = "harpoon", + }, + { + children = { + { + fileId = "195489", + text = "vr_haybail_01.m2", + value = "vr_haybail_01.m2", + }, + { + fileId = "195490", + text = "vr_straw_large_01.m2", + value = "vr_straw_large_01.m2", + }, + { + fileId = "195491", + text = "vr_straw_small_01.m2", + value = "vr_straw_small_01.m2", + }, + }, + text = "hay", + value = "hay", + }, + { + children = { + { + fileId = "195498", + text = "vr_lamppost_01.m2", + value = "vr_lamppost_01.m2", + }, + { + fileId = "195499", + text = "vr_lamppost_02.m2", + value = "vr_lamppost_02.m2", + }, + { + fileId = "195500", + text = "vr_lamppost_03.m2", + value = "vr_lamppost_03.m2", + }, + { + fileId = "195501", + text = "vr_lamppost_snow_01.m2", + value = "vr_lamppost_snow_01.m2", + }, + { + fileId = "243737", + text = "vr_lamppost_snow_01blue.m2", + value = "vr_lamppost_snow_01blue.m2", + }, + }, + text = "lamppost", + value = "lamppost", + }, + { + children = { + { + fileId = "195507", + text = "vr_chandelier_broken_01.m2", + value = "vr_chandelier_broken_01.m2", + }, + { + fileId = "195508", + text = "vr_chandelier_purple_01.m2", + value = "vr_chandelier_purple_01.m2", + }, + { + fileId = "195509", + text = "vr_hanginglight_01.m2", + value = "vr_hanginglight_01.m2", + }, + { + fileId = "243738", + text = "vr_hanginglight_01_blue.m2", + value = "vr_hanginglight_01_blue.m2", + }, + { + fileId = "195510", + text = "vr_hanginglight_02.m2", + value = "vr_hanginglight_02.m2", + }, + { + fileId = "243739", + text = "vr_hanginglight_02_blue.m2", + value = "vr_hanginglight_02_blue.m2", + }, + { + fileId = "195511", + text = "vr_hanginglight_03.m2", + value = "vr_hanginglight_03.m2", + }, + { + fileId = "243740", + text = "vr_hanginglight_03_blue.m2", + value = "vr_hanginglight_03_blue.m2", + }, + { + fileId = "195512", + text = "vr_hanginglight_broken_01.m2", + value = "vr_hanginglight_broken_01.m2", + }, + { + fileId = "195513", + text = "vr_hanginglight_purple_01.m2", + value = "vr_hanginglight_purple_01.m2", + }, + { + fileId = "195516", + text = "vr_standinglight_01.m2", + value = "vr_standinglight_01.m2", + }, + { + fileId = "195517", + text = "vr_standinglight_broken_01.m2", + value = "vr_standinglight_broken_01.m2", + }, + { + fileId = "195518", + text = "vr_standinglight_purple_01.m2", + value = "vr_standinglight_purple_01.m2", + }, + { + fileId = "195519", + text = "vr_standinglight_snow_01.m2", + value = "vr_standinglight_snow_01.m2", + }, + { + fileId = "243741", + text = "vr_standinglight_snow_blue_01.m2", + value = "vr_standinglight_snow_blue_01.m2", + }, + }, + text = "lights", + value = "lights", + }, + { + children = { + { + fileId = "195520", + text = "vr_map_01.m2", + value = "vr_map_01.m2", + }, + { + fileId = "195521", + text = "vr_wallmap_01.m2", + value = "vr_wallmap_01.m2", + }, + }, + text = "map", + value = "map", + }, + { + children = { + { + fileId = "195523", + text = "vr_portcullis.m2", + value = "vr_portcullis.m2", + }, + { + fileId = "195524", + text = "vr_portculliswithchain.m2", + value = "vr_portculliswithchain.m2", + }, + }, + text = "portcullis", + value = "portcullis", + }, + { + children = { + { + fileId = "195530", + text = "vr_banner_01_q.m2", + value = "vr_banner_01_q.m2", + }, + { + fileId = "195531", + text = "vr_banner_02_q.m2", + value = "vr_banner_02_q.m2", + }, + { + fileId = "195532", + text = "vr_bones_01_q.m2", + value = "vr_bones_01_q.m2", + }, + { + fileId = "195533", + text = "vr_crate_01_q.m2", + value = "vr_crate_01_q.m2", + }, + { + fileId = "195534", + text = "vr_crystalnode_01_q.m2", + value = "vr_crystalnode_01_q.m2", + }, + { + fileId = "195535", + text = "vr_plants_01_q.m2", + value = "vr_plants_01_q.m2", + }, + { + fileId = "195536", + text = "vr_plants_02_q.m2", + value = "vr_plants_02_q.m2", + }, + { + fileId = "195537", + text = "vr_plants_03_q.m2", + value = "vr_plants_03_q.m2", + }, + { + fileId = "195538", + text = "vr_plants_04_q.m2", + value = "vr_plants_04_q.m2", + }, + { + fileId = "195539", + text = "vr_plants_05_q.m2", + value = "vr_plants_05_q.m2", + }, + { + fileId = "195540", + text = "vr_sack_01_q.m2", + value = "vr_sack_01_q.m2", + }, + { + fileId = "195541", + text = "vr_sack_02_q.m2", + value = "vr_sack_02_q.m2", + }, + { + fileId = "195542", + text = "vr_sack_03_q.m2", + value = "vr_sack_03_q.m2", + }, + { + fileId = "195543", + text = "vr_vase_01_q.m2", + value = "vr_vase_01_q.m2", + }, + { + fileId = "195544", + text = "vr_weaponrack_01_q.m2", + value = "vr_weaponrack_01_q.m2", + }, + }, + text = "quest", + value = "quest", + }, + { + children = { + { + fileId = "195545", + text = "vr_footbridge_snow_01.m2", + value = "vr_footbridge_snow_01.m2", + }, + { + fileId = "195546", + text = "vr_roadedge_01.m2", + value = "vr_roadedge_01.m2", + }, + { + fileId = "195547", + text = "vr_roadplank_01.m2", + value = "vr_roadplank_01.m2", + }, + { + fileId = "195548", + text = "vr_roadplank_02.m2", + value = "vr_roadplank_02.m2", + }, + { + fileId = "195549", + text = "vr_roadplank_03.m2", + value = "vr_roadplank_03.m2", + }, + { + fileId = "195550", + text = "vr_roadplank_04.m2", + value = "vr_roadplank_04.m2", + }, + { + fileId = "195551", + text = "vr_roadplank_05.m2", + value = "vr_roadplank_05.m2", + }, + { + fileId = "195552", + text = "vr_roadplank_06.m2", + value = "vr_roadplank_06.m2", + }, + { + fileId = "195553", + text = "vr_roadplank_snow02.m2", + value = "vr_roadplank_snow02.m2", + }, + { + fileId = "195554", + text = "vr_roadplank_snow03.m2", + value = "vr_roadplank_snow03.m2", + }, + { + fileId = "195555", + text = "vr_roadplank_snow04.m2", + value = "vr_roadplank_snow04.m2", + }, + { + fileId = "195556", + text = "vr_roadplank_snow05.m2", + value = "vr_roadplank_snow05.m2", + }, + { + fileId = "195557", + text = "vr_roadplank_snow06.m2", + value = "vr_roadplank_snow06.m2", + }, + { + fileId = "195558", + text = "vr_roadplank_wide_01.m2", + value = "vr_roadplank_wide_01.m2", + }, + { + fileId = "195559", + text = "vr_roadplank_wide_02.m2", + value = "vr_roadplank_wide_02.m2", + }, + { + fileId = "195560", + text = "vr_roadplank_wide_03.m2", + value = "vr_roadplank_wide_03.m2", + }, + { + fileId = "195561", + text = "vr_roadplank_wide_04.m2", + value = "vr_roadplank_wide_04.m2", + }, + { + fileId = "195562", + text = "vr_roadplank_wide_snow01.m2", + value = "vr_roadplank_wide_snow01.m2", + }, + { + fileId = "195563", + text = "vr_roadplank_wide_snow02.m2", + value = "vr_roadplank_wide_snow02.m2", + }, + { + fileId = "195564", + text = "vr_roadplank_wide_snow03.m2", + value = "vr_roadplank_wide_snow03.m2", + }, + { + fileId = "195565", + text = "vr_roadplank_wide_snow04.m2", + value = "vr_roadplank_wide_snow04.m2", + }, + { + fileId = "195566", + text = "vr_roadplankandcurb_01.m2", + value = "vr_roadplankandcurb_01.m2", + }, + { + fileId = "195567", + text = "vr_roadplankandcurb_02.m2", + value = "vr_roadplankandcurb_02.m2", + }, + { + fileId = "195568", + text = "vr_roadplankandcurb_03.m2", + value = "vr_roadplankandcurb_03.m2", + }, + { + fileId = "195569", + text = "vr_roadplankandcurb_04.m2", + value = "vr_roadplankandcurb_04.m2", + }, + { + fileId = "195570", + text = "vr_roadplankandcurb_wide_01.m2", + value = "vr_roadplankandcurb_wide_01.m2", + }, + { + fileId = "195571", + text = "vr_roadplankandcurb_wide_02.m2", + value = "vr_roadplankandcurb_wide_02.m2", + }, + { + fileId = "195572", + text = "vr_roadplankandcurb_wide_04.m2", + value = "vr_roadplankandcurb_wide_04.m2", + }, + { + fileId = "195573", + text = "vr_roadplankandcurb_wide_05.m2", + value = "vr_roadplankandcurb_wide_05.m2", + }, + }, + text = "road", + value = "road", + }, + { + children = { + { + fileId = "195583", + text = "vr_rubble_01.m2", + value = "vr_rubble_01.m2", + }, + { + fileId = "195584", + text = "vr_rubble_02.m2", + value = "vr_rubble_02.m2", + }, + { + fileId = "195585", + text = "vr_rubble_03.m2", + value = "vr_rubble_03.m2", + }, + }, + text = "rubble", + value = "rubble", + }, + { + children = { + { + fileId = "195587", + text = "vr_rug_large_01.m2", + value = "vr_rug_large_01.m2", + }, + { + fileId = "195589", + text = "vr_rug_long_01.m2", + value = "vr_rug_long_01.m2", + }, + { + fileId = "195591", + text = "vr_rug_small_01.m2", + value = "vr_rug_small_01.m2", + }, + }, + text = "rug", + value = "rug", + }, + { + children = { + { + fileId = "243742", + text = "seavrykul_dead_seaweed.m2", + value = "seavrykul_dead_seaweed.m2", + }, + }, + text = "seavrykul_dead", + value = "seavrykul_dead", + }, + { + children = { + { + fileId = "195595", + text = "vr_crest_01.m2", + value = "vr_crest_01.m2", + }, + { + fileId = "195596", + text = "vr_crest_02.m2", + value = "vr_crest_02.m2", + }, + { + fileId = "195597", + text = "vr_crest_03.m2", + value = "vr_crest_03.m2", + }, + { + fileId = "195598", + text = "vr_crestshield_01.m2", + value = "vr_crestshield_01.m2", + }, + { + fileId = "195599", + text = "vr_crestshield_02.m2", + value = "vr_crestshield_02.m2", + }, + { + fileId = "195600", + text = "vr_crestshield_03.m2", + value = "vr_crestshield_03.m2", + }, + { + fileId = "195602", + text = "vr_shield_01.m2", + value = "vr_shield_01.m2", + }, + { + fileId = "195604", + text = "vr_shield_02.m2", + value = "vr_shield_02.m2", + }, + { + fileId = "195606", + text = "vr_shield_03.m2", + value = "vr_shield_03.m2", + }, + }, + text = "shield", + value = "shield", + }, + { + children = { + { + fileId = "195607", + text = "vr_signpost_01.m2", + value = "vr_signpost_01.m2", + }, + { + fileId = "195608", + text = "vr_signpost_sign_01.m2", + value = "vr_signpost_sign_01.m2", + }, + { + fileId = "195609", + text = "vr_signpost_snow01.m2", + value = "vr_signpost_snow01.m2", + }, + }, + text = "signs", + value = "signs", + }, + { + children = { + { + fileId = "352121", + text = "valgarde_skulls.m2", + value = "valgarde_skulls.m2", + }, + { + fileId = "361124", + text = "valgarde_skulls02.m2", + value = "valgarde_skulls02.m2", + }, + }, + text = "skulls", + value = "skulls", + }, + { + children = { + { + fileId = "195613", + text = "vr_utgardepinnaclesnow_01.m2", + value = "vr_utgardepinnaclesnow_01.m2", + }, + }, + text = "snow", + value = "snow", + }, + { + children = { + { + fileId = "195614", + text = "vr_bm_spike_01.m2", + value = "vr_bm_spike_01.m2", + }, + }, + text = "spike", + value = "spike", + }, + { + children = { + { + fileId = "195619", + text = "vr_destroyed_table_01.m2", + value = "vr_destroyed_table_01.m2", + }, + { + fileId = "195620", + text = "vr_maptable_01.m2", + value = "vr_maptable_01.m2", + }, + { + fileId = "243743", + text = "vr_maptable_02.m2", + value = "vr_maptable_02.m2", + }, + { + fileId = "195621", + text = "vr_table_large_01.m2", + value = "vr_table_large_01.m2", + }, + { + fileId = "195622", + text = "vr_table_medium_01.m2", + value = "vr_table_medium_01.m2", + }, + { + fileId = "195623", + text = "vr_table_small_01.m2", + value = "vr_table_small_01.m2", + }, + { + fileId = "195624", + text = "vr_table_small_02.m2", + value = "vr_table_small_02.m2", + }, + }, + text = "table", + value = "table", + }, + { + children = { + { + fileId = "195632", + text = "vr_tent_01.m2", + value = "vr_tent_01.m2", + }, + }, + text = "tent", + value = "tent", + }, + { + children = { + { + fileId = "195633", + text = "vr_torch_01.m2", + value = "vr_torch_01.m2", + }, + { + fileId = "243744", + text = "vr_torch_01_blue.m2", + value = "vr_torch_01_blue.m2", + }, + { + fileId = "195634", + text = "vr_torch_broken_01.m2", + value = "vr_torch_broken_01.m2", + }, + { + fileId = "195635", + text = "vr_torch_broken_snow01.m2", + value = "vr_torch_broken_snow01.m2", + }, + { + fileId = "195637", + text = "vr_torch_snow01.m2", + value = "vr_torch_snow01.m2", + }, + }, + text = "torch", + value = "torch", + }, + { + children = { + { + fileId = "195639", + text = "vr_trough.m2", + value = "vr_trough.m2", + }, + }, + text = "trough", + value = "trough", + }, + { + children = { + { + fileId = "195643", + text = "vr_wagon_01.m2", + value = "vr_wagon_01.m2", + }, + { + fileId = "195645", + text = "vr_wagon_snow_01.m2", + value = "vr_wagon_snow_01.m2", + }, + }, + text = "wagon", + value = "wagon", + }, + { + children = { + { + fileId = "195650", + text = "vr_wallarch.m2", + value = "vr_wallarch.m2", + }, + { + fileId = "195651", + text = "vr_wallarch_snow.m2", + value = "vr_wallarch_snow.m2", + }, + }, + text = "wallarch", + value = "wallarch", + }, + { + children = { + { + fileId = "195657", + text = "vr_crestaxe_01.m2", + value = "vr_crestaxe_01.m2", + }, + { + fileId = "195658", + text = "vr_crestaxe_02.m2", + value = "vr_crestaxe_02.m2", + }, + { + fileId = "195659", + text = "vr_crestsword_01.m2", + value = "vr_crestsword_01.m2", + }, + }, + text = "weapons", + value = "weapons", + }, + }, + text = "vrykul", + value = "vrykul", + }, + { + children = { + { + fileId = "195664", + text = "northrendfrozenwaterfall_short.m2", + value = "northrendfrozenwaterfall_short.m2", + }, + { + fileId = "195665", + text = "northrendfrozenwaterfall_stormpeaks.m2", + value = "northrendfrozenwaterfall_stormpeaks.m2", + }, + { + fileId = "195666", + text = "northrendfrozenwaterfall_tall.m2", + value = "northrendfrozenwaterfall_tall.m2", + }, + { + fileId = "195667", + text = "northrendfrozenwaterfall_wide.m2", + value = "northrendfrozenwaterfall_wide.m2", + }, + { + fileId = "195674", + text = "waterfalls_set1_high.m2", + value = "waterfalls_set1_high.m2", + }, + { + fileId = "195675", + text = "waterfalls_set1_high_hat.m2", + value = "waterfalls_set1_high_hat.m2", + }, + { + fileId = "195676", + text = "waterfalls_set1_high_ripples.m2", + value = "waterfalls_set1_high_ripples.m2", + }, + { + fileId = "195677", + text = "waterfalls_set1_low.m2", + value = "waterfalls_set1_low.m2", + }, + { + fileId = "195678", + text = "waterfalls_set1_low_hat.m2", + value = "waterfalls_set1_low_hat.m2", + }, + { + fileId = "195679", + text = "waterfalls_set1_low_ripples.m2", + value = "waterfalls_set1_low_ripples.m2", + }, + { + fileId = "195680", + text = "waterfalls_set1_med.m2", + value = "waterfalls_set1_med.m2", + }, + { + fileId = "195681", + text = "waterfalls_set1_med_hat.m2", + value = "waterfalls_set1_med_hat.m2", + }, + { + fileId = "195682", + text = "waterfalls_set1_med_ripples.m2", + value = "waterfalls_set1_med_ripples.m2", + }, + { + fileId = "243745", + text = "waterfalls_set2_high_hat.m2", + value = "waterfalls_set2_high_hat.m2", + }, + { + fileId = "243746", + text = "waterfalls_set2_med.m2", + value = "waterfalls_set2_med.m2", + }, + { + fileId = "243747", + text = "waterfalls_set2_med_chop.m2", + value = "waterfalls_set2_med_chop.m2", + }, + { + fileId = "243748", + text = "waterfalls_set2_med_doublewide.m2", + value = "waterfalls_set2_med_doublewide.m2", + }, + { + fileId = "243749", + text = "waterfalls_set2_med_doublewide_short.m2", + value = "waterfalls_set2_med_doublewide_short.m2", + }, + { + fileId = "243750", + text = "waterfalls_set2_med_doublewide_withchop.m2", + value = "waterfalls_set2_med_doublewide_withchop.m2", + }, + { + fileId = "243751", + text = "waterfalls_set2_med_short.m2", + value = "waterfalls_set2_med_short.m2", + }, + { + fileId = "243752", + text = "waterfalls_set2_med_tall.m2", + value = "waterfalls_set2_med_tall.m2", + }, + { + fileId = "243753", + text = "waterfalls_set2_med_tall_withchop.m2", + value = "waterfalls_set2_med_tall_withchop.m2", + }, + { + fileId = "243754", + text = "waterfalls_set2_med_top.m2", + value = "waterfalls_set2_med_top.m2", + }, + { + fileId = "243755", + text = "waterfalls_set2_med_withchop.m2", + value = "waterfalls_set2_med_withchop.m2", + }, + { + fileId = "243756", + text = "waterfalls_set2_rapids_divided.m2", + value = "waterfalls_set2_rapids_divided.m2", + }, + { + fileId = "243757", + text = "waterfalls_set2_rapids_long.m2", + value = "waterfalls_set2_rapids_long.m2", + }, + { + fileId = "243758", + text = "waterfalls_set2_rapids_short.m2", + value = "waterfalls_set2_rapids_short.m2", + }, + { + fileId = "243759", + text = "waterfalls_set2_wide.m2", + value = "waterfalls_set2_wide.m2", + }, + { + fileId = "243760", + text = "waterfalls_set2_wide_chop.m2", + value = "waterfalls_set2_wide_chop.m2", + }, + { + fileId = "243761", + text = "waterfalls_set2_wide_short.m2", + value = "waterfalls_set2_wide_short.m2", + }, + { + fileId = "243762", + text = "waterfalls_set2_wide_tall.m2", + value = "waterfalls_set2_wide_tall.m2", + }, + { + fileId = "243763", + text = "waterfalls_set2_wide_tall_chop.m2", + value = "waterfalls_set2_wide_tall_chop.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + { + children = { + { + fileId = "195692", + text = "orc_fortress_elevator01.m2", + value = "orc_fortress_elevator01.m2", + }, + { + fileId = "195693", + text = "orc_ship_broken_front_01.m2", + value = "orc_ship_broken_front_01.m2", + }, + { + fileId = "195694", + text = "orc_ship_broken_ropes_01.m2", + value = "orc_ship_broken_ropes_01.m2", + }, + { + fileId = "195695", + text = "orc_ship_broken_sail_01.m2", + value = "orc_ship_broken_sail_01.m2", + }, + { + fileId = "195696", + text = "worc_barricade.m2", + value = "worc_barricade.m2", + }, + { + fileId = "195697", + text = "worc_excavationcrane.m2", + value = "worc_excavationcrane.m2", + }, + { + fileId = "195698", + text = "worc_minemachine.m2", + value = "worc_minemachine.m2", + }, + }, + text = "winterorc", + value = "winterorc", + }, + { + children = { + { + fileId = "195703", + text = "wolvar_anvil.m2", + value = "wolvar_anvil.m2", + }, + { + fileId = "195704", + text = "wolvar_anvil_dragonblight.m2", + value = "wolvar_anvil_dragonblight.m2", + }, + { + fileId = "195706", + text = "wolvar_cage01.m2", + value = "wolvar_cage01.m2", + }, + { + fileId = "195707", + text = "wolvar_cage01_dragonblight.m2", + value = "wolvar_cage01_dragonblight.m2", + }, + { + fileId = "195709", + text = "wolvar_coals01.m2", + value = "wolvar_coals01.m2", + }, + { + fileId = "195710", + text = "wolvar_coals02.m2", + value = "wolvar_coals02.m2", + }, + { + fileId = "195712", + text = "wolvar_cookpot.m2", + value = "wolvar_cookpot.m2", + }, + { + fileId = "195714", + text = "wolvar_cookpot_dragonblight.m2", + value = "wolvar_cookpot_dragonblight.m2", + }, + { + fileId = "195715", + text = "wolvar_doorway01.m2", + value = "wolvar_doorway01.m2", + }, + { + fileId = "195716", + text = "wolvar_doorway01_sholazar.m2", + value = "wolvar_doorway01_sholazar.m2", + }, + { + fileId = "195717", + text = "wolvar_doorway01_snowy.m2", + value = "wolvar_doorway01_snowy.m2", + }, + { + fileId = "195718", + text = "wolvar_forge.m2", + value = "wolvar_forge.m2", + }, + { + fileId = "195721", + text = "wolvar_god_bot.m2", + value = "wolvar_god_bot.m2", + }, + { + fileId = "195722", + text = "wolvar_god_protodragon.m2", + value = "wolvar_god_protodragon.m2", + }, + { + fileId = "195723", + text = "wolvar_god_shoveltusk.m2", + value = "wolvar_god_shoveltusk.m2", + }, + { + fileId = "195724", + text = "wolvar_god_yeti.m2", + value = "wolvar_god_yeti.m2", + }, + { + fileId = "195726", + text = "wolvar_hut01.m2", + value = "wolvar_hut01.m2", + }, + { + fileId = "195727", + text = "wolvar_hut01_sholazar.m2", + value = "wolvar_hut01_sholazar.m2", + }, + { + fileId = "195729", + text = "wolvar_hut01_snowy.m2", + value = "wolvar_hut01_snowy.m2", + }, + { + fileId = "195731", + text = "wolvar_hut02.m2", + value = "wolvar_hut02.m2", + }, + { + fileId = "195733", + text = "wolvar_hut02_sholazar.m2", + value = "wolvar_hut02_sholazar.m2", + }, + { + fileId = "195735", + text = "wolvar_hut02_snowy.m2", + value = "wolvar_hut02_snowy.m2", + }, + { + fileId = "195736", + text = "wolvar_hut03.m2", + value = "wolvar_hut03.m2", + }, + { + fileId = "195737", + text = "wolvar_hut03_sholazar.m2", + value = "wolvar_hut03_sholazar.m2", + }, + { + fileId = "195739", + text = "wolvar_quench.m2", + value = "wolvar_quench.m2", + }, + { + fileId = "195740", + text = "wolvar_quench_dragonblight.m2", + value = "wolvar_quench_dragonblight.m2", + }, + { + fileId = "195741", + text = "wolvar_spikes01.m2", + value = "wolvar_spikes01.m2", + }, + { + fileId = "195742", + text = "wolvar_spikes02.m2", + value = "wolvar_spikes02.m2", + }, + { + fileId = "195743", + text = "wolvar_spikes03.m2", + value = "wolvar_spikes03.m2", + }, + { + fileId = "195745", + text = "wolvar_totem01.m2", + value = "wolvar_totem01.m2", + }, + { + fileId = "195747", + text = "wolvar_totem01_dragonblight.m2", + value = "wolvar_totem01_dragonblight.m2", + }, + { + fileId = "195748", + text = "wolvar_totem02.m2", + value = "wolvar_totem02.m2", + }, + { + fileId = "195749", + text = "wolvar_totem02_dragonblight.m2", + value = "wolvar_totem02_dragonblight.m2", + }, + { + fileId = "195750", + text = "wolvar_totem03.m2", + value = "wolvar_totem03.m2", + }, + { + fileId = "195751", + text = "wolvar_totem03_dragonblight.m2", + value = "wolvar_totem03_dragonblight.m2", + }, + { + fileId = "195752", + text = "wolvar_window01.m2", + value = "wolvar_window01.m2", + }, + { + fileId = "195753", + text = "wolvar_window01_sholazar.m2", + value = "wolvar_window01_sholazar.m2", + }, + { + fileId = "195754", + text = "wolvar_window01_snowy.m2", + value = "wolvar_window01_snowy.m2", + }, + { + fileId = "195755", + text = "wolvar_window02.m2", + value = "wolvar_window02.m2", + }, + { + fileId = "195756", + text = "wolvar_window02_sholazar.m2", + value = "wolvar_window02_sholazar.m2", + }, + { + fileId = "195757", + text = "wolvar_window02_snowy.m2", + value = "wolvar_window02_snowy.m2", + }, + }, + text = "wolvar", + value = "wolvar", + }, + { + children = { + { + fileId = "195758", + text = "crashedzeppelinpiece_03.m2", + value = "crashedzeppelinpiece_03.m2", + }, + { + fileId = "195759", + text = "crashedzeppelinpiece_04.m2", + value = "crashedzeppelinpiece_04.m2", + }, + }, + text = "zeppelin", + value = "zeppelin", + }, + }, + text = "generic", + value = "generic", + }, + { + children = { + { + children = { + { + fileId = "243767", + text = "grizzly_bearshrine_snow.m2", + value = "grizzly_bearshrine_snow.m2", + }, + { + fileId = "195764", + text = "grizzly_furbolgbearshrine.m2", + value = "grizzly_furbolgbearshrine.m2", + }, + }, + text = "bearshrine", + value = "bearshrine", + }, + { + children = { + { + fileId = "195765", + text = "grizzlyhills_furbolgroad_01.m2", + value = "grizzlyhills_furbolgroad_01.m2", + }, + { + fileId = "195766", + text = "grizzlyhills_furbolgroad_02.m2", + value = "grizzlyhills_furbolgroad_02.m2", + }, + { + fileId = "195767", + text = "grizzlyhills_furbolgroad_03.m2", + value = "grizzlyhills_furbolgroad_03.m2", + }, + { + fileId = "195768", + text = "grizzlyhills_furbolgroad_snow_01.m2", + value = "grizzlyhills_furbolgroad_snow_01.m2", + }, + { + fileId = "195769", + text = "grizzlyhills_furbolgroad_snow_02.m2", + value = "grizzlyhills_furbolgroad_snow_02.m2", + }, + { + fileId = "195770", + text = "grizzlyhills_furbolgroad_snow_03.m2", + value = "grizzlyhills_furbolgroad_snow_03.m2", + }, + { + fileId = "195773", + text = "grizzlyhills_roadlog01.m2", + value = "grizzlyhills_roadlog01.m2", + }, + }, + text = "roadlogs", + value = "roadlogs", + }, + { + children = { + { + fileId = "195776", + text = "grizzlyhills_boulder01.m2", + value = "grizzlyhills_boulder01.m2", + }, + { + fileId = "195778", + text = "grizzlyhills_rock_01.m2", + value = "grizzlyhills_rock_01.m2", + }, + { + fileId = "195779", + text = "grizzlyhills_rock_02.m2", + value = "grizzlyhills_rock_02.m2", + }, + { + fileId = "195780", + text = "grizzlyhills_rock_03.m2", + value = "grizzlyhills_rock_03.m2", + }, + { + fileId = "195781", + text = "grizzlyhills_rock_04.m2", + value = "grizzlyhills_rock_04.m2", + }, + { + fileId = "195782", + text = "grizzlyhills_rock_large_01.m2", + value = "grizzlyhills_rock_large_01.m2", + }, + { + fileId = "195783", + text = "grizzlyhills_rock_large_02.m2", + value = "grizzlyhills_rock_large_02.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "195784", + text = "grizzlemawtermitechunk01.m2", + value = "grizzlemawtermitechunk01.m2", + }, + { + fileId = "195785", + text = "grizzlemawtermitechunk02.m2", + value = "grizzlemawtermitechunk02.m2", + }, + { + fileId = "195786", + text = "grizzlemawtermitechunk03.m2", + value = "grizzlemawtermitechunk03.m2", + }, + { + fileId = "195787", + text = "grizzlyhills_termite_tree.m2", + value = "grizzlyhills_termite_tree.m2", + }, + { + fileId = "195790", + text = "termite_rock01.m2", + value = "termite_rock01.m2", + }, + { + fileId = "195791", + text = "termite_rock02.m2", + value = "termite_rock02.m2", + }, + { + fileId = "195793", + text = "termite_shaft.m2", + value = "termite_shaft.m2", + }, + { + fileId = "195794", + text = "termitedust.m2", + value = "termitedust.m2", + }, + }, + text = "termites", + value = "termites", + }, + { + children = { + { + fileId = "195795", + text = "gh_trapperdraping.m2", + value = "gh_trapperdraping.m2", + }, + { + fileId = "195800", + text = "trapper_potbellystove_01.m2", + value = "trapper_potbellystove_01.m2", + }, + { + fileId = "195801", + text = "trapper_snowshoe_01.m2", + value = "trapper_snowshoe_01.m2", + }, + { + fileId = "195802", + text = "trapper_wall01.m2", + value = "trapper_wall01.m2", + }, + { + fileId = "195803", + text = "trapper_wall02.m2", + value = "trapper_wall02.m2", + }, + { + fileId = "195804", + text = "trapper_wall03.m2", + value = "trapper_wall03.m2", + }, + { + fileId = "195805", + text = "trapper_wall04.m2", + value = "trapper_wall04.m2", + }, + { + fileId = "195806", + text = "trapper_wall05.m2", + value = "trapper_wall05.m2", + }, + { + fileId = "195807", + text = "trapperfence_01.m2", + value = "trapperfence_01.m2", + }, + { + fileId = "195808", + text = "trapperfence_02.m2", + value = "trapperfence_02.m2", + }, + { + fileId = "195809", + text = "trapperfence_03.m2", + value = "trapperfence_03.m2", + }, + { + fileId = "195810", + text = "trapperfence_large01.m2", + value = "trapperfence_large01.m2", + }, + { + fileId = "195811", + text = "trapperfence_large03.m2", + value = "trapperfence_large03.m2", + }, + { + fileId = "195812", + text = "trapperlamppost_01.m2", + value = "trapperlamppost_01.m2", + }, + { + fileId = "195813", + text = "trapperlamppost_01_unlit.m2", + value = "trapperlamppost_01_unlit.m2", + }, + { + fileId = "195814", + text = "trappersignpost.m2", + value = "trappersignpost.m2", + }, + { + fileId = "195815", + text = "trappersignpost_sign.m2", + value = "trappersignpost_sign.m2", + }, + }, + text = "trappers", + value = "trappers", + }, + { + children = { + { + fileId = "195816", + text = "gh_bridgelightbeams.m2", + value = "gh_bridgelightbeams.m2", + }, + { + fileId = "195817", + text = "grizzly_amberpinetree.m2", + value = "grizzly_amberpinetree.m2", + }, + { + fileId = "195822", + text = "grizzlyhills_blurpleflower01.m2", + value = "grizzlyhills_blurpleflower01.m2", + }, + { + fileId = "195823", + text = "grizzlyhills_blurpleflower02.m2", + value = "grizzlyhills_blurpleflower02.m2", + }, + { + fileId = "195831", + text = "grizzlyhills_bush01.m2", + value = "grizzlyhills_bush01.m2", + }, + { + fileId = "195832", + text = "grizzlyhills_bush02.m2", + value = "grizzlyhills_bush02.m2", + }, + { + fileId = "195833", + text = "grizzlyhills_bush03.m2", + value = "grizzlyhills_bush03.m2", + }, + { + fileId = "195834", + text = "grizzlyhills_bush04.m2", + value = "grizzlyhills_bush04.m2", + }, + { + fileId = "195835", + text = "grizzlyhills_bush06.m2", + value = "grizzlyhills_bush06.m2", + }, + { + fileId = "195840", + text = "grizzlyhills_clovers01.m2", + value = "grizzlyhills_clovers01.m2", + }, + { + fileId = "195841", + text = "grizzlyhills_clovers02.m2", + value = "grizzlyhills_clovers02.m2", + }, + { + fileId = "195842", + text = "grizzlyhills_clovers03.m2", + value = "grizzlyhills_clovers03.m2", + }, + { + fileId = "195845", + text = "grizzlyhills_goldshrubs01.m2", + value = "grizzlyhills_goldshrubs01.m2", + }, + { + fileId = "195847", + text = "grizzlyhills_greenflower01.m2", + value = "grizzlyhills_greenflower01.m2", + }, + { + fileId = "195848", + text = "grizzlyhills_greenflower02.m2", + value = "grizzlyhills_greenflower02.m2", + }, + { + fileId = "195854", + text = "grizzlyhills_log01.m2", + value = "grizzlyhills_log01.m2", + }, + { + fileId = "195856", + text = "grizzlyhills_log02.m2", + value = "grizzlyhills_log02.m2", + }, + { + fileId = "195858", + text = "grizzlyhills_log03.m2", + value = "grizzlyhills_log03.m2", + }, + { + fileId = "195859", + text = "grizzlyhills_log04.m2", + value = "grizzlyhills_log04.m2", + }, + { + fileId = "195860", + text = "grizzlyhills_log05.m2", + value = "grizzlyhills_log05.m2", + }, + { + fileId = "195863", + text = "grizzlyhills_mushroom01.m2", + value = "grizzlyhills_mushroom01.m2", + }, + { + fileId = "195865", + text = "grizzlyhills_mushroom02.m2", + value = "grizzlyhills_mushroom02.m2", + }, + { + fileId = "195866", + text = "grizzlyhills_mushroom03.m2", + value = "grizzlyhills_mushroom03.m2", + }, + { + fileId = "195867", + text = "grizzlyhills_mushroomgroup01.m2", + value = "grizzlyhills_mushroomgroup01.m2", + }, + { + fileId = "195868", + text = "grizzlyhills_mushroomgroup02.m2", + value = "grizzlyhills_mushroomgroup02.m2", + }, + { + fileId = "195869", + text = "grizzlyhills_mushroomgroup03.m2", + value = "grizzlyhills_mushroomgroup03.m2", + }, + { + fileId = "195874", + text = "grizzlyhills_redishflower01.m2", + value = "grizzlyhills_redishflower01.m2", + }, + { + fileId = "195875", + text = "grizzlyhills_redishflower02.m2", + value = "grizzlyhills_redishflower02.m2", + }, + { + fileId = "195877", + text = "grizzlyhills_root01.m2", + value = "grizzlyhills_root01.m2", + }, + { + fileId = "195878", + text = "grizzlyhills_root02.m2", + value = "grizzlyhills_root02.m2", + }, + { + fileId = "195879", + text = "grizzlyhills_root03.m2", + value = "grizzlyhills_root03.m2", + }, + { + fileId = "195880", + text = "grizzlyhills_root04.m2", + value = "grizzlyhills_root04.m2", + }, + { + fileId = "195883", + text = "grizzlyhills_ropetree01.m2", + value = "grizzlyhills_ropetree01.m2", + }, + { + fileId = "195885", + text = "grizzlyhills_sapling.m2", + value = "grizzlyhills_sapling.m2", + }, + { + fileId = "195887", + text = "grizzlyhills_shrubs01.m2", + value = "grizzlyhills_shrubs01.m2", + }, + { + fileId = "195888", + text = "grizzlyhills_shrubs02.m2", + value = "grizzlyhills_shrubs02.m2", + }, + { + fileId = "195889", + text = "grizzlyhills_shrubs03.m2", + value = "grizzlyhills_shrubs03.m2", + }, + { + fileId = "195890", + text = "grizzlyhills_tree01.m2", + value = "grizzlyhills_tree01.m2", + }, + { + fileId = "195891", + text = "grizzlyhills_tree02.m2", + value = "grizzlyhills_tree02.m2", + }, + { + fileId = "195892", + text = "grizzlyhills_tree03.m2", + value = "grizzlyhills_tree03.m2", + }, + { + fileId = "195893", + text = "grizzlyhills_tree04.m2", + value = "grizzlyhills_tree04.m2", + }, + { + fileId = "195894", + text = "grizzlyhills_tree05.m2", + value = "grizzlyhills_tree05.m2", + }, + { + fileId = "195895", + text = "grizzlyhills_tree06.m2", + value = "grizzlyhills_tree06.m2", + }, + { + fileId = "195896", + text = "grizzlyhills_tree07.m2", + value = "grizzlyhills_tree07.m2", + }, + { + fileId = "195897", + text = "grizzlyhills_tree08.m2", + value = "grizzlyhills_tree08.m2", + }, + { + fileId = "195898", + text = "grizzlyhills_tree09.m2", + value = "grizzlyhills_tree09.m2", + }, + { + fileId = "195899", + text = "grizzlyhills_tree10.m2", + value = "grizzlyhills_tree10.m2", + }, + { + fileId = "195900", + text = "grizzlyhills_tree11.m2", + value = "grizzlyhills_tree11.m2", + }, + { + fileId = "195901", + text = "grizzlyhills_tree12.m2", + value = "grizzlyhills_tree12.m2", + }, + { + fileId = "195903", + text = "grizzlyhills_treetrunk01.m2", + value = "grizzlyhills_treetrunk01.m2", + }, + { + fileId = "195904", + text = "grizzlyhills_treetrunk02.m2", + value = "grizzlyhills_treetrunk02.m2", + }, + { + fileId = "195905", + text = "grizzlyhills_treetrunk03.m2", + value = "grizzlyhills_treetrunk03.m2", + }, + { + fileId = "195906", + text = "grizzlyhills_treetrunk04.m2", + value = "grizzlyhills_treetrunk04.m2", + }, + { + fileId = "195907", + text = "grizzlyhills_treetrunk05.m2", + value = "grizzlyhills_treetrunk05.m2", + }, + { + fileId = "195908", + text = "grizzlyhills_treetrunk06.m2", + value = "grizzlyhills_treetrunk06.m2", + }, + { + fileId = "195914", + text = "grizzlyhills_tunnelbridge01.m2", + value = "grizzlyhills_tunnelbridge01.m2", + }, + { + fileId = "195917", + text = "grizzlyhills_tunneltree.m2", + value = "grizzlyhills_tunneltree.m2", + }, + { + fileId = "195921", + text = "grizzlyhills_yellowflower01.m2", + value = "grizzlyhills_yellowflower01.m2", + }, + { + fileId = "195922", + text = "grizzlyhills_yellowflower02.m2", + value = "grizzlyhills_yellowflower02.m2", + }, + { + fileId = "195924", + text = "grizzlyhillshuge_tree.m2", + value = "grizzlyhillshuge_tree.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "195932", + text = "grizzlyhillslogmachine01.m2", + value = "grizzlyhillslogmachine01.m2", + }, + { + fileId = "195933", + text = "logrun_gate.m2", + value = "logrun_gate.m2", + }, + { + fileId = "195935", + text = "logrun_pump01.m2", + value = "logrun_pump01.m2", + }, + { + fileId = "195936", + text = "logrun_pump02.m2", + value = "logrun_pump02.m2", + }, + { + fileId = "195937", + text = "logrun_pumpelevator01.m2", + value = "logrun_pumpelevator01.m2", + }, + { + fileId = "243769", + text = "logrun_pumpelevator02.m2", + value = "logrun_pumpelevator02.m2", + }, + { + fileId = "243770", + text = "logrun_pumpelevator03.m2", + value = "logrun_pumpelevator03.m2", + }, + { + fileId = "195938", + text = "nd_grizzly_logruns_water01.m2", + value = "nd_grizzly_logruns_water01.m2", + }, + { + fileId = "195939", + text = "nd_grizzly_logruns_water02.m2", + value = "nd_grizzly_logruns_water02.m2", + }, + }, + text = "ventureco", + value = "ventureco", + }, + }, + text = "grizzlyhills", + value = "grizzlyhills", + }, + { + children = { + { + children = { + { + fileId = "195942", + text = "tempvrykulbridge.m2", + value = "tempvrykulbridge.m2", + }, + }, + text = "bridges", + value = "bridges", + }, + { + children = { + { + fileId = "195943", + text = "hfjord_coastcliffwaterfall_01.m2", + value = "hfjord_coastcliffwaterfall_01.m2", + }, + { + fileId = "195944", + text = "hfjord_coastcliffwaterfall_02.m2", + value = "hfjord_coastcliffwaterfall_02.m2", + }, + { + fileId = "195945", + text = "hfjord_coastcliffwaterfall_03.m2", + value = "hfjord_coastcliffwaterfall_03.m2", + }, + }, + text = "coastcliff", + value = "coastcliff", + }, + { + children = { + { + fileId = "195946", + text = "burntground01.m2", + value = "burntground01.m2", + }, + { + fileId = "195947", + text = "burntstonetree01_vfx.m2", + value = "burntstonetree01_vfx.m2", + }, + { + fileId = "195948", + text = "burntstonetree01_vfx2.m2", + value = "burntstonetree01_vfx2.m2", + }, + { + fileId = "195949", + text = "burntstonetree07_vfx.m2", + value = "burntstonetree07_vfx.m2", + }, + { + fileId = "195950", + text = "burntstonetree08_vfx.m2", + value = "burntstonetree08_vfx.m2", + }, + { + fileId = "195951", + text = "burntstonetreefireflies_vfx.m2", + value = "burntstonetreefireflies_vfx.m2", + }, + { + fileId = "195952", + text = "burntstonetreesmoke_vfx.m2", + value = "burntstonetreesmoke_vfx.m2", + }, + }, + text = "firefx", + value = "firefx", + }, + { + children = { + { + fileId = "195956", + text = "hfjord_fog_01.m2", + value = "hfjord_fog_01.m2", + }, + { + fileId = "195958", + text = "hfjord_fog_02.m2", + value = "hfjord_fog_02.m2", + }, + { + fileId = "195960", + text = "hfjord_fog_03.m2", + value = "hfjord_fog_03.m2", + }, + { + fileId = "195961", + text = "hfjord_fog_04.m2", + value = "hfjord_fog_04.m2", + }, + { + fileId = "243772", + text = "hfjord_fog_05.m2", + value = "hfjord_fog_05.m2", + }, + }, + text = "fog", + value = "fog", + }, + { + children = { + { + fileId = "195969", + text = "apothecary_fx.m2", + value = "apothecary_fx.m2", + }, + }, + text = "forsaken", + value = "forsaken", + }, + { + fileId = "195971", + text = "hf_elevator_gate.m2", + value = "hf_elevator_gate.m2", + }, + { + fileId = "195972", + text = "hf_elevator_lift.m2", + value = "hf_elevator_lift.m2", + }, + { + fileId = "195973", + text = "hf_elevator_lift_02.m2", + value = "hf_elevator_lift_02.m2", + }, + { + fileId = "195976", + text = "hfjord_bush_01.m2", + value = "hfjord_bush_01.m2", + }, + { + fileId = "195978", + text = "hfjord_bush_02.m2", + value = "hfjord_bush_02.m2", + }, + { + fileId = "195980", + text = "hfjord_bush_03.m2", + value = "hfjord_bush_03.m2", + }, + { + fileId = "195983", + text = "hfjord_bush_04.m2", + value = "hfjord_bush_04.m2", + }, + { + fileId = "195985", + text = "hfjord_bush_05.m2", + value = "hfjord_bush_05.m2", + }, + { + fileId = "195988", + text = "hfjord_bush_snow_04.m2", + value = "hfjord_bush_snow_04.m2", + }, + { + fileId = "195989", + text = "hfjord_canyontree_01.m2", + value = "hfjord_canyontree_01.m2", + }, + { + fileId = "195990", + text = "hfjord_canyontree_02.m2", + value = "hfjord_canyontree_02.m2", + }, + { + fileId = "195991", + text = "hfjord_canyontree_03.m2", + value = "hfjord_canyontree_03.m2", + }, + { + fileId = "195995", + text = "hfjord_canyontreestump_01.m2", + value = "hfjord_canyontreestump_01.m2", + }, + { + fileId = "195996", + text = "hfjord_canyontreestump_02.m2", + value = "hfjord_canyontreestump_02.m2", + }, + { + fileId = "195998", + text = "hfjord_coastbush_01.m2", + value = "hfjord_coastbush_01.m2", + }, + { + fileId = "196000", + text = "hfjord_coastbush_02.m2", + value = "hfjord_coastbush_02.m2", + }, + { + fileId = "196001", + text = "hfjord_dryadshrine01.m2", + value = "hfjord_dryadshrine01.m2", + }, + { + fileId = "196002", + text = "hfjord_dryadshrine02.m2", + value = "hfjord_dryadshrine02.m2", + }, + { + fileId = "196006", + text = "hfjord_roots_01.m2", + value = "hfjord_roots_01.m2", + }, + { + fileId = "196007", + text = "hfjord_roots_02.m2", + value = "hfjord_roots_02.m2", + }, + { + fileId = "196008", + text = "hfjord_roots_03.m2", + value = "hfjord_roots_03.m2", + }, + { + fileId = "196009", + text = "hfjord_tree_01.m2", + value = "hfjord_tree_01.m2", + }, + { + fileId = "196010", + text = "hfjord_tree_01_lowpoly.m2", + value = "hfjord_tree_01_lowpoly.m2", + }, + { + fileId = "196011", + text = "hfjord_tree_02.m2", + value = "hfjord_tree_02.m2", + }, + { + fileId = "196012", + text = "hfjord_tree_02_lowpoly.m2", + value = "hfjord_tree_02_lowpoly.m2", + }, + { + fileId = "196013", + text = "hfjord_tree_03.m2", + value = "hfjord_tree_03.m2", + }, + { + fileId = "196014", + text = "hfjord_tree_03_lowpoly.m2", + value = "hfjord_tree_03_lowpoly.m2", + }, + { + fileId = "196015", + text = "hfjord_tree_04.m2", + value = "hfjord_tree_04.m2", + }, + { + fileId = "196016", + text = "hfjord_tree_04_lowpoly.m2", + value = "hfjord_tree_04_lowpoly.m2", + }, + { + fileId = "196017", + text = "hfjord_tree_05.m2", + value = "hfjord_tree_05.m2", + }, + { + fileId = "196018", + text = "hfjord_tree_06.m2", + value = "hfjord_tree_06.m2", + }, + { + fileId = "196019", + text = "hfjord_tree_mid_01.m2", + value = "hfjord_tree_mid_01.m2", + }, + { + fileId = "196020", + text = "hfjord_tree_mid_02.m2", + value = "hfjord_tree_mid_02.m2", + }, + { + fileId = "196021", + text = "hfjord_tree_mid_03.m2", + value = "hfjord_tree_mid_03.m2", + }, + { + fileId = "196022", + text = "hfjord_tree_mid_04.m2", + value = "hfjord_tree_mid_04.m2", + }, + { + fileId = "196023", + text = "hfjord_tree_mid_04_lowpoly.m2", + value = "hfjord_tree_mid_04_lowpoly.m2", + }, + { + fileId = "196024", + text = "hfjord_tree_mid_05.m2", + value = "hfjord_tree_mid_05.m2", + }, + { + fileId = "196025", + text = "hfjord_tree_mid_06.m2", + value = "hfjord_tree_mid_06.m2", + }, + { + fileId = "196026", + text = "hfjord_tree_mid_07.m2", + value = "hfjord_tree_mid_07.m2", + }, + { + fileId = "196027", + text = "hfjord_tree_snow_01.m2", + value = "hfjord_tree_snow_01.m2", + }, + { + fileId = "196028", + text = "hfjord_tree_snow_05.m2", + value = "hfjord_tree_snow_05.m2", + }, + { + fileId = "196029", + text = "hfjord_treefallen_01.m2", + value = "hfjord_treefallen_01.m2", + }, + { + fileId = "196030", + text = "hfjord_treestump_01.m2", + value = "hfjord_treestump_01.m2", + }, + { + children = { + { + fileId = "196036", + text = "hf_waterfall_cap_01.m2", + value = "hf_waterfall_cap_01.m2", + }, + { + fileId = "196039", + text = "hfjord_coastrock_01.m2", + value = "hfjord_coastrock_01.m2", + }, + { + fileId = "196040", + text = "hfjord_coastrock_02.m2", + value = "hfjord_coastrock_02.m2", + }, + { + fileId = "196041", + text = "hfjord_coastrock_03.m2", + value = "hfjord_coastrock_03.m2", + }, + { + fileId = "196042", + text = "hfjord_coastrock_04.m2", + value = "hfjord_coastrock_04.m2", + }, + { + fileId = "196043", + text = "hfjord_coastrock_05.m2", + value = "hfjord_coastrock_05.m2", + }, + { + fileId = "196044", + text = "hfjord_forestrock_01.m2", + value = "hfjord_forestrock_01.m2", + }, + { + fileId = "196045", + text = "hfjord_forestrock_02.m2", + value = "hfjord_forestrock_02.m2", + }, + { + fileId = "196046", + text = "hfjord_forestrock_03.m2", + value = "hfjord_forestrock_03.m2", + }, + { + fileId = "196047", + text = "hfjord_forestrock_04.m2", + value = "hfjord_forestrock_04.m2", + }, + { + fileId = "196048", + text = "hfjord_forestrock_05.m2", + value = "hfjord_forestrock_05.m2", + }, + { + fileId = "196049", + text = "hfjord_forestrock_cluster_01.m2", + value = "hfjord_forestrock_cluster_01.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "196063", + text = "titanhead_waterfall.m2", + value = "titanhead_waterfall.m2", + }, + }, + text = "titanstatues", + value = "titanstatues", + }, + }, + text = "howlingfjord", + value = "howlingfjord", + }, + { + children = { + { + children = { + { + fileId = "243773", + text = "ags_bomb.m2", + value = "ags_bomb.m2", + }, + { + fileId = "243774", + text = "ags_bombholder.m2", + value = "ags_bombholder.m2", + }, + { + fileId = "243776", + text = "ags_brasscannon.m2", + value = "ags_brasscannon.m2", + }, + { + fileId = "243778", + text = "ags_engines.m2", + value = "ags_engines.m2", + }, + { + fileId = "307762", + text = "ags_engines_bg.m2", + value = "ags_engines_bg.m2", + }, + { + fileId = "243780", + text = "ags_hazardlight_yellow.m2", + value = "ags_hazardlight_yellow.m2", + }, + }, + text = "alliance_gunship", + value = "alliance_gunship", + }, + { + children = { + { + fileId = "331694", + text = "icecrown_frostmourne_altar.m2", + value = "icecrown_frostmourne_altar.m2", + }, + }, + text = "altar", + value = "altar", + }, + { + children = { + { + fileId = "340503", + text = "icecrown_bloodchandelier_01.m2", + value = "icecrown_bloodchandelier_01.m2", + }, + { + fileId = "341529", + text = "icecrown_bloodprince_banner.m2", + value = "icecrown_bloodprince_banner.m2", + }, + { + fileId = "349239", + text = "icecrown_bloodprince_banner_02.m2", + value = "icecrown_bloodprince_banner_02.m2", + }, + { + fileId = "330977", + text = "icecrown_bloodprince_bloodorb.m2", + value = "icecrown_bloodprince_bloodorb.m2", + }, + { + fileId = "341986", + text = "icecrown_bloodprince_crest.m2", + value = "icecrown_bloodprince_crest.m2", + }, + { + fileId = "330978", + text = "icecrown_bloodprince_rooffog.m2", + value = "icecrown_bloodprince_rooffog.m2", + }, + }, + text = "bloodprince", + value = "bloodprince", + }, + { + children = { + { + fileId = "315447", + text = "icecrown_bodyjar.m2", + value = "icecrown_bodyjar.m2", + }, + }, + text = "bodyjar", + value = "bodyjar", + }, + { + children = { + { + fileId = "341989", + text = "icecrown_bonepile_01.m2", + value = "icecrown_bonepile_01.m2", + }, + { + fileId = "342585", + text = "icecrown_bonepile_02.m2", + value = "icecrown_bonepile_02.m2", + }, + { + fileId = "342410", + text = "icecrown_bonepile_light_01.m2", + value = "icecrown_bonepile_light_01.m2", + }, + { + fileId = "342586", + text = "icecrown_bonepile_light_02.m2", + value = "icecrown_bonepile_light_02.m2", + }, + { + fileId = "342663", + text = "icecrown_bonepile_skull.m2", + value = "icecrown_bonepile_skull.m2", + }, + { + fileId = "342664", + text = "icecrown_bonepile_skull_light.m2", + value = "icecrown_bonepile_skull_light.m2", + }, + }, + text = "bones", + value = "bones", + }, + { + children = { + { + fileId = "333086", + text = "icecrown_cavein.m2", + value = "icecrown_cavein.m2", + }, + }, + text = "cavein", + value = "cavein", + }, + { + children = { + { + fileId = "345030", + text = "icecrown_frostmourneghosts.m2", + value = "icecrown_frostmourneghosts.m2", + }, + { + fileId = "340011", + text = "icecrown_frostmourneskychains.m2", + value = "icecrown_frostmourneskychains.m2", + }, + { + fileId = "340504", + text = "icecrown_frostmourneskychains_02.m2", + value = "icecrown_frostmourneskychains_02.m2", + }, + }, + text = "chains", + value = "chains", + }, + { + children = { + { + fileId = "314705", + text = "icecrown_bench_01.m2", + value = "icecrown_bench_01.m2", + }, + { + fileId = "314706", + text = "icecrown_chair_01.m2", + value = "icecrown_chair_01.m2", + }, + }, + text = "chairs", + value = "chairs", + }, + { + children = { + { + fileId = "196065", + text = "ic_citadel_door01.m2", + value = "ic_citadel_door01.m2", + }, + { + fileId = "196066", + text = "ic_citadel_mouthdoor01.m2", + value = "ic_citadel_mouthdoor01.m2", + }, + { + fileId = "337075", + text = "icecrown_blooddoor_01.m2", + value = "icecrown_blooddoor_01.m2", + }, + { + fileId = "330979", + text = "icecrown_bloodprince_door_01.m2", + value = "icecrown_bloodprince_door_01.m2", + }, + { + fileId = "336508", + text = "icecrown_colddoor_01.m2", + value = "icecrown_colddoor_01.m2", + }, + { + fileId = "310114", + text = "icecrown_door_01.m2", + value = "icecrown_door_01.m2", + }, + { + fileId = "312957", + text = "icecrown_door_02_disappearing_green.m2", + value = "icecrown_door_02_disappearing_green.m2", + }, + { + fileId = "312958", + text = "icecrown_door_02_disappearing_orange.m2", + value = "icecrown_door_02_disappearing_orange.m2", + }, + { + fileId = "312959", + text = "icecrown_door_02_main.m2", + value = "icecrown_door_02_main.m2", + }, + { + fileId = "329523", + text = "icecrown_door_02collision.m2", + value = "icecrown_door_02collision.m2", + }, + { + fileId = "329524", + text = "icecrown_door_02left.m2", + value = "icecrown_door_02left.m2", + }, + { + fileId = "329525", + text = "icecrown_door_02right.m2", + value = "icecrown_door_02right.m2", + }, + { + fileId = "319877", + text = "icecrown_door_03.m2", + value = "icecrown_door_03.m2", + }, + { + fileId = "327204", + text = "icecrown_door_04.m2", + value = "icecrown_door_04.m2", + }, + { + fileId = "320870", + text = "icecrown_grate_01.m2", + value = "icecrown_grate_01.m2", + }, + { + fileId = "318772", + text = "icecrown_portcullis_01.m2", + value = "icecrown_portcullis_01.m2", + }, + { + fileId = "327455", + text = "icecrown_portcullis_02.m2", + value = "icecrown_portcullis_02.m2", + }, + { + fileId = "320223", + text = "icecrown_roostportcullis_01.m2", + value = "icecrown_roostportcullis_01.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "345449", + text = "icecrown_citadel_exterioreffects.m2", + value = "icecrown_citadel_exterioreffects.m2", + }, + { + fileId = "350645", + text = "icecrown_frozenthrone_particle.m2", + value = "icecrown_frozenthrone_particle.m2", + }, + { + fileId = "317261", + text = "icecrown_icecore.m2", + value = "icecrown_icecore.m2", + }, + { + fileId = "344277", + text = "icecrown_thronefrostyedge.m2", + value = "icecrown_thronefrostyedge.m2", + }, + { + fileId = "342587", + text = "icecrownraid_icecore_precipice.m2", + value = "icecrownraid_icecore_precipice.m2", + }, + }, + text = "effects", + value = "effects", + }, + { + children = { + { + fileId = "321125", + text = "icecrown_elevator.m2", + value = "icecrown_elevator.m2", + }, + { + fileId = "321602", + text = "icecrown_elevator02.m2", + value = "icecrown_elevator02.m2", + }, + }, + text = "elevator", + value = "elevator", + }, + { + children = { + { + fileId = "342971", + text = "icecrown_fence.m2", + value = "icecrown_fence.m2", + }, + { + fileId = "342928", + text = "icecrown_fence_base.m2", + value = "icecrown_fence_base.m2", + }, + }, + text = "fence", + value = "fence", + }, + { + children = { + { + fileId = "243783", + text = "icecrown_frozenwurm_01.m2", + value = "icecrown_frozenwurm_01.m2", + }, + }, + text = "frozen", + value = "frozen", + }, + { + children = { + { + fileId = "243784", + text = "icecrown_wallanim.m2", + value = "icecrown_wallanim.m2", + }, + { + fileId = "243785", + text = "icecrowngatefog01.m2", + value = "icecrowngatefog01.m2", + }, + { + fileId = "243786", + text = "icecrowngatefog02.m2", + value = "icecrowngatefog02.m2", + }, + }, + text = "gatefog", + value = "gatefog", + }, + { + children = { + { + fileId = "312684", + text = "ic_glow01.m2", + value = "ic_glow01.m2", + }, + { + fileId = "334827", + text = "ic_glow02.m2", + value = "ic_glow02.m2", + }, + }, + text = "glows", + value = "glows", + }, + { + children = { + { + fileId = "315158", + text = "icecrown_grinder.m2", + value = "icecrown_grinder.m2", + }, + }, + text = "grinder", + value = "grinder", + }, + { + children = { + { + fileId = "196069", + text = "icecrown_groundspikes01.m2", + value = "icecrown_groundspikes01.m2", + }, + }, + text = "groundspikes", + value = "groundspikes", + }, + { + fileId = "307957", + text = "ic_arthas_iceshard01.m2", + value = "ic_arthas_iceshard01.m2", + }, + { + fileId = "307958", + text = "ic_arthas_iceshard02.m2", + value = "ic_arthas_iceshard02.m2", + }, + { + fileId = "307959", + text = "ic_arthas_iceshard03.m2", + value = "ic_arthas_iceshard03.m2", + }, + { + fileId = "307960", + text = "ic_arthas_iceshard04.m2", + value = "ic_arthas_iceshard04.m2", + }, + { + fileId = "307961", + text = "ic_arthas_iceshard05.m2", + value = "ic_arthas_iceshard05.m2", + }, + { + fileId = "307962", + text = "ic_arthas_iceshard06.m2", + value = "ic_arthas_iceshard06.m2", + }, + { + fileId = "307963", + text = "ic_arthas_iceshard07.m2", + value = "ic_arthas_iceshard07.m2", + }, + { + fileId = "321453", + text = "ic_citadel_chest.m2", + value = "ic_citadel_chest.m2", + }, + { + children = { + { + fileId = "343005", + text = "icecrown_icecore_middle.m2", + value = "icecrown_icecore_middle.m2", + }, + }, + text = "icecore", + value = "icecore", + }, + { + children = { + { + fileId = "322905", + text = "iceshard_standing.m2", + value = "iceshard_standing.m2", + }, + { + fileId = "243793", + text = "icesharda.m2", + value = "icesharda.m2", + }, + }, + text = "iceshards", + value = "iceshards", + }, + { + children = { + { + fileId = "332869", + text = "icecrown_icewall.m2", + value = "icecrown_icewall.m2", + }, + }, + text = "icewall", + value = "icewall", + }, + { + children = { + { + fileId = "351040", + text = "icecrown_lavaman_chained.m2", + value = "icecrown_lavaman_chained.m2", + }, + { + fileId = "350996", + text = "icecrown_lavaman_sit.m2", + value = "icecrown_lavaman_sit.m2", + }, + { + fileId = "351041", + text = "icecrown_lavaman_unchained.m2", + value = "icecrown_lavaman_unchained.m2", + }, + }, + text = "lava", + value = "lava", + }, + { + children = { + { + fileId = "337802", + text = "icecrown_lever.m2", + value = "icecrown_lever.m2", + }, + }, + text = "lever", + value = "lever", + }, + { + children = { + { + fileId = "328953", + text = "icecrown_blue_fire.m2", + value = "icecrown_blue_fire.m2", + }, + { + fileId = "320225", + text = "icecrown_blueglow_01.m2", + value = "icecrown_blueglow_01.m2", + }, + { + fileId = "320226", + text = "icecrown_blueglow_02.m2", + value = "icecrown_blueglow_02.m2", + }, + { + fileId = "325920", + text = "icecrown_chandelier.m2", + value = "icecrown_chandelier.m2", + }, + { + fileId = "328954", + text = "icecrown_green_fire.m2", + value = "icecrown_green_fire.m2", + }, + { + fileId = "327861", + text = "icecrown_greenglow_01.m2", + value = "icecrown_greenglow_01.m2", + }, + { + fileId = "328252", + text = "icecrown_greenpillar_fire.m2", + value = "icecrown_greenpillar_fire.m2", + }, + { + fileId = "313729", + text = "icecrown_hangingbase.m2", + value = "icecrown_hangingbase.m2", + }, + { + fileId = "313731", + text = "icecrown_hangingbraizer_01.m2", + value = "icecrown_hangingbraizer_01.m2", + }, + { + fileId = "325921", + text = "icecrown_lablamp.m2", + value = "icecrown_lablamp.m2", + }, + { + fileId = "328956", + text = "icecrown_rays.m2", + value = "icecrown_rays.m2", + }, + { + fileId = "320166", + text = "icecrown_redglow_01.m2", + value = "icecrown_redglow_01.m2", + }, + { + fileId = "318344", + text = "icecrown_wallsconce_01.m2", + value = "icecrown_wallsconce_01.m2", + }, + }, + text = "lights", + value = "lights", + }, + { + children = { + { + fileId = "468700", + text = "icecrown_metalskull.m2", + value = "icecrown_metalskull.m2", + }, + }, + text = "metalskull", + value = "metalskull", + }, + { + children = { + { + fileId = "330980", + text = "icecrown_bloodprince_portal_effect.m2", + value = "icecrown_bloodprince_portal_effect.m2", + }, + { + fileId = "330981", + text = "icecrown_bloodprince_portal_floor.m2", + value = "icecrown_bloodprince_portal_floor.m2", + }, + { + fileId = "331146", + text = "icecrown_bloodprince_portal_left.m2", + value = "icecrown_bloodprince_portal_left.m2", + }, + { + fileId = "331148", + text = "icecrown_bloodprince_portal_middle.m2", + value = "icecrown_bloodprince_portal_middle.m2", + }, + { + fileId = "330983", + text = "icecrown_bloodprince_portal_right.m2", + value = "icecrown_bloodprince_portal_right.m2", + }, + { + fileId = "335581", + text = "icecrown_portal.m2", + value = "icecrown_portal.m2", + }, + }, + text = "portals", + value = "portals", + }, + { + children = { + { + fileId = "341990", + text = "icecrown_pressureplate.m2", + value = "icecrown_pressureplate.m2", + }, + }, + text = "pressureplate", + value = "pressureplate", + }, + { + children = { + { + fileId = "254621", + text = "icecrown_railing01.m2", + value = "icecrown_railing01.m2", + }, + { + fileId = "331696", + text = "icecrown_railing02.m2", + value = "icecrown_railing02.m2", + }, + { + fileId = "331697", + text = "icecrown_railing_rail.m2", + value = "icecrown_railing_rail.m2", + }, + }, + text = "railing", + value = "railing", + }, + { + children = { + { + fileId = "196071", + text = "icecrown_rock_01.m2", + value = "icecrown_rock_01.m2", + }, + { + fileId = "196072", + text = "icecrown_rock_02.m2", + value = "icecrown_rock_02.m2", + }, + { + fileId = "196073", + text = "icecrown_rock_03.m2", + value = "icecrown_rock_03.m2", + }, + { + fileId = "196074", + text = "icecrown_rock_04.m2", + value = "icecrown_rock_04.m2", + }, + { + fileId = "196075", + text = "icecrown_rock_05.m2", + value = "icecrown_rock_05.m2", + }, + { + fileId = "196076", + text = "icecrown_rock_06.m2", + value = "icecrown_rock_06.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "338497", + text = "icecrown_rug_long_01.m2", + value = "icecrown_rug_long_01.m2", + }, + { + fileId = "349241", + text = "icecrown_rug_long_02.m2", + value = "icecrown_rug_long_02.m2", + }, + }, + text = "rugs", + value = "rugs", + }, + { + children = { + { + fileId = "337104", + text = "icecrown_runeforge_green.m2", + value = "icecrown_runeforge_green.m2", + }, + { + fileId = "337106", + text = "icecrown_runeforge_orange.m2", + value = "icecrown_runeforge_orange.m2", + }, + }, + text = "runeforge", + value = "runeforge", + }, + { + children = { + { + fileId = "343848", + text = "icecrown_precipicerunes_01.m2", + value = "icecrown_precipicerunes_01.m2", + }, + }, + text = "runes", + value = "runes", + }, + { + children = { + { + fileId = "338495", + text = "sindragosa_iceblock_collision.m2", + value = "sindragosa_iceblock_collision.m2", + }, + }, + text = "sindragosacollision", + value = "sindragosacollision", + }, + { + children = { + { + fileId = "343920", + text = "icecrown_snowedgewarning.m2", + value = "icecrown_snowedgewarning.m2", + }, + }, + text = "snowledge", + value = "snowledge", + }, + { + children = { + { + fileId = "327166", + text = "icecrown_spigot.m2", + value = "icecrown_spigot.m2", + }, + }, + text = "spigot", + value = "spigot", + }, + { + children = { + { + fileId = "196078", + text = "icecrown_tentacles_01.m2", + value = "icecrown_tentacles_01.m2", + }, + }, + text = "tentacles", + value = "tentacles", + }, + { + children = { + { + fileId = "335587", + text = "icecrown_throne.m2", + value = "icecrown_throne.m2", + }, + { + fileId = "350991", + text = "icecrown_throne_exteriorspires.m2", + value = "icecrown_throne_exteriorspires.m2", + }, + { + fileId = "340860", + text = "icecrown_thronefrostywind.m2", + value = "icecrown_thronefrostywind.m2", + }, + }, + text = "throne", + value = "throne", + }, + { + children = { + { + fileId = "196081", + text = "icecrown_tree_01.m2", + value = "icecrown_tree_01.m2", + }, + { + fileId = "196082", + text = "icecrown_tree_02.m2", + value = "icecrown_tree_02.m2", + }, + { + fileId = "196083", + text = "icecrown_tree_03.m2", + value = "icecrown_tree_03.m2", + }, + { + fileId = "196084", + text = "icecrown_tree_04.m2", + value = "icecrown_tree_04.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "327170", + text = "icecrown_greentubes.m2", + value = "icecrown_greentubes.m2", + }, + { + fileId = "327205", + text = "icecrown_greentubes_grate.m2", + value = "icecrown_greentubes_grate.m2", + }, + { + fileId = "327171", + text = "icecrown_orangetubes.m2", + value = "icecrown_orangetubes.m2", + }, + }, + text = "tubes", + value = "tubes", + }, + { + children = { + { + fileId = "327172", + text = "icecrown_valve.m2", + value = "icecrown_valve.m2", + }, + }, + text = "valve", + value = "valve", + }, + { + children = { + { + fileId = "340090", + text = "icecrown_axe_shadowsedge.m2", + value = "icecrown_axe_shadowsedge.m2", + }, + }, + text = "weapon", + value = "weapon", + }, + { + children = { + { + fileId = "333853", + text = "wingsigil_blue.m2", + value = "wingsigil_blue.m2", + }, + { + fileId = "333854", + text = "wingsigil_green.m2", + value = "wingsigil_green.m2", + }, + { + fileId = "333855", + text = "wingsigil_red.m2", + value = "wingsigil_red.m2", + }, + }, + text = "wingsigils", + value = "wingsigils", + }, + }, + text = "icecrown", + value = "icecrown", + }, + { + children = { + { + fileId = "314866", + text = "isleofconcquest_alliance_banner_01.m2", + value = "isleofconcquest_alliance_banner_01.m2", + }, + { + fileId = "314863", + text = "isleofconcquest_horde_banner_01.m2", + value = "isleofconcquest_horde_banner_01.m2", + }, + { + fileId = "311213", + text = "isleofconquest_portal_niche_alliance_01.m2", + value = "isleofconquest_portal_niche_alliance_01.m2", + }, + { + fileId = "311214", + text = "isleofconquest_portal_niche_horde_01.m2", + value = "isleofconquest_portal_niche_horde_01.m2", + }, + }, + text = "isleofconquest", + value = "isleofconquest", + }, + { + children = { + { + fileId = "243794", + text = "alliance_vehicle_piece_01.m2", + value = "alliance_vehicle_piece_01.m2", + }, + { + fileId = "243795", + text = "alliance_vehicle_piece_02.m2", + value = "alliance_vehicle_piece_02.m2", + }, + { + fileId = "243796", + text = "alliance_vehicle_piece_03.m2", + value = "alliance_vehicle_piece_03.m2", + }, + { + children = { + { + fileId = "196087", + text = "wintergrasp_bush_01.m2", + value = "wintergrasp_bush_01.m2", + }, + { + fileId = "196089", + text = "wintergrasp_bush_02.m2", + value = "wintergrasp_bush_02.m2", + }, + { + fileId = "196091", + text = "wintergrasp_bush_03.m2", + value = "wintergrasp_bush_03.m2", + }, + { + fileId = "196092", + text = "wintergrasp_bush_04.m2", + value = "wintergrasp_bush_04.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + fileId = "243797", + text = "horde_vehicle_piece_01.m2", + value = "horde_vehicle_piece_01.m2", + }, + { + fileId = "243798", + text = "horde_vehicle_piece_02.m2", + value = "horde_vehicle_piece_02.m2", + }, + { + fileId = "243799", + text = "horde_vehicle_piece_03.m2", + value = "horde_vehicle_piece_03.m2", + }, + { + children = { + { + fileId = "243801", + text = "wintergrasp_keepcurb01.m2", + value = "wintergrasp_keepcurb01.m2", + }, + { + fileId = "243802", + text = "wintergrasp_keepcurb02.m2", + value = "wintergrasp_keepcurb02.m2", + }, + { + fileId = "243803", + text = "wintergrasp_keepcurb03.m2", + value = "wintergrasp_keepcurb03.m2", + }, + }, + text = "titanpieces", + value = "titanpieces", + }, + { + children = { + { + fileId = "196096", + text = "wintergrasp_brokentree_01.m2", + value = "wintergrasp_brokentree_01.m2", + }, + { + fileId = "196097", + text = "wintergrasp_brokentree_02.m2", + value = "wintergrasp_brokentree_02.m2", + }, + { + fileId = "196098", + text = "wintergrasp_brokentree_03.m2", + value = "wintergrasp_brokentree_03.m2", + }, + { + fileId = "196099", + text = "wintergrasp_brokentree_04.m2", + value = "wintergrasp_brokentree_04.m2", + }, + { + fileId = "196104", + text = "wintergrasp_tree_02.m2", + value = "wintergrasp_tree_02.m2", + }, + { + fileId = "196105", + text = "wintergrasp_tree_03.m2", + value = "wintergrasp_tree_03.m2", + }, + { + fileId = "196106", + text = "wintergrasp_tree_04.m2", + value = "wintergrasp_tree_04.m2", + }, + { + fileId = "196107", + text = "wintergrasp_tree_05.m2", + value = "wintergrasp_tree_05.m2", + }, + { + fileId = "196108", + text = "wintergrasp_tree_scourge_02.m2", + value = "wintergrasp_tree_scourge_02.m2", + }, + { + fileId = "196109", + text = "wintergrasp_tree_scourge_03.m2", + value = "wintergrasp_tree_scourge_03.m2", + }, + { + fileId = "196110", + text = "wintergrasp_tree_scourge_04.m2", + value = "wintergrasp_tree_scourge_04.m2", + }, + { + fileId = "196111", + text = "wintergrasp_tree_scourge_05.m2", + value = "wintergrasp_tree_scourge_05.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "196112", + text = "wintergraspwaterfall-01.m2", + value = "wintergraspwaterfall-01.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + { + fileId = "243804", + text = "wg_bridge02_fx1.m2", + value = "wg_bridge02_fx1.m2", + }, + { + fileId = "243805", + text = "wg_bridge02_fx2.m2", + value = "wg_bridge02_fx2.m2", + }, + { + fileId = "243806", + text = "wg_gate01_fx1.m2", + value = "wg_gate01_fx1.m2", + }, + { + fileId = "243807", + text = "wg_gate01_fx2.m2", + value = "wg_gate01_fx2.m2", + }, + { + fileId = "243808", + text = "wg_invisible_door.m2", + value = "wg_invisible_door.m2", + }, + { + fileId = "243809", + text = "wg_keep_door01_fx1.m2", + value = "wg_keep_door01_fx1.m2", + }, + { + fileId = "243810", + text = "wg_keep_door01_fx2.m2", + value = "wg_keep_door01_fx2.m2", + }, + { + fileId = "243811", + text = "wg_siege01_fx1.m2", + value = "wg_siege01_fx1.m2", + }, + { + fileId = "243812", + text = "wg_siege01_fx2.m2", + value = "wg_siege01_fx2.m2", + }, + { + fileId = "243813", + text = "wg_siege_door.m2", + value = "wg_siege_door.m2", + }, + { + fileId = "243814", + text = "wg_tower01_fx1.m2", + value = "wg_tower01_fx1.m2", + }, + { + fileId = "243815", + text = "wg_tower01_fx2.m2", + value = "wg_tower01_fx2.m2", + }, + { + fileId = "243816", + text = "wg_tower01_fx2b.m2", + value = "wg_tower01_fx2b.m2", + }, + { + fileId = "196113", + text = "wg_wall01_fx1.m2", + value = "wg_wall01_fx1.m2", + }, + { + fileId = "196114", + text = "wg_wall01_fx2.m2", + value = "wg_wall01_fx2.m2", + }, + { + fileId = "243817", + text = "wg_wall02_fx1.m2", + value = "wg_wall02_fx1.m2", + }, + { + fileId = "243818", + text = "wg_wall02_fx2.m2", + value = "wg_wall02_fx2.m2", + }, + }, + text = "lakewintergrasp", + value = "lakewintergrasp", + }, + { + children = { + { + fileId = "196119", + text = "nexus_blue_energyball_fast.m2", + value = "nexus_blue_energyball_fast.m2", + }, + { + fileId = "196122", + text = "nexus_blueenergywell.m2", + value = "nexus_blueenergywell.m2", + }, + { + fileId = "196123", + text = "nexus_bossroom_lightshaft01.m2", + value = "nexus_bossroom_lightshaft01.m2", + }, + { + fileId = "243821", + text = "nexus_cage_active_01.m2", + value = "nexus_cage_active_01.m2", + }, + { + fileId = "243822", + text = "nexus_cage_active_door_01.m2", + value = "nexus_cage_active_door_01.m2", + }, + { + fileId = "196129", + text = "nexus_crashed_platform_01.m2", + value = "nexus_crashed_platform_01.m2", + }, + { + fileId = "196130", + text = "nexus_crashed_platform_02.m2", + value = "nexus_crashed_platform_02.m2", + }, + { + fileId = "196132", + text = "nexus_crystals_01.m2", + value = "nexus_crystals_01.m2", + }, + { + fileId = "196143", + text = "nexus_dragon_broken_body.m2", + value = "nexus_dragon_broken_body.m2", + }, + { + fileId = "196144", + text = "nexus_dragon_broken_head.m2", + value = "nexus_dragon_broken_head.m2", + }, + { + fileId = "196145", + text = "nexus_dragon_broken_leftwing.m2", + value = "nexus_dragon_broken_leftwing.m2", + }, + { + fileId = "196146", + text = "nexus_dragon_broken_rightarm.m2", + value = "nexus_dragon_broken_rightarm.m2", + }, + { + fileId = "196147", + text = "nexus_dragon_broken_rightwing.m2", + value = "nexus_dragon_broken_rightwing.m2", + }, + { + fileId = "196148", + text = "nexus_dragon_broken_rubble.m2", + value = "nexus_dragon_broken_rubble.m2", + }, + { + fileId = "196149", + text = "nexus_dragon_broken_tail.m2", + value = "nexus_dragon_broken_tail.m2", + }, + { + fileId = "196150", + text = "nexus_dragon_broken_tailend.m2", + value = "nexus_dragon_broken_tailend.m2", + }, + { + fileId = "196152", + text = "nexus_dragonegg_01.m2", + value = "nexus_dragonegg_01.m2", + }, + { + fileId = "196153", + text = "nexus_dragonegg_02.m2", + value = "nexus_dragonegg_02.m2", + }, + { + fileId = "196155", + text = "nexus_dragonorb_01.m2", + value = "nexus_dragonorb_01.m2", + }, + { + fileId = "196156", + text = "nexus_elevator_basestructure_01.m2", + value = "nexus_elevator_basestructure_01.m2", + }, + { + fileId = "243823", + text = "nexus_energychains.m2", + value = "nexus_energychains.m2", + }, + { + fileId = "196158", + text = "nexus_energyfalls_01.m2", + value = "nexus_energyfalls_01.m2", + }, + { + fileId = "196160", + text = "nexus_energytrail_01.m2", + value = "nexus_energytrail_01.m2", + }, + { + fileId = "196161", + text = "nexus_energytrail_02.m2", + value = "nexus_energytrail_02.m2", + }, + { + fileId = "196163", + text = "nexus_falling_magicleaf_01.m2", + value = "nexus_falling_magicleaf_01.m2", + }, + { + fileId = "196165", + text = "nexus_fire_conduit.m2", + value = "nexus_fire_conduit.m2", + }, + { + fileId = "196175", + text = "nexus_frost_ritualdesign01.m2", + value = "nexus_frost_ritualdesign01.m2", + }, + { + fileId = "196176", + text = "nexus_frost_ritualdesign02_red.m2", + value = "nexus_frost_ritualdesign02_red.m2", + }, + { + fileId = "196177", + text = "nexus_fx_exterior_beam.m2", + value = "nexus_fx_exterior_beam.m2", + }, + { + fileId = "196178", + text = "nexus_hallway_lightshaft01.m2", + value = "nexus_hallway_lightshaft01.m2", + }, + { + fileId = "196181", + text = "nexus_hanging_energy_beads_01.m2", + value = "nexus_hanging_energy_beads_01.m2", + }, + { + fileId = "196182", + text = "nexus_ice_conduit.m2", + value = "nexus_ice_conduit.m2", + }, + { + fileId = "196185", + text = "nexus_iciclea.m2", + value = "nexus_iciclea.m2", + }, + { + fileId = "196186", + text = "nexus_library_lightshaft01.m2", + value = "nexus_library_lightshaft01.m2", + }, + { + fileId = "196187", + text = "nexus_library_mainfx.m2", + value = "nexus_library_mainfx.m2", + }, + { + fileId = "196188", + text = "nexus_library_platformfx.m2", + value = "nexus_library_platformfx.m2", + }, + { + fileId = "196189", + text = "nexus_library_trickle_a.m2", + value = "nexus_library_trickle_a.m2", + }, + { + fileId = "196190", + text = "nexus_library_trickle_b.m2", + value = "nexus_library_trickle_b.m2", + }, + { + fileId = "196191", + text = "nexus_library_trickle_c.m2", + value = "nexus_library_trickle_c.m2", + }, + { + fileId = "196193", + text = "nexus_magicdrop_blue_01.m2", + value = "nexus_magicdrop_blue_01.m2", + }, + { + fileId = "196194", + text = "nexus_magicdrop_blue_02.m2", + value = "nexus_magicdrop_blue_02.m2", + }, + { + fileId = "196195", + text = "nexus_magicdrop_orange_01.m2", + value = "nexus_magicdrop_orange_01.m2", + }, + { + fileId = "196196", + text = "nexus_magicorb_blue_01.m2", + value = "nexus_magicorb_blue_01.m2", + }, + { + fileId = "196197", + text = "nexus_magicorb_orange_01.m2", + value = "nexus_magicorb_orange_01.m2", + }, + { + fileId = "243824", + text = "nexus_mananeedleplatform_effects_01.m2", + value = "nexus_mananeedleplatform_effects_01.m2", + }, + { + fileId = "196198", + text = "nexus_octoroom01_conduit.m2", + value = "nexus_octoroom01_conduit.m2", + }, + { + fileId = "196199", + text = "nexus_octoroom02_conduit.m2", + value = "nexus_octoroom02_conduit.m2", + }, + { + fileId = "196200", + text = "nexus_octoroom03_conduit.m2", + value = "nexus_octoroom03_conduit.m2", + }, + { + fileId = "196201", + text = "nexus_octoroom04_conduit.m2", + value = "nexus_octoroom04_conduit.m2", + }, + { + fileId = "196202", + text = "nexus_octoroom_lightshaft01.m2", + value = "nexus_octoroom_lightshaft01.m2", + }, + { + fileId = "196205", + text = "nexus_pillara.m2", + value = "nexus_pillara.m2", + }, + { + fileId = "243825", + text = "nexus_raid_floating_platform_model.m2", + value = "nexus_raid_floating_platform_model.m2", + }, + { + fileId = "196208", + text = "nexus_sigil_blue_01.m2", + value = "nexus_sigil_blue_01.m2", + }, + { + fileId = "196209", + text = "nexus_sigil_blue_02.m2", + value = "nexus_sigil_blue_02.m2", + }, + { + fileId = "196210", + text = "nexus_sigil_blue_small_01.m2", + value = "nexus_sigil_blue_small_01.m2", + }, + { + fileId = "196211", + text = "nexus_sigil_blue_small_02.m2", + value = "nexus_sigil_blue_small_02.m2", + }, + { + fileId = "196214", + text = "nexus_sigil_orange_01.m2", + value = "nexus_sigil_orange_01.m2", + }, + { + fileId = "196215", + text = "nexus_sigil_orange_02.m2", + value = "nexus_sigil_orange_02.m2", + }, + { + fileId = "243826", + text = "nexus_spike_a_ice.m2", + value = "nexus_spike_a_ice.m2", + }, + { + fileId = "243827", + text = "nexus_spike_a_rock.m2", + value = "nexus_spike_a_rock.m2", + }, + { + fileId = "243828", + text = "nexus_spike_b_ice.m2", + value = "nexus_spike_b_ice.m2", + }, + { + fileId = "243829", + text = "nexus_spike_b_rock.m2", + value = "nexus_spike_b_rock.m2", + }, + { + fileId = "243830", + text = "nexus_spike_c_ice.m2", + value = "nexus_spike_c_ice.m2", + }, + { + fileId = "243831", + text = "nexus_spike_c_rock.m2", + value = "nexus_spike_c_rock.m2", + }, + { + fileId = "243832", + text = "nexus_spike_d_ice.m2", + value = "nexus_spike_d_ice.m2", + }, + { + fileId = "243833", + text = "nexus_spike_d_rock.m2", + value = "nexus_spike_d_rock.m2", + }, + { + fileId = "196216", + text = "nexus_vortexroom_mainfx.m2", + value = "nexus_vortexroom_mainfx.m2", + }, + { + fileId = "196217", + text = "nexus_white_bush_a.m2", + value = "nexus_white_bush_a.m2", + }, + }, + text = "nexus", + value = "nexus", + }, + { + children = { + { + children = { + { + fileId = "196220", + text = "oracle_hut01.m2", + value = "oracle_hut01.m2", + }, + { + fileId = "196221", + text = "oracle_hut02.m2", + value = "oracle_hut02.m2", + }, + { + fileId = "196222", + text = "oracle_hut03.m2", + value = "oracle_hut03.m2", + }, + }, + text = "huts", + value = "huts", + }, + }, + text = "oracle", + value = "oracle", + }, + { + children = { + { + fileId = "196225", + text = "nd_bfdpot_01.m2", + value = "nd_bfdpot_01.m2", + }, + { + fileId = "196227", + text = "nd_bfdpot_02.m2", + value = "nd_bfdpot_02.m2", + }, + { + fileId = "196228", + text = "nd_bfdpot_03.m2", + value = "nd_bfdpot_03.m2", + }, + { + fileId = "196229", + text = "nd_bfdpot_04.m2", + value = "nd_bfdpot_04.m2", + }, + { + fileId = "196230", + text = "nd_bfdpot_broken_01.m2", + value = "nd_bfdpot_broken_01.m2", + }, + { + fileId = "196231", + text = "nd_bfdpot_broken_02.m2", + value = "nd_bfdpot_broken_02.m2", + }, + { + fileId = "196232", + text = "nd_nestonebench_01.m2", + value = "nd_nestonebench_01.m2", + }, + { + fileId = "196233", + text = "nd_nightelfruins_01.m2", + value = "nd_nightelfruins_01.m2", + }, + { + fileId = "196235", + text = "nd_nightelfruins_02.m2", + value = "nd_nightelfruins_02.m2", + }, + { + fileId = "196237", + text = "nd_nightelfruins_03.m2", + value = "nd_nightelfruins_03.m2", + }, + { + fileId = "196239", + text = "nd_nightelfruins_04.m2", + value = "nd_nightelfruins_04.m2", + }, + { + fileId = "196241", + text = "nd_nightelfruins_05.m2", + value = "nd_nightelfruins_05.m2", + }, + { + fileId = "196243", + text = "nd_nightelfruins_06.m2", + value = "nd_nightelfruins_06.m2", + }, + { + fileId = "196245", + text = "nd_nightelfruins_07.m2", + value = "nd_nightelfruins_07.m2", + }, + { + fileId = "196247", + text = "nd_nightelfruins_08.m2", + value = "nd_nightelfruins_08.m2", + }, + { + fileId = "196249", + text = "nd_nightelfruins_09.m2", + value = "nd_nightelfruins_09.m2", + }, + { + fileId = "196251", + text = "nd_nightelfruins_10.m2", + value = "nd_nightelfruins_10.m2", + }, + { + fileId = "196252", + text = "nd_nightelfruins_11.m2", + value = "nd_nightelfruins_11.m2", + }, + { + fileId = "196253", + text = "nd_nightelfruins_12.m2", + value = "nd_nightelfruins_12.m2", + }, + { + fileId = "196254", + text = "nd_nightelfruins_13.m2", + value = "nd_nightelfruins_13.m2", + }, + { + fileId = "196255", + text = "nd_nightelfruins_14.m2", + value = "nd_nightelfruins_14.m2", + }, + { + fileId = "196256", + text = "nd_nightelfruins_15.m2", + value = "nd_nightelfruins_15.m2", + }, + { + fileId = "196257", + text = "nd_nightelfruins_16.m2", + value = "nd_nightelfruins_16.m2", + }, + { + fileId = "196258", + text = "nd_nightelfruins_17.m2", + value = "nd_nightelfruins_17.m2", + }, + { + fileId = "196259", + text = "nd_nightelfruins_18.m2", + value = "nd_nightelfruins_18.m2", + }, + { + fileId = "196260", + text = "nd_nightelfruins_19.m2", + value = "nd_nightelfruins_19.m2", + }, + { + fileId = "196261", + text = "nd_nightelfruins_20.m2", + value = "nd_nightelfruins_20.m2", + }, + { + fileId = "196262", + text = "nd_nightelfruins_21.m2", + value = "nd_nightelfruins_21.m2", + }, + { + fileId = "196263", + text = "nd_nightelfruins_22.m2", + value = "nd_nightelfruins_22.m2", + }, + { + fileId = "196264", + text = "nd_nightelfruins_23.m2", + value = "nd_nightelfruins_23.m2", + }, + }, + text = "riplash", + value = "riplash", + }, + { + children = { + { + fileId = "365265", + text = "reddragonshrine_tree01.m2", + value = "reddragonshrine_tree01.m2", + }, + { + fileId = "365266", + text = "reddragonshrine_tree02.m2", + value = "reddragonshrine_tree02.m2", + }, + { + fileId = "365267", + text = "reddragonshrine_tree03.m2", + value = "reddragonshrine_tree03.m2", + }, + { + fileId = "365268", + text = "reddragonshrine_tree04.m2", + value = "reddragonshrine_tree04.m2", + }, + { + fileId = "369736", + text = "reddragonshrine_tree04_burned.m2", + value = "reddragonshrine_tree04_burned.m2", + }, + { + fileId = "370181", + text = "reddragonshrine_tree04_burned_anim.m2", + value = "reddragonshrine_tree04_burned_anim.m2", + }, + { + fileId = "367330", + text = "rubysanctum_door_01.m2", + value = "rubysanctum_door_01.m2", + }, + { + fileId = "368578", + text = "rubysanctum_door_02.m2", + value = "rubysanctum_door_02.m2", + }, + { + fileId = "369209", + text = "rubysanctum_door_03.m2", + value = "rubysanctum_door_03.m2", + }, + { + fileId = "370351", + text = "rubysanctum_door_04.m2", + value = "rubysanctum_door_04.m2", + }, + }, + text = "rubysanctum", + value = "rubysanctum", + }, + { + children = { + { + children = { + { + fileId = "196266", + text = "sholazarpalm_bridge01.m2", + value = "sholazarpalm_bridge01.m2", + }, + }, + text = "bridge", + value = "bridge", + }, + { + children = { + { + fileId = "196270", + text = "sholazar_aloea.m2", + value = "sholazar_aloea.m2", + }, + { + fileId = "196271", + text = "sholazar_aloeb.m2", + value = "sholazar_aloeb.m2", + }, + { + fileId = "196272", + text = "sholazar_bambooa.m2", + value = "sholazar_bambooa.m2", + }, + { + fileId = "196273", + text = "sholazar_bamboob.m2", + value = "sholazar_bamboob.m2", + }, + { + fileId = "196274", + text = "sholazar_cattaila.m2", + value = "sholazar_cattaila.m2", + }, + { + fileId = "196275", + text = "sholazar_cattailb.m2", + value = "sholazar_cattailb.m2", + }, + { + fileId = "243838", + text = "sholazar_fern_questonly.m2", + value = "sholazar_fern_questonly.m2", + }, + { + fileId = "196276", + text = "sholazar_ferna.m2", + value = "sholazar_ferna.m2", + }, + { + fileId = "243839", + text = "sholazar_ferna_dark.m2", + value = "sholazar_ferna_dark.m2", + }, + { + fileId = "196277", + text = "sholazar_fernb.m2", + value = "sholazar_fernb.m2", + }, + { + fileId = "243840", + text = "sholazar_fernb_dark.m2", + value = "sholazar_fernb_dark.m2", + }, + { + fileId = "196278", + text = "sholazar_flowera.m2", + value = "sholazar_flowera.m2", + }, + { + fileId = "196279", + text = "sholazar_flowerb.m2", + value = "sholazar_flowerb.m2", + }, + { + fileId = "196280", + text = "sholazar_grassa.m2", + value = "sholazar_grassa.m2", + }, + { + fileId = "243841", + text = "sholazar_grassa_dark.m2", + value = "sholazar_grassa_dark.m2", + }, + { + fileId = "196281", + text = "sholazar_grassb.m2", + value = "sholazar_grassb.m2", + }, + { + fileId = "243842", + text = "sholazar_grassb_dark.m2", + value = "sholazar_grassb_dark.m2", + }, + { + fileId = "196282", + text = "sholazar_leafybusha.m2", + value = "sholazar_leafybusha.m2", + }, + { + fileId = "243843", + text = "sholazar_leafybusha_dark.m2", + value = "sholazar_leafybusha_dark.m2", + }, + { + fileId = "196283", + text = "sholazar_leafybushb.m2", + value = "sholazar_leafybushb.m2", + }, + { + fileId = "243844", + text = "sholazar_leafybushb_dark.m2", + value = "sholazar_leafybushb_dark.m2", + }, + { + fileId = "196284", + text = "sholazarshrub04.m2", + value = "sholazarshrub04.m2", + }, + { + fileId = "196285", + text = "sholazarshrub05.m2", + value = "sholazarshrub05.m2", + }, + { + fileId = "196286", + text = "sholazarshrub07.m2", + value = "sholazarshrub07.m2", + }, + { + fileId = "196287", + text = "sholazarshrub09.m2", + value = "sholazarshrub09.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "243845", + text = "sholazarbasin_fog_cool.m2", + value = "sholazarbasin_fog_cool.m2", + }, + { + fileId = "243846", + text = "sholazarbasin_fog_warm.m2", + value = "sholazarbasin_fog_warm.m2", + }, + }, + text = "fog", + value = "fog", + }, + { + fileId = "243847", + text = "hatchwindow.m2", + value = "hatchwindow.m2", + }, + { + children = { + { + fileId = "196290", + text = "sholazar_lightray_01.m2", + value = "sholazar_lightray_01.m2", + }, + { + fileId = "196291", + text = "sholazar_lightray_02.m2", + value = "sholazar_lightray_02.m2", + }, + }, + text = "lightfx", + value = "lightfx", + }, + { + fileId = "243849", + text = "losthatch.m2", + value = "losthatch.m2", + }, + { + children = { + { + fileId = "196293", + text = "sholazar_rocka.m2", + value = "sholazar_rocka.m2", + }, + { + fileId = "243850", + text = "sholazar_rocka_dark.m2", + value = "sholazar_rocka_dark.m2", + }, + { + fileId = "196294", + text = "sholazar_rockb.m2", + value = "sholazar_rockb.m2", + }, + { + fileId = "243852", + text = "sholazar_rockb_dark.m2", + value = "sholazar_rockb_dark.m2", + }, + { + fileId = "196295", + text = "sholazar_rockc.m2", + value = "sholazar_rockc.m2", + }, + { + fileId = "243853", + text = "sholazar_rockc_dark.m2", + value = "sholazar_rockc_dark.m2", + }, + { + fileId = "196296", + text = "sholazar_rockd.m2", + value = "sholazar_rockd.m2", + }, + { + fileId = "243854", + text = "sholazar_rockd_dark.m2", + value = "sholazar_rockd_dark.m2", + }, + { + fileId = "196297", + text = "sholazar_rocke.m2", + value = "sholazar_rocke.m2", + }, + { + fileId = "243855", + text = "sholazar_rocke_dark.m2", + value = "sholazar_rocke_dark.m2", + }, + { + fileId = "196299", + text = "sholazar_rocksmalla.m2", + value = "sholazar_rocksmalla.m2", + }, + { + fileId = "196300", + text = "sholazar_rocksmallb.m2", + value = "sholazar_rocksmallb.m2", + }, + { + fileId = "196301", + text = "sholazar_rocksmallc.m2", + value = "sholazar_rocksmallc.m2", + }, + { + fileId = "196302", + text = "sholazar_rocksmalld.m2", + value = "sholazar_rocksmalld.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "196303", + text = "shipwreck_sails.m2", + value = "shipwreck_sails.m2", + }, + }, + text = "shipwreck_d", + value = "shipwreck_d", + }, + { + fileId = "196305", + text = "sholazar_crystal_01.m2", + value = "sholazar_crystal_01.m2", + }, + { + fileId = "196306", + text = "sholazar_crystal_02.m2", + value = "sholazar_crystal_02.m2", + }, + { + fileId = "196307", + text = "sholazar_crystal_03.m2", + value = "sholazar_crystal_03.m2", + }, + { + fileId = "243856", + text = "sholazar_crystal_03a.m2", + value = "sholazar_crystal_03a.m2", + }, + { + fileId = "196308", + text = "sholazar_crystal_04.m2", + value = "sholazar_crystal_04.m2", + }, + { + fileId = "243857", + text = "sholazar_crystal_04a.m2", + value = "sholazar_crystal_04a.m2", + }, + { + fileId = "196309", + text = "sholazar_crystal_05.m2", + value = "sholazar_crystal_05.m2", + }, + { + fileId = "196310", + text = "sholazar_crystal_06.m2", + value = "sholazar_crystal_06.m2", + }, + { + fileId = "196311", + text = "sholazar_crystal_07.m2", + value = "sholazar_crystal_07.m2", + }, + { + fileId = "243859", + text = "sholazar_geode_crys_1.m2", + value = "sholazar_geode_crys_1.m2", + }, + { + fileId = "243860", + text = "sholazar_geode_crys_2.m2", + value = "sholazar_geode_crys_2.m2", + }, + { + fileId = "243861", + text = "sholazar_geode_crys_3.m2", + value = "sholazar_geode_crys_3.m2", + }, + { + children = { + { + fileId = "196314", + text = "sholazar_branch_large01.m2", + value = "sholazar_branch_large01.m2", + }, + { + fileId = "196315", + text = "sholazar_branch_medium01.m2", + value = "sholazar_branch_medium01.m2", + }, + { + fileId = "196316", + text = "sholazar_branch_small01.m2", + value = "sholazar_branch_small01.m2", + }, + { + fileId = "196317", + text = "sholazar_fruit01.m2", + value = "sholazar_fruit01.m2", + }, + { + fileId = "196319", + text = "sholazar_root01.m2", + value = "sholazar_root01.m2", + }, + { + fileId = "196320", + text = "sholazar_root02.m2", + value = "sholazar_root02.m2", + }, + { + fileId = "196321", + text = "sholazar_root03.m2", + value = "sholazar_root03.m2", + }, + { + fileId = "196322", + text = "sholazar_root04.m2", + value = "sholazar_root04.m2", + }, + { + fileId = "196323", + text = "sholazar_root05.m2", + value = "sholazar_root05.m2", + }, + { + fileId = "196324", + text = "sholazar_root06.m2", + value = "sholazar_root06.m2", + }, + { + fileId = "196325", + text = "sholazar_root07.m2", + value = "sholazar_root07.m2", + }, + { + fileId = "196326", + text = "sholazar_treeleafa.m2", + value = "sholazar_treeleafa.m2", + }, + { + fileId = "196327", + text = "sholazar_treeleafb.m2", + value = "sholazar_treeleafb.m2", + }, + { + fileId = "196329", + text = "sholazar_vine01.m2", + value = "sholazar_vine01.m2", + }, + { + fileId = "196330", + text = "sholazar_vine02.m2", + value = "sholazar_vine02.m2", + }, + { + fileId = "196331", + text = "sholazarbroadleaf_bush01.m2", + value = "sholazarbroadleaf_bush01.m2", + }, + { + fileId = "243863", + text = "sholazarbroadleaf_bush01_dark.m2", + value = "sholazarbroadleaf_bush01_dark.m2", + }, + { + fileId = "196332", + text = "sholazarbroadleaf_bush02.m2", + value = "sholazarbroadleaf_bush02.m2", + }, + { + fileId = "243864", + text = "sholazarbroadleaf_bush02_dark.m2", + value = "sholazarbroadleaf_bush02_dark.m2", + }, + { + fileId = "196333", + text = "sholazarbroadleaf_bush_scourge_01.m2", + value = "sholazarbroadleaf_bush_scourge_01.m2", + }, + { + fileId = "196334", + text = "sholazarcanopy_log01.m2", + value = "sholazarcanopy_log01.m2", + }, + { + fileId = "196336", + text = "sholazarcanopy_trunk01.m2", + value = "sholazarcanopy_trunk01.m2", + }, + { + fileId = "196338", + text = "sholazarhugecanopy_doodad.m2", + value = "sholazarhugecanopy_doodad.m2", + }, + { + fileId = "196340", + text = "sholazarhugecanopy_tree01.m2", + value = "sholazarhugecanopy_tree01.m2", + }, + { + fileId = "196341", + text = "sholazarhugecanopy_tree02.m2", + value = "sholazarhugecanopy_tree02.m2", + }, + { + fileId = "196342", + text = "sholazarhugecanopy_tree03.m2", + value = "sholazarhugecanopy_tree03.m2", + }, + { + fileId = "196343", + text = "sholazarhugecanopy_tree_scourge_01.m2", + value = "sholazarhugecanopy_tree_scourge_01.m2", + }, + { + fileId = "243868", + text = "sholazarpalm_burning01.m2", + value = "sholazarpalm_burning01.m2", + }, + { + fileId = "196352", + text = "sholazarpalm_fallentree01.m2", + value = "sholazarpalm_fallentree01.m2", + }, + { + fileId = "196353", + text = "sholazarpalm_fallentree02.m2", + value = "sholazarpalm_fallentree02.m2", + }, + { + fileId = "196355", + text = "sholazarpalm_fruit.m2", + value = "sholazarpalm_fruit.m2", + }, + { + fileId = "196356", + text = "sholazarpalm_log01.m2", + value = "sholazarpalm_log01.m2", + }, + { + fileId = "196357", + text = "sholazarpalm_log02.m2", + value = "sholazarpalm_log02.m2", + }, + { + fileId = "196359", + text = "sholazarpalm_tree01.m2", + value = "sholazarpalm_tree01.m2", + }, + { + fileId = "196361", + text = "sholazarpalm_tree02.m2", + value = "sholazarpalm_tree02.m2", + }, + { + fileId = "196362", + text = "sholazarpalm_tree03.m2", + value = "sholazarpalm_tree03.m2", + }, + { + fileId = "196364", + text = "sholazarpalm_tree_scourge_01.m2", + value = "sholazarpalm_tree_scourge_01.m2", + }, + { + fileId = "196365", + text = "sholazarpalm_tree_scourge_02.m2", + value = "sholazarpalm_tree_scourge_02.m2", + }, + { + fileId = "196366", + text = "sholazarpalm_trunk01.m2", + value = "sholazarpalm_trunk01.m2", + }, + { + fileId = "196367", + text = "sholazarpalm_trunk02.m2", + value = "sholazarpalm_trunk02.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "243871", + text = "wasp_smallhive01.m2", + value = "wasp_smallhive01.m2", + }, + }, + text = "waspkit", + value = "waspkit", + }, + { + children = { + { + fileId = "243872", + text = "sholazar_dirty_waterfall.m2", + value = "sholazar_dirty_waterfall.m2", + }, + { + fileId = "243873", + text = "sholazar_dirty_waterfall_chop.m2", + value = "sholazar_dirty_waterfall_chop.m2", + }, + { + fileId = "196369", + text = "sholazar_northoceanwaterfall_center01.m2", + value = "sholazar_northoceanwaterfall_center01.m2", + }, + { + fileId = "196370", + text = "sholazarnorthoceanwf04.m2", + value = "sholazarnorthoceanwf04.m2", + }, + { + fileId = "196371", + text = "sholazarsouthoceanwaterfall-01.m2", + value = "sholazarsouthoceanwaterfall-01.m2", + }, + { + fileId = "196372", + text = "sholazarsouthoceanwaterfall-03.m2", + value = "sholazarsouthoceanwaterfall-03.m2", + }, + { + fileId = "196373", + text = "sholazarsouthoceanwaterfall-04.m2", + value = "sholazarsouthoceanwaterfall-04.m2", + }, + { + fileId = "196374", + text = "sholazarsouthoceanwaterfall-05.m2", + value = "sholazarsouthoceanwaterfall-05.m2", + }, + { + fileId = "243874", + text = "sholazarsouthoceanwaterfall-06.m2", + value = "sholazarsouthoceanwaterfall-06.m2", + }, + { + fileId = "243875", + text = "sholazarsouthoceanwaterfall-07.m2", + value = "sholazarsouthoceanwaterfall-07.m2", + }, + { + fileId = "196375", + text = "sholazarsouthoceanwaterfall_center.m2", + value = "sholazarsouthoceanwaterfall_center.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + }, + text = "scholazar", + value = "scholazar", + }, + { + children = { + { + fileId = "243880", + text = "nd_icebreaker_ship_bg.m2", + value = "nd_icebreaker_ship_bg.m2", + }, + { + fileId = "311514", + text = "nd_icebreaker_ship_bg_flip.m2", + value = "nd_icebreaker_ship_bg_flip.m2", + }, + { + fileId = "243881", + text = "nd_ship_ud_bg.m2", + value = "nd_ship_ud_bg.m2", + }, + { + fileId = "311511", + text = "nd_ship_ud_bg_flip.m2", + value = "nd_ship_ud_bg_flip.m2", + }, + { + fileId = "243882", + text = "transport_ship_ud_sails.m2", + value = "transport_ship_ud_sails.m2", + }, + }, + text = "ships", + value = "ships", + }, + { + children = { + { + children = { + { + fileId = "243884", + text = "sholazar_rainbow.m2", + value = "sholazar_rainbow.m2", + }, + }, + text = "rainbow", + value = "rainbow", + }, + { + fileId = "196383", + text = "sb_aloea.m2", + value = "sb_aloea.m2", + }, + { + fileId = "196384", + text = "sb_aloeb.m2", + value = "sb_aloeb.m2", + }, + { + fileId = "196385", + text = "sb_ferna.m2", + value = "sb_ferna.m2", + }, + { + fileId = "196386", + text = "sb_fernb.m2", + value = "sb_fernb.m2", + }, + { + fileId = "196387", + text = "sb_grassa.m2", + value = "sb_grassa.m2", + }, + { + fileId = "196388", + text = "sb_grassb.m2", + value = "sb_grassb.m2", + }, + { + fileId = "196389", + text = "sb_leafybusha.m2", + value = "sb_leafybusha.m2", + }, + { + fileId = "196390", + text = "sb_leafybushb.m2", + value = "sb_leafybushb.m2", + }, + { + fileId = "243885", + text = "sholazar_vine_quest_01.m2", + value = "sholazar_vine_quest_01.m2", + }, + }, + text = "sholazarbasin", + value = "sholazarbasin", + }, + { + children = { + { + children = { + { + fileId = "196391", + text = "stormpeaks_busha.m2", + value = "stormpeaks_busha.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "243886", + text = "stormpeaks_fog_01.m2", + value = "stormpeaks_fog_01.m2", + }, + { + fileId = "249607", + text = "stormpeaks_ulduar_clouds.m2", + value = "stormpeaks_ulduar_clouds.m2", + }, + { + fileId = "251925", + text = "stormpeaks_ulduar_clouds_02.m2", + value = "stormpeaks_ulduar_clouds_02.m2", + }, + { + fileId = "254282", + text = "stormpeaks_ulduar_clouds_03.m2", + value = "stormpeaks_ulduar_clouds_03.m2", + }, + }, + text = "fog", + value = "fog", + }, + { + children = { + { + fileId = "243887", + text = "frozengiantking.m2", + value = "frozengiantking.m2", + }, + { + fileId = "243892", + text = "giantbattle_magic.m2", + value = "giantbattle_magic.m2", + }, + }, + text = "giantbattle", + value = "giantbattle", + }, + { + children = { + { + fileId = "243898", + text = "frostgiant_citadelpiece01.m2", + value = "frostgiant_citadelpiece01.m2", + }, + { + fileId = "243899", + text = "frostgiant_citadelpiece02.m2", + value = "frostgiant_citadelpiece02.m2", + }, + { + fileId = "243900", + text = "frostgiant_citadelpiece03.m2", + value = "frostgiant_citadelpiece03.m2", + }, + { + fileId = "243901", + text = "frostgiant_citadelpiece04.m2", + value = "frostgiant_citadelpiece04.m2", + }, + { + fileId = "243902", + text = "frostgiant_icearch_01.m2", + value = "frostgiant_icearch_01.m2", + }, + { + fileId = "243903", + text = "frostgiant_icearch_02.m2", + value = "frostgiant_icearch_02.m2", + }, + { + fileId = "243904", + text = "frostgiant_icecliff_01.m2", + value = "frostgiant_icecliff_01.m2", + }, + { + fileId = "243905", + text = "frostgiant_icecliff_02.m2", + value = "frostgiant_icecliff_02.m2", + }, + { + fileId = "243906", + text = "frostgiant_icecliff_04.m2", + value = "frostgiant_icecliff_04.m2", + }, + { + fileId = "243907", + text = "frostgiant_icecliff_05.m2", + value = "frostgiant_icecliff_05.m2", + }, + { + fileId = "243908", + text = "frostgianticeshard01.m2", + value = "frostgianticeshard01.m2", + }, + { + fileId = "243909", + text = "frostgianticeshard02.m2", + value = "frostgianticeshard02.m2", + }, + { + fileId = "243910", + text = "frostgianticeshard03.m2", + value = "frostgianticeshard03.m2", + }, + { + fileId = "243911", + text = "frostgianticeshard04.m2", + value = "frostgianticeshard04.m2", + }, + }, + text = "iceshards", + value = "iceshards", + }, + { + children = { + { + fileId = "243914", + text = "stormpeakslightning01.m2", + value = "stormpeakslightning01.m2", + }, + { + fileId = "243915", + text = "stormpeakslightning02.m2", + value = "stormpeakslightning02.m2", + }, + { + fileId = "243916", + text = "stormpeakslightning03.m2", + value = "stormpeakslightning03.m2", + }, + { + fileId = "243917", + text = "stormpeakslightning04.m2", + value = "stormpeakslightning04.m2", + }, + { + fileId = "243918", + text = "stormpeakslightning05.m2", + value = "stormpeakslightning05.m2", + }, + { + fileId = "243919", + text = "stormpeakslightning06.m2", + value = "stormpeakslightning06.m2", + }, + }, + text = "lightning", + value = "lightning", + }, + { + children = { + { + fileId = "196393", + text = "stormpeaks_rocka.m2", + value = "stormpeaks_rocka.m2", + }, + { + fileId = "196394", + text = "stormpeaks_rockb.m2", + value = "stormpeaks_rockb.m2", + }, + { + fileId = "196395", + text = "stormpeaks_rockc.m2", + value = "stormpeaks_rockc.m2", + }, + { + fileId = "243920", + text = "stormpeaks_rockd.m2", + value = "stormpeaks_rockd.m2", + }, + { + fileId = "243921", + text = "stormpeaks_rocke.m2", + value = "stormpeaks_rocke.m2", + }, + { + fileId = "243922", + text = "stormpeaks_rockf.m2", + value = "stormpeaks_rockf.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "196396", + text = "sp_rocnest01.m2", + value = "sp_rocnest01.m2", + }, + { + fileId = "243924", + text = "sp_rocnest03collision.m2", + value = "sp_rocnest03collision.m2", + }, + }, + text = "rocs", + value = "rocs", + }, + { + children = { + { + fileId = "243926", + text = "orangescourgebubbles.m2", + value = "orangescourgebubbles.m2", + }, + { + fileId = "243927", + text = "orangescourgebubbles2.m2", + value = "orangescourgebubbles2.m2", + }, + { + fileId = "243928", + text = "orangescourgesteam.m2", + value = "orangescourgesteam.m2", + }, + }, + text = "scourge", + value = "scourge", + }, + { + children = { + { + fileId = "196398", + text = "stormpeaks_snowdrift_01.m2", + value = "stormpeaks_snowdrift_01.m2", + }, + { + fileId = "243938", + text = "stormpeaks_snowdrift_02.m2", + value = "stormpeaks_snowdrift_02.m2", + }, + { + fileId = "243939", + text = "stormpeaks_snowdrift_03.m2", + value = "stormpeaks_snowdrift_03.m2", + }, + { + fileId = "243940", + text = "stormpeaks_snowdrift_04.m2", + value = "stormpeaks_snowdrift_04.m2", + }, + { + fileId = "243941", + text = "stormpeaks_snowdrift_wind_01.m2", + value = "stormpeaks_snowdrift_wind_01.m2", + }, + }, + text = "snow", + value = "snow", + }, + { + children = { + { + fileId = "196402", + text = "stormpeaks_treea.m2", + value = "stormpeaks_treea.m2", + }, + { + fileId = "196404", + text = "stormpeaks_treeb.m2", + value = "stormpeaks_treeb.m2", + }, + { + fileId = "196406", + text = "stormpeaks_treec.m2", + value = "stormpeaks_treec.m2", + }, + { + fileId = "196407", + text = "stormpeaks_treed.m2", + value = "stormpeaks_treed.m2", + }, + { + fileId = "196408", + text = "stormpeaks_treee.m2", + value = "stormpeaks_treee.m2", + }, + { + fileId = "196409", + text = "stormpeaks_treef.m2", + value = "stormpeaks_treef.m2", + }, + { + fileId = "243942", + text = "stormpeaks_treeg.m2", + value = "stormpeaks_treeg.m2", + }, + { + fileId = "243943", + text = "stormpeaks_treeh.m2", + value = "stormpeaks_treeh.m2", + }, + { + fileId = "243944", + text = "stormpeaks_treei.m2", + value = "stormpeaks_treei.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "stormpeaks", + value = "stormpeaks", + }, + { + children = { + { + children = { + { + fileId = "196410", + text = "ld_stratholme_banner01.m2", + value = "ld_stratholme_banner01.m2", + }, + { + fileId = "196411", + text = "ld_stratholme_banner02.m2", + value = "ld_stratholme_banner02.m2", + }, + { + fileId = "196412", + text = "ld_stratholme_banner03.m2", + value = "ld_stratholme_banner03.m2", + }, + { + fileId = "196413", + text = "ld_stratholme_banner04.m2", + value = "ld_stratholme_banner04.m2", + }, + { + fileId = "196414", + text = "ld_stratholme_banner05.m2", + value = "ld_stratholme_banner05.m2", + }, + { + fileId = "196415", + text = "ld_stratholme_banner06.m2", + value = "ld_stratholme_banner06.m2", + }, + { + fileId = "196416", + text = "ld_stratholme_banner07.m2", + value = "ld_stratholme_banner07.m2", + }, + { + fileId = "196417", + text = "ld_stratholme_banner08.m2", + value = "ld_stratholme_banner08.m2", + }, + { + fileId = "196418", + text = "ld_stratholme_foodtent.m2", + value = "ld_stratholme_foodtent.m2", + }, + { + fileId = "196419", + text = "ld_stratholme_longbanners01.m2", + value = "ld_stratholme_longbanners01.m2", + }, + { + fileId = "196420", + text = "ld_stratholme_opentent.m2", + value = "ld_stratholme_opentent.m2", + }, + { + fileId = "196421", + text = "ld_stratholme_platform01.m2", + value = "ld_stratholme_platform01.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + fileId = "196432", + text = "ld_arc_oldstratholme.m2", + value = "ld_arc_oldstratholme.m2", + }, + { + fileId = "196435", + text = "ld_flowerbunch.m2", + value = "ld_flowerbunch.m2", + }, + { + fileId = "196436", + text = "ld_foodcart01.m2", + value = "ld_foodcart01.m2", + }, + { + fileId = "196438", + text = "ld_graincrate01.m2", + value = "ld_graincrate01.m2", + }, + { + fileId = "196439", + text = "ld_grainsack01.m2", + value = "ld_grainsack01.m2", + }, + { + fileId = "196440", + text = "ld_grainsack02.m2", + value = "ld_grainsack02.m2", + }, + { + fileId = "196442", + text = "ld_green_smoke_haystack.m2", + value = "ld_green_smoke_haystack.m2", + }, + { + fileId = "196443", + text = "ld_hidden_door_room.m2", + value = "ld_hidden_door_room.m2", + }, + { + fileId = "196444", + text = "ld_oldstratholme_rug.m2", + value = "ld_oldstratholme_rug.m2", + }, + { + fileId = "196445", + text = "ld_oldstratholme_rug02.m2", + value = "ld_oldstratholme_rug02.m2", + }, + { + fileId = "196446", + text = "ld_oldstratholme_rug03.m2", + value = "ld_oldstratholme_rug03.m2", + }, + { + fileId = "196447", + text = "ld_oldstratholme_rug04.m2", + value = "ld_oldstratholme_rug04.m2", + }, + { + fileId = "196452", + text = "ld_stratholme_clothingline01.m2", + value = "ld_stratholme_clothingline01.m2", + }, + { + fileId = "196453", + text = "ld_stratholme_platform02.m2", + value = "ld_stratholme_platform02.m2", + }, + { + fileId = "196454", + text = "ld_stratholme_tent01.m2", + value = "ld_stratholme_tent01.m2", + }, + { + fileId = "196455", + text = "ld_stratholme_tent02.m2", + value = "ld_stratholme_tent02.m2", + }, + { + fileId = "196456", + text = "ld_stratholme_tent03.m2", + value = "ld_stratholme_tent03.m2", + }, + { + fileId = "196457", + text = "ld_stratholme_tent04.m2", + value = "ld_stratholme_tent04.m2", + }, + { + fileId = "196458", + text = "ld_stratholme_tent05.m2", + value = "ld_stratholme_tent05.m2", + }, + { + fileId = "196459", + text = "ld_stratholme_tent06.m2", + value = "ld_stratholme_tent06.m2", + }, + { + fileId = "196460", + text = "ld_stratholmestreetlamp01.m2", + value = "ld_stratholmestreetlamp01.m2", + }, + }, + text = "stratholme_past", + value = "stratholme_past", + }, + { + children = { + { + children = { + { + fileId = "196463", + text = "ts_fishinghook_01.m2", + value = "ts_fishinghook_01.m2", + }, + { + fileId = "196464", + text = "ts_fishingpet_01.m2", + value = "ts_fishingpet_01.m2", + }, + }, + text = "fishingstuff", + value = "fishingstuff", + }, + { + children = { + { + fileId = "196466", + text = "ts_teapot_01.m2", + value = "ts_teapot_01.m2", + }, + }, + text = "misc", + value = "misc", + }, + }, + text = "tuskar", + value = "tuskar", + }, + { + children = { + { + fileId = "255203", + text = "ti_weathergenerator_blue.m2", + value = "ti_weathergenerator_blue.m2", + }, + { + fileId = "255204", + text = "ti_weathergenerator_green.m2", + value = "ti_weathergenerator_green.m2", + }, + { + fileId = "255207", + text = "ti_weathergenerator_red.m2", + value = "ti_weathergenerator_red.m2", + }, + { + fileId = "255123", + text = "ti_weathergenerator_yellow.m2", + value = "ti_weathergenerator_yellow.m2", + }, + { + fileId = "243946", + text = "ul_anvil.m2", + value = "ul_anvil.m2", + }, + { + fileId = "243948", + text = "ul_aquarium_window.m2", + value = "ul_aquarium_window.m2", + }, + { + fileId = "243950", + text = "ul_banister01.m2", + value = "ul_banister01.m2", + }, + { + fileId = "253676", + text = "ul_brain_01.m2", + value = "ul_brain_01.m2", + }, + { + fileId = "251822", + text = "ul_brainparts_01.m2", + value = "ul_brainparts_01.m2", + }, + { + fileId = "251823", + text = "ul_brainparts_02.m2", + value = "ul_brainparts_02.m2", + }, + { + fileId = "254627", + text = "ul_brainroomdoor_01.m2", + value = "ul_brainroomdoor_01.m2", + }, + { + fileId = "196475", + text = "ul_brazier01.m2", + value = "ul_brazier01.m2", + }, + { + fileId = "250176", + text = "ul_brazier_broken.m2", + value = "ul_brazier_broken.m2", + }, + { + fileId = "250177", + text = "ul_brazier_broken_02.m2", + value = "ul_brazier_broken_02.m2", + }, + { + fileId = "250903", + text = "ul_bridge01.m2", + value = "ul_bridge01.m2", + }, + { + fileId = "243957", + text = "ul_button_control_unit.m2", + value = "ul_button_control_unit.m2", + }, + { + fileId = "243958", + text = "ul_button_control_unit02.m2", + value = "ul_button_control_unit02.m2", + }, + { + fileId = "251926", + text = "ul_chains_01.m2", + value = "ul_chains_01.m2", + }, + { + fileId = "254457", + text = "ul_chains_02.m2", + value = "ul_chains_02.m2", + }, + { + fileId = "254458", + text = "ul_chains_03.m2", + value = "ul_chains_03.m2", + }, + { + fileId = "254459", + text = "ul_chains_04.m2", + value = "ul_chains_04.m2", + }, + { + fileId = "254460", + text = "ul_chains_05.m2", + value = "ul_chains_05.m2", + }, + { + fileId = "196476", + text = "ul_chandelier.m2", + value = "ul_chandelier.m2", + }, + { + fileId = "249610", + text = "ul_chandelier02.m2", + value = "ul_chandelier02.m2", + }, + { + fileId = "250179", + text = "ul_chandelier_effects01.m2", + value = "ul_chandelier_effects01.m2", + }, + { + fileId = "253432", + text = "ul_chest_cosmic.m2", + value = "ul_chest_cosmic.m2", + }, + { + fileId = "253436", + text = "ul_chest_gears.m2", + value = "ul_chest_gears.m2", + }, + { + fileId = "253441", + text = "ul_chest_ice.m2", + value = "ul_chest_ice.m2", + }, + { + fileId = "253337", + text = "ul_chest_leaf.m2", + value = "ul_chest_leaf.m2", + }, + { + fileId = "253430", + text = "ul_chest_lightning.m2", + value = "ul_chest_lightning.m2", + }, + { + fileId = "253445", + text = "ul_chest_plain.m2", + value = "ul_chest_plain.m2", + }, + { + fileId = "196480", + text = "ul_crystal_light01.m2", + value = "ul_crystal_light01.m2", + }, + { + fileId = "243959", + text = "ul_crystal_light01_broken.m2", + value = "ul_crystal_light01_broken.m2", + }, + { + fileId = "196481", + text = "ul_crystal_light02.m2", + value = "ul_crystal_light02.m2", + }, + { + fileId = "243961", + text = "ul_dataroom_heads_01.m2", + value = "ul_dataroom_heads_01.m2", + }, + { + fileId = "252942", + text = "ul_destructible_gate01.m2", + value = "ul_destructible_gate01.m2", + }, + { + fileId = "249612", + text = "ul_dirty_glass_01.m2", + value = "ul_dirty_glass_01.m2", + }, + { + fileId = "249613", + text = "ul_dirty_glass_02.m2", + value = "ul_dirty_glass_02.m2", + }, + { + fileId = "249614", + text = "ul_dirty_glass_03.m2", + value = "ul_dirty_glass_03.m2", + }, + { + fileId = "249615", + text = "ul_dirty_glass_04.m2", + value = "ul_dirty_glass_04.m2", + }, + { + fileId = "249616", + text = "ul_dirty_glass_05.m2", + value = "ul_dirty_glass_05.m2", + }, + { + fileId = "243964", + text = "ul_drapery01.m2", + value = "ul_drapery01.m2", + }, + { + fileId = "243966", + text = "ul_drapery02.m2", + value = "ul_drapery02.m2", + }, + { + fileId = "196488", + text = "ul_face_rotate.m2", + value = "ul_face_rotate.m2", + }, + { + fileId = "250904", + text = "ul_floating_glass01.m2", + value = "ul_floating_glass01.m2", + }, + { + fileId = "250905", + text = "ul_floating_glass02.m2", + value = "ul_floating_glass02.m2", + }, + { + fileId = "196490", + text = "ul_floor01.m2", + value = "ul_floor01.m2", + }, + { + fileId = "243970", + text = "ul_floor01_blue.m2", + value = "ul_floor01_blue.m2", + }, + { + fileId = "243974", + text = "ul_forge_iron_press.m2", + value = "ul_forge_iron_press.m2", + }, + { + fileId = "243975", + text = "ul_forge_lava.m2", + value = "ul_forge_lava.m2", + }, + { + fileId = "253162", + text = "ul_fountain_01.m2", + value = "ul_fountain_01.m2", + }, + { + fileId = "249623", + text = "ul_frostwall_01.m2", + value = "ul_frostwall_01.m2", + }, + { + fileId = "252293", + text = "ul_garbage_bits.m2", + value = "ul_garbage_bits.m2", + }, + { + fileId = "252294", + text = "ul_garbage_bits2.m2", + value = "ul_garbage_bits2.m2", + }, + { + fileId = "252295", + text = "ul_garbage_bits3.m2", + value = "ul_garbage_bits3.m2", + }, + { + fileId = "252296", + text = "ul_garbage_bits4.m2", + value = "ul_garbage_bits4.m2", + }, + { + fileId = "252297", + text = "ul_garbage_bits5.m2", + value = "ul_garbage_bits5.m2", + }, + { + fileId = "252298", + text = "ul_garbage_bits6.m2", + value = "ul_garbage_bits6.m2", + }, + { + fileId = "252142", + text = "ul_garbage_pile.m2", + value = "ul_garbage_pile.m2", + }, + { + fileId = "250908", + text = "ul_gnome_machine_01.m2", + value = "ul_gnome_machine_01.m2", + }, + { + fileId = "250909", + text = "ul_gnome_machine_02.m2", + value = "ul_gnome_machine_02.m2", + }, + { + fileId = "250910", + text = "ul_gnome_machine_03.m2", + value = "ul_gnome_machine_03.m2", + }, + { + fileId = "250911", + text = "ul_gnome_machine_04.m2", + value = "ul_gnome_machine_04.m2", + }, + { + fileId = "250912", + text = "ul_gnome_machine_05.m2", + value = "ul_gnome_machine_05.m2", + }, + { + fileId = "252122", + text = "ul_gnomewing_armpulse.m2", + value = "ul_gnomewing_armpulse.m2", + }, + { + fileId = "251641", + text = "ul_gnomewing_buttonbigred.m2", + value = "ul_gnomewing_buttonbigred.m2", + }, + { + fileId = "294031", + text = "ul_gnomewing_door_01.m2", + value = "ul_gnomewing_door_01.m2", + }, + { + fileId = "255342", + text = "ul_gnomewing_lightbeam.m2", + value = "ul_gnomewing_lightbeam.m2", + }, + { + fileId = "250004", + text = "ul_gnomewing_lighttower.m2", + value = "ul_gnomewing_lighttower.m2", + }, + { + fileId = "249630", + text = "ul_gnomewing_spinningroomrings.m2", + value = "ul_gnomewing_spinningroomrings.m2", + }, + { + fileId = "251482", + text = "ul_gnomewing_teleportpad.m2", + value = "ul_gnomewing_teleportpad.m2", + }, + { + fileId = "252266", + text = "ul_gnomewing_torsoelevator.m2", + value = "ul_gnomewing_torsoelevator.m2", + }, + { + fileId = "250180", + text = "ul_gnomewing_walkway.m2", + value = "ul_gnomewing_walkway.m2", + }, + { + fileId = "196498", + text = "ul_head_female01.m2", + value = "ul_head_female01.m2", + }, + { + fileId = "196499", + text = "ul_head_female02.m2", + value = "ul_head_female02.m2", + }, + { + fileId = "196500", + text = "ul_head_male01.m2", + value = "ul_head_male01.m2", + }, + { + fileId = "196504", + text = "ul_hexagon_floor.m2", + value = "ul_hexagon_floor.m2", + }, + { + fileId = "252274", + text = "ul_hubprison_01.m2", + value = "ul_hubprison_01.m2", + }, + { + fileId = "249633", + text = "ul_iceplatform_01.m2", + value = "ul_iceplatform_01.m2", + }, + { + fileId = "196506", + text = "ul_icewall_01.m2", + value = "ul_icewall_01.m2", + }, + { + fileId = "196507", + text = "ul_icewall_02.m2", + value = "ul_icewall_02.m2", + }, + { + fileId = "196508", + text = "ul_icewall_03.m2", + value = "ul_icewall_03.m2", + }, + { + fileId = "196509", + text = "ul_icewall_04.m2", + value = "ul_icewall_04.m2", + }, + { + fileId = "196510", + text = "ul_icewall_05.m2", + value = "ul_icewall_05.m2", + }, + { + fileId = "196511", + text = "ul_icewall_06.m2", + value = "ul_icewall_06.m2", + }, + { + fileId = "254855", + text = "ul_icewall_07.m2", + value = "ul_icewall_07.m2", + }, + { + fileId = "243980", + text = "ul_iron_vrykul_chest.m2", + value = "ul_iron_vrykul_chest.m2", + }, + { + fileId = "243981", + text = "ul_iron_vrykul_head.m2", + value = "ul_iron_vrykul_head.m2", + }, + { + fileId = "243982", + text = "ul_iron_vrykul_left_arm.m2", + value = "ul_iron_vrykul_left_arm.m2", + }, + { + fileId = "243983", + text = "ul_iron_vrykul_left_leg.m2", + value = "ul_iron_vrykul_left_leg.m2", + }, + { + fileId = "243984", + text = "ul_iron_vrykul_right_boot.m2", + value = "ul_iron_vrykul_right_boot.m2", + }, + { + fileId = "243985", + text = "ul_iron_vrykul_right_hand.m2", + value = "ul_iron_vrykul_right_hand.m2", + }, + { + fileId = "243986", + text = "ul_iron_vrykul_right_shoulder.m2", + value = "ul_iron_vrykul_right_shoulder.m2", + }, + { + fileId = "243987", + text = "ul_iron_vrykul_waist.m2", + value = "ul_iron_vrykul_waist.m2", + }, + { + fileId = "243988", + text = "ul_ironvrykularmy_eight01.m2", + value = "ul_ironvrykularmy_eight01.m2", + }, + { + fileId = "243989", + text = "ul_ironvrykularmy_four01.m2", + value = "ul_ironvrykularmy_four01.m2", + }, + { + fileId = "243990", + text = "ul_ironvrykularmy_single01.m2", + value = "ul_ironvrykularmy_single01.m2", + }, + { + fileId = "243995", + text = "ul_lavamouth_01.m2", + value = "ul_lavamouth_01.m2", + }, + { + fileId = "250006", + text = "ul_light_effect_blue.m2", + value = "ul_light_effect_blue.m2", + }, + { + fileId = "250007", + text = "ul_light_effect_green.m2", + value = "ul_light_effect_green.m2", + }, + { + fileId = "250008", + text = "ul_light_effect_purple.m2", + value = "ul_light_effect_purple.m2", + }, + { + fileId = "298584", + text = "ul_light_effect_saronite_towers.m2", + value = "ul_light_effect_saronite_towers.m2", + }, + { + fileId = "250009", + text = "ul_light_effect_yellow.m2", + value = "ul_light_effect_yellow.m2", + }, + { + fileId = "251702", + text = "ul_lighting_door01.m2", + value = "ul_lighting_door01.m2", + }, + { + fileId = "251982", + text = "ul_lighting_door02.m2", + value = "ul_lighting_door02.m2", + }, + { + fileId = "303953", + text = "ul_lighting_door02_pillars.m2", + value = "ul_lighting_door02_pillars.m2", + }, + { + fileId = "298623", + text = "ul_lighting_door03.m2", + value = "ul_lighting_door03.m2", + }, + { + fileId = "303846", + text = "ul_lighting_door03_pillars.m2", + value = "ul_lighting_door03_pillars.m2", + }, + { + fileId = "196514", + text = "ul_lightning.m2", + value = "ul_lightning.m2", + }, + { + fileId = "196517", + text = "ul_lightning02.m2", + value = "ul_lightning02.m2", + }, + { + fileId = "196518", + text = "ul_lightning_blue01.m2", + value = "ul_lightning_blue01.m2", + }, + { + fileId = "196519", + text = "ul_lightning_tunnel.m2", + value = "ul_lightning_tunnel.m2", + }, + { + fileId = "249636", + text = "ul_machine_tramring_02.m2", + value = "ul_machine_tramring_02.m2", + }, + { + fileId = "243999", + text = "ul_mountaingiantcrystal.m2", + value = "ul_mountaingiantcrystal.m2", + }, + { + fileId = "196525", + text = "ul_orb_01.m2", + value = "ul_orb_01.m2", + }, + { + fileId = "196533", + text = "ul_planet_02.m2", + value = "ul_planet_02.m2", + }, + { + fileId = "196534", + text = "ul_planet_03.m2", + value = "ul_planet_03.m2", + }, + { + fileId = "196535", + text = "ul_planet_04.m2", + value = "ul_planet_04.m2", + }, + { + fileId = "196536", + text = "ul_planet_05.m2", + value = "ul_planet_05.m2", + }, + { + fileId = "196537", + text = "ul_planet_06.m2", + value = "ul_planet_06.m2", + }, + { + fileId = "196538", + text = "ul_planet_07.m2", + value = "ul_planet_07.m2", + }, + { + fileId = "250918", + text = "ul_planet_08.m2", + value = "ul_planet_08.m2", + }, + { + fileId = "196539", + text = "ul_planet_azeroth.m2", + value = "ul_planet_azeroth.m2", + }, + { + fileId = "196540", + text = "ul_planet_azeroth_nobase.m2", + value = "ul_planet_azeroth_nobase.m2", + }, + { + fileId = "254856", + text = "ul_portal_blue.m2", + value = "ul_portal_blue.m2", + }, + { + fileId = "196543", + text = "ul_pot01.m2", + value = "ul_pot01.m2", + }, + { + fileId = "196544", + text = "ul_pot02.m2", + value = "ul_pot02.m2", + }, + { + fileId = "196545", + text = "ul_pot03.m2", + value = "ul_pot03.m2", + }, + { + fileId = "196548", + text = "ul_power_orb01.m2", + value = "ul_power_orb01.m2", + }, + { + fileId = "196549", + text = "ul_power_orb02.m2", + value = "ul_power_orb02.m2", + }, + { + fileId = "252832", + text = "ul_pyritefuelcell.m2", + value = "ul_pyritefuelcell.m2", + }, + { + fileId = "252833", + text = "ul_pyritefuelcelllarge.m2", + value = "ul_pyritefuelcelllarge.m2", + }, + { + fileId = "244001", + text = "ul_raidprison_floor.m2", + value = "ul_raidprison_floor.m2", + }, + { + fileId = "244002", + text = "ul_raidtemplefloor_01.m2", + value = "ul_raidtemplefloor_01.m2", + }, + { + fileId = "250919", + text = "ul_rune_floorcircle.m2", + value = "ul_rune_floorcircle.m2", + }, + { + fileId = "253377", + text = "ul_saronitepool_01.m2", + value = "ul_saronitepool_01.m2", + }, + { + fileId = "244003", + text = "ul_sigil01.m2", + value = "ul_sigil01.m2", + }, + { + fileId = "244004", + text = "ul_sigil02.m2", + value = "ul_sigil02.m2", + }, + { + fileId = "244005", + text = "ul_sigil03.m2", + value = "ul_sigil03.m2", + }, + { + fileId = "244006", + text = "ul_sigil04.m2", + value = "ul_sigil04.m2", + }, + { + fileId = "244007", + text = "ul_sigil05.m2", + value = "ul_sigil05.m2", + }, + { + fileId = "298603", + text = "ul_sigil_gear.m2", + value = "ul_sigil_gear.m2", + }, + { + fileId = "298604", + text = "ul_sigil_leaf.m2", + value = "ul_sigil_leaf.m2", + }, + { + fileId = "298605", + text = "ul_sigil_lightning.m2", + value = "ul_sigil_lightning.m2", + }, + { + fileId = "298606", + text = "ul_sigil_snowflake.m2", + value = "ul_sigil_snowflake.m2", + }, + { + fileId = "298607", + text = "ul_sigil_star.m2", + value = "ul_sigil_star.m2", + }, + { + fileId = "252720", + text = "ul_sigildoor_01.m2", + value = "ul_sigildoor_01.m2", + }, + { + fileId = "294442", + text = "ul_sigildoor_02.m2", + value = "ul_sigildoor_02.m2", + }, + { + fileId = "244009", + text = "ul_sky_ceiling.m2", + value = "ul_sky_ceiling.m2", + }, + { + fileId = "196555", + text = "ul_skyroom_floor.m2", + value = "ul_skyroom_floor.m2", + }, + { + fileId = "244011", + text = "ul_smallstatue_druid.m2", + value = "ul_smallstatue_druid.m2", + }, + { + fileId = "244012", + text = "ul_smallstatue_hero_01.m2", + value = "ul_smallstatue_hero_01.m2", + }, + { + fileId = "252168", + text = "ul_stainglass_broken01.m2", + value = "ul_stainglass_broken01.m2", + }, + { + fileId = "252169", + text = "ul_stainglass_broken02.m2", + value = "ul_stainglass_broken02.m2", + }, + { + fileId = "252170", + text = "ul_stainglass_broken03.m2", + value = "ul_stainglass_broken03.m2", + }, + { + fileId = "249645", + text = "ul_stalagtit_01.m2", + value = "ul_stalagtit_01.m2", + }, + { + fileId = "196556", + text = "ul_statue_01.m2", + value = "ul_statue_01.m2", + }, + { + fileId = "244018", + text = "ul_statue_02.m2", + value = "ul_statue_02.m2", + }, + { + fileId = "244019", + text = "ul_statue_03.m2", + value = "ul_statue_03.m2", + }, + { + fileId = "244020", + text = "ul_statue_04.m2", + value = "ul_statue_04.m2", + }, + { + fileId = "196560", + text = "ul_swirl_orb_cloud.m2", + value = "ul_swirl_orb_cloud.m2", + }, + { + fileId = "255125", + text = "ul_targetcrystal_blue.m2", + value = "ul_targetcrystal_blue.m2", + }, + { + fileId = "255208", + text = "ul_targetcrystal_green.m2", + value = "ul_targetcrystal_green.m2", + }, + { + fileId = "255209", + text = "ul_targetcrystal_red.m2", + value = "ul_targetcrystal_red.m2", + }, + { + fileId = "255210", + text = "ul_targetcrystal_yellow.m2", + value = "ul_targetcrystal_yellow.m2", + }, + { + fileId = "252934", + text = "ul_teleportationpad.m2", + value = "ul_teleportationpad.m2", + }, + { + fileId = "244022", + text = "ul_throne.m2", + value = "ul_throne.m2", + }, + { + fileId = "244023", + text = "ul_throne_02.m2", + value = "ul_throne_02.m2", + }, + { + fileId = "244024", + text = "ul_throne_room_floor.m2", + value = "ul_throne_room_floor.m2", + }, + { + fileId = "244025", + text = "ul_thronebase.m2", + value = "ul_thronebase.m2", + }, + { + fileId = "196561", + text = "ul_titanball_01.m2", + value = "ul_titanball_01.m2", + }, + { + fileId = "196564", + text = "ul_titanenergy_02.m2", + value = "ul_titanenergy_02.m2", + }, + { + fileId = "196569", + text = "ul_titansteam_01.m2", + value = "ul_titansteam_01.m2", + }, + { + fileId = "252292", + text = "ul_titansteam_02.m2", + value = "ul_titansteam_02.m2", + }, + { + fileId = "196570", + text = "ul_torch01.m2", + value = "ul_torch01.m2", + }, + { + fileId = "252022", + text = "ul_torch02.m2", + value = "ul_torch02.m2", + }, + { + fileId = "252171", + text = "ul_towerbluebeam.m2", + value = "ul_towerbluebeam.m2", + }, + { + fileId = "255409", + text = "ul_train_floor_glass.m2", + value = "ul_train_floor_glass.m2", + }, + { + fileId = "255425", + text = "ul_train_gearwindows.m2", + value = "ul_train_gearwindows.m2", + }, + { + fileId = "293985", + text = "ul_train_rocketblast.m2", + value = "ul_train_rocketblast.m2", + }, + { + fileId = "254644", + text = "ul_train_turnaround.m2", + value = "ul_train_turnaround.m2", + }, + { + fileId = "254564", + text = "ul_tramglass_01.m2", + value = "ul_tramglass_01.m2", + }, + { + fileId = "196574", + text = "ul_ulduar_doors01.m2", + value = "ul_ulduar_doors01.m2", + }, + { + fileId = "196575", + text = "ul_ulduar_doors02.m2", + value = "ul_ulduar_doors02.m2", + }, + { + fileId = "249654", + text = "ul_ulduar_doors03.m2", + value = "ul_ulduar_doors03.m2", + }, + { + fileId = "249655", + text = "ul_ulduar_doors04.m2", + value = "ul_ulduar_doors04.m2", + }, + { + fileId = "249656", + text = "ul_ulduar_doors05.m2", + value = "ul_ulduar_doors05.m2", + }, + { + fileId = "244028", + text = "ul_ulduar_trapdoor_01.m2", + value = "ul_ulduar_trapdoor_01.m2", + }, + { + fileId = "244029", + text = "ul_ulduar_trapdoor_02.m2", + value = "ul_ulduar_trapdoor_02.m2", + }, + { + fileId = "244030", + text = "ul_universefloor_01.m2", + value = "ul_universefloor_01.m2", + }, + { + fileId = "251842", + text = "ul_universefloor_02.m2", + value = "ul_universefloor_02.m2", + }, + { + fileId = "244031", + text = "ul_universeglobe.m2", + value = "ul_universeglobe.m2", + }, + { + fileId = "252913", + text = "ul_vehiclerepairbay_01.m2", + value = "ul_vehiclerepairbay_01.m2", + }, + { + fileId = "244032", + text = "ul_war_machine01.m2", + value = "ul_war_machine01.m2", + }, + { + fileId = "244033", + text = "ul_war_machine_pipe.m2", + value = "ul_war_machine_pipe.m2", + }, + { + fileId = "244034", + text = "ul_window.m2", + value = "ul_window.m2", + }, + { + fileId = "250921", + text = "ulduar_arch01dfx.m2", + value = "ulduar_arch01dfx.m2", + }, + { + fileId = "250922", + text = "ulduar_arch02dfx.m2", + value = "ulduar_arch02dfx.m2", + }, + { + fileId = "250923", + text = "ulduar_building01dfx.m2", + value = "ulduar_building01dfx.m2", + }, + { + fileId = "254582", + text = "ulduar_tower01_fx1.m2", + value = "ulduar_tower01_fx1.m2", + }, + { + fileId = "254626", + text = "ulduar_tower01_fx2.m2", + value = "ulduar_tower01_fx2.m2", + }, + { + fileId = "254642", + text = "ulduar_tower01_fx2b.m2", + value = "ulduar_tower01_fx2b.m2", + }, + { + fileId = "250924", + text = "ulduarraid_gnomewing_transport_doodad.m2", + value = "ulduarraid_gnomewing_transport_doodad.m2", + }, + }, + text = "ulduar", + value = "ulduar", + }, + { + children = { + { + children = { + { + fileId = "196582", + text = "valgarde_fire.m2", + value = "valgarde_fire.m2", + }, + }, + text = "valgrade_fire", + value = "valgrade_fire", + }, + }, + text = "valgrade", + value = "valgrade", + }, + { + children = { + { + fileId = "249941", + text = "wg_keep_door01_collision.m2", + value = "wg_keep_door01_collision.m2", + }, + }, + text = "wintergrasp", + value = "wintergrasp", + }, + { + children = { + { + fileId = "196584", + text = "wt_basket_01.m2", + value = "wt_basket_01.m2", + }, + { + fileId = "196585", + text = "wt_basket_02.m2", + value = "wt_basket_02.m2", + }, + { + fileId = "196586", + text = "wt_basket_03.m2", + value = "wt_basket_03.m2", + }, + { + fileId = "196589", + text = "wt_bench_01.m2", + value = "wt_bench_01.m2", + }, + { + fileId = "196590", + text = "wt_brazier_lit.m2", + value = "wt_brazier_lit.m2", + }, + { + fileId = "196591", + text = "wt_brazier_unlit.m2", + value = "wt_brazier_unlit.m2", + }, + { + fileId = "196592", + text = "wt_chair_01.m2", + value = "wt_chair_01.m2", + }, + { + fileId = "196593", + text = "wt_hanging_01.m2", + value = "wt_hanging_01.m2", + }, + { + fileId = "196594", + text = "wt_hanging_02.m2", + value = "wt_hanging_02.m2", + }, + { + fileId = "196595", + text = "wt_hanging_03.m2", + value = "wt_hanging_03.m2", + }, + { + fileId = "196596", + text = "wt_hanging_04.m2", + value = "wt_hanging_04.m2", + }, + { + fileId = "196598", + text = "wt_hangingscroll_01.m2", + value = "wt_hangingscroll_01.m2", + }, + { + fileId = "196599", + text = "wt_hangingscroll_02.m2", + value = "wt_hangingscroll_02.m2", + }, + { + fileId = "196600", + text = "wt_hangingscroll_03.m2", + value = "wt_hangingscroll_03.m2", + }, + { + fileId = "196601", + text = "wt_hangingscroll_04.m2", + value = "wt_hangingscroll_04.m2", + }, + { + fileId = "196602", + text = "wt_hangingscroll_05.m2", + value = "wt_hangingscroll_05.m2", + }, + { + fileId = "196603", + text = "wt_hangingscroll_06.m2", + value = "wt_hangingscroll_06.m2", + }, + { + fileId = "196604", + text = "wt_lamppost01.m2", + value = "wt_lamppost01.m2", + }, + { + fileId = "196605", + text = "wt_lamppost01_wreckeda.m2", + value = "wt_lamppost01_wreckeda.m2", + }, + { + fileId = "196606", + text = "wt_lamppost01_wreckedb.m2", + value = "wt_lamppost01_wreckedb.m2", + }, + { + fileId = "196607", + text = "wt_lamppost01_wreckedc.m2", + value = "wt_lamppost01_wreckedc.m2", + }, + { + fileId = "196610", + text = "wt_lantern01.m2", + value = "wt_lantern01.m2", + }, + { + fileId = "196611", + text = "wt_lanternhanging01.m2", + value = "wt_lanternhanging01.m2", + }, + { + fileId = "196615", + text = "wt_mummy01.m2", + value = "wt_mummy01.m2", + }, + { + fileId = "196616", + text = "wt_pyre01.m2", + value = "wt_pyre01.m2", + }, + { + fileId = "196617", + text = "wt_pyre02.m2", + value = "wt_pyre02.m2", + }, + { + fileId = "196619", + text = "wt_roadsign.m2", + value = "wt_roadsign.m2", + }, + { + fileId = "196620", + text = "wt_roadsign_post.m2", + value = "wt_roadsign_post.m2", + }, + { + fileId = "196621", + text = "wt_rug_01.m2", + value = "wt_rug_01.m2", + }, + { + fileId = "196622", + text = "wt_rug_02.m2", + value = "wt_rug_02.m2", + }, + { + fileId = "196623", + text = "wt_rug_03.m2", + value = "wt_rug_03.m2", + }, + { + fileId = "196624", + text = "wt_rug_04.m2", + value = "wt_rug_04.m2", + }, + { + fileId = "196626", + text = "wt_scroll_01.m2", + value = "wt_scroll_01.m2", + }, + { + fileId = "196627", + text = "wt_scroll_02.m2", + value = "wt_scroll_02.m2", + }, + { + fileId = "196630", + text = "wt_sled_01.m2", + value = "wt_sled_01.m2", + }, + { + fileId = "196631", + text = "wt_sled_01packed.m2", + value = "wt_sled_01packed.m2", + }, + { + fileId = "196632", + text = "wt_sled_01packed_wreckeda.m2", + value = "wt_sled_01packed_wreckeda.m2", + }, + { + fileId = "196633", + text = "wt_sled_01packed_wreckedb.m2", + value = "wt_sled_01packed_wreckedb.m2", + }, + { + fileId = "196634", + text = "wt_sled_02.m2", + value = "wt_sled_02.m2", + }, + { + fileId = "196635", + text = "wt_sled_02_wreckeda.m2", + value = "wt_sled_02_wreckeda.m2", + }, + { + fileId = "196636", + text = "wt_sled_02packed.m2", + value = "wt_sled_02packed.m2", + }, + { + fileId = "196637", + text = "wt_standard_01.m2", + value = "wt_standard_01.m2", + }, + { + fileId = "196638", + text = "wt_tent01.m2", + value = "wt_tent01.m2", + }, + { + fileId = "196639", + text = "wt_tent01_wreckeda.m2", + value = "wt_tent01_wreckeda.m2", + }, + { + fileId = "196640", + text = "wt_tent01_wreckedb.m2", + value = "wt_tent01_wreckedb.m2", + }, + { + fileId = "196641", + text = "wt_tent02.m2", + value = "wt_tent02.m2", + }, + { + fileId = "196642", + text = "wt_tent03.m2", + value = "wt_tent03.m2", + }, + { + fileId = "196645", + text = "wt_totem01.m2", + value = "wt_totem01.m2", + }, + { + fileId = "196646", + text = "wt_totem01snow.m2", + value = "wt_totem01snow.m2", + }, + { + fileId = "196647", + text = "wt_totem02.m2", + value = "wt_totem02.m2", + }, + { + fileId = "196648", + text = "wt_totem02snow.m2", + value = "wt_totem02snow.m2", + }, + { + fileId = "196650", + text = "wt_windbreak01.m2", + value = "wt_windbreak01.m2", + }, + { + fileId = "196652", + text = "wt_windbreak01_wreckeda.m2", + value = "wt_windbreak01_wreckeda.m2", + }, + { + fileId = "196654", + text = "wt_windbreak01_wreckedb.m2", + value = "wt_windbreak01_wreckedb.m2", + }, + { + fileId = "196655", + text = "wt_windbreak02.m2", + value = "wt_windbreak02.m2", + }, + }, + text = "wintertauren", + value = "wintertauren", + }, + { + children = { + { + children = { + { + fileId = "244038", + text = "zuldrak_aqueduct_01.m2", + value = "zuldrak_aqueduct_01.m2", + }, + { + fileId = "244039", + text = "zuldrak_aqueduct_02.m2", + value = "zuldrak_aqueduct_02.m2", + }, + { + fileId = "244040", + text = "zuldrak_aqueduct_03.m2", + value = "zuldrak_aqueduct_03.m2", + }, + }, + text = "aqueduct", + value = "aqueduct", + }, + { + children = { + { + fileId = "244044", + text = "gundrak_coffin_01.m2", + value = "gundrak_coffin_01.m2", + }, + { + fileId = "244045", + text = "gundrak_collision_01.m2", + value = "gundrak_collision_01.m2", + }, + { + fileId = "244046", + text = "gundrak_collision_02.m2", + value = "gundrak_collision_02.m2", + }, + { + fileId = "244047", + text = "gundrak_key_mammoth.m2", + value = "gundrak_key_mammoth.m2", + }, + { + fileId = "244048", + text = "gundrak_key_rhino.m2", + value = "gundrak_key_rhino.m2", + }, + { + fileId = "244049", + text = "gundrak_key_snake.m2", + value = "gundrak_key_snake.m2", + }, + { + fileId = "244050", + text = "gundrak_key_troll.m2", + value = "gundrak_key_troll.m2", + }, + { + fileId = "244051", + text = "gundrak_snake.m2", + value = "gundrak_snake.m2", + }, + { + fileId = "196661", + text = "gundrakcrystal_01.m2", + value = "gundrakcrystal_01.m2", + }, + { + children = { + { + fileId = "196666", + text = "zuldrak_trollfountainhead_01.m2", + value = "zuldrak_trollfountainhead_01.m2", + }, + { + fileId = "196671", + text = "zuldrakwaterdrip_01.m2", + value = "zuldrakwaterdrip_01.m2", + }, + { + fileId = "196672", + text = "zuldrakwatersteps_01.m2", + value = "zuldrakwatersteps_01.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + { + fileId = "244053", + text = "zuldrak_alter.m2", + value = "zuldrak_alter.m2", + }, + { + fileId = "196673", + text = "zuldrak_banner_01.m2", + value = "zuldrak_banner_01.m2", + }, + { + fileId = "196674", + text = "zuldrak_banner_02.m2", + value = "zuldrak_banner_02.m2", + }, + { + fileId = "196675", + text = "zuldrak_banner_03.m2", + value = "zuldrak_banner_03.m2", + }, + { + fileId = "196677", + text = "zuldrak_bats_lower_01.m2", + value = "zuldrak_bats_lower_01.m2", + }, + { + fileId = "196678", + text = "zuldrak_brazier_01.m2", + value = "zuldrak_brazier_01.m2", + }, + { + fileId = "244054", + text = "zuldrak_burninglog_01.m2", + value = "zuldrak_burninglog_01.m2", + }, + { + fileId = "196679", + text = "zuldrak_crystal_01.m2", + value = "zuldrak_crystal_01.m2", + }, + { + fileId = "196680", + text = "zuldrak_flag_01.m2", + value = "zuldrak_flag_01.m2", + }, + { + fileId = "196681", + text = "zuldrak_flag_02.m2", + value = "zuldrak_flag_02.m2", + }, + { + fileId = "196682", + text = "zuldrak_floating_light_01.m2", + value = "zuldrak_floating_light_01.m2", + }, + { + fileId = "196686", + text = "zuldrak_gem_blue_01.m2", + value = "zuldrak_gem_blue_01.m2", + }, + { + fileId = "196687", + text = "zuldrak_gem_green_01.m2", + value = "zuldrak_gem_green_01.m2", + }, + { + fileId = "196688", + text = "zuldrak_gem_green_02.m2", + value = "zuldrak_gem_green_02.m2", + }, + { + fileId = "196689", + text = "zuldrak_gem_purple_01.m2", + value = "zuldrak_gem_purple_01.m2", + }, + { + fileId = "196690", + text = "zuldrak_gem_white_01.m2", + value = "zuldrak_gem_white_01.m2", + }, + { + fileId = "196692", + text = "zuldrak_hanging_light_01.m2", + value = "zuldrak_hanging_light_01.m2", + }, + { + fileId = "196693", + text = "zuldrak_hanging_light_02.m2", + value = "zuldrak_hanging_light_02.m2", + }, + { + fileId = "196694", + text = "zuldrak_hangingskulls_01.m2", + value = "zuldrak_hangingskulls_01.m2", + }, + { + fileId = "244056", + text = "zuldrak_hangingskulls_02.m2", + value = "zuldrak_hangingskulls_02.m2", + }, + { + fileId = "244057", + text = "zuldrak_hangingskulls_03.m2", + value = "zuldrak_hangingskulls_03.m2", + }, + { + fileId = "244059", + text = "zuldrak_heart_01.m2", + value = "zuldrak_heart_01.m2", + }, + { + fileId = "244061", + text = "zuldrak_lever.m2", + value = "zuldrak_lever.m2", + }, + { + fileId = "196696", + text = "zuldrak_pile_01.m2", + value = "zuldrak_pile_01.m2", + }, + { + fileId = "196697", + text = "zuldrak_pile_02.m2", + value = "zuldrak_pile_02.m2", + }, + { + fileId = "196698", + text = "zuldrak_pile_03.m2", + value = "zuldrak_pile_03.m2", + }, + { + fileId = "244062", + text = "zuldrak_red_gem_01.m2", + value = "zuldrak_red_gem_01.m2", + }, + { + fileId = "196700", + text = "zuldrak_ropes_01.m2", + value = "zuldrak_ropes_01.m2", + }, + { + fileId = "196701", + text = "zuldrak_ropes_02.m2", + value = "zuldrak_ropes_02.m2", + }, + { + fileId = "196702", + text = "zuldrak_ropes_03.m2", + value = "zuldrak_ropes_03.m2", + }, + { + fileId = "196703", + text = "zuldrak_ropes_04.m2", + value = "zuldrak_ropes_04.m2", + }, + { + fileId = "244063", + text = "zuldrak_ropes_05.m2", + value = "zuldrak_ropes_05.m2", + }, + { + fileId = "244064", + text = "zuldrak_ropes_06.m2", + value = "zuldrak_ropes_06.m2", + }, + { + fileId = "196704", + text = "zuldrak_shield_01.m2", + value = "zuldrak_shield_01.m2", + }, + { + fileId = "196705", + text = "zuldrak_shield_02.m2", + value = "zuldrak_shield_02.m2", + }, + { + fileId = "196706", + text = "zuldrak_skullpile_01.m2", + value = "zuldrak_skullpile_01.m2", + }, + { + fileId = "196707", + text = "zuldrak_skullpile_02.m2", + value = "zuldrak_skullpile_02.m2", + }, + { + fileId = "196708", + text = "zuldrak_skullpile_03.m2", + value = "zuldrak_skullpile_03.m2", + }, + { + fileId = "196709", + text = "zuldrak_skullpole_01.m2", + value = "zuldrak_skullpole_01.m2", + }, + { + fileId = "244065", + text = "zuldrak_skullpole_01_low.m2", + value = "zuldrak_skullpole_01_low.m2", + }, + { + fileId = "244066", + text = "zuldrak_skullpole_02.m2", + value = "zuldrak_skullpole_02.m2", + }, + { + fileId = "244067", + text = "zuldrak_skullpole_02_low.m2", + value = "zuldrak_skullpole_02_low.m2", + }, + { + fileId = "196710", + text = "zuldrak_spears_01.m2", + value = "zuldrak_spears_01.m2", + }, + { + fileId = "196711", + text = "zuldrak_spears_02.m2", + value = "zuldrak_spears_02.m2", + }, + { + fileId = "196712", + text = "zuldrak_spears_03.m2", + value = "zuldrak_spears_03.m2", + }, + { + fileId = "196713", + text = "zuldrak_spikestrip_01.m2", + value = "zuldrak_spikestrip_01.m2", + }, + { + fileId = "196714", + text = "zuldrak_spikestructure_01.m2", + value = "zuldrak_spikestructure_01.m2", + }, + { + fileId = "196715", + text = "zuldrak_sword_01.m2", + value = "zuldrak_sword_01.m2", + }, + { + fileId = "196717", + text = "zuldrak_torch_01.m2", + value = "zuldrak_torch_01.m2", + }, + { + fileId = "244068", + text = "zuldrak_torch_01_low.m2", + value = "zuldrak_torch_01_low.m2", + }, + { + fileId = "196718", + text = "zuldrak_torch_02.m2", + value = "zuldrak_torch_02.m2", + }, + { + fileId = "244069", + text = "zuldrak_torch_02b.m2", + value = "zuldrak_torch_02b.m2", + }, + { + fileId = "196719", + text = "zuldrak_torch_03.m2", + value = "zuldrak_torch_03.m2", + }, + { + fileId = "196720", + text = "zuldrak_torch_04.m2", + value = "zuldrak_torch_04.m2", + }, + { + fileId = "196721", + text = "zuldrak_waterspout_01.m2", + value = "zuldrak_waterspout_01.m2", + }, + { + fileId = "196722", + text = "zuldrak_weaponrack_01.m2", + value = "zuldrak_weaponrack_01.m2", + }, + { + fileId = "196723", + text = "zuldrak_windchime_01.m2", + value = "zuldrak_windchime_01.m2", + }, + { + fileId = "196724", + text = "zuldrak_windchime_02.m2", + value = "zuldrak_windchime_02.m2", + }, + { + fileId = "196725", + text = "zuldrak_windchime_03.m2", + value = "zuldrak_windchime_03.m2", + }, + }, + text = "decorations", + value = "decorations", + }, + { + children = { + { + fileId = "196729", + text = "zuldrak_fence_01.m2", + value = "zuldrak_fence_01.m2", + }, + { + fileId = "196730", + text = "zuldrak_fence_02.m2", + value = "zuldrak_fence_02.m2", + }, + { + fileId = "196731", + text = "zuldrak_fence_03.m2", + value = "zuldrak_fence_03.m2", + }, + { + fileId = "196732", + text = "zuldrak_fencepost_01.m2", + value = "zuldrak_fencepost_01.m2", + }, + }, + text = "fences", + value = "fences", + }, + { + children = { + { + fileId = "244070", + text = "gundrak_elevator_01.m2", + value = "gundrak_elevator_01.m2", + }, + { + fileId = "244071", + text = "gundrak_fence_door.m2", + value = "gundrak_fence_door.m2", + }, + { + fileId = "244072", + text = "gundrak_short_door.m2", + value = "gundrak_short_door.m2", + }, + { + fileId = "244073", + text = "gundrak_trapdoor_02.m2", + value = "gundrak_trapdoor_02.m2", + }, + { + fileId = "244074", + text = "gundrak_underwaterhatch_door.m2", + value = "gundrak_underwaterhatch_door.m2", + }, + { + fileId = "244075", + text = "gundrakgrateice.m2", + value = "gundrakgrateice.m2", + }, + }, + text = "gundrak", + value = "gundrak", + }, + { + children = { + { + fileId = "196733", + text = "zuldrak_blue_fire.m2", + value = "zuldrak_blue_fire.m2", + }, + { + fileId = "326720", + text = "zuldrak_blue_fire02.m2", + value = "zuldrak_blue_fire02.m2", + }, + { + fileId = "196736", + text = "zuldrak_fog_blue.m2", + value = "zuldrak_fog_blue.m2", + }, + { + fileId = "196738", + text = "zuldrak_fog_red.m2", + value = "zuldrak_fog_red.m2", + }, + { + fileId = "196741", + text = "zuldrak_lightray_01.m2", + value = "zuldrak_lightray_01.m2", + }, + }, + text = "lightfx", + value = "lightfx", + }, + { + children = { + { + fileId = "244080", + text = "zuldrak_mojostreams.m2", + value = "zuldrak_mojostreams.m2", + }, + }, + text = "mojostreams", + value = "mojostreams", + }, + { + children = { + { + fileId = "196743", + text = "zuldrak_pathstone_01.m2", + value = "zuldrak_pathstone_01.m2", + }, + { + fileId = "196744", + text = "zuldrak_pathstone_02.m2", + value = "zuldrak_pathstone_02.m2", + }, + { + fileId = "196745", + text = "zuldrak_pathstone_03.m2", + value = "zuldrak_pathstone_03.m2", + }, + { + fileId = "196746", + text = "zuldrak_pathstone_04.m2", + value = "zuldrak_pathstone_04.m2", + }, + { + fileId = "196747", + text = "zuldrak_pathstonesnow_01.m2", + value = "zuldrak_pathstonesnow_01.m2", + }, + { + fileId = "196748", + text = "zuldrak_pathstonesnow_02.m2", + value = "zuldrak_pathstonesnow_02.m2", + }, + { + fileId = "196749", + text = "zuldrak_pathstonesnow_03.m2", + value = "zuldrak_pathstonesnow_03.m2", + }, + { + fileId = "196750", + text = "zuldrak_pathstonesnow_04.m2", + value = "zuldrak_pathstonesnow_04.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "244081", + text = "zuldrak_skyvortex.m2", + value = "zuldrak_skyvortex.m2", + }, + }, + text = "skyvortex", + value = "skyvortex", + }, + { + children = { + { + fileId = "196752", + text = "zuldrak_statue_base_01.m2", + value = "zuldrak_statue_base_01.m2", + }, + { + fileId = "196754", + text = "zuldrak_statue_bear_01.m2", + value = "zuldrak_statue_bear_01.m2", + }, + { + fileId = "196756", + text = "zuldrak_statue_mammoth_01.m2", + value = "zuldrak_statue_mammoth_01.m2", + }, + { + fileId = "196758", + text = "zuldrak_statue_rhino_01.m2", + value = "zuldrak_statue_rhino_01.m2", + }, + { + fileId = "196760", + text = "zuldrak_statue_serpent_01.m2", + value = "zuldrak_statue_serpent_01.m2", + }, + { + fileId = "196762", + text = "zuldrak_statue_snake_01.m2", + value = "zuldrak_statue_snake_01.m2", + }, + { + fileId = "244084", + text = "zuldrak_statue_snowleopard_01.m2", + value = "zuldrak_statue_snowleopard_01.m2", + }, + }, + text = "statues", + value = "statues", + }, + { + children = { + { + fileId = "196763", + text = "zuldrak_bush_01.m2", + value = "zuldrak_bush_01.m2", + }, + { + fileId = "196764", + text = "zuldrak_bush_02.m2", + value = "zuldrak_bush_02.m2", + }, + { + fileId = "196765", + text = "zuldrak_bush_03.m2", + value = "zuldrak_bush_03.m2", + }, + { + fileId = "196766", + text = "zuldrak_bush_04.m2", + value = "zuldrak_bush_04.m2", + }, + { + fileId = "196767", + text = "zuldrak_bush_05.m2", + value = "zuldrak_bush_05.m2", + }, + { + fileId = "196768", + text = "zuldrak_bush_07.m2", + value = "zuldrak_bush_07.m2", + }, + { + fileId = "196769", + text = "zuldrak_bush_09.m2", + value = "zuldrak_bush_09.m2", + }, + { + fileId = "196770", + text = "zuldrak_bush_09_snowy.m2", + value = "zuldrak_bush_09_snowy.m2", + }, + { + fileId = "196771", + text = "zuldrak_bush_11.m2", + value = "zuldrak_bush_11.m2", + }, + { + fileId = "196772", + text = "zuldrak_crop_01.m2", + value = "zuldrak_crop_01.m2", + }, + { + fileId = "196773", + text = "zuldrak_crop_02.m2", + value = "zuldrak_crop_02.m2", + }, + { + fileId = "196774", + text = "zuldrak_largetree_01.m2", + value = "zuldrak_largetree_01.m2", + }, + { + fileId = "196775", + text = "zuldrak_largetree_01_snowy.m2", + value = "zuldrak_largetree_01_snowy.m2", + }, + { + fileId = "196776", + text = "zuldrak_largetree_02.m2", + value = "zuldrak_largetree_02.m2", + }, + { + fileId = "196777", + text = "zuldrak_largetree_02_snowy.m2", + value = "zuldrak_largetree_02_snowy.m2", + }, + { + fileId = "196778", + text = "zuldrak_largetree_03.m2", + value = "zuldrak_largetree_03.m2", + }, + { + fileId = "196779", + text = "zuldrak_largetree_04.m2", + value = "zuldrak_largetree_04.m2", + }, + { + fileId = "196780", + text = "zuldrak_largetree_04_snowy.m2", + value = "zuldrak_largetree_04_snowy.m2", + }, + { + fileId = "196788", + text = "zuldrak_redbush_01.m2", + value = "zuldrak_redbush_01.m2", + }, + { + fileId = "196789", + text = "zuldrak_roots_01.m2", + value = "zuldrak_roots_01.m2", + }, + { + fileId = "196790", + text = "zuldrak_roots_01_snowy.m2", + value = "zuldrak_roots_01_snowy.m2", + }, + { + fileId = "196791", + text = "zuldrak_roots_02.m2", + value = "zuldrak_roots_02.m2", + }, + { + fileId = "196792", + text = "zuldrak_roots_03.m2", + value = "zuldrak_roots_03.m2", + }, + { + fileId = "196793", + text = "zuldrak_roots_03_snowy.m2", + value = "zuldrak_roots_03_snowy.m2", + }, + { + fileId = "196794", + text = "zuldrak_roots_04.m2", + value = "zuldrak_roots_04.m2", + }, + { + fileId = "196795", + text = "zuldrak_roots_04_snowy.m2", + value = "zuldrak_roots_04_snowy.m2", + }, + { + fileId = "196796", + text = "zuldrak_roots_05.m2", + value = "zuldrak_roots_05.m2", + }, + { + fileId = "196797", + text = "zuldrak_roots_06.m2", + value = "zuldrak_roots_06.m2", + }, + { + fileId = "244085", + text = "zuldrak_shelfmushroom_01.m2", + value = "zuldrak_shelfmushroom_01.m2", + }, + { + fileId = "244086", + text = "zuldrak_shelfmushroom_02.m2", + value = "zuldrak_shelfmushroom_02.m2", + }, + { + fileId = "244087", + text = "zuldrak_thinmushroom_01.m2", + value = "zuldrak_thinmushroom_01.m2", + }, + { + fileId = "196798", + text = "zuldrak_tree_01.m2", + value = "zuldrak_tree_01.m2", + }, + { + fileId = "196799", + text = "zuldrak_tree_02.m2", + value = "zuldrak_tree_02.m2", + }, + { + fileId = "196800", + text = "zuldrak_tree_03.m2", + value = "zuldrak_tree_03.m2", + }, + { + fileId = "196801", + text = "zuldrak_tree_04.m2", + value = "zuldrak_tree_04.m2", + }, + { + fileId = "196820", + text = "zuldrak_vineplane_01.m2", + value = "zuldrak_vineplane_01.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "196828", + text = "it_brazier01.m2", + value = "it_brazier01.m2", + }, + { + fileId = "196829", + text = "it_brazier02.m2", + value = "it_brazier02.m2", + }, + { + fileId = "196830", + text = "it_brazier03.m2", + value = "it_brazier03.m2", + }, + { + fileId = "196835", + text = "zd_roadpiece_01.m2", + value = "zd_roadpiece_01.m2", + }, + { + fileId = "196836", + text = "zuldrak_archpost_01.m2", + value = "zuldrak_archpost_01.m2", + }, + { + fileId = "196837", + text = "zuldrak_archpost_02.m2", + value = "zuldrak_archpost_02.m2", + }, + { + fileId = "196838", + text = "zuldrak_archpost_03.m2", + value = "zuldrak_archpost_03.m2", + }, + { + fileId = "196839", + text = "zuldrak_archpost_04.m2", + value = "zuldrak_archpost_04.m2", + }, + { + fileId = "196840", + text = "zuldrak_archpost_05.m2", + value = "zuldrak_archpost_05.m2", + }, + { + fileId = "196841", + text = "zuldrak_archpost_06.m2", + value = "zuldrak_archpost_06.m2", + }, + { + fileId = "196843", + text = "zuldrak_archway_01.m2", + value = "zuldrak_archway_01.m2", + }, + { + fileId = "196845", + text = "zuldrak_archway_02.m2", + value = "zuldrak_archway_02.m2", + }, + { + fileId = "196846", + text = "zuldrak_archway_03.m2", + value = "zuldrak_archway_03.m2", + }, + { + fileId = "196847", + text = "zuldrak_archway_04.m2", + value = "zuldrak_archway_04.m2", + }, + { + fileId = "196848", + text = "zuldrak_archway_broken_02.m2", + value = "zuldrak_archway_broken_02.m2", + }, + { + fileId = "196849", + text = "zuldrak_archway_broken_03.m2", + value = "zuldrak_archway_broken_03.m2", + }, + { + fileId = "196852", + text = "zuldrak_archway_snow_02.m2", + value = "zuldrak_archway_snow_02.m2", + }, + { + fileId = "196853", + text = "zuldrak_archway_snow_03.m2", + value = "zuldrak_archway_snow_03.m2", + }, + { + fileId = "244090", + text = "zuldrak_coliseumgong.m2", + value = "zuldrak_coliseumgong.m2", + }, + { + fileId = "196859", + text = "zuldrak_gong_01.m2", + value = "zuldrak_gong_01.m2", + }, + { + fileId = "196861", + text = "zuldrak_head_01.m2", + value = "zuldrak_head_01.m2", + }, + { + fileId = "196863", + text = "zuldrak_incense_01.m2", + value = "zuldrak_incense_01.m2", + }, + { + fileId = "196867", + text = "zuldrak_roadcurb_01.m2", + value = "zuldrak_roadcurb_01.m2", + }, + { + fileId = "196868", + text = "zuldrak_roadcurb_02.m2", + value = "zuldrak_roadcurb_02.m2", + }, + { + fileId = "196869", + text = "zuldrak_roadcurb_02reverse.m2", + value = "zuldrak_roadcurb_02reverse.m2", + }, + { + fileId = "196870", + text = "zuldrak_roadcurb_03.m2", + value = "zuldrak_roadcurb_03.m2", + }, + { + fileId = "196871", + text = "zuldrak_roadcurb_03_simple.m2", + value = "zuldrak_roadcurb_03_simple.m2", + }, + { + fileId = "196872", + text = "zuldrak_roadcurb_03wide.m2", + value = "zuldrak_roadcurb_03wide.m2", + }, + { + fileId = "196873", + text = "zuldrak_roadcurb_04.m2", + value = "zuldrak_roadcurb_04.m2", + }, + { + fileId = "196874", + text = "zuldrak_roadcurb_05.m2", + value = "zuldrak_roadcurb_05.m2", + }, + { + fileId = "196875", + text = "zuldrak_roadcurb_05short.m2", + value = "zuldrak_roadcurb_05short.m2", + }, + { + fileId = "196876", + text = "zuldrak_roadcurb_06.m2", + value = "zuldrak_roadcurb_06.m2", + }, + { + fileId = "196877", + text = "zuldrak_roadcurb_07.m2", + value = "zuldrak_roadcurb_07.m2", + }, + { + fileId = "196879", + text = "zuldrak_ruin_03.m2", + value = "zuldrak_ruin_03.m2", + }, + { + fileId = "196881", + text = "zuldrak_ruin_03_basic.m2", + value = "zuldrak_ruin_03_basic.m2", + }, + { + fileId = "196882", + text = "zuldrak_ruin_04.m2", + value = "zuldrak_ruin_04.m2", + }, + { + fileId = "196883", + text = "zuldrak_ruin_05.m2", + value = "zuldrak_ruin_05.m2", + }, + { + fileId = "196884", + text = "zuldrak_ruin_06.m2", + value = "zuldrak_ruin_06.m2", + }, + { + fileId = "196885", + text = "zuldrak_ruin_10.m2", + value = "zuldrak_ruin_10.m2", + }, + { + fileId = "196886", + text = "zuldrak_ruin_11.m2", + value = "zuldrak_ruin_11.m2", + }, + { + fileId = "196887", + text = "zuldrak_ruin_12.m2", + value = "zuldrak_ruin_12.m2", + }, + { + fileId = "196888", + text = "zuldrak_ruin_15.m2", + value = "zuldrak_ruin_15.m2", + }, + { + fileId = "196889", + text = "zuldrak_ruin_16.m2", + value = "zuldrak_ruin_16.m2", + }, + { + fileId = "196890", + text = "zuldrak_ruin_17.m2", + value = "zuldrak_ruin_17.m2", + }, + { + fileId = "196891", + text = "zuldrak_ruin_cornersmall01.m2", + value = "zuldrak_ruin_cornersmall01.m2", + }, + { + fileId = "196892", + text = "zuldrak_ruin_cornertall01.m2", + value = "zuldrak_ruin_cornertall01.m2", + }, + { + fileId = "196893", + text = "zuldrak_ruin_stairs_02.m2", + value = "zuldrak_ruin_stairs_02.m2", + }, + { + fileId = "196894", + text = "zuldrak_ruin_stairs_03.m2", + value = "zuldrak_ruin_stairs_03.m2", + }, + { + fileId = "196895", + text = "zuldrak_ruin_stairs_03_wide.m2", + value = "zuldrak_ruin_stairs_03_wide.m2", + }, + { + fileId = "196896", + text = "zuldrak_ruin_wall_02.m2", + value = "zuldrak_ruin_wall_02.m2", + }, + { + fileId = "196898", + text = "zuldrak_ruinblocks_01.m2", + value = "zuldrak_ruinblocks_01.m2", + }, + { + fileId = "196902", + text = "zuldrak_stoneface_01.m2", + value = "zuldrak_stoneface_01.m2", + }, + { + fileId = "196903", + text = "zuldrak_stonepost_01.m2", + value = "zuldrak_stonepost_01.m2", + }, + { + fileId = "196904", + text = "zuldrak_stonepost_02.m2", + value = "zuldrak_stonepost_02.m2", + }, + { + fileId = "196905", + text = "zuldrak_stonepost_end_01.m2", + value = "zuldrak_stonepost_end_01.m2", + }, + { + fileId = "196908", + text = "zuldrak_wallend_01.m2", + value = "zuldrak_wallend_01.m2", + }, + { + fileId = "196909", + text = "zuldrak_wallrubble_01.m2", + value = "zuldrak_wallrubble_01.m2", + }, + { + fileId = "196910", + text = "zuldrak_wallrubble_02.m2", + value = "zuldrak_wallrubble_02.m2", + }, + }, + text = "trollruins", + value = "trollruins", + }, + { + children = { + { + fileId = "244091", + text = "zuldrak_gundrak_hub_ripples.m2", + value = "zuldrak_gundrak_hub_ripples.m2", + }, + { + fileId = "244092", + text = "zuldrak_purple_water_mist.m2", + value = "zuldrak_purple_water_mist.m2", + }, + { + fileId = "244104", + text = "zuldrak_waterfall_type1.m2", + value = "zuldrak_waterfall_type1.m2", + }, + { + fileId = "244105", + text = "zuldrak_waterfall_type1_purple.m2", + value = "zuldrak_waterfall_type1_purple.m2", + }, + { + fileId = "244106", + text = "zuldrak_waterfall_type2.m2", + value = "zuldrak_waterfall_type2.m2", + }, + { + fileId = "244107", + text = "zuldrak_waterfall_type2_purple.m2", + value = "zuldrak_waterfall_type2_purple.m2", + }, + { + fileId = "244108", + text = "zuldrak_waterfall_type2_purple_b.m2", + value = "zuldrak_waterfall_type2_purple_b.m2", + }, + { + fileId = "244109", + text = "zuldrak_waterfall_type2_purple_c.m2", + value = "zuldrak_waterfall_type2_purple_c.m2", + }, + { + fileId = "244110", + text = "zuldrak_waterfalls_set1_circle_ripples.m2", + value = "zuldrak_waterfalls_set1_circle_ripples.m2", + }, + { + fileId = "244111", + text = "zuldrak_waterfalls_set1_high_purple.m2", + value = "zuldrak_waterfalls_set1_high_purple.m2", + }, + { + fileId = "244112", + text = "zuldrak_waterfalls_set1_high_ripples.m2", + value = "zuldrak_waterfalls_set1_high_ripples.m2", + }, + { + fileId = "244113", + text = "zuldrak_waterfog_01.m2", + value = "zuldrak_waterfog_01.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + }, + text = "zuldrak", + value = "zuldrak", + }, + }, + text = "doodads", + value = "doodads", + }, + }, + text = "expansion02", + value = "expansion02", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "305630", + text = "twilightshammer_altar01.m2", + value = "twilightshammer_altar01.m2", + }, + }, + text = "altar", + value = "altar", + }, + { + children = { + { + fileId = "305638", + text = "twilightshammer_bannercataclysm_01.m2", + value = "twilightshammer_bannercataclysm_01.m2", + }, + { + fileId = "311628", + text = "twilightshammer_bannercataclysm_02.m2", + value = "twilightshammer_bannercataclysm_02.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "317820", + text = "twilightshammer_magicaldevice_04air.m2", + value = "twilightshammer_magicaldevice_04air.m2", + }, + { + fileId = "317821", + text = "twilightshammer_magicaldevice_04earth.m2", + value = "twilightshammer_magicaldevice_04earth.m2", + }, + { + fileId = "317822", + text = "twilightshammer_magicaldevice_04fire.m2", + value = "twilightshammer_magicaldevice_04fire.m2", + }, + { + fileId = "317823", + text = "twilightshammer_magicaldevice_04water.m2", + value = "twilightshammer_magicaldevice_04water.m2", + }, + }, + text = "magicaldevices", + value = "magicaldevices", + }, + { + children = { + { + fileId = "311621", + text = "twilightshammer_summoningportal_air01.m2", + value = "twilightshammer_summoningportal_air01.m2", + }, + { + fileId = "311624", + text = "twilightshammer_summoningportal_earth01.m2", + value = "twilightshammer_summoningportal_earth01.m2", + }, + { + fileId = "311626", + text = "twilightshammer_summoningportal_fire01.m2", + value = "twilightshammer_summoningportal_fire01.m2", + }, + { + fileId = "305643", + text = "twilightshammer_summoningportal_water01.m2", + value = "twilightshammer_summoningportal_water01.m2", + }, + }, + text = "summoningportals", + value = "summoningportals", + }, + }, + text = "twilighthammer", + value = "twilighthammer", + }, + }, + text = "doodads", + value = "doodads", + }, + }, + text = "expansion03", + value = "expansion03", + }, + { + children = { + { + children = { + { + fileId = "1401005", + text = "shop_giftbox01.m2", + value = "shop_giftbox01.m2", + }, + }, + text = "doodads", + value = "doodads", + }, + }, + text = "expansion06", + value = "expansion06", + }, + { + children = { + { + children = { + { + fileId = "196911", + text = "ed_dragonshrine_a.m2", + value = "ed_dragonshrine_a.m2", + }, + { + fileId = "196912", + text = "ed_largevrykulhut.m2", + value = "ed_largevrykulhut.m2", + }, + { + fileId = "196913", + text = "ed_smallvrykulhut.m2", + value = "ed_smallvrykulhut.m2", + }, + { + fileId = "196914", + text = "ed_vrykulmediumscale.m2", + value = "ed_vrykulmediumscale.m2", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + fileId = "196915", + text = "ed_grizzlepaw.m2", + value = "ed_grizzlepaw.m2", + }, + }, + text = "grizzlyhills", + value = "grizzlyhills", + }, + { + children = { + { + fileId = "196916", + text = "ed_daggercapcave.m2", + value = "ed_daggercapcave.m2", + }, + }, + text = "howlingfjord", + value = "howlingfjord", + }, + { + children = { + { + fileId = "196917", + text = "ed_codhouse01.m2", + value = "ed_codhouse01.m2", + }, + { + fileId = "196918", + text = "ed_codhouse02.m2", + value = "ed_codhouse02.m2", + }, + }, + text = "icecrownglacier", + value = "icecrownglacier", + }, + { + children = { + { + fileId = "196919", + text = "ed_stormpeaks01.m2", + value = "ed_stormpeaks01.m2", + }, + }, + text = "stormpeaks", + value = "stormpeaks", + }, + { + children = { + { + fileId = "196927", + text = "ed_testdoodad.m2", + value = "ed_testdoodad.m2", + }, + { + fileId = "196928", + text = "frozen_throne_nosky_eyesclosed.m2", + value = "frozen_throne_nosky_eyesclosed.m2", + }, + { + fileId = "196929", + text = "frozen_throne_nosky_eyesopen.m2", + value = "frozen_throne_nosky_eyesopen.m2", + }, + { + fileId = "196930", + text = "frozen_throne_sky_eyesclosed.m2", + value = "frozen_throne_sky_eyesclosed.m2", + }, + { + fileId = "196931", + text = "frozen_throne_sky_eyesopen.m2", + value = "frozen_throne_sky_eyesopen.m2", + }, + }, + text = "test", + value = "test", + }, + { + children = { + { + fileId = "196933", + text = "forsakencatapult_doodad.m2", + value = "forsakencatapult_doodad.m2", + }, + }, + text = "vehicletest", + value = "vehicletest", + }, + { + children = { + { + fileId = "196936", + text = "ed_zuldrakaquaduccurve.m2", + value = "ed_zuldrakaquaduccurve.m2", + }, + { + fileId = "196937", + text = "ed_zuldrakaquaducpipe01.m2", + value = "ed_zuldrakaquaducpipe01.m2", + }, + { + fileId = "196938", + text = "ed_zuldrakaquaducpipe02.m2", + value = "ed_zuldrakaquaducpipe02.m2", + }, + { + fileId = "196939", + text = "ed_zuldrakaquaducsupport.m2", + value = "ed_zuldrakaquaducsupport.m2", + }, + { + fileId = "196940", + text = "ed_zuldrakaquaductip.m2", + value = "ed_zuldrakaquaductip.m2", + }, + { + fileId = "196941", + text = "ed_zuldrakbridge_fire.m2", + value = "ed_zuldrakbridge_fire.m2", + }, + { + fileId = "196942", + text = "ed_zuldrakbridge_fire_02.m2", + value = "ed_zuldrakbridge_fire_02.m2", + }, + { + fileId = "244114", + text = "ed_zuldrakbridge_fire_03.m2", + value = "ed_zuldrakbridge_fire_03.m2", + }, + { + fileId = "196943", + text = "ed_zuldrakcoliseum.m2", + value = "ed_zuldrakcoliseum.m2", + }, + { + fileId = "196944", + text = "ed_zuldrakstairs_large_ext.m2", + value = "ed_zuldrakstairs_large_ext.m2", + }, + { + fileId = "196945", + text = "ed_zuldrakstairs_large_int.m2", + value = "ed_zuldrakstairs_large_int.m2", + }, + { + fileId = "196946", + text = "ed_zuldrakstairs_large_straight.m2", + value = "ed_zuldrakstairs_large_straight.m2", + }, + { + fileId = "196947", + text = "ed_zuldrakstairs_small_ext.m2", + value = "ed_zuldrakstairs_small_ext.m2", + }, + { + fileId = "196948", + text = "ed_zuldrakstairs_small_int.m2", + value = "ed_zuldrakstairs_small_int.m2", + }, + { + fileId = "196949", + text = "ed_zuldrakstairs_small_straight.m2", + value = "ed_zuldrakstairs_small_straight.m2", + }, + { + fileId = "196950", + text = "ed_zuldrakwall150.m2", + value = "ed_zuldrakwall150.m2", + }, + { + fileId = "196951", + text = "ed_zuldrakwall150skull.m2", + value = "ed_zuldrakwall150skull.m2", + }, + { + fileId = "196952", + text = "ed_zuldrakwall300.m2", + value = "ed_zuldrakwall300.m2", + }, + { + fileId = "196953", + text = "ed_zuldrakwall50.m2", + value = "ed_zuldrakwall50.m2", + }, + { + fileId = "196954", + text = "ed_zuldrakwallbigstairs01.m2", + value = "ed_zuldrakwallbigstairs01.m2", + }, + { + fileId = "196955", + text = "ed_zuldrakwallbigstairs02.m2", + value = "ed_zuldrakwallbigstairs02.m2", + }, + { + fileId = "196956", + text = "ed_zuldrakwallcanaltube.m2", + value = "ed_zuldrakwallcanaltube.m2", + }, + { + fileId = "196957", + text = "ed_zuldrakwallextcorner.m2", + value = "ed_zuldrakwallextcorner.m2", + }, + { + fileId = "196958", + text = "ed_zuldrakwallextcornerbroken.m2", + value = "ed_zuldrakwallextcornerbroken.m2", + }, + { + fileId = "196959", + text = "ed_zuldrakwallhole.m2", + value = "ed_zuldrakwallhole.m2", + }, + { + fileId = "196960", + text = "ed_zuldrakwallintcorner.m2", + value = "ed_zuldrakwallintcorner.m2", + }, + { + fileId = "196961", + text = "ed_zuldrakwallintcornerbroken.m2", + value = "ed_zuldrakwallintcornerbroken.m2", + }, + { + fileId = "196962", + text = "ed_zuldrakwallridge.m2", + value = "ed_zuldrakwallridge.m2", + }, + { + fileId = "196963", + text = "ed_zuldrakwallrubbleleft.m2", + value = "ed_zuldrakwallrubbleleft.m2", + }, + { + fileId = "196964", + text = "ed_zuldrakwallrubbleright.m2", + value = "ed_zuldrakwallrubbleright.m2", + }, + { + fileId = "196965", + text = "ed_zuldrakwallsmallstairs.m2", + value = "ed_zuldrakwallsmallstairs.m2", + }, + { + fileId = "196966", + text = "ed_zuldrakwallwaterbreak.m2", + value = "ed_zuldrakwallwaterbreak.m2", + }, + }, + text = "zuldrak", + value = "zuldrak", + }, + }, + text = "exteriordesigners", + value = "exteriordesigners", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "196975", + text = "berrybush01.m2", + value = "berrybush01.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "196976", + text = "chest01.m2", + value = "chest01.m2", + }, + }, + text = "chest01", + value = "chest01", + }, + { + children = { + { + fileId = "196979", + text = "chest02.m2", + value = "chest02.m2", + }, + }, + text = "chest02", + value = "chest02", + }, + { + children = { + { + fileId = "196982", + text = "chest03.m2", + value = "chest03.m2", + }, + }, + text = "chest03", + value = "chest03", + }, + { + children = { + { + fileId = "196987", + text = "chest04.m2", + value = "chest04.m2", + }, + }, + text = "chest04", + value = "chest04", + }, + { + children = { + { + fileId = "196988", + text = "chest01b.m2", + value = "chest01b.m2", + }, + { + fileId = "196989", + text = "chest01c.m2", + value = "chest01c.m2", + }, + { + fileId = "196990", + text = "chestactive01.m2", + value = "chestactive01.m2", + }, + { + fileId = "244115", + text = "helmchest01.m2", + value = "helmchest01.m2", + }, + }, + text = "chests", + value = "chests", + }, + { + children = { + { + fileId = "196993", + text = "snowballmound01.m2", + value = "snowballmound01.m2", + }, + }, + text = "christmas", + value = "christmas", + }, + { + children = { + { + fileId = "196998", + text = "giantclamactive.m2", + value = "giantclamactive.m2", + }, + { + fileId = "196999", + text = "giantclamclosed.m2", + value = "giantclamclosed.m2", + }, + }, + text = "clam", + value = "clam", + }, + { + children = { + { + children = { + { + fileId = "197001", + text = "giantportcullisflatbottom01.m2", + value = "giantportcullisflatbottom01.m2", + }, + }, + text = "giantportcullis", + value = "giantportcullis", + }, + { + children = { + { + fileId = "197002", + text = "gnomeregandoor01.m2", + value = "gnomeregandoor01.m2", + }, + }, + text = "gnomeregandoors", + value = "gnomeregandoors", + }, + { + children = { + { + fileId = "197003", + text = "sunktemple_portcullis.m2", + value = "sunktemple_portcullis.m2", + }, + }, + text = "sunkentempledoors", + value = "sunkentempledoors", + }, + { + children = { + { + fileId = "197004", + text = "uldamandoor01.m2", + value = "uldamandoor01.m2", + }, + }, + text = "uldamandoors", + value = "uldamandoors", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "197007", + text = "instanceportal.m2", + value = "instanceportal.m2", + }, + { + fileId = "197008", + text = "instanceportal_green.m2", + value = "instanceportal_green.m2", + }, + { + fileId = "197009", + text = "instanceportal_purpledifficulty.m2", + value = "instanceportal_purpledifficulty.m2", + }, + { + fileId = "197010", + text = "instanceportal_purpledifficultyicon.m2", + value = "instanceportal_purpledifficultyicon.m2", + }, + { + fileId = "197011", + text = "instanceportal_red.m2", + value = "instanceportal_red.m2", + }, + { + fileId = "197012", + text = "instanceportal_white.m2", + value = "instanceportal_white.m2", + }, + { + fileId = "197013", + text = "instanceportalcollision.m2", + value = "instanceportalcollision.m2", + }, + { + fileId = "197017", + text = "summon_ritual.m2", + value = "summon_ritual.m2", + }, + { + fileId = "197018", + text = "temporal_displacement.m2", + value = "temporal_displacement.m2", + }, + }, + text = "instanceportal", + value = "instanceportal", + }, + { + children = { + { + fileId = "197020", + text = "stormwindmageportal01.m2", + value = "stormwindmageportal01.m2", + }, + }, + text = "mageportals", + value = "mageportals", + }, + { + children = { + { + fileId = "197022", + text = "meetingstone01.m2", + value = "meetingstone01.m2", + }, + { + fileId = "197024", + text = "meetingstone02.m2", + value = "meetingstone02.m2", + }, + { + fileId = "197026", + text = "meetingstone03.m2", + value = "meetingstone03.m2", + }, + { + fileId = "197028", + text = "meetingstone04.m2", + value = "meetingstone04.m2", + }, + { + fileId = "197030", + text = "meetingstone05.m2", + value = "meetingstone05.m2", + }, + }, + text = "meetingstones", + value = "meetingstones", + }, + { + children = { + { + fileId = "197038", + text = "gemrock01.m2", + value = "gemrock01.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "244118", + text = "mageportal_cavernsoftime.m2", + value = "mageportal_cavernsoftime.m2", + }, + { + fileId = "244119", + text = "mageportal_dalaran.m2", + value = "mageportal_dalaran.m2", + }, + { + fileId = "197042", + text = "mageportal_darnassus.m2", + value = "mageportal_darnassus.m2", + }, + { + fileId = "197043", + text = "mageportal_exodar.m2", + value = "mageportal_exodar.m2", + }, + { + fileId = "197044", + text = "mageportal_ironforge.m2", + value = "mageportal_ironforge.m2", + }, + { + fileId = "197045", + text = "mageportal_karazhan.m2", + value = "mageportal_karazhan.m2", + }, + { + fileId = "197046", + text = "mageportal_maraudon.m2", + value = "mageportal_maraudon.m2", + }, + { + fileId = "197047", + text = "mageportal_ogrimmar.m2", + value = "mageportal_ogrimmar.m2", + }, + { + fileId = "197048", + text = "mageportal_shattrath.m2", + value = "mageportal_shattrath.m2", + }, + { + fileId = "197049", + text = "mageportal_silvermoon.m2", + value = "mageportal_silvermoon.m2", + }, + { + fileId = "307023", + text = "mageportal_stairofdestiny.m2", + value = "mageportal_stairofdestiny.m2", + }, + { + fileId = "197050", + text = "mageportal_stonard.m2", + value = "mageportal_stonard.m2", + }, + { + fileId = "197051", + text = "mageportal_stormwind.m2", + value = "mageportal_stormwind.m2", + }, + { + fileId = "197052", + text = "mageportal_sunwell.m2", + value = "mageportal_sunwell.m2", + }, + { + fileId = "197053", + text = "mageportal_theramore.m2", + value = "mageportal_theramore.m2", + }, + { + fileId = "197054", + text = "mageportal_thunderbluff.m2", + value = "mageportal_thunderbluff.m2", + }, + { + fileId = "197055", + text = "mageportal_undercity.m2", + value = "mageportal_undercity.m2", + }, + { + fileId = "244120", + text = "mageportal_wintergrasp.m2", + value = "mageportal_wintergrasp.m2", + }, + { + fileId = "244122", + text = "portal_alteracvalleyalliance.m2", + value = "portal_alteracvalleyalliance.m2", + }, + { + fileId = "244124", + text = "portal_alteracvalleyhorde.m2", + value = "portal_alteracvalleyhorde.m2", + }, + { + fileId = "244126", + text = "portal_arathibasinalliance.m2", + value = "portal_arathibasinalliance.m2", + }, + { + fileId = "244128", + text = "portal_arathibasinhorde.m2", + value = "portal_arathibasinhorde.m2", + }, + { + fileId = "244130", + text = "portal_eyeofthestormalliance.m2", + value = "portal_eyeofthestormalliance.m2", + }, + { + fileId = "244131", + text = "portal_eyeofthestormhorde.m2", + value = "portal_eyeofthestormhorde.m2", + }, + { + fileId = "311063", + text = "portal_isleofconquestalliance.m2", + value = "portal_isleofconquestalliance.m2", + }, + { + fileId = "311065", + text = "portal_isleofconquesthorde.m2", + value = "portal_isleofconquesthorde.m2", + }, + { + fileId = "244133", + text = "portal_strandoftheancients.m2", + value = "portal_strandoftheancients.m2", + }, + { + fileId = "244135", + text = "portal_warsonggulchalliance.m2", + value = "portal_warsonggulchalliance.m2", + }, + { + fileId = "244137", + text = "portal_warsonggulchhorde.m2", + value = "portal_warsonggulchhorde.m2", + }, + }, + text = "spellportals", + value = "spellportals", + }, + { + children = { + { + fileId = "197063", + text = "trollchest.m2", + value = "trollchest.m2", + }, + }, + text = "trollchest", + value = "trollchest", + }, + { + children = { + { + fileId = "197068", + text = "worldtreeportal01.m2", + value = "worldtreeportal01.m2", + }, + }, + text = "worldtreeportals", + value = "worldtreeportals", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "341870", + text = "alliancechest_01.m2", + value = "alliancechest_01.m2", + }, + }, + text = "chest", + value = "chest", + }, + }, + text = "alliance", + value = "alliance", + }, + { + children = { + { + children = { + { + fileId = "197108", + text = "humantentlarge.m2", + value = "humantentlarge.m2", + }, + }, + text = "humantentlarge", + value = "humantentlarge", + }, + { + children = { + { + fileId = "197109", + text = "humantentmedium.m2", + value = "humantentmedium.m2", + }, + }, + text = "humantentmedium", + value = "humantentmedium", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + fileId = "197122", + text = "collision_pcsize.m2", + value = "collision_pcsize.m2", + }, + }, + text = "collision", + value = "collision", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "197230", + text = "fishingchair.m2", + value = "fishingchair.m2", + }, + }, + text = "chair", + value = "chair", + }, + }, + text = "fishing", + value = "fishing", + }, + }, + text = "doodads", + value = "doodads", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "197635", + text = "gnomemachine.m2", + value = "gnomemachine.m2", + }, + }, + text = "gnomemachine", + value = "gnomemachine", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + }, + text = "gnome", + value = "gnome", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "197760", + text = "goblincontrolpanel.m2", + value = "goblincontrolpanel.m2", + }, + }, + text = "controlpanel", + value = "controlpanel", + }, + { + children = { + { + fileId = "197766", + text = "goblinhutbottles.m2", + value = "goblinhutbottles.m2", + }, + { + fileId = "197767", + text = "goblinmachinery.m2", + value = "goblinmachinery.m2", + }, + { + fileId = "197768", + text = "goblinweathervane.m2", + value = "goblinweathervane.m2", + }, + }, + text = "goblinmachinery", + value = "goblinmachinery", + }, + { + children = { + { + fileId = "197777", + text = "crashedgoblinrc.m2", + value = "crashedgoblinrc.m2", + }, + { + fileId = "197779", + text = "goblinrocketcart01.m2", + value = "goblinrocketcart01.m2", + }, + { + fileId = "197780", + text = "goblinrocketcart02.m2", + value = "goblinrocketcart02.m2", + }, + { + fileId = "244144", + text = "goblinrocketcart02_rc.m2", + value = "goblinrocketcart02_rc.m2", + }, + { + fileId = "197781", + text = "goblinrocketcart03.m2", + value = "goblinrocketcart03.m2", + }, + { + fileId = "197782", + text = "goblinrocketcart04.m2", + value = "goblinrocketcart04.m2", + }, + { + fileId = "197783", + text = "goblinrocketcart05.m2", + value = "goblinrocketcart05.m2", + }, + { + fileId = "197784", + text = "goblinrocketcart_rc.m2", + value = "goblinrocketcart_rc.m2", + }, + { + fileId = "244145", + text = "goblinrocketcart_rc_blue.m2", + value = "goblinrocketcart_rc_blue.m2", + }, + }, + text = "goblinrocketcarts", + value = "goblinrocketcarts", + }, + { + children = { + { + fileId = "197789", + text = "goblinshreddersuit01.m2", + value = "goblinshreddersuit01.m2", + }, + { + fileId = "197790", + text = "goblinshreddersuit02.m2", + value = "goblinshreddersuit02.m2", + }, + }, + text = "goblinshreddersuit", + value = "goblinshreddersuit", + }, + { + children = { + { + fileId = "197791", + text = "goblintent01.m2", + value = "goblintent01.m2", + }, + { + fileId = "197792", + text = "goblintent02.m2", + value = "goblintent02.m2", + }, + { + fileId = "197793", + text = "goblintent03.m2", + value = "goblintent03.m2", + }, + { + fileId = "197794", + text = "goblintent04.m2", + value = "goblintent04.m2", + }, + { + fileId = "197795", + text = "goblintent05.m2", + value = "goblintent05.m2", + }, + { + fileId = "197796", + text = "goblintent06.m2", + value = "goblintent06.m2", + }, + { + fileId = "197797", + text = "goblintent07.m2", + value = "goblintent07.m2", + }, + }, + text = "goblintents", + value = "goblintents", + }, + { + children = { + { + fileId = "197799", + text = "goblinwagontnt_01.m2", + value = "goblinwagontnt_01.m2", + }, + }, + text = "goblintntwagon", + value = "goblintntwagon", + }, + { + children = { + { + fileId = "197802", + text = "go_rocketship.m2", + value = "go_rocketship.m2", + }, + }, + text = "rocketship", + value = "rocketship", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "goblin", + value = "goblin", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "244147", + text = "horde_boat_gate_bg.m2", + value = "horde_boat_gate_bg.m2", + }, + }, + text = "gate", + value = "gate", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + fileId = "341746", + text = "hordechest_01.m2", + value = "hordechest_01.m2", + }, + }, + text = "chest", + value = "chest", + }, + }, + text = "horde", + value = "horde", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "197803", + text = "deadminedoor01.m2", + value = "deadminedoor01.m2", + }, + { + fileId = "197804", + text = "deadminedoor02.m2", + value = "deadminedoor02.m2", + }, + { + fileId = "197807", + text = "farmdoor01test.m2", + value = "farmdoor01test.m2", + }, + { + fileId = "197810", + text = "genericwroughtgate01.m2", + value = "genericwroughtgate01.m2", + }, + { + fileId = "197814", + text = "monestarybossdoor.m2", + value = "monestarybossdoor.m2", + }, + { + fileId = "197815", + text = "monestaryhalldoor.m2", + value = "monestaryhalldoor.m2", + }, + { + fileId = "197816", + text = "monestarysecretdoor.m2", + value = "monestarysecretdoor.m2", + }, + { + fileId = "197817", + text = "portcullisactive.m2", + value = "portcullisactive.m2", + }, + { + fileId = "197819", + text = "scarletcathedraldoor.m2", + value = "scarletcathedraldoor.m2", + }, + { + fileId = "197820", + text = "shadowfangdoor01.m2", + value = "shadowfangdoor01.m2", + }, + { + fileId = "197821", + text = "shadowfangdoor02.m2", + value = "shadowfangdoor02.m2", + }, + { + fileId = "197823", + text = "undeadwroughtgate01.m2", + value = "undeadwroughtgate01.m2", + }, + { + fileId = "197825", + text = "wroughtirondoor.m2", + value = "wroughtirondoor.m2", + }, + { + fileId = "197827", + text = "wroughtirondoor02.m2", + value = "wroughtirondoor02.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "244148", + text = "alliance_boat_gate_bg.m2", + value = "alliance_boat_gate_bg.m2", + }, + }, + text = "gate", + value = "gate", + }, + { + children = { + { + fileId = "197829", + text = "wizardssphere.m2", + value = "wizardssphere.m2", + }, + }, + text = "shadowfang", + value = "shadowfang", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "198678", + text = "prisoncell01.m2", + value = "prisoncell01.m2", + }, + }, + text = "prisoncell", + value = "prisoncell", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "human", + value = "human", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "198720", + text = "bfd_brassdoors.m2", + value = "bfd_brassdoors.m2", + }, + }, + text = "doors", + value = "doors", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + }, + text = "nightelf", + value = "nightelf", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "198984", + text = "glowingogrehead.m2", + value = "glowingogrehead.m2", + }, + { + fileId = "198986", + text = "pikeforked.m2", + value = "pikeforked.m2", + }, + }, + text = "ogrehead", + value = "ogrehead", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + }, + text = "ogre", + value = "ogre", + }, + { + children = { + { + fileId = "199040", + text = "green_omni.m2", + value = "green_omni.m2", + }, + }, + text = "omnilights", + value = "omnilights", + }, + { + children = { + { + children = { + { + fileId = "199458", + text = "owlbearskull01.m2", + value = "owlbearskull01.m2", + }, + }, + text = "owlbearskulls", + value = "owlbearskulls", + }, + { + children = { + { + fileId = "199460", + text = "owlbearhangingtotem01.m2", + value = "owlbearhangingtotem01.m2", + }, + { + fileId = "199461", + text = "owlbearhangingtotem02.m2", + value = "owlbearhangingtotem02.m2", + }, + { + fileId = "199462", + text = "owlbearhangingtotem03.m2", + value = "owlbearhangingtotem03.m2", + }, + { + fileId = "199463", + text = "owlbearscarecrow01.m2", + value = "owlbearscarecrow01.m2", + }, + { + fileId = "199464", + text = "owlbearscarecrow02.m2", + value = "owlbearscarecrow02.m2", + }, + { + fileId = "199466", + text = "owlbeartotem01.m2", + value = "owlbeartotem01.m2", + }, + }, + text = "owlbeartotems", + value = "owlbeartotems", + }, + { + children = { + { + fileId = "199467", + text = "owlbearrock01.m2", + value = "owlbearrock01.m2", + }, + { + fileId = "199468", + text = "owlbearrock02.m2", + value = "owlbearrock02.m2", + }, + { + fileId = "199469", + text = "owlbearrock03.m2", + value = "owlbearrock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + }, + text = "owlbear", + value = "owlbear", + }, + { + children = { + { + children = { + { + fileId = "199478", + text = "cloth_level01.m2", + value = "cloth_level01.m2", + }, + { + fileId = "199479", + text = "cloth_level02.m2", + value = "cloth_level02.m2", + }, + { + fileId = "199480", + text = "cloth_level03.m2", + value = "cloth_level03.m2", + }, + { + fileId = "199481", + text = "cloth_level04.m2", + value = "cloth_level04.m2", + }, + { + fileId = "199482", + text = "cloth_level05.m2", + value = "cloth_level05.m2", + }, + { + fileId = "199483", + text = "cloth_level06.m2", + value = "cloth_level06.m2", + }, + { + fileId = "199484", + text = "food_level02.m2", + value = "food_level02.m2", + }, + { + fileId = "199485", + text = "food_level03.m2", + value = "food_level03.m2", + }, + { + fileId = "199486", + text = "food_level04.m2", + value = "food_level04.m2", + }, + { + fileId = "199487", + text = "food_level05.m2", + value = "food_level05.m2", + }, + { + fileId = "199488", + text = "food_level06.m2", + value = "food_level06.m2", + }, + { + fileId = "199489", + text = "foodherbs_level01.m2", + value = "foodherbs_level01.m2", + }, + { + fileId = "199490", + text = "herbs_level02.m2", + value = "herbs_level02.m2", + }, + { + fileId = "199491", + text = "herbs_level03.m2", + value = "herbs_level03.m2", + }, + { + fileId = "199492", + text = "herbs_level04.m2", + value = "herbs_level04.m2", + }, + { + fileId = "199493", + text = "herbs_level05.m2", + value = "herbs_level05.m2", + }, + { + fileId = "199494", + text = "herbs_level06.m2", + value = "herbs_level06.m2", + }, + { + fileId = "199495", + text = "horde_cloth01.m2", + value = "horde_cloth01.m2", + }, + { + fileId = "199496", + text = "horde_cloth02.m2", + value = "horde_cloth02.m2", + }, + { + fileId = "199497", + text = "horde_cloth03.m2", + value = "horde_cloth03.m2", + }, + { + fileId = "199498", + text = "horde_cloth04.m2", + value = "horde_cloth04.m2", + }, + { + fileId = "199499", + text = "horde_cloth05.m2", + value = "horde_cloth05.m2", + }, + { + fileId = "199500", + text = "horde_cloth06.m2", + value = "horde_cloth06.m2", + }, + { + fileId = "199501", + text = "horde_food01.m2", + value = "horde_food01.m2", + }, + { + fileId = "199502", + text = "horde_food02.m2", + value = "horde_food02.m2", + }, + { + fileId = "199503", + text = "horde_food03.m2", + value = "horde_food03.m2", + }, + { + fileId = "199504", + text = "horde_food04.m2", + value = "horde_food04.m2", + }, + { + fileId = "199505", + text = "horde_food05.m2", + value = "horde_food05.m2", + }, + { + fileId = "199506", + text = "horde_food06.m2", + value = "horde_food06.m2", + }, + { + fileId = "199507", + text = "horde_furs01.m2", + value = "horde_furs01.m2", + }, + { + fileId = "199508", + text = "horde_furs02.m2", + value = "horde_furs02.m2", + }, + { + fileId = "199509", + text = "horde_furs03.m2", + value = "horde_furs03.m2", + }, + { + fileId = "199510", + text = "horde_furs04.m2", + value = "horde_furs04.m2", + }, + { + fileId = "199511", + text = "horde_furs05.m2", + value = "horde_furs05.m2", + }, + { + fileId = "199512", + text = "horde_furs06.m2", + value = "horde_furs06.m2", + }, + { + fileId = "199513", + text = "horde_herbs01.m2", + value = "horde_herbs01.m2", + }, + { + fileId = "199514", + text = "horde_herbs02.m2", + value = "horde_herbs02.m2", + }, + { + fileId = "199515", + text = "horde_herbs03.m2", + value = "horde_herbs03.m2", + }, + { + fileId = "199516", + text = "horde_herbs04.m2", + value = "horde_herbs04.m2", + }, + { + fileId = "199517", + text = "horde_herbs05.m2", + value = "horde_herbs05.m2", + }, + { + fileId = "199518", + text = "horde_herbs06.m2", + value = "horde_herbs06.m2", + }, + { + fileId = "199519", + text = "horde_metal01.m2", + value = "horde_metal01.m2", + }, + { + fileId = "199520", + text = "horde_metal02.m2", + value = "horde_metal02.m2", + }, + { + fileId = "199521", + text = "horde_metal03.m2", + value = "horde_metal03.m2", + }, + { + fileId = "199522", + text = "horde_metal04.m2", + value = "horde_metal04.m2", + }, + { + fileId = "199523", + text = "horde_metal05.m2", + value = "horde_metal05.m2", + }, + { + fileId = "199524", + text = "horde_metal06.m2", + value = "horde_metal06.m2", + }, + { + fileId = "199526", + text = "leather_level01.m2", + value = "leather_level01.m2", + }, + { + fileId = "199527", + text = "leather_level02.m2", + value = "leather_level02.m2", + }, + { + fileId = "199528", + text = "leather_level03.m2", + value = "leather_level03.m2", + }, + { + fileId = "199529", + text = "leather_level04.m2", + value = "leather_level04.m2", + }, + { + fileId = "199530", + text = "leather_level05.m2", + value = "leather_level05.m2", + }, + { + fileId = "199531", + text = "leather_level06.m2", + value = "leather_level06.m2", + }, + { + fileId = "199536", + text = "metals_level01.m2", + value = "metals_level01.m2", + }, + { + fileId = "199537", + text = "metals_level02.m2", + value = "metals_level02.m2", + }, + { + fileId = "199538", + text = "metals_level03.m2", + value = "metals_level03.m2", + }, + { + fileId = "199539", + text = "metals_level04.m2", + value = "metals_level04.m2", + }, + { + fileId = "199540", + text = "metals_level05.m2", + value = "metals_level05.m2", + }, + { + fileId = "199541", + text = "metals_level06.m2", + value = "metals_level06.m2", + }, + }, + text = "ahnqiraj", + value = "ahnqiraj", + }, + { + children = { + { + fileId = "199546", + text = "baby_dw.m2", + value = "baby_dw.m2", + }, + { + fileId = "199547", + text = "baby_gn.m2", + value = "baby_gn.m2", + }, + { + fileId = "199548", + text = "baby_hu.m2", + value = "baby_hu.m2", + }, + { + fileId = "199549", + text = "baby_ne.m2", + value = "baby_ne.m2", + }, + { + fileId = "199550", + text = "baby_or.m2", + value = "baby_or.m2", + }, + { + fileId = "199551", + text = "baby_ta.m2", + value = "baby_ta.m2", + }, + { + fileId = "199552", + text = "baby_tr.m2", + value = "baby_tr.m2", + }, + }, + text = "babies", + value = "babies", + }, + { + children = { + { + fileId = "199562", + text = "final_stage.m2", + value = "final_stage.m2", + }, + }, + text = "band", + value = "band", + }, + { + children = { + { + fileId = "199563", + text = "barrel01.m2", + value = "barrel01.m2", + }, + { + fileId = "199565", + text = "barrellowpoly.m2", + value = "barrellowpoly.m2", + }, + { + fileId = "199566", + text = "brokenbarrel01.m2", + value = "brokenbarrel01.m2", + }, + { + fileId = "199567", + text = "brokenbarrel02.m2", + value = "brokenbarrel02.m2", + }, + }, + text = "barrel", + value = "barrel", + }, + { + children = { + { + fileId = "199571", + text = "newbindstone.m2", + value = "newbindstone.m2", + }, + }, + text = "bindstone", + value = "bindstone", + }, + { + children = { + { + fileId = "199572", + text = "bleacherseat1a.m2", + value = "bleacherseat1a.m2", + }, + { + fileId = "199573", + text = "bleacherseat1b.m2", + value = "bleacherseat1b.m2", + }, + { + fileId = "199574", + text = "bleacherseat1c.m2", + value = "bleacherseat1c.m2", + }, + { + fileId = "199575", + text = "bleacherseat1d.m2", + value = "bleacherseat1d.m2", + }, + { + fileId = "199576", + text = "bleacherswood01.m2", + value = "bleacherswood01.m2", + }, + }, + text = "bleachers", + value = "bleachers", + }, + { + children = { + { + fileId = "199577", + text = "beerfest_molemachine.m2", + value = "beerfest_molemachine.m2", + }, + { + fileId = "244221", + text = "beerfest_molemachine_anim_set2.m2", + value = "beerfest_molemachine_anim_set2.m2", + }, + }, + text = "brewfest", + value = "brewfest", + }, + { + children = { + { + fileId = "199580", + text = "brokenfreezingtrap.m2", + value = "brokenfreezingtrap.m2", + }, + }, + text = "brokentrap", + value = "brokentrap", + }, + { + children = { + { + fileId = "199591", + text = "g_nutcracker.m2", + value = "g_nutcracker.m2", + }, + { + fileId = "199592", + text = "g_xmaswreath.m2", + value = "g_xmaswreath.m2", + }, + { + fileId = "199594", + text = "lunarnewyear_lights.m2", + value = "lunarnewyear_lights.m2", + }, + { + fileId = "199595", + text = "lunarnewyear_lightsx3.m2", + value = "lunarnewyear_lightsx3.m2", + }, + { + fileId = "199596", + text = "mistletoe.m2", + value = "mistletoe.m2", + }, + { + fileId = "199597", + text = "mistletoe02.m2", + value = "mistletoe02.m2", + }, + { + fileId = "199600", + text = "xmas_lights.m2", + value = "xmas_lights.m2", + }, + { + fileId = "199601", + text = "xmas_lights_broken.m2", + value = "xmas_lights_broken.m2", + }, + { + fileId = "199602", + text = "xmas_lights_broken3x.m2", + value = "xmas_lights_broken3x.m2", + }, + { + fileId = "199603", + text = "xmas_lightsx3.m2", + value = "xmas_lightsx3.m2", + }, + { + fileId = "199604", + text = "xmasgift01.m2", + value = "xmasgift01.m2", + }, + { + fileId = "199605", + text = "xmasgift02.m2", + value = "xmasgift02.m2", + }, + { + fileId = "199606", + text = "xmasgift03.m2", + value = "xmasgift03.m2", + }, + { + fileId = "199607", + text = "xmasgift04.m2", + value = "xmasgift04.m2", + }, + { + fileId = "199608", + text = "xmasgift05.m2", + value = "xmasgift05.m2", + }, + { + fileId = "199609", + text = "xmasgift06.m2", + value = "xmasgift06.m2", + }, + { + fileId = "199610", + text = "xmasropeline.m2", + value = "xmasropeline.m2", + }, + { + fileId = "199611", + text = "xmasropelinepole.m2", + value = "xmasropelinepole.m2", + }, + { + fileId = "199612", + text = "xmasstocking01.m2", + value = "xmasstocking01.m2", + }, + { + fileId = "199613", + text = "xmasstocking02.m2", + value = "xmasstocking02.m2", + }, + { + fileId = "199614", + text = "xmasstocking03.m2", + value = "xmasstocking03.m2", + }, + { + fileId = "199615", + text = "xmastree_largealliance01.m2", + value = "xmastree_largealliance01.m2", + }, + { + fileId = "199616", + text = "xmastree_largealliance01white.m2", + value = "xmastree_largealliance01white.m2", + }, + { + fileId = "199617", + text = "xmastree_largehorde01.m2", + value = "xmastree_largehorde01.m2", + }, + { + fileId = "199618", + text = "xmastree_mediumalliance01.m2", + value = "xmastree_mediumalliance01.m2", + }, + { + fileId = "199619", + text = "xmastree_mediumhorde01.m2", + value = "xmastree_mediumhorde01.m2", + }, + }, + text = "christmas", + value = "christmas", + }, + { + children = { + { + fileId = "199632", + text = "crate01.m2", + value = "crate01.m2", + }, + }, + text = "crate01", + value = "crate01", + }, + { + children = { + { + fileId = "199634", + text = "crate02.m2", + value = "crate02.m2", + }, + }, + text = "crate02", + value = "crate02", + }, + { + children = { + { + fileId = "199636", + text = "cratealliancefirstaid01.m2", + value = "cratealliancefirstaid01.m2", + }, + { + fileId = "199639", + text = "cratehordefirstaid01.m2", + value = "cratehordefirstaid01.m2", + }, + }, + text = "cratesfirstaid", + value = "cratesfirstaid", + }, + { + children = { + { + fileId = "199640", + text = "dragonfootsoldierbones.m2", + value = "dragonfootsoldierbones.m2", + }, + }, + text = "creaturedeathskeletons", + value = "creaturedeathskeletons", + }, + { + children = { + { + fileId = "199642", + text = "darkportal01.m2", + value = "darkportal01.m2", + }, + { + fileId = "199643", + text = "darkportal_blasted_fx.m2", + value = "darkportal_blasted_fx.m2", + }, + }, + text = "darkportals", + value = "darkportals", + }, + { + children = { + { + fileId = "199652", + text = "deadtreelog01.m2", + value = "deadtreelog01.m2", + }, + { + fileId = "199653", + text = "deadtreelog02.m2", + value = "deadtreelog02.m2", + }, + { + fileId = "199654", + text = "deadtreelog03.m2", + value = "deadtreelog03.m2", + }, + { + fileId = "199655", + text = "deadtreelog04.m2", + value = "deadtreelog04.m2", + }, + }, + text = "deadtreelogs", + value = "deadtreelogs", + }, + { + children = { + { + fileId = "199660", + text = "bloodelffemaledeathskeleton.m2", + value = "bloodelffemaledeathskeleton.m2", + }, + { + fileId = "199661", + text = "bloodelfmaledeathskeleton.m2", + value = "bloodelfmaledeathskeleton.m2", + }, + { + fileId = "199664", + text = "draeneifemaledeathskeleton.m2", + value = "draeneifemaledeathskeleton.m2", + }, + { + fileId = "199665", + text = "draeneimaledeathskeleton.m2", + value = "draeneimaledeathskeleton.m2", + }, + { + fileId = "199666", + text = "dwarffemaledeathskeleton.m2", + value = "dwarffemaledeathskeleton.m2", + }, + { + fileId = "199667", + text = "dwarfmaledeathskeleton.m2", + value = "dwarfmaledeathskeleton.m2", + }, + { + fileId = "199668", + text = "gnomefemaledeathskeleton.m2", + value = "gnomefemaledeathskeleton.m2", + }, + { + fileId = "199669", + text = "gnomemaledeathskeleton.m2", + value = "gnomemaledeathskeleton.m2", + }, + { + fileId = "323069", + text = "goblinfemaledeathskeleton.m2", + value = "goblinfemaledeathskeleton.m2", + }, + { + fileId = "323070", + text = "goblinmaledeathskeleton.m2", + value = "goblinmaledeathskeleton.m2", + }, + { + fileId = "199670", + text = "humanfemaledeathskeleton.m2", + value = "humanfemaledeathskeleton.m2", + }, + { + fileId = "199671", + text = "humanmaledeathskeleton.m2", + value = "humanmaledeathskeleton.m2", + }, + { + fileId = "199672", + text = "nightelffemaledeathskeleton.m2", + value = "nightelffemaledeathskeleton.m2", + }, + { + fileId = "199673", + text = "nightelfmaledeathskeleton.m2", + value = "nightelfmaledeathskeleton.m2", + }, + { + fileId = "199674", + text = "orcfemaledeathskeleton.m2", + value = "orcfemaledeathskeleton.m2", + }, + { + fileId = "199675", + text = "orcmaledeathskeleton.m2", + value = "orcmaledeathskeleton.m2", + }, + { + fileId = "199676", + text = "scourgefemaledeathskeleton.m2", + value = "scourgefemaledeathskeleton.m2", + }, + { + fileId = "199677", + text = "scourgemaledeathskeleton.m2", + value = "scourgemaledeathskeleton.m2", + }, + { + fileId = "199678", + text = "taurenfemaledeathskeleton.m2", + value = "taurenfemaledeathskeleton.m2", + }, + { + fileId = "199679", + text = "taurenmaledeathskeleton.m2", + value = "taurenmaledeathskeleton.m2", + }, + { + fileId = "199680", + text = "trollfemaledeathskeleton.m2", + value = "trollfemaledeathskeleton.m2", + }, + { + fileId = "199681", + text = "trollmaledeathskeleton.m2", + value = "trollmaledeathskeleton.m2", + }, + { + fileId = "199682", + text = "vrykulmaledeathskeleton.m2", + value = "vrykulmaledeathskeleton.m2", + }, + }, + text = "deathskeletons", + value = "deathskeletons", + }, + { + children = { + { + fileId = "307542", + text = "diadelosmuertos_candyskull_01.m2", + value = "diadelosmuertos_candyskull_01.m2", + }, + { + fileId = "308311", + text = "diadelosmuertos_graveflowers_01.m2", + value = "diadelosmuertos_graveflowers_01.m2", + }, + { + fileId = "308312", + text = "diadelosmuertos_vaseflowers_01.m2", + value = "diadelosmuertos_vaseflowers_01.m2", + }, + }, + text = "diadelosmuertos", + value = "diadelosmuertos", + }, + { + children = { + { + fileId = "199683", + text = "directionalmarker.m2", + value = "directionalmarker.m2", + }, + { + fileId = "199684", + text = "directionalmarker02.m2", + value = "directionalmarker02.m2", + }, + }, + text = "directionalmarker", + value = "directionalmarker", + }, + { + children = { + { + fileId = "199686", + text = "doortest01.m2", + value = "doortest01.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "199687", + text = "duelingflag.m2", + value = "duelingflag.m2", + }, + }, + text = "duelingflag", + value = "duelingflag", + }, + { + children = { + { + fileId = "252136", + text = "springbouquet_01.m2", + value = "springbouquet_01.m2", + }, + { + fileId = "252137", + text = "springbouquet_02.m2", + value = "springbouquet_02.m2", + }, + { + fileId = "252138", + text = "springbouquet_03.m2", + value = "springbouquet_03.m2", + }, + { + fileId = "252139", + text = "springbouquet_04.m2", + value = "springbouquet_04.m2", + }, + }, + text = "easter", + value = "easter", + }, + { + children = { + { + fileId = "199691", + text = "easteregg01.m2", + value = "easteregg01.m2", + }, + { + fileId = "199693", + text = "easteregg02.m2", + value = "easteregg02.m2", + }, + { + fileId = "199695", + text = "easteregg03.m2", + value = "easteregg03.m2", + }, + { + fileId = "199697", + text = "easteregg04.m2", + value = "easteregg04.m2", + }, + { + fileId = "199699", + text = "easteregg05.m2", + value = "easteregg05.m2", + }, + }, + text = "eastereggs", + value = "eastereggs", + }, + { + children = { + { + fileId = "199701", + text = "spring.m2", + value = "spring.m2", + }, + { + fileId = "199702", + text = "spring02.m2", + value = "spring02.m2", + }, + }, + text = "engineering", + value = "engineering", + }, + { + children = { + { + fileId = "199704", + text = "featherbigblue.m2", + value = "featherbigblue.m2", + }, + { + fileId = "199706", + text = "featherbigbrown.m2", + value = "featherbigbrown.m2", + }, + { + fileId = "199708", + text = "featherbigred.m2", + value = "featherbigred.m2", + }, + }, + text = "feathers", + value = "feathers", + }, + { + children = { + { + fileId = "341250", + text = "fish_undead_01.m2", + value = "fish_undead_01.m2", + }, + { + fileId = "199710", + text = "fishskel01.m2", + value = "fishskel01.m2", + }, + { + fileId = "199712", + text = "fishskel02.m2", + value = "fishskel02.m2", + }, + }, + text = "fish", + value = "fish", + }, + { + children = { + { + fileId = "199713", + text = "floatingbarrel01.m2", + value = "floatingbarrel01.m2", + }, + { + fileId = "199714", + text = "floatingbarrel02.m2", + value = "floatingbarrel02.m2", + }, + { + fileId = "199715", + text = "floatingboards01.m2", + value = "floatingboards01.m2", + }, + { + fileId = "199716", + text = "floatingboardsburning01.m2", + value = "floatingboardsburning01.m2", + }, + { + fileId = "199717", + text = "floatingcoffin01.m2", + value = "floatingcoffin01.m2", + }, + { + fileId = "199718", + text = "floatingcrate01.m2", + value = "floatingcrate01.m2", + }, + { + fileId = "199719", + text = "floatingtree01.m2", + value = "floatingtree01.m2", + }, + { + fileId = "199720", + text = "floatingtree02.m2", + value = "floatingtree02.m2", + }, + { + fileId = "199721", + text = "floatingtree03.m2", + value = "floatingtree03.m2", + }, + }, + text = "floatingdebris", + value = "floatingdebris", + }, + { + children = { + { + fileId = "199723", + text = "flyingsmallinsects.m2", + value = "flyingsmallinsects.m2", + }, + }, + text = "flyinginsects", + value = "flyinginsects", + }, + { + children = { + { + fileId = "199724", + text = "fruit_apple.m2", + value = "fruit_apple.m2", + }, + { + fileId = "199725", + text = "fruit_banana.m2", + value = "fruit_banana.m2", + }, + { + fileId = "199726", + text = "fruit_bananabunch.m2", + value = "fruit_bananabunch.m2", + }, + { + fileId = "199727", + text = "fruit_melon.m2", + value = "fruit_melon.m2", + }, + { + fileId = "199728", + text = "fruit_melonslice01.m2", + value = "fruit_melonslice01.m2", + }, + { + fileId = "199729", + text = "fruit_melonslice02.m2", + value = "fruit_melonslice02.m2", + }, + { + fileId = "199730", + text = "fruit_orange.m2", + value = "fruit_orange.m2", + }, + { + fileId = "199731", + text = "fruit_orangeslice.m2", + value = "fruit_orangeslice.m2", + }, + { + fileId = "199732", + text = "fruit_pear.m2", + value = "fruit_pear.m2", + }, + { + fileId = "199734", + text = "fruitbowl_apples.m2", + value = "fruitbowl_apples.m2", + }, + { + fileId = "199735", + text = "fruitbowl_empty.m2", + value = "fruitbowl_empty.m2", + }, + { + fileId = "199736", + text = "fruitbowl_mixed.m2", + value = "fruitbowl_mixed.m2", + }, + }, + text = "fruits", + value = "fruits", + }, + { + children = { + { + children = { + { + fileId = "199737", + text = "barrel02.m2", + value = "barrel02.m2", + }, + { + fileId = "199739", + text = "crate03.m2", + value = "crate03.m2", + }, + { + fileId = "199742", + text = "exploding_package.m2", + value = "exploding_package.m2", + }, + { + fileId = "199744", + text = "lichcontainer01.m2", + value = "lichcontainer01.m2", + }, + { + fileId = "199745", + text = "sack01.m2", + value = "sack01.m2", + }, + { + fileId = "199746", + text = "sack02.m2", + value = "sack02.m2", + }, + { + fileId = "199748", + text = "titanchest.m2", + value = "titanchest.m2", + }, + { + fileId = "244222", + text = "titanchest_noanim.m2", + value = "titanchest_noanim.m2", + }, + { + fileId = "199751", + text = "titanvase01.m2", + value = "titanvase01.m2", + }, + { + fileId = "199753", + text = "titanvase02.m2", + value = "titanvase02.m2", + }, + }, + text = "containers", + value = "containers", + }, + { + children = { + { + fileId = "199754", + text = "bone01.m2", + value = "bone01.m2", + }, + { + fileId = "199755", + text = "bone02.m2", + value = "bone02.m2", + }, + }, + text = "refuse", + value = "refuse", + }, + }, + text = "furniture", + value = "furniture", + }, + { + children = { + { + fileId = "199756", + text = "gallows01.m2", + value = "gallows01.m2", + }, + }, + text = "gallows", + value = "gallows", + }, + { + children = { + { + fileId = "199757", + text = "graystone01.m2", + value = "graystone01.m2", + }, + { + fileId = "199758", + text = "graystone02.m2", + value = "graystone02.m2", + }, + }, + text = "graystone", + value = "graystone", + }, + { + children = { + { + fileId = "199760", + text = "guildvault_bloodelf_01.m2", + value = "guildvault_bloodelf_01.m2", + }, + { + fileId = "199763", + text = "guildvault_draenei_01.m2", + value = "guildvault_draenei_01.m2", + }, + { + fileId = "199765", + text = "guildvault_dwarf_01.m2", + value = "guildvault_dwarf_01.m2", + }, + { + fileId = "199767", + text = "guildvault_goblin_01.m2", + value = "guildvault_goblin_01.m2", + }, + { + fileId = "199769", + text = "guildvault_human_01.m2", + value = "guildvault_human_01.m2", + }, + { + fileId = "199770", + text = "guildvault_nightelf_01.m2", + value = "guildvault_nightelf_01.m2", + }, + { + fileId = "199772", + text = "guildvault_orc_01.m2", + value = "guildvault_orc_01.m2", + }, + { + fileId = "199777", + text = "guildvault_tauren_01.m2", + value = "guildvault_tauren_01.m2", + }, + { + fileId = "199779", + text = "guildvault_undercity_01.m2", + value = "guildvault_undercity_01.m2", + }, + }, + text = "guildbank", + value = "guildbank", + }, + { + children = { + { + fileId = "199786", + text = "burningash01.m2", + value = "burningash01.m2", + }, + { + fileId = "199787", + text = "burningwickerman01.m2", + value = "burningwickerman01.m2", + }, + { + fileId = "199788", + text = "hangingskulllight01.m2", + value = "hangingskulllight01.m2", + }, + { + fileId = "199789", + text = "hangingskulllight02.m2", + value = "hangingskulllight02.m2", + }, + }, + text = "halloween", + value = "halloween", + }, + { + children = { + { + fileId = "199795", + text = "hidestack01.m2", + value = "hidestack01.m2", + }, + { + fileId = "199796", + text = "hidestack02.m2", + value = "hidestack02.m2", + }, + }, + text = "hides", + value = "hides", + }, + { + children = { + { + fileId = "199797", + text = "bigcandle.m2", + value = "bigcandle.m2", + }, + { + fileId = "199801", + text = "candelabra01.m2", + value = "candelabra01.m2", + }, + { + fileId = "199802", + text = "candelabra02.m2", + value = "candelabra02.m2", + }, + { + fileId = "199803", + text = "candelabratallwall01.m2", + value = "candelabratallwall01.m2", + }, + { + fileId = "199804", + text = "candelabratallwall02.m2", + value = "candelabratallwall02.m2", + }, + { + fileId = "199806", + text = "candle01.m2", + value = "candle01.m2", + }, + { + fileId = "199807", + text = "candle02.m2", + value = "candle02.m2", + }, + { + fileId = "199808", + text = "candle03.m2", + value = "candle03.m2", + }, + { + fileId = "199809", + text = "candleblack01.m2", + value = "candleblack01.m2", + }, + { + fileId = "199810", + text = "candleoff01.m2", + value = "candleoff01.m2", + }, + { + fileId = "199811", + text = "candleoff02.m2", + value = "candleoff02.m2", + }, + { + fileId = "199812", + text = "candleoff03.m2", + value = "candleoff03.m2", + }, + { + fileId = "199813", + text = "chandelier01.m2", + value = "chandelier01.m2", + }, + { + fileId = "199815", + text = "freestandingtorch01.m2", + value = "freestandingtorch01.m2", + }, + { + fileId = "199816", + text = "freestandingtorch02.m2", + value = "freestandingtorch02.m2", + }, + { + fileId = "199817", + text = "freestandingtorch04_giant.m2", + value = "freestandingtorch04_giant.m2", + }, + { + fileId = "199818", + text = "freestandingtorch04_huge.m2", + value = "freestandingtorch04_huge.m2", + }, + { + fileId = "199819", + text = "freestandingtorch04_hugeblue.m2", + value = "freestandingtorch04_hugeblue.m2", + }, + { + fileId = "199820", + text = "generaltorch01.m2", + value = "generaltorch01.m2", + }, + { + fileId = "199821", + text = "generaltorch02.m2", + value = "generaltorch02.m2", + }, + { + fileId = "199823", + text = "torch.m2", + value = "torch.m2", + }, + { + fileId = "199825", + text = "torch_out.m2", + value = "torch_out.m2", + }, + }, + text = "lights", + value = "lights", + }, + { + children = { + { + fileId = "199829", + text = "firecrackerstring_blue01.m2", + value = "firecrackerstring_blue01.m2", + }, + { + fileId = "199830", + text = "firecrackerstring_red01.m2", + value = "firecrackerstring_red01.m2", + }, + { + fileId = "199832", + text = "luckymoneyenvelope_01.m2", + value = "luckymoneyenvelope_01.m2", + }, + { + fileId = "199834", + text = "lunarnewyear_heroportrait_dw.m2", + value = "lunarnewyear_heroportrait_dw.m2", + }, + { + fileId = "199836", + text = "lunarnewyear_heroportrait_gn.m2", + value = "lunarnewyear_heroportrait_gn.m2", + }, + { + fileId = "199838", + text = "lunarnewyear_heroportrait_hu.m2", + value = "lunarnewyear_heroportrait_hu.m2", + }, + { + fileId = "199840", + text = "lunarnewyear_heroportrait_ne.m2", + value = "lunarnewyear_heroportrait_ne.m2", + }, + { + fileId = "199842", + text = "lunarnewyear_heroportrait_or.m2", + value = "lunarnewyear_heroportrait_or.m2", + }, + { + fileId = "199844", + text = "lunarnewyear_heroportrait_sc.m2", + value = "lunarnewyear_heroportrait_sc.m2", + }, + { + fileId = "199846", + text = "lunarnewyear_heroportrait_ta.m2", + value = "lunarnewyear_heroportrait_ta.m2", + }, + { + fileId = "199848", + text = "lunarnewyear_heroportrait_tr.m2", + value = "lunarnewyear_heroportrait_tr.m2", + }, + { + fileId = "199849", + text = "lunarnewyearbanner_alliance_hanging.m2", + value = "lunarnewyearbanner_alliance_hanging.m2", + }, + { + fileId = "199850", + text = "lunarnewyearbanner_alliance_hanging02.m2", + value = "lunarnewyearbanner_alliance_hanging02.m2", + }, + { + fileId = "199851", + text = "lunarnewyearbanner_alliance_standing.m2", + value = "lunarnewyearbanner_alliance_standing.m2", + }, + { + fileId = "199852", + text = "lunarnewyearbanner_horde_hanging.m2", + value = "lunarnewyearbanner_horde_hanging.m2", + }, + { + fileId = "199853", + text = "lunarnewyearbanner_horde_hanging02.m2", + value = "lunarnewyearbanner_horde_hanging02.m2", + }, + { + fileId = "199854", + text = "lunarnewyearbanner_horde_standing.m2", + value = "lunarnewyearbanner_horde_standing.m2", + }, + { + fileId = "199855", + text = "lunarnewyearlantern_alliance_hanging.m2", + value = "lunarnewyearlantern_alliance_hanging.m2", + }, + { + fileId = "199856", + text = "lunarnewyearlantern_alliance_standing.m2", + value = "lunarnewyearlantern_alliance_standing.m2", + }, + { + fileId = "199857", + text = "lunarnewyearlantern_horde_hanging.m2", + value = "lunarnewyearlantern_horde_hanging.m2", + }, + { + fileId = "199858", + text = "lunarnewyearlantern_horde_standing.m2", + value = "lunarnewyearlantern_horde_standing.m2", + }, + }, + text = "lunarnewyear", + value = "lunarnewyear", + }, + { + children = { + { + fileId = "255235", + text = "maple_leaves01.m2", + value = "maple_leaves01.m2", + }, + }, + text = "mapleleaves", + value = "mapleleaves", + }, + { + children = { + { + fileId = "199860", + text = "metalbars01copper.m2", + value = "metalbars01copper.m2", + }, + { + fileId = "199861", + text = "metalbars01iron.m2", + value = "metalbars01iron.m2", + }, + { + fileId = "199862", + text = "metalbars01mithril.m2", + value = "metalbars01mithril.m2", + }, + { + fileId = "199863", + text = "metalbars01truesilver.m2", + value = "metalbars01truesilver.m2", + }, + { + fileId = "199867", + text = "metalbarstack01copper.m2", + value = "metalbarstack01copper.m2", + }, + { + fileId = "199868", + text = "metalbarstack01iron.m2", + value = "metalbarstack01iron.m2", + }, + { + fileId = "199869", + text = "metalbarstack01mithril.m2", + value = "metalbarstack01mithril.m2", + }, + { + fileId = "199870", + text = "metalbarstack01truesilver.m2", + value = "metalbarstack01truesilver.m2", + }, + { + fileId = "199871", + text = "metalbarstack02copper.m2", + value = "metalbarstack02copper.m2", + }, + { + fileId = "199872", + text = "metalbarstack02iron.m2", + value = "metalbarstack02iron.m2", + }, + { + fileId = "199873", + text = "metalbarstack02mithril.m2", + value = "metalbarstack02mithril.m2", + }, + { + fileId = "199874", + text = "metalbarstack02truesilver.m2", + value = "metalbarstack02truesilver.m2", + }, + }, + text = "metalbars", + value = "metalbars", + }, + { + children = { + { + children = { + { + fileId = "199876", + text = "caveminecar01.m2", + value = "caveminecar01.m2", + }, + { + fileId = "199880", + text = "caveminecarwrecked01.m2", + value = "caveminecarwrecked01.m2", + }, + { + fileId = "199881", + text = "caveminecarwrecked02.m2", + value = "caveminecarwrecked02.m2", + }, + { + fileId = "199882", + text = "caveminepulley01.m2", + value = "caveminepulley01.m2", + }, + { + fileId = "199883", + text = "caveminepulley02.m2", + value = "caveminepulley02.m2", + }, + }, + text = "minecars", + value = "minecars", + }, + { + children = { + { + fileId = "199885", + text = "pulley.m2", + value = "pulley.m2", + }, + }, + text = "pulleys", + value = "pulleys", + }, + { + children = { + { + fileId = "199886", + text = "caveminewheelbarrow01.m2", + value = "caveminewheelbarrow01.m2", + }, + }, + text = "wheelbarrow", + value = "wheelbarrow", + }, + }, + text = "misc", + value = "misc", + }, + { + children = { + { + fileId = "199889", + text = "beerfest_banner01.m2", + value = "beerfest_banner01.m2", + }, + { + fileId = "199891", + text = "beerfest_banner02.m2", + value = "beerfest_banner02.m2", + }, + { + fileId = "199892", + text = "beerfest_beervendor.m2", + value = "beerfest_beervendor.m2", + }, + { + fileId = "307570", + text = "beerfest_brazier_02.m2", + value = "beerfest_brazier_02.m2", + }, + { + fileId = "307572", + text = "beerfest_brazier_03.m2", + value = "beerfest_brazier_03.m2", + }, + { + fileId = "307574", + text = "beerfest_crate.m2", + value = "beerfest_crate.m2", + }, + { + fileId = "199893", + text = "beerfest_foodtent.m2", + value = "beerfest_foodtent.m2", + }, + { + fileId = "199894", + text = "beerfest_opentent.m2", + value = "beerfest_opentent.m2", + }, + { + fileId = "307411", + text = "beerfest_ribbon01huge.m2", + value = "beerfest_ribbon01huge.m2", + }, + { + fileId = "307412", + text = "beerfest_ribbon02.m2", + value = "beerfest_ribbon02.m2", + }, + { + fileId = "199896", + text = "beerfest_wagon.m2", + value = "beerfest_wagon.m2", + }, + { + fileId = "199897", + text = "beerfest_wagon_full.m2", + value = "beerfest_wagon_full.m2", + }, + { + fileId = "307224", + text = "beerfeststreamers.m2", + value = "beerfeststreamers.m2", + }, + { + fileId = "307228", + text = "beerfeststreamers_nonanimated.m2", + value = "beerfeststreamers_nonanimated.m2", + }, + { + fileId = "307226", + text = "beerfeststreamersx3.m2", + value = "beerfeststreamersx3.m2", + }, + { + fileId = "307227", + text = "beerfeststreamersx3_nonanimated.m2", + value = "beerfeststreamersx3_nonanimated.m2", + }, + { + fileId = "307409", + text = "beerfestwreath01.m2", + value = "beerfestwreath01.m2", + }, + { + fileId = "307410", + text = "beerfestwreathhanginghuge.m2", + value = "beerfestwreathhanginghuge.m2", + }, + { + fileId = "199901", + text = "flamingpumpkinhead.m2", + value = "flamingpumpkinhead.m2", + }, + { + fileId = "199902", + text = "pumpkinhead.m2", + value = "pumpkinhead.m2", + }, + }, + text = "oktoberfest", + value = "oktoberfest", + }, + { + children = { + { + fileId = "199904", + text = "ashenvalewisps.m2", + value = "ashenvalewisps.m2", + }, + { + fileId = "199905", + text = "aurablue.m2", + value = "aurablue.m2", + }, + { + fileId = "199906", + text = "aurabluehuge.m2", + value = "aurabluehuge.m2", + }, + { + fileId = "199907", + text = "aurablueshort.m2", + value = "aurablueshort.m2", + }, + { + fileId = "199908", + text = "aurabluetall.m2", + value = "aurabluetall.m2", + }, + { + fileId = "199909", + text = "aurablueverytall.m2", + value = "aurablueverytall.m2", + }, + { + fileId = "324992", + text = "aurablueverytall_v2.m2", + value = "aurablueverytall_v2.m2", + }, + { + fileId = "199910", + text = "auragreen.m2", + value = "auragreen.m2", + }, + { + fileId = "199911", + text = "auragreenshort.m2", + value = "auragreenshort.m2", + }, + { + fileId = "199912", + text = "auragreentall.m2", + value = "auragreentall.m2", + }, + { + fileId = "199913", + text = "auragreenverytall.m2", + value = "auragreenverytall.m2", + }, + { + fileId = "199914", + text = "aurapurple.m2", + value = "aurapurple.m2", + }, + { + fileId = "199915", + text = "aurapurpleshort.m2", + value = "aurapurpleshort.m2", + }, + { + fileId = "199916", + text = "aurapurpletall.m2", + value = "aurapurpletall.m2", + }, + { + fileId = "199917", + text = "aurapurpleverytall.m2", + value = "aurapurpleverytall.m2", + }, + { + fileId = "199918", + text = "aurared.m2", + value = "aurared.m2", + }, + { + fileId = "199919", + text = "auraredhuge.m2", + value = "auraredhuge.m2", + }, + { + fileId = "199920", + text = "auraredshort.m2", + value = "auraredshort.m2", + }, + { + fileId = "199921", + text = "auraredtall.m2", + value = "auraredtall.m2", + }, + { + fileId = "199922", + text = "auraredverytall.m2", + value = "auraredverytall.m2", + }, + { + fileId = "324993", + text = "auraredverytall_v2.m2", + value = "auraredverytall_v2.m2", + }, + { + fileId = "324994", + text = "aurawhiteverytall_v2.m2", + value = "aurawhiteverytall_v2.m2", + }, + { + fileId = "199923", + text = "aurayellow.m2", + value = "aurayellow.m2", + }, + { + fileId = "199924", + text = "aurayellowhuge.m2", + value = "aurayellowhuge.m2", + }, + { + fileId = "199925", + text = "aurayellowshort.m2", + value = "aurayellowshort.m2", + }, + { + fileId = "199926", + text = "aurayellowtall.m2", + value = "aurayellowtall.m2", + }, + { + fileId = "199927", + text = "aurayellowverytall.m2", + value = "aurayellowverytall.m2", + }, + { + fileId = "199929", + text = "blacksmith_smoke.m2", + value = "blacksmith_smoke.m2", + }, + { + fileId = "199930", + text = "blastedlandslightningbolt01.m2", + value = "blastedlandslightningbolt01.m2", + }, + { + fileId = "199932", + text = "bubbles01.m2", + value = "bubbles01.m2", + }, + { + fileId = "199933", + text = "bubblesb.m2", + value = "bubblesb.m2", + }, + { + fileId = "199934", + text = "bubblesb_bigemitter.m2", + value = "bubblesb_bigemitter.m2", + }, + { + fileId = "199935", + text = "ceilingdustemitter.m2", + value = "ceilingdustemitter.m2", + }, + { + fileId = "199938", + text = "druidwisp01.m2", + value = "druidwisp01.m2", + }, + { + fileId = "199939", + text = "dustwallowgroundfog.m2", + value = "dustwallowgroundfog.m2", + }, + { + fileId = "199940", + text = "dustwallowgroundfogplane.m2", + value = "dustwallowgroundfogplane.m2", + }, + { + fileId = "199941", + text = "feralaslightblue.m2", + value = "feralaslightblue.m2", + }, + { + fileId = "199942", + text = "feralaslightgreen.m2", + value = "feralaslightgreen.m2", + }, + { + fileId = "199944", + text = "feralaslightpurple.m2", + value = "feralaslightpurple.m2", + }, + { + fileId = "199945", + text = "feralaslightyellow.m2", + value = "feralaslightyellow.m2", + }, + { + fileId = "199946", + text = "flamecircle.m2", + value = "flamecircle.m2", + }, + { + fileId = "199947", + text = "flyswarms.m2", + value = "flyswarms.m2", + }, + { + fileId = "199948", + text = "fogbox.m2", + value = "fogbox.m2", + }, + { + fileId = "199949", + text = "fountainparticles.m2", + value = "fountainparticles.m2", + }, + { + fileId = "199950", + text = "greengroundfog.m2", + value = "greengroundfog.m2", + }, + { + fileId = "199951", + text = "greygroundfog.m2", + value = "greygroundfog.m2", + }, + { + fileId = "199954", + text = "housesmoke.m2", + value = "housesmoke.m2", + }, + { + fileId = "199956", + text = "lavaparticlesplash.m2", + value = "lavaparticlesplash.m2", + }, + { + fileId = "199957", + text = "lavasmokeemitter.m2", + value = "lavasmokeemitter.m2", + }, + { + fileId = "199958", + text = "lavasmokeemitterb.m2", + value = "lavasmokeemitterb.m2", + }, + { + fileId = "199959", + text = "lavasplashparticle.m2", + value = "lavasplashparticle.m2", + }, + { + fileId = "199962", + text = "mountaincaveriver.m2", + value = "mountaincaveriver.m2", + }, + { + fileId = "199964", + text = "orangegroundfog.m2", + value = "orangegroundfog.m2", + }, + { + fileId = "199965", + text = "outlanddemonglow.m2", + value = "outlanddemonglow.m2", + }, + { + fileId = "199967", + text = "purplegroundfog.m2", + value = "purplegroundfog.m2", + }, + { + fileId = "199968", + text = "shadowfangfog01.m2", + value = "shadowfangfog01.m2", + }, + { + fileId = "199969", + text = "shrineaurablue.m2", + value = "shrineaurablue.m2", + }, + { + fileId = "199970", + text = "steam02.m2", + value = "steam02.m2", + }, + { + fileId = "199971", + text = "steam03.m2", + value = "steam03.m2", + }, + { + fileId = "199972", + text = "steam04.m2", + value = "steam04.m2", + }, + { + fileId = "199973", + text = "sunkenflame01.m2", + value = "sunkenflame01.m2", + }, + }, + text = "particleemitters", + value = "particleemitters", + }, + { + children = { + { + fileId = "199975", + text = "plainrune.m2", + value = "plainrune.m2", + }, + { + fileId = "199976", + text = "runestone.m2", + value = "runestone.m2", + }, + }, + text = "plainrune", + value = "plainrune", + }, + { + children = { + { + fileId = "199981", + text = "plaquebronze01.m2", + value = "plaquebronze01.m2", + }, + { + fileId = "199983", + text = "plaquebronze02.m2", + value = "plaquebronze02.m2", + }, + { + fileId = "199985", + text = "plaquesilver01.m2", + value = "plaquesilver01.m2", + }, + { + fileId = "199987", + text = "plaquesilver02.m2", + value = "plaquesilver02.m2", + }, + { + fileId = "199989", + text = "plaquestone01.m2", + value = "plaquestone01.m2", + }, + }, + text = "plaque", + value = "plaque", + }, + { + children = { + { + fileId = "199991", + text = "postboxbloodelf.m2", + value = "postboxbloodelf.m2", + }, + { + fileId = "199993", + text = "postboxdwarf.m2", + value = "postboxdwarf.m2", + }, + { + fileId = "199996", + text = "postboxgnome.m2", + value = "postboxgnome.m2", + }, + { + fileId = "199999", + text = "postboxhuman.m2", + value = "postboxhuman.m2", + }, + { + fileId = "200002", + text = "postboxhumannorthrend.m2", + value = "postboxhumannorthrend.m2", + }, + { + fileId = "200004", + text = "postboxnightelf.m2", + value = "postboxnightelf.m2", + }, + { + fileId = "200007", + text = "postboxorc.m2", + value = "postboxorc.m2", + }, + { + fileId = "200010", + text = "postboxtauren.m2", + value = "postboxtauren.m2", + }, + { + fileId = "200012", + text = "postboxtroll.m2", + value = "postboxtroll.m2", + }, + { + fileId = "200014", + text = "postboxundead.m2", + value = "postboxundead.m2", + }, + { + fileId = "200015", + text = "postboxwolvar.m2", + value = "postboxwolvar.m2", + }, + }, + text = "postboxes", + value = "postboxes", + }, + { + children = { + { + fileId = "200017", + text = "nd_crashednecropolis_debri_01.m2", + value = "nd_crashednecropolis_debri_01.m2", + }, + { + fileId = "200018", + text = "nd_crashednecropolis_debri_02.m2", + value = "nd_crashednecropolis_debri_02.m2", + }, + { + fileId = "200019", + text = "nd_crashednecropolis_debri_03.m2", + value = "nd_crashednecropolis_debri_03.m2", + }, + { + fileId = "200020", + text = "nd_crashednecropolis_debri_04.m2", + value = "nd_crashednecropolis_debri_04.m2", + }, + { + fileId = "200021", + text = "slime_wall_orange_01.m2", + value = "slime_wall_orange_01.m2", + }, + }, + text = "scourge", + value = "scourge", + }, + { + children = { + { + fileId = "200024", + text = "shamanstone01.m2", + value = "shamanstone01.m2", + }, + }, + text = "shamanstone", + value = "shamanstone", + }, + { + children = { + { + fileId = "200030", + text = "rackshieldalliance01.m2", + value = "rackshieldalliance01.m2", + }, + { + fileId = "200031", + text = "rackshieldalliance02.m2", + value = "rackshieldalliance02.m2", + }, + { + fileId = "200032", + text = "rackshieldhorde01.m2", + value = "rackshieldhorde01.m2", + }, + { + fileId = "200033", + text = "rackshieldhorde02.m2", + value = "rackshieldhorde02.m2", + }, + }, + text = "shieldracks", + value = "shieldracks", + }, + { + children = { + { + children = { + { + fileId = "200038", + text = "hordezepanimation.m2", + value = "hordezepanimation.m2", + }, + }, + text = "hordezeppelinanimation", + value = "hordezeppelinanimation", + }, + { + children = { + { + children = { + { + fileId = "200041", + text = "icebreaker_paddlewheel.m2", + value = "icebreaker_paddlewheel.m2", + }, + }, + text = "paddlewheel", + value = "paddlewheel", + }, + { + fileId = "200045", + text = "transport_tuskarr_turtle.m2", + value = "transport_tuskarr_turtle.m2", + }, + { + fileId = "200046", + text = "transportship_ne_doodadsmoving.m2", + value = "transportship_ne_doodadsmoving.m2", + }, + { + fileId = "200047", + text = "transportship_ne_doodadsstationary.m2", + value = "transportship_ne_doodadsstationary.m2", + }, + { + fileId = "200048", + text = "transportship_ne_doodadsstationaryplanked.m2", + value = "transportship_ne_doodadsstationaryplanked.m2", + }, + { + fileId = "200049", + text = "transportship_sails.m2", + value = "transportship_sails.m2", + }, + { + fileId = "200050", + text = "vrykul_flame_particle.m2", + value = "vrykul_flame_particle.m2", + }, + }, + text = "shipanimation", + value = "shipanimation", + }, + { + children = { + { + fileId = "200052", + text = "shipramp01.m2", + value = "shipramp01.m2", + }, + { + fileId = "344554", + text = "shipramp_alliance_01.m2", + value = "shipramp_alliance_01.m2", + }, + { + fileId = "344793", + text = "shipramp_horde_01.m2", + value = "shipramp_horde_01.m2", + }, + }, + text = "shipramps", + value = "shipramps", + }, + { + children = { + { + fileId = "200053", + text = "zepanimation.m2", + value = "zepanimation.m2", + }, + }, + text = "zeppelinanimation", + value = "zeppelinanimation", + }, + }, + text = "ships", + value = "ships", + }, + { + children = { + { + fileId = "200056", + text = "chainedskeleton01.m2", + value = "chainedskeleton01.m2", + }, + { + fileId = "200057", + text = "chainedskeleton02.m2", + value = "chainedskeleton02.m2", + }, + { + fileId = "200058", + text = "chainedskeleton03.m2", + value = "chainedskeleton03.m2", + }, + { + fileId = "200059", + text = "chainedskeleton04.m2", + value = "chainedskeleton04.m2", + }, + { + fileId = "200060", + text = "chainedskeleton05.m2", + value = "chainedskeleton05.m2", + }, + { + fileId = "200061", + text = "chainedskeleton06.m2", + value = "chainedskeleton06.m2", + }, + { + fileId = "200062", + text = "lightskeletonlaying01.m2", + value = "lightskeletonlaying01.m2", + }, + { + fileId = "200063", + text = "lightskeletonlaying02.m2", + value = "lightskeletonlaying02.m2", + }, + { + fileId = "200064", + text = "lightskeletonlaying03.m2", + value = "lightskeletonlaying03.m2", + }, + { + fileId = "200065", + text = "lightskeletonsitting01.m2", + value = "lightskeletonsitting01.m2", + }, + { + fileId = "200066", + text = "lightskeletonsitting02.m2", + value = "lightskeletonsitting02.m2", + }, + { + fileId = "200067", + text = "lightskeletonsitting03.m2", + value = "lightskeletonsitting03.m2", + }, + { + fileId = "200068", + text = "lightskeletonsitting04.m2", + value = "lightskeletonsitting04.m2", + }, + { + fileId = "200070", + text = "skeletalservant01.m2", + value = "skeletalservant01.m2", + }, + { + fileId = "200071", + text = "skeletalservant02.m2", + value = "skeletalservant02.m2", + }, + { + fileId = "200072", + text = "skeletalservant03.m2", + value = "skeletalservant03.m2", + }, + }, + text = "skeletons", + value = "skeletons", + }, + { + children = { + { + fileId = "200078", + text = "summerfest_banner_01.m2", + value = "summerfest_banner_01.m2", + }, + { + fileId = "200079", + text = "summerfest_bonfire_base_01.m2", + value = "summerfest_bonfire_base_01.m2", + }, + { + fileId = "200080", + text = "summerfest_bonfire_large01.m2", + value = "summerfest_bonfire_large01.m2", + }, + { + fileId = "200081", + text = "summerfest_bonfire_large02.m2", + value = "summerfest_bonfire_large02.m2", + }, + { + fileId = "200082", + text = "summerfest_bonfire_large03.m2", + value = "summerfest_bonfire_large03.m2", + }, + { + fileId = "200083", + text = "summerfest_bonfire_large04.m2", + value = "summerfest_bonfire_large04.m2", + }, + { + fileId = "200084", + text = "summerfest_bonfire_off.m2", + value = "summerfest_bonfire_off.m2", + }, + { + fileId = "200085", + text = "summerfest_bonfire_on.m2", + value = "summerfest_bonfire_on.m2", + }, + { + fileId = "200086", + text = "summerfest_bonfire_small01.m2", + value = "summerfest_bonfire_small01.m2", + }, + { + fileId = "200087", + text = "summerfest_bonfire_small02.m2", + value = "summerfest_bonfire_small02.m2", + }, + { + fileId = "200088", + text = "summerfest_bonfire_small03.m2", + value = "summerfest_bonfire_small03.m2", + }, + { + fileId = "200089", + text = "summerfest_bonfire_small04.m2", + value = "summerfest_bonfire_small04.m2", + }, + { + fileId = "200090", + text = "summerfest_brazer_nocollision.m2", + value = "summerfest_brazer_nocollision.m2", + }, + { + fileId = "200091", + text = "summerfest_brazier_01.m2", + value = "summerfest_brazier_01.m2", + }, + { + fileId = "200092", + text = "summerfest_brazier_02.m2", + value = "summerfest_brazier_02.m2", + }, + { + fileId = "200093", + text = "summerfest_brazier_03.m2", + value = "summerfest_brazier_03.m2", + }, + { + fileId = "200094", + text = "summerfest_candle_01.m2", + value = "summerfest_candle_01.m2", + }, + { + fileId = "200095", + text = "summerfest_candle_02.m2", + value = "summerfest_candle_02.m2", + }, + { + fileId = "200096", + text = "summerfest_crate.m2", + value = "summerfest_crate.m2", + }, + { + fileId = "200098", + text = "summerfest_icestone_01.m2", + value = "summerfest_icestone_01.m2", + }, + { + fileId = "200099", + text = "summerfest_maypole.m2", + value = "summerfest_maypole.m2", + }, + { + fileId = "200101", + text = "summerfest_pavilion_01.m2", + value = "summerfest_pavilion_01.m2", + }, + { + fileId = "200102", + text = "summerfest_ribbon01huge.m2", + value = "summerfest_ribbon01huge.m2", + }, + { + fileId = "200103", + text = "summerfest_ribbon02.m2", + value = "summerfest_ribbon02.m2", + }, + { + fileId = "200104", + text = "summerfest_streamers.m2", + value = "summerfest_streamers.m2", + }, + { + fileId = "200106", + text = "summerfest_streamersx3.m2", + value = "summerfest_streamersx3.m2", + }, + { + fileId = "200107", + text = "summerfest_wreath01.m2", + value = "summerfest_wreath01.m2", + }, + { + fileId = "200108", + text = "summerfest_wreathfloating.m2", + value = "summerfest_wreathfloating.m2", + }, + { + fileId = "200109", + text = "summerfest_wreathhanginghuge.m2", + value = "summerfest_wreathhanginghuge.m2", + }, + }, + text = "summerfestival", + value = "summerfestival", + }, + { + children = { + { + fileId = "200117", + text = "testball.m2", + value = "testball.m2", + }, + }, + text = "testball", + value = "testball", + }, + { + children = { + { + fileId = "200118", + text = "g_cornucopia.m2", + value = "g_cornucopia.m2", + }, + { + fileId = "200119", + text = "g_indiancorn_basket.m2", + value = "g_indiancorn_basket.m2", + }, + { + fileId = "200120", + text = "g_pilgrimhat.m2", + value = "g_pilgrimhat.m2", + }, + { + fileId = "200121", + text = "g_pumpkin.m2", + value = "g_pumpkin.m2", + }, + { + fileId = "200122", + text = "g_pumpkinwhat.m2", + value = "g_pumpkinwhat.m2", + }, + { + fileId = "200123", + text = "g_squash01.m2", + value = "g_squash01.m2", + }, + { + fileId = "200124", + text = "g_squash02.m2", + value = "g_squash02.m2", + }, + { + fileId = "200125", + text = "g_squash03.m2", + value = "g_squash03.m2", + }, + { + fileId = "200126", + text = "g_squash04.m2", + value = "g_squash04.m2", + }, + { + fileId = "200127", + text = "g_squashgreen.m2", + value = "g_squashgreen.m2", + }, + { + fileId = "200128", + text = "g_squashlong.m2", + value = "g_squashlong.m2", + }, + { + fileId = "304814", + text = "g_thanksgivingchair_01.m2", + value = "g_thanksgivingchair_01.m2", + }, + { + fileId = "304815", + text = "g_thanksgivingplate_01.m2", + value = "g_thanksgivingplate_01.m2", + }, + { + fileId = "249668", + text = "g_thanksgivingtable_01.m2", + value = "g_thanksgivingtable_01.m2", + }, + { + fileId = "314742", + text = "g_thanksgivingtable_01_collision.m2", + value = "g_thanksgivingtable_01_collision.m2", + }, + }, + text = "thanksgiving", + value = "thanksgiving", + }, + { + children = { + { + fileId = "2199319", + text = "spellobject_invisibletrap.m2", + value = "spellobject_invisibletrap.m2", + }, + }, + text = "traps", + value = "traps", + }, + { + children = { + { + fileId = "200135", + text = "goldpilelarge01.m2", + value = "goldpilelarge01.m2", + }, + { + fileId = "200136", + text = "goldpilemedium01.m2", + value = "goldpilemedium01.m2", + }, + { + fileId = "200137", + text = "goldpilesmall01.m2", + value = "goldpilesmall01.m2", + }, + }, + text = "treasurepiles", + value = "treasurepiles", + }, + { + children = { + { + fileId = "200143", + text = "gryphonroost_ruined.m2", + value = "gryphonroost_ruined.m2", + }, + { + fileId = "200151", + text = "tugofwar_dustextractor.m2", + value = "tugofwar_dustextractor.m2", + }, + { + fileId = "200152", + text = "tugofwar_reddustbag01.m2", + value = "tugofwar_reddustbag01.m2", + }, + { + fileId = "200153", + text = "tugofwar_redspiceexplosion.m2", + value = "tugofwar_redspiceexplosion.m2", + }, + { + fileId = "200154", + text = "tugofwar_redspicegeyser.m2", + value = "tugofwar_redspicegeyser.m2", + }, + { + fileId = "200155", + text = "tugofwar_redspicemissile.m2", + value = "tugofwar_redspicemissile.m2", + }, + { + fileId = "200156", + text = "tugofwar_redspicepile.m2", + value = "tugofwar_redspicepile.m2", + }, + }, + text = "tugofwar", + value = "tugofwar", + }, + { + children = { + { + fileId = "200163", + text = "valentinebasket_01.m2", + value = "valentinebasket_01.m2", + }, + { + fileId = "200165", + text = "valentines_blanket.m2", + value = "valentines_blanket.m2", + }, + { + fileId = "200167", + text = "valentinesarc.m2", + value = "valentinesarc.m2", + }, + { + fileId = "200170", + text = "valentinescandle.m2", + value = "valentinescandle.m2", + }, + { + fileId = "200172", + text = "valentineschocolate.m2", + value = "valentineschocolate.m2", + }, + { + fileId = "200174", + text = "valentineschocolategreen.m2", + value = "valentineschocolategreen.m2", + }, + { + fileId = "200176", + text = "valentineschocolatepurple.m2", + value = "valentineschocolatepurple.m2", + }, + { + fileId = "200178", + text = "valentineschocolateyellow.m2", + value = "valentineschocolateyellow.m2", + }, + { + fileId = "200180", + text = "valentinescolognebottle.m2", + value = "valentinescolognebottle.m2", + }, + { + fileId = "200181", + text = "valentinescrate.m2", + value = "valentinescrate.m2", + }, + { + fileId = "200183", + text = "valentinesperfumebottle.m2", + value = "valentinesperfumebottle.m2", + }, + { + fileId = "200185", + text = "valentinesplant.m2", + value = "valentinesplant.m2", + }, + { + fileId = "200187", + text = "valentinesribbon01.m2", + value = "valentinesribbon01.m2", + }, + { + fileId = "200188", + text = "valentinesribbon01huge.m2", + value = "valentinesribbon01huge.m2", + }, + { + fileId = "200189", + text = "valentinesribbon02.m2", + value = "valentinesribbon02.m2", + }, + { + fileId = "200190", + text = "valentinesstreamers.m2", + value = "valentinesstreamers.m2", + }, + { + fileId = "200191", + text = "valentinesstreamersx3.m2", + value = "valentinesstreamersx3.m2", + }, + { + fileId = "200192", + text = "valentineswreath01.m2", + value = "valentineswreath01.m2", + }, + { + fileId = "200193", + text = "valentineswreath01huge.m2", + value = "valentineswreath01huge.m2", + }, + { + fileId = "200194", + text = "valentineswreathfloating.m2", + value = "valentineswreathfloating.m2", + }, + { + fileId = "200195", + text = "valentineswreathhanging.m2", + value = "valentineswreathhanging.m2", + }, + { + fileId = "200196", + text = "valentineswreathhanginghuge.m2", + value = "valentineswreathhanginghuge.m2", + }, + { + fileId = "200197", + text = "valentineumbrella_01.m2", + value = "valentineumbrella_01.m2", + }, + }, + text = "valentinesday", + value = "valentinesday", + }, + { + children = { + { + children = { + { + fileId = "200200", + text = "cavewallbones01.m2", + value = "cavewallbones01.m2", + }, + { + fileId = "200201", + text = "cavewallbones02.m2", + value = "cavewallbones02.m2", + }, + }, + text = "bones", + value = "bones", + }, + }, + text = "wall", + value = "wall", + }, + { + children = { + { + fileId = "200202", + text = "newwaterfall.m2", + value = "newwaterfall.m2", + }, + { + fileId = "200203", + text = "waterfall-long.m2", + value = "waterfall-long.m2", + }, + }, + text = "waterfall", + value = "waterfall", + }, + { + children = { + { + fileId = "200204", + text = "damwaterfall01.m2", + value = "damwaterfall01.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + { + children = { + { + fileId = "200208", + text = "weaponcratealliancesword.m2", + value = "weaponcratealliancesword.m2", + }, + { + fileId = "200209", + text = "weaponcrateallianceswordlid.m2", + value = "weaponcrateallianceswordlid.m2", + }, + { + fileId = "200210", + text = "weaponcrateallianceswordopen.m2", + value = "weaponcrateallianceswordopen.m2", + }, + { + fileId = "200211", + text = "weaponcratehordeaxe.m2", + value = "weaponcratehordeaxe.m2", + }, + { + fileId = "200212", + text = "weaponcratehordeaxelid.m2", + value = "weaponcratehordeaxelid.m2", + }, + { + fileId = "200213", + text = "weaponcratehordeaxeopen.m2", + value = "weaponcratehordeaxeopen.m2", + }, + }, + text = "weaponcrates", + value = "weaponcrates", + }, + { + children = { + { + fileId = "244229", + text = "axe_northrend_b2_01.m2", + value = "axe_northrend_b2_01.m2", + }, + { + fileId = "244230", + text = "axe_northrend_b_01.m2", + value = "axe_northrend_b_01.m2", + }, + { + fileId = "244231", + text = "axe_northrend_c_03.m2", + value = "axe_northrend_c_03.m2", + }, + { + fileId = "200214", + text = "bone_bow.m2", + value = "bone_bow.m2", + }, + { + fileId = "200215", + text = "bone_shield.m2", + value = "bone_shield.m2", + }, + { + fileId = "200217", + text = "boneclub01.m2", + value = "boneclub01.m2", + }, + { + fileId = "244232", + text = "bow_crossbow_northrend_b_01.m2", + value = "bow_crossbow_northrend_b_01.m2", + }, + { + fileId = "244233", + text = "bow_crossbow_pvpalliance_a_01.m2", + value = "bow_crossbow_pvpalliance_a_01.m2", + }, + { + fileId = "244234", + text = "bow_northrend_b_03.m2", + value = "bow_northrend_b_03.m2", + }, + { + fileId = "244235", + text = "bow_pvphorde_a_01.m2", + value = "bow_pvphorde_a_01.m2", + }, + { + fileId = "200218", + text = "caveman_club01.m2", + value = "caveman_club01.m2", + }, + { + fileId = "244236", + text = "firearm_rifle_dalaran_d_01.m2", + value = "firearm_rifle_dalaran_d_01.m2", + }, + { + fileId = "200219", + text = "flint_club01.m2", + value = "flint_club01.m2", + }, + { + fileId = "200220", + text = "flint_spear02.m2", + value = "flint_spear02.m2", + }, + { + fileId = "200223", + text = "flintspear01.m2", + value = "flintspear01.m2", + }, + { + fileId = "244237", + text = "hammer_maul_b_02.m2", + value = "hammer_maul_b_02.m2", + }, + { + fileId = "244238", + text = "hammer_pvpalliance_a_01.m2", + value = "hammer_pvpalliance_a_01.m2", + }, + { + fileId = "244239", + text = "hammer_pvphorde_a_01.m2", + value = "hammer_pvphorde_a_01.m2", + }, + { + fileId = "200225", + text = "knotted_club01.m2", + value = "knotted_club01.m2", + }, + { + fileId = "200227", + text = "leather_shield.m2", + value = "leather_shield.m2", + }, + { + fileId = "244240", + text = "mace_dalaran_d_01.m2", + value = "mace_dalaran_d_01.m2", + }, + { + fileId = "244241", + text = "mace_northrend_b_02.m2", + value = "mace_northrend_b_02.m2", + }, + { + fileId = "330066", + text = "mohawkgrenade.m2", + value = "mohawkgrenade.m2", + }, + { + fileId = "200228", + text = "naga_trident.m2", + value = "naga_trident.m2", + }, + { + fileId = "244242", + text = "shield_pvpalliance.m2", + value = "shield_pvpalliance.m2", + }, + { + fileId = "244243", + text = "shield_pvphorde.m2", + value = "shield_pvphorde.m2", + }, + { + fileId = "200233", + text = "skullclub01.m2", + value = "skullclub01.m2", + }, + { + fileId = "200234", + text = "skullspear01.m2", + value = "skullspear01.m2", + }, + { + fileId = "200235", + text = "spiked_club01.m2", + value = "spiked_club01.m2", + }, + { + fileId = "244244", + text = "stave_blood_a_01.m2", + value = "stave_blood_a_01.m2", + }, + { + fileId = "244245", + text = "stave_dalaran_d_01.m2", + value = "stave_dalaran_d_01.m2", + }, + { + fileId = "244246", + text = "stave_jeweled_d_01.m2", + value = "stave_jeweled_d_01.m2", + }, + { + fileId = "244247", + text = "stave_long_d_04.m2", + value = "stave_long_d_04.m2", + }, + { + fileId = "244248", + text = "stave_sunwell_d_01.m2", + value = "stave_sunwell_d_01.m2", + }, + { + fileId = "200237", + text = "steelspear01.m2", + value = "steelspear01.m2", + }, + { + fileId = "200238", + text = "stone_club01.m2", + value = "stone_club01.m2", + }, + { + fileId = "200239", + text = "stone_spear01.m2", + value = "stone_spear01.m2", + }, + { + fileId = "244249", + text = "sword_dalaran_d_01.m2", + value = "sword_dalaran_d_01.m2", + }, + { + fileId = "244250", + text = "sword_long_d_02.m2", + value = "sword_long_d_02.m2", + }, + { + fileId = "244251", + text = "sword_northrend_d_01.m2", + value = "sword_northrend_d_01.m2", + }, + { + fileId = "244252", + text = "wand_draenei_a_01.m2", + value = "wand_draenei_a_01.m2", + }, + { + fileId = "244253", + text = "wand_jeweled_b_01.m2", + value = "wand_jeweled_b_01.m2", + }, + { + fileId = "244254", + text = "wand_jeweled_b_02.m2", + value = "wand_jeweled_b_02.m2", + }, + { + fileId = "244255", + text = "wand_outlandraid_d_01.m2", + value = "wand_outlandraid_d_01.m2", + }, + { + fileId = "244256", + text = "wand_standard_a_01.m2", + value = "wand_standard_a_01.m2", + }, + { + fileId = "200243", + text = "wicker_bow.m2", + value = "wicker_bow.m2", + }, + { + fileId = "200244", + text = "wicker_shield.m2", + value = "wicker_shield.m2", + }, + { + fileId = "200246", + text = "woodclub01.m2", + value = "woodclub01.m2", + }, + }, + text = "weapons", + value = "weapons", + }, + { + children = { + { + fileId = "200252", + text = "well.m2", + value = "well.m2", + }, + }, + text = "well", + value = "well", + }, + { + children = { + { + fileId = "200254", + text = "dustwestfall.m2", + value = "dustwestfall.m2", + }, + { + fileId = "200256", + text = "snowdunmorogh.m2", + value = "snowdunmorogh.m2", + }, + }, + text = "windblown", + value = "windblown", + }, + { + children = { + { + fileId = "200257", + text = "windowbeam01.m2", + value = "windowbeam01.m2", + }, + { + fileId = "200258", + text = "windowbeam02.m2", + value = "windowbeam02.m2", + }, + }, + text = "windowbeam", + value = "windowbeam", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + { + children = { + { + children = { + { + fileId = "200264", + text = "battlefieldbanner_state_base_plaguelands.m2", + value = "battlefieldbanner_state_base_plaguelands.m2", + }, + { + fileId = "200265", + text = "battlefieldbanner_state_flaga_plaguelands.m2", + value = "battlefieldbanner_state_flaga_plaguelands.m2", + }, + { + fileId = "200266", + text = "battlefieldbanner_state_flagh_plaguelands.m2", + value = "battlefieldbanner_state_flagh_plaguelands.m2", + }, + { + fileId = "200267", + text = "battlefieldbanner_state_flagn_plaguelands.m2", + value = "battlefieldbanner_state_flagn_plaguelands.m2", + }, + { + fileId = "200268", + text = "battlefieldbanneralliance.m2", + value = "battlefieldbanneralliance.m2", + }, + { + fileId = "200269", + text = "battlefieldbanneralliance_static.m2", + value = "battlefieldbanneralliance_static.m2", + }, + { + fileId = "244257", + text = "battlefieldbanneralliance_static_wall.m2", + value = "battlefieldbanneralliance_static_wall.m2", + }, + { + fileId = "200270", + text = "battlefieldbanneralliancebw.m2", + value = "battlefieldbanneralliancebw.m2", + }, + { + fileId = "200271", + text = "battlefieldbanneralliancebwflagonly.m2", + value = "battlefieldbanneralliancebwflagonly.m2", + }, + { + fileId = "200272", + text = "battlefieldbannerallianceflagonly.m2", + value = "battlefieldbannerallianceflagonly.m2", + }, + { + fileId = "200273", + text = "battlefieldbanneralliancelarge.m2", + value = "battlefieldbanneralliancelarge.m2", + }, + { + fileId = "200274", + text = "battlefieldbanneralliancelargebw.m2", + value = "battlefieldbanneralliancelargebw.m2", + }, + { + fileId = "200275", + text = "battlefieldbanneralliancestatusbar2min.m2", + value = "battlefieldbanneralliancestatusbar2min.m2", + }, + { + fileId = "200276", + text = "battlefieldbannerhorde.m2", + value = "battlefieldbannerhorde.m2", + }, + { + fileId = "200277", + text = "battlefieldbannerhorde_static.m2", + value = "battlefieldbannerhorde_static.m2", + }, + { + fileId = "244258", + text = "battlefieldbannerhorde_static_wall.m2", + value = "battlefieldbannerhorde_static_wall.m2", + }, + { + fileId = "244259", + text = "battlefieldbannerhorde_static_wall_yellow.m2", + value = "battlefieldbannerhorde_static_wall_yellow.m2", + }, + { + fileId = "200278", + text = "battlefieldbannerhordebw.m2", + value = "battlefieldbannerhordebw.m2", + }, + { + fileId = "200279", + text = "battlefieldbannerhordebwflagonly.m2", + value = "battlefieldbannerhordebwflagonly.m2", + }, + { + fileId = "200280", + text = "battlefieldbannerhordeflagonly.m2", + value = "battlefieldbannerhordeflagonly.m2", + }, + { + fileId = "200281", + text = "battlefieldbannerhordelarge.m2", + value = "battlefieldbannerhordelarge.m2", + }, + { + fileId = "200282", + text = "battlefieldbannerhordelargebw.m2", + value = "battlefieldbannerhordelargebw.m2", + }, + { + fileId = "200283", + text = "battlefieldbannerneutral.m2", + value = "battlefieldbannerneutral.m2", + }, + { + fileId = "200284", + text = "battlefieldbannerneutralflagonly.m2", + value = "battlefieldbannerneutralflagonly.m2", + }, + { + fileId = "200285", + text = "battlefieldbannerneutralpost.m2", + value = "battlefieldbannerneutralpost.m2", + }, + }, + text = "battlefieldbanners", + value = "battlefieldbanners", + }, + { + children = { + { + fileId = "200293", + text = "collisionwallpvp01.m2", + value = "collisionwallpvp01.m2", + }, + { + fileId = "200294", + text = "collisionwallpvp01_textured.m2", + value = "collisionwallpvp01_textured.m2", + }, + { + fileId = "527813", + text = "collisionwallpvp02.m2", + value = "collisionwallpvp02.m2", + }, + }, + text = "collisionwall", + value = "collisionwall", + }, + { + children = { + { + fileId = "200296", + text = "alliancectfflag.m2", + value = "alliancectfflag.m2", + }, + { + fileId = "244262", + text = "alliancectfflag_generic.m2", + value = "alliancectfflag_generic.m2", + }, + { + fileId = "200299", + text = "hordectfflag.m2", + value = "hordectfflag.m2", + }, + { + fileId = "200301", + text = "neutralctfflag.m2", + value = "neutralctfflag.m2", + }, + }, + text = "ctfflags", + value = "ctfflags", + }, + { + children = { + { + fileId = "200302", + text = "lowpolyfire.m2", + value = "lowpolyfire.m2", + }, + { + fileId = "244263", + text = "lowpolyfire_nosmoke.m2", + value = "lowpolyfire_nosmoke.m2", + }, + { + fileId = "200303", + text = "lowpolyfireanim.m2", + value = "lowpolyfireanim.m2", + }, + }, + text = "fires", + value = "fires", + }, + { + children = { + { + fileId = "309774", + text = "bf2_oildrips_01.m2", + value = "bf2_oildrips_01.m2", + }, + { + fileId = "309495", + text = "bf2_oiltower_01.m2", + value = "bf2_oiltower_01.m2", + }, + { + fileId = "309496", + text = "bf2_oiltower_02.m2", + value = "bf2_oiltower_02.m2", + }, + }, + text = "oilrigs", + value = "oilrigs", + }, + { + children = { + { + fileId = "311522", + text = "bf2_lighthousebeam_01.m2", + value = "bf2_lighthousebeam_01.m2", + }, + { + fileId = "306882", + text = "bf2_oilslick_02.m2", + value = "bf2_oilslick_02.m2", + }, + { + fileId = "306962", + text = "bf2_oilslick_03.m2", + value = "bf2_oilslick_03.m2", + }, + { + fileId = "308029", + text = "bf2_oilslick_04.m2", + value = "bf2_oilslick_04.m2", + }, + }, + text = "oilslick", + value = "oilslick", + }, + { + children = { + { + fileId = "307230", + text = "northbattleground_rocks02_01.m2", + value = "northbattleground_rocks02_01.m2", + }, + { + fileId = "307262", + text = "northbattleground_rocks02_02.m2", + value = "northbattleground_rocks02_02.m2", + }, + { + fileId = "307231", + text = "northbattleground_rocks02_03.m2", + value = "northbattleground_rocks02_03.m2", + }, + { + fileId = "307232", + text = "northbattleground_rocks02_04.m2", + value = "northbattleground_rocks02_04.m2", + }, + { + fileId = "307233", + text = "northbattleground_rocks02_05.m2", + value = "northbattleground_rocks02_05.m2", + }, + { + fileId = "307234", + text = "northbattleground_rocks02_06.m2", + value = "northbattleground_rocks02_06.m2", + }, + { + fileId = "306963", + text = "northbattleground_rocks_01.m2", + value = "northbattleground_rocks_01.m2", + }, + { + fileId = "306956", + text = "northbattleground_rocks_02.m2", + value = "northbattleground_rocks_02.m2", + }, + { + fileId = "306957", + text = "northbattleground_rocks_03.m2", + value = "northbattleground_rocks_03.m2", + }, + { + fileId = "306958", + text = "northbattleground_rocks_04.m2", + value = "northbattleground_rocks_04.m2", + }, + { + fileId = "306959", + text = "northbattleground_rocks_05.m2", + value = "northbattleground_rocks_05.m2", + }, + { + fileId = "306960", + text = "northbattleground_rocks_06.m2", + value = "northbattleground_rocks_06.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "200305", + text = "pvp_rune_berserker.m2", + value = "pvp_rune_berserker.m2", + }, + { + fileId = "200307", + text = "pvp_rune_invis.m2", + value = "pvp_rune_invis.m2", + }, + { + fileId = "200308", + text = "pvp_rune_restoration.m2", + value = "pvp_rune_restoration.m2", + }, + { + fileId = "200309", + text = "pvp_rune_speed.m2", + value = "pvp_rune_speed.m2", + }, + { + fileId = "200310", + text = "pvp_rune_speed_icon.m2", + value = "pvp_rune_speed_icon.m2", + }, + }, + text = "runes", + value = "runes", + }, + { + children = { + { + fileId = "311953", + text = "bg_teleporter_alliance_01.m2", + value = "bg_teleporter_alliance_01.m2", + }, + { + fileId = "315336", + text = "bg_teleporter_alliance_base.m2", + value = "bg_teleporter_alliance_base.m2", + }, + { + fileId = "313696", + text = "bg_teleporter_gunship_alliance_01.m2", + value = "bg_teleporter_gunship_alliance_01.m2", + }, + { + fileId = "315337", + text = "bg_teleporter_gunship_horde_01.m2", + value = "bg_teleporter_gunship_horde_01.m2", + }, + { + fileId = "315338", + text = "bg_teleporter_gunship_horde_base.m2", + value = "bg_teleporter_gunship_horde_base.m2", + }, + { + fileId = "312083", + text = "bg_teleporter_horde_01.m2", + value = "bg_teleporter_horde_01.m2", + }, + }, + text = "teleporters", + value = "teleporters", + }, + { + children = { + { + fileId = "200314", + text = "ud_pvptaunt.m2", + value = "ud_pvptaunt.m2", + }, + }, + text = "upperdeck", + value = "upperdeck", + }, + { + children = { + { + fileId = "200316", + text = "nightelfctfflagplaceglow.m2", + value = "nightelfctfflagplaceglow.m2", + }, + { + fileId = "200317", + text = "orcctfflagplaceglow.m2", + value = "orcctfflagplaceglow.m2", + }, + { + fileId = "200319", + text = "warsongctfnightelftoplight.m2", + value = "warsongctfnightelftoplight.m2", + }, + { + fileId = "200320", + text = "warsonggulch_orc_door01.m2", + value = "warsonggulch_orc_door01.m2", + }, + { + children = { + { + fileId = "200324", + text = "elfwindow.m2", + value = "elfwindow.m2", + }, + { + fileId = "200325", + text = "orcwindow.m2", + value = "orcwindow.m2", + }, + }, + text = "windows", + value = "windows", + }, + }, + text = "warsong", + value = "warsong", + }, + }, + text = "pvp", + value = "pvp", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "200328", + text = "razorfenforcefield01.m2", + value = "razorfenforcefield01.m2", + }, + }, + text = "doors", + value = "doors", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + }, + text = "quilboar", + value = "quilboar", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "200819", + text = "plant01.m2", + value = "plant01.m2", + }, + { + fileId = "200820", + text = "plant02.m2", + value = "plant02.m2", + }, + { + fileId = "200821", + text = "plant03.m2", + value = "plant03.m2", + }, + { + fileId = "200822", + text = "plant04.m2", + value = "plant04.m2", + }, + { + fileId = "200823", + text = "plant05.m2", + value = "plant05.m2", + }, + { + fileId = "200824", + text = "plant06.m2", + value = "plant06.m2", + }, + { + fileId = "200825", + text = "plant07.m2", + value = "plant07.m2", + }, + { + fileId = "200826", + text = "plant08.m2", + value = "plant08.m2", + }, + { + fileId = "200827", + text = "plant09.m2", + value = "plant09.m2", + }, + { + fileId = "200828", + text = "plant10.m2", + value = "plant10.m2", + }, + { + fileId = "200829", + text = "seaweed01.m2", + value = "seaweed01.m2", + }, + { + fileId = "200830", + text = "seaweed02.m2", + value = "seaweed02.m2", + }, + }, + text = "plants", + value = "plants", + }, + { + children = { + { + fileId = "200833", + text = "underwaterrock01.m2", + value = "underwaterrock01.m2", + }, + { + fileId = "200834", + text = "underwaterrock02.m2", + value = "underwaterrock02.m2", + }, + { + fileId = "200835", + text = "underwaterrock03.m2", + value = "underwaterrock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "200836", + text = "genericseaweed01.m2", + value = "genericseaweed01.m2", + }, + { + fileId = "200837", + text = "genericseaweed02.m2", + value = "genericseaweed02.m2", + }, + { + fileId = "200838", + text = "genericseaweed03.m2", + value = "genericseaweed03.m2", + }, + { + fileId = "200839", + text = "genericseaweed04.m2", + value = "genericseaweed04.m2", + }, + { + fileId = "200840", + text = "genericseaweed05.m2", + value = "genericseaweed05.m2", + }, + { + fileId = "200841", + text = "genericseaweed06.m2", + value = "genericseaweed06.m2", + }, + { + fileId = "200842", + text = "genericseaweed07.m2", + value = "genericseaweed07.m2", + }, + { + fileId = "200843", + text = "genericseaweed08.m2", + value = "genericseaweed08.m2", + }, + { + fileId = "200844", + text = "genericseaweed09.m2", + value = "genericseaweed09.m2", + }, + { + fileId = "200845", + text = "genericseaweed10.m2", + value = "genericseaweed10.m2", + }, + { + fileId = "200846", + text = "genericseaweed11.m2", + value = "genericseaweed11.m2", + }, + { + fileId = "200847", + text = "genericseaweed12.m2", + value = "genericseaweed12.m2", + }, + { + fileId = "200848", + text = "genericseaweed13.m2", + value = "genericseaweed13.m2", + }, + { + fileId = "200849", + text = "genericseaweed14.m2", + value = "genericseaweed14.m2", + }, + }, + text = "seaweed", + value = "seaweed", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "underwater", + value = "underwater", + }, + { + children = { + { + fileId = "803615", + text = "darkportal_temple_tcg_reward.m2", + value = "darkportal_temple_tcg_reward.m2", + }, + { + fileId = "306658", + text = "ud_bubblegum_01.m2", + value = "ud_bubblegum_01.m2", + }, + { + fileId = "244266", + text = "ud_confetti_01.m2", + value = "ud_confetti_01.m2", + }, + { + fileId = "306533", + text = "ud_flower_01.m2", + value = "ud_flower_01.m2", + }, + { + fileId = "306534", + text = "ud_flower_02.m2", + value = "ud_flower_02.m2", + }, + { + fileId = "306535", + text = "ud_flower_03.m2", + value = "ud_flower_03.m2", + }, + { + fileId = "306536", + text = "ud_flower_04.m2", + value = "ud_flower_04.m2", + }, + { + fileId = "306537", + text = "ud_flower_05.m2", + value = "ud_flower_05.m2", + }, + { + fileId = "306538", + text = "ud_flower_06.m2", + value = "ud_flower_06.m2", + }, + { + fileId = "306539", + text = "ud_flower_07.m2", + value = "ud_flower_07.m2", + }, + { + fileId = "306540", + text = "ud_flower_08.m2", + value = "ud_flower_08.m2", + }, + { + fileId = "306541", + text = "ud_flower_09.m2", + value = "ud_flower_09.m2", + }, + { + fileId = "306542", + text = "ud_flower_10.m2", + value = "ud_flower_10.m2", + }, + { + fileId = "306659", + text = "ud_flowers_01.m2", + value = "ud_flowers_01.m2", + }, + { + fileId = "306851", + text = "ud_ogrepinata.m2", + value = "ud_ogrepinata.m2", + }, + { + fileId = "306864", + text = "ud_pinatacandypile.m2", + value = "ud_pinatacandypile.m2", + }, + }, + text = "upperdeck", + value = "upperdeck", + }, + }, + text = "generic", + value = "generic", + }, + { + children = { + { + fileId = "200862", + text = "darkironkegshotgun.m2", + value = "darkironkegshotgun.m2", + }, + { + fileId = "244267", + text = "deathknight_deathgate.m2", + value = "deathknight_deathgate.m2", + }, + { + fileId = "200877", + text = "g_alchemyset01.m2", + value = "g_alchemyset01.m2", + }, + { + fileId = "200878", + text = "g_altarofsouls.m2", + value = "g_altarofsouls.m2", + }, + { + fileId = "200879", + text = "g_applebob_01.m2", + value = "g_applebob_01.m2", + }, + { + fileId = "200881", + text = "g_arcaneprison_01.m2", + value = "g_arcaneprison_01.m2", + }, + { + fileId = "200884", + text = "g_barrel.m2", + value = "g_barrel.m2", + }, + { + fileId = "200886", + text = "g_barrelexplode.m2", + value = "g_barrelexplode.m2", + }, + { + fileId = "200888", + text = "g_barrelred.m2", + value = "g_barrelred.m2", + }, + { + fileId = "200889", + text = "g_beartrap.m2", + value = "g_beartrap.m2", + }, + { + fileId = "244268", + text = "g_beartrap_hunter.m2", + value = "g_beartrap_hunter.m2", + }, + { + fileId = "200890", + text = "g_beartrapreverse.m2", + value = "g_beartrapreverse.m2", + }, + { + fileId = "200891", + text = "g_bellship.m2", + value = "g_bellship.m2", + }, + { + fileId = "200893", + text = "g_blanket.m2", + value = "g_blanket.m2", + }, + { + fileId = "200894", + text = "g_blanketgrill.m2", + value = "g_blanketgrill.m2", + }, + { + fileId = "200895", + text = "g_blanketumbrella.m2", + value = "g_blanketumbrella.m2", + }, + { + fileId = "200896", + text = "g_bloodcauldron.m2", + value = "g_bloodcauldron.m2", + }, + { + fileId = "244270", + text = "g_bomb_01.m2", + value = "g_bomb_01.m2", + }, + { + fileId = "298687", + text = "g_bomb_02.m2", + value = "g_bomb_02.m2", + }, + { + fileId = "200897", + text = "g_bombfactory.m2", + value = "g_bombfactory.m2", + }, + { + fileId = "200898", + text = "g_bombwagon.m2", + value = "g_bombwagon.m2", + }, + { + fileId = "200899", + text = "g_bonfire.m2", + value = "g_bonfire.m2", + }, + { + fileId = "200900", + text = "g_book01.m2", + value = "g_book01.m2", + }, + { + fileId = "200901", + text = "g_book01_black.m2", + value = "g_book01_black.m2", + }, + { + fileId = "200902", + text = "g_book01_blue.m2", + value = "g_book01_blue.m2", + }, + { + fileId = "200903", + text = "g_book01_brown.m2", + value = "g_book01_brown.m2", + }, + { + fileId = "200904", + text = "g_book01_green.m2", + value = "g_book01_green.m2", + }, + { + fileId = "200905", + text = "g_book01_red.m2", + value = "g_book01_red.m2", + }, + { + fileId = "200908", + text = "g_bookopenmedium06.m2", + value = "g_bookopenmedium06.m2", + }, + { + fileId = "200909", + text = "g_bookopenmedium07.m2", + value = "g_bookopenmedium07.m2", + }, + { + fileId = "200910", + text = "g_bookopenmediumblack.m2", + value = "g_bookopenmediumblack.m2", + }, + { + fileId = "200911", + text = "g_bookopenmediumblue.m2", + value = "g_bookopenmediumblue.m2", + }, + { + fileId = "200912", + text = "g_bookopenmediumbrown.m2", + value = "g_bookopenmediumbrown.m2", + }, + { + fileId = "200913", + text = "g_bookopenmediumgreen.m2", + value = "g_bookopenmediumgreen.m2", + }, + { + fileId = "200914", + text = "g_bookopenmediumred.m2", + value = "g_bookopenmediumred.m2", + }, + { + fileId = "200916", + text = "g_booktraparm.m2", + value = "g_booktraparm.m2", + }, + { + fileId = "200918", + text = "g_booktrapeye.m2", + value = "g_booktrapeye.m2", + }, + { + fileId = "200920", + text = "g_booktrapfire.m2", + value = "g_booktrapfire.m2", + }, + { + fileId = "200922", + text = "g_booktraplightevil.m2", + value = "g_booktraplightevil.m2", + }, + { + fileId = "200924", + text = "g_booktraplightgood.m2", + value = "g_booktraplightgood.m2", + }, + { + fileId = "200925", + text = "g_brazier01.m2", + value = "g_brazier01.m2", + }, + { + fileId = "200927", + text = "g_brazierorcblue.m2", + value = "g_brazierorcblue.m2", + }, + { + fileId = "200929", + text = "g_brazierorcgreen.m2", + value = "g_brazierorcgreen.m2", + }, + { + fileId = "200930", + text = "g_brazierorcpurple.m2", + value = "g_brazierorcpurple.m2", + }, + { + fileId = "200932", + text = "g_brazierorcred.m2", + value = "g_brazierorcred.m2", + }, + { + fileId = "200934", + text = "g_braziertroll.m2", + value = "g_braziertroll.m2", + }, + { + fileId = "200936", + text = "g_buttonbigred.m2", + value = "g_buttonbigred.m2", + }, + { + fileId = "200937", + text = "g_cage.m2", + value = "g_cage.m2", + }, + { + fileId = "200938", + text = "g_cage02.m2", + value = "g_cage02.m2", + }, + { + fileId = "200939", + text = "g_cage03.m2", + value = "g_cage03.m2", + }, + { + fileId = "200940", + text = "g_cagebase.m2", + value = "g_cagebase.m2", + }, + { + fileId = "200941", + text = "g_cagedoorbamboo.m2", + value = "g_cagedoorbamboo.m2", + }, + { + fileId = "200943", + text = "g_camerashake01.m2", + value = "g_camerashake01.m2", + }, + { + fileId = "200944", + text = "g_camerashake02.m2", + value = "g_camerashake02.m2", + }, + { + fileId = "200945", + text = "g_camerashake03.m2", + value = "g_camerashake03.m2", + }, + { + fileId = "200946", + text = "g_candybucket_01.m2", + value = "g_candybucket_01.m2", + }, + { + fileId = "200947", + text = "g_cannon01.m2", + value = "g_cannon01.m2", + }, + { + fileId = "200948", + text = "g_cauldron_blue.m2", + value = "g_cauldron_blue.m2", + }, + { + fileId = "200949", + text = "g_cauldron_red.m2", + value = "g_cauldron_red.m2", + }, + { + fileId = "200950", + text = "g_cavein.m2", + value = "g_cavein.m2", + }, + { + fileId = "200952", + text = "g_chestahnqiraj.m2", + value = "g_chestahnqiraj.m2", + }, + { + fileId = "200953", + text = "g_chesttitan.m2", + value = "g_chesttitan.m2", + }, + { + fileId = "200954", + text = "g_conjuretable.m2", + value = "g_conjuretable.m2", + }, + { + fileId = "200956", + text = "g_controlconsoletonk.m2", + value = "g_controlconsoletonk.m2", + }, + { + fileId = "200958", + text = "g_controlconsolezippelin.m2", + value = "g_controlconsolezippelin.m2", + }, + { + fileId = "200960", + text = "g_crate01.m2", + value = "g_crate01.m2", + }, + { + fileId = "200961", + text = "g_crate02.m2", + value = "g_crate02.m2", + }, + { + fileId = "200963", + text = "g_crateanimal.m2", + value = "g_crateanimal.m2", + }, + { + fileId = "244271", + text = "g_demoniccirclesummon_base.m2", + value = "g_demoniccirclesummon_base.m2", + }, + { + fileId = "200964", + text = "g_dragoneggblack.m2", + value = "g_dragoneggblack.m2", + }, + { + fileId = "200966", + text = "g_dragoneggchromatic.m2", + value = "g_dragoneggchromatic.m2", + }, + { + fileId = "200967", + text = "g_dragoneggfreeze.m2", + value = "g_dragoneggfreeze.m2", + }, + { + fileId = "200968", + text = "g_dragoneggfreezechromatic.m2", + value = "g_dragoneggfreezechromatic.m2", + }, + { + fileId = "200969", + text = "g_dragoneggprismatic01.m2", + value = "g_dragoneggprismatic01.m2", + }, + { + fileId = "200971", + text = "g_dwarvenmemorial.m2", + value = "g_dwarvenmemorial.m2", + }, + { + fileId = "200973", + text = "g_eggalien.m2", + value = "g_eggalien.m2", + }, + { + fileId = "200974", + text = "g_eggspider.m2", + value = "g_eggspider.m2", + }, + { + fileId = "200976", + text = "g_epicbrazierblue.m2", + value = "g_epicbrazierblue.m2", + }, + { + fileId = "200977", + text = "g_epicbrazieryellow.m2", + value = "g_epicbrazieryellow.m2", + }, + { + fileId = "200979", + text = "g_essencedistiller.m2", + value = "g_essencedistiller.m2", + }, + { + fileId = "200980", + text = "g_explodingballista.m2", + value = "g_explodingballista.m2", + }, + { + fileId = "200981", + text = "g_explosivetrap.m2", + value = "g_explosivetrap.m2", + }, + { + fileId = "200982", + text = "g_firework01blue.m2", + value = "g_firework01blue.m2", + }, + { + fileId = "200983", + text = "g_firework01green.m2", + value = "g_firework01green.m2", + }, + { + fileId = "200984", + text = "g_firework01purple.m2", + value = "g_firework01purple.m2", + }, + { + fileId = "200985", + text = "g_firework01red.m2", + value = "g_firework01red.m2", + }, + { + fileId = "200986", + text = "g_firework01white.m2", + value = "g_firework01white.m2", + }, + { + fileId = "200987", + text = "g_firework01yellow.m2", + value = "g_firework01yellow.m2", + }, + { + fileId = "200988", + text = "g_firework02blue.m2", + value = "g_firework02blue.m2", + }, + { + fileId = "200989", + text = "g_firework02green.m2", + value = "g_firework02green.m2", + }, + { + fileId = "200990", + text = "g_firework02purple.m2", + value = "g_firework02purple.m2", + }, + { + fileId = "200991", + text = "g_firework02red.m2", + value = "g_firework02red.m2", + }, + { + fileId = "200992", + text = "g_firework02white.m2", + value = "g_firework02white.m2", + }, + { + fileId = "200993", + text = "g_firework02yellow.m2", + value = "g_firework02yellow.m2", + }, + { + fileId = "200994", + text = "g_firework03red.m2", + value = "g_firework03red.m2", + }, + { + fileId = "200995", + text = "g_fireworklauncher01.m2", + value = "g_fireworklauncher01.m2", + }, + { + fileId = "200996", + text = "g_fireworklauncher02.m2", + value = "g_fireworklauncher02.m2", + }, + { + fileId = "200998", + text = "g_fireworktwirlysmall01gold.m2", + value = "g_fireworktwirlysmall01gold.m2", + }, + { + fileId = "201000", + text = "g_fishingbobber.m2", + value = "g_fishingbobber.m2", + }, + { + fileId = "251883", + text = "g_fishingbobber_02.m2", + value = "g_fishingbobber_02.m2", + }, + { + fileId = "251884", + text = "g_fishingbobber_03.m2", + value = "g_fishingbobber_03.m2", + }, + { + fileId = "251885", + text = "g_fishingbobber_04.m2", + value = "g_fishingbobber_04.m2", + }, + { + fileId = "251886", + text = "g_fishingbobber_05.m2", + value = "g_fishingbobber_05.m2", + }, + { + fileId = "251887", + text = "g_fishingbobber_06.m2", + value = "g_fishingbobber_06.m2", + }, + { + fileId = "201001", + text = "g_fissure.m2", + value = "g_fissure.m2", + }, + { + fileId = "201004", + text = "g_flarealliance.m2", + value = "g_flarealliance.m2", + }, + { + fileId = "201005", + text = "g_flarehorde.m2", + value = "g_flarehorde.m2", + }, + { + fileId = "201006", + text = "g_flyingmachine.m2", + value = "g_flyingmachine.m2", + }, + { + fileId = "201007", + text = "g_foggerpoison.m2", + value = "g_foggerpoison.m2", + }, + { + fileId = "201008", + text = "g_freezingtrap.m2", + value = "g_freezingtrap.m2", + }, + { + fileId = "201009", + text = "g_frosttrap.m2", + value = "g_frosttrap.m2", + }, + { + fileId = "201011", + text = "g_gastrap.m2", + value = "g_gastrap.m2", + }, + { + fileId = "201012", + text = "g_ghost_01.m2", + value = "g_ghost_01.m2", + }, + { + fileId = "201014", + text = "g_ghosttrap.m2", + value = "g_ghosttrap.m2", + }, + { + fileId = "201015", + text = "g_ghosttrapchest.m2", + value = "g_ghosttrapchest.m2", + }, + { + fileId = "244272", + text = "g_gnomemailbox.m2", + value = "g_gnomemailbox.m2", + }, + { + fileId = "201018", + text = "g_gnomemultibox.m2", + value = "g_gnomemultibox.m2", + }, + { + fileId = "201020", + text = "g_gnomesparklematic.m2", + value = "g_gnomesparklematic.m2", + }, + { + fileId = "201022", + text = "g_gnometerminal.m2", + value = "g_gnometerminal.m2", + }, + { + fileId = "201023", + text = "g_gnometerminal_collision.m2", + value = "g_gnometerminal_collision.m2", + }, + { + fileId = "201026", + text = "g_goblinteleporter.m2", + value = "g_goblinteleporter.m2", + }, + { + fileId = "201028", + text = "g_gongrfd.m2", + value = "g_gongrfd.m2", + }, + { + fileId = "201029", + text = "g_gongtroll01.m2", + value = "g_gongtroll01.m2", + }, + { + fileId = "201030", + text = "g_graveburst.m2", + value = "g_graveburst.m2", + }, + { + fileId = "201032", + text = "g_gravebursttanaris.m2", + value = "g_gravebursttanaris.m2", + }, + { + fileId = "244273", + text = "g_grizzlemaw_sapling_01.m2", + value = "g_grizzlemaw_sapling_01.m2", + }, + { + fileId = "201033", + text = "g_hangingskeleton_01.m2", + value = "g_hangingskeleton_01.m2", + }, + { + fileId = "201039", + text = "g_hologrambasetanaris.m2", + value = "g_hologrambasetanaris.m2", + }, + { + fileId = "201041", + text = "g_hologramdwarf.m2", + value = "g_hologramdwarf.m2", + }, + { + fileId = "201045", + text = "g_hologramtrogg.m2", + value = "g_hologramtrogg.m2", + }, + { + fileId = "201046", + text = "g_holylightwell.m2", + value = "g_holylightwell.m2", + }, + { + fileId = "201047", + text = "g_iceblock.m2", + value = "g_iceblock.m2", + }, + { + fileId = "201048", + text = "g_icespike_impact.m2", + value = "g_icespike_impact.m2", + }, + { + fileId = "201049", + text = "g_immolationtrap.m2", + value = "g_immolationtrap.m2", + }, + { + fileId = "201051", + text = "g_impbottle.m2", + value = "g_impbottle.m2", + }, + { + fileId = "201053", + text = "g_jewelblack.m2", + value = "g_jewelblack.m2", + }, + { + fileId = "201054", + text = "g_jewelblue.m2", + value = "g_jewelblue.m2", + }, + { + fileId = "201056", + text = "g_jewelred.m2", + value = "g_jewelred.m2", + }, + { + fileId = "201058", + text = "g_keg.m2", + value = "g_keg.m2", + }, + { + fileId = "201060", + text = "g_kruskspear.m2", + value = "g_kruskspear.m2", + }, + { + fileId = "201061", + text = "g_levermetal.m2", + value = "g_levermetal.m2", + }, + { + fileId = "201062", + text = "g_manarift.m2", + value = "g_manarift.m2", + }, + { + fileId = "201063", + text = "g_mapmarkeralliance.m2", + value = "g_mapmarkeralliance.m2", + }, + { + fileId = "201064", + text = "g_mapmarkerhorde.m2", + value = "g_mapmarkerhorde.m2", + }, + { + fileId = "201066", + text = "g_mapmarkerscourge.m2", + value = "g_mapmarkerscourge.m2", + }, + { + fileId = "201067", + text = "g_mausoleumseal.m2", + value = "g_mausoleumseal.m2", + }, + { + fileId = "201070", + text = "g_mausoleumsealtrigger.m2", + value = "g_mausoleumsealtrigger.m2", + }, + { + fileId = "201072", + text = "g_minecar.m2", + value = "g_minecar.m2", + }, + { + fileId = "201073", + text = "g_mortar.m2", + value = "g_mortar.m2", + }, + { + fileId = "201075", + text = "g_mummytroll.m2", + value = "g_mummytroll.m2", + }, + { + fileId = "201076", + text = "g_nagashellmissile.m2", + value = "g_nagashellmissile.m2", + }, + { + fileId = "201077", + text = "g_necropolis.m2", + value = "g_necropolis.m2", + }, + { + fileId = "201078", + text = "g_necropolis02.m2", + value = "g_necropolis02.m2", + }, + { + fileId = "201080", + text = "g_netablet.m2", + value = "g_netablet.m2", + }, + { + fileId = "244274", + text = "g_nexus_pulsatingplant.m2", + value = "g_nexus_pulsatingplant.m2", + }, + { + fileId = "201082", + text = "g_pirateflag_01.m2", + value = "g_pirateflag_01.m2", + }, + { + fileId = "201083", + text = "g_pirateflag_02.m2", + value = "g_pirateflag_02.m2", + }, + { + fileId = "201085", + text = "g_promotion_purple.m2", + value = "g_promotion_purple.m2", + }, + { + fileId = "201087", + text = "g_pulsatingplant.m2", + value = "g_pulsatingplant.m2", + }, + { + fileId = "201088", + text = "g_pumpkin_01.m2", + value = "g_pumpkin_01.m2", + }, + { + fileId = "201089", + text = "g_pumpkin_02.m2", + value = "g_pumpkin_02.m2", + }, + { + fileId = "201090", + text = "g_pumpkin_03.m2", + value = "g_pumpkin_03.m2", + }, + { + fileId = "201092", + text = "g_relicnecat.m2", + value = "g_relicnecat.m2", + }, + { + fileId = "201093", + text = "g_relicnecup.m2", + value = "g_relicnecup.m2", + }, + { + fileId = "201094", + text = "g_relicnefigurine.m2", + value = "g_relicnefigurine.m2", + }, + { + fileId = "201095", + text = "g_relicnesphere.m2", + value = "g_relicnesphere.m2", + }, + { + fileId = "201097", + text = "g_ritualofdoom.m2", + value = "g_ritualofdoom.m2", + }, + { + fileId = "201098", + text = "g_ritualofsouls.m2", + value = "g_ritualofsouls.m2", + }, + { + fileId = "201099", + text = "g_ritualofsouls_blue.m2", + value = "g_ritualofsouls_blue.m2", + }, + { + fileId = "201101", + text = "g_runeblue01.m2", + value = "g_runeblue01.m2", + }, + { + fileId = "201102", + text = "g_runeblue02.m2", + value = "g_runeblue02.m2", + }, + { + fileId = "201103", + text = "g_runegroundblue01.m2", + value = "g_runegroundblue01.m2", + }, + { + fileId = "201104", + text = "g_runegroundgreen01.m2", + value = "g_runegroundgreen01.m2", + }, + { + fileId = "201105", + text = "g_runegroundgreen01b.m2", + value = "g_runegroundgreen01b.m2", + }, + { + fileId = "201106", + text = "g_runegroundpurple01.m2", + value = "g_runegroundpurple01.m2", + }, + { + fileId = "201111", + text = "g_scourgerunecirclecrystal.m2", + value = "g_scourgerunecirclecrystal.m2", + }, + { + fileId = "201113", + text = "g_scroll01.m2", + value = "g_scroll01.m2", + }, + { + fileId = "201115", + text = "g_scryingbowl.m2", + value = "g_scryingbowl.m2", + }, + { + fileId = "244276", + text = "g_shellshield.m2", + value = "g_shellshield.m2", + }, + { + fileId = "201117", + text = "g_snaketrap.m2", + value = "g_snaketrap.m2", + }, + { + fileId = "201118", + text = "g_soundobject.m2", + value = "g_soundobject.m2", + }, + { + fileId = "201119", + text = "g_soundportal.m2", + value = "g_soundportal.m2", + }, + { + fileId = "201121", + text = "g_spiketrap.m2", + value = "g_spiketrap.m2", + }, + { + fileId = "201122", + text = "g_spirittotem.m2", + value = "g_spirittotem.m2", + }, + { + fileId = "201124", + text = "g_sporemushroom.m2", + value = "g_sporemushroom.m2", + }, + { + fileId = "201125", + text = "g_stonesofbinding.m2", + value = "g_stonesofbinding.m2", + }, + { + fileId = "201127", + text = "g_tentburninator.m2", + value = "g_tentburninator.m2", + }, + { + fileId = "201129", + text = "g_torch01.m2", + value = "g_torch01.m2", + }, + { + fileId = "201130", + text = "g_torchlever.m2", + value = "g_torchlever.m2", + }, + { + fileId = "201132", + text = "g_trapcannonfloor.m2", + value = "g_trapcannonfloor.m2", + }, + { + fileId = "201133", + text = "g_uldamanmap.m2", + value = "g_uldamanmap.m2", + }, + { + fileId = "201136", + text = "g_voodootrollforcefield.m2", + value = "g_voodootrollforcefield.m2", + }, + { + fileId = "249670", + text = "g_warlockmeetingportal.m2", + value = "g_warlockmeetingportal.m2", + }, + { + fileId = "201137", + text = "g_water_barrel_01.m2", + value = "g_water_barrel_01.m2", + }, + { + fileId = "201138", + text = "g_water_buckets_01.m2", + value = "g_water_buckets_01.m2", + }, + { + fileId = "201139", + text = "g_water_buckets_02.m2", + value = "g_water_buckets_02.m2", + }, + { + fileId = "201140", + text = "g_water_buckets_03.m2", + value = "g_water_buckets_03.m2", + }, + { + fileId = "244278", + text = "g_waterdrop_01.m2", + value = "g_waterdrop_01.m2", + }, + { + fileId = "201141", + text = "g_waterfallgeo.m2", + value = "g_waterfallgeo.m2", + }, + { + fileId = "201142", + text = "g_watermelon.m2", + value = "g_watermelon.m2", + }, + { + fileId = "201143", + text = "g_wellofsouls_channeling.m2", + value = "g_wellofsouls_channeling.m2", + }, + { + fileId = "201144", + text = "g_witchbroom_01.m2", + value = "g_witchbroom_01.m2", + }, + { + fileId = "201145", + text = "g_witchhat_01.m2", + value = "g_witchhat_01.m2", + }, + { + fileId = "201146", + text = "g_xmastree.m2", + value = "g_xmastree.m2", + }, + { + fileId = "201147", + text = "g_xposter.m2", + value = "g_xposter.m2", + }, + { + fileId = "201149", + text = "goblin_lottery.m2", + value = "goblin_lottery.m2", + }, + { + fileId = "201156", + text = "landminealteracvalley.m2", + value = "landminealteracvalley.m2", + }, + { + fileId = "201182", + text = "ud_discoball.m2", + value = "ud_discoball.m2", + }, + { + fileId = "253206", + text = "ud_foamsword_01.m2", + value = "ud_foamsword_01.m2", + }, + }, + text = "goober", + value = "goober", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "201190", + text = "ashenvalemannarothspear.m2", + value = "ashenvalemannarothspear.m2", + }, + }, + text = "mannarothspear", + value = "mannarothspear", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "201195", + text = "ashenvalerock01.m2", + value = "ashenvalerock01.m2", + }, + { + fileId = "201196", + text = "ashenvalerock02.m2", + value = "ashenvalerock02.m2", + }, + { + fileId = "201197", + text = "ashenvalerock03.m2", + value = "ashenvalerock03.m2", + }, + { + fileId = "201198", + text = "ashenvalerock04.m2", + value = "ashenvalerock04.m2", + }, + }, + text = "ashenvalerocks", + value = "ashenvalerocks", + }, + { + children = { + { + fileId = "201201", + text = "ashenvaleroots01.m2", + value = "ashenvaleroots01.m2", + }, + { + fileId = "201202", + text = "ashenvaleroots02.m2", + value = "ashenvaleroots02.m2", + }, + { + fileId = "201203", + text = "ashenvaleroots03.m2", + value = "ashenvaleroots03.m2", + }, + { + fileId = "201204", + text = "ashenvaleroots04.m2", + value = "ashenvaleroots04.m2", + }, + }, + text = "ashenvaleroots", + value = "ashenvaleroots", + }, + { + children = { + { + fileId = "201208", + text = "ashenvalestump01.m2", + value = "ashenvalestump01.m2", + }, + { + fileId = "201209", + text = "ashenvalestump02.m2", + value = "ashenvalestump02.m2", + }, + { + fileId = "201211", + text = "ashenvaletreestump01.m2", + value = "ashenvaletreestump01.m2", + }, + { + fileId = "201212", + text = "ashenvaletreestump02.m2", + value = "ashenvaletreestump02.m2", + }, + { + fileId = "201213", + text = "ashenvaletreestump03.m2", + value = "ashenvaletreestump03.m2", + }, + { + fileId = "201214", + text = "ashenvaletreestump04.m2", + value = "ashenvaletreestump04.m2", + }, + }, + text = "ashenvalestumps", + value = "ashenvalestumps", + }, + { + children = { + { + fileId = "201217", + text = "ashenvaletreelog01.m2", + value = "ashenvaletreelog01.m2", + }, + { + fileId = "201218", + text = "ashenvaletreelog02.m2", + value = "ashenvaletreelog02.m2", + }, + }, + text = "ashenvaletreelogs", + value = "ashenvaletreelogs", + }, + { + children = { + { + fileId = "201221", + text = "ashenvalecuttree01.m2", + value = "ashenvalecuttree01.m2", + }, + { + fileId = "201222", + text = "ashenvalecuttree02.m2", + value = "ashenvalecuttree02.m2", + }, + { + fileId = "201223", + text = "ashenvaletree01.m2", + value = "ashenvaletree01.m2", + }, + { + fileId = "201224", + text = "ashenvaletree02.m2", + value = "ashenvaletree02.m2", + }, + { + fileId = "201226", + text = "ashenvaletree03.m2", + value = "ashenvaletree03.m2", + }, + { + fileId = "201228", + text = "ashenvaletree04.m2", + value = "ashenvaletree04.m2", + }, + { + fileId = "201230", + text = "ashenvaletree05.m2", + value = "ashenvaletree05.m2", + }, + }, + text = "ashenvaletrees", + value = "ashenvaletrees", + }, + { + children = { + { + fileId = "201233", + text = "ashenvaleplantstardust.m2", + value = "ashenvaleplantstardust.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + fileId = "201235", + text = "ruinssatyraltpillar01.m2", + value = "ruinssatyraltpillar01.m2", + }, + { + fileId = "201236", + text = "ruinssatyrarch.m2", + value = "ruinssatyrarch.m2", + }, + { + fileId = "201238", + text = "ruinssatyrpillar01.m2", + value = "ruinssatyrpillar01.m2", + }, + { + fileId = "201240", + text = "ruinssatyrpillar02.m2", + value = "ruinssatyrpillar02.m2", + }, + { + fileId = "201241", + text = "ruinssatyrpillar03.m2", + value = "ruinssatyrpillar03.m2", + }, + { + fileId = "201246", + text = "ruinssatyrwall01.m2", + value = "ruinssatyrwall01.m2", + }, + { + fileId = "201247", + text = "ruinssatyrwall02.m2", + value = "ruinssatyrwall02.m2", + }, + { + fileId = "201248", + text = "ruinssatyrwall03.m2", + value = "ruinssatyrwall03.m2", + }, + { + fileId = "201249", + text = "ruinssatyrwall04.m2", + value = "ruinssatyrwall04.m2", + }, + { + fileId = "201250", + text = "ruinssatyrwall05.m2", + value = "ruinssatyrwall05.m2", + }, + { + fileId = "201251", + text = "ruinssatyrwall06.m2", + value = "ruinssatyrwall06.m2", + }, + }, + text = "satyrruins", + value = "satyrruins", + }, + { + children = { + { + fileId = "201252", + text = "ashensatyrtotem01.m2", + value = "ashensatyrtotem01.m2", + }, + { + fileId = "201253", + text = "ashensatyrtotem02.m2", + value = "ashensatyrtotem02.m2", + }, + { + fileId = "201254", + text = "ashensatyrtotem03.m2", + value = "ashensatyrtotem03.m2", + }, + { + fileId = "201255", + text = "ashensatyrtotem04.m2", + value = "ashensatyrtotem04.m2", + }, + { + fileId = "201256", + text = "ashensatyrtotem05.m2", + value = "ashensatyrtotem05.m2", + }, + }, + text = "satyrtotem", + value = "satyrtotem", + }, + { + children = { + { + fileId = "201263", + text = "corruptdryadshrine01.m2", + value = "corruptdryadshrine01.m2", + }, + { + fileId = "201264", + text = "dryadshrine01.m2", + value = "dryadshrine01.m2", + }, + { + fileId = "201265", + text = "dryadshrine02.m2", + value = "dryadshrine02.m2", + }, + { + fileId = "201267", + text = "neshrine.m2", + value = "neshrine.m2", + }, + { + fileId = "201269", + text = "neshrinesatyr.m2", + value = "neshrinesatyr.m2", + }, + }, + text = "shrines", + value = "shrines", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "ashenvale", + value = "ashenvale", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201271", + text = "arcanecrystal.m2", + value = "arcanecrystal.m2", + }, + }, + text = "arcanecrystal", + value = "arcanecrystal", + }, + { + children = { + { + fileId = "201273", + text = "azsharastonetablet01.m2", + value = "azsharastonetablet01.m2", + }, + { + fileId = "201275", + text = "azsharastonetablet02.m2", + value = "azsharastonetablet02.m2", + }, + { + fileId = "201276", + text = "azsharastonetablet03.m2", + value = "azsharastonetablet03.m2", + }, + { + fileId = "201277", + text = "azsharastonetablet04.m2", + value = "azsharastonetablet04.m2", + }, + }, + text = "stonetablets", + value = "stonetablets", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "201279", + text = "anemone01.m2", + value = "anemone01.m2", + }, + { + fileId = "201280", + text = "anemone02.m2", + value = "anemone02.m2", + }, + { + fileId = "201281", + text = "seaurchin01.m2", + value = "seaurchin01.m2", + }, + }, + text = "anemone", + value = "anemone", + }, + { + children = { + { + fileId = "201284", + text = "barnaclerock01.m2", + value = "barnaclerock01.m2", + }, + }, + text = "barnaclerock", + value = "barnaclerock", + }, + { + children = { + { + fileId = "201285", + text = "azsharabubble2.m2", + value = "azsharabubble2.m2", + }, + { + fileId = "201286", + text = "azsharabubbles.m2", + value = "azsharabubbles.m2", + }, + }, + text = "bubbles", + value = "bubbles", + }, + { + children = { + { + fileId = "201288", + text = "coral01.m2", + value = "coral01.m2", + }, + { + fileId = "201292", + text = "coraltree01.m2", + value = "coraltree01.m2", + }, + { + fileId = "201293", + text = "coraltree02.m2", + value = "coraltree02.m2", + }, + }, + text = "coral", + value = "coral", + }, + { + children = { + { + fileId = "201295", + text = "azsharadebriswall.m2", + value = "azsharadebriswall.m2", + }, + }, + text = "debriswall", + value = "debriswall", + }, + { + children = { + { + fileId = "201299", + text = "azharadragonstatue_01.m2", + value = "azharadragonstatue_01.m2", + }, + { + fileId = "201300", + text = "azharadragonstatue_02.m2", + value = "azharadragonstatue_02.m2", + }, + }, + text = "dragonstatues", + value = "dragonstatues", + }, + { + children = { + { + fileId = "201302", + text = "nagaflag01.m2", + value = "nagaflag01.m2", + }, + { + fileId = "201303", + text = "nagaflag02.m2", + value = "nagaflag02.m2", + }, + }, + text = "nagaflags", + value = "nagaflags", + }, + { + children = { + { + fileId = "201304", + text = "nagapagoda02.m2", + value = "nagapagoda02.m2", + }, + }, + text = "nagapagoda", + value = "nagapagoda", + }, + { + children = { + { + fileId = "201305", + text = "azshararock01.m2", + value = "azshararock01.m2", + }, + { + fileId = "201306", + text = "azshararock02.m2", + value = "azshararock02.m2", + }, + { + fileId = "201307", + text = "azshararock03.m2", + value = "azshararock03.m2", + }, + { + fileId = "201308", + text = "azshararock04.m2", + value = "azshararock04.m2", + }, + { + fileId = "201309", + text = "azshararock05.m2", + value = "azshararock05.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "201310", + text = "azsharashell01.m2", + value = "azsharashell01.m2", + }, + { + fileId = "201312", + text = "azsharashell02.m2", + value = "azsharashell02.m2", + }, + { + fileId = "201314", + text = "azsharashell03.m2", + value = "azsharashell03.m2", + }, + { + fileId = "201316", + text = "azsharashell04.m2", + value = "azsharashell04.m2", + }, + { + fileId = "201318", + text = "azsharashell05.m2", + value = "azsharashell05.m2", + }, + { + fileId = "201319", + text = "azsharashell06.m2", + value = "azsharashell06.m2", + }, + { + fileId = "201321", + text = "azsharashell07.m2", + value = "azsharashell07.m2", + }, + { + fileId = "201323", + text = "azsharashell08.m2", + value = "azsharashell08.m2", + }, + }, + text = "seashells", + value = "seashells", + }, + { + children = { + { + fileId = "2198499", + text = "seaweed01.m2", + value = "seaweed01.m2", + }, + { + fileId = "2198548", + text = "seaweed02.m2", + value = "seaweed02.m2", + }, + }, + text = "seaweed", + value = "seaweed", + }, + { + children = { + { + fileId = "201331", + text = "starfish02.m2", + value = "starfish02.m2", + }, + }, + text = "starfish", + value = "starfish", + }, + { + children = { + { + fileId = "201332", + text = "azr_tree01.m2", + value = "azr_tree01.m2", + }, + { + fileId = "201333", + text = "azr_tree02.m2", + value = "azr_tree02.m2", + }, + { + fileId = "201334", + text = "azr_tree03.m2", + value = "azr_tree03.m2", + }, + { + fileId = "201335", + text = "azr_tree04.m2", + value = "azr_tree04.m2", + }, + { + fileId = "201336", + text = "azr_tree05.m2", + value = "azr_tree05.m2", + }, + { + fileId = "201337", + text = "azr_tree06.m2", + value = "azr_tree06.m2", + }, + { + fileId = "201338", + text = "azr_tree07.m2", + value = "azr_tree07.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + { + children = { + { + children = { + { + fileId = "201351", + text = "anemity01_02.m2", + value = "anemity01_02.m2", + }, + }, + text = "anemity01_02000", + value = "anemity01_02000", + }, + { + children = { + { + fileId = "201352", + text = "barnaclerock01_04.m2", + value = "barnaclerock01_04.m2", + }, + }, + text = "barnaclerock01_04", + value = "barnaclerock01_04", + }, + { + children = { + { + fileId = "201354", + text = "coral03_01.m2", + value = "coral03_01.m2", + }, + }, + text = "coral03_01", + value = "coral03_01", + }, + { + children = { + { + fileId = "201355", + text = "coraltree01_06.m2", + value = "coraltree01_06.m2", + }, + }, + text = "coraltree01_06", + value = "coraltree01_06", + }, + { + children = { + { + fileId = "201356", + text = "coraltree02_07.m2", + value = "coraltree02_07.m2", + }, + }, + text = "coraltree02_07", + value = "coraltree02_07", + }, + { + children = { + { + fileId = "201357", + text = "seaurchin01_05.m2", + value = "seaurchin01_05.m2", + }, + }, + text = "seaurchin01_05", + value = "seaurchin01_05", + }, + { + children = { + { + fileId = "201358", + text = "starfish01_02.m2", + value = "starfish01_02.m2", + }, + }, + text = "starfish01_02", + value = "starfish01_02", + }, + }, + text = "seaplants", + value = "seaplants", + }, + }, + text = "azshara", + value = "azshara", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201363", + text = "kotobeastbone01.m2", + value = "kotobeastbone01.m2", + }, + { + fileId = "201364", + text = "kotobeastbone02.m2", + value = "kotobeastbone02.m2", + }, + { + fileId = "201365", + text = "kotobeastbone03.m2", + value = "kotobeastbone03.m2", + }, + { + fileId = "201366", + text = "kotobeastbone04.m2", + value = "kotobeastbone04.m2", + }, + { + fileId = "201367", + text = "kotobeastbone05.m2", + value = "kotobeastbone05.m2", + }, + }, + text = "bones", + value = "bones", + }, + { + children = { + { + fileId = "201370", + text = "barrensbush01.m2", + value = "barrensbush01.m2", + }, + { + fileId = "201371", + text = "barrensbush02.m2", + value = "barrensbush02.m2", + }, + { + fileId = "201372", + text = "barrensbush03.m2", + value = "barrensbush03.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "201375", + text = "kodoegg01.m2", + value = "kodoegg01.m2", + }, + { + fileId = "201376", + text = "kodoegg02.m2", + value = "kodoegg02.m2", + }, + }, + text = "kodoeggs", + value = "kodoeggs", + }, + { + children = { + { + fileId = "201377", + text = "barrenslamppost01.m2", + value = "barrenslamppost01.m2", + }, + }, + text = "lampposts", + value = "lampposts", + }, + { + children = { + { + fileId = "201380", + text = "mkshrine.m2", + value = "mkshrine.m2", + }, + }, + text = "mkshrine", + value = "mkshrine", + }, + { + children = { + { + fileId = "201383", + text = "barrenstermitemound01.m2", + value = "barrenstermitemound01.m2", + }, + { + fileId = "201384", + text = "barrenstermitemound02.m2", + value = "barrenstermitemound02.m2", + }, + { + fileId = "201385", + text = "barrenstermitemound03.m2", + value = "barrenstermitemound03.m2", + }, + { + fileId = "201386", + text = "barrenstermitemound04.m2", + value = "barrenstermitemound04.m2", + }, + }, + text = "mounds", + value = "mounds", + }, + { + children = { + { + fileId = "201389", + text = "raptorhut01.m2", + value = "raptorhut01.m2", + }, + { + fileId = "201390", + text = "raptorhut02.m2", + value = "raptorhut02.m2", + }, + }, + text = "raptorhuts", + value = "raptorhuts", + }, + { + children = { + { + fileId = "201394", + text = "barrenstree01.m2", + value = "barrenstree01.m2", + }, + { + fileId = "201396", + text = "barrenstree02.m2", + value = "barrenstree02.m2", + }, + { + fileId = "201398", + text = "barrenstree03.m2", + value = "barrenstree03.m2", + }, + { + fileId = "201399", + text = "barrenstree04.m2", + value = "barrenstree04.m2", + }, + { + fileId = "201400", + text = "barrenstree05.m2", + value = "barrenstree05.m2", + }, + { + fileId = "201402", + text = "barrenstree06.m2", + value = "barrenstree06.m2", + }, + { + fileId = "201403", + text = "barrenstree07.m2", + value = "barrenstree07.m2", + }, + { + fileId = "201405", + text = "barrenstree08.m2", + value = "barrenstree08.m2", + }, + { + fileId = "201406", + text = "barrenstree09.m2", + value = "barrenstree09.m2", + }, + { + fileId = "201407", + text = "barrenstree10.m2", + value = "barrenstree10.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "201413", + text = "barrensbustedwagon.m2", + value = "barrensbustedwagon.m2", + }, + { + fileId = "201416", + text = "barrenswagon01.m2", + value = "barrenswagon01.m2", + }, + { + fileId = "201417", + text = "barrenswagon02.m2", + value = "barrenswagon02.m2", + }, + { + fileId = "201418", + text = "barrenswagon03.m2", + value = "barrenswagon03.m2", + }, + }, + text = "wagon", + value = "wagon", + }, + { + children = { + { + fileId = "201421", + text = "orc_waterwheel.m2", + value = "orc_waterwheel.m2", + }, + }, + text = "waterwheel", + value = "waterwheel", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "barrens", + value = "barrens", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201422", + text = "bfd_nagabrazier.m2", + value = "bfd_nagabrazier.m2", + }, + }, + text = "braziers", + value = "braziers", + }, + { + children = { + { + fileId = "201424", + text = "bfd_stonechair01.m2", + value = "bfd_stonechair01.m2", + }, + { + fileId = "201425", + text = "bfd_stonechair02.m2", + value = "bfd_stonechair02.m2", + }, + { + fileId = "201426", + text = "bfd_stonechair03.m2", + value = "bfd_stonechair03.m2", + }, + }, + text = "furniture", + value = "furniture", + }, + { + children = { + { + fileId = "201429", + text = "bfd_walllight01.m2", + value = "bfd_walllight01.m2", + }, + { + fileId = "201430", + text = "bfd_walllight03.m2", + value = "bfd_walllight03.m2", + }, + { + fileId = "201431", + text = "bfd_walllight04.m2", + value = "bfd_walllight04.m2", + }, + { + fileId = "201432", + text = "bfd_walllight05.m2", + value = "bfd_walllight05.m2", + }, + { + fileId = "201433", + text = "bfd_walllight06.m2", + value = "bfd_walllight06.m2", + }, + { + fileId = "201434", + text = "bfd_walllight07.m2", + value = "bfd_walllight07.m2", + }, + { + fileId = "201435", + text = "bfd_walltorch01.m2", + value = "bfd_walltorch01.m2", + }, + { + fileId = "201436", + text = "bfd_wisp01.m2", + value = "bfd_wisp01.m2", + }, + { + fileId = "201437", + text = "bfd_wisplarge.m2", + value = "bfd_wisplarge.m2", + }, + { + fileId = "201438", + text = "bfd_wispmed.m2", + value = "bfd_wispmed.m2", + }, + { + fileId = "201439", + text = "bfd_wispsmall.m2", + value = "bfd_wispsmall.m2", + }, + { + fileId = "201440", + text = "bfd_wispsmallgreen.m2", + value = "bfd_wispsmallgreen.m2", + }, + { + fileId = "201441", + text = "bfd_wispsmallpurple.m2", + value = "bfd_wispsmallpurple.m2", + }, + }, + text = "lights", + value = "lights", + }, + { + children = { + { + fileId = "201445", + text = "bfd_brokenpottery01.m2", + value = "bfd_brokenpottery01.m2", + }, + { + fileId = "201446", + text = "bfd_brokenpottery02.m2", + value = "bfd_brokenpottery02.m2", + }, + { + fileId = "201447", + text = "blackfathom_pot01.m2", + value = "blackfathom_pot01.m2", + }, + { + fileId = "201448", + text = "blackfathom_pot02.m2", + value = "blackfathom_pot02.m2", + }, + { + fileId = "201449", + text = "blackfathom_pot03.m2", + value = "blackfathom_pot03.m2", + }, + { + fileId = "201450", + text = "blackfathom_pot04.m2", + value = "blackfathom_pot04.m2", + }, + }, + text = "pottery", + value = "pottery", + }, + { + children = { + { + fileId = "201452", + text = "bfd_statuenagapriestess.m2", + value = "bfd_statuenagapriestess.m2", + }, + }, + text = "statue", + value = "statue", + }, + { + children = { + { + fileId = "201455", + text = "bfd_waterfalls01.m2", + value = "bfd_waterfalls01.m2", + }, + { + fileId = "201456", + text = "bfd_waterfalls02.m2", + value = "bfd_waterfalls02.m2", + }, + { + fileId = "201457", + text = "bfd_waterfalls03.m2", + value = "bfd_waterfalls03.m2", + }, + { + fileId = "201458", + text = "bfd_waterfalls04.m2", + value = "bfd_waterfalls04.m2", + }, + { + fileId = "201459", + text = "bfd_waterfalls05.m2", + value = "bfd_waterfalls05.m2", + }, + { + fileId = "201460", + text = "bfd_waterfalls06.m2", + value = "bfd_waterfalls06.m2", + }, + { + fileId = "201461", + text = "bfd_waterfalls07.m2", + value = "bfd_waterfalls07.m2", + }, + { + fileId = "201462", + text = "bfd_waterfalls08.m2", + value = "bfd_waterfalls08.m2", + }, + { + fileId = "201463", + text = "bfd_waterfalls09.m2", + value = "bfd_waterfalls09.m2", + }, + { + fileId = "201464", + text = "bfd_waterfalls10.m2", + value = "bfd_waterfalls10.m2", + }, + { + fileId = "201465", + text = "bfd_waterfalls11.m2", + value = "bfd_waterfalls11.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "blackfathom", + value = "blackfathom", + }, + { + children = { + { + children = { + { + fileId = "201468", + text = "centaurhorncover.m2", + value = "centaurhorncover.m2", + }, + { + fileId = "201469", + text = "centaurhornmouthpiece.m2", + value = "centaurhornmouthpiece.m2", + }, + }, + text = "desolace", + value = "desolace", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201472", + text = "illidancrystal01.m2", + value = "illidancrystal01.m2", + }, + }, + text = "illidancrystal", + value = "illidancrystal", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + fileId = "201475", + text = "giantseaturtle03.m2", + value = "giantseaturtle03.m2", + }, + { + fileId = "201476", + text = "giantseaturtle04.m2", + value = "giantseaturtle04.m2", + }, + }, + text = "giantseaturtle", + value = "giantseaturtle", + }, + { + children = { + { + fileId = "201486", + text = "snakeskullgiant.m2", + value = "snakeskullgiant.m2", + }, + }, + text = "giantsnakeskulls", + value = "giantsnakeskulls", + }, + { + children = { + { + fileId = "201487", + text = "snakespinegiant01.m2", + value = "snakespinegiant01.m2", + }, + { + fileId = "201488", + text = "snakespinegiant02.m2", + value = "snakespinegiant02.m2", + }, + { + fileId = "201489", + text = "snakespinegiant03.m2", + value = "snakespinegiant03.m2", + }, + }, + text = "giantsnakespines", + value = "giantsnakespines", + }, + { + children = { + { + children = { + { + fileId = "201490", + text = "darkshoreanchor01.m2", + value = "darkshoreanchor01.m2", + }, + }, + text = "anchors", + value = "anchors", + }, + { + children = { + { + fileId = "249682", + text = "ancientprotectorrooted_01.m2", + value = "ancientprotectorrooted_01.m2", + }, + { + fileId = "249683", + text = "ancientprotectorrooted_02.m2", + value = "ancientprotectorrooted_02.m2", + }, + { + fileId = "249684", + text = "ancientprotectorrooted_03.m2", + value = "ancientprotectorrooted_03.m2", + }, + { + fileId = "249685", + text = "ancientprotectorrooted_04.m2", + value = "ancientprotectorrooted_04.m2", + }, + { + fileId = "249686", + text = "ancientprotectorrooted_05.m2", + value = "ancientprotectorrooted_05.m2", + }, + { + fileId = "249687", + text = "ancientprotectorrooted_06.m2", + value = "ancientprotectorrooted_06.m2", + }, + { + fileId = "249688", + text = "ancientprotectorrooted_07.m2", + value = "ancientprotectorrooted_07.m2", + }, + { + fileId = "249689", + text = "ancientprotectorrooted_08.m2", + value = "ancientprotectorrooted_08.m2", + }, + { + fileId = "249690", + text = "ancientprotectorrooted_canopy.m2", + value = "ancientprotectorrooted_canopy.m2", + }, + { + fileId = "249691", + text = "ancientprotectorrooted_canopy02.m2", + value = "ancientprotectorrooted_canopy02.m2", + }, + { + fileId = "249692", + text = "ancientprotectorrooted_canopy03.m2", + value = "ancientprotectorrooted_canopy03.m2", + }, + { + fileId = "249693", + text = "ancientprotectorrooted_leaf_green.m2", + value = "ancientprotectorrooted_leaf_green.m2", + }, + { + fileId = "249694", + text = "ancientprotectorrooted_leaf_orange.m2", + value = "ancientprotectorrooted_leaf_orange.m2", + }, + { + fileId = "249695", + text = "ancientprotectorrooted_leaf_purple.m2", + value = "ancientprotectorrooted_leaf_purple.m2", + }, + }, + text = "ancientprotectorrooted", + value = "ancientprotectorrooted", + }, + { + children = { + { + fileId = "201493", + text = "darkshoreboat.m2", + value = "darkshoreboat.m2", + }, + }, + text = "boats", + value = "boats", + }, + { + children = { + { + fileId = "201494", + text = "darkshorebush01.m2", + value = "darkshorebush01.m2", + }, + { + fileId = "201495", + text = "darkshorebush02.m2", + value = "darkshorebush02.m2", + }, + { + fileId = "201496", + text = "darkshorebush03.m2", + value = "darkshorebush03.m2", + }, + { + fileId = "201497", + text = "darkshorebush04.m2", + value = "darkshorebush04.m2", + }, + { + fileId = "201498", + text = "darkshorebush05.m2", + value = "darkshorebush05.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "201503", + text = "darkshorelog01.m2", + value = "darkshorelog01.m2", + }, + { + fileId = "201504", + text = "darkshorelog02.m2", + value = "darkshorelog02.m2", + }, + }, + text = "darkshorelogs", + value = "darkshorelogs", + }, + { + children = { + { + fileId = "201511", + text = "darkshoretree01.m2", + value = "darkshoretree01.m2", + }, + { + fileId = "201513", + text = "darkshoretree02.m2", + value = "darkshoretree02.m2", + }, + { + fileId = "201514", + text = "darkshoretree03.m2", + value = "darkshoretree03.m2", + }, + { + fileId = "201515", + text = "darkshoretree04.m2", + value = "darkshoretree04.m2", + }, + { + fileId = "201516", + text = "darkshoretree05.m2", + value = "darkshoretree05.m2", + }, + { + fileId = "201517", + text = "darkshoretree06.m2", + value = "darkshoretree06.m2", + }, + { + fileId = "201518", + text = "darkshoretree07.m2", + value = "darkshoretree07.m2", + }, + { + fileId = "201519", + text = "darkshoretree08.m2", + value = "darkshoretree08.m2", + }, + }, + text = "darkshoretrees", + value = "darkshoretrees", + }, + { + children = { + { + fileId = "201524", + text = "darkshoredock.m2", + value = "darkshoredock.m2", + }, + }, + text = "dock", + value = "dock", + }, + { + children = { + { + fileId = "201526", + text = "darkshoredock01.m2", + value = "darkshoredock01.m2", + }, + { + fileId = "201527", + text = "darkshoredockramp01.m2", + value = "darkshoredockramp01.m2", + }, + }, + text = "docks", + value = "docks", + }, + { + children = { + { + fileId = "201528", + text = "darkshorefallentreeroots01.m2", + value = "darkshorefallentreeroots01.m2", + }, + }, + text = "fallentreeroots", + value = "fallentreeroots", + }, + { + children = { + { + fileId = "201529", + text = "darkshoregazeebo.m2", + value = "darkshoregazeebo.m2", + }, + { + fileId = "201530", + text = "darkshoregazeeboruined01.m2", + value = "darkshoregazeeboruined01.m2", + }, + }, + text = "gazeebo", + value = "gazeebo", + }, + { + children = { + { + fileId = "201531", + text = "glaivemaster.m2", + value = "glaivemaster.m2", + }, + }, + text = "glaivemaster", + value = "glaivemaster", + }, + { + children = { + { + fileId = "201536", + text = "glaivemasterroots01.m2", + value = "glaivemasterroots01.m2", + }, + { + fileId = "201537", + text = "glaivemasterroots02.m2", + value = "glaivemasterroots02.m2", + }, + }, + text = "glaivemasterroots", + value = "glaivemasterroots", + }, + { + children = { + { + fileId = "201538", + text = "glaivemastertentacle.m2", + value = "glaivemastertentacle.m2", + }, + { + fileId = "201539", + text = "glaivemastertentacleend.m2", + value = "glaivemastertentacleend.m2", + }, + }, + text = "glaivemastertentacles", + value = "glaivemastertentacles", + }, + { + children = { + { + fileId = "201541", + text = "darkstreetlamp.m2", + value = "darkstreetlamp.m2", + }, + { + fileId = "201542", + text = "darkstreetlamp02.m2", + value = "darkstreetlamp02.m2", + }, + }, + text = "lamp", + value = "lamp", + }, + { + children = { + { + fileId = "201544", + text = "darkshoremoongate.m2", + value = "darkshoremoongate.m2", + }, + { + fileId = "201545", + text = "darkshoremoongatebase.m2", + value = "darkshoremoongatebase.m2", + }, + { + fileId = "201546", + text = "darkshoremoongatetop.m2", + value = "darkshoremoongatetop.m2", + }, + }, + text = "moongate", + value = "moongate", + }, + { + children = { + { + fileId = "201548", + text = "darkshorerock03.m2", + value = "darkshorerock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "201551", + text = "darkshorerock01.m2", + value = "darkshorerock01.m2", + }, + { + fileId = "201552", + text = "darkshorerock02.m2", + value = "darkshorerock02.m2", + }, + { + fileId = "201553", + text = "darkshoreruinpillar01.m2", + value = "darkshoreruinpillar01.m2", + }, + { + fileId = "201554", + text = "darkshoreruinpillar02.m2", + value = "darkshoreruinpillar02.m2", + }, + { + fileId = "201555", + text = "darkshoreruinpillar03.m2", + value = "darkshoreruinpillar03.m2", + }, + { + fileId = "201556", + text = "darkshoreruinpillar04.m2", + value = "darkshoreruinpillar04.m2", + }, + { + fileId = "201557", + text = "darkshoreruinpillar05.m2", + value = "darkshoreruinpillar05.m2", + }, + { + fileId = "201558", + text = "darkshoreruinwall01.m2", + value = "darkshoreruinwall01.m2", + }, + { + fileId = "201559", + text = "darkshoreruinwall02.m2", + value = "darkshoreruinwall02.m2", + }, + { + fileId = "201560", + text = "darkshoreruinwall03.m2", + value = "darkshoreruinwall03.m2", + }, + { + fileId = "201561", + text = "darkshoreruinwall04.m2", + value = "darkshoreruinwall04.m2", + }, + { + fileId = "201562", + text = "darkshoreruinwall05.m2", + value = "darkshoreruinwall05.m2", + }, + { + fileId = "201563", + text = "darkshoreruinwall06.m2", + value = "darkshoreruinwall06.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "201568", + text = "darkshoreseamonster01.m2", + value = "darkshoreseamonster01.m2", + }, + }, + text = "seamonstercarcass", + value = "seamonstercarcass", + }, + { + children = { + { + fileId = "201571", + text = "darkshorefallentree01.m2", + value = "darkshorefallentree01.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + { + children = { + { + fileId = "201573", + text = "darkshorethreshadoncorpse.m2", + value = "darkshorethreshadoncorpse.m2", + }, + }, + text = "threshadoncorpse", + value = "threshadoncorpse", + }, + }, + text = "darkshore", + value = "darkshore", + }, + { + children = { + { + children = { + { + fileId = "201575", + text = "defiledtotem01.m2", + value = "defiledtotem01.m2", + }, + { + fileId = "201576", + text = "defiledtotem02.m2", + value = "defiledtotem02.m2", + }, + { + children = { + { + fileId = "201581", + text = "bannercentaur01.m2", + value = "bannercentaur01.m2", + }, + { + fileId = "201582", + text = "bannercentaur02.m2", + value = "bannercentaur02.m2", + }, + { + fileId = "201583", + text = "bannercentaur03.m2", + value = "bannercentaur03.m2", + }, + { + fileId = "201584", + text = "bannercentaur04.m2", + value = "bannercentaur04.m2", + }, + { + fileId = "201593", + text = "kodograve01.m2", + value = "kodograve01.m2", + }, + { + fileId = "201594", + text = "kodograve02.m2", + value = "kodograve02.m2", + }, + { + fileId = "201595", + text = "kodograve03.m2", + value = "kodograve03.m2", + }, + { + fileId = "201596", + text = "kodograve04.m2", + value = "kodograve04.m2", + }, + { + fileId = "201597", + text = "kodograve05.m2", + value = "kodograve05.m2", + }, + { + fileId = "201598", + text = "kodograve06.m2", + value = "kodograve06.m2", + }, + { + fileId = "201599", + text = "kodograve07.m2", + value = "kodograve07.m2", + }, + { + fileId = "201600", + text = "kodograve08.m2", + value = "kodograve08.m2", + }, + { + fileId = "201601", + text = "kodograve09.m2", + value = "kodograve09.m2", + }, + { + fileId = "201602", + text = "kodograve10.m2", + value = "kodograve10.m2", + }, + { + fileId = "201603", + text = "kodograve11.m2", + value = "kodograve11.m2", + }, + { + fileId = "201604", + text = "kodograve12.m2", + value = "kodograve12.m2", + }, + { + fileId = "201605", + text = "kodograve13.m2", + value = "kodograve13.m2", + }, + { + fileId = "201606", + text = "kodograve14.m2", + value = "kodograve14.m2", + }, + }, + text = "kodogravebones", + value = "kodogravebones", + }, + { + children = { + { + fileId = "201607", + text = "desolacemushroom.m2", + value = "desolacemushroom.m2", + }, + }, + text = "mushrooms", + value = "mushrooms", + }, + { + children = { + { + fileId = "201610", + text = "desolacerock01.m2", + value = "desolacerock01.m2", + }, + { + fileId = "201611", + text = "desolacerock02.m2", + value = "desolacerock02.m2", + }, + { + fileId = "201612", + text = "desolacerock03.m2", + value = "desolacerock03.m2", + }, + { + fileId = "201613", + text = "desolacerock04.m2", + value = "desolacerock04.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "201614", + text = "centaurspears01.m2", + value = "centaurspears01.m2", + }, + { + fileId = "201615", + text = "centaurspears02.m2", + value = "centaurspears02.m2", + }, + { + fileId = "201616", + text = "centaurspearscone.m2", + value = "centaurspearscone.m2", + }, + }, + text = "spearwalls", + value = "spearwalls", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "desolace", + value = "desolace", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201617", + text = "corruptedcrystalshard.m2", + value = "corruptedcrystalshard.m2", + }, + { + fileId = "201618", + text = "corruptedcrystalshard_blue.m2", + value = "corruptedcrystalshard_blue.m2", + }, + { + fileId = "201619", + text = "corruptedcrystalvine.m2", + value = "corruptedcrystalvine.m2", + }, + }, + text = "crystalcorrupter", + value = "crystalcorrupter", + }, + { + children = { + { + fileId = "201624", + text = "diremaulbossforcefield.m2", + value = "diremaulbossforcefield.m2", + }, + { + fileId = "201626", + text = "diremauldoor01.m2", + value = "diremauldoor01.m2", + }, + { + fileId = "201627", + text = "diremauldoor02.m2", + value = "diremauldoor02.m2", + }, + { + fileId = "201629", + text = "diremauldoor03.m2", + value = "diremauldoor03.m2", + }, + { + fileId = "201631", + text = "diremauldoor04.m2", + value = "diremauldoor04.m2", + }, + { + fileId = "201634", + text = "diremaulsmallinstancedoor.m2", + value = "diremaulsmallinstancedoor.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "201638", + text = "diremaulcrystalgenerator.m2", + value = "diremaulcrystalgenerator.m2", + }, + }, + text = "lightcrystal", + value = "lightcrystal", + }, + { + children = { + { + fileId = "201641", + text = "nightmarebell.m2", + value = "nightmarebell.m2", + }, + { + fileId = "201642", + text = "nightmarecandle.m2", + value = "nightmarecandle.m2", + }, + { + fileId = "201643", + text = "nightmarestone.m2", + value = "nightmarestone.m2", + }, + }, + text = "nightmaresummoning", + value = "nightmaresummoning", + }, + { + children = { + { + fileId = "201649", + text = "warlockmountritualcircle01.m2", + value = "warlockmountritualcircle01.m2", + }, + { + fileId = "201650", + text = "warlockmountritualcircle01a.m2", + value = "warlockmountritualcircle01a.m2", + }, + { + fileId = "201651", + text = "warlockmountritualcircle01b.m2", + value = "warlockmountritualcircle01b.m2", + }, + { + fileId = "201652", + text = "warlockmountritualcircle01c.m2", + value = "warlockmountritualcircle01c.m2", + }, + { + fileId = "201653", + text = "warlockmountritualcircle01d.m2", + value = "warlockmountritualcircle01d.m2", + }, + }, + text = "warlockcircle", + value = "warlockcircle", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "201658", + text = "diremaulstonebearstatue.m2", + value = "diremaulstonebearstatue.m2", + }, + { + fileId = "201660", + text = "diremaulstonedeerstatue.m2", + value = "diremaulstonedeerstatue.m2", + }, + { + fileId = "201662", + text = "diremaulstoneowlstatue.m2", + value = "diremaulstoneowlstatue.m2", + }, + }, + text = "animalheadstatues", + value = "animalheadstatues", + }, + { + children = { + { + fileId = "201663", + text = "diremaul_banner.m2", + value = "diremaul_banner.m2", + }, + { + fileId = "201664", + text = "diremaul_banner_post.m2", + value = "diremaul_banner_post.m2", + }, + { + fileId = "201665", + text = "diremaul_banner_tattered.m2", + value = "diremaul_banner_tattered.m2", + }, + { + fileId = "201666", + text = "diremaul_banner_torn01.m2", + value = "diremaul_banner_torn01.m2", + }, + { + fileId = "201667", + text = "diremaul_banner_torn02.m2", + value = "diremaul_banner_torn02.m2", + }, + { + fileId = "201670", + text = "ogrepostbanner.m2", + value = "ogrepostbanner.m2", + }, + { + fileId = "201671", + text = "ogrestapledwallbanner.m2", + value = "ogrestapledwallbanner.m2", + }, + { + fileId = "201672", + text = "ogrestapledwallbanner02.m2", + value = "ogrestapledwallbanner02.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "201675", + text = "brokenferalastree01.m2", + value = "brokenferalastree01.m2", + }, + }, + text = "deadtrees", + value = "deadtrees", + }, + { + fileId = "201679", + text = "goldenhighelfstatue01.m2", + value = "goldenhighelfstatue01.m2", + }, + { + fileId = "201680", + text = "goldenhighelfstatue02.m2", + value = "goldenhighelfstatue02.m2", + }, + { + fileId = "201681", + text = "goldenhighelfstatue03.m2", + value = "goldenhighelfstatue03.m2", + }, + { + children = { + { + fileId = "201688", + text = "ogrecampfire01.m2", + value = "ogrecampfire01.m2", + }, + }, + text = "ogrecampfires", + value = "ogrecampfires", + }, + { + children = { + { + fileId = "201689", + text = "diremaulogreladder01.m2", + value = "diremaulogreladder01.m2", + }, + }, + text = "ogreladder", + value = "ogreladder", + }, + { + children = { + { + fileId = "201691", + text = "diremaulogrepost01.m2", + value = "diremaulogrepost01.m2", + }, + { + fileId = "201692", + text = "diremaulogrepost02.m2", + value = "diremaulogrepost02.m2", + }, + { + fileId = "201693", + text = "diremaulogrepost03.m2", + value = "diremaulogrepost03.m2", + }, + { + fileId = "201694", + text = "diremaulogrepost04.m2", + value = "diremaulogrepost04.m2", + }, + }, + text = "ogreposts", + value = "ogreposts", + }, + { + children = { + { + fileId = "201696", + text = "diremaulogrescaffolding01.m2", + value = "diremaulogrescaffolding01.m2", + }, + }, + text = "ogrescaffolding", + value = "ogrescaffolding", + }, + { + children = { + { + fileId = "201699", + text = "diremaulfloorrubble01.m2", + value = "diremaulfloorrubble01.m2", + }, + { + fileId = "201700", + text = "diremaulfloorrubble02.m2", + value = "diremaulfloorrubble02.m2", + }, + { + fileId = "201701", + text = "diremaulfloorrubble03.m2", + value = "diremaulfloorrubble03.m2", + }, + { + fileId = "201702", + text = "diremaulgroundrubble01.m2", + value = "diremaulgroundrubble01.m2", + }, + { + fileId = "201703", + text = "diremaulgroundrubble02.m2", + value = "diremaulgroundrubble02.m2", + }, + { + fileId = "201704", + text = "diremaulgroundrubble03.m2", + value = "diremaulgroundrubble03.m2", + }, + { + fileId = "201705", + text = "diremaulstonestatue01.m2", + value = "diremaulstonestatue01.m2", + }, + { + fileId = "201706", + text = "diremaulstonestatue02.m2", + value = "diremaulstonestatue02.m2", + }, + { + fileId = "201707", + text = "diremaulstonestatue03.m2", + value = "diremaulstonestatue03.m2", + }, + { + fileId = "201708", + text = "diremaulstonestatue04.m2", + value = "diremaulstonestatue04.m2", + }, + { + fileId = "201709", + text = "diremaultreeroot01.m2", + value = "diremaultreeroot01.m2", + }, + { + fileId = "201710", + text = "diremaultreeroot02.m2", + value = "diremaultreeroot02.m2", + }, + { + fileId = "201711", + text = "diremaultreeroot03.m2", + value = "diremaultreeroot03.m2", + }, + { + fileId = "201712", + text = "diremaultreeroot04.m2", + value = "diremaultreeroot04.m2", + }, + { + fileId = "201713", + text = "diremaultreeroot05.m2", + value = "diremaultreeroot05.m2", + }, + { + fileId = "201714", + text = "diremaultreeroot06.m2", + value = "diremaultreeroot06.m2", + }, + { + fileId = "201715", + text = "diremaultrimrubble01.m2", + value = "diremaultrimrubble01.m2", + }, + { + fileId = "201716", + text = "diremaultrimrubble02.m2", + value = "diremaultrimrubble02.m2", + }, + { + fileId = "201717", + text = "diremaultrimrubble03.m2", + value = "diremaultrimrubble03.m2", + }, + { + fileId = "201718", + text = "diremaulwallrubble01.m2", + value = "diremaulwallrubble01.m2", + }, + { + fileId = "201719", + text = "diremaulwallrubble02.m2", + value = "diremaulwallrubble02.m2", + }, + { + fileId = "201720", + text = "diremaulwallrubble03.m2", + value = "diremaulwallrubble03.m2", + }, + }, + text = "rubble", + value = "rubble", + }, + { + children = { + { + fileId = "201723", + text = "deadtreeplanterbox.m2", + value = "deadtreeplanterbox.m2", + }, + { + fileId = "201724", + text = "deadtreeplanterbox02.m2", + value = "deadtreeplanterbox02.m2", + }, + { + fileId = "201725", + text = "deadtreeplanterbox03.m2", + value = "deadtreeplanterbox03.m2", + }, + }, + text = "treeplanters", + value = "treeplanters", + }, + { + children = { + { + fileId = "201731", + text = "gardentreecanopy.m2", + value = "gardentreecanopy.m2", + }, + { + fileId = "201732", + text = "gardentreeferalas.m2", + value = "gardentreeferalas.m2", + }, + { + fileId = "201733", + text = "gardentreeferalasb.m2", + value = "gardentreeferalasb.m2", + }, + { + fileId = "201734", + text = "gardentreehuge.m2", + value = "gardentreehuge.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "201741", + text = "diremaulmagicvortex.m2", + value = "diremaulmagicvortex.m2", + }, + }, + text = "vortex", + value = "vortex", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "diremaul", + value = "diremaul", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201743", + text = "dragoncaveartifact.m2", + value = "dragoncaveartifact.m2", + }, + }, + text = "artifact", + value = "artifact", + }, + { + children = { + { + fileId = "201745", + text = "blackdragonegg01.m2", + value = "blackdragonegg01.m2", + }, + { + fileId = "201746", + text = "blackdragonegg02.m2", + value = "blackdragonegg02.m2", + }, + { + fileId = "201747", + text = "blackdragonegg03.m2", + value = "blackdragonegg03.m2", + }, + }, + text = "blackdragoneggs", + value = "blackdragoneggs", + }, + { + children = { + { + fileId = "201752", + text = "charredbody01.m2", + value = "charredbody01.m2", + }, + { + fileId = "201753", + text = "charredbody02.m2", + value = "charredbody02.m2", + }, + { + fileId = "201754", + text = "charredbody03.m2", + value = "charredbody03.m2", + }, + { + fileId = "201755", + text = "charredbody04.m2", + value = "charredbody04.m2", + }, + { + fileId = "201756", + text = "charredbody05.m2", + value = "charredbody05.m2", + }, + { + fileId = "201757", + text = "charredbody06.m2", + value = "charredbody06.m2", + }, + { + fileId = "201758", + text = "charredbody07.m2", + value = "charredbody07.m2", + }, + { + fileId = "201761", + text = "dragonfirecharmark01.m2", + value = "dragonfirecharmark01.m2", + }, + { + fileId = "201762", + text = "dragonfirecharmark02.m2", + value = "dragonfirecharmark02.m2", + }, + }, + text = "charredbodies", + value = "charredbodies", + }, + { + children = { + { + fileId = "201764", + text = "dragoncavefireembers.m2", + value = "dragoncavefireembers.m2", + }, + }, + text = "fireembers", + value = "fireembers", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "dragoncave", + value = "dragoncave", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201765", + text = "taurenbridge01lantern.m2", + value = "taurenbridge01lantern.m2", + }, + }, + text = "bridge", + value = "bridge", + }, + { + children = { + { + fileId = "201766", + text = "cactusapple01.m2", + value = "cactusapple01.m2", + }, + { + fileId = "201768", + text = "durotarbush01.m2", + value = "durotarbush01.m2", + }, + { + fileId = "201769", + text = "durotarbush02.m2", + value = "durotarbush02.m2", + }, + { + fileId = "201770", + text = "durotarbush03.m2", + value = "durotarbush03.m2", + }, + { + fileId = "201771", + text = "durotarbush04.m2", + value = "durotarbush04.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "201774", + text = "durotarcliffrock01.m2", + value = "durotarcliffrock01.m2", + }, + { + fileId = "201775", + text = "durotarcliffrock02.m2", + value = "durotarcliffrock02.m2", + }, + { + fileId = "201776", + text = "durotarcliffrock03.m2", + value = "durotarcliffrock03.m2", + }, + { + fileId = "201777", + text = "durotarcliffrock04.m2", + value = "durotarcliffrock04.m2", + }, + { + fileId = "201778", + text = "durotarcliffrock05.m2", + value = "durotarcliffrock05.m2", + }, + { + fileId = "201779", + text = "durotarcliffrock06.m2", + value = "durotarcliffrock06.m2", + }, + { + fileId = "201780", + text = "durotarcliffrock07.m2", + value = "durotarcliffrock07.m2", + }, + { + fileId = "201781", + text = "durotarcliffrock08.m2", + value = "durotarcliffrock08.m2", + }, + { + fileId = "201783", + text = "durotarrock01.m2", + value = "durotarrock01.m2", + }, + { + fileId = "201785", + text = "durotarrock02.m2", + value = "durotarrock02.m2", + }, + { + fileId = "201786", + text = "durotarrock03.m2", + value = "durotarrock03.m2", + }, + { + fileId = "201788", + text = "durotarrock04.m2", + value = "durotarrock04.m2", + }, + { + fileId = "201789", + text = "durotarrock05.m2", + value = "durotarrock05.m2", + }, + { + fileId = "201790", + text = "durotarrock06.m2", + value = "durotarrock06.m2", + }, + { + fileId = "201791", + text = "durotarrock07.m2", + value = "durotarrock07.m2", + }, + { + fileId = "201792", + text = "durotarrock08.m2", + value = "durotarrock08.m2", + }, + { + fileId = "201795", + text = "flatrock01.m2", + value = "flatrock01.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "201800", + text = "durotarpalm01.m2", + value = "durotarpalm01.m2", + }, + { + fileId = "201801", + text = "durotarpalm02.m2", + value = "durotarpalm02.m2", + }, + { + fileId = "201802", + text = "durotarpalm03.m2", + value = "durotarpalm03.m2", + }, + { + fileId = "201803", + text = "durotartree01.m2", + value = "durotartree01.m2", + }, + { + fileId = "201804", + text = "durotartree02.m2", + value = "durotartree02.m2", + }, + { + fileId = "201805", + text = "durotartree03.m2", + value = "durotartree03.m2", + }, + { + fileId = "201806", + text = "durotartree04.m2", + value = "durotartree04.m2", + }, + { + fileId = "201807", + text = "durotartree05.m2", + value = "durotartree05.m2", + }, + { + fileId = "201808", + text = "durotartree06.m2", + value = "durotartree06.m2", + }, + { + fileId = "201809", + text = "durotartree08.m2", + value = "durotartree08.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "durotar", + value = "durotar", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201811", + text = "dustwallowbush01.m2", + value = "dustwallowbush01.m2", + }, + { + fileId = "201812", + text = "dustwallowbush02.m2", + value = "dustwallowbush02.m2", + }, + { + fileId = "201813", + text = "dustwallowshrub01.m2", + value = "dustwallowshrub01.m2", + }, + { + fileId = "201814", + text = "dustwallowshrub02.m2", + value = "dustwallowshrub02.m2", + }, + { + fileId = "201815", + text = "dustwallowshrub03.m2", + value = "dustwallowshrub03.m2", + }, + { + fileId = "201816", + text = "dustwallowshrub04.m2", + value = "dustwallowshrub04.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "201817", + text = "dustwallowoutpost01.m2", + value = "dustwallowoutpost01.m2", + }, + { + fileId = "201818", + text = "dustwallowoutpost02.m2", + value = "dustwallowoutpost02.m2", + }, + { + fileId = "201819", + text = "dustwallowoutpost03.m2", + value = "dustwallowoutpost03.m2", + }, + { + fileId = "201820", + text = "dustwallowoutpost04.m2", + value = "dustwallowoutpost04.m2", + }, + { + fileId = "201821", + text = "dustwallowoutpost05.m2", + value = "dustwallowoutpost05.m2", + }, + { + fileId = "201822", + text = "dustwallowoutpost06.m2", + value = "dustwallowoutpost06.m2", + }, + }, + text = "outposts", + value = "outposts", + }, + { + children = { + { + fileId = "201826", + text = "dustwallowtree01.m2", + value = "dustwallowtree01.m2", + }, + { + fileId = "201827", + text = "dustwallowtree02.m2", + value = "dustwallowtree02.m2", + }, + { + fileId = "201828", + text = "dustwallowtree03.m2", + value = "dustwallowtree03.m2", + }, + { + fileId = "201829", + text = "dustwallowtree04.m2", + value = "dustwallowtree04.m2", + }, + { + fileId = "201830", + text = "dustwallowtree05.m2", + value = "dustwallowtree05.m2", + }, + { + fileId = "201831", + text = "dustwallowtree06.m2", + value = "dustwallowtree06.m2", + }, + { + fileId = "201832", + text = "dustwallowtree07.m2", + value = "dustwallowtree07.m2", + }, + { + fileId = "201833", + text = "dustwallowtree08.m2", + value = "dustwallowtree08.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "201837", + text = "duskwallowstonewall01.m2", + value = "duskwallowstonewall01.m2", + }, + { + fileId = "201838", + text = "duskwallowstonewall02.m2", + value = "duskwallowstonewall02.m2", + }, + { + fileId = "201839", + text = "duskwallowstonewallpost.m2", + value = "duskwallowstonewallpost.m2", + }, + { + fileId = "201841", + text = "dustwallowwall01.m2", + value = "dustwallowwall01.m2", + }, + { + fileId = "201842", + text = "dustwallowwall02.m2", + value = "dustwallowwall02.m2", + }, + { + fileId = "201843", + text = "dustwallowwall03.m2", + value = "dustwallowwall03.m2", + }, + { + fileId = "201844", + text = "dustwallowwallpost.m2", + value = "dustwallowwallpost.m2", + }, + }, + text = "walls", + value = "walls", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "dustwallow", + value = "dustwallow", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201845", + text = "illidancrystal02.m2", + value = "illidancrystal02.m2", + }, + }, + text = "illidancrystal", + value = "illidancrystal", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "201847", + text = "felwoodbush01.m2", + value = "felwoodbush01.m2", + }, + { + fileId = "201849", + text = "felwoodbush02.m2", + value = "felwoodbush02.m2", + }, + { + fileId = "201851", + text = "felwoodbush03.m2", + value = "felwoodbush03.m2", + }, + { + fileId = "201852", + text = "felwoodbush04.m2", + value = "felwoodbush04.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + fileId = "201853", + text = "desolacebubble01.m2", + value = "desolacebubble01.m2", + }, + { + fileId = "201854", + text = "desolacebubbles01.m2", + value = "desolacebubbles01.m2", + }, + }, + text = "desolacebubbles", + value = "desolacebubbles", + }, + { + children = { + { + fileId = "201856", + text = "felwoodbubble01.m2", + value = "felwoodbubble01.m2", + }, + { + fileId = "201857", + text = "felwoodbubbles01.m2", + value = "felwoodbubbles01.m2", + }, + }, + text = "felwoodbubbles", + value = "felwoodbubbles", + }, + { + children = { + { + fileId = "201859", + text = "felwoodmushroom01.m2", + value = "felwoodmushroom01.m2", + }, + { + fileId = "201860", + text = "felwoodmushroom02.m2", + value = "felwoodmushroom02.m2", + }, + { + fileId = "201864", + text = "felwoodmushroomanim.m2", + value = "felwoodmushroomanim.m2", + }, + }, + text = "felwoodmushrooms", + value = "felwoodmushrooms", + }, + { + children = { + { + fileId = "201866", + text = "felwoodlamp01.m2", + value = "felwoodlamp01.m2", + }, + }, + text = "lamp", + value = "lamp", + }, + { + children = { + { + fileId = "201870", + text = "nightdragon01.m2", + value = "nightdragon01.m2", + }, + { + fileId = "201871", + text = "nightdragon02.m2", + value = "nightdragon02.m2", + }, + { + fileId = "201872", + text = "songflower01.m2", + value = "songflower01.m2", + }, + { + fileId = "201873", + text = "songflower02.m2", + value = "songflower02.m2", + }, + { + fileId = "201874", + text = "whipperroot01.m2", + value = "whipperroot01.m2", + }, + { + fileId = "201875", + text = "whipperroot02.m2", + value = "whipperroot02.m2", + }, + { + fileId = "201876", + text = "windblossom01.m2", + value = "windblossom01.m2", + }, + { + fileId = "201877", + text = "windblossom02.m2", + value = "windblossom02.m2", + }, + }, + text = "plantsquest", + value = "plantsquest", + }, + { + children = { + { + fileId = "201881", + text = "felwoodroots01.m2", + value = "felwoodroots01.m2", + }, + { + fileId = "201882", + text = "felwoodroots02.m2", + value = "felwoodroots02.m2", + }, + { + fileId = "201883", + text = "felwoodroots03.m2", + value = "felwoodroots03.m2", + }, + { + fileId = "201884", + text = "felwoodroots04.m2", + value = "felwoodroots04.m2", + }, + { + fileId = "201885", + text = "felwoodroots05.m2", + value = "felwoodroots05.m2", + }, + }, + text = "roots", + value = "roots", + }, + { + children = { + { + fileId = "201900", + text = "felwoodtree01.m2", + value = "felwoodtree01.m2", + }, + { + fileId = "201901", + text = "felwoodtree02.m2", + value = "felwoodtree02.m2", + }, + { + fileId = "201902", + text = "felwoodtree03.m2", + value = "felwoodtree03.m2", + }, + { + fileId = "201903", + text = "felwoodtree04.m2", + value = "felwoodtree04.m2", + }, + { + fileId = "201904", + text = "felwoodtree05.m2", + value = "felwoodtree05.m2", + }, + { + fileId = "201905", + text = "felwoodtree06.m2", + value = "felwoodtree06.m2", + }, + { + fileId = "201906", + text = "felwoodtree07.m2", + value = "felwoodtree07.m2", + }, + { + fileId = "201908", + text = "felwoodtreeanim01.m2", + value = "felwoodtreeanim01.m2", + }, + { + fileId = "201909", + text = "felwoodtreeanim02.m2", + value = "felwoodtreeanim02.m2", + }, + { + fileId = "201910", + text = "felwoodtreeanim03.m2", + value = "felwoodtreeanim03.m2", + }, + { + fileId = "201912", + text = "felwoodtreestump01.m2", + value = "felwoodtreestump01.m2", + }, + { + fileId = "201913", + text = "felwoodtreesub01.m2", + value = "felwoodtreesub01.m2", + }, + { + fileId = "201914", + text = "felwoodtreesub02.m2", + value = "felwoodtreesub02.m2", + }, + { + fileId = "201915", + text = "felwoodtreesub03.m2", + value = "felwoodtreesub03.m2", + }, + { + fileId = "201916", + text = "felwoodtreesub04.m2", + value = "felwoodtreesub04.m2", + }, + }, + text = "tree", + value = "tree", + }, + { + children = { + { + fileId = "201924", + text = "petrifiedtreant01.m2", + value = "petrifiedtreant01.m2", + }, + { + fileId = "201925", + text = "petrifiedtreant02.m2", + value = "petrifiedtreant02.m2", + }, + { + fileId = "201926", + text = "petrifiedtreant03.m2", + value = "petrifiedtreant03.m2", + }, + }, + text = "treeeants", + value = "treeeants", + }, + { + children = { + { + fileId = "201928", + text = "felrockwaterfall.m2", + value = "felrockwaterfall.m2", + }, + { + fileId = "201929", + text = "felwoodtallwaterfall01.m2", + value = "felwoodtallwaterfall01.m2", + }, + }, + text = "waterfall", + value = "waterfall", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "felwood", + value = "felwood", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201930", + text = "feralasferns01.m2", + value = "feralasferns01.m2", + }, + }, + text = "fern", + value = "fern", + }, + { + children = { + { + fileId = "201933", + text = "feralasstone01.m2", + value = "feralasstone01.m2", + }, + { + fileId = "201934", + text = "feralasstone02.m2", + value = "feralasstone02.m2", + }, + }, + text = "stones", + value = "stones", + }, + { + children = { + { + fileId = "201935", + text = "feralastree01.m2", + value = "feralastree01.m2", + }, + { + fileId = "201936", + text = "feralastree02.m2", + value = "feralastree02.m2", + }, + { + fileId = "201937", + text = "feralastree03.m2", + value = "feralastree03.m2", + }, + { + fileId = "201938", + text = "feralastree04.m2", + value = "feralastree04.m2", + }, + { + fileId = "201939", + text = "feralastree04_capped.m2", + value = "feralastree04_capped.m2", + }, + { + fileId = "201940", + text = "feralastree05.m2", + value = "feralastree05.m2", + }, + { + fileId = "201942", + text = "feralastreeroots01.m2", + value = "feralastreeroots01.m2", + }, + { + fileId = "201944", + text = "feralastreeroots02.m2", + value = "feralastreeroots02.m2", + }, + { + fileId = "201945", + text = "feralastreeroots03.m2", + value = "feralastreeroots03.m2", + }, + { + fileId = "201946", + text = "feralastreeroots04.m2", + value = "feralastreeroots04.m2", + }, + { + fileId = "201947", + text = "feralastreeroots05.m2", + value = "feralastreeroots05.m2", + }, + { + fileId = "201948", + text = "feralastreestump01.m2", + value = "feralastreestump01.m2", + }, + { + fileId = "201949", + text = "feralastreestump02.m2", + value = "feralastreestump02.m2", + }, + }, + text = "tree", + value = "tree", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "feralas", + value = "feralas", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201968", + text = "elvendestroyerwreckback.m2", + value = "elvendestroyerwreckback.m2", + }, + }, + text = "elevendestoryerwreckback", + value = "elevendestoryerwreckback", + }, + { + children = { + { + fileId = "201972", + text = "elvendestroyerwreckfront.m2", + value = "elvendestroyerwreckfront.m2", + }, + }, + text = "elevendestoryerwreckfront", + value = "elevendestoryerwreckfront", + }, + { + children = { + { + fileId = "201973", + text = "elvendestroyerwrecksails.m2", + value = "elvendestroyerwrecksails.m2", + }, + }, + text = "elevendestoryerwrecksails", + value = "elevendestoryerwrecksails", + }, + { + children = { + { + fileId = "201982", + text = "nightelfguardtower.m2", + value = "nightelfguardtower.m2", + }, + }, + text = "nightelfguardtower", + value = "nightelfguardtower", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "generic", + value = "generic", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201985", + text = "hyjalgate.m2", + value = "hyjalgate.m2", + }, + }, + text = "doors", + value = "doors", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "201987", + text = "hyjalrock01.m2", + value = "hyjalrock01.m2", + }, + { + fileId = "201988", + text = "hyjalrock02.m2", + value = "hyjalrock02.m2", + }, + { + fileId = "201989", + text = "hyjalrock03.m2", + value = "hyjalrock03.m2", + }, + { + fileId = "201990", + text = "hyjalrock04.m2", + value = "hyjalrock04.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "201992", + text = "theworldtree.m2", + value = "theworldtree.m2", + }, + { + fileId = "201993", + text = "theworldtree_02.m2", + value = "theworldtree_02.m2", + }, + }, + text = "theworldtree", + value = "theworldtree", + }, + { + children = { + { + fileId = "201998", + text = "hyjalfallentree01.m2", + value = "hyjalfallentree01.m2", + }, + { + fileId = "201999", + text = "hyjaltree01.m2", + value = "hyjaltree01.m2", + }, + { + fileId = "202000", + text = "hyjaltree02.m2", + value = "hyjaltree02.m2", + }, + { + fileId = "202001", + text = "hyjaltree03.m2", + value = "hyjaltree03.m2", + }, + { + fileId = "202002", + text = "hyjaltree04.m2", + value = "hyjaltree04.m2", + }, + { + fileId = "202003", + text = "hyjaltree05.m2", + value = "hyjaltree05.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "hyjal", + value = "hyjal", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202013", + text = "felpinecone.m2", + value = "felpinecone.m2", + }, + }, + text = "felpinecone", + value = "felpinecone", + }, + { + children = { + { + fileId = "202016", + text = "furbolgtent.m2", + value = "furbolgtent.m2", + }, + { + fileId = "202017", + text = "furbolgtent2.m2", + value = "furbolgtent2.m2", + }, + }, + text = "furbolgtent", + value = "furbolgtent", + }, + { + children = { + { + fileId = "202018", + text = "furbolgtotem01.m2", + value = "furbolgtotem01.m2", + }, + { + fileId = "202019", + text = "furbolgtotem02.m2", + value = "furbolgtotem02.m2", + }, + }, + text = "furbolgtotem", + value = "furbolgtotem", + }, + { + children = { + { + fileId = "202021", + text = "kalidarbush01.m2", + value = "kalidarbush01.m2", + }, + { + fileId = "202022", + text = "kalidarbush02.m2", + value = "kalidarbush02.m2", + }, + { + fileId = "202023", + text = "kalidarbush03.m2", + value = "kalidarbush03.m2", + }, + { + fileId = "202024", + text = "kalidarbush04.m2", + value = "kalidarbush04.m2", + }, + }, + text = "kalidarbushes", + value = "kalidarbushes", + }, + { + children = { + { + fileId = "202029", + text = "kalidarnest01.m2", + value = "kalidarnest01.m2", + }, + { + fileId = "202030", + text = "kalidarnest02.m2", + value = "kalidarnest02.m2", + }, + }, + text = "kalidarharpynest", + value = "kalidarharpynest", + }, + { + children = { + { + fileId = "202034", + text = "kalidargiantroot01.m2", + value = "kalidargiantroot01.m2", + }, + { + fileId = "202035", + text = "kalidargiantroot02.m2", + value = "kalidargiantroot02.m2", + }, + { + fileId = "202038", + text = "kalidarroots01.m2", + value = "kalidarroots01.m2", + }, + { + fileId = "202039", + text = "kalidarroots02.m2", + value = "kalidarroots02.m2", + }, + { + fileId = "202040", + text = "kalidarroots03.m2", + value = "kalidarroots03.m2", + }, + { + fileId = "202041", + text = "kalidarroots04.m2", + value = "kalidarroots04.m2", + }, + }, + text = "kalidarroots", + value = "kalidarroots", + }, + { + children = { + { + fileId = "202044", + text = "kalidartreelog01.m2", + value = "kalidartreelog01.m2", + }, + { + fileId = "202045", + text = "kalidartreelog02.m2", + value = "kalidartreelog02.m2", + }, + }, + text = "kalidartreelogs", + value = "kalidartreelogs", + }, + { + children = { + { + fileId = "202048", + text = "kalidarfallentree01.m2", + value = "kalidarfallentree01.m2", + }, + { + fileId = "202050", + text = "kalidartree01.m2", + value = "kalidartree01.m2", + }, + { + fileId = "202051", + text = "kalidartree02.m2", + value = "kalidartree02.m2", + }, + { + fileId = "202052", + text = "kalidartree03.m2", + value = "kalidartree03.m2", + }, + { + fileId = "202053", + text = "kalidartree04.m2", + value = "kalidartree04.m2", + }, + { + fileId = "202054", + text = "kalidartree05.m2", + value = "kalidartree05.m2", + }, + { + fileId = "202055", + text = "kalidartree06.m2", + value = "kalidartree06.m2", + }, + { + fileId = "202056", + text = "kalidartree07.m2", + value = "kalidartree07.m2", + }, + { + fileId = "202057", + text = "kalidartree08.m2", + value = "kalidartree08.m2", + }, + { + fileId = "202058", + text = "kalidartree09.m2", + value = "kalidartree09.m2", + }, + }, + text = "kalidartrees", + value = "kalidartrees", + }, + { + children = { + { + fileId = "202059", + text = "kalidartreestump01.m2", + value = "kalidartreestump01.m2", + }, + { + fileId = "202060", + text = "kalidartreestump02.m2", + value = "kalidartreestump02.m2", + }, + }, + text = "kalidartreestumps", + value = "kalidartreestumps", + }, + { + children = { + { + fileId = "202061", + text = "moowellwaterfx.m2", + value = "moowellwaterfx.m2", + }, + }, + text = "moonwellwater", + value = "moonwellwater", + }, + { + children = { + { + fileId = "202063", + text = "oracletree.m2", + value = "oracletree.m2", + }, + { + fileId = "202064", + text = "oracletreebank.m2", + value = "oracletreebank.m2", + }, + }, + text = "oracletree", + value = "oracletree", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "kalidar", + value = "kalidar", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202071", + text = "centaurteleporter01.m2", + value = "centaurteleporter01.m2", + }, + { + fileId = "202074", + text = "maraudonstaffcreator.m2", + value = "maraudonstaffcreator.m2", + }, + }, + text = "button", + value = "button", + }, + { + children = { + { + fileId = "202077", + text = "stone_door01.m2", + value = "stone_door01.m2", + }, + }, + text = "doors", + value = "doors", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202080", + text = "bridgebrazierblue01.m2", + value = "bridgebrazierblue01.m2", + }, + { + fileId = "202081", + text = "bridgebraziergreen01.m2", + value = "bridgebraziergreen01.m2", + }, + { + fileId = "202082", + text = "bridgebrazierpurple01.m2", + value = "bridgebrazierpurple01.m2", + }, + }, + text = "bridgebraziers", + value = "bridgebraziers", + }, + { + children = { + { + fileId = "202086", + text = "centaurbrazierred01.m2", + value = "centaurbrazierred01.m2", + }, + }, + text = "centaurbraziers", + value = "centaurbraziers", + }, + { + children = { + { + fileId = "202088", + text = "centaurstatue01.m2", + value = "centaurstatue01.m2", + }, + }, + text = "centaurstatue", + value = "centaurstatue", + }, + { + children = { + { + fileId = "202092", + text = "maraudoncorruptedtree01.m2", + value = "maraudoncorruptedtree01.m2", + }, + { + fileId = "202093", + text = "maraudoncorruptedtree02.m2", + value = "maraudoncorruptedtree02.m2", + }, + { + fileId = "202097", + text = "maraudonmushroomlight01.m2", + value = "maraudonmushroomlight01.m2", + }, + { + fileId = "202098", + text = "maraudonmushroomlight02.m2", + value = "maraudonmushroomlight02.m2", + }, + { + fileId = "202099", + text = "maraudonpuffballred.m2", + value = "maraudonpuffballred.m2", + }, + { + fileId = "202100", + text = "maraudonpuffballred02.m2", + value = "maraudonpuffballred02.m2", + }, + { + fileId = "202101", + text = "maraudonpuffballred03.m2", + value = "maraudonpuffballred03.m2", + }, + { + fileId = "202104", + text = "maraudonspawnertree.m2", + value = "maraudonspawnertree.m2", + }, + { + fileId = "202106", + text = "maraudonspewertree.m2", + value = "maraudonspewertree.m2", + }, + { + fileId = "202107", + text = "maraudonspewertreebosscolor.m2", + value = "maraudonspewertreebosscolor.m2", + }, + { + fileId = "202109", + text = "maraudonsporetree.m2", + value = "maraudonsporetree.m2", + }, + { + fileId = "202111", + text = "maraudontransitiontree01.m2", + value = "maraudontransitiontree01.m2", + }, + { + fileId = "202112", + text = "maraudontransitiontree02.m2", + value = "maraudontransitiontree02.m2", + }, + }, + text = "corruptedplants", + value = "corruptedplants", + }, + { + children = { + { + fileId = "202123", + text = "amethystcrystal01.m2", + value = "amethystcrystal01.m2", + }, + { + fileId = "202124", + text = "amethystcrystal02.m2", + value = "amethystcrystal02.m2", + }, + { + fileId = "202125", + text = "amethystcrystal03.m2", + value = "amethystcrystal03.m2", + }, + { + fileId = "202126", + text = "amethystcrystal04.m2", + value = "amethystcrystal04.m2", + }, + { + fileId = "202127", + text = "amethystcrystal05.m2", + value = "amethystcrystal05.m2", + }, + { + fileId = "202128", + text = "amethystcrystal06.m2", + value = "amethystcrystal06.m2", + }, + { + fileId = "202129", + text = "diamondcrystal01.m2", + value = "diamondcrystal01.m2", + }, + { + fileId = "202130", + text = "diamondcrystal02.m2", + value = "diamondcrystal02.m2", + }, + { + fileId = "202131", + text = "diamondcrystal03.m2", + value = "diamondcrystal03.m2", + }, + { + fileId = "202132", + text = "diamondcrystal04.m2", + value = "diamondcrystal04.m2", + }, + { + fileId = "202136", + text = "maraudoncrystalred01.m2", + value = "maraudoncrystalred01.m2", + }, + { + fileId = "202140", + text = "rubycrystal01.m2", + value = "rubycrystal01.m2", + }, + { + fileId = "202141", + text = "rubycrystal02.m2", + value = "rubycrystal02.m2", + }, + { + fileId = "202142", + text = "rubycrystal03.m2", + value = "rubycrystal03.m2", + }, + { + fileId = "202143", + text = "rubycrystal04.m2", + value = "rubycrystal04.m2", + }, + { + fileId = "202144", + text = "rubycrystal05.m2", + value = "rubycrystal05.m2", + }, + { + fileId = "202145", + text = "rubycrystal06.m2", + value = "rubycrystal06.m2", + }, + { + fileId = "202146", + text = "rubycrystal07.m2", + value = "rubycrystal07.m2", + }, + { + fileId = "202147", + text = "rubycrystal08.m2", + value = "rubycrystal08.m2", + }, + { + fileId = "202148", + text = "rubycrystal09.m2", + value = "rubycrystal09.m2", + }, + { + fileId = "202149", + text = "rubycrystallarge01.m2", + value = "rubycrystallarge01.m2", + }, + { + fileId = "202150", + text = "rubycrystaltall01.m2", + value = "rubycrystaltall01.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "202154", + text = "maraudon_drippingflower01.m2", + value = "maraudon_drippingflower01.m2", + }, + }, + text = "flowers", + value = "flowers", + }, + { + children = { + { + fileId = "202158", + text = "grovegravemound01.m2", + value = "grovegravemound01.m2", + }, + }, + text = "grovegravemound", + value = "grovegravemound", + }, + { + children = { + { + fileId = "202164", + text = "maraudondetail01.m2", + value = "maraudondetail01.m2", + }, + { + fileId = "202165", + text = "maraudondetail02.m2", + value = "maraudondetail02.m2", + }, + { + fileId = "202166", + text = "maraudondetail03.m2", + value = "maraudondetail03.m2", + }, + { + fileId = "202167", + text = "maraudondetail04.m2", + value = "maraudondetail04.m2", + }, + { + fileId = "202168", + text = "maraudondetail05.m2", + value = "maraudondetail05.m2", + }, + { + fileId = "202169", + text = "maraudondetail06.m2", + value = "maraudondetail06.m2", + }, + { + fileId = "202170", + text = "maraudondetail07.m2", + value = "maraudondetail07.m2", + }, + }, + text = "mauradondetail", + value = "mauradondetail", + }, + { + children = { + { + fileId = "202173", + text = "maraudonmushroomspikey01.m2", + value = "maraudonmushroomspikey01.m2", + }, + { + fileId = "202174", + text = "maraudonmushroomspikey02.m2", + value = "maraudonmushroomspikey02.m2", + }, + { + fileId = "202176", + text = "maraudonshroom01.m2", + value = "maraudonshroom01.m2", + }, + { + fileId = "202177", + text = "maraudonshroom02.m2", + value = "maraudonshroom02.m2", + }, + { + fileId = "202178", + text = "maraudonshroom03.m2", + value = "maraudonshroom03.m2", + }, + }, + text = "mushrooms", + value = "mushrooms", + }, + { + children = { + { + fileId = "202182", + text = "maraudonpod01.m2", + value = "maraudonpod01.m2", + }, + { + fileId = "202183", + text = "maraudonpod02.m2", + value = "maraudonpod02.m2", + }, + }, + text = "pods", + value = "pods", + }, + { + children = { + { + fileId = "202186", + text = "maraudonroot01.m2", + value = "maraudonroot01.m2", + }, + { + fileId = "202187", + text = "maraudonroot02.m2", + value = "maraudonroot02.m2", + }, + { + fileId = "202188", + text = "maraudonroot03.m2", + value = "maraudonroot03.m2", + }, + { + fileId = "202189", + text = "maraudonroot04.m2", + value = "maraudonroot04.m2", + }, + { + fileId = "202190", + text = "maraudonroot05.m2", + value = "maraudonroot05.m2", + }, + { + fileId = "202191", + text = "maraudonroot06.m2", + value = "maraudonroot06.m2", + }, + { + fileId = "202192", + text = "maraudonroot07.m2", + value = "maraudonroot07.m2", + }, + }, + text = "roots", + value = "roots", + }, + { + children = { + { + fileId = "202194", + text = "ruinedcentaurtent01.m2", + value = "ruinedcentaurtent01.m2", + }, + { + fileId = "202195", + text = "ruinedcentaurtent02.m2", + value = "ruinedcentaurtent02.m2", + }, + { + fileId = "202196", + text = "ruinedcentaurtent03.m2", + value = "ruinedcentaurtent03.m2", + }, + { + fileId = "202197", + text = "ruinedcentaurtent04.m2", + value = "ruinedcentaurtent04.m2", + }, + }, + text = "ruinedtents", + value = "ruinedtents", + }, + { + children = { + { + fileId = "202200", + text = "mrdnsatyrbanner01.m2", + value = "mrdnsatyrbanner01.m2", + }, + { + fileId = "202201", + text = "mrdnsatyrbanner02.m2", + value = "mrdnsatyrbanner02.m2", + }, + { + fileId = "202202", + text = "mrdnsatyrbanner03.m2", + value = "mrdnsatyrbanner03.m2", + }, + }, + text = "satyrbanners", + value = "satyrbanners", + }, + { + children = { + { + fileId = "202203", + text = "satyrfloorbrazierblue01.m2", + value = "satyrfloorbrazierblue01.m2", + }, + { + fileId = "202204", + text = "satyrfloorbraziergreen01.m2", + value = "satyrfloorbraziergreen01.m2", + }, + { + fileId = "202205", + text = "satyrfloorbrazierpurple01.m2", + value = "satyrfloorbrazierpurple01.m2", + }, + }, + text = "satyrfloorbraziers", + value = "satyrfloorbraziers", + }, + { + children = { + { + fileId = "202208", + text = "satyr_graves01.m2", + value = "satyr_graves01.m2", + }, + { + fileId = "202209", + text = "satyr_graves02.m2", + value = "satyr_graves02.m2", + }, + { + fileId = "202210", + text = "satyr_graves03.m2", + value = "satyr_graves03.m2", + }, + { + fileId = "202211", + text = "satyr_graves04.m2", + value = "satyr_graves04.m2", + }, + { + fileId = "202212", + text = "satyr_graves05.m2", + value = "satyr_graves05.m2", + }, + { + fileId = "202213", + text = "satyr_graves06.m2", + value = "satyr_graves06.m2", + }, + }, + text = "satyrgraves", + value = "satyrgraves", + }, + { + children = { + { + fileId = "202216", + text = "satyrhangingbrazierblue01.m2", + value = "satyrhangingbrazierblue01.m2", + }, + { + fileId = "202217", + text = "satyrhangingbrazierblue02.m2", + value = "satyrhangingbrazierblue02.m2", + }, + { + fileId = "202218", + text = "satyrhangingbrazierpurple01.m2", + value = "satyrhangingbrazierpurple01.m2", + }, + }, + text = "satyrhangingbraziers", + value = "satyrhangingbraziers", + }, + { + children = { + { + fileId = "202220", + text = "satyrwall01.m2", + value = "satyrwall01.m2", + }, + { + fileId = "202221", + text = "satyrwall02.m2", + value = "satyrwall02.m2", + }, + { + fileId = "202222", + text = "satyrwall03.m2", + value = "satyrwall03.m2", + }, + { + fileId = "202223", + text = "satyrwall04.m2", + value = "satyrwall04.m2", + }, + }, + text = "satyrwalls", + value = "satyrwalls", + }, + { + children = { + { + fileId = "202225", + text = "sporelight01.m2", + value = "sporelight01.m2", + }, + { + fileId = "202229", + text = "sporelightyellow01.m2", + value = "sporelightyellow01.m2", + }, + }, + text = "sporelight", + value = "sporelight", + }, + { + children = { + { + fileId = "202231", + text = "maraudonspore01.m2", + value = "maraudonspore01.m2", + }, + }, + text = "spores", + value = "spores", + }, + { + children = { + { + fileId = "202232", + text = "maraudonstalactites01.m2", + value = "maraudonstalactites01.m2", + }, + { + fileId = "202233", + text = "maraudonstalactites02.m2", + value = "maraudonstalactites02.m2", + }, + { + fileId = "202234", + text = "maraudonstalactites03.m2", + value = "maraudonstalactites03.m2", + }, + { + fileId = "202235", + text = "maraudonstalactites04.m2", + value = "maraudonstalactites04.m2", + }, + { + fileId = "202236", + text = "maraudonstalactites05.m2", + value = "maraudonstalactites05.m2", + }, + }, + text = "stalactites", + value = "stalactites", + }, + { + children = { + { + fileId = "202238", + text = "maraudonnastyvine01.m2", + value = "maraudonnastyvine01.m2", + }, + { + fileId = "202239", + text = "maraudonnastyvine02.m2", + value = "maraudonnastyvine02.m2", + }, + { + fileId = "202240", + text = "maraudonnastyvine03.m2", + value = "maraudonnastyvine03.m2", + }, + { + fileId = "202241", + text = "maraudonnastyvine04.m2", + value = "maraudonnastyvine04.m2", + }, + { + fileId = "202242", + text = "maraudonnastyvine05.m2", + value = "maraudonnastyvine05.m2", + }, + { + fileId = "202243", + text = "maraudonnastyvine06.m2", + value = "maraudonnastyvine06.m2", + }, + { + fileId = "202244", + text = "maraudonnastyvine07.m2", + value = "maraudonnastyvine07.m2", + }, + }, + text = "vines", + value = "vines", + }, + { + children = { + { + fileId = "202246", + text = "maraudon_waterfall01.m2", + value = "maraudon_waterfall01.m2", + }, + { + fileId = "202247", + text = "maraudon_waterfall02.m2", + value = "maraudon_waterfall02.m2", + }, + { + fileId = "202248", + text = "maraudon_waterfall03.m2", + value = "maraudon_waterfall03.m2", + }, + { + fileId = "202249", + text = "maraudon_waterfall04.m2", + value = "maraudon_waterfall04.m2", + }, + { + fileId = "202251", + text = "maraudoncorruptedfalls.m2", + value = "maraudoncorruptedfalls.m2", + }, + { + fileId = "202252", + text = "maraudoncorruptedfalls02.m2", + value = "maraudoncorruptedfalls02.m2", + }, + { + fileId = "202253", + text = "maraudoncorruptedfalls03.m2", + value = "maraudoncorruptedfalls03.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "mauradon", + value = "mauradon", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202258", + text = "druidstone.m2", + value = "druidstone.m2", + }, + { + fileId = "202259", + text = "druidstonetopless.m2", + value = "druidstonetopless.m2", + }, + }, + text = "druidstone", + value = "druidstone", + }, + { + children = { + { + fileId = "202261", + text = "moongladebush01.m2", + value = "moongladebush01.m2", + }, + { + fileId = "202263", + text = "moongladebush02.m2", + value = "moongladebush02.m2", + }, + }, + text = "moongladebushes", + value = "moongladebushes", + }, + { + children = { + { + fileId = "202271", + text = "moongladetree01.m2", + value = "moongladetree01.m2", + }, + { + fileId = "202272", + text = "moongladetree02.m2", + value = "moongladetree02.m2", + }, + { + fileId = "202273", + text = "moongladetree03.m2", + value = "moongladetree03.m2", + }, + { + fileId = "202274", + text = "moongladetree04.m2", + value = "moongladetree04.m2", + }, + { + fileId = "202275", + text = "moongladetree05.m2", + value = "moongladetree05.m2", + }, + { + fileId = "202276", + text = "moongladetree06.m2", + value = "moongladetree06.m2", + }, + { + fileId = "202277", + text = "moongladetree07.m2", + value = "moongladetree07.m2", + }, + { + fileId = "202278", + text = "moongladetree08.m2", + value = "moongladetree08.m2", + }, + }, + text = "moongladetrees", + value = "moongladetrees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "moonglade", + value = "moonglade", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202292", + text = "burnedgypsywagon01.m2", + value = "burnedgypsywagon01.m2", + }, + { + fileId = "202293", + text = "burnedgypsywagon02.m2", + value = "burnedgypsywagon02.m2", + }, + }, + text = "burnedwagons", + value = "burnedwagons", + }, + { + children = { + { + fileId = "202295", + text = "funeralpyre01.m2", + value = "funeralpyre01.m2", + }, + }, + text = "funeralpyres", + value = "funeralpyres", + }, + { + children = { + { + fileId = "202297", + text = "pinecone.m2", + value = "pinecone.m2", + }, + }, + text = "pinecone", + value = "pinecone", + }, + { + children = { + { + fileId = "202298", + text = "mullgorerockarch.m2", + value = "mullgorerockarch.m2", + }, + }, + text = "rockarch", + value = "rockarch", + }, + { + children = { + { + fileId = "202300", + text = "mullgorerock01.m2", + value = "mullgorerock01.m2", + }, + { + fileId = "202301", + text = "mullgorerock02.m2", + value = "mullgorerock02.m2", + }, + { + fileId = "202302", + text = "mullgorerock03.m2", + value = "mullgorerock03.m2", + }, + { + fileId = "202303", + text = "mullgorerock04.m2", + value = "mullgorerock04.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "202305", + text = "mullgorethorn01.m2", + value = "mullgorethorn01.m2", + }, + { + fileId = "202306", + text = "mullgorethorn02.m2", + value = "mullgorethorn02.m2", + }, + { + fileId = "202307", + text = "mullgorethorn03.m2", + value = "mullgorethorn03.m2", + }, + { + fileId = "202308", + text = "mullgorethorn04.m2", + value = "mullgorethorn04.m2", + }, + { + fileId = "202309", + text = "mullgorethorn05.m2", + value = "mullgorethorn05.m2", + }, + { + fileId = "202310", + text = "mullgorethorn06.m2", + value = "mullgorethorn06.m2", + }, + { + fileId = "202311", + text = "mullgorethorn07.m2", + value = "mullgorethorn07.m2", + }, + { + fileId = "202312", + text = "mullgorethornspike.m2", + value = "mullgorethornspike.m2", + }, + }, + text = "thorns", + value = "thorns", + }, + { + children = { + { + fileId = "202316", + text = "elevatorcar.m2", + value = "elevatorcar.m2", + }, + { + fileId = "202317", + text = "kodoelevatormachine.m2", + value = "kodoelevatormachine.m2", + }, + }, + text = "thunderbluffelevator", + value = "thunderbluffelevator", + }, + { + children = { + { + fileId = "202321", + text = "mullgorefallentree01.m2", + value = "mullgorefallentree01.m2", + }, + { + fileId = "202322", + text = "mullgoretree01.m2", + value = "mullgoretree01.m2", + }, + { + fileId = "202323", + text = "mullgoretree02.m2", + value = "mullgoretree02.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "mulgore", + value = "mulgore", + }, + { + children = { + { + children = { + { + fileId = "202324", + text = "onyxiasgate01.m2", + value = "onyxiasgate01.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "202325", + text = "onyziaslairfallingrocks.m2", + value = "onyziaslairfallingrocks.m2", + }, + }, + text = "fallingrocks", + value = "fallingrocks", + }, + { + children = { + { + fileId = "202326", + text = "onyziaslairlavasplash.m2", + value = "onyziaslairlavasplash.m2", + }, + { + fileId = "252043", + text = "onyziaslairlavasplashstand.m2", + value = "onyziaslairlavasplashstand.m2", + }, + { + fileId = "202327", + text = "onyziaslairlavatrap.m2", + value = "onyziaslairlavatrap.m2", + }, + { + fileId = "202328", + text = "onyziaslairlavatrapmirror.m2", + value = "onyziaslairlavatrapmirror.m2", + }, + }, + text = "lavatraps", + value = "lavatraps", + }, + }, + text = "onyxiaslair", + value = "onyxiaslair", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "244282", + text = "org_arena_firedoor.m2", + value = "org_arena_firedoor.m2", + }, + { + fileId = "244283", + text = "org_arena_gear.m2", + value = "org_arena_gear.m2", + }, + { + fileId = "244284", + text = "org_arena_pulley.m2", + value = "org_arena_pulley.m2", + }, + { + fileId = "244285", + text = "org_arena_red_fence.m2", + value = "org_arena_red_fence.m2", + }, + { + fileId = "244286", + text = "org_arena_yellow_fence.m2", + value = "org_arena_yellow_fence.m2", + }, + }, + text = "arena", + value = "arena", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202334", + text = "kl_auctionhousecollide.m2", + value = "kl_auctionhousecollide.m2", + }, + }, + text = "auctionhouse", + value = "auctionhouse", + }, + { + children = { + { + fileId = "202335", + text = "orgrimmardoor.m2", + value = "orgrimmardoor.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "202337", + text = "magtheridontrophypost.m2", + value = "magtheridontrophypost.m2", + }, + }, + text = "magtheridontrophypost", + value = "magtheridontrophypost", + }, + { + children = { + { + fileId = "202344", + text = "manerothtree.m2", + value = "manerothtree.m2", + }, + }, + text = "manarothtree", + value = "manarothtree", + }, + { + children = { + { + fileId = "202348", + text = "hordemaptable.m2", + value = "hordemaptable.m2", + }, + { + fileId = "202349", + text = "hordemaptable_outland.m2", + value = "hordemaptable_outland.m2", + }, + }, + text = "maptable", + value = "maptable", + }, + { + children = { + { + fileId = "202355", + text = "hordenefarianpost.m2", + value = "hordenefarianpost.m2", + }, + { + fileId = "202356", + text = "hordeonyxiatrophypost.m2", + value = "hordeonyxiatrophypost.m2", + }, + }, + text = "onyxiatrophypost", + value = "onyxiatrophypost", + }, + { + children = { + { + fileId = "202360", + text = "orgrimmarbonfire01.m2", + value = "orgrimmarbonfire01.m2", + }, + { + fileId = "202362", + text = "orgrimmarfloatingembers.m2", + value = "orgrimmarfloatingembers.m2", + }, + { + fileId = "202363", + text = "orgrimmarsmokeemitter.m2", + value = "orgrimmarsmokeemitter.m2", + }, + }, + text = "orgrimmarbonfire", + value = "orgrimmarbonfire", + }, + { + children = { + { + fileId = "202366", + text = "orgrimmarpentagram.m2", + value = "orgrimmarpentagram.m2", + }, + }, + text = "pentagram", + value = "pentagram", + }, + { + fileId = "202367", + text = "thralls_throne.m2", + value = "thralls_throne.m2", + }, + { + fileId = "304922", + text = "thralls_throne_02.m2", + value = "thralls_throne_02.m2", + }, + { + children = { + { + fileId = "202368", + text = "orgrimmar_waterfalla.m2", + value = "orgrimmar_waterfalla.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "orgrimmar", + value = "orgrimmar", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202369", + text = "razorfendoor01.m2", + value = "razorfendoor01.m2", + }, + { + fileId = "202370", + text = "razorfendoor02.m2", + value = "razorfendoor02.m2", + }, + { + fileId = "202371", + text = "razorfendoor03.m2", + value = "razorfendoor03.m2", + }, + { + fileId = "202372", + text = "razorfendoor04.m2", + value = "razorfendoor04.m2", + }, + { + fileId = "202373", + text = "razorfendoor05.m2", + value = "razorfendoor05.m2", + }, + }, + text = "razorfendoors", + value = "razorfendoors", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + }, + text = "razorfen", + value = "razorfen", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202375", + text = "silithidlight02.m2", + value = "silithidlight02.m2", + }, + }, + text = "lights", + value = "lights", + }, + { + children = { + { + fileId = "202376", + text = "exterior_arch01.m2", + value = "exterior_arch01.m2", + }, + { + fileId = "202377", + text = "exterior_arch02.m2", + value = "exterior_arch02.m2", + }, + { + fileId = "202380", + text = "silithidmembrane_01.m2", + value = "silithidmembrane_01.m2", + }, + { + fileId = "202381", + text = "silithidmembrane_02.m2", + value = "silithidmembrane_02.m2", + }, + { + fileId = "202382", + text = "silithidmembrane_03.m2", + value = "silithidmembrane_03.m2", + }, + }, + text = "membranes", + value = "membranes", + }, + { + children = { + { + fileId = "202387", + text = "silithiddragonflymodel_01.m2", + value = "silithiddragonflymodel_01.m2", + }, + { + fileId = "202389", + text = "silithidlarvamodel_01.m2", + value = "silithidlarvamodel_01.m2", + }, + { + fileId = "202390", + text = "silithidpillbug01.m2", + value = "silithidpillbug01.m2", + }, + }, + text = "silithidmodels", + value = "silithidmodels", + }, + { + children = { + { + fileId = "202393", + text = "silithidspike_01.m2", + value = "silithidspike_01.m2", + }, + { + fileId = "202394", + text = "silithidspike_02.m2", + value = "silithidspike_02.m2", + }, + { + fileId = "202395", + text = "silithidspike_03.m2", + value = "silithidspike_03.m2", + }, + }, + text = "spikes", + value = "spikes", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "silithidhive", + value = "silithidhive", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202396", + text = "ahn_quiraj_ossiriancrystal.m2", + value = "ahn_quiraj_ossiriancrystal.m2", + }, + }, + text = "ahn_quiraj_ossiriancrystal", + value = "ahn_quiraj_ossiriancrystal", + }, + { + children = { + { + fileId = "202399", + text = "ahn_qiraj_doorplug.m2", + value = "ahn_qiraj_doorplug.m2", + }, + { + fileId = "202400", + text = "ahn_qiraj_doorroots.m2", + value = "ahn_qiraj_doorroots.m2", + }, + { + fileId = "202401", + text = "ahn_qiraj_doorrunes.m2", + value = "ahn_qiraj_doorrunes.m2", + }, + { + fileId = "202402", + text = "ahnqirajdoor01.m2", + value = "ahnqirajdoor01.m2", + }, + { + fileId = "202403", + text = "ahnqirajdoor02.m2", + value = "ahnqirajdoor02.m2", + }, + { + fileId = "202405", + text = "ahnqirajsandtrap.m2", + value = "ahnqirajsandtrap.m2", + }, + }, + text = "ahnqirajdoor", + value = "ahnqirajdoor", + }, + { + children = { + { + fileId = "202413", + text = "ahnqirajegglayer.m2", + value = "ahnqirajegglayer.m2", + }, + }, + text = "egglayer", + value = "egglayer", + }, + { + children = { + { + fileId = "202417", + text = "sandworm_rockbase.m2", + value = "sandworm_rockbase.m2", + }, + }, + text = "sandworm", + value = "sandworm", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202418", + text = "aq_coffinbase.m2", + value = "aq_coffinbase.m2", + }, + { + fileId = "202419", + text = "aq_coffinlid01.m2", + value = "aq_coffinlid01.m2", + }, + { + fileId = "202420", + text = "aq_coffinlid02.m2", + value = "aq_coffinlid02.m2", + }, + { + fileId = "202421", + text = "aq_coffinlid03.m2", + value = "aq_coffinlid03.m2", + }, + { + fileId = "202422", + text = "aq_coffinlid04.m2", + value = "aq_coffinlid04.m2", + }, + }, + text = "ahnqiracoffins", + value = "ahnqiracoffins", + }, + { + children = { + { + children = { + { + fileId = "202425", + text = "ahnqirajwalltorch01.m2", + value = "ahnqirajwalltorch01.m2", + }, + }, + text = "torch", + value = "torch", + }, + }, + text = "ahnqiraj", + value = "ahnqiraj", + }, + { + children = { + { + fileId = "202429", + text = "ahnqirajalter.m2", + value = "ahnqirajalter.m2", + }, + }, + text = "ahnqirajaltar", + value = "ahnqirajaltar", + }, + { + children = { + { + fileId = "202430", + text = "quirajglow.m2", + value = "quirajglow.m2", + }, + }, + text = "ahnqirajglow", + value = "ahnqirajglow", + }, + { + children = { + { + fileId = "202432", + text = "ahnqirajsconce01.m2", + value = "ahnqirajsconce01.m2", + }, + { + fileId = "202433", + text = "ahnqirajsconce02.m2", + value = "ahnqirajsconce02.m2", + }, + { + fileId = "202434", + text = "ahnqirajsconce03.m2", + value = "ahnqirajsconce03.m2", + }, + { + fileId = "202435", + text = "ahnqirajsconce04.m2", + value = "ahnqirajsconce04.m2", + }, + }, + text = "ahnqirajsconces", + value = "ahnqirajsconces", + }, + { + children = { + { + fileId = "202437", + text = "ahnqiraj_slab01.m2", + value = "ahnqiraj_slab01.m2", + }, + { + fileId = "202438", + text = "ahnqiraj_stair01.m2", + value = "ahnqiraj_stair01.m2", + }, + { + fileId = "202439", + text = "ahnqiraj_stair02.m2", + value = "ahnqiraj_stair02.m2", + }, + }, + text = "ahnqirajstairs", + value = "ahnqirajstairs", + }, + { + children = { + { + fileId = "202440", + text = "ahn_qirajbrick01.m2", + value = "ahn_qirajbrick01.m2", + }, + { + fileId = "202441", + text = "ahn_qirajbrick02.m2", + value = "ahn_qirajbrick02.m2", + }, + { + fileId = "202442", + text = "ahn_qirajobelisk.m2", + value = "ahn_qirajobelisk.m2", + }, + }, + text = "ahnqirajstones", + value = "ahnqirajstones", + }, + { + children = { + { + fileId = "202443", + text = "floatingpurplecrystal01.m2", + value = "floatingpurplecrystal01.m2", + }, + { + fileId = "202444", + text = "floatingpurplecrystalbroken01.m2", + value = "floatingpurplecrystalbroken01.m2", + }, + { + fileId = "202445", + text = "floatingpurplecrystalbroken02.m2", + value = "floatingpurplecrystalbroken02.m2", + }, + { + fileId = "202446", + text = "floatingpurplecrystalbroken03.m2", + value = "floatingpurplecrystalbroken03.m2", + }, + { + fileId = "202447", + text = "floatingredcrystal01.m2", + value = "floatingredcrystal01.m2", + }, + { + fileId = "202448", + text = "floatingredcrystalbroken01.m2", + value = "floatingredcrystalbroken01.m2", + }, + { + fileId = "202449", + text = "floatingredcrystalbroken02.m2", + value = "floatingredcrystalbroken02.m2", + }, + { + fileId = "202450", + text = "floatingredcrystalbroken03.m2", + value = "floatingredcrystalbroken03.m2", + }, + { + fileId = "202451", + text = "glyphedcrystal.m2", + value = "glyphedcrystal.m2", + }, + { + fileId = "202453", + text = "silithus_commcrystal_base01.m2", + value = "silithus_commcrystal_base01.m2", + }, + { + fileId = "202454", + text = "silithus_commcrystal_base02.m2", + value = "silithus_commcrystal_base02.m2", + }, + { + fileId = "202455", + text = "silithus_commcrystal_base03.m2", + value = "silithus_commcrystal_base03.m2", + }, + { + fileId = "202456", + text = "silithus_commnicationcrystal_01.m2", + value = "silithus_commnicationcrystal_01.m2", + }, + { + fileId = "202457", + text = "silithus_commnicationcrystal_02.m2", + value = "silithus_commnicationcrystal_02.m2", + }, + { + fileId = "202458", + text = "silithus_commnicationcrystal_03.m2", + value = "silithus_commnicationcrystal_03.m2", + }, + { + fileId = "202463", + text = "silithus_crystal_clump_01.m2", + value = "silithus_crystal_clump_01.m2", + }, + { + fileId = "202464", + text = "silithus_crystal_clump_02.m2", + value = "silithus_crystal_clump_02.m2", + }, + { + fileId = "202465", + text = "silithus_crystal_clump_03.m2", + value = "silithus_crystal_clump_03.m2", + }, + { + fileId = "202466", + text = "silithus_crystal_clump_04.m2", + value = "silithus_crystal_clump_04.m2", + }, + { + fileId = "202471", + text = "silithus_crystal_formation_01.m2", + value = "silithus_crystal_formation_01.m2", + }, + { + fileId = "202472", + text = "silithus_crystal_formation_02.m2", + value = "silithus_crystal_formation_02.m2", + }, + { + fileId = "202473", + text = "silithus_crystal_formation_03.m2", + value = "silithus_crystal_formation_03.m2", + }, + { + fileId = "202474", + text = "silithus_crystal_formation_04.m2", + value = "silithus_crystal_formation_04.m2", + }, + { + fileId = "202475", + text = "silithus_crystal_masterbase.m2", + value = "silithus_crystal_masterbase.m2", + }, + { + fileId = "202477", + text = "silithus_crystal_nub_01.m2", + value = "silithus_crystal_nub_01.m2", + }, + { + fileId = "202478", + text = "silithus_crystal_nub_02.m2", + value = "silithus_crystal_nub_02.m2", + }, + { + fileId = "202479", + text = "silithus_crystal_nub_03.m2", + value = "silithus_crystal_nub_03.m2", + }, + { + fileId = "202480", + text = "silithus_crystal_nub_04.m2", + value = "silithus_crystal_nub_04.m2", + }, + { + fileId = "202481", + text = "silithus_crystal_nub_05.m2", + value = "silithus_crystal_nub_05.m2", + }, + { + fileId = "202482", + text = "silithus_crystal_nub_06.m2", + value = "silithus_crystal_nub_06.m2", + }, + { + fileId = "202483", + text = "silithus_crystal_spike_01.m2", + value = "silithus_crystal_spike_01.m2", + }, + { + fileId = "202484", + text = "silithus_crystal_spike_02.m2", + value = "silithus_crystal_spike_02.m2", + }, + { + fileId = "202485", + text = "silithus_crystal_spike_03.m2", + value = "silithus_crystal_spike_03.m2", + }, + { + fileId = "202486", + text = "silithus_crystal_spike_04.m2", + value = "silithus_crystal_spike_04.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "202487", + text = "ahnqirajdustdevil.m2", + value = "ahnqirajdustdevil.m2", + }, + }, + text = "dustdevil", + value = "dustdevil", + }, + { + children = { + { + fileId = "202490", + text = "silithidegg.m2", + value = "silithidegg.m2", + }, + }, + text = "eggs", + value = "eggs", + }, + { + children = { + { + fileId = "202493", + text = "elventowerroofsilithus02.m2", + value = "elventowerroofsilithus02.m2", + }, + { + fileId = "202494", + text = "elventowersilithus02.m2", + value = "elventowersilithus02.m2", + }, + { + fileId = "202495", + text = "elventowersilithus03.m2", + value = "elventowersilithus03.m2", + }, + { + fileId = "202496", + text = "elventowersilithushorn.m2", + value = "elventowersilithushorn.m2", + }, + { + fileId = "202498", + text = "nightelfruinarchsilithus01.m2", + value = "nightelfruinarchsilithus01.m2", + }, + { + fileId = "202499", + text = "nightelfruinwallsilithus01.m2", + value = "nightelfruinwallsilithus01.m2", + }, + { + fileId = "202500", + text = "nightelfruinwallsilithus01b.m2", + value = "nightelfruinwallsilithus01b.m2", + }, + { + fileId = "202501", + text = "nightelfruinwallsilithus02.m2", + value = "nightelfruinwallsilithus02.m2", + }, + { + fileId = "202502", + text = "nightelfruinwallsilithus03.m2", + value = "nightelfruinwallsilithus03.m2", + }, + { + fileId = "202503", + text = "nightelfruinwallsilithusrubble01.m2", + value = "nightelfruinwallsilithusrubble01.m2", + }, + { + fileId = "202504", + text = "nightelfruinwallsilithusrubble02.m2", + value = "nightelfruinwallsilithusrubble02.m2", + }, + }, + text = "elven", + value = "elven", + }, + { + children = { + { + fileId = "202508", + text = "silithidgong.m2", + value = "silithidgong.m2", + }, + { + fileId = "202509", + text = "silithidgongpodium.m2", + value = "silithidgongpodium.m2", + }, + }, + text = "gong", + value = "gong", + }, + { + children = { + { + fileId = "202513", + text = "silithushanginghive01.m2", + value = "silithushanginghive01.m2", + }, + { + fileId = "202515", + text = "smallhive01.m2", + value = "smallhive01.m2", + }, + { + fileId = "202516", + text = "smallhive02.m2", + value = "smallhive02.m2", + }, + { + fileId = "202517", + text = "smallhive03.m2", + value = "smallhive03.m2", + }, + }, + text = "hives", + value = "hives", + }, + { + children = { + { + fileId = "202519", + text = "silithusinsectmound01.m2", + value = "silithusinsectmound01.m2", + }, + { + fileId = "202520", + text = "silithusinsectmound02.m2", + value = "silithusinsectmound02.m2", + }, + { + fileId = "202521", + text = "silithusinsectmound03.m2", + value = "silithusinsectmound03.m2", + }, + }, + text = "insectmound", + value = "insectmound", + }, + { + children = { + { + fileId = "202522", + text = "masterhiveswarm.m2", + value = "masterhiveswarm.m2", + }, + }, + text = "masterhiveswarm", + value = "masterhiveswarm", + }, + { + children = { + { + fileId = "202525", + text = "aq_mummy01.m2", + value = "aq_mummy01.m2", + }, + { + fileId = "202527", + text = "aq_mummy02.m2", + value = "aq_mummy02.m2", + }, + { + fileId = "202529", + text = "aq_mummy03.m2", + value = "aq_mummy03.m2", + }, + }, + text = "mummies", + value = "mummies", + }, + { + children = { + { + fileId = "202533", + text = "obsidianstatue.m2", + value = "obsidianstatue.m2", + }, + }, + text = "obsidianstatue", + value = "obsidianstatue", + }, + { + children = { + { + fileId = "202534", + text = "silithuspod01.m2", + value = "silithuspod01.m2", + }, + { + fileId = "202535", + text = "silithuspod02.m2", + value = "silithuspod02.m2", + }, + { + fileId = "202536", + text = "silithuspod03.m2", + value = "silithuspod03.m2", + }, + }, + text = "pods", + value = "pods", + }, + { + children = { + { + fileId = "202539", + text = "silithuspylon.m2", + value = "silithuspylon.m2", + }, + { + fileId = "202540", + text = "silithuspylonbroken.m2", + value = "silithuspylonbroken.m2", + }, + }, + text = "pylons", + value = "pylons", + }, + { + children = { + { + fileId = "202543", + text = "quiraj_small_swarm.m2", + value = "quiraj_small_swarm.m2", + }, + }, + text = "quiraj_small_swarm", + value = "quiraj_small_swarm", + }, + { + children = { + { + fileId = "202545", + text = "quiraj_beeroom_swarm.m2", + value = "quiraj_beeroom_swarm.m2", + }, + }, + text = "quirajbeeroomswarm", + value = "quirajbeeroomswarm", + }, + { + children = { + { + fileId = "202549", + text = "quirajfallenwall01.m2", + value = "quirajfallenwall01.m2", + }, + { + fileId = "202550", + text = "quirajlwall01.m2", + value = "quirajlwall01.m2", + }, + { + fileId = "202551", + text = "quirajlwall02.m2", + value = "quirajlwall02.m2", + }, + { + fileId = "202552", + text = "quirajlwall03.m2", + value = "quirajlwall03.m2", + }, + { + fileId = "202553", + text = "quirajpillar.m2", + value = "quirajpillar.m2", + }, + { + fileId = "202554", + text = "quirajpillarbroken.m2", + value = "quirajpillarbroken.m2", + }, + { + fileId = "202555", + text = "quirajruinblock01.m2", + value = "quirajruinblock01.m2", + }, + { + fileId = "202556", + text = "quirajruinblock02.m2", + value = "quirajruinblock02.m2", + }, + { + fileId = "202557", + text = "quirajruinblock03.m2", + value = "quirajruinblock03.m2", + }, + { + fileId = "202558", + text = "quirajtower03roof.m2", + value = "quirajtower03roof.m2", + }, + { + fileId = "202559", + text = "quirajtowerfallen.m2", + value = "quirajtowerfallen.m2", + }, + { + fileId = "202560", + text = "quirajtwall01.m2", + value = "quirajtwall01.m2", + }, + { + fileId = "202561", + text = "quirajtwall02.m2", + value = "quirajtwall02.m2", + }, + { + fileId = "202562", + text = "quirajtwall03.m2", + value = "quirajtwall03.m2", + }, + { + fileId = "202563", + text = "quirajtwallroof01.m2", + value = "quirajtwallroof01.m2", + }, + { + fileId = "202564", + text = "quirajtwallroof02.m2", + value = "quirajtwallroof02.m2", + }, + { + fileId = "202565", + text = "quirajwall01.m2", + value = "quirajwall01.m2", + }, + { + fileId = "202566", + text = "quirajwall02.m2", + value = "quirajwall02.m2", + }, + { + fileId = "202567", + text = "quirajwall03.m2", + value = "quirajwall03.m2", + }, + }, + text = "quirajruins", + value = "quirajruins", + }, + { + children = { + { + fileId = "202568", + text = "silithusgate01.m2", + value = "silithusgate01.m2", + }, + { + fileId = "202569", + text = "silithusruinsobelisk01.m2", + value = "silithusruinsobelisk01.m2", + }, + { + fileId = "202570", + text = "silithusruinsobelisk02.m2", + value = "silithusruinsobelisk02.m2", + }, + { + fileId = "202571", + text = "silithusruinsobelisk03.m2", + value = "silithusruinsobelisk03.m2", + }, + { + fileId = "202572", + text = "silithusruinspillar02.m2", + value = "silithusruinspillar02.m2", + }, + { + fileId = "202573", + text = "silithusruinswall01.m2", + value = "silithusruinswall01.m2", + }, + { + fileId = "202574", + text = "silithusruinswall02.m2", + value = "silithusruinswall02.m2", + }, + { + fileId = "202575", + text = "silithusruinswall03.m2", + value = "silithusruinswall03.m2", + }, + { + fileId = "202576", + text = "silithusruinswall04.m2", + value = "silithusruinswall04.m2", + }, + { + fileId = "202577", + text = "silithusruinswall05.m2", + value = "silithusruinswall05.m2", + }, + { + fileId = "202578", + text = "silithusruinswall06.m2", + value = "silithusruinswall06.m2", + }, + { + fileId = "202579", + text = "silithusruinswall07.m2", + value = "silithusruinswall07.m2", + }, + }, + text = "ruins", + value = "ruins", + }, + { + children = { + { + fileId = "202580", + text = "silithidtankhuskabdomen.m2", + value = "silithidtankhuskabdomen.m2", + }, + { + fileId = "202581", + text = "silithidtankhuskfullbody.m2", + value = "silithidtankhuskfullbody.m2", + }, + { + fileId = "202582", + text = "silithidtankhuskhead.m2", + value = "silithidtankhuskhead.m2", + }, + { + fileId = "202583", + text = "silithidtankhuskleg.m2", + value = "silithidtankhuskleg.m2", + }, + { + fileId = "202584", + text = "silithidtankhuskthorax.m2", + value = "silithidtankhuskthorax.m2", + }, + }, + text = "silithidtankhusks", + value = "silithidtankhusks", + }, + { + children = { + { + fileId = "202587", + text = "silithidwasphuskabdomen.m2", + value = "silithidwasphuskabdomen.m2", + }, + { + fileId = "202588", + text = "silithidwasphuskfullbody.m2", + value = "silithidwasphuskfullbody.m2", + }, + { + fileId = "202589", + text = "silithidwasphuskhead.m2", + value = "silithidwasphuskhead.m2", + }, + { + fileId = "202590", + text = "silithidwasphuskleg.m2", + value = "silithidwasphuskleg.m2", + }, + { + fileId = "202591", + text = "silithidwasphuskthorax.m2", + value = "silithidwasphuskthorax.m2", + }, + { + fileId = "202592", + text = "silithidwasphuskwings.m2", + value = "silithidwasphuskwings.m2", + }, + }, + text = "silithidwasphusks", + value = "silithidwasphusks", + }, + { + children = { + { + fileId = "202593", + text = "silithusruinspillartop.m2", + value = "silithusruinspillartop.m2", + }, + }, + text = "silithusruinspillartop", + value = "silithusruinspillartop", + }, + { + children = { + { + fileId = "202595", + text = "twilighttabletlower.m2", + value = "twilighttabletlower.m2", + }, + { + fileId = "202596", + text = "twilighttabletupper.m2", + value = "twilighttabletupper.m2", + }, + }, + text = "twilighttablet", + value = "twilighttablet", + }, + { + children = { + { + fileId = "202598", + text = "waspswarm.m2", + value = "waspswarm.m2", + }, + }, + text = "waspswarm", + value = "waspswarm", + }, + { + children = { + { + fileId = "202599", + text = "silithussandwaterfalllarge.m2", + value = "silithussandwaterfalllarge.m2", + }, + { + fileId = "202600", + text = "silithussandwaterfallmeduim.m2", + value = "silithussandwaterfallmeduim.m2", + }, + { + fileId = "202601", + text = "silithussandwaterfallsmall.m2", + value = "silithussandwaterfallsmall.m2", + }, + { + fileId = "202602", + text = "silithussandwaterfallsplash.m2", + value = "silithussandwaterfallsplash.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "silithus", + value = "silithus", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202605", + text = "g_sapling01.m2", + value = "g_sapling01.m2", + }, + { + fileId = "202606", + text = "g_sapling02.m2", + value = "g_sapling02.m2", + }, + { + fileId = "202607", + text = "g_sapling03.m2", + value = "g_sapling03.m2", + }, + { + fileId = "202608", + text = "sapling01.m2", + value = "sapling01.m2", + }, + }, + text = "tree", + value = "tree", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202611", + text = "stonetalonharpysnest01.m2", + value = "stonetalonharpysnest01.m2", + }, + { + fileId = "202612", + text = "stonetalonharpysnest02.m2", + value = "stonetalonharpysnest02.m2", + }, + }, + text = "harpynests", + value = "harpynests", + }, + { + children = { + { + fileId = "202614", + text = "stonetalonrockoutcrop01.m2", + value = "stonetalonrockoutcrop01.m2", + }, + }, + text = "rock", + value = "rock", + }, + { + children = { + { + fileId = "202615", + text = "stonetalontools_crank01.m2", + value = "stonetalontools_crank01.m2", + }, + { + fileId = "202616", + text = "stonetalontools_saw01.m2", + value = "stonetalontools_saw01.m2", + }, + }, + text = "tools", + value = "tools", + }, + { + children = { + { + fileId = "202617", + text = "burntstonetree01.m2", + value = "burntstonetree01.m2", + }, + { + fileId = "202618", + text = "burntstonetree07.m2", + value = "burntstonetree07.m2", + }, + { + fileId = "202619", + text = "burntstonetree08.m2", + value = "burntstonetree08.m2", + }, + { + fileId = "202620", + text = "stonetree01.m2", + value = "stonetree01.m2", + }, + { + fileId = "202621", + text = "stonetree02.m2", + value = "stonetree02.m2", + }, + { + fileId = "202622", + text = "stonetree03.m2", + value = "stonetree03.m2", + }, + { + fileId = "202623", + text = "stonetree04.m2", + value = "stonetree04.m2", + }, + { + fileId = "202624", + text = "stonetree05.m2", + value = "stonetree05.m2", + }, + { + fileId = "202625", + text = "stonetree06.m2", + value = "stonetree06.m2", + }, + { + fileId = "202626", + text = "stonetree07.m2", + value = "stonetree07.m2", + }, + { + fileId = "202627", + text = "stonetree08.m2", + value = "stonetree08.m2", + }, + { + fileId = "202633", + text = "stonetreelog01.m2", + value = "stonetreelog01.m2", + }, + { + fileId = "202634", + text = "stonetreelog02.m2", + value = "stonetreelog02.m2", + }, + { + fileId = "202635", + text = "stonetreelog03.m2", + value = "stonetreelog03.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "202639", + text = "burntstonetreestump02.m2", + value = "burntstonetreestump02.m2", + }, + { + fileId = "202640", + text = "burntstonetreestump03.m2", + value = "burntstonetreestump03.m2", + }, + { + fileId = "202641", + text = "stonetreestump01.m2", + value = "stonetreestump01.m2", + }, + { + fileId = "202642", + text = "stonetreestump02.m2", + value = "stonetreestump02.m2", + }, + { + fileId = "202643", + text = "stonetreestump03.m2", + value = "stonetreestump03.m2", + }, + { + fileId = "202644", + text = "stonetreestump04.m2", + value = "stonetreestump04.m2", + }, + }, + text = "treestumps", + value = "treestumps", + }, + { + children = { + { + fileId = "202646", + text = "stonetalonwaterwheel.m2", + value = "stonetalonwaterwheel.m2", + }, + }, + text = "waterwheel", + value = "waterwheel", + }, + { + children = { + { + fileId = "202649", + text = "stonetree01_web.m2", + value = "stonetree01_web.m2", + }, + { + fileId = "202650", + text = "stonetree02_web.m2", + value = "stonetree02_web.m2", + }, + { + fileId = "202651", + text = "stonetree03_web.m2", + value = "stonetree03_web.m2", + }, + { + fileId = "202652", + text = "stonetree07_web.m2", + value = "stonetree07_web.m2", + }, + }, + text = "webbedtrees", + value = "webbedtrees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "stonetalon", + value = "stonetalon", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202655", + text = "tanaristrollgate.m2", + value = "tanaristrollgate.m2", + }, + }, + text = "trollgate", + value = "trollgate", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202657", + text = "tanariscactus01.m2", + value = "tanariscactus01.m2", + }, + { + fileId = "202658", + text = "tanariscactus02.m2", + value = "tanariscactus02.m2", + }, + { + fileId = "202659", + text = "tanariscactus03.m2", + value = "tanariscactus03.m2", + }, + { + fileId = "202660", + text = "tanariscactus04.m2", + value = "tanariscactus04.m2", + }, + { + fileId = "202661", + text = "tanariscactus05.m2", + value = "tanariscactus05.m2", + }, + { + fileId = "202662", + text = "tanariscactus06.m2", + value = "tanariscactus06.m2", + }, + }, + text = "cacti", + value = "cacti", + }, + { + children = { + { + fileId = "202670", + text = "desertholdingpen.m2", + value = "desertholdingpen.m2", + }, + }, + text = "desertholdingpen", + value = "desertholdingpen", + }, + { + children = { + { + fileId = "254405", + text = "go_bottlerocket_1.m2", + value = "go_bottlerocket_1.m2", + }, + { + fileId = "254406", + text = "go_bottlerocket_2.m2", + value = "go_bottlerocket_2.m2", + }, + { + fileId = "254409", + text = "go_crate_1.m2", + value = "go_crate_1.m2", + }, + { + fileId = "254410", + text = "go_crate_2.m2", + value = "go_crate_2.m2", + }, + { + fileId = "254414", + text = "go_crate_3.m2", + value = "go_crate_3.m2", + }, + { + fileId = "254415", + text = "go_dynamite.m2", + value = "go_dynamite.m2", + }, + { + fileId = "254416", + text = "go_dynamite_bundle.m2", + value = "go_dynamite_bundle.m2", + }, + { + fileId = "254418", + text = "go_large_bomb_1.m2", + value = "go_large_bomb_1.m2", + }, + { + fileId = "254419", + text = "go_large_bomb_2.m2", + value = "go_large_bomb_2.m2", + }, + { + fileId = "254420", + text = "go_large_rocket_1.m2", + value = "go_large_rocket_1.m2", + }, + { + fileId = "254421", + text = "go_large_rocket_2.m2", + value = "go_large_rocket_2.m2", + }, + { + fileId = "254422", + text = "go_small_bomb.m2", + value = "go_small_bomb.m2", + }, + { + fileId = "254423", + text = "go_small_bomb_pile.m2", + value = "go_small_bomb_pile.m2", + }, + { + fileId = "202672", + text = "tanarisgoblinwall01.m2", + value = "tanarisgoblinwall01.m2", + }, + { + fileId = "202673", + text = "tanarisgoblinwall02.m2", + value = "tanarisgoblinwall02.m2", + }, + { + fileId = "202674", + text = "tanarisgoblinwallcurve01.m2", + value = "tanarisgoblinwallcurve01.m2", + }, + { + fileId = "202675", + text = "tanarisgoblinwallgatebigbits.m2", + value = "tanarisgoblinwallgatebigbits.m2", + }, + { + fileId = "202676", + text = "tanarisgoblinwallpost01.m2", + value = "tanarisgoblinwallpost01.m2", + }, + }, + text = "goblin", + value = "goblin", + }, + { + children = { + { + fileId = "202677", + text = "tanarisrock01.m2", + value = "tanarisrock01.m2", + }, + { + fileId = "202678", + text = "tanarisrock02.m2", + value = "tanarisrock02.m2", + }, + { + fileId = "202679", + text = "tanarisrock03.m2", + value = "tanarisrock03.m2", + }, + { + fileId = "202680", + text = "tanarisrock04.m2", + value = "tanarisrock04.m2", + }, + { + fileId = "202681", + text = "tanarisrock05.m2", + value = "tanarisrock05.m2", + }, + { + fileId = "202682", + text = "tanarisrock06.m2", + value = "tanarisrock06.m2", + }, + { + fileId = "202683", + text = "tanarisrock07.m2", + value = "tanarisrock07.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "307576", + text = "oiltank_01.m2", + value = "oiltank_01.m2", + }, + { + fileId = "202687", + text = "tanariswatertower.m2", + value = "tanariswatertower.m2", + }, + { + fileId = "307492", + text = "tanariswatertower_steel.m2", + value = "tanariswatertower_steel.m2", + }, + }, + text = "watertower", + value = "watertower", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "tanaris", + value = "tanaris", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202690", + text = "gnomebleachers.m2", + value = "gnomebleachers.m2", + }, + { + fileId = "202692", + text = "goblinbleachers.m2", + value = "goblinbleachers.m2", + }, + }, + text = "bleachers", + value = "bleachers", + }, + { + children = { + { + fileId = "202693", + text = "thousandneedlesbridge.m2", + value = "thousandneedlesbridge.m2", + }, + }, + text = "bridge", + value = "bridge", + }, + { + children = { + { + fileId = "202694", + text = "back-stop.m2", + value = "back-stop.m2", + }, + { + fileId = "202695", + text = "straightaway01.m2", + value = "straightaway01.m2", + }, + { + fileId = "202696", + text = "straightaway02.m2", + value = "straightaway02.m2", + }, + { + fileId = "202697", + text = "straightaway03.m2", + value = "straightaway03.m2", + }, + { + fileId = "202698", + text = "straightaway04.m2", + value = "straightaway04.m2", + }, + { + fileId = "202699", + text = "turn01-1.m2", + value = "turn01-1.m2", + }, + { + fileId = "202700", + text = "turn01-2.m2", + value = "turn01-2.m2", + }, + { + fileId = "202701", + text = "turn02-1.m2", + value = "turn02-1.m2", + }, + { + fileId = "202702", + text = "turn02-2.m2", + value = "turn02-2.m2", + }, + { + fileId = "202703", + text = "turn03.m2", + value = "turn03.m2", + }, + { + fileId = "202704", + text = "turn04.m2", + value = "turn04.m2", + }, + { + fileId = "202705", + text = "turn05-1.m2", + value = "turn05-1.m2", + }, + { + fileId = "202706", + text = "turn05-2.m2", + value = "turn05-2.m2", + }, + { + fileId = "202707", + text = "turn06.m2", + value = "turn06.m2", + }, + }, + text = "haybails", + value = "haybails", + }, + { + children = { + { + fileId = "202709", + text = "racingflag01.m2", + value = "racingflag01.m2", + }, + }, + text = "racingflags", + value = "racingflags", + }, + { + children = { + { + fileId = "202710", + text = "saltflatrock_01.m2", + value = "saltflatrock_01.m2", + }, + { + fileId = "202711", + text = "saltflatrock_02.m2", + value = "saltflatrock_02.m2", + }, + { + fileId = "202712", + text = "saltflatrock_03.m2", + value = "saltflatrock_03.m2", + }, + { + fileId = "202713", + text = "saltflatrock_04.m2", + value = "saltflatrock_04.m2", + }, + { + fileId = "202716", + text = "thousandrock01.m2", + value = "thousandrock01.m2", + }, + { + fileId = "202718", + text = "thousandrock02.m2", + value = "thousandrock02.m2", + }, + { + fileId = "202719", + text = "thousandrock03.m2", + value = "thousandrock03.m2", + }, + { + fileId = "202720", + text = "thousandrock04.m2", + value = "thousandrock04.m2", + }, + { + fileId = "202721", + text = "thousandrock05.m2", + value = "thousandrock05.m2", + }, + { + fileId = "202722", + text = "thousandrock06.m2", + value = "thousandrock06.m2", + }, + { + fileId = "202723", + text = "thousandrock07.m2", + value = "thousandrock07.m2", + }, + { + fileId = "202724", + text = "thousandrock08.m2", + value = "thousandrock08.m2", + }, + { + fileId = "202725", + text = "thousandrock09.m2", + value = "thousandrock09.m2", + }, + { + fileId = "202726", + text = "thousandrock10.m2", + value = "thousandrock10.m2", + }, + { + fileId = "202727", + text = "thousandrock11.m2", + value = "thousandrock11.m2", + }, + { + fileId = "202728", + text = "thousandrock12.m2", + value = "thousandrock12.m2", + }, + { + fileId = "202729", + text = "thousandrock13.m2", + value = "thousandrock13.m2", + }, + { + fileId = "202730", + text = "thousandrock14.m2", + value = "thousandrock14.m2", + }, + { + fileId = "202731", + text = "thousandrock15.m2", + value = "thousandrock15.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "202733", + text = "snake_nest_001.m2", + value = "snake_nest_001.m2", + }, + { + fileId = "202734", + text = "snake_nest_002.m2", + value = "snake_nest_002.m2", + }, + }, + text = "snakenests", + value = "snakenests", + }, + { + children = { + { + fileId = "202737", + text = "wyverneggs01.m2", + value = "wyverneggs01.m2", + }, + { + fileId = "202738", + text = "wyverneggs02.m2", + value = "wyverneggs02.m2", + }, + }, + text = "wyverneggs", + value = "wyverneggs", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "thousandneedles", + value = "thousandneedles", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202740", + text = "timbermawwoodendoor.m2", + value = "timbermawwoodendoor.m2", + }, + }, + text = "woodendoor", + value = "woodendoor", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202742", + text = "timbermawflower01.m2", + value = "timbermawflower01.m2", + }, + { + fileId = "202744", + text = "timbermawflower02.m2", + value = "timbermawflower02.m2", + }, + }, + text = "timbermawflowers", + value = "timbermawflowers", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "timbermaw", + value = "timbermaw", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202747", + text = "ungoroarchway01.m2", + value = "ungoroarchway01.m2", + }, + }, + text = "archway", + value = "archway", + }, + { + children = { + { + fileId = "202748", + text = "ungorocrystal_blue01.m2", + value = "ungorocrystal_blue01.m2", + }, + { + fileId = "202749", + text = "ungorocrystal_blue02.m2", + value = "ungorocrystal_blue02.m2", + }, + { + fileId = "202750", + text = "ungorocrystal_green01.m2", + value = "ungorocrystal_green01.m2", + }, + { + fileId = "202751", + text = "ungorocrystal_green02.m2", + value = "ungorocrystal_green02.m2", + }, + { + fileId = "202752", + text = "ungorocrystal_red01.m2", + value = "ungorocrystal_red01.m2", + }, + { + fileId = "202753", + text = "ungorocrystal_red02.m2", + value = "ungorocrystal_red02.m2", + }, + { + fileId = "202754", + text = "ungorocrystal_yellow01.m2", + value = "ungorocrystal_yellow01.m2", + }, + { + fileId = "202755", + text = "ungorocrystal_yellow02.m2", + value = "ungorocrystal_yellow02.m2", + }, + { + fileId = "202759", + text = "ungorocrystalpylon01.m2", + value = "ungorocrystalpylon01.m2", + }, + }, + text = "crystals", + value = "crystals", + }, + { + children = { + { + fileId = "202766", + text = "ungorogeyser01.m2", + value = "ungorogeyser01.m2", + }, + { + fileId = "202767", + text = "ungorogeyser02.m2", + value = "ungorogeyser02.m2", + }, + }, + text = "geyser", + value = "geyser", + }, + { + children = { + { + fileId = "202770", + text = "ungororock06.m2", + value = "ungororock06.m2", + }, + { + fileId = "202771", + text = "ungororock07.m2", + value = "ungororock07.m2", + }, + { + fileId = "202772", + text = "ungororock08.m2", + value = "ungororock08.m2", + }, + { + fileId = "202773", + text = "ungororock09.m2", + value = "ungororock09.m2", + }, + { + fileId = "202774", + text = "ungororock10.m2", + value = "ungororock10.m2", + }, + { + fileId = "202775", + text = "ungororock11.m2", + value = "ungororock11.m2", + }, + { + fileId = "202776", + text = "ungororock12.m2", + value = "ungororock12.m2", + }, + { + fileId = "202777", + text = "ungororock13.m2", + value = "ungororock13.m2", + }, + { + fileId = "202778", + text = "ungororock14.m2", + value = "ungororock14.m2", + }, + { + fileId = "202779", + text = "ungororock15.m2", + value = "ungororock15.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "202781", + text = "ungorothreshadoncorpse.m2", + value = "ungorothreshadoncorpse.m2", + }, + }, + text = "threshadoncorpse", + value = "threshadoncorpse", + }, + { + children = { + { + fileId = "202782", + text = "ungorotreebite.m2", + value = "ungorotreebite.m2", + }, + { + fileId = "202783", + text = "ungorotreebreak.m2", + value = "ungorotreebreak.m2", + }, + { + fileId = "202784", + text = "ungorotreebreak2.m2", + value = "ungorotreebreak2.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "202786", + text = "trexfootprint.m2", + value = "trexfootprint.m2", + }, + }, + text = "trexfootprint", + value = "trexfootprint", + }, + { + children = { + { + fileId = "202787", + text = "ungoroblackbubble.m2", + value = "ungoroblackbubble.m2", + }, + }, + text = "ungorobubbles", + value = "ungorobubbles", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "ungoro", + value = "ungoro", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202790", + text = "wc_basket01.m2", + value = "wc_basket01.m2", + }, + }, + text = "baskets", + value = "baskets", + }, + { + children = { + { + fileId = "202792", + text = "wc_cage01.m2", + value = "wc_cage01.m2", + }, + }, + text = "cages", + value = "cages", + }, + { + children = { + { + fileId = "202794", + text = "wc_basinstone.m2", + value = "wc_basinstone.m2", + }, + { + fileId = "202795", + text = "wc_bedstone.m2", + value = "wc_bedstone.m2", + }, + { + fileId = "202796", + text = "wc_benchstone.m2", + value = "wc_benchstone.m2", + }, + { + fileId = "202797", + text = "wc_benchstone02.m2", + value = "wc_benchstone02.m2", + }, + { + fileId = "202798", + text = "wc_cairn.m2", + value = "wc_cairn.m2", + }, + { + fileId = "202799", + text = "wc_druidofthequatlcircle.m2", + value = "wc_druidofthequatlcircle.m2", + }, + { + fileId = "202800", + text = "wc_druidoftheraptorcircle.m2", + value = "wc_druidoftheraptorcircle.m2", + }, + { + fileId = "202801", + text = "wc_druidoftheraptorclaw.m2", + value = "wc_druidoftheraptorclaw.m2", + }, + { + fileId = "202802", + text = "wc_druidoftheraptortooth.m2", + value = "wc_druidoftheraptortooth.m2", + }, + { + fileId = "202803", + text = "wc_druidoftheserpentcircle.m2", + value = "wc_druidoftheserpentcircle.m2", + }, + { + fileId = "202804", + text = "wc_druidoftheserpentstone.m2", + value = "wc_druidoftheserpentstone.m2", + }, + { + fileId = "202805", + text = "wc_druidoftheserpentstonehead.m2", + value = "wc_druidoftheserpentstonehead.m2", + }, + { + fileId = "202806", + text = "wc_druidofthethundercircle.m2", + value = "wc_druidofthethundercircle.m2", + }, + { + fileId = "202807", + text = "wc_druidofthethunderspine.m2", + value = "wc_druidofthethunderspine.m2", + }, + { + fileId = "202814", + text = "wc_stoolstone.m2", + value = "wc_stoolstone.m2", + }, + { + fileId = "202815", + text = "wc_tablestone.m2", + value = "wc_tablestone.m2", + }, + }, + text = "fangdruids", + value = "fangdruids", + }, + { + children = { + { + fileId = "202818", + text = "wc_hanginghead01.m2", + value = "wc_hanginghead01.m2", + }, + }, + text = "hangingheads", + value = "hangingheads", + }, + { + children = { + { + fileId = "202821", + text = "wc_stickbundle01.m2", + value = "wc_stickbundle01.m2", + }, + { + fileId = "202822", + text = "wc_stickbundle02.m2", + value = "wc_stickbundle02.m2", + }, + { + fileId = "202823", + text = "wc_stickbundle03.m2", + value = "wc_stickbundle03.m2", + }, + }, + text = "stickbundles", + value = "stickbundles", + }, + { + children = { + { + fileId = "202824", + text = "wailingwaterfall01.m2", + value = "wailingwaterfall01.m2", + }, + }, + text = "waterfalls", + value = "waterfalls", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "wailingcaverns", + value = "wailingcaverns", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202828", + text = "winterspringaltar01.m2", + value = "winterspringaltar01.m2", + }, + }, + text = "altar", + value = "altar", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202832", + text = "winterspringfrostsaberrock.m2", + value = "winterspringfrostsaberrock.m2", + }, + }, + text = "frostsaberrock", + value = "frostsaberrock", + }, + { + children = { + { + fileId = "202834", + text = "frozenwaterfall01.m2", + value = "frozenwaterfall01.m2", + }, + { + fileId = "202835", + text = "frozenwaterfall02.m2", + value = "frozenwaterfall02.m2", + }, + { + fileId = "202836", + text = "frozenwaterfall03.m2", + value = "frozenwaterfall03.m2", + }, + }, + text = "frozenwaterfalls", + value = "frozenwaterfalls", + }, + { + children = { + { + fileId = "202839", + text = "furbolgtentsnow.m2", + value = "furbolgtentsnow.m2", + }, + { + fileId = "202840", + text = "furbolgtentsnow2.m2", + value = "furbolgtentsnow2.m2", + }, + }, + text = "furbolgtent", + value = "furbolgtent", + }, + { + children = { + { + fileId = "202841", + text = "furbolgtotemsnow01.m2", + value = "furbolgtotemsnow01.m2", + }, + { + fileId = "202842", + text = "furbolgtotemsnow02.m2", + value = "furbolgtotemsnow02.m2", + }, + }, + text = "furbolgtotems", + value = "furbolgtotems", + }, + { + children = { + { + fileId = "202845", + text = "winterspringrock01.m2", + value = "winterspringrock01.m2", + }, + { + fileId = "202846", + text = "winterspringrock02.m2", + value = "winterspringrock02.m2", + }, + { + fileId = "202847", + text = "winterspringrock03.m2", + value = "winterspringrock03.m2", + }, + { + fileId = "202848", + text = "winterspringrock04.m2", + value = "winterspringrock04.m2", + }, + { + fileId = "202849", + text = "winterspringrock05.m2", + value = "winterspringrock05.m2", + }, + { + fileId = "202850", + text = "winterspringrock06.m2", + value = "winterspringrock06.m2", + }, + { + fileId = "202851", + text = "winterspringrock07.m2", + value = "winterspringrock07.m2", + }, + { + fileId = "202852", + text = "winterspringrock08.m2", + value = "winterspringrock08.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "202855", + text = "newwinterspringmidtree01.m2", + value = "newwinterspringmidtree01.m2", + }, + { + fileId = "202856", + text = "newwinterspringmidtree02.m2", + value = "newwinterspringmidtree02.m2", + }, + { + fileId = "202857", + text = "newwinterspringtree01.m2", + value = "newwinterspringtree01.m2", + }, + { + fileId = "202858", + text = "newwinterspringtree02.m2", + value = "newwinterspringtree02.m2", + }, + { + fileId = "202859", + text = "newwinterspringtree05.m2", + value = "newwinterspringtree05.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "202868", + text = "winterspringbush01.m2", + value = "winterspringbush01.m2", + }, + }, + text = "winterspringbushes", + value = "winterspringbushes", + }, + { + children = { + { + fileId = "202872", + text = "winterspringfallenbranch01.m2", + value = "winterspringfallenbranch01.m2", + }, + { + fileId = "202873", + text = "winterspringfallentree01.m2", + value = "winterspringfallentree01.m2", + }, + { + fileId = "202874", + text = "winterspringfallentree02.m2", + value = "winterspringfallentree02.m2", + }, + }, + text = "winterspringfallentrees", + value = "winterspringfallentrees", + }, + { + children = { + { + fileId = "202876", + text = "winterspringtree01.m2", + value = "winterspringtree01.m2", + }, + { + fileId = "202877", + text = "winterspringtree02.m2", + value = "winterspringtree02.m2", + }, + { + fileId = "202878", + text = "winterspringtree03.m2", + value = "winterspringtree03.m2", + }, + }, + text = "winterspringtrees", + value = "winterspringtrees", + }, + { + children = { + { + fileId = "202884", + text = "winterspringworldtreeroot01.m2", + value = "winterspringworldtreeroot01.m2", + }, + { + fileId = "202885", + text = "winterspringworldtreeroot02.m2", + value = "winterspringworldtreeroot02.m2", + }, + { + fileId = "202886", + text = "winterspringworldtreeroot03.m2", + value = "winterspringworldtreeroot03.m2", + }, + { + fileId = "202887", + text = "winterspringworldtreeroot04.m2", + value = "winterspringworldtreeroot04.m2", + }, + }, + text = "worldtreeroots", + value = "worldtreeroots", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "winterspring", + value = "winterspring", + }, + }, + text = "kalimdor", + value = "kalimdor", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "202890", + text = "badlandsbones01.m2", + value = "badlandsbones01.m2", + }, + { + fileId = "202891", + text = "badlandsbones02.m2", + value = "badlandsbones02.m2", + }, + { + fileId = "202892", + text = "badlandsbones03.m2", + value = "badlandsbones03.m2", + }, + }, + text = "bones", + value = "bones", + }, + { + children = { + { + fileId = "202904", + text = "badlandsshrub01.m2", + value = "badlandsshrub01.m2", + }, + { + fileId = "202905", + text = "badlandsshrub02.m2", + value = "badlandsshrub02.m2", + }, + { + fileId = "202906", + text = "badlandsshrub03.m2", + value = "badlandsshrub03.m2", + }, + { + fileId = "202907", + text = "badlandsshrub03dead.m2", + value = "badlandsshrub03dead.m2", + }, + { + fileId = "202908", + text = "badlandsshrub04.m2", + value = "badlandsshrub04.m2", + }, + { + fileId = "202909", + text = "badlandsshrub04dead.m2", + value = "badlandsshrub04dead.m2", + }, + { + fileId = "202910", + text = "badlandsshrub05.m2", + value = "badlandsshrub05.m2", + }, + { + fileId = "202911", + text = "badlandsshrub06.m2", + value = "badlandsshrub06.m2", + }, + { + fileId = "202913", + text = "badlandsshrub07.m2", + value = "badlandsshrub07.m2", + }, + { + fileId = "202914", + text = "badlandsshrub08.m2", + value = "badlandsshrub08.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "202925", + text = "badlandscactus_1.m2", + value = "badlandscactus_1.m2", + }, + { + fileId = "202926", + text = "badlandscactus_10.m2", + value = "badlandscactus_10.m2", + }, + { + fileId = "202927", + text = "badlandscactus_2.m2", + value = "badlandscactus_2.m2", + }, + { + fileId = "202928", + text = "badlandscactus_3.m2", + value = "badlandscactus_3.m2", + }, + { + fileId = "202929", + text = "badlandscactus_4.m2", + value = "badlandscactus_4.m2", + }, + { + fileId = "202930", + text = "badlandscactus_5.m2", + value = "badlandscactus_5.m2", + }, + { + fileId = "202931", + text = "badlandscactus_6.m2", + value = "badlandscactus_6.m2", + }, + { + fileId = "202932", + text = "badlandscactus_7.m2", + value = "badlandscactus_7.m2", + }, + { + fileId = "202933", + text = "badlandscactus_8.m2", + value = "badlandscactus_8.m2", + }, + { + fileId = "202934", + text = "badlandscactus_9.m2", + value = "badlandscactus_9.m2", + }, + }, + text = "cactus", + value = "cactus", + }, + { + children = { + { + fileId = "202935", + text = "questbladebadlands.m2", + value = "questbladebadlands.m2", + }, + }, + text = "questblade", + value = "questblade", + }, + { + children = { + { + fileId = "202940", + text = "badlandsrock01.m2", + value = "badlandsrock01.m2", + }, + { + fileId = "202941", + text = "badlandsrock02.m2", + value = "badlandsrock02.m2", + }, + { + fileId = "202942", + text = "badlandsrock03.m2", + value = "badlandsrock03.m2", + }, + { + fileId = "202943", + text = "badlandsrock04.m2", + value = "badlandsrock04.m2", + }, + { + fileId = "202944", + text = "badlandsrock05.m2", + value = "badlandsrock05.m2", + }, + { + fileId = "202945", + text = "badlandsrock06.m2", + value = "badlandsrock06.m2", + }, + { + fileId = "202946", + text = "badlandsrock07.m2", + value = "badlandsrock07.m2", + }, + { + fileId = "202947", + text = "badlandsrock08.m2", + value = "badlandsrock08.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "202952", + text = "pentagramdirtbadlands.m2", + value = "pentagramdirtbadlands.m2", + }, + }, + text = "rune", + value = "rune", + }, + { + children = { + { + fileId = "202953", + text = "badlandsskeletalking.m2", + value = "badlandsskeletalking.m2", + }, + }, + text = "skeletalking", + value = "skeletalking", + }, + { + children = { + { + fileId = "202955", + text = "badlandscobrapillar01.m2", + value = "badlandscobrapillar01.m2", + }, + { + fileId = "202956", + text = "badlandscobrapillar02.m2", + value = "badlandscobrapillar02.m2", + }, + { + fileId = "202957", + text = "badlandscobrapillar03.m2", + value = "badlandscobrapillar03.m2", + }, + { + fileId = "202958", + text = "badlandscobrastatue01.m2", + value = "badlandscobrastatue01.m2", + }, + { + fileId = "202959", + text = "badlandscobrastatue02.m2", + value = "badlandscobrastatue02.m2", + }, + { + fileId = "202960", + text = "badlandscobrastatue03.m2", + value = "badlandscobrastatue03.m2", + }, + }, + text = "statues", + value = "statues", + }, + { + children = { + { + fileId = "202970", + text = "badlandscactus01.m2", + value = "badlandscactus01.m2", + }, + { + fileId = "202971", + text = "badlandscactus02.m2", + value = "badlandscactus02.m2", + }, + { + fileId = "202972", + text = "badlandscactus03.m2", + value = "badlandscactus03.m2", + }, + { + fileId = "202973", + text = "badlandspalmtree01.m2", + value = "badlandspalmtree01.m2", + }, + { + fileId = "202974", + text = "badlandspalmtree02.m2", + value = "badlandspalmtree02.m2", + }, + { + fileId = "202975", + text = "badlandstree01.m2", + value = "badlandstree01.m2", + }, + { + fileId = "202976", + text = "badlandstree01dead.m2", + value = "badlandstree01dead.m2", + }, + { + fileId = "202977", + text = "badlandstree01fallen.m2", + value = "badlandstree01fallen.m2", + }, + { + fileId = "202978", + text = "badlandstree02.m2", + value = "badlandstree02.m2", + }, + { + fileId = "202979", + text = "badlandstree02dead.m2", + value = "badlandstree02dead.m2", + }, + { + fileId = "202980", + text = "badlandstree02fallen.m2", + value = "badlandstree02fallen.m2", + }, + { + fileId = "202981", + text = "badlandstree03.m2", + value = "badlandstree03.m2", + }, + { + fileId = "202982", + text = "badlandstree03dead.m2", + value = "badlandstree03dead.m2", + }, + { + fileId = "202983", + text = "badlandstree04.m2", + value = "badlandstree04.m2", + }, + { + fileId = "202984", + text = "badlandstreestump01.m2", + value = "badlandstreestump01.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "203004", + text = "badlandssunkenwagon.m2", + value = "badlandssunkenwagon.m2", + }, + }, + text = "wagon", + value = "wagon", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "badlands", + value = "badlands", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203006", + text = "blackrockaltarritual.m2", + value = "blackrockaltarritual.m2", + }, + }, + text = "altarritual", + value = "altarritual", + }, + { + children = { + { + fileId = "203010", + text = "darkironanvil.m2", + value = "darkironanvil.m2", + }, + { + fileId = "203012", + text = "darkironforge.m2", + value = "darkironforge.m2", + }, + }, + text = "anvil", + value = "anvil", + }, + { + children = { + { + fileId = "203013", + text = "arenaflag.m2", + value = "arenaflag.m2", + }, + }, + text = "arenaflag", + value = "arenaflag", + }, + { + children = { + { + fileId = "203016", + text = "blackrockchalice.m2", + value = "blackrockchalice.m2", + }, + }, + text = "chalice", + value = "chalice", + }, + { + children = { + { + fileId = "203018", + text = "darkironbrazier.m2", + value = "darkironbrazier.m2", + }, + }, + text = "darkironbrazier", + value = "darkironbrazier", + }, + { + children = { + { + fileId = "203020", + text = "darkironsafe.m2", + value = "darkironsafe.m2", + }, + }, + text = "safe", + value = "safe", + }, + { + children = { + { + fileId = "203022", + text = "blackrockseal.m2", + value = "blackrockseal.m2", + }, + }, + text = "seal", + value = "seal", + }, + { + children = { + { + fileId = "203024", + text = "statuedarkironthaurissan.m2", + value = "statuedarkironthaurissan.m2", + }, + { + fileId = "203025", + text = "statuedarkironthaurissanhammer.m2", + value = "statuedarkironthaurissanhammer.m2", + }, + }, + text = "statuethaurissan", + value = "statuethaurissan", + }, + { + children = { + { + fileId = "203027", + text = "blackrocksuppressiontrap.m2", + value = "blackrocksuppressiontrap.m2", + }, + }, + text = "suppressiontrap", + value = "suppressiontrap", + }, + { + children = { + { + fileId = "203028", + text = "blackrockvaultdepositdoor01.m2", + value = "blackrockvaultdepositdoor01.m2", + }, + { + fileId = "203029", + text = "blackrockvaultdepositdoor02.m2", + value = "blackrockvaultdepositdoor02.m2", + }, + { + fileId = "203030", + text = "blackrockvaultsecretdoor.m2", + value = "blackrockvaultsecretdoor.m2", + }, + { + fileId = "203031", + text = "blackrockvaultspecialdoor.m2", + value = "blackrockvaultspecialdoor.m2", + }, + }, + text = "vault", + value = "vault", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "203033", + text = "blackrockdirectionalsign.m2", + value = "blackrockdirectionalsign.m2", + }, + }, + text = "blackrockdirectionalsign", + value = "blackrockdirectionalsign", + }, + { + children = { + { + fileId = "203035", + text = "blackrockstatuelavabubble.m2", + value = "blackrockstatuelavabubble.m2", + }, + { + fileId = "203036", + text = "blackrockstatuelavabubbles.m2", + value = "blackrockstatuelavabubbles.m2", + }, + { + fileId = "203037", + text = "blackrockstatuelavasplash.m2", + value = "blackrockstatuelavasplash.m2", + }, + }, + text = "blackrocklavabubbles", + value = "blackrocklavabubbles", + }, + { + children = { + { + fileId = "203040", + text = "blackrocklavafalls01.m2", + value = "blackrocklavafalls01.m2", + }, + { + fileId = "203041", + text = "blackrocklavafalls02.m2", + value = "blackrocklavafalls02.m2", + }, + { + fileId = "203043", + text = "blackrockmouthlava01.m2", + value = "blackrockmouthlava01.m2", + }, + { + fileId = "203044", + text = "blackrockmouthlava02.m2", + value = "blackrockmouthlava02.m2", + }, + { + fileId = "203045", + text = "blackrockstatuelavaflow.m2", + value = "blackrockstatuelavaflow.m2", + }, + { + fileId = "203046", + text = "blackrockstatuelavaflowwide.m2", + value = "blackrockstatuelavaflowwide.m2", + }, + }, + text = "blackrocklavaflow", + value = "blackrocklavaflow", + }, + { + children = { + { + fileId = "203050", + text = "bankportrait.m2", + value = "bankportrait.m2", + }, + { + fileId = "203051", + text = "bankportraitplate.m2", + value = "bankportraitplate.m2", + }, + }, + text = "blackrockportraits", + value = "blackrockportraits", + }, + { + fileId = "203054", + text = "blackrockteslacoil.m2", + value = "blackrockteslacoil.m2", + }, + { + children = { + { + fileId = "203055", + text = "blackwinglair_throne.m2", + value = "blackwinglair_throne.m2", + }, + }, + text = "blackwingthrone", + value = "blackwingthrone", + }, + { + children = { + { + fileId = "203057", + text = "blackrockbloodmachine01.m2", + value = "blackrockbloodmachine01.m2", + }, + { + fileId = "203058", + text = "blackrockbloodmachine02.m2", + value = "blackrockbloodmachine02.m2", + }, + { + fileId = "203059", + text = "blackrockbloodmachine03.m2", + value = "blackrockbloodmachine03.m2", + }, + { + fileId = "203060", + text = "blackrockbloodmachine04.m2", + value = "blackrockbloodmachine04.m2", + }, + { + fileId = "203061", + text = "blackrockbloodvile.m2", + value = "blackrockbloodvile.m2", + }, + { + fileId = "203069", + text = "hangingdragon01.m2", + value = "hangingdragon01.m2", + }, + { + fileId = "203070", + text = "hangingdragon02.m2", + value = "hangingdragon02.m2", + }, + { + fileId = "203072", + text = "wallmountedvial01.m2", + value = "wallmountedvial01.m2", + }, + { + fileId = "203073", + text = "wallmountedvial02.m2", + value = "wallmountedvial02.m2", + }, + }, + text = "deathwingexperiments", + value = "deathwingexperiments", + }, + { + children = { + { + fileId = "203074", + text = "blackrockcelldoor01.m2", + value = "blackrockcelldoor01.m2", + }, + { + fileId = "203075", + text = "blackrockdoors01.m2", + value = "blackrockdoors01.m2", + }, + { + fileId = "203076", + text = "blackrockdoorsingle.m2", + value = "blackrockdoorsingle.m2", + }, + { + fileId = "203077", + text = "blackrockhugedoors.m2", + value = "blackrockhugedoors.m2", + }, + { + fileId = "203078", + text = "blackrockhugedoorsmechanism.m2", + value = "blackrockhugedoorsmechanism.m2", + }, + { + fileId = "203082", + text = "blackrockhugedoorsmechanismlock.m2", + value = "blackrockhugedoorsmechanismlock.m2", + }, + { + fileId = "203083", + text = "blackrockhugedoorsopendoorcollision.m2", + value = "blackrockhugedoorsopendoorcollision.m2", + }, + { + fileId = "203084", + text = "blackrockhugedoorsportcullis.m2", + value = "blackrockhugedoorsportcullis.m2", + }, + { + fileId = "203086", + text = "blackrockirondoor01.m2", + value = "blackrockirondoor01.m2", + }, + { + fileId = "203087", + text = "darkironportcullis.m2", + value = "darkironportcullis.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "203089", + text = "dragonkinegg.m2", + value = "dragonkinegg.m2", + }, + { + fileId = "203090", + text = "dragonkineggbroken.m2", + value = "dragonkineggbroken.m2", + }, + }, + text = "dragonkineggs", + value = "dragonkineggs", + }, + { + children = { + { + fileId = "203091", + text = "dragonkinnest01.m2", + value = "dragonkinnest01.m2", + }, + { + fileId = "203092", + text = "dragonkinnest02.m2", + value = "dragonkinnest02.m2", + }, + { + fileId = "203093", + text = "dragonkinnest03.m2", + value = "dragonkinnest03.m2", + }, + { + fileId = "203094", + text = "dragonkinnestclump01.m2", + value = "dragonkinnestclump01.m2", + }, + }, + text = "dragonkinnests", + value = "dragonkinnests", + }, + { + children = { + { + fileId = "203096", + text = "cannongolemarm.m2", + value = "cannongolemarm.m2", + }, + { + fileId = "203097", + text = "cannongolembust.m2", + value = "cannongolembust.m2", + }, + { + fileId = "203098", + text = "cannongolemcannon.m2", + value = "cannongolemcannon.m2", + }, + { + fileId = "203099", + text = "cannongolemfoot.m2", + value = "cannongolemfoot.m2", + }, + { + fileId = "203100", + text = "cannongolemoperationtable.m2", + value = "cannongolemoperationtable.m2", + }, + { + fileId = "203101", + text = "cannongolemwaist.m2", + value = "cannongolemwaist.m2", + }, + { + fileId = "203103", + text = "darkironoperationtableempty.m2", + value = "darkironoperationtableempty.m2", + }, + }, + text = "golemparts", + value = "golemparts", + }, + { + children = { + { + fileId = "203105", + text = "blackrockhookarm01.m2", + value = "blackrockhookarm01.m2", + }, + { + fileId = "203106", + text = "blackrockhookbody01.m2", + value = "blackrockhookbody01.m2", + }, + { + fileId = "203107", + text = "blackrockhookcannon01.m2", + value = "blackrockhookcannon01.m2", + }, + { + fileId = "203108", + text = "blackrockhookempty.m2", + value = "blackrockhookempty.m2", + }, + { + fileId = "203109", + text = "blackrockhookfoot01.m2", + value = "blackrockhookfoot01.m2", + }, + { + fileId = "203110", + text = "blackrockhookhead01.m2", + value = "blackrockhookhead01.m2", + }, + }, + text = "hooks", + value = "hooks", + }, + { + children = { + { + fileId = "203112", + text = "museumgem01.m2", + value = "museumgem01.m2", + }, + }, + text = "museumgem", + value = "museumgem", + }, + { + children = { + { + fileId = "203114", + text = "warchiefrendshead.m2", + value = "warchiefrendshead.m2", + }, + }, + text = "warchiefshead", + value = "warchiefshead", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "blackrock", + value = "blackrock", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203116", + text = "fortress01_06.m2", + value = "fortress01_06.m2", + }, + }, + text = "fortress01_06", + value = "fortress01_06", + }, + { + children = { + { + fileId = "203120", + text = "fortress01_08.m2", + value = "fortress01_08.m2", + }, + }, + text = "fortress01_08", + value = "fortress01_08", + }, + { + children = { + { + fileId = "203122", + text = "fortress01_09.m2", + value = "fortress01_09.m2", + }, + }, + text = "fortress01_09", + value = "fortress01_09", + }, + { + children = { + { + fileId = "203123", + text = "fortress02_04.m2", + value = "fortress02_04.m2", + }, + }, + text = "fortress02_04", + value = "fortress02_04", + }, + { + children = { + { + fileId = "203124", + text = "fortress02_06.m2", + value = "fortress02_06.m2", + }, + }, + text = "fortress02_06", + value = "fortress02_06", + }, + { + children = { + { + fileId = "203125", + text = "fortress02_07.m2", + value = "fortress02_07.m2", + }, + }, + text = "fortress02_07", + value = "fortress02_07", + }, + { + children = { + { + fileId = "203126", + text = "fortress03_03.m2", + value = "fortress03_03.m2", + }, + }, + text = "fortress03_03", + value = "fortress03_03", + }, + { + children = { + { + fileId = "203127", + text = "fortress03_04a.m2", + value = "fortress03_04a.m2", + }, + }, + text = "fortress03_04a", + value = "fortress03_04a", + }, + { + children = { + { + fileId = "203128", + text = "fortress03_04b.m2", + value = "fortress03_04b.m2", + }, + }, + text = "fortress03_04b", + value = "fortress03_04b", + }, + { + children = { + { + fileId = "203129", + text = "fortress03_05.m2", + value = "fortress03_05.m2", + }, + }, + text = "fortress03_05", + value = "fortress03_05", + }, + { + children = { + { + fileId = "203130", + text = "fortress03_05b.m2", + value = "fortress03_05b.m2", + }, + }, + text = "fortress03_05b", + value = "fortress03_05b", + }, + { + children = { + { + fileId = "203131", + text = "fortress04_03.m2", + value = "fortress04_03.m2", + }, + }, + text = "fortress04_03", + value = "fortress04_03", + }, + { + children = { + { + fileId = "203132", + text = "fortress04_05.m2", + value = "fortress04_05.m2", + }, + }, + text = "fortress04_05", + value = "fortress04_05", + }, + { + children = { + { + fileId = "203133", + text = "fortress04_06.m2", + value = "fortress04_06.m2", + }, + }, + text = "fortress04_06", + value = "fortress04_06", + }, + { + children = { + { + fileId = "203134", + text = "fortress05_03.m2", + value = "fortress05_03.m2", + }, + }, + text = "fortress05_03", + value = "fortress05_03", + }, + { + children = { + { + fileId = "203135", + text = "fortress05_05.m2", + value = "fortress05_05.m2", + }, + }, + text = "fortress05_05", + value = "fortress05_05", + }, + { + children = { + { + fileId = "203136", + text = "runestonesnow_01.m2", + value = "runestonesnow_01.m2", + }, + }, + text = "runestonesnow_01", + value = "runestonesnow_01", + }, + }, + text = "buildings", + value = "buildings", + }, + { + children = { + { + children = { + { + fileId = "203138", + text = "auctioneercollision.m2", + value = "auctioneercollision.m2", + }, + }, + text = "auctionhouse", + value = "auctionhouse", + }, + { + children = { + { + fileId = "203139", + text = "dwarfbannerblue01.m2", + value = "dwarfbannerblue01.m2", + }, + { + fileId = "203140", + text = "dwarfbannergold01.m2", + value = "dwarfbannergold01.m2", + }, + { + fileId = "203141", + text = "dwarfbannerred01.m2", + value = "dwarfbannerred01.m2", + }, + { + fileId = "203142", + text = "dwarfbannersilver01.m2", + value = "dwarfbannersilver01.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "203148", + text = "ironforgeangledbush01.m2", + value = "ironforgeangledbush01.m2", + }, + { + fileId = "203149", + text = "ironforgebush01.m2", + value = "ironforgebush01.m2", + }, + { + fileId = "203151", + text = "ironforgesnowybush02.m2", + value = "ironforgesnowybush02.m2", + }, + }, + text = "bush", + value = "bush", + }, + { + children = { + { + fileId = "203152", + text = "ironforgeelevator.m2", + value = "ironforgeelevator.m2", + }, + { + fileId = "203153", + text = "ironforgeelevatordoor.m2", + value = "ironforgeelevatordoor.m2", + }, + { + fileId = "203154", + text = "ironforgehouseelevator.m2", + value = "ironforgehouseelevator.m2", + }, + }, + text = "elevators", + value = "elevators", + }, + { + children = { + { + fileId = "203158", + text = "dunmoroghstonefence01.m2", + value = "dunmoroghstonefence01.m2", + }, + { + fileId = "203159", + text = "dunmoroghstonefence02.m2", + value = "dunmoroghstonefence02.m2", + }, + { + fileId = "203160", + text = "dunmoroghstonefence03.m2", + value = "dunmoroghstonefence03.m2", + }, + { + fileId = "203161", + text = "dunmoroghstonefence04.m2", + value = "dunmoroghstonefence04.m2", + }, + }, + text = "fences", + value = "fences", + }, + { + children = { + { + fileId = "203162", + text = "garagemachine.m2", + value = "garagemachine.m2", + }, + }, + text = "garagemachine", + value = "garagemachine", + }, + { + children = { + { + fileId = "203164", + text = "gnomekinggear.m2", + value = "gnomekinggear.m2", + }, + { + fileId = "203165", + text = "gnomekinggearsmall.m2", + value = "gnomekinggearsmall.m2", + }, + { + fileId = "203167", + text = "gnomekingpistons.m2", + value = "gnomekingpistons.m2", + }, + { + fileId = "203168", + text = "gnomekingspiralgear.m2", + value = "gnomekingspiralgear.m2", + }, + { + fileId = "203169", + text = "gnomekingwormgear.m2", + value = "gnomekingwormgear.m2", + }, + { + children = { + { + fileId = "203171", + text = "gnomereganvent.m2", + value = "gnomereganvent.m2", + }, + }, + text = "vent", + value = "vent", + }, + }, + text = "gnomearea", + value = "gnomearea", + }, + { + children = { + { + fileId = "203176", + text = "thegreatanvil.m2", + value = "thegreatanvil.m2", + }, + }, + text = "greatforge", + value = "greatforge", + }, + { + children = { + { + fileId = "203177", + text = "hammerquest01.m2", + value = "hammerquest01.m2", + }, + }, + text = "hammerquest01", + value = "hammerquest01", + }, + { + children = { + { + fileId = "203178", + text = "hotcoals.m2", + value = "hotcoals.m2", + }, + }, + text = "hotcoals", + value = "hotcoals", + }, + { + children = { + { + fileId = "203179", + text = "forgelavaa.m2", + value = "forgelavaa.m2", + }, + { + fileId = "203180", + text = "forgelavab.m2", + value = "forgelavab.m2", + }, + { + fileId = "203181", + text = "ironforgebellow.m2", + value = "ironforgebellow.m2", + }, + { + fileId = "203184", + text = "ironforgepiston.m2", + value = "ironforgepiston.m2", + }, + { + fileId = "203185", + text = "ironforgewheel.m2", + value = "ironforgewheel.m2", + }, + { + fileId = "203187", + text = "lavapots.m2", + value = "lavapots.m2", + }, + { + fileId = "203188", + text = "lavasteam.m2", + value = "lavasteam.m2", + }, + }, + text = "lavasteam", + value = "lavasteam", + }, + { + children = { + { + fileId = "203190", + text = "margolreaverhorn.m2", + value = "margolreaverhorn.m2", + }, + }, + text = "margolreaverhorn", + value = "margolreaverhorn", + }, + { + children = { + { + fileId = "203194", + text = "dwarvenglobe01.m2", + value = "dwarvenglobe01.m2", + }, + { + fileId = "203195", + text = "giantramexhibit.m2", + value = "giantramexhibit.m2", + }, + { + fileId = "203196", + text = "gryphonclawexhibit.m2", + value = "gryphonclawexhibit.m2", + }, + }, + text = "museumexhibits", + value = "museumexhibits", + }, + { + children = { + { + fileId = "203198", + text = "dwarfmuseumplaque01.m2", + value = "dwarfmuseumplaque01.m2", + }, + }, + text = "plaques", + value = "plaques", + }, + { + children = { + { + fileId = "203200", + text = "ironforgecliff01.m2", + value = "ironforgecliff01.m2", + }, + { + fileId = "203201", + text = "ironforgecliff02.m2", + value = "ironforgecliff02.m2", + }, + { + fileId = "203202", + text = "ironforgecliff03.m2", + value = "ironforgecliff03.m2", + }, + { + fileId = "203203", + text = "ironforgecliff04.m2", + value = "ironforgecliff04.m2", + }, + { + fileId = "203208", + text = "snowytowerrock01.m2", + value = "snowytowerrock01.m2", + }, + { + fileId = "203209", + text = "snowytowerrock02.m2", + value = "snowytowerrock02.m2", + }, + { + fileId = "203210", + text = "snowytowerrock03.m2", + value = "snowytowerrock03.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "203213", + text = "ironforgesignpost.m2", + value = "ironforgesignpost.m2", + }, + { + fileId = "203214", + text = "ironforgesignpostpointer.m2", + value = "ironforgesignpostpointer.m2", + }, + }, + text = "signposts", + value = "signposts", + }, + { + children = { + { + fileId = "203217", + text = "slimejar01.m2", + value = "slimejar01.m2", + }, + { + fileId = "203218", + text = "slimejar02.m2", + value = "slimejar02.m2", + }, + { + fileId = "203219", + text = "slimejar03.m2", + value = "slimejar03.m2", + }, + }, + text = "slimejars", + value = "slimejars", + }, + { + children = { + { + fileId = "203221", + text = "ironforgestatue_01.m2", + value = "ironforgestatue_01.m2", + }, + }, + text = "statues", + value = "statues", + }, + { + children = { + { + fileId = "203226", + text = "ironforgesteamtank.m2", + value = "ironforgesteamtank.m2", + }, + { + fileId = "203229", + text = "ironforgesteamtankdrag.m2", + value = "ironforgesteamtankdrag.m2", + }, + { + fileId = "203230", + text = "ironforgesteamtankruined01.m2", + value = "ironforgesteamtankruined01.m2", + }, + { + fileId = "203231", + text = "ironforgesteamtankwolf.m2", + value = "ironforgesteamtankwolf.m2", + }, + { + fileId = "203232", + text = "ruinedsteamtankaxle01.m2", + value = "ruinedsteamtankaxle01.m2", + }, + { + fileId = "203233", + text = "ruinedsteamtankgastank01.m2", + value = "ruinedsteamtankgastank01.m2", + }, + { + fileId = "203234", + text = "ruinedsteamtankgear01.m2", + value = "ruinedsteamtankgear01.m2", + }, + { + fileId = "203235", + text = "ruinedsteamtankwheel01.m2", + value = "ruinedsteamtankwheel01.m2", + }, + }, + text = "steamtank", + value = "steamtank", + }, + { + children = { + { + fileId = "203241", + text = "dwarventhrone01.m2", + value = "dwarventhrone01.m2", + }, + }, + text = "throne", + value = "throne", + }, + { + children = { + { + fileId = "203245", + text = "ironforgecrystalroof.m2", + value = "ironforgecrystalroof.m2", + }, + }, + text = "throneroom", + value = "throneroom", + }, + { + children = { + { + fileId = "203255", + text = "ironforgepine01.m2", + value = "ironforgepine01.m2", + }, + { + fileId = "203256", + text = "ironforgepine02.m2", + value = "ironforgepine02.m2", + }, + { + fileId = "203257", + text = "ironforgesnowtree01.m2", + value = "ironforgesnowtree01.m2", + }, + { + fileId = "203259", + text = "ironforgetree01.m2", + value = "ironforgetree01.m2", + }, + { + fileId = "203260", + text = "ironforgetree02.m2", + value = "ironforgetree02.m2", + }, + { + fileId = "203261", + text = "ironforgetree03.m2", + value = "ironforgetree03.m2", + }, + { + fileId = "203262", + text = "ironforgetree04.m2", + value = "ironforgetree04.m2", + }, + { + fileId = "203265", + text = "ironstump01.m2", + value = "ironstump01.m2", + }, + { + fileId = "203266", + text = "ironstump02.m2", + value = "ironstump02.m2", + }, + { + fileId = "203268", + text = "ironstump03.m2", + value = "ironstump03.m2", + }, + { + fileId = "203269", + text = "ironstump04.m2", + value = "ironstump04.m2", + }, + { + fileId = "203270", + text = "ironstump05.m2", + value = "ironstump05.m2", + }, + { + fileId = "203276", + text = "wintermidtree01.m2", + value = "wintermidtree01.m2", + }, + { + fileId = "203277", + text = "wintermidtree02.m2", + value = "wintermidtree02.m2", + }, + { + fileId = "203278", + text = "wintermidtree03.m2", + value = "wintermidtree03.m2", + }, + { + fileId = "203279", + text = "wintersmalltree01.m2", + value = "wintersmalltree01.m2", + }, + { + fileId = "203280", + text = "wintersmalltree02.m2", + value = "wintersmalltree02.m2", + }, + { + fileId = "203285", + text = "wintertree01.m2", + value = "wintertree01.m2", + }, + { + fileId = "203286", + text = "wintertree02.m2", + value = "wintertree02.m2", + }, + { + fileId = "203287", + text = "wintertree03.m2", + value = "wintertree03.m2", + }, + { + fileId = "203288", + text = "wintertree04.m2", + value = "wintertree04.m2", + }, + { + fileId = "203290", + text = "wintertree05.m2", + value = "wintertree05.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "ironforge", + value = "ironforge", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203296", + text = "lochmodanshrub01.m2", + value = "lochmodanshrub01.m2", + }, + { + fileId = "203297", + text = "lochmodanshrub02.m2", + value = "lochmodanshrub02.m2", + }, + { + fileId = "203299", + text = "lochmodanshrub03.m2", + value = "lochmodanshrub03.m2", + }, + { + fileId = "203300", + text = "lochmodanshrub04.m2", + value = "lochmodanshrub04.m2", + }, + { + fileId = "203301", + text = "lochmodanshrub06.m2", + value = "lochmodanshrub06.m2", + }, + { + fileId = "203302", + text = "lochmodanshurb05.m2", + value = "lochmodanshurb05.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "203305", + text = "testdam01.m2", + value = "testdam01.m2", + }, + }, + text = "dam", + value = "dam", + }, + { + children = { + { + fileId = "203307", + text = "lochmodanstonefence01.m2", + value = "lochmodanstonefence01.m2", + }, + { + fileId = "203308", + text = "lochmodanstonefence02.m2", + value = "lochmodanstonefence02.m2", + }, + { + fileId = "203309", + text = "lochmodanstonefence03.m2", + value = "lochmodanstonefence03.m2", + }, + { + fileId = "203310", + text = "lochmodanstonefence04.m2", + value = "lochmodanstonefence04.m2", + }, + { + fileId = "203311", + text = "lochmodanwoodfence01.m2", + value = "lochmodanwoodfence01.m2", + }, + { + fileId = "203312", + text = "lochmodanwoodfence02.m2", + value = "lochmodanwoodfence02.m2", + }, + { + fileId = "203313", + text = "lochmodanwoodfence03.m2", + value = "lochmodanwoodfence03.m2", + }, + { + fileId = "203314", + text = "lochmodanwoodfence04.m2", + value = "lochmodanwoodfence04.m2", + }, + }, + text = "fences", + value = "fences", + }, + { + children = { + { + fileId = "203316", + text = "lochtallgrass01.m2", + value = "lochtallgrass01.m2", + }, + { + fileId = "203317", + text = "lochtallgrass02.m2", + value = "lochtallgrass02.m2", + }, + { + fileId = "203318", + text = "lochtallgrass03.m2", + value = "lochtallgrass03.m2", + }, + { + fileId = "203319", + text = "lochtallgrass04.m2", + value = "lochtallgrass04.m2", + }, + }, + text = "grass", + value = "grass", + }, + { + children = { + { + fileId = "203320", + text = "lochlog01.m2", + value = "lochlog01.m2", + }, + }, + text = "logs", + value = "logs", + }, + { + children = { + { + fileId = "203323", + text = "titanruinsarch01.m2", + value = "titanruinsarch01.m2", + }, + { + fileId = "203324", + text = "titanruinsarch02.m2", + value = "titanruinsarch02.m2", + }, + { + fileId = "203325", + text = "titanruinsblock01.m2", + value = "titanruinsblock01.m2", + }, + { + fileId = "203326", + text = "titanruinsblock02.m2", + value = "titanruinsblock02.m2", + }, + { + fileId = "203327", + text = "titanruinshead01.m2", + value = "titanruinshead01.m2", + }, + { + fileId = "203328", + text = "titanruinspillar01.m2", + value = "titanruinspillar01.m2", + }, + { + fileId = "203329", + text = "titanruinspillar02.m2", + value = "titanruinspillar02.m2", + }, + { + fileId = "203330", + text = "titanruinspillar03.m2", + value = "titanruinspillar03.m2", + }, + { + fileId = "203331", + text = "titanruinspillar04.m2", + value = "titanruinspillar04.m2", + }, + { + fileId = "203332", + text = "titanruinspillar05.m2", + value = "titanruinspillar05.m2", + }, + { + fileId = "203333", + text = "titanruinswall01.m2", + value = "titanruinswall01.m2", + }, + { + fileId = "203334", + text = "titanruinswall02.m2", + value = "titanruinswall02.m2", + }, + { + fileId = "203335", + text = "titanruinswall03.m2", + value = "titanruinswall03.m2", + }, + { + fileId = "203336", + text = "titanruinswall04.m2", + value = "titanruinswall04.m2", + }, + { + fileId = "203337", + text = "titanruinswall05.m2", + value = "titanruinswall05.m2", + }, + }, + text = "titanruins", + value = "titanruins", + }, + { + children = { + { + fileId = "203343", + text = "lochmodanfallentree01.m2", + value = "lochmodanfallentree01.m2", + }, + { + fileId = "203347", + text = "lochmodantree01.m2", + value = "lochmodantree01.m2", + }, + { + fileId = "203348", + text = "lochmodantree02.m2", + value = "lochmodantree02.m2", + }, + { + fileId = "203349", + text = "lochmodantree03.m2", + value = "lochmodantree03.m2", + }, + { + fileId = "203350", + text = "lochmodantree04.m2", + value = "lochmodantree04.m2", + }, + { + fileId = "203351", + text = "lochmodantree05.m2", + value = "lochmodantree05.m2", + }, + { + fileId = "203352", + text = "lochmodantree06.m2", + value = "lochmodantree06.m2", + }, + { + fileId = "203353", + text = "lochmodantree07.m2", + value = "lochmodantree07.m2", + }, + { + fileId = "203354", + text = "lochmodantree08.m2", + value = "lochmodantree08.m2", + }, + { + fileId = "203355", + text = "lochmodantree09.m2", + value = "lochmodantree09.m2", + }, + { + fileId = "203356", + text = "lochmodantreelog01.m2", + value = "lochmodantreelog01.m2", + }, + { + fileId = "203357", + text = "lochmodantreestump01.m2", + value = "lochmodantreestump01.m2", + }, + { + fileId = "203359", + text = "lochmodantreestump02.m2", + value = "lochmodantreestump02.m2", + }, + { + fileId = "203362", + text = "lochtallgrass05.m2", + value = "lochtallgrass05.m2", + }, + { + fileId = "203363", + text = "lochtallgrass06.m2", + value = "lochtallgrass06.m2", + }, + { + fileId = "203364", + text = "lochtallgrass07.m2", + value = "lochtallgrass07.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "lochmodan", + value = "lochmodan", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203368", + text = "stonekeeperaltar.m2", + value = "stonekeeperaltar.m2", + }, + }, + text = "altar", + value = "altar", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "203370", + text = "banner01.m2", + value = "banner01.m2", + }, + { + fileId = "203372", + text = "banner02.m2", + value = "banner02.m2", + }, + { + fileId = "203373", + text = "bannerruined01.m2", + value = "bannerruined01.m2", + }, + { + fileId = "203374", + text = "bannerruined02.m2", + value = "bannerruined02.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "203376", + text = "uldamanbench01.m2", + value = "uldamanbench01.m2", + }, + { + fileId = "203377", + text = "uldamanbench02.m2", + value = "uldamanbench02.m2", + }, + { + fileId = "203378", + text = "uldamanbenchbroken01.m2", + value = "uldamanbenchbroken01.m2", + }, + { + fileId = "203380", + text = "uldamanbenchruined01.m2", + value = "uldamanbenchruined01.m2", + }, + { + fileId = "203381", + text = "uldamanbenchruined02.m2", + value = "uldamanbenchruined02.m2", + }, + }, + text = "benches", + value = "benches", + }, + { + children = { + { + fileId = "203385", + text = "uldamanbook01.m2", + value = "uldamanbook01.m2", + }, + { + fileId = "203386", + text = "uldamanbook02.m2", + value = "uldamanbook02.m2", + }, + { + fileId = "203387", + text = "uldamanbook03.m2", + value = "uldamanbook03.m2", + }, + { + fileId = "203388", + text = "uldamanbookbroken01.m2", + value = "uldamanbookbroken01.m2", + }, + { + fileId = "203389", + text = "uldamanbookbroken02.m2", + value = "uldamanbookbroken02.m2", + }, + }, + text = "books", + value = "books", + }, + { + children = { + { + fileId = "203392", + text = "uldamanbookshelf.m2", + value = "uldamanbookshelf.m2", + }, + { + fileId = "203393", + text = "uldamanbookshelf01.m2", + value = "uldamanbookshelf01.m2", + }, + { + fileId = "203394", + text = "uldamanbookshelfbroken.m2", + value = "uldamanbookshelfbroken.m2", + }, + { + fileId = "203395", + text = "uldamanbookshelfbroken01.m2", + value = "uldamanbookshelfbroken01.m2", + }, + }, + text = "bookshelves", + value = "bookshelves", + }, + { + children = { + { + fileId = "203397", + text = "uldamanbrazier01.m2", + value = "uldamanbrazier01.m2", + }, + { + fileId = "203398", + text = "uldamanbrazierbroken01.m2", + value = "uldamanbrazierbroken01.m2", + }, + }, + text = "braziers", + value = "braziers", + }, + { + children = { + { + fileId = "203400", + text = "uldamanscrolldebris01.m2", + value = "uldamanscrolldebris01.m2", + }, + { + fileId = "203401", + text = "uldamanscrolldebris02.m2", + value = "uldamanscrolldebris02.m2", + }, + { + fileId = "203402", + text = "uldamanscrolldebris03.m2", + value = "uldamanscrolldebris03.m2", + }, + }, + text = "debris", + value = "debris", + }, + { + children = { + { + fileId = "203403", + text = "uldamanlamp.m2", + value = "uldamanlamp.m2", + }, + { + fileId = "203404", + text = "uldamanlampandpost.m2", + value = "uldamanlampandpost.m2", + }, + { + fileId = "203405", + text = "uldamanlampandpostbusted01.m2", + value = "uldamanlampandpostbusted01.m2", + }, + { + fileId = "203406", + text = "uldamanlampandpostbusted02.m2", + value = "uldamanlampandpostbusted02.m2", + }, + { + fileId = "203407", + text = "uldamanlampandpostbusted03.m2", + value = "uldamanlampandpostbusted03.m2", + }, + { + fileId = "203408", + text = "uldamanlampandpostbusted04.m2", + value = "uldamanlampandpostbusted04.m2", + }, + { + fileId = "203409", + text = "uldamanlampbroken.m2", + value = "uldamanlampbroken.m2", + }, + { + fileId = "203410", + text = "uldamanlampfallen.m2", + value = "uldamanlampfallen.m2", + }, + { + fileId = "203413", + text = "uldamanlantern.m2", + value = "uldamanlantern.m2", + }, + }, + text = "lamps", + value = "lamps", + }, + { + children = { + { + fileId = "203415", + text = "painting01.m2", + value = "painting01.m2", + }, + { + fileId = "203417", + text = "painting02.m2", + value = "painting02.m2", + }, + { + fileId = "203418", + text = "paintingruined01.m2", + value = "paintingruined01.m2", + }, + { + fileId = "203419", + text = "paintingruined02.m2", + value = "paintingruined02.m2", + }, + }, + text = "paintings", + value = "paintings", + }, + { + children = { + { + fileId = "203420", + text = "platinumdisk.m2", + value = "platinumdisk.m2", + }, + }, + text = "platinumdisk", + value = "platinumdisk", + }, + { + children = { + { + fileId = "203422", + text = "uldamanpot01.m2", + value = "uldamanpot01.m2", + }, + { + fileId = "203423", + text = "uldamanpot02.m2", + value = "uldamanpot02.m2", + }, + { + fileId = "203424", + text = "uldamanpot03.m2", + value = "uldamanpot03.m2", + }, + { + fileId = "203425", + text = "uldamanpotbroken01.m2", + value = "uldamanpotbroken01.m2", + }, + { + fileId = "203426", + text = "uldamanpotbroken02.m2", + value = "uldamanpotbroken02.m2", + }, + { + fileId = "203427", + text = "uldamanpotbroken03.m2", + value = "uldamanpotbroken03.m2", + }, + }, + text = "pots", + value = "pots", + }, + { + children = { + { + fileId = "203429", + text = "uldamanscroll01.m2", + value = "uldamanscroll01.m2", + }, + { + fileId = "203430", + text = "uldamanscroll02.m2", + value = "uldamanscroll02.m2", + }, + { + fileId = "203431", + text = "uldamanscroll03.m2", + value = "uldamanscroll03.m2", + }, + { + fileId = "203432", + text = "uldamanscrollclasp.m2", + value = "uldamanscrollclasp.m2", + }, + }, + text = "scrolls", + value = "scrolls", + }, + { + children = { + { + fileId = "203434", + text = "uldamanstreetsign.m2", + value = "uldamanstreetsign.m2", + }, + { + fileId = "203435", + text = "uldamanstreetsignbusted.m2", + value = "uldamanstreetsignbusted.m2", + }, + }, + text = "signs", + value = "signs", + }, + { + children = { + { + fileId = "203439", + text = "uldamandwarfstatue.m2", + value = "uldamandwarfstatue.m2", + }, + { + fileId = "203440", + text = "uldamanmountaingiantstatue.m2", + value = "uldamanmountaingiantstatue.m2", + }, + { + fileId = "203441", + text = "uldamanseagiantstatue.m2", + value = "uldamanseagiantstatue.m2", + }, + { + fileId = "203442", + text = "uldamanstonegiantstatue.m2", + value = "uldamanstonegiantstatue.m2", + }, + { + fileId = "203443", + text = "uldamantaurenstatue.m2", + value = "uldamantaurenstatue.m2", + }, + { + fileId = "203445", + text = "uldamantroglodytestatue.m2", + value = "uldamantroglodytestatue.m2", + }, + { + fileId = "203446", + text = "uldamantrollstatue.m2", + value = "uldamantrollstatue.m2", + }, + }, + text = "statues", + value = "statues", + }, + { + children = { + { + fileId = "203449", + text = "stonekeeperdead01.m2", + value = "stonekeeperdead01.m2", + }, + }, + text = "stonekeeper", + value = "stonekeeper", + }, + { + children = { + { + fileId = "203452", + text = "uldamantable01.m2", + value = "uldamantable01.m2", + }, + { + fileId = "203453", + text = "uldamantablebroken01.m2", + value = "uldamantablebroken01.m2", + }, + { + fileId = "203454", + text = "uldamantablenew.m2", + value = "uldamantablenew.m2", + }, + { + fileId = "203455", + text = "uldamantableruined.m2", + value = "uldamantableruined.m2", + }, + }, + text = "tables", + value = "tables", + }, + { + children = { + { + fileId = "203457", + text = "tapestry01.m2", + value = "tapestry01.m2", + }, + { + fileId = "203460", + text = "tapestry02.m2", + value = "tapestry02.m2", + }, + { + fileId = "203462", + text = "tapestryruined01.m2", + value = "tapestryruined01.m2", + }, + { + fileId = "203463", + text = "tapestryruined02.m2", + value = "tapestryruined02.m2", + }, + }, + text = "tapestries", + value = "tapestries", + }, + { + children = { + { + fileId = "203467", + text = "libertystatue.m2", + value = "libertystatue.m2", + }, + { + fileId = "203468", + text = "titanentrancestatue.m2", + value = "titanentrancestatue.m2", + }, + { + fileId = "203469", + text = "titanfemalestatue.m2", + value = "titanfemalestatue.m2", + }, + }, + text = "titanstatues", + value = "titanstatues", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "uldaman", + value = "uldaman", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203471", + text = "blackrockclanbanner01.m2", + value = "blackrockclanbanner01.m2", + }, + }, + text = "blackrockbanners", + value = "blackrockbanners", + }, + { + children = { + { + fileId = "203479", + text = "wetlandgrass01.m2", + value = "wetlandgrass01.m2", + }, + { + fileId = "203480", + text = "wetlandgrass02.m2", + value = "wetlandgrass02.m2", + }, + { + fileId = "203481", + text = "wetlandgrass03.m2", + value = "wetlandgrass03.m2", + }, + { + fileId = "203482", + text = "wetlandgrass04.m2", + value = "wetlandgrass04.m2", + }, + { + fileId = "203483", + text = "wetlandgrass05.m2", + value = "wetlandgrass05.m2", + }, + { + fileId = "203484", + text = "wetlandshrub01.m2", + value = "wetlandshrub01.m2", + }, + { + fileId = "203485", + text = "wetlandshrub02.m2", + value = "wetlandshrub02.m2", + }, + { + fileId = "203486", + text = "wetlandshrub03.m2", + value = "wetlandshrub03.m2", + }, + { + fileId = "203487", + text = "wetlandshrub04.m2", + value = "wetlandshrub04.m2", + }, + { + fileId = "203488", + text = "wetlandshrub05.m2", + value = "wetlandshrub05.m2", + }, + { + fileId = "203489", + text = "wetlandshrub06.m2", + value = "wetlandshrub06.m2", + }, + { + fileId = "203490", + text = "wetlandshrub07.m2", + value = "wetlandshrub07.m2", + }, + { + fileId = "203491", + text = "wetlandshrub08.m2", + value = "wetlandshrub08.m2", + }, + { + fileId = "203492", + text = "wetlandshrub09.m2", + value = "wetlandshrub09.m2", + }, + { + fileId = "203493", + text = "wetlandsshrub04.m2", + value = "wetlandsshrub04.m2", + }, + { + fileId = "203494", + text = "wetlandsshrub05.m2", + value = "wetlandsshrub05.m2", + }, + { + fileId = "203495", + text = "wetlandsshrub06.m2", + value = "wetlandsshrub06.m2", + }, + { + fileId = "203496", + text = "wetlandsshrub07.m2", + value = "wetlandsshrub07.m2", + }, + { + fileId = "203498", + text = "wetlandsshurb08.m2", + value = "wetlandsshurb08.m2", + }, + { + fileId = "203499", + text = "wetlandsshurb09.m2", + value = "wetlandsshurb09.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "203501", + text = "dragonbonesbody.m2", + value = "dragonbonesbody.m2", + }, + { + fileId = "203502", + text = "dragonbonesbody_nocollision.m2", + value = "dragonbonesbody_nocollision.m2", + }, + { + fileId = "203503", + text = "dragonbonesleftwing.m2", + value = "dragonbonesleftwing.m2", + }, + { + fileId = "203504", + text = "dragonbonesleftwing_nocollision.m2", + value = "dragonbonesleftwing_nocollision.m2", + }, + { + fileId = "203505", + text = "dragonbonesrightwing.m2", + value = "dragonbonesrightwing.m2", + }, + { + fileId = "203506", + text = "dragonbonesrightwing_nocollision.m2", + value = "dragonbonesrightwing_nocollision.m2", + }, + { + fileId = "203507", + text = "dragonbonesskull.m2", + value = "dragonbonesskull.m2", + }, + { + fileId = "203508", + text = "dragonbonesskull_nocollision.m2", + value = "dragonbonesskull_nocollision.m2", + }, + }, + text = "dragonbones", + value = "dragonbones", + }, + { + children = { + { + fileId = "203510", + text = "dragonegg01.m2", + value = "dragonegg01.m2", + }, + { + fileId = "203512", + text = "dragonegg02.m2", + value = "dragonegg02.m2", + }, + }, + text = "dragoneggs", + value = "dragoneggs", + }, + { + children = { + { + fileId = "203513", + text = "dragonmawbanner.m2", + value = "dragonmawbanner.m2", + }, + { + fileId = "203515", + text = "dragonmawgate.m2", + value = "dragonmawgate.m2", + }, + { + fileId = "203518", + text = "dragonmawwall.m2", + value = "dragonmawwall.m2", + }, + }, + text = "dragonmawgates", + value = "dragonmawgates", + }, + { + children = { + { + fileId = "203521", + text = "dwarvebone01.m2", + value = "dwarvebone01.m2", + }, + { + fileId = "203522", + text = "dwarvebone02.m2", + value = "dwarvebone02.m2", + }, + }, + text = "dwarfbones", + value = "dwarfbones", + }, + { + children = { + { + fileId = "203523", + text = "raptorbone01.m2", + value = "raptorbone01.m2", + }, + }, + text = "raptorbones", + value = "raptorbones", + }, + { + children = { + { + fileId = "203524", + text = "dragontotem01.m2", + value = "dragontotem01.m2", + }, + { + fileId = "203525", + text = "dragontotem02.m2", + value = "dragontotem02.m2", + }, + }, + text = "totem", + value = "totem", + }, + { + children = { + { + fileId = "203531", + text = "wetlandsnest01.m2", + value = "wetlandsnest01.m2", + }, + { + fileId = "203532", + text = "wetlandsnest02.m2", + value = "wetlandsnest02.m2", + }, + { + fileId = "203533", + text = "wetlandstree04.m2", + value = "wetlandstree04.m2", + }, + { + fileId = "203539", + text = "wetlandstreestump01.m2", + value = "wetlandstreestump01.m2", + }, + { + fileId = "203540", + text = "wetlandstreestump02.m2", + value = "wetlandstreestump02.m2", + }, + { + fileId = "203541", + text = "wetlandstreestump03.m2", + value = "wetlandstreestump03.m2", + }, + { + fileId = "203543", + text = "wetlandtree01.m2", + value = "wetlandtree01.m2", + }, + { + fileId = "203544", + text = "wetlandtree02.m2", + value = "wetlandtree02.m2", + }, + { + fileId = "203545", + text = "wetlandtree03.m2", + value = "wetlandtree03.m2", + }, + { + fileId = "203546", + text = "wetlandtree04.m2", + value = "wetlandtree04.m2", + }, + { + fileId = "203547", + text = "wetlandtree05.m2", + value = "wetlandtree05.m2", + }, + { + fileId = "203548", + text = "wetlandtree06.m2", + value = "wetlandtree06.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "203553", + text = "wetlandswagon01.m2", + value = "wetlandswagon01.m2", + }, + { + fileId = "203554", + text = "wetlandswagon02.m2", + value = "wetlandswagon02.m2", + }, + { + fileId = "203555", + text = "wetlandswagon03.m2", + value = "wetlandswagon03.m2", + }, + { + fileId = "203557", + text = "wetlandswagonnest.m2", + value = "wetlandswagonnest.m2", + }, + }, + text = "wetlandswagons", + value = "wetlandswagons", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "wetlands", + value = "wetlands", + }, + }, + text = "khazmodan", + value = "khazmodan", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "203558", + text = "aerieboulder01.m2", + value = "aerieboulder01.m2", + }, + { + fileId = "203559", + text = "aerieboulder02.m2", + value = "aerieboulder02.m2", + }, + { + fileId = "203560", + text = "aerieboulder03.m2", + value = "aerieboulder03.m2", + }, + { + fileId = "203561", + text = "aerieboulder04.m2", + value = "aerieboulder04.m2", + }, + }, + text = "boulders", + value = "boulders", + }, + { + children = { + { + fileId = "203565", + text = "aeriepeaksbush01.m2", + value = "aeriepeaksbush01.m2", + }, + { + fileId = "203566", + text = "aeriepeaksbush02.m2", + value = "aeriepeaksbush02.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "203569", + text = "aeriepeaksrockoutcrop01.m2", + value = "aeriepeaksrockoutcrop01.m2", + }, + }, + text = "cliff", + value = "cliff", + }, + { + children = { + { + fileId = "203573", + text = "griffonmemorialfetish01.m2", + value = "griffonmemorialfetish01.m2", + }, + { + fileId = "203574", + text = "griffonmemorialfetish02.m2", + value = "griffonmemorialfetish02.m2", + }, + { + fileId = "203575", + text = "griffonmemorialfetish03.m2", + value = "griffonmemorialfetish03.m2", + }, + { + fileId = "203576", + text = "griffonmemorialfetish04.m2", + value = "griffonmemorialfetish04.m2", + }, + { + fileId = "203577", + text = "griffonmemorialtree01.m2", + value = "griffonmemorialtree01.m2", + }, + { + fileId = "203578", + text = "griffonmemorialtree02.m2", + value = "griffonmemorialtree02.m2", + }, + { + fileId = "203579", + text = "griffonmemorialtree03.m2", + value = "griffonmemorialtree03.m2", + }, + }, + text = "griffondoodads", + value = "griffondoodads", + }, + { + children = { + { + fileId = "203580", + text = "aeriepeaksfir01.m2", + value = "aeriepeaksfir01.m2", + }, + { + fileId = "203583", + text = "aeriepeaksfir02.m2", + value = "aeriepeaksfir02.m2", + }, + { + fileId = "203584", + text = "aeriepeaksstump01.m2", + value = "aeriepeaksstump01.m2", + }, + { + fileId = "203587", + text = "aerietree01.m2", + value = "aerietree01.m2", + }, + { + fileId = "203588", + text = "aerietree02.m2", + value = "aerietree02.m2", + }, + { + fileId = "203589", + text = "aerietree03.m2", + value = "aerietree03.m2", + }, + { + fileId = "203590", + text = "aerietree04.m2", + value = "aerietree04.m2", + }, + { + fileId = "203591", + text = "aerietree05.m2", + value = "aerietree05.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "aeriepeaks", + value = "aeriepeaks", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203595", + text = "alteracshrub01.m2", + value = "alteracshrub01.m2", + }, + { + fileId = "203596", + text = "alteracshrub02.m2", + value = "alteracshrub02.m2", + }, + { + fileId = "203597", + text = "alteracshrub03.m2", + value = "alteracshrub03.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "203598", + text = "dalarandome.m2", + value = "dalarandome.m2", + }, + }, + text = "dalaran", + value = "dalaran", + }, + { + children = { + { + fileId = "203602", + text = "alteracfruitbucket01.m2", + value = "alteracfruitbucket01.m2", + }, + { + fileId = "203603", + text = "alteracfruitbucket02.m2", + value = "alteracfruitbucket02.m2", + }, + { + fileId = "203604", + text = "alteracfruitbucket03.m2", + value = "alteracfruitbucket03.m2", + }, + { + fileId = "203605", + text = "alteracfruitbucket04.m2", + value = "alteracfruitbucket04.m2", + }, + }, + text = "fruitbuckets", + value = "fruitbuckets", + }, + { + children = { + { + fileId = "203607", + text = "alteracladder01.m2", + value = "alteracladder01.m2", + }, + }, + text = "ladders", + value = "ladders", + }, + { + children = { + { + fileId = "203608", + text = "alteracopengrave01.m2", + value = "alteracopengrave01.m2", + }, + }, + text = "opengraves", + value = "opengraves", + }, + { + children = { + { + fileId = "203611", + text = "alteracboulder01.m2", + value = "alteracboulder01.m2", + }, + { + fileId = "203612", + text = "alteracboulder02.m2", + value = "alteracboulder02.m2", + }, + { + fileId = "203613", + text = "alteracboulder03.m2", + value = "alteracboulder03.m2", + }, + { + fileId = "203614", + text = "alteracboulder04.m2", + value = "alteracboulder04.m2", + }, + { + fileId = "203615", + text = "alteracboulder05.m2", + value = "alteracboulder05.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "203617", + text = "alteractree01.m2", + value = "alteractree01.m2", + }, + { + fileId = "203618", + text = "alteractree02.m2", + value = "alteractree02.m2", + }, + { + fileId = "203619", + text = "alteractree03.m2", + value = "alteractree03.m2", + }, + { + fileId = "203620", + text = "alteractree04.m2", + value = "alteractree04.m2", + }, + { + fileId = "203621", + text = "alteractree06.m2", + value = "alteractree06.m2", + }, + { + fileId = "203622", + text = "alteractree07.m2", + value = "alteractree07.m2", + }, + { + fileId = "203623", + text = "alteractree08.m2", + value = "alteractree08.m2", + }, + { + fileId = "203624", + text = "alteractree09.m2", + value = "alteractree09.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "203634", + text = "alteracwatertower.m2", + value = "alteracwatertower.m2", + }, + }, + text = "watertower", + value = "watertower", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "alteracmountains", + value = "alteracmountains", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203636", + text = "bramblestaff.m2", + value = "bramblestaff.m2", + }, + }, + text = "bramblestaff", + value = "bramblestaff", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "203639", + text = "arathiboardwalk01.m2", + value = "arathiboardwalk01.m2", + }, + { + fileId = "203640", + text = "arathiboardwalk02.m2", + value = "arathiboardwalk02.m2", + }, + { + fileId = "203641", + text = "arathiboardwalk03.m2", + value = "arathiboardwalk03.m2", + }, + { + fileId = "203642", + text = "arathiboardwalk04.m2", + value = "arathiboardwalk04.m2", + }, + }, + text = "boardwalk", + value = "boardwalk", + }, + { + children = { + { + fileId = "203643", + text = "arathiplant01.m2", + value = "arathiplant01.m2", + }, + { + fileId = "203645", + text = "arathiplant02.m2", + value = "arathiplant02.m2", + }, + { + fileId = "203646", + text = "arathiplant03.m2", + value = "arathiplant03.m2", + }, + { + fileId = "203647", + text = "arathiplant04.m2", + value = "arathiplant04.m2", + }, + { + fileId = "203650", + text = "arathiplant05.m2", + value = "arathiplant05.m2", + }, + { + fileId = "203652", + text = "arathiplant06.m2", + value = "arathiplant06.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "203656", + text = "arathifarmhouse01.m2", + value = "arathifarmhouse01.m2", + }, + { + fileId = "203657", + text = "arathifarmhouse02.m2", + value = "arathifarmhouse02.m2", + }, + }, + text = "farmhouses", + value = "farmhouses", + }, + { + children = { + { + fileId = "203660", + text = "impalingstone_corpse_01.m2", + value = "impalingstone_corpse_01.m2", + }, + { + fileId = "203661", + text = "impalingstone_corpse_02.m2", + value = "impalingstone_corpse_02.m2", + }, + }, + text = "impalingstonecorpses", + value = "impalingstonecorpses", + }, + { + children = { + { + fileId = "203663", + text = "impalingstone02.m2", + value = "impalingstone02.m2", + }, + }, + text = "impalingstones", + value = "impalingstones", + }, + { + children = { + { + fileId = "203666", + text = "arathiflatrock01.m2", + value = "arathiflatrock01.m2", + }, + { + fileId = "203668", + text = "arathirock01.m2", + value = "arathirock01.m2", + }, + { + fileId = "203669", + text = "arathirock02.m2", + value = "arathirock02.m2", + }, + { + fileId = "203671", + text = "arathirock03.m2", + value = "arathirock03.m2", + }, + { + fileId = "203672", + text = "arathirock04.m2", + value = "arathirock04.m2", + }, + { + fileId = "203673", + text = "arathirock05.m2", + value = "arathirock05.m2", + }, + { + fileId = "203674", + text = "arathirock06.m2", + value = "arathirock06.m2", + }, + { + fileId = "203675", + text = "arathirock07.m2", + value = "arathirock07.m2", + }, + { + fileId = "203676", + text = "arathirock08.m2", + value = "arathirock08.m2", + }, + { + fileId = "203677", + text = "arathirock09.m2", + value = "arathirock09.m2", + }, + { + fileId = "203678", + text = "arathirock10.m2", + value = "arathirock10.m2", + }, + { + fileId = "203679", + text = "arathirock11.m2", + value = "arathirock11.m2", + }, + { + fileId = "203680", + text = "arathirock12.m2", + value = "arathirock12.m2", + }, + { + fileId = "203681", + text = "arathirock13.m2", + value = "arathirock13.m2", + }, + { + fileId = "203682", + text = "arathirock14.m2", + value = "arathirock14.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "203684", + text = "arathistump01.m2", + value = "arathistump01.m2", + }, + { + fileId = "203686", + text = "arathistump02.m2", + value = "arathistump02.m2", + }, + { + fileId = "203687", + text = "arathistump03.m2", + value = "arathistump03.m2", + }, + { + fileId = "203688", + text = "arathitree01.m2", + value = "arathitree01.m2", + }, + { + fileId = "203689", + text = "arathitree02.m2", + value = "arathitree02.m2", + }, + { + fileId = "203690", + text = "arathitree03.m2", + value = "arathitree03.m2", + }, + { + fileId = "203691", + text = "arathitree04.m2", + value = "arathitree04.m2", + }, + { + fileId = "203692", + text = "arathitree05.m2", + value = "arathitree05.m2", + }, + { + fileId = "203693", + text = "arathitree_dead_001.m2", + value = "arathitree_dead_001.m2", + }, + { + fileId = "203694", + text = "arathitree_dead_002.m2", + value = "arathitree_dead_002.m2", + }, + { + fileId = "203695", + text = "arathitree_dead_003.m2", + value = "arathitree_dead_003.m2", + }, + { + fileId = "203696", + text = "arathitree_dead_004.m2", + value = "arathitree_dead_004.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "arathi", + value = "arathi", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203711", + text = "infesteddollyhead.m2", + value = "infesteddollyhead.m2", + }, + { + fileId = "203712", + text = "infesteddollyleftside.m2", + value = "infesteddollyleftside.m2", + }, + { + fileId = "203713", + text = "infesteddollyrightside.m2", + value = "infesteddollyrightside.m2", + }, + { + fileId = "203714", + text = "infesteddollywhole.m2", + value = "infesteddollywhole.m2", + }, + }, + text = "dolly", + value = "dolly", + }, + { + children = { + { + fileId = "203715", + text = "outhousetrapped.m2", + value = "outhousetrapped.m2", + }, + }, + text = "outhouse", + value = "outhouse", + }, + { + children = { + { + fileId = "203716", + text = "epl_pvpflags_northfort.m2", + value = "epl_pvpflags_northfort.m2", + }, + }, + text = "pvpflags", + value = "pvpflags", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "203718", + text = "arcoftriumphplagued01.m2", + value = "arcoftriumphplagued01.m2", + }, + }, + text = "arcoftriumph", + value = "arcoftriumph", + }, + { + children = { + { + fileId = "203720", + text = "plaugelandsbanner01.m2", + value = "plaugelandsbanner01.m2", + }, + }, + text = "banners", + value = "banners", + }, + { + children = { + { + fileId = "203722", + text = "bloodofheroes.m2", + value = "bloodofheroes.m2", + }, + }, + text = "bloodofheroes", + value = "bloodofheroes", + }, + { + children = { + { + fileId = "203723", + text = "bonespike_01.m2", + value = "bonespike_01.m2", + }, + { + fileId = "203724", + text = "bonespike_02.m2", + value = "bonespike_02.m2", + }, + { + fileId = "203725", + text = "bonespike_03.m2", + value = "bonespike_03.m2", + }, + }, + text = "bonespikes", + value = "bonespikes", + }, + { + children = { + { + fileId = "203726", + text = "bonewall_01.m2", + value = "bonewall_01.m2", + }, + }, + text = "bonewalls", + value = "bonewalls", + }, + { + children = { + { + fileId = "203731", + text = "plaguelandwesternbush01.m2", + value = "plaguelandwesternbush01.m2", + }, + { + fileId = "203732", + text = "plaguelandwesternbush02.m2", + value = "plaguelandwesternbush02.m2", + }, + { + fileId = "203733", + text = "plaguelandwesternbush03.m2", + value = "plaguelandwesternbush03.m2", + }, + { + fileId = "203734", + text = "plaguelandwesternbush04.m2", + value = "plaguelandwesternbush04.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "203737", + text = "plaugelandscage01.m2", + value = "plaugelandscage01.m2", + }, + { + fileId = "203738", + text = "plaugelandscage01_activebase.m2", + value = "plaugelandscage01_activebase.m2", + }, + { + fileId = "203739", + text = "plaugelandscage01_activetop.m2", + value = "plaugelandscage01_activetop.m2", + }, + }, + text = "cages", + value = "cages", + }, + { + children = { + { + fileId = "203742", + text = "forsakenbanner01.m2", + value = "forsakenbanner01.m2", + }, + }, + text = "forsakenbanner", + value = "forsakenbanner", + }, + { + children = { + { + fileId = "203745", + text = "scourgebodyhangingfemale01.m2", + value = "scourgebodyhangingfemale01.m2", + }, + { + fileId = "203746", + text = "scourgebodyhangingfemale02.m2", + value = "scourgebodyhangingfemale02.m2", + }, + }, + text = "hangingscourge", + value = "hangingscourge", + }, + { + children = { + { + fileId = "203748", + text = "plaguelandhaystack.m2", + value = "plaguelandhaystack.m2", + }, + }, + text = "haystacks", + value = "haystacks", + }, + { + children = { + { + fileId = "203749", + text = "plaguecauldron.m2", + value = "plaguecauldron.m2", + }, + }, + text = "plaguecauldron", + value = "plaguecauldron", + }, + { + children = { + { + fileId = "203752", + text = "plaguechariot.m2", + value = "plaguechariot.m2", + }, + }, + text = "plaguedchariot", + value = "plaguedchariot", + }, + { + children = { + { + fileId = "203754", + text = "plaguewagon.m2", + value = "plaguewagon.m2", + }, + { + fileId = "203755", + text = "plaguewagon02.m2", + value = "plaguewagon02.m2", + }, + }, + text = "plaguedwagons", + value = "plaguedwagons", + }, + { + children = { + { + fileId = "203759", + text = "plaguelandfern01.m2", + value = "plaguelandfern01.m2", + }, + { + fileId = "203760", + text = "plaguelandfern02.m2", + value = "plaguelandfern02.m2", + }, + { + fileId = "203761", + text = "plaguelandfern03.m2", + value = "plaguelandfern03.m2", + }, + { + fileId = "203762", + text = "plaguelandfern04.m2", + value = "plaguelandfern04.m2", + }, + { + fileId = "203765", + text = "plaguelandpuffs01.m2", + value = "plaguelandpuffs01.m2", + }, + { + fileId = "203766", + text = "plaguelandpuffs02.m2", + value = "plaguelandpuffs02.m2", + }, + { + fileId = "203767", + text = "plaguelandpuffs03.m2", + value = "plaguelandpuffs03.m2", + }, + { + fileId = "203768", + text = "plaguelandpuffs04.m2", + value = "plaguelandpuffs04.m2", + }, + }, + text = "plants", + value = "plants", + }, + { + children = { + { + fileId = "203773", + text = "plaguelandrock01.m2", + value = "plaguelandrock01.m2", + }, + { + fileId = "203774", + text = "plaguelandrock02.m2", + value = "plaguelandrock02.m2", + }, + { + fileId = "203775", + text = "plaguelandrock03.m2", + value = "plaguelandrock03.m2", + }, + { + fileId = "203776", + text = "plaguelandrock04.m2", + value = "plaguelandrock04.m2", + }, + { + fileId = "203777", + text = "plaguelandrock05.m2", + value = "plaguelandrock05.m2", + }, + { + fileId = "203778", + text = "plaguelandrock06.m2", + value = "plaguelandrock06.m2", + }, + { + fileId = "203779", + text = "plaguelandrock07.m2", + value = "plaguelandrock07.m2", + }, + { + fileId = "203780", + text = "plaguelandrock08.m2", + value = "plaguelandrock08.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "203781", + text = "treebarrier01.m2", + value = "treebarrier01.m2", + }, + }, + text = "treebarrier", + value = "treebarrier", + }, + { + children = { + { + fileId = "203783", + text = "plaguedfallentree01.m2", + value = "plaguedfallentree01.m2", + }, + { + fileId = "203788", + text = "plaguelandmushroom01.m2", + value = "plaguelandmushroom01.m2", + }, + { + fileId = "203789", + text = "plaguelandmushroom02.m2", + value = "plaguelandmushroom02.m2", + }, + { + fileId = "203790", + text = "plaguelandmushroom03.m2", + value = "plaguelandmushroom03.m2", + }, + { + fileId = "203791", + text = "plaguelandmushroom04.m2", + value = "plaguelandmushroom04.m2", + }, + { + fileId = "203793", + text = "plaguelandstump01.m2", + value = "plaguelandstump01.m2", + }, + { + fileId = "203795", + text = "plaguelandstump02.m2", + value = "plaguelandstump02.m2", + }, + { + fileId = "203796", + text = "plaguelandstump03.m2", + value = "plaguelandstump03.m2", + }, + { + fileId = "203797", + text = "plaguelandstump04.m2", + value = "plaguelandstump04.m2", + }, + { + fileId = "203798", + text = "plaguelandtree01.m2", + value = "plaguelandtree01.m2", + }, + { + fileId = "203799", + text = "plaguelandtree02.m2", + value = "plaguelandtree02.m2", + }, + { + fileId = "203800", + text = "plaguelandtree03.m2", + value = "plaguelandtree03.m2", + }, + { + fileId = "203801", + text = "plaguelandtree04.m2", + value = "plaguelandtree04.m2", + }, + { + fileId = "203802", + text = "plaguelandtree05.m2", + value = "plaguelandtree05.m2", + }, + { + fileId = "203803", + text = "plaguelandtree06.m2", + value = "plaguelandtree06.m2", + }, + { + fileId = "203804", + text = "plaguelandtree07.m2", + value = "plaguelandtree07.m2", + }, + { + fileId = "203805", + text = "plaguelandtree08.m2", + value = "plaguelandtree08.m2", + }, + { + fileId = "203806", + text = "plaguelandtree09.m2", + value = "plaguelandtree09.m2", + }, + { + fileId = "203807", + text = "plaguelandtree10.m2", + value = "plaguelandtree10.m2", + }, + { + fileId = "203808", + text = "plaguelandtree11.m2", + value = "plaguelandtree11.m2", + }, + { + fileId = "203809", + text = "plaguelandtree12.m2", + value = "plaguelandtree12.m2", + }, + { + fileId = "203810", + text = "plaguelandtree13.m2", + value = "plaguelandtree13.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "203831", + text = "undeadwall_01.m2", + value = "undeadwall_01.m2", + }, + }, + text = "walls", + value = "walls", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "plagueland", + value = "plagueland", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203836", + text = "scholme_bookshelf.m2", + value = "scholme_bookshelf.m2", + }, + { + fileId = "203837", + text = "scholme_bookshelflarge.m2", + value = "scholme_bookshelflarge.m2", + }, + { + fileId = "203838", + text = "scholme_bookshelfsmall.m2", + value = "scholme_bookshelfsmall.m2", + }, + }, + text = "bookshelves", + value = "bookshelves", + }, + { + children = { + { + fileId = "203841", + text = "scholomancebrazier01green.m2", + value = "scholomancebrazier01green.m2", + }, + { + fileId = "203843", + text = "scholomancebrazier01orange.m2", + value = "scholomancebrazier01orange.m2", + }, + { + fileId = "203845", + text = "scholomancebrazier01purple.m2", + value = "scholomancebrazier01purple.m2", + }, + }, + text = "brazier", + value = "brazier", + }, + { + children = { + { + fileId = "203847", + text = "floorcandlescorner01.m2", + value = "floorcandlescorner01.m2", + }, + { + fileId = "203848", + text = "floorcandlescorner01green.m2", + value = "floorcandlescorner01green.m2", + }, + { + fileId = "203849", + text = "floorcandlescorner01red.m2", + value = "floorcandlescorner01red.m2", + }, + { + fileId = "203850", + text = "floorcandlesstraight02.m2", + value = "floorcandlesstraight02.m2", + }, + { + fileId = "203851", + text = "floorcandlesstraight02green.m2", + value = "floorcandlesstraight02green.m2", + }, + { + fileId = "203852", + text = "floorcandlesstraight02red.m2", + value = "floorcandlesstraight02red.m2", + }, + { + fileId = "203853", + text = "floorcandlesstraight04.m2", + value = "floorcandlesstraight04.m2", + }, + { + fileId = "203854", + text = "floorcandlesstraight04green.m2", + value = "floorcandlesstraight04green.m2", + }, + { + fileId = "203855", + text = "floorcandlesstraight04red.m2", + value = "floorcandlesstraight04red.m2", + }, + { + fileId = "203861", + text = "scholme_candelabra.m2", + value = "scholme_candelabra.m2", + }, + { + fileId = "203862", + text = "scholme_candelabra02.m2", + value = "scholme_candelabra02.m2", + }, + { + fileId = "203863", + text = "scholme_candelabra03.m2", + value = "scholme_candelabra03.m2", + }, + { + fileId = "203864", + text = "scholme_greencandelabra.m2", + value = "scholme_greencandelabra.m2", + }, + { + fileId = "203865", + text = "scholme_greencandelabra02.m2", + value = "scholme_greencandelabra02.m2", + }, + { + fileId = "203866", + text = "scholme_greencandelabra03.m2", + value = "scholme_greencandelabra03.m2", + }, + { + fileId = "203867", + text = "scholme_greenrug.m2", + value = "scholme_greenrug.m2", + }, + { + fileId = "203868", + text = "scholme_purplerug.m2", + value = "scholme_purplerug.m2", + }, + { + fileId = "203869", + text = "scholme_redcandelabra.m2", + value = "scholme_redcandelabra.m2", + }, + { + fileId = "203870", + text = "scholme_redcandelabra02.m2", + value = "scholme_redcandelabra02.m2", + }, + { + fileId = "203871", + text = "scholme_redcandelabra03.m2", + value = "scholme_redcandelabra03.m2", + }, + }, + text = "candles", + value = "candles", + }, + { + children = { + { + fileId = "203881", + text = "greenbubblingcauldron.m2", + value = "greenbubblingcauldron.m2", + }, + { + fileId = "203883", + text = "redbubblingcauldron.m2", + value = "redbubblingcauldron.m2", + }, + { + fileId = "203886", + text = "yellowbubblingcauldron.m2", + value = "yellowbubblingcauldron.m2", + }, + }, + text = "cauldrons", + value = "cauldrons", + }, + { + children = { + { + fileId = "203889", + text = "scholme_chandelier.m2", + value = "scholme_chandelier.m2", + }, + }, + text = "chandelier", + value = "chandelier", + }, + { + children = { + { + fileId = "203892", + text = "scholomancecrystalball01.m2", + value = "scholomancecrystalball01.m2", + }, + }, + text = "crystalball", + value = "crystalball", + }, + { + children = { + { + fileId = "203894", + text = "diseasedpumpkin.m2", + value = "diseasedpumpkin.m2", + }, + }, + text = "diseasedpumpkin", + value = "diseasedpumpkin", + }, + { + children = { + { + fileId = "203895", + text = "creepyoperationtable01.m2", + value = "creepyoperationtable01.m2", + }, + }, + text = "operationtables", + value = "operationtables", + }, + { + children = { + { + fileId = "203898", + text = "scholme_logorug.m2", + value = "scholme_logorug.m2", + }, + }, + text = "rugs", + value = "rugs", + }, + { + children = { + { + fileId = "203899", + text = "scholomancesmoke01.m2", + value = "scholomancesmoke01.m2", + }, + }, + text = "smoke", + value = "smoke", + }, + { + children = { + { + fileId = "203901", + text = "scholme_stonelogo.m2", + value = "scholme_stonelogo.m2", + }, + }, + text = "stonelogo", + value = "stonelogo", + }, + { + children = { + { + fileId = "203906", + text = "scholme_logo.m2", + value = "scholme_logo.m2", + }, + { + fileId = "203907", + text = "scholme_tapestryanim.m2", + value = "scholme_tapestryanim.m2", + }, + { + fileId = "203908", + text = "scholme_tapestryrune.m2", + value = "scholme_tapestryrune.m2", + }, + { + fileId = "203909", + text = "scholme_tapestryskull.m2", + value = "scholme_tapestryskull.m2", + }, + { + fileId = "203910", + text = "scholme_tapestryweb.m2", + value = "scholme_tapestryweb.m2", + }, + }, + text = "tapestries", + value = "tapestries", + }, + { + children = { + { + fileId = "203911", + text = "empty_testing_jar.m2", + value = "empty_testing_jar.m2", + }, + { + fileId = "203912", + text = "ghoul_in_a_jar.m2", + value = "ghoul_in_a_jar.m2", + }, + { + fileId = "203913", + text = "skeleton_in_a_jar.m2", + value = "skeleton_in_a_jar.m2", + }, + }, + text = "testingtubes", + value = "testingtubes", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "scholomance", + value = "scholomance", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203920", + text = "silvermoonburnttree01.m2", + value = "silvermoonburnttree01.m2", + }, + { + fileId = "203921", + text = "silvermoonburnttree02.m2", + value = "silvermoonburnttree02.m2", + }, + { + fileId = "203922", + text = "silvermoonburnttree03.m2", + value = "silvermoonburnttree03.m2", + }, + { + fileId = "203923", + text = "silvermoonburnttree04.m2", + value = "silvermoonburnttree04.m2", + }, + { + fileId = "203929", + text = "silvermoondeadtree01.m2", + value = "silvermoondeadtree01.m2", + }, + { + fileId = "203930", + text = "silvermoondeadtree02.m2", + value = "silvermoondeadtree02.m2", + }, + { + fileId = "203931", + text = "silvermoondeadtree03.m2", + value = "silvermoondeadtree03.m2", + }, + { + fileId = "203932", + text = "silvermoondeadtree04.m2", + value = "silvermoondeadtree04.m2", + }, + { + fileId = "203934", + text = "silvermoonpine01.m2", + value = "silvermoonpine01.m2", + }, + { + fileId = "203935", + text = "silvermoonpine02.m2", + value = "silvermoonpine02.m2", + }, + { + fileId = "203936", + text = "silvermoonpine03.m2", + value = "silvermoonpine03.m2", + }, + { + fileId = "203937", + text = "silvermoonpine04.m2", + value = "silvermoonpine04.m2", + }, + { + fileId = "203938", + text = "silvermoonsmallroots01.m2", + value = "silvermoonsmallroots01.m2", + }, + { + fileId = "203939", + text = "silvermoonsmallroots02.m2", + value = "silvermoonsmallroots02.m2", + }, + { + fileId = "203940", + text = "silvermoonsmallroots03.m2", + value = "silvermoonsmallroots03.m2", + }, + { + fileId = "203941", + text = "silvermoonsmallroots04.m2", + value = "silvermoonsmallroots04.m2", + }, + { + fileId = "203942", + text = "silvermoonsmalltree01.m2", + value = "silvermoonsmalltree01.m2", + }, + { + fileId = "203943", + text = "silvermoonsmalltree02.m2", + value = "silvermoonsmalltree02.m2", + }, + { + fileId = "203944", + text = "silvermoonsmalltree03.m2", + value = "silvermoonsmalltree03.m2", + }, + { + fileId = "203945", + text = "silvermoonsmalltree04.m2", + value = "silvermoonsmalltree04.m2", + }, + { + fileId = "203946", + text = "silvermoonsmalltree05.m2", + value = "silvermoonsmalltree05.m2", + }, + { + fileId = "203947", + text = "silvermoonsmalltree06.m2", + value = "silvermoonsmalltree06.m2", + }, + { + fileId = "203948", + text = "silvermoonsmalltree07.m2", + value = "silvermoonsmalltree07.m2", + }, + { + fileId = "203949", + text = "silvermoonsmalltree08.m2", + value = "silvermoonsmalltree08.m2", + }, + { + fileId = "203950", + text = "silvermoontree01.m2", + value = "silvermoontree01.m2", + }, + { + fileId = "203951", + text = "silvermoontree02.m2", + value = "silvermoontree02.m2", + }, + { + fileId = "203952", + text = "silvermoontree03.m2", + value = "silvermoontree03.m2", + }, + { + fileId = "203953", + text = "silvermoontree04.m2", + value = "silvermoontree04.m2", + }, + { + fileId = "203954", + text = "silvermoontree05.m2", + value = "silvermoontree05.m2", + }, + { + fileId = "203955", + text = "silvermoontree06.m2", + value = "silvermoontree06.m2", + }, + { + fileId = "203956", + text = "silvermoontree07.m2", + value = "silvermoontree07.m2", + }, + { + fileId = "203957", + text = "silvermoontreelog01.m2", + value = "silvermoontreelog01.m2", + }, + { + fileId = "203958", + text = "silvermoontreestump01.m2", + value = "silvermoontreestump01.m2", + }, + { + fileId = "203959", + text = "silvermoontreestump02.m2", + value = "silvermoontreestump02.m2", + }, + { + fileId = "203960", + text = "silvermoontreestump03.m2", + value = "silvermoontreestump03.m2", + }, + { + fileId = "203963", + text = "sm_leaves_fall.m2", + value = "sm_leaves_fall.m2", + }, + { + fileId = "203964", + text = "sm_leaves_fall_purple.m2", + value = "sm_leaves_fall_purple.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "silvermoon", + value = "silvermoon", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203965", + text = "silverpineboardwalk01.m2", + value = "silverpineboardwalk01.m2", + }, + }, + text = "boardwalks", + value = "boardwalks", + }, + { + children = { + { + fileId = "203967", + text = "silverpinebush01.m2", + value = "silverpinebush01.m2", + }, + { + fileId = "203969", + text = "silverpinebush02.m2", + value = "silverpinebush02.m2", + }, + { + fileId = "203971", + text = "silverpinebush03.m2", + value = "silverpinebush03.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "203973", + text = "silverpinedocks01.m2", + value = "silverpinedocks01.m2", + }, + { + fileId = "203974", + text = "silverpinedocks02.m2", + value = "silverpinedocks02.m2", + }, + }, + text = "docks", + value = "docks", + }, + { + children = { + { + fileId = "203975", + text = "shadowfanggate01.m2", + value = "shadowfanggate01.m2", + }, + { + fileId = "203976", + text = "shadowfanggate02.m2", + value = "shadowfanggate02.m2", + }, + }, + text = "shadowfanggates", + value = "shadowfanggates", + }, + { + children = { + { + fileId = "203977", + text = "silverpinetree01.m2", + value = "silverpinetree01.m2", + }, + { + fileId = "203978", + text = "silverpinetree01fallen.m2", + value = "silverpinetree01fallen.m2", + }, + { + fileId = "203979", + text = "silverpinetree02.m2", + value = "silverpinetree02.m2", + }, + { + fileId = "203981", + text = "silverpinetree02fallen.m2", + value = "silverpinetree02fallen.m2", + }, + { + fileId = "203982", + text = "silverpinetree03.m2", + value = "silverpinetree03.m2", + }, + { + fileId = "203983", + text = "silverpinetree04.m2", + value = "silverpinetree04.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "203985", + text = "silverpinetreestump01.m2", + value = "silverpinetreestump01.m2", + }, + { + fileId = "203986", + text = "silverpinetreestump02.m2", + value = "silverpinetreestump02.m2", + }, + }, + text = "treestumps", + value = "treestumps", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "silverpine", + value = "silverpine", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203987", + text = "frostwyrm_waterfall.m2", + value = "frostwyrm_waterfall.m2", + }, + { + fileId = "203989", + text = "largeportcullis.m2", + value = "largeportcullis.m2", + }, + { + fileId = "203990", + text = "nox_door_abom.m2", + value = "nox_door_abom.m2", + }, + { + fileId = "203991", + text = "nox_door_abom_mini.m2", + value = "nox_door_abom_mini.m2", + }, + { + fileId = "203992", + text = "nox_door_deathknight.m2", + value = "nox_door_deathknight.m2", + }, + { + fileId = "203993", + text = "nox_door_plague.m2", + value = "nox_door_plague.m2", + }, + { + fileId = "203994", + text = "nox_door_portcullis.m2", + value = "nox_door_portcullis.m2", + }, + { + fileId = "203995", + text = "nox_door_slime.m2", + value = "nox_door_slime.m2", + }, + { + fileId = "203996", + text = "nox_door_spider.m2", + value = "nox_door_spider.m2", + }, + { + fileId = "203997", + text = "nox_door_web_boss.m2", + value = "nox_door_web_boss.m2", + }, + { + fileId = "203998", + text = "nox_door_web_large.m2", + value = "nox_door_web_large.m2", + }, + { + fileId = "204004", + text = "smallportcullis.m2", + value = "smallportcullis.m2", + }, + { + fileId = "204005", + text = "zigguratdoor.m2", + value = "zigguratdoor.m2", + }, + }, + text = "doors", + value = "doors", + }, + { + children = { + { + fileId = "204006", + text = "furnace_skull01.m2", + value = "furnace_skull01.m2", + }, + }, + text = "furnace", + value = "furnace", + }, + { + children = { + { + fileId = "204007", + text = "deathknight_gate01.m2", + value = "deathknight_gate01.m2", + }, + }, + text = "gates", + value = "gates", + }, + { + children = { + { + fileId = "204011", + text = "stratholmepostboxruined.m2", + value = "stratholmepostboxruined.m2", + }, + }, + text = "postboxdestroyed", + value = "postboxdestroyed", + }, + { + children = { + { + fileId = "204013", + text = "plaguewingsporetrap.m2", + value = "plaguewingsporetrap.m2", + }, + }, + text = "sporetrap", + value = "sporetrap", + }, + { + children = { + { + fileId = "204019", + text = "nox_tesla.m2", + value = "nox_tesla.m2", + }, + }, + text = "tesla", + value = "tesla", + }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "204024", + text = "nox_anvil.m2", + value = "nox_anvil.m2", + }, + }, + text = "anvil", + value = "anvil", + }, + { + children = { + { + fileId = "204026", + text = "blackcitadel_exteriorslimefalls.m2", + value = "blackcitadel_exteriorslimefalls.m2", + }, + { + fileId = "204027", + text = "fel_stratholmefiresmokeembers.m2", + value = "fel_stratholmefiresmokeembers.m2", + }, + { + fileId = "204031", + text = "kelthuzad_window_portal.m2", + value = "kelthuzad_window_portal.m2", + }, + { + fileId = "204038", + text = "naxxramas_frostwyrm_birth.m2", + value = "naxxramas_frostwyrm_birth.m2", + }, + { + fileId = "204040", + text = "nox_portal_bottom.m2", + value = "nox_portal_bottom.m2", + }, + { + fileId = "204041", + text = "nox_portal_orange.m2", + value = "nox_portal_orange.m2", + }, + { + fileId = "204042", + text = "nox_portal_orange_bossroom.m2", + value = "nox_portal_orange_bossroom.m2", + }, + { + fileId = "204043", + text = "nox_portal_orange_bossroom_eye.m2", + value = "nox_portal_orange_bossroom_eye.m2", + }, + { + fileId = "204044", + text = "nox_portal_purple.m2", + value = "nox_portal_purple.m2", + }, + { + fileId = "204045", + text = "nox_portal_purple_bossroom.m2", + value = "nox_portal_purple_bossroom.m2", + }, + { + fileId = "204046", + text = "nox_portal_purple_bossroom_eye.m2", + value = "nox_portal_purple_bossroom_eye.m2", + }, + { + fileId = "204047", + text = "nox_portal_red.m2", + value = "nox_portal_red.m2", + }, + { + fileId = "204048", + text = "nox_portal_red_bossroom.m2", + value = "nox_portal_red_bossroom.m2", + }, + { + fileId = "204049", + text = "nox_portal_red_bossroom_eye.m2", + value = "nox_portal_red_bossroom_eye.m2", + }, + { + fileId = "204050", + text = "nox_portal_top.m2", + value = "nox_portal_top.m2", + }, + { + fileId = "244292", + text = "nox_portal_top_zero.m2", + value = "nox_portal_top_zero.m2", + }, + { + fileId = "204051", + text = "nox_portal_yellow.m2", + value = "nox_portal_yellow.m2", + }, + { + fileId = "204052", + text = "nox_portal_yellow_bossroom.m2", + value = "nox_portal_yellow_bossroom.m2", + }, + { + fileId = "204053", + text = "nox_portal_yellow_bossroom_eye.m2", + value = "nox_portal_yellow_bossroom_eye.m2", + }, + { + fileId = "204055", + text = "stratholmefiresmokeemberm.m2", + value = "stratholmefiresmokeemberm.m2", + }, + { + fileId = "204056", + text = "stratholmefiresmokeembers.m2", + value = "stratholmefiresmokeembers.m2", + }, + { + fileId = "315386", + text = "stratholmefiresmokeembers_02.m2", + value = "stratholmefiresmokeembers_02.m2", + }, + { + fileId = "204057", + text = "stratholmefloatingembers.m2", + value = "stratholmefloatingembers.m2", + }, + { + fileId = "315407", + text = "stratholmefloatingembers_02.m2", + value = "stratholmefloatingembers_02.m2", + }, + { + fileId = "204058", + text = "stratholmesmokeemitter.m2", + value = "stratholmesmokeemitter.m2", + }, + }, + text = "fx", + value = "fx", + }, + { + children = { + { + fileId = "204059", + text = "naxxramas_frostwyrm_slimefall.m2", + value = "naxxramas_frostwyrm_slimefall.m2", + }, + }, + text = "naxxramasslimefalls", + value = "naxxramasslimefalls", + }, + { + children = { + { + fileId = "204061", + text = "ruinedsign01.m2", + value = "ruinedsign01.m2", + }, + { + fileId = "204062", + text = "ruinedsign02.m2", + value = "ruinedsign02.m2", + }, + { + fileId = "204063", + text = "ruinedsign03.m2", + value = "ruinedsign03.m2", + }, + }, + text = "signs", + value = "signs", + }, + { + children = { + { + fileId = "204065", + text = "kelthuzad_throne.m2", + value = "kelthuzad_throne.m2", + }, + }, + text = "throne", + value = "throne", + }, + { + children = { + { + fileId = "204068", + text = "bossweb_doodad01.m2", + value = "bossweb_doodad01.m2", + }, + { + fileId = "204069", + text = "bossweb_doodad02.m2", + value = "bossweb_doodad02.m2", + }, + { + fileId = "204070", + text = "hallwayweb_doodad01.m2", + value = "hallwayweb_doodad01.m2", + }, + { + fileId = "204071", + text = "hallwayweb_doodad02.m2", + value = "hallwayweb_doodad02.m2", + }, + { + fileId = "204072", + text = "hallwayweb_doodad03.m2", + value = "hallwayweb_doodad03.m2", + }, + { + fileId = "204073", + text = "rampweb_doodad01.m2", + value = "rampweb_doodad01.m2", + }, + }, + text = "webs", + value = "webs", + }, + { + children = { + { + fileId = "204075", + text = "nox_window01.m2", + value = "nox_window01.m2", + }, + }, + text = "window", + value = "window", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "stratholme", + value = "stratholme", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "204076", + text = "arcoftriumph01.m2", + value = "arcoftriumph01.m2", + }, + }, + text = "arcoftriumph", + value = "arcoftriumph", + }, + { + children = { + { + fileId = "204080", + text = "tirisfallbarricade.m2", + value = "tirisfallbarricade.m2", + }, + }, + text = "barricade", + value = "barricade", + }, + { + children = { + { + fileId = "204084", + text = "tirisfallboardwalk01.m2", + value = "tirisfallboardwalk01.m2", + }, + { + fileId = "204085", + text = "tirisfallboardwalk02.m2", + value = "tirisfallboardwalk02.m2", + }, + }, + text = "boardwalk", + value = "boardwalk", + }, + { + children = { + { + fileId = "204086", + text = "bodyshrouded.m2", + value = "bodyshrouded.m2", + }, + { + fileId = "204090", + text = "massgrave.m2", + value = "massgrave.m2", + }, + { + fileId = "204091", + text = "scourgebodyhanging01.m2", + value = "scourgebodyhanging01.m2", + }, + { + fileId = "204092", + text = "scourgebodyhanging02.m2", + value = "scourgebodyhanging02.m2", + }, + { + fileId = "204093", + text = "scourgebodyhanging03.m2", + value = "scourgebodyhanging03.m2", + }, + }, + text = "bodies", + value = "bodies", + }, + { + children = { + { + fileId = "204097", + text = "tirisfallbush01.m2", + value = "tirisfallbush01.m2", + }, + { + fileId = "204098", + text = "tirisfallgladebush03.m2", + value = "tirisfallgladebush03.m2", + }, + { + fileId = "204099", + text = "tirisfallgladebush04.m2", + value = "tirisfallgladebush04.m2", + }, + }, + text = "bushes", + value = "bushes", + }, + { + children = { + { + fileId = "204101", + text = "doomweed01.m2", + value = "doomweed01.m2", + }, + }, + text = "doomweed", + value = "doomweed", + }, + { + children = { + { + fileId = "204103", + text = "gloomweed01.m2", + value = "gloomweed01.m2", + }, + }, + text = "gloomweed", + value = "gloomweed", + }, + { + children = { + { + fileId = "204104", + text = "brillcoffins.m2", + value = "brillcoffins.m2", + }, + { + fileId = "204105", + text = "brillgraves01.m2", + value = "brillgraves01.m2", + }, + { + fileId = "204106", + text = "brillgraves02.m2", + value = "brillgraves02.m2", + }, + { + fileId = "204107", + text = "brillgraves03.m2", + value = "brillgraves03.m2", + }, + { + fileId = "204108", + text = "brillgraves04.m2", + value = "brillgraves04.m2", + }, + { + fileId = "204112", + text = "tirisfallgravedirtmound01.m2", + value = "tirisfallgravedirtmound01.m2", + }, + { + fileId = "204113", + text = "tirisfallgravedirtmound02.m2", + value = "tirisfallgravedirtmound02.m2", + }, + { + fileId = "204114", + text = "tirisfallopengrave01.m2", + value = "tirisfallopengrave01.m2", + }, + }, + text = "graves", + value = "graves", + }, + { + children = { + { + fileId = "204116", + text = "tirisfalloutpost01.m2", + value = "tirisfalloutpost01.m2", + }, + { + fileId = "204117", + text = "tirisfalloutpost02.m2", + value = "tirisfalloutpost02.m2", + }, + { + fileId = "204118", + text = "tirisfalloutpost03.m2", + value = "tirisfalloutpost03.m2", + }, + { + fileId = "204119", + text = "tirisfalloutpost04.m2", + value = "tirisfalloutpost04.m2", + }, + { + fileId = "204120", + text = "tirisfalloutpost05.m2", + value = "tirisfalloutpost05.m2", + }, + { + fileId = "204121", + text = "tirisfalloutpost06.m2", + value = "tirisfalloutpost06.m2", + }, + { + fileId = "204122", + text = "tirisfalloutpost07.m2", + value = "tirisfalloutpost07.m2", + }, + }, + text = "outposts", + value = "outposts", + }, + { + children = { + { + fileId = "204124", + text = "tirisfalgladetree01.m2", + value = "tirisfalgladetree01.m2", + }, + { + fileId = "204125", + text = "tirisfallfallentree01.m2", + value = "tirisfallfallentree01.m2", + }, + { + fileId = "204126", + text = "tirisfallfallentree02.m2", + value = "tirisfallfallentree02.m2", + }, + { + fileId = "204127", + text = "tirisfallfallentree03.m2", + value = "tirisfallfallentree03.m2", + }, + { + fileId = "204128", + text = "tirisfallfallentree04.m2", + value = "tirisfallfallentree04.m2", + }, + { + fileId = "204129", + text = "tirisfallgladecanopytree02.m2", + value = "tirisfallgladecanopytree02.m2", + }, + { + fileId = "204130", + text = "tirisfallgladecanopytree03.m2", + value = "tirisfallgladecanopytree03.m2", + }, + { + fileId = "204131", + text = "tirisfallgladecanopytree04.m2", + value = "tirisfallgladecanopytree04.m2", + }, + { + fileId = "204132", + text = "tirisfallgladecanopytree05.m2", + value = "tirisfallgladecanopytree05.m2", + }, + { + fileId = "204133", + text = "tirisfallgladecanopytree06.m2", + value = "tirisfallgladecanopytree06.m2", + }, + { + fileId = "204134", + text = "tirisfallgladecanopytree07.m2", + value = "tirisfallgladecanopytree07.m2", + }, + { + fileId = "204135", + text = "tirisfalltreestump01.m2", + value = "tirisfalltreestump01.m2", + }, + { + fileId = "204136", + text = "tirisfalltreestump02.m2", + value = "tirisfalltreestump02.m2", + }, + }, + text = "trees", + value = "trees", + }, + { + children = { + { + fileId = "204142", + text = "uthershrinepedestal.m2", + value = "uthershrinepedestal.m2", + }, + }, + text = "uthershrine", + value = "uthershrine", + }, + { + children = { + { + fileId = "204144", + text = "tirisfallwindmill.m2", + value = "tirisfallwindmill.m2", + }, + }, + text = "windmill", + value = "windmill", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "tirisfalglade", + value = "tirisfalglade", + }, + }, + text = "lordaeron", + value = "lordaeron", + }, + { + children = { + { + children = { + { + fileId = "218550", + text = "apkbus01.m2", + value = "apkbus01.m2", + }, + { + fileId = "218551", + text = "apkbus02.m2", + value = "apkbus02.m2", + }, + { + fileId = "218552", + text = "apkbus03.m2", + value = "apkbus03.m2", + }, + { + fileId = "218553", + text = "apkbus04.m2", + value = "apkbus04.m2", + }, + { + fileId = "218554", + text = "apkbus05.m2", + value = "apkbus05.m2", + }, + { + fileId = "218555", + text = "apkflo01.m2", + value = "apkflo01.m2", + }, + { + fileId = "218556", + text = "apkflo02.m2", + value = "apkflo02.m2", + }, + { + fileId = "218557", + text = "apkflo03.m2", + value = "apkflo03.m2", + }, + { + fileId = "218558", + text = "apkgra01.m2", + value = "apkgra01.m2", + }, + { + fileId = "218559", + text = "apkgra02.m2", + value = "apkgra02.m2", + }, + { + fileId = "218560", + text = "apkgra03.m2", + value = "apkgra03.m2", + }, + { + fileId = "218561", + text = "apkgra04.m2", + value = "apkgra04.m2", + }, + { + fileId = "218563", + text = "arhbus01.m2", + value = "arhbus01.m2", + }, + { + fileId = "218564", + text = "arhbus02.m2", + value = "arhbus02.m2", + }, + { + fileId = "218565", + text = "arhflo01.m2", + value = "arhflo01.m2", + }, + { + fileId = "218566", + text = "arhflo02.m2", + value = "arhflo02.m2", + }, + { + fileId = "218567", + text = "arhflo03.m2", + value = "arhflo03.m2", + }, + { + fileId = "218568", + text = "arhflo04.m2", + value = "arhflo04.m2", + }, + { + fileId = "218569", + text = "arhflo05.m2", + value = "arhflo05.m2", + }, + { + fileId = "218570", + text = "arhgra01.m2", + value = "arhgra01.m2", + }, + { + fileId = "218571", + text = "arhgra02.m2", + value = "arhgra02.m2", + }, + { + fileId = "218572", + text = "arhgra03.m2", + value = "arhgra03.m2", + }, + { + fileId = "218573", + text = "arhroc01.m2", + value = "arhroc01.m2", + }, + { + fileId = "218574", + text = "arhroc02.m2", + value = "arhroc02.m2", + }, + { + fileId = "218575", + text = "arhwet01.m2", + value = "arhwet01.m2", + }, + { + fileId = "218576", + text = "arhwet02.m2", + value = "arhwet02.m2", + }, + { + fileId = "218577", + text = "atcbus01.m2", + value = "atcbus01.m2", + }, + { + fileId = "218578", + text = "atcbus02.m2", + value = "atcbus02.m2", + }, + { + fileId = "218579", + text = "atcbus03.m2", + value = "atcbus03.m2", + }, + { + fileId = "218580", + text = "atcbus04.m2", + value = "atcbus04.m2", + }, + { + fileId = "218581", + text = "atcbus05.m2", + value = "atcbus05.m2", + }, + { + fileId = "218582", + text = "atcflo01.m2", + value = "atcflo01.m2", + }, + { + fileId = "218583", + text = "atcflo02.m2", + value = "atcflo02.m2", + }, + { + fileId = "218584", + text = "atcflo03.m2", + value = "atcflo03.m2", + }, + { + fileId = "218585", + text = "atcgra01.m2", + value = "atcgra01.m2", + }, + { + fileId = "218586", + text = "atcgra02.m2", + value = "atcgra02.m2", + }, + { + fileId = "218587", + text = "atcgra03.m2", + value = "atcgra03.m2", + }, + { + fileId = "218588", + text = "atcgra04.m2", + value = "atcgra04.m2", + }, + { + fileId = "218589", + text = "azhbus01.m2", + value = "azhbus01.m2", + }, + { + fileId = "218590", + text = "azhbus02.m2", + value = "azhbus02.m2", + }, + { + fileId = "218591", + text = "azhbus03.m2", + value = "azhbus03.m2", + }, + { + fileId = "218592", + text = "azhbus04.m2", + value = "azhbus04.m2", + }, + { + fileId = "218593", + text = "azhbus05.m2", + value = "azhbus05.m2", + }, + { + fileId = "218594", + text = "azhbus06.m2", + value = "azhbus06.m2", + }, + { + fileId = "218595", + text = "azhbus07.m2", + value = "azhbus07.m2", + }, + { + fileId = "218596", + text = "azhbus08.m2", + value = "azhbus08.m2", + }, + { + fileId = "218597", + text = "azhgra01.m2", + value = "azhgra01.m2", + }, + { + fileId = "218598", + text = "azhgra02.m2", + value = "azhgra02.m2", + }, + { + fileId = "218599", + text = "azhshel01.m2", + value = "azhshel01.m2", + }, + { + fileId = "218600", + text = "azhshel02.m2", + value = "azhshel02.m2", + }, + { + fileId = "218601", + text = "azhshel03.m2", + value = "azhshel03.m2", + }, + { + fileId = "218603", + text = "badbus01.m2", + value = "badbus01.m2", + }, + { + fileId = "218604", + text = "badbus02.m2", + value = "badbus02.m2", + }, + { + fileId = "218605", + text = "badbus03.m2", + value = "badbus03.m2", + }, + { + fileId = "218606", + text = "badbus04.m2", + value = "badbus04.m2", + }, + { + fileId = "218607", + text = "badbus05.m2", + value = "badbus05.m2", + }, + { + fileId = "218608", + text = "badbus06.m2", + value = "badbus06.m2", + }, + { + fileId = "218609", + text = "badbus07.m2", + value = "badbus07.m2", + }, + { + fileId = "218610", + text = "badbus08.m2", + value = "badbus08.m2", + }, + { + fileId = "218611", + text = "badgra01.m2", + value = "badgra01.m2", + }, + { + fileId = "218612", + text = "badgra02.m2", + value = "badgra02.m2", + }, + { + fileId = "218614", + text = "badroc01.m2", + value = "badroc01.m2", + }, + { + fileId = "218615", + text = "badroc02.m2", + value = "badroc02.m2", + }, + { + fileId = "218616", + text = "badroc03.m2", + value = "badroc03.m2", + }, + { + fileId = "218617", + text = "barbus01.m2", + value = "barbus01.m2", + }, + { + fileId = "218618", + text = "barbus02.m2", + value = "barbus02.m2", + }, + { + fileId = "218619", + text = "barbus03.m2", + value = "barbus03.m2", + }, + { + fileId = "218620", + text = "barbus04.m2", + value = "barbus04.m2", + }, + { + fileId = "218621", + text = "bargra01.m2", + value = "bargra01.m2", + }, + { + fileId = "218622", + text = "bargra02.m2", + value = "bargra02.m2", + }, + { + fileId = "218623", + text = "bargra03.m2", + value = "bargra03.m2", + }, + { + fileId = "218624", + text = "bargra04.m2", + value = "bargra04.m2", + }, + { + fileId = "218625", + text = "bargra05.m2", + value = "bargra05.m2", + }, + { + fileId = "218626", + text = "bargra06.m2", + value = "bargra06.m2", + }, + { + fileId = "218627", + text = "bargra07.m2", + value = "bargra07.m2", + }, + { + fileId = "218628", + text = "bargra08.m2", + value = "bargra08.m2", + }, + { + fileId = "218630", + text = "barroc01.m2", + value = "barroc01.m2", + }, + { + fileId = "218631", + text = "barroc02.m2", + value = "barroc02.m2", + }, + { + fileId = "218632", + text = "barroc03.m2", + value = "barroc03.m2", + }, + { + fileId = "218633", + text = "barroc04.m2", + value = "barroc04.m2", + }, + { + fileId = "218634", + text = "barroc05.m2", + value = "barroc05.m2", + }, + { + fileId = "218635", + text = "barroc06.m2", + value = "barroc06.m2", + }, + { + fileId = "218637", + text = "blaroc01.m2", + value = "blaroc01.m2", + }, + { + fileId = "218638", + text = "blaroc02.m2", + value = "blaroc02.m2", + }, + { + fileId = "218639", + text = "blaroc03.m2", + value = "blaroc03.m2", + }, + { + fileId = "218640", + text = "blaroc04.m2", + value = "blaroc04.m2", + }, + { + fileId = "218641", + text = "blaroc05.m2", + value = "blaroc05.m2", + }, + { + fileId = "218642", + text = "blaroc06.m2", + value = "blaroc06.m2", + }, + { + fileId = "218643", + text = "blaroc07.m2", + value = "blaroc07.m2", + }, + { + fileId = "218644", + text = "blaroc08.m2", + value = "blaroc08.m2", + }, + { + fileId = "218645", + text = "blaroc09.m2", + value = "blaroc09.m2", + }, + { + fileId = "218646", + text = "blaroc10.m2", + value = "blaroc10.m2", + }, + { + fileId = "218647", + text = "blaroc11.m2", + value = "blaroc11.m2", + }, + { + fileId = "218648", + text = "blaroc12.m2", + value = "blaroc12.m2", + }, + { + fileId = "218649", + text = "blaroc13.m2", + value = "blaroc13.m2", + }, + { + fileId = "218651", + text = "bllbus01.m2", + value = "bllbus01.m2", + }, + { + fileId = "218652", + text = "bllroc01.m2", + value = "bllroc01.m2", + }, + { + fileId = "218653", + text = "bllroc02.m2", + value = "bllroc02.m2", + }, + { + fileId = "218654", + text = "bllroc03.m2", + value = "bllroc03.m2", + }, + { + fileId = "218655", + text = "bllroc04.m2", + value = "bllroc04.m2", + }, + { + fileId = "218656", + text = "bllroc05.m2", + value = "bllroc05.m2", + }, + { + fileId = "218657", + text = "bllroc06.m2", + value = "bllroc06.m2", + }, + { + fileId = "218658", + text = "bllroc07.m2", + value = "bllroc07.m2", + }, + { + fileId = "218659", + text = "bllroc08.m2", + value = "bllroc08.m2", + }, + { + fileId = "218661", + text = "bmybus01.m2", + value = "bmybus01.m2", + }, + { + fileId = "218662", + text = "bmybus02.m2", + value = "bmybus02.m2", + }, + { + fileId = "218663", + text = "bmybus03.m2", + value = "bmybus03.m2", + }, + { + fileId = "218664", + text = "bmybus04.m2", + value = "bmybus04.m2", + }, + { + fileId = "218665", + text = "bmybus05.m2", + value = "bmybus05.m2", + }, + { + fileId = "218666", + text = "bmyflo01.m2", + value = "bmyflo01.m2", + }, + { + fileId = "218667", + text = "bmyflo02.m2", + value = "bmyflo02.m2", + }, + { + fileId = "218668", + text = "bmygra01.m2", + value = "bmygra01.m2", + }, + { + fileId = "218669", + text = "bmygra02.m2", + value = "bmygra02.m2", + }, + { + fileId = "218670", + text = "bmygra03.m2", + value = "bmygra03.m2", + }, + { + fileId = "218671", + text = "bmygra04.m2", + value = "bmygra04.m2", + }, + { + fileId = "218672", + text = "borgra01.m2", + value = "borgra01.m2", + }, + { + fileId = "218673", + text = "bstbra01.m2", + value = "bstbra01.m2", + }, + { + fileId = "218674", + text = "bstbra02.m2", + value = "bstbra02.m2", + }, + { + fileId = "218675", + text = "bstbra03.m2", + value = "bstbra03.m2", + }, + { + fileId = "218676", + text = "bstbra04.m2", + value = "bstbra04.m2", + }, + { + fileId = "218677", + text = "bstbra05.m2", + value = "bstbra05.m2", + }, + { + fileId = "218678", + text = "bstbra06.m2", + value = "bstbra06.m2", + }, + { + fileId = "218679", + text = "bstbra07.m2", + value = "bstbra07.m2", + }, + { + fileId = "218680", + text = "bstbra08.m2", + value = "bstbra08.m2", + }, + { + fileId = "218681", + text = "bstroc01.m2", + value = "bstroc01.m2", + }, + { + fileId = "218682", + text = "bstroc02.m2", + value = "bstroc02.m2", + }, + { + fileId = "218683", + text = "bstroc03.m2", + value = "bstroc03.m2", + }, + { + fileId = "218684", + text = "bstroc04.m2", + value = "bstroc04.m2", + }, + { + fileId = "218685", + text = "bstroc05.m2", + value = "bstroc05.m2", + }, + { + fileId = "218689", + text = "csbra01.m2", + value = "csbra01.m2", + }, + { + fileId = "218690", + text = "csclov01.m2", + value = "csclov01.m2", + }, + { + fileId = "218691", + text = "cscry01.m2", + value = "cscry01.m2", + }, + { + fileId = "218692", + text = "csgras01.m2", + value = "csgras01.m2", + }, + { + fileId = "218693", + text = "csgras02.m2", + value = "csgras02.m2", + }, + { + fileId = "218694", + text = "csgras03.m2", + value = "csgras03.m2", + }, + { + fileId = "218695", + text = "csgras04.m2", + value = "csgras04.m2", + }, + { + fileId = "218696", + text = "csgras05.m2", + value = "csgras05.m2", + }, + { + fileId = "218697", + text = "csshrub01.m2", + value = "csshrub01.m2", + }, + { + fileId = "218700", + text = "dbbra04.m2", + value = "dbbra04.m2", + }, + { + fileId = "218701", + text = "dbbus03.m2", + value = "dbbus03.m2", + }, + { + fileId = "218702", + text = "dbgra01.m2", + value = "dbgra01.m2", + }, + { + fileId = "218703", + text = "dbgra02.m2", + value = "dbgra02.m2", + }, + { + fileId = "218704", + text = "dbgra03.m2", + value = "dbgra03.m2", + }, + { + fileId = "218705", + text = "dbgra04.m2", + value = "dbgra04.m2", + }, + { + fileId = "218708", + text = "drkbus01.m2", + value = "drkbus01.m2", + }, + { + fileId = "218709", + text = "drkbus02.m2", + value = "drkbus02.m2", + }, + { + fileId = "218710", + text = "drkbus03.m2", + value = "drkbus03.m2", + }, + { + fileId = "218711", + text = "drkbus04.m2", + value = "drkbus04.m2", + }, + { + fileId = "218712", + text = "drkbus05.m2", + value = "drkbus05.m2", + }, + { + fileId = "218713", + text = "drkbus06.m2", + value = "drkbus06.m2", + }, + { + fileId = "218714", + text = "drkbus07.m2", + value = "drkbus07.m2", + }, + { + fileId = "218715", + text = "drkgra01.m2", + value = "drkgra01.m2", + }, + { + fileId = "218716", + text = "drkgra02.m2", + value = "drkgra02.m2", + }, + { + fileId = "218717", + text = "drkgra03.m2", + value = "drkgra03.m2", + }, + { + fileId = "218718", + text = "drkgra04.m2", + value = "drkgra04.m2", + }, + { + fileId = "218719", + text = "drkgra05.m2", + value = "drkgra05.m2", + }, + { + fileId = "218720", + text = "drkgra06.m2", + value = "drkgra06.m2", + }, + { + fileId = "218721", + text = "dskflo01.m2", + value = "dskflo01.m2", + }, + { + fileId = "218722", + text = "dskflo02.m2", + value = "dskflo02.m2", + }, + { + fileId = "218723", + text = "dskgra01.m2", + value = "dskgra01.m2", + }, + { + fileId = "218724", + text = "dskgra02.m2", + value = "dskgra02.m2", + }, + { + fileId = "218725", + text = "dskgra03.m2", + value = "dskgra03.m2", + }, + { + fileId = "218726", + text = "dskgra04.m2", + value = "dskgra04.m2", + }, + { + fileId = "218727", + text = "dskgra05.m2", + value = "dskgra05.m2", + }, + { + fileId = "218728", + text = "dskgra06.m2", + value = "dskgra06.m2", + }, + { + fileId = "218729", + text = "dslbon01.m2", + value = "dslbon01.m2", + }, + { + fileId = "218730", + text = "dslbon02.m2", + value = "dslbon02.m2", + }, + { + fileId = "218731", + text = "dslbon03.m2", + value = "dslbon03.m2", + }, + { + fileId = "218732", + text = "dslbon04.m2", + value = "dslbon04.m2", + }, + { + fileId = "218733", + text = "dslbon05.m2", + value = "dslbon05.m2", + }, + { + fileId = "218734", + text = "dslbon06.m2", + value = "dslbon06.m2", + }, + { + fileId = "218735", + text = "dslbon07.m2", + value = "dslbon07.m2", + }, + { + fileId = "218736", + text = "dslbon08.m2", + value = "dslbon08.m2", + }, + { + fileId = "218737", + text = "dslroc01.m2", + value = "dslroc01.m2", + }, + { + fileId = "218738", + text = "dslroc02.m2", + value = "dslroc02.m2", + }, + { + fileId = "218739", + text = "dunbra01.m2", + value = "dunbra01.m2", + }, + { + fileId = "218740", + text = "dunbra02.m2", + value = "dunbra02.m2", + }, + { + fileId = "218741", + text = "dunbra03.m2", + value = "dunbra03.m2", + }, + { + fileId = "218742", + text = "dunbra04.m2", + value = "dunbra04.m2", + }, + { + fileId = "218743", + text = "dunbus01.m2", + value = "dunbus01.m2", + }, + { + fileId = "218744", + text = "dunbus02.m2", + value = "dunbus02.m2", + }, + { + fileId = "218745", + text = "dunbus03.m2", + value = "dunbus03.m2", + }, + { + fileId = "218746", + text = "dungra01.m2", + value = "dungra01.m2", + }, + { + fileId = "218747", + text = "dungra02.m2", + value = "dungra02.m2", + }, + { + fileId = "218748", + text = "dungra03.m2", + value = "dungra03.m2", + }, + { + fileId = "218749", + text = "dungra04.m2", + value = "dungra04.m2", + }, + { + fileId = "218750", + text = "dunroc01.m2", + value = "dunroc01.m2", + }, + { + fileId = "218751", + text = "dunroc02.m2", + value = "dunroc02.m2", + }, + { + fileId = "218752", + text = "durbus01.m2", + value = "durbus01.m2", + }, + { + fileId = "218753", + text = "durbus02.m2", + value = "durbus02.m2", + }, + { + fileId = "218754", + text = "durbus03.m2", + value = "durbus03.m2", + }, + { + fileId = "218755", + text = "durbus04.m2", + value = "durbus04.m2", + }, + { + fileId = "218756", + text = "durbus05.m2", + value = "durbus05.m2", + }, + { + fileId = "218757", + text = "durbus06.m2", + value = "durbus06.m2", + }, + { + fileId = "218758", + text = "durgra01.m2", + value = "durgra01.m2", + }, + { + fileId = "218759", + text = "durgra02.m2", + value = "durgra02.m2", + }, + { + fileId = "218760", + text = "durgra03.m2", + value = "durgra03.m2", + }, + { + fileId = "218761", + text = "duribu01.m2", + value = "duribu01.m2", + }, + { + fileId = "218762", + text = "duribu02.m2", + value = "duribu02.m2", + }, + { + fileId = "218763", + text = "duribu03.m2", + value = "duribu03.m2", + }, + { + fileId = "218764", + text = "durifl01.m2", + value = "durifl01.m2", + }, + { + fileId = "218765", + text = "durifl02.m2", + value = "durifl02.m2", + }, + { + fileId = "218766", + text = "durifl03.m2", + value = "durifl03.m2", + }, + { + fileId = "218767", + text = "durifl04.m2", + value = "durifl04.m2", + }, + { + fileId = "218768", + text = "durifl05.m2", + value = "durifl05.m2", + }, + { + fileId = "218769", + text = "durigr01.m2", + value = "durigr01.m2", + }, + { + fileId = "218770", + text = "durigr02.m2", + value = "durigr02.m2", + }, + { + fileId = "218771", + text = "durigr03.m2", + value = "durigr03.m2", + }, + { + fileId = "218772", + text = "durigr04.m2", + value = "durigr04.m2", + }, + { + fileId = "218773", + text = "duriro01.m2", + value = "duriro01.m2", + }, + { + fileId = "218774", + text = "duriro02.m2", + value = "duriro02.m2", + }, + { + fileId = "218776", + text = "durroc01.m2", + value = "durroc01.m2", + }, + { + fileId = "218777", + text = "durroc02.m2", + value = "durroc02.m2", + }, + { + fileId = "218778", + text = "durroc03.m2", + value = "durroc03.m2", + }, + { + fileId = "218779", + text = "durroc04.m2", + value = "durroc04.m2", + }, + { + fileId = "218782", + text = "dwmbus01.m2", + value = "dwmbus01.m2", + }, + { + fileId = "218783", + text = "dwmbus02.m2", + value = "dwmbus02.m2", + }, + { + fileId = "218784", + text = "dwmbus03.m2", + value = "dwmbus03.m2", + }, + { + fileId = "218785", + text = "dwmbus04.m2", + value = "dwmbus04.m2", + }, + { + fileId = "218786", + text = "dwmbus05.m2", + value = "dwmbus05.m2", + }, + { + fileId = "218787", + text = "dwmgra01.m2", + value = "dwmgra01.m2", + }, + { + fileId = "218788", + text = "dwmgra02.m2", + value = "dwmgra02.m2", + }, + { + fileId = "218789", + text = "dwmgra03.m2", + value = "dwmgra03.m2", + }, + { + fileId = "218790", + text = "dwmgra04.m2", + value = "dwmgra04.m2", + }, + { + fileId = "218791", + text = "dwmgra05.m2", + value = "dwmgra05.m2", + }, + { + fileId = "218792", + text = "dwmgra06.m2", + value = "dwmgra06.m2", + }, + { + fileId = "218793", + text = "dwmroc01.m2", + value = "dwmroc01.m2", + }, + { + fileId = "218794", + text = "dwmroc02.m2", + value = "dwmroc02.m2", + }, + { + fileId = "218795", + text = "dwpbra01.m2", + value = "dwpbra01.m2", + }, + { + fileId = "218796", + text = "dwpbra02.m2", + value = "dwpbra02.m2", + }, + { + fileId = "218797", + text = "dwpbra03.m2", + value = "dwpbra03.m2", + }, + { + fileId = "218798", + text = "dwpgra01.m2", + value = "dwpgra01.m2", + }, + { + fileId = "218799", + text = "dwpgra02.m2", + value = "dwpgra02.m2", + }, + { + fileId = "218800", + text = "dwpgra03.m2", + value = "dwpgra03.m2", + }, + { + fileId = "218801", + text = "dwproc01.m2", + value = "dwproc01.m2", + }, + { + fileId = "218802", + text = "dwproc02.m2", + value = "dwproc02.m2", + }, + { + fileId = "218803", + text = "dwproc03.m2", + value = "dwproc03.m2", + }, + { + fileId = "218804", + text = "dwpwea01.m2", + value = "dwpwea01.m2", + }, + { + fileId = "218805", + text = "dwpwea02.m2", + value = "dwpwea02.m2", + }, + { + fileId = "218806", + text = "dwpwea03.m2", + value = "dwpwea03.m2", + }, + { + fileId = "218807", + text = "dwpwea04.m2", + value = "dwpwea04.m2", + }, + { + fileId = "218809", + text = "elwflo01.m2", + value = "elwflo01.m2", + }, + { + fileId = "218810", + text = "elwflo02.m2", + value = "elwflo02.m2", + }, + { + fileId = "218811", + text = "elwflo03.m2", + value = "elwflo03.m2", + }, + { + fileId = "218812", + text = "elwgra01.m2", + value = "elwgra01.m2", + }, + { + fileId = "218813", + text = "elwgra02.m2", + value = "elwgra02.m2", + }, + { + fileId = "218814", + text = "elwgra03.m2", + value = "elwgra03.m2", + }, + { + fileId = "218815", + text = "elwgra04.m2", + value = "elwgra04.m2", + }, + { + fileId = "218816", + text = "elwgra05.m2", + value = "elwgra05.m2", + }, + { + fileId = "218817", + text = "elwgra06.m2", + value = "elwgra06.m2", + }, + { + fileId = "218818", + text = "elwgra07.m2", + value = "elwgra07.m2", + }, + { + fileId = "218819", + text = "elwgra08.m2", + value = "elwgra08.m2", + }, + { + fileId = "218820", + text = "elwroc01.m2", + value = "elwroc01.m2", + }, + { + fileId = "218821", + text = "elwroc02.m2", + value = "elwroc02.m2", + }, + { + fileId = "218822", + text = "emdcre01.m2", + value = "emdcre01.m2", + }, + { + fileId = "218823", + text = "emdcre02.m2", + value = "emdcre02.m2", + }, + { + fileId = "218824", + text = "emdcre03.m2", + value = "emdcre03.m2", + }, + { + fileId = "218825", + text = "emdcre04.m2", + value = "emdcre04.m2", + }, + { + fileId = "218826", + text = "emdcre05.m2", + value = "emdcre05.m2", + }, + { + fileId = "218827", + text = "emdcre06.m2", + value = "emdcre06.m2", + }, + { + fileId = "218828", + text = "emdflo01.m2", + value = "emdflo01.m2", + }, + { + fileId = "218829", + text = "emdflo02.m2", + value = "emdflo02.m2", + }, + { + fileId = "218830", + text = "emdgra01.m2", + value = "emdgra01.m2", + }, + { + fileId = "218831", + text = "emdgra02.m2", + value = "emdgra02.m2", + }, + { + fileId = "218832", + text = "emdgra03.m2", + value = "emdgra03.m2", + }, + { + fileId = "218833", + text = "emdgra04.m2", + value = "emdgra04.m2", + }, + { + fileId = "218834", + text = "emdgra05.m2", + value = "emdgra05.m2", + }, + { + fileId = "218835", + text = "emdgra06.m2", + value = "emdgra06.m2", + }, + { + fileId = "218838", + text = "eplbon01.m2", + value = "eplbon01.m2", + }, + { + fileId = "218839", + text = "eplbon02.m2", + value = "eplbon02.m2", + }, + { + fileId = "218840", + text = "eplbon03.m2", + value = "eplbon03.m2", + }, + { + fileId = "218841", + text = "eplbon04.m2", + value = "eplbon04.m2", + }, + { + fileId = "218842", + text = "eplbon05.m2", + value = "eplbon05.m2", + }, + { + fileId = "218843", + text = "eplbon06.m2", + value = "eplbon06.m2", + }, + { + fileId = "218844", + text = "eplbus01.m2", + value = "eplbus01.m2", + }, + { + fileId = "218845", + text = "eplbus02.m2", + value = "eplbus02.m2", + }, + { + fileId = "218846", + text = "eplbus03.m2", + value = "eplbus03.m2", + }, + { + fileId = "218847", + text = "eplbus04.m2", + value = "eplbus04.m2", + }, + { + fileId = "218848", + text = "eplbus05.m2", + value = "eplbus05.m2", + }, + { + fileId = "218849", + text = "eplbus06.m2", + value = "eplbus06.m2", + }, + { + fileId = "218850", + text = "eplbus07.m2", + value = "eplbus07.m2", + }, + { + fileId = "218851", + text = "eplgra01.m2", + value = "eplgra01.m2", + }, + { + fileId = "218852", + text = "eplgra02.m2", + value = "eplgra02.m2", + }, + { + fileId = "218853", + text = "eplgra03.m2", + value = "eplgra03.m2", + }, + { + fileId = "218854", + text = "eplmus01.m2", + value = "eplmus01.m2", + }, + { + fileId = "218855", + text = "eplmus02.m2", + value = "eplmus02.m2", + }, + { + fileId = "218856", + text = "felbus01.m2", + value = "felbus01.m2", + }, + { + fileId = "218857", + text = "felbus02.m2", + value = "felbus02.m2", + }, + { + fileId = "218858", + text = "felbus03.m2", + value = "felbus03.m2", + }, + { + fileId = "218859", + text = "felbus04.m2", + value = "felbus04.m2", + }, + { + fileId = "218860", + text = "felflo01.m2", + value = "felflo01.m2", + }, + { + fileId = "218861", + text = "felflo02.m2", + value = "felflo02.m2", + }, + { + fileId = "218862", + text = "felgra01.m2", + value = "felgra01.m2", + }, + { + fileId = "218863", + text = "felgra02.m2", + value = "felgra02.m2", + }, + { + fileId = "218864", + text = "felgra03.m2", + value = "felgra03.m2", + }, + { + fileId = "218865", + text = "felgra04.m2", + value = "felgra04.m2", + }, + { + fileId = "218867", + text = "ghclov01.m2", + value = "ghclov01.m2", + }, + { + fileId = "218869", + text = "ghdan01.m2", + value = "ghdan01.m2", + }, + { + fileId = "218871", + text = "ghmush01.m2", + value = "ghmush01.m2", + }, + { + fileId = "218874", + text = "ghshrub01.m2", + value = "ghshrub01.m2", + }, + { + fileId = "218876", + text = "ghshrub02.m2", + value = "ghshrub02.m2", + }, + { + fileId = "218878", + text = "ghshrub03.m2", + value = "ghshrub03.m2", + }, + { + fileId = "218879", + text = "gstbus01.m2", + value = "gstbus01.m2", + }, + { + fileId = "218880", + text = "gstbus02.m2", + value = "gstbus02.m2", + }, + { + fileId = "218881", + text = "gstbus03.m2", + value = "gstbus03.m2", + }, + { + fileId = "218882", + text = "gstflo01.m2", + value = "gstflo01.m2", + }, + { + fileId = "218883", + text = "gstflo02.m2", + value = "gstflo02.m2", + }, + { + fileId = "218884", + text = "gstflo03.m2", + value = "gstflo03.m2", + }, + { + fileId = "218885", + text = "gstgra01.m2", + value = "gstgra01.m2", + }, + { + fileId = "218886", + text = "gstgra02.m2", + value = "gstgra02.m2", + }, + { + fileId = "218887", + text = "gstgra03.m2", + value = "gstgra03.m2", + }, + { + fileId = "218888", + text = "hofbushyb01.m2", + value = "hofbushyb01.m2", + }, + { + fileId = "218889", + text = "hofbushyb02.m2", + value = "hofbushyb02.m2", + }, + { + fileId = "218890", + text = "hofbushyc01.m2", + value = "hofbushyc01.m2", + }, + { + fileId = "218891", + text = "hofbushyc02.m2", + value = "hofbushyc02.m2", + }, + { + fileId = "218892", + text = "hofgrassg01.m2", + value = "hofgrassg01.m2", + }, + { + fileId = "218893", + text = "hofgrassg02.m2", + value = "hofgrassg02.m2", + }, + { + fileId = "218894", + text = "hofgrassyd01.m2", + value = "hofgrassyd01.m2", + }, + { + fileId = "218895", + text = "hofgrassyd02.m2", + value = "hofgrassyd02.m2", + }, + { + fileId = "218899", + text = "hyjbus01.m2", + value = "hyjbus01.m2", + }, + { + fileId = "218900", + text = "hyjbus02.m2", + value = "hyjbus02.m2", + }, + { + fileId = "218901", + text = "hyjbus03.m2", + value = "hyjbus03.m2", + }, + { + fileId = "218902", + text = "hyjbus04.m2", + value = "hyjbus04.m2", + }, + { + fileId = "218903", + text = "hyjbus05.m2", + value = "hyjbus05.m2", + }, + { + fileId = "218904", + text = "hyjgra01.m2", + value = "hyjgra01.m2", + }, + { + fileId = "218905", + text = "hyjgra02.m2", + value = "hyjgra02.m2", + }, + { + fileId = "218906", + text = "hyjgra03.m2", + value = "hyjgra03.m2", + }, + { + fileId = "218907", + text = "icebon01.m2", + value = "icebon01.m2", + }, + { + fileId = "218908", + text = "icebon02.m2", + value = "icebon02.m2", + }, + { + fileId = "218909", + text = "icebon03.m2", + value = "icebon03.m2", + }, + { + fileId = "218910", + text = "icebon04.m2", + value = "icebon04.m2", + }, + { + fileId = "218911", + text = "icebon05.m2", + value = "icebon05.m2", + }, + { + fileId = "218912", + text = "icebon06.m2", + value = "icebon06.m2", + }, + { + fileId = "218913", + text = "icebon07.m2", + value = "icebon07.m2", + }, + { + fileId = "218914", + text = "icebon08.m2", + value = "icebon08.m2", + }, + { + fileId = "218917", + text = "kalbus01.m2", + value = "kalbus01.m2", + }, + { + fileId = "218918", + text = "kalbus02.m2", + value = "kalbus02.m2", + }, + { + fileId = "218919", + text = "kalbus03.m2", + value = "kalbus03.m2", + }, + { + fileId = "218920", + text = "kalbus04.m2", + value = "kalbus04.m2", + }, + { + fileId = "218921", + text = "kalflo01.m2", + value = "kalflo01.m2", + }, + { + fileId = "218922", + text = "kalflo02.m2", + value = "kalflo02.m2", + }, + { + fileId = "218923", + text = "kalflo03.m2", + value = "kalflo03.m2", + }, + { + fileId = "218924", + text = "kalflo04.m2", + value = "kalflo04.m2", + }, + { + fileId = "218925", + text = "kalgra01.m2", + value = "kalgra01.m2", + }, + { + fileId = "218926", + text = "kalgra02.m2", + value = "kalgra02.m2", + }, + { + fileId = "218927", + text = "kalgra03.m2", + value = "kalgra03.m2", + }, + { + fileId = "218928", + text = "kalgra04.m2", + value = "kalgra04.m2", + }, + { + fileId = "218929", + text = "kalgra05.m2", + value = "kalgra05.m2", + }, + { + fileId = "218932", + text = "lakgra01.m2", + value = "lakgra01.m2", + }, + { + fileId = "218933", + text = "lakgra02.m2", + value = "lakgra02.m2", + }, + { + fileId = "218934", + text = "lakgra03.m2", + value = "lakgra03.m2", + }, + { + fileId = "218935", + text = "lakgra04.m2", + value = "lakgra04.m2", + }, + { + fileId = "218936", + text = "lakgra05.m2", + value = "lakgra05.m2", + }, + { + fileId = "218937", + text = "lakgra06.m2", + value = "lakgra06.m2", + }, + { + fileId = "218938", + text = "lakgra07.m2", + value = "lakgra07.m2", + }, + { + fileId = "218939", + text = "lchbus01.m2", + value = "lchbus01.m2", + }, + { + fileId = "218940", + text = "lchflo01.m2", + value = "lchflo01.m2", + }, + { + fileId = "218941", + text = "lchflo02.m2", + value = "lchflo02.m2", + }, + { + fileId = "218942", + text = "lchflo03.m2", + value = "lchflo03.m2", + }, + { + fileId = "218943", + text = "lchflo04.m2", + value = "lchflo04.m2", + }, + { + fileId = "218944", + text = "lchflo05.m2", + value = "lchflo05.m2", + }, + { + fileId = "218945", + text = "lchflo06.m2", + value = "lchflo06.m2", + }, + { + fileId = "218946", + text = "lchflo07.m2", + value = "lchflo07.m2", + }, + { + fileId = "218947", + text = "lchflo08.m2", + value = "lchflo08.m2", + }, + { + fileId = "218948", + text = "lchflo09.m2", + value = "lchflo09.m2", + }, + { + fileId = "218949", + text = "lchgra01.m2", + value = "lchgra01.m2", + }, + { + fileId = "218950", + text = "lchgra02.m2", + value = "lchgra02.m2", + }, + { + fileId = "218951", + text = "lchgra03.m2", + value = "lchgra03.m2", + }, + { + fileId = "218952", + text = "lchroc01.m2", + value = "lchroc01.m2", + }, + { + fileId = "218953", + text = "lchroc02.m2", + value = "lchroc02.m2", + }, + { + fileId = "218954", + text = "lchroc03.m2", + value = "lchroc03.m2", + }, + { + fileId = "218955", + text = "lchroc04.m2", + value = "lchroc04.m2", + }, + { + fileId = "218957", + text = "mulbus01.m2", + value = "mulbus01.m2", + }, + { + fileId = "218958", + text = "mulbus02.m2", + value = "mulbus02.m2", + }, + { + fileId = "218959", + text = "mulbus03.m2", + value = "mulbus03.m2", + }, + { + fileId = "218960", + text = "mulbus04.m2", + value = "mulbus04.m2", + }, + { + fileId = "218961", + text = "mulflo01.m2", + value = "mulflo01.m2", + }, + { + fileId = "218962", + text = "mulgra01.m2", + value = "mulgra01.m2", + }, + { + fileId = "218963", + text = "mulgra02.m2", + value = "mulgra02.m2", + }, + { + fileId = "218964", + text = "mulgra03.m2", + value = "mulgra03.m2", + }, + { + fileId = "218965", + text = "mulgra04.m2", + value = "mulgra04.m2", + }, + { + fileId = "218966", + text = "mulgra05.m2", + value = "mulgra05.m2", + }, + { + fileId = "218967", + text = "mulgra06.m2", + value = "mulgra06.m2", + }, + { + fileId = "218969", + text = "mulroc01.m2", + value = "mulroc01.m2", + }, + { + fileId = "218970", + text = "mulroc02.m2", + value = "mulroc02.m2", + }, + { + fileId = "218971", + text = "naggra01.m2", + value = "naggra01.m2", + }, + { + fileId = "218972", + text = "naggra02.m2", + value = "naggra02.m2", + }, + { + fileId = "218973", + text = "naggra03.m2", + value = "naggra03.m2", + }, + { + fileId = "218974", + text = "naggra04.m2", + value = "naggra04.m2", + }, + { + fileId = "218975", + text = "naggra05.m2", + value = "naggra05.m2", + }, + { + fileId = "218976", + text = "naggra06.m2", + value = "naggra06.m2", + }, + { + fileId = "218980", + text = "nethroc01.m2", + value = "nethroc01.m2", + }, + { + fileId = "218981", + text = "nethroc02.m2", + value = "nethroc02.m2", + }, + { + fileId = "218984", + text = "plaguelandsfun01.m2", + value = "plaguelandsfun01.m2", + }, + { + fileId = "218985", + text = "plaguelandsfun02.m2", + value = "plaguelandsfun02.m2", + }, + { + fileId = "218986", + text = "plaguelandsgra01.m2", + value = "plaguelandsgra01.m2", + }, + { + fileId = "218987", + text = "plaguelandsgra02.m2", + value = "plaguelandsgra02.m2", + }, + { + fileId = "218988", + text = "plaguelandsmus01.m2", + value = "plaguelandsmus01.m2", + }, + { + fileId = "218989", + text = "plaguelandsmus02.m2", + value = "plaguelandsmus02.m2", + }, + { + fileId = "218990", + text = "plaguelandspla01.m2", + value = "plaguelandspla01.m2", + }, + { + fileId = "218991", + text = "plaguelandspla02.m2", + value = "plaguelandspla02.m2", + }, + { + fileId = "218992", + text = "plaguelandsroc01.m2", + value = "plaguelandsroc01.m2", + }, + { + fileId = "218993", + text = "plaguelandsspo01.m2", + value = "plaguelandsspo01.m2", + }, + { + fileId = "218994", + text = "redbus01.m2", + value = "redbus01.m2", + }, + { + fileId = "218995", + text = "redbus02.m2", + value = "redbus02.m2", + }, + { + fileId = "218996", + text = "redbus03.m2", + value = "redbus03.m2", + }, + { + fileId = "218997", + text = "redflo01.m2", + value = "redflo01.m2", + }, + { + fileId = "218998", + text = "redflo02.m2", + value = "redflo02.m2", + }, + { + fileId = "218999", + text = "redflo03.m2", + value = "redflo03.m2", + }, + { + fileId = "219000", + text = "redflo04.m2", + value = "redflo04.m2", + }, + { + fileId = "219001", + text = "redgra01.m2", + value = "redgra01.m2", + }, + { + fileId = "219002", + text = "redgra02.m2", + value = "redgra02.m2", + }, + { + fileId = "219004", + text = "redroc01.m2", + value = "redroc01.m2", + }, + { + fileId = "219005", + text = "redroc02.m2", + value = "redroc02.m2", + }, + { + fileId = "367883", + text = "rsbra01.m2", + value = "rsbra01.m2", + }, + { + fileId = "367884", + text = "rsflo01.m2", + value = "rsflo01.m2", + }, + { + fileId = "367885", + text = "rsgra01.m2", + value = "rsgra01.m2", + }, + { + fileId = "367886", + text = "rsgra02.m2", + value = "rsgra02.m2", + }, + { + fileId = "219006", + text = "shobus01.m2", + value = "shobus01.m2", + }, + { + fileId = "219007", + text = "shobus02.m2", + value = "shobus02.m2", + }, + { + fileId = "219008", + text = "shobus03.m2", + value = "shobus03.m2", + }, + { + fileId = "219009", + text = "shobus04.m2", + value = "shobus04.m2", + }, + { + fileId = "219011", + text = "shobus06.m2", + value = "shobus06.m2", + }, + { + fileId = "219013", + text = "shobus07.m2", + value = "shobus07.m2", + }, + { + fileId = "219018", + text = "sivbus01.m2", + value = "sivbus01.m2", + }, + { + fileId = "219019", + text = "sivbus02.m2", + value = "sivbus02.m2", + }, + { + fileId = "219020", + text = "sivcon01.m2", + value = "sivcon01.m2", + }, + { + fileId = "219021", + text = "sivcon02.m2", + value = "sivcon02.m2", + }, + { + fileId = "219022", + text = "sivflo01.m2", + value = "sivflo01.m2", + }, + { + fileId = "219023", + text = "sivflo02.m2", + value = "sivflo02.m2", + }, + { + fileId = "219024", + text = "sivflo03.m2", + value = "sivflo03.m2", + }, + { + fileId = "219025", + text = "sivgra01.m2", + value = "sivgra01.m2", + }, + { + fileId = "219026", + text = "sivroc01.m2", + value = "sivroc01.m2", + }, + { + fileId = "219027", + text = "sivroc02.m2", + value = "sivroc02.m2", + }, + { + fileId = "219028", + text = "sivsap01.m2", + value = "sivsap01.m2", + }, + { + fileId = "219029", + text = "sivtho01.m2", + value = "sivtho01.m2", + }, + { + fileId = "219030", + text = "sivtho02.m2", + value = "sivtho02.m2", + }, + { + fileId = "219031", + text = "sivtho03.m2", + value = "sivtho03.m2", + }, + { + fileId = "219032", + text = "sivtho04.m2", + value = "sivtho04.m2", + }, + { + fileId = "219033", + text = "sivtho05.m2", + value = "sivtho05.m2", + }, + { + fileId = "219034", + text = "sivvin01.m2", + value = "sivvin01.m2", + }, + { + fileId = "219035", + text = "smnflo01.m2", + value = "smnflo01.m2", + }, + { + fileId = "219036", + text = "smnflo02.m2", + value = "smnflo02.m2", + }, + { + fileId = "219037", + text = "smnflo03.m2", + value = "smnflo03.m2", + }, + { + fileId = "219038", + text = "smngra01.m2", + value = "smngra01.m2", + }, + { + fileId = "219039", + text = "smngra02.m2", + value = "smngra02.m2", + }, + { + fileId = "219040", + text = "smybus01.m2", + value = "smybus01.m2", + }, + { + fileId = "219041", + text = "smybus02.m2", + value = "smybus02.m2", + }, + { + fileId = "219042", + text = "smybus03.m2", + value = "smybus03.m2", + }, + { + fileId = "219043", + text = "smybus04.m2", + value = "smybus04.m2", + }, + { + fileId = "219044", + text = "smybus05.m2", + value = "smybus05.m2", + }, + { + fileId = "219045", + text = "smyflo01.m2", + value = "smyflo01.m2", + }, + { + fileId = "219046", + text = "smyflo02.m2", + value = "smyflo02.m2", + }, + { + fileId = "219047", + text = "smygra01.m2", + value = "smygra01.m2", + }, + { + fileId = "219048", + text = "smygra02.m2", + value = "smygra02.m2", + }, + { + fileId = "219049", + text = "smygra03.m2", + value = "smygra03.m2", + }, + { + fileId = "219050", + text = "smygra04.m2", + value = "smygra04.m2", + }, + { + fileId = "219051", + text = "sosbus01.m2", + value = "sosbus01.m2", + }, + { + fileId = "219052", + text = "sosbus02.m2", + value = "sosbus02.m2", + }, + { + fileId = "219053", + text = "sosbus03.m2", + value = "sosbus03.m2", + }, + { + fileId = "219054", + text = "sosbus04.m2", + value = "sosbus04.m2", + }, + { + fileId = "219055", + text = "sosbus05.m2", + value = "sosbus05.m2", + }, + { + fileId = "219056", + text = "sosflo01.m2", + value = "sosflo01.m2", + }, + { + fileId = "219057", + text = "sosflo02.m2", + value = "sosflo02.m2", + }, + { + fileId = "219058", + text = "sosflo03.m2", + value = "sosflo03.m2", + }, + { + fileId = "219059", + text = "sosgra01.m2", + value = "sosgra01.m2", + }, + { + fileId = "219060", + text = "sosgra02.m2", + value = "sosgra02.m2", + }, + { + fileId = "219061", + text = "sosgra03.m2", + value = "sosgra03.m2", + }, + { + fileId = "219062", + text = "sosgra04.m2", + value = "sosgra04.m2", + }, + { + fileId = "219063", + text = "sosgra05.m2", + value = "sosgra05.m2", + }, + { + fileId = "219064", + text = "sosgra06.m2", + value = "sosgra06.m2", + }, + { + fileId = "219065", + text = "sosgra07.m2", + value = "sosgra07.m2", + }, + { + fileId = "219066", + text = "stlbus01.m2", + value = "stlbus01.m2", + }, + { + fileId = "219067", + text = "stlbus02.m2", + value = "stlbus02.m2", + }, + { + fileId = "219068", + text = "stlbus03.m2", + value = "stlbus03.m2", + }, + { + fileId = "219069", + text = "stlflo01.m2", + value = "stlflo01.m2", + }, + { + fileId = "219070", + text = "stlflo02.m2", + value = "stlflo02.m2", + }, + { + fileId = "219071", + text = "stlflo03.m2", + value = "stlflo03.m2", + }, + { + fileId = "219072", + text = "stlflo04.m2", + value = "stlflo04.m2", + }, + { + fileId = "219073", + text = "stlflo05.m2", + value = "stlflo05.m2", + }, + { + fileId = "219074", + text = "stlgra01.m2", + value = "stlgra01.m2", + }, + { + fileId = "219075", + text = "stlgra02.m2", + value = "stlgra02.m2", + }, + { + fileId = "219076", + text = "stlgra03.m2", + value = "stlgra03.m2", + }, + { + fileId = "219077", + text = "stlroc01.m2", + value = "stlroc01.m2", + }, + { + fileId = "219078", + text = "stlroc02.m2", + value = "stlroc02.m2", + }, + { + fileId = "219079", + text = "stmbra01.m2", + value = "stmbra01.m2", + }, + { + fileId = "219080", + text = "stmbra02.m2", + value = "stmbra02.m2", + }, + { + fileId = "219081", + text = "stmbra03.m2", + value = "stmbra03.m2", + }, + { + fileId = "219082", + text = "stmbra04.m2", + value = "stmbra04.m2", + }, + { + fileId = "219083", + text = "stmgra01.m2", + value = "stmgra01.m2", + }, + { + fileId = "219084", + text = "stmgra02.m2", + value = "stmgra02.m2", + }, + { + fileId = "219085", + text = "stmgra03.m2", + value = "stmgra03.m2", + }, + { + fileId = "219086", + text = "stmgra04.m2", + value = "stmgra04.m2", + }, + { + fileId = "219087", + text = "stmgra05.m2", + value = "stmgra05.m2", + }, + { + fileId = "219093", + text = "tifbus01.m2", + value = "tifbus01.m2", + }, + { + fileId = "219094", + text = "tifbus02.m2", + value = "tifbus02.m2", + }, + { + fileId = "219095", + text = "tifcon01.m2", + value = "tifcon01.m2", + }, + { + fileId = "219096", + text = "tifcon02.m2", + value = "tifcon02.m2", + }, + { + fileId = "219097", + text = "tifgra01.m2", + value = "tifgra01.m2", + }, + { + fileId = "219098", + text = "tifpla01.m2", + value = "tifpla01.m2", + }, + { + fileId = "219099", + text = "tifroc01.m2", + value = "tifroc01.m2", + }, + { + fileId = "219100", + text = "tifroc02.m2", + value = "tifroc02.m2", + }, + { + fileId = "219101", + text = "tifsap01.m2", + value = "tifsap01.m2", + }, + { + fileId = "219102", + text = "tifshl01.m2", + value = "tifshl01.m2", + }, + { + fileId = "219103", + text = "tifshl02.m2", + value = "tifshl02.m2", + }, + { + fileId = "219104", + text = "tifshl03.m2", + value = "tifshl03.m2", + }, + { + fileId = "219105", + text = "tiftho01.m2", + value = "tiftho01.m2", + }, + { + fileId = "219106", + text = "tiftho02.m2", + value = "tiftho02.m2", + }, + { + fileId = "219107", + text = "tiftho03.m2", + value = "tiftho03.m2", + }, + { + fileId = "219108", + text = "tiftho04.m2", + value = "tiftho04.m2", + }, + { + fileId = "219110", + text = "tkrbra01.m2", + value = "tkrbra01.m2", + }, + { + fileId = "219111", + text = "tkrbra02.m2", + value = "tkrbra02.m2", + }, + { + fileId = "219112", + text = "tkrbra03.m2", + value = "tkrbra03.m2", + }, + { + fileId = "219113", + text = "tkrgra01.m2", + value = "tkrgra01.m2", + }, + { + fileId = "219114", + text = "tkrgra02.m2", + value = "tkrgra02.m2", + }, + { + fileId = "219115", + text = "tkrgra03.m2", + value = "tkrgra03.m2", + }, + { + fileId = "219116", + text = "tkrroc01.m2", + value = "tkrroc01.m2", + }, + { + fileId = "219117", + text = "tkrroc02.m2", + value = "tkrroc02.m2", + }, + { + fileId = "219118", + text = "tkrroc03.m2", + value = "tkrroc03.m2", + }, + { + fileId = "219119", + text = "tkrwea01.m2", + value = "tkrwea01.m2", + }, + { + fileId = "219120", + text = "tkrwea02.m2", + value = "tkrwea02.m2", + }, + { + fileId = "219121", + text = "tkrwea03.m2", + value = "tkrwea03.m2", + }, + { + fileId = "219122", + text = "tkrwea04.m2", + value = "tkrwea04.m2", + }, + { + fileId = "219124", + text = "ungbun01.m2", + value = "ungbun01.m2", + }, + { + fileId = "219125", + text = "ungbun02.m2", + value = "ungbun02.m2", + }, + { + fileId = "219126", + text = "ungbun03.m2", + value = "ungbun03.m2", + }, + { + fileId = "219127", + text = "ungflo01.m2", + value = "ungflo01.m2", + }, + { + fileId = "219128", + text = "ungflo02.m2", + value = "ungflo02.m2", + }, + { + fileId = "219129", + text = "unggra01.m2", + value = "unggra01.m2", + }, + { + fileId = "219130", + text = "unggra02.m2", + value = "unggra02.m2", + }, + { + fileId = "219131", + text = "unggra03.m2", + value = "unggra03.m2", + }, + { + fileId = "219132", + text = "unggra04.m2", + value = "unggra04.m2", + }, + { + fileId = "219133", + text = "unggra05.m2", + value = "unggra05.m2", + }, + { + fileId = "219134", + text = "unggra06.m2", + value = "unggra06.m2", + }, + { + fileId = "219135", + text = "unggra07.m2", + value = "unggra07.m2", + }, + { + fileId = "219136", + text = "unggra08.m2", + value = "unggra08.m2", + }, + { + fileId = "219138", + text = "unwcor01.m2", + value = "unwcor01.m2", + }, + { + fileId = "219139", + text = "unwcor02.m2", + value = "unwcor02.m2", + }, + { + fileId = "219140", + text = "unwcor03.m2", + value = "unwcor03.m2", + }, + { + fileId = "219141", + text = "unwcor04.m2", + value = "unwcor04.m2", + }, + { + fileId = "219142", + text = "unwcor05.m2", + value = "unwcor05.m2", + }, + { + fileId = "219143", + text = "unwcor06.m2", + value = "unwcor06.m2", + }, + { + fileId = "219144", + text = "unwcor07.m2", + value = "unwcor07.m2", + }, + { + fileId = "219145", + text = "unwcor08.m2", + value = "unwcor08.m2", + }, + { + fileId = "219146", + text = "unwcor09.m2", + value = "unwcor09.m2", + }, + { + fileId = "219147", + text = "unwgra01.m2", + value = "unwgra01.m2", + }, + { + fileId = "219148", + text = "unwgra02.m2", + value = "unwgra02.m2", + }, + { + fileId = "219149", + text = "unwgra03.m2", + value = "unwgra03.m2", + }, + { + fileId = "219150", + text = "unwshl01.m2", + value = "unwshl01.m2", + }, + { + fileId = "219151", + text = "unwshl02.m2", + value = "unwshl02.m2", + }, + { + fileId = "219152", + text = "wesbus01.m2", + value = "wesbus01.m2", + }, + { + fileId = "219153", + text = "wesbus02.m2", + value = "wesbus02.m2", + }, + { + fileId = "219154", + text = "wesbus03.m2", + value = "wesbus03.m2", + }, + { + fileId = "219155", + text = "wesflo01.m2", + value = "wesflo01.m2", + }, + { + fileId = "219156", + text = "wesgra01.m2", + value = "wesgra01.m2", + }, + { + fileId = "219157", + text = "wesgra02.m2", + value = "wesgra02.m2", + }, + { + fileId = "219158", + text = "wesgra03.m2", + value = "wesgra03.m2", + }, + { + fileId = "219159", + text = "wesgra04.m2", + value = "wesgra04.m2", + }, + { + fileId = "219160", + text = "wesroc01.m2", + value = "wesroc01.m2", + }, + { + fileId = "219161", + text = "wesroc02.m2", + value = "wesroc02.m2", + }, + { + fileId = "219162", + text = "wesshe01.m2", + value = "wesshe01.m2", + }, + { + fileId = "219163", + text = "wesshe02.m2", + value = "wesshe02.m2", + }, + { + fileId = "219164", + text = "wesshe03.m2", + value = "wesshe03.m2", + }, + { + fileId = "219166", + text = "weswea01.m2", + value = "weswea01.m2", + }, + { + fileId = "219167", + text = "weswea02.m2", + value = "weswea02.m2", + }, + { + fileId = "219168", + text = "weswea03.m2", + value = "weswea03.m2", + }, + { + fileId = "219169", + text = "weswea04.m2", + value = "weswea04.m2", + }, + { + fileId = "219170", + text = "wetbus01.m2", + value = "wetbus01.m2", + }, + { + fileId = "219171", + text = "wetbus02.m2", + value = "wetbus02.m2", + }, + { + fileId = "219172", + text = "wetbus03.m2", + value = "wetbus03.m2", + }, + { + fileId = "219173", + text = "wetflo01.m2", + value = "wetflo01.m2", + }, + { + fileId = "219174", + text = "wetflo02.m2", + value = "wetflo02.m2", + }, + { + fileId = "219175", + text = "wetflo03.m2", + value = "wetflo03.m2", + }, + { + fileId = "219176", + text = "wetflo04.m2", + value = "wetflo04.m2", + }, + { + fileId = "219177", + text = "wetflo05.m2", + value = "wetflo05.m2", + }, + { + fileId = "219178", + text = "wetgra01.m2", + value = "wetgra01.m2", + }, + { + fileId = "219179", + text = "wetgra02.m2", + value = "wetgra02.m2", + }, + { + fileId = "219180", + text = "wetgra03.m2", + value = "wetgra03.m2", + }, + { + fileId = "219185", + text = "zdflw01.m2", + value = "zdflw01.m2", + }, + { + fileId = "219186", + text = "zdgra01.m2", + value = "zdgra01.m2", + }, + { + fileId = "219187", + text = "zdgra02.m2", + value = "zdgra02.m2", + }, + { + fileId = "219188", + text = "zdgra03.m2", + value = "zdgra03.m2", + }, + { + fileId = "219189", + text = "zdleaf01.m2", + value = "zdleaf01.m2", + }, + { + fileId = "219190", + text = "zdleaf02.m2", + value = "zdleaf02.m2", + }, + { + fileId = "219191", + text = "zdleaf04.m2", + value = "zdleaf04.m2", + }, + { + fileId = "219192", + text = "zdrot01.m2", + value = "zdrot01.m2", + }, + { + fileId = "219193", + text = "zdrot02.m2", + value = "zdrot02.m2", + }, + { + fileId = "219194", + text = "zdstn01.m2", + value = "zdstn01.m2", + }, + { + fileId = "219195", + text = "zdstn02.m2", + value = "zdstn02.m2", + }, + { + fileId = "219196", + text = "zmgra01.m2", + value = "zmgra01.m2", + }, + { + fileId = "219197", + text = "zmgra02.m2", + value = "zmgra02.m2", + }, + { + fileId = "219198", + text = "zmgra03.m2", + value = "zmgra03.m2", + }, + { + fileId = "219199", + text = "zmgra04.m2", + value = "zmgra04.m2", + }, + { + fileId = "219200", + text = "zmgra06.m2", + value = "zmgra06.m2", + }, + { + fileId = "219201", + text = "zmgra07.m2", + value = "zmgra07.m2", + }, + { + fileId = "219202", + text = "zmmush01.m2", + value = "zmmush01.m2", + }, + { + fileId = "219203", + text = "zmspo05.m2", + value = "zmspo05.m2", + }, + }, + text = "detail", + value = "detail", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "219204", + text = "ahnqiraj_lightshaft.m2", + value = "ahnqiraj_lightshaft.m2", + }, + { + fileId = "219205", + text = "cot_lightshafta.m2", + value = "cot_lightshafta.m2", + }, + { + fileId = "219207", + text = "darnassislightshaft.m2", + value = "darnassislightshaft.m2", + }, + { + fileId = "219209", + text = "karazahndiningrays.m2", + value = "karazahndiningrays.m2", + }, + { + fileId = "219210", + text = "ld_lightshaft01.m2", + value = "ld_lightshaft01.m2", + }, + { + fileId = "219211", + text = "ld_lightshaft02.m2", + value = "ld_lightshaft02.m2", + }, + { + fileId = "249870", + text = "lightray_dusty_01.m2", + value = "lightray_dusty_01.m2", + }, + { + fileId = "219220", + text = "lightshafta.m2", + value = "lightshafta.m2", + }, + { + fileId = "219221", + text = "lightshaftb.m2", + value = "lightshaftb.m2", + }, + { + fileId = "219222", + text = "lightshaftc.m2", + value = "lightshaftc.m2", + }, + { + fileId = "219224", + text = "lightshaftthorns.m2", + value = "lightshaftthorns.m2", + }, + { + fileId = "219225", + text = "st_lightshaft.m2", + value = "st_lightshaft.m2", + }, + { + fileId = "219226", + text = "uthershrinelightbeam.m2", + value = "uthershrinelightbeam.m2", + }, + }, + text = "volumetriclights", + value = "volumetriclights", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "generic", + value = "generic", + }, + }, + text = "nodxt", + value = "nodxt", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "219227", + text = "bladethrowerruined01.m2", + value = "bladethrowerruined01.m2", + }, + { + fileId = "219229", + text = "orcblade.m2", + value = "orcblade.m2", + }, + { + fileId = "219230", + text = "orcbladethrower.m2", + value = "orcbladethrower.m2", + }, + }, + text = "bladethrower", + value = "bladethrower", + }, + { + fileId = "219236", + text = "caltrop01.m2", + value = "caltrop01.m2", + }, + { + children = { + { + fileId = "219237", + text = "outlanddeadcampfire.m2", + value = "outlanddeadcampfire.m2", + }, + }, + text = "campfire", + value = "campfire", + }, + { + children = { + { + fileId = "219239", + text = "outland_bone_dam.m2", + value = "outland_bone_dam.m2", + }, + }, + text = "dam", + value = "dam", + }, + { + children = { + { + fileId = "219241", + text = "outland_dead_demon.m2", + value = "outland_dead_demon.m2", + }, + }, + text = "deaddemon", + value = "deaddemon", + }, + { + children = { + { + fileId = "219245", + text = "outlandtowerfloatingrubble.m2", + value = "outlandtowerfloatingrubble.m2", + }, + }, + text = "floatingrubble", + value = "floatingrubble", + }, + { + children = { + { + fileId = "219248", + text = "outlandhangingcrystal01.m2", + value = "outlandhangingcrystal01.m2", + }, + }, + text = "hangingcrystals", + value = "hangingcrystals", + }, + { + children = { + { + fileId = "219250", + text = "outlandmonolith.m2", + value = "outlandmonolith.m2", + }, + }, + text = "monument", + value = "monument", + }, + { + children = { + { + fileId = "219254", + text = "outland_big_shroom01.m2", + value = "outland_big_shroom01.m2", + }, + { + fileId = "219255", + text = "outland_big_shroom02.m2", + value = "outland_big_shroom02.m2", + }, + { + fileId = "219256", + text = "outland_floating_shroom01.m2", + value = "outland_floating_shroom01.m2", + }, + { + fileId = "219257", + text = "outland_floating_shroom02.m2", + value = "outland_floating_shroom02.m2", + }, + }, + text = "mushrooms", + value = "mushrooms", + }, + { + children = { + { + fileId = "219264", + text = "outlandplant01.m2", + value = "outlandplant01.m2", + }, + { + fileId = "219265", + text = "outlandplant02.m2", + value = "outlandplant02.m2", + }, + { + fileId = "219266", + text = "outlandplant03.m2", + value = "outlandplant03.m2", + }, + { + fileId = "219267", + text = "outlandplant04.m2", + value = "outlandplant04.m2", + }, + { + fileId = "219268", + text = "outlandplant05.m2", + value = "outlandplant05.m2", + }, + { + fileId = "219269", + text = "outlandplant06.m2", + value = "outlandplant06.m2", + }, + }, + text = "plants", + value = "plants", + }, + { + children = { + { + fileId = "219276", + text = "floatingrocklarge01.m2", + value = "floatingrocklarge01.m2", + }, + { + fileId = "219277", + text = "floatingrocklarge02.m2", + value = "floatingrocklarge02.m2", + }, + { + fileId = "219278", + text = "floatingrocklarge03.m2", + value = "floatingrocklarge03.m2", + }, + { + fileId = "219279", + text = "floatingrockmedium01.m2", + value = "floatingrockmedium01.m2", + }, + { + fileId = "219280", + text = "floatingrockmedium02.m2", + value = "floatingrockmedium02.m2", + }, + { + fileId = "219281", + text = "floatingrockmedium03.m2", + value = "floatingrockmedium03.m2", + }, + { + fileId = "219282", + text = "floatingrocksmall01.m2", + value = "floatingrocksmall01.m2", + }, + { + fileId = "219283", + text = "floatingrocksmall02.m2", + value = "floatingrocksmall02.m2", + }, + { + fileId = "219284", + text = "floatingrocksmall03.m2", + value = "floatingrocksmall03.m2", + }, + { + fileId = "219286", + text = "outlandalienrock01.m2", + value = "outlandalienrock01.m2", + }, + { + fileId = "219287", + text = "outlandalienrock02.m2", + value = "outlandalienrock02.m2", + }, + { + fileId = "219288", + text = "outlandalienrock03.m2", + value = "outlandalienrock03.m2", + }, + { + fileId = "219289", + text = "outlandalienrock04.m2", + value = "outlandalienrock04.m2", + }, + { + fileId = "219290", + text = "outlandalienrock05.m2", + value = "outlandalienrock05.m2", + }, + { + fileId = "219291", + text = "outlandspookyrock01.m2", + value = "outlandspookyrock01.m2", + }, + { + fileId = "219292", + text = "outlandspookyrock02.m2", + value = "outlandspookyrock02.m2", + }, + { + fileId = "219293", + text = "outlandspookyrock03.m2", + value = "outlandspookyrock03.m2", + }, + { + fileId = "219294", + text = "outlandspookyrock04.m2", + value = "outlandspookyrock04.m2", + }, + }, + text = "rocks", + value = "rocks", + }, + { + children = { + { + fileId = "219299", + text = "outlandroot01.m2", + value = "outlandroot01.m2", + }, + { + fileId = "219300", + text = "outlandroot02.m2", + value = "outlandroot02.m2", + }, + { + fileId = "219301", + text = "outlandroot03.m2", + value = "outlandroot03.m2", + }, + }, + text = "roots", + value = "roots", + }, + { + children = { + { + fileId = "219303", + text = "outlandrubble01.m2", + value = "outlandrubble01.m2", + }, + { + fileId = "219304", + text = "outlandrubble02.m2", + value = "outlandrubble02.m2", + }, + { + fileId = "219305", + text = "outlandrubble03.m2", + value = "outlandrubble03.m2", + }, + { + fileId = "219306", + text = "outlandrubble04.m2", + value = "outlandrubble04.m2", + }, + { + fileId = "219307", + text = "outlandrubble05.m2", + value = "outlandrubble05.m2", + }, + }, + text = "rubble", + value = "rubble", + }, + { + children = { + { + fileId = "219309", + text = "outlandskybox.m2", + value = "outlandskybox.m2", + }, + }, + text = "skybox", + value = "skybox", + }, + { + children = { + { + fileId = "219313", + text = "humantankcannon.m2", + value = "humantankcannon.m2", + }, + { + fileId = "219314", + text = "humantanktower.m2", + value = "humantanktower.m2", + }, + { + fileId = "219315", + text = "humantankwheel.m2", + value = "humantankwheel.m2", + }, + }, + text = "tankparts", + value = "tankparts", + }, + { + children = { + { + fileId = "219318", + text = "outlandthorn01.m2", + value = "outlandthorn01.m2", + }, + { + fileId = "219319", + text = "outlandthorn02.m2", + value = "outlandthorn02.m2", + }, + { + fileId = "219320", + text = "outlandthorn03.m2", + value = "outlandthorn03.m2", + }, + { + fileId = "219321", + text = "outlandthorn04.m2", + value = "outlandthorn04.m2", + }, + { + fileId = "219322", + text = "outlandthorn05.m2", + value = "outlandthorn05.m2", + }, + { + fileId = "219323", + text = "outlandthorn06.m2", + value = "outlandthorn06.m2", + }, + { + fileId = "219324", + text = "outlandthorn07.m2", + value = "outlandthorn07.m2", + }, + }, + text = "thorns", + value = "thorns", + }, + { + children = { + { + fileId = "219330", + text = "outlandaloetree01.m2", + value = "outlandaloetree01.m2", + }, + { + fileId = "219331", + text = "outlandaloetree02.m2", + value = "outlandaloetree02.m2", + }, + { + fileId = "219332", + text = "outlandaloetree03.m2", + value = "outlandaloetree03.m2", + }, + { + fileId = "219333", + text = "outlandburnttree01.m2", + value = "outlandburnttree01.m2", + }, + { + fileId = "219334", + text = "outlandburnttree02.m2", + value = "outlandburnttree02.m2", + }, + { + fileId = "219335", + text = "outlandburnttree03.m2", + value = "outlandburnttree03.m2", + }, + { + fileId = "219336", + text = "outlandburnttree04.m2", + value = "outlandburnttree04.m2", + }, + { + fileId = "219337", + text = "outlandfloatingtree01.m2", + value = "outlandfloatingtree01.m2", + }, + { + fileId = "219338", + text = "outlandfloatingtree02.m2", + value = "outlandfloatingtree02.m2", + }, + { + fileId = "219339", + text = "outlandfloatingtree03.m2", + value = "outlandfloatingtree03.m2", + }, + { + fileId = "219341", + text = "outlandtreestump01.m2", + value = "outlandtreestump01.m2", + }, + { + fileId = "219342", + text = "outlandtreestump02.m2", + value = "outlandtreestump02.m2", + }, + { + fileId = "219343", + text = "outlandtreestump03.m2", + value = "outlandtreestump03.m2", + }, + { + fileId = "219344", + text = "outlandumbrellatree01.m2", + value = "outlandumbrellatree01.m2", + }, + { + fileId = "219345", + text = "outlandumbrellatree02.m2", + value = "outlandumbrellatree02.m2", + }, + { + fileId = "219346", + text = "outlandumbrellatree03.m2", + value = "outlandumbrellatree03.m2", + }, + { + fileId = "219347", + text = "outlandumbrellatree04.m2", + value = "outlandumbrellatree04.m2", + }, + { + fileId = "219348", + text = "outlandumbrellatree05.m2", + value = "outlandumbrellatree05.m2", + }, + { + fileId = "219349", + text = "outlandumbrellatree06.m2", + value = "outlandumbrellatree06.m2", + }, + { + fileId = "219350", + text = "outlandumbrellatree07.m2", + value = "outlandumbrellatree07.m2", + }, + { + fileId = "219351", + text = "outlandumbrellatree08.m2", + value = "outlandumbrellatree08.m2", + }, + { + fileId = "219352", + text = "outlandumbrellatree09.m2", + value = "outlandumbrellatree09.m2", + }, + { + fileId = "219353", + text = "outlandumbrellatree10.m2", + value = "outlandumbrellatree10.m2", + }, + }, + text = "trees", + value = "trees", + }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "outland", + value = "outland", + }, + { + children = { + { + fileId = "219356", + text = "1000x1000.m2", + value = "1000x1000.m2", + }, + { + fileId = "219357", + text = "100x100.m2", + value = "100x100.m2", + }, + { + fileId = "219359", + text = "200yardradiusdisc.m2", + value = "200yardradiusdisc.m2", + }, + { + fileId = "219360", + text = "200yardradiussphere.m2", + value = "200yardradiussphere.m2", + }, + { + fileId = "219361", + text = "250x250.m2", + value = "250x250.m2", + }, + { + fileId = "219362", + text = "500x500.m2", + value = "500x500.m2", + }, + { + fileId = "219363", + text = "50x50.m2", + value = "50x50.m2", + }, + { + fileId = "219364", + text = "50yardradiusdisc.m2", + value = "50yardradiusdisc.m2", + }, + { + fileId = "219365", + text = "50yardradiussphere.m2", + value = "50yardradiussphere.m2", + }, + { + fileId = "219366", + text = "777yardradiusdisc.m2", + value = "777yardradiusdisc.m2", + }, + { + fileId = "219367", + text = "777yardradiussphere.m2", + value = "777yardradiussphere.m2", + }, + { + fileId = "219368", + text = "humanmalescale.m2", + value = "humanmalescale.m2", + }, + }, + text = "scale", + value = "scale", + }, + { + children = { + { + children = { + { + fileId = "219372", + text = "treasurechest01.m2", + value = "treasurechest01.m2", + }, + }, + text = "containers", + value = "containers", + }, + { + children = { + { + fileId = "219378", + text = "blacksmithforge.m2", + value = "blacksmithforge.m2", + }, + { + fileId = "219382", + text = "engineering_autolathe_01.m2", + value = "engineering_autolathe_01.m2", + }, + { + fileId = "219394", + text = "tradeskill_alchemycauldron_blue.m2", + value = "tradeskill_alchemycauldron_blue.m2", + }, + { + fileId = "219395", + text = "tradeskill_alchemycauldron_green.m2", + value = "tradeskill_alchemycauldron_green.m2", + }, + { + fileId = "219396", + text = "tradeskill_alchemycauldron_purple.m2", + value = "tradeskill_alchemycauldron_purple.m2", + }, + { + fileId = "219397", + text = "tradeskill_alchemycauldron_red.m2", + value = "tradeskill_alchemycauldron_red.m2", + }, + { + fileId = "219398", + text = "tradeskill_alchemycauldron_white.m2", + value = "tradeskill_alchemycauldron_white.m2", + }, + { + fileId = "219399", + text = "tradeskill_alchemyset_01.m2", + value = "tradeskill_alchemyset_01.m2", + }, + { + fileId = "219400", + text = "tradeskill_alchemyset_02.m2", + value = "tradeskill_alchemyset_02.m2", + }, + { + fileId = "219401", + text = "tradeskill_alchemyset_03.m2", + value = "tradeskill_alchemyset_03.m2", + }, + { + fileId = "219402", + text = "tradeskill_anvil_01.m2", + value = "tradeskill_anvil_01.m2", + }, + { + fileId = "219403", + text = "tradeskill_anvil_02.m2", + value = "tradeskill_anvil_02.m2", + }, + { + fileId = "219404", + text = "tradeskill_fishschool_01.m2", + value = "tradeskill_fishschool_01.m2", + }, + { + fileId = "219405", + text = "tradeskill_fishschool_02.m2", + value = "tradeskill_fishschool_02.m2", + }, + { + fileId = "219406", + text = "tradeskill_fishschool_03.m2", + value = "tradeskill_fishschool_03.m2", + }, + { + fileId = "248066", + text = "tradeskill_fishschool_blue.m2", + value = "tradeskill_fishschool_blue.m2", + }, + { + fileId = "219407", + text = "tradeskill_fishschool_eelsyellow.m2", + value = "tradeskill_fishschool_eelsyellow.m2", + }, + { + fileId = "219408", + text = "tradeskill_fishschool_elementalfire.m2", + value = "tradeskill_fishschool_elementalfire.m2", + }, + { + fileId = "219409", + text = "tradeskill_fishschool_elementalwater.m2", + value = "tradeskill_fishschool_elementalwater.m2", + }, + { + fileId = "248067", + text = "tradeskill_fishschool_green.m2", + value = "tradeskill_fishschool_green.m2", + }, + { + fileId = "219410", + text = "tradeskill_fishschool_oil.m2", + value = "tradeskill_fishschool_oil.m2", + }, + { + fileId = "248068", + text = "tradeskill_fishschool_red.m2", + value = "tradeskill_fishschool_red.m2", + }, + { + fileId = "219411", + text = "tradeskill_fishschool_shipwreck.m2", + value = "tradeskill_fishschool_shipwreck.m2", + }, + { + fileId = "219412", + text = "tradeskill_forge_01.m2", + value = "tradeskill_forge_01.m2", + }, + { + fileId = "219413", + text = "tradeskill_forge_02.m2", + value = "tradeskill_forge_02.m2", + }, + { + fileId = "219414", + text = "tradeskill_forge_03.m2", + value = "tradeskill_forge_03.m2", + }, + }, + text = "tradeskillenablers", + value = "tradeskillenablers", + }, + { + children = { + { + fileId = "219418", + text = "adamantium_miningnode_01.m2", + value = "adamantium_miningnode_01.m2", + }, + { + fileId = "219422", + text = "ancientgem_miningnode_01.m2", + value = "ancientgem_miningnode_01.m2", + }, + { + fileId = "219434", + text = "bush_ancientlichen.m2", + value = "bush_ancientlichen.m2", + }, + { + fileId = "219436", + text = "bush_arthastears.m2", + value = "bush_arthastears.m2", + }, + { + fileId = "219437", + text = "bush_blacklotus.m2", + value = "bush_blacklotus.m2", + }, + { + fileId = "219438", + text = "bush_blindweed.m2", + value = "bush_blindweed.m2", + }, + { + fileId = "219439", + text = "bush_bloodthistle.m2", + value = "bush_bloodthistle.m2", + }, + { + fileId = "219440", + text = "bush_bruiseweed01.m2", + value = "bush_bruiseweed01.m2", + }, + { + fileId = "219442", + text = "bush_constrictorgrass.m2", + value = "bush_constrictorgrass.m2", + }, + { + fileId = "219443", + text = "bush_crownroyal01.m2", + value = "bush_crownroyal01.m2", + }, + { + fileId = "219444", + text = "bush_dreamfoil.m2", + value = "bush_dreamfoil.m2", + }, + { + fileId = "219446", + text = "bush_dreamingglory.m2", + value = "bush_dreamingglory.m2", + }, + { + fileId = "219448", + text = "bush_evergreenmoss.m2", + value = "bush_evergreenmoss.m2", + }, + { + fileId = "219449", + text = "bush_fadeleaf01.m2", + value = "bush_fadeleaf01.m2", + }, + { + fileId = "219451", + text = "bush_felweed.m2", + value = "bush_felweed.m2", + }, + { + fileId = "219452", + text = "bush_firebloom.m2", + value = "bush_firebloom.m2", + }, + { + fileId = "219454", + text = "bush_flamecap.m2", + value = "bush_flamecap.m2", + }, + { + fileId = "219456", + text = "bush_frostlotus.m2", + value = "bush_frostlotus.m2", + }, + { + fileId = "219457", + text = "bush_frozenherb.m2", + value = "bush_frozenherb.m2", + }, + { + fileId = "219461", + text = "bush_goldclover.m2", + value = "bush_goldclover.m2", + }, + { + fileId = "219462", + text = "bush_goldthorn01.m2", + value = "bush_goldthorn01.m2", + }, + { + fileId = "219463", + text = "bush_gravemoss01.m2", + value = "bush_gravemoss01.m2", + }, + { + fileId = "219464", + text = "bush_gromsblood.m2", + value = "bush_gromsblood.m2", + }, + { + fileId = "219465", + text = "bush_icecap.m2", + value = "bush_icecap.m2", + }, + { + fileId = "219467", + text = "bush_icethorn.m2", + value = "bush_icethorn.m2", + }, + { + fileId = "219468", + text = "bush_khadgarswhisker01.m2", + value = "bush_khadgarswhisker01.m2", + }, + { + fileId = "219469", + text = "bush_liferoot01.m2", + value = "bush_liferoot01.m2", + }, + { + fileId = "219470", + text = "bush_magebloom01.m2", + value = "bush_magebloom01.m2", + }, + { + fileId = "219472", + text = "bush_manathistle.m2", + value = "bush_manathistle.m2", + }, + { + fileId = "219473", + text = "bush_mountainsilversage.m2", + value = "bush_mountainsilversage.m2", + }, + { + fileId = "219474", + text = "bush_mushroom01.m2", + value = "bush_mushroom01.m2", + }, + { + fileId = "219475", + text = "bush_mushroom02.m2", + value = "bush_mushroom02.m2", + }, + { + fileId = "219476", + text = "bush_mushroom03.m2", + value = "bush_mushroom03.m2", + }, + { + fileId = "219478", + text = "bush_netherbloom.m2", + value = "bush_netherbloom.m2", + }, + { + fileId = "219480", + text = "bush_nightmarevine.m2", + value = "bush_nightmarevine.m2", + }, + { + fileId = "219481", + text = "bush_peacebloom01.m2", + value = "bush_peacebloom01.m2", + }, + { + fileId = "219482", + text = "bush_plaguebloom.m2", + value = "bush_plaguebloom.m2", + }, + { + fileId = "219483", + text = "bush_purplelotus.m2", + value = "bush_purplelotus.m2", + }, + { + fileId = "219485", + text = "bush_ragveil.m2", + value = "bush_ragveil.m2", + }, + { + fileId = "219486", + text = "bush_sansam.m2", + value = "bush_sansam.m2", + }, + { + fileId = "219487", + text = "bush_silverleaf01.m2", + value = "bush_silverleaf01.m2", + }, + { + fileId = "219488", + text = "bush_snakebloom01.m2", + value = "bush_snakebloom01.m2", + }, + { + fileId = "219489", + text = "bush_snakeroot.m2", + value = "bush_snakeroot.m2", + }, + { + fileId = "219491", + text = "bush_spineleaf.m2", + value = "bush_spineleaf.m2", + }, + { + fileId = "219493", + text = "bush_stardust.m2", + value = "bush_stardust.m2", + }, + { + fileId = "219494", + text = "bush_steelbloom01.m2", + value = "bush_steelbloom01.m2", + }, + { + fileId = "219495", + text = "bush_stranglekelp01.m2", + value = "bush_stranglekelp01.m2", + }, + { + fileId = "219496", + text = "bush_sungrass.m2", + value = "bush_sungrass.m2", + }, + { + fileId = "219497", + text = "bush_swiftthistle01.m2", + value = "bush_swiftthistle01.m2", + }, + { + fileId = "219499", + text = "bush_talandrasrose.m2", + value = "bush_talandrasrose.m2", + }, + { + fileId = "219501", + text = "bush_terrocone.m2", + value = "bush_terrocone.m2", + }, + { + fileId = "219502", + text = "bush_thornroot01.m2", + value = "bush_thornroot01.m2", + }, + { + fileId = "219504", + text = "bush_tigerlily.m2", + value = "bush_tigerlily.m2", + }, + { + fileId = "219506", + text = "bush_whispervine.m2", + value = "bush_whispervine.m2", + }, + { + fileId = "219507", + text = "bush_wintersbite01.m2", + value = "bush_wintersbite01.m2", + }, + { + fileId = "219510", + text = "cobalt_miningnode_01.m2", + value = "cobalt_miningnode_01.m2", + }, + { + fileId = "219514", + text = "copper_miningnode_01.m2", + value = "copper_miningnode_01.m2", + }, + { + fileId = "219519", + text = "feliron_miningnode_01.m2", + value = "feliron_miningnode_01.m2", + }, + { + fileId = "219524", + text = "gold_miningnode_01.m2", + value = "gold_miningnode_01.m2", + }, + { + fileId = "219526", + text = "goldthorn_01.m2", + value = "goldthorn_01.m2", + }, + { + fileId = "219531", + text = "incendicite_miningnode_01.m2", + value = "incendicite_miningnode_01.m2", + }, + { + fileId = "219532", + text = "iron_miningnode_01.m2", + value = "iron_miningnode_01.m2", + }, + { + fileId = "219535", + text = "khorium_miningnode_01.m2", + value = "khorium_miningnode_01.m2", + }, + { + fileId = "219541", + text = "mithril_miningnode_01.m2", + value = "mithril_miningnode_01.m2", + }, + { + fileId = "219544", + text = "obsidian_miningnode_01.m2", + value = "obsidian_miningnode_01.m2", + }, + { + fileId = "219550", + text = "richthorium_miningnode_01.m2", + value = "richthorium_miningnode_01.m2", + }, + { + fileId = "219553", + text = "silithid_miningnode_01.m2", + value = "silithid_miningnode_01.m2", + }, + { + fileId = "219562", + text = "stranglekelp_01.m2", + value = "stranglekelp_01.m2", + }, + { + fileId = "219566", + text = "thorium_miningnode_01.m2", + value = "thorium_miningnode_01.m2", + }, + { + fileId = "219568", + text = "tin_miningnode_01.m2", + value = "tin_miningnode_01.m2", + }, + { + fileId = "248072", + text = "titanium_miningnode_01.m2", + value = "titanium_miningnode_01.m2", + }, + { + fileId = "219569", + text = "truesilver_miningnode_01.m2", + value = "truesilver_miningnode_01.m2", + }, + { + fileId = "219572", + text = "yoggthorite_miningnode_01.m2", + value = "yoggthorite_miningnode_01.m2", + }, + }, + text = "tradeskillnodes", + value = "tradeskillnodes", + }, + }, + text = "skillactivated", + value = "skillactivated", + }, + { + children = { + { + fileId = "4618885", + text = "4618885.m2", + value = "4618885.m2", + }, + }, + text = "unk_exp09_4618885", + value = "unk_exp09_4618885", + }, + { + children = { + { + fileId = "4618900", + text = "4618900.m2", + value = "4618900.m2", + }, + }, + text = "unk_exp09_4618900", + value = "unk_exp09_4618900", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "219757", + text = "darkportalanim01.m2", + value = "darkportalanim01.m2", + }, + }, + text = "darkportal", + value = "darkportal", + }, + }, + text = "outland", + value = "outland", + }, + }, + text = "wmo", + value = "wmo", + }, + }, + text = "world", + value = "world", + }, +} \ No newline at end of file diff --git a/WeakAurasModelPaths/WeakAurasModelPaths_Wrath.toc b/WeakAurasModelPaths/WeakAurasModelPaths_Wrath.toc new file mode 100644 index 0000000000..57706fbd74 --- /dev/null +++ b/WeakAurasModelPaths/WeakAurasModelPaths_Wrath.toc @@ -0,0 +1,18 @@ +## Interface: 30405, 38000 +## Title: WeakAuras Model Paths +## Author: The WeakAuras Team +## Version: @project-version@ +## Notes: Model paths for WeakAuras +## Notes-esES: Las rutas de modelos para WeakAuras +## Notes-esMX: Las rutas de modelos para WeakAuras +## Notes-deDE: 3D-Model Pfade für WeakAuras +## Notes-ruRU: Ссылки на файлы моделей WeakAuras +## Notes-zhTW: WeakAuras的模組路徑 +## X-Category: Interface Enhancements +## Globe-Main: WeakAuras +## DefaultState: Enabled +## LoadOnDemand: 1 +## Dependencies: WeakAuras, WeakAurasOptions +## AllowLoadGameType: wrath, titan + +ModelPathsWrath.lua diff --git a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasSpinBox.lua b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasSpinBox.lua index 1539ad23c9..ab75cca765 100644 --- a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasSpinBox.lua +++ b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasSpinBox.lua @@ -15,10 +15,10 @@ local tonumber, pairs = tonumber, pairs local PlaySound = PlaySound local CreateFrame, UIParent = CreateFrame, UIParent -local progressLeftOffset = WeakAuras.IsClassicOrCata() and -2 or -3 -local progressExtraWidth = WeakAuras.IsClassicOrCata() and -2 or 0 -local progressTopOffset = WeakAuras.IsClassicOrCata() and -3 or -2 -local progressBottomOffset = WeakAuras.IsClassicOrCata() and 3 or 2 +local progressLeftOffset = WeakAuras.IsClassicOrWrathOrCata() and -2 or -3 +local progressExtraWidth = WeakAuras.IsClassicOrWrathOrCata() and -2 or 0 +local progressTopOffset = WeakAuras.IsClassicOrWrathOrCata() and -3 or -2 +local progressBottomOffset = WeakAuras.IsClassicOrWrathOrCata() and 3 or 2 --[[----------------------------------------------------------------------------- Support functions diff --git a/WeakAurasOptions/BuffTrigger2.lua b/WeakAurasOptions/BuffTrigger2.lua index 7643baccc7..d3ae4021c7 100644 --- a/WeakAurasOptions/BuffTrigger2.lua +++ b/WeakAurasOptions/BuffTrigger2.lua @@ -814,7 +814,7 @@ local function GetBuffTriggerOptions(data, triggernum) width = WeakAuras.doubleWidth, hidden = function() return not (trigger.type == "aura2" and trigger.unit ~= "multi") - or WeakAuras.IsClassicEra() + or WeakAuras.IsClassicOrWrath() end }, fetchRaidMark = { diff --git a/WeakAurasOptions/OptionsFrames/OptionsFrame.lua b/WeakAurasOptions/OptionsFrames/OptionsFrame.lua index 0431c6e798..d7d8902619 100644 --- a/WeakAurasOptions/OptionsFrames/OptionsFrame.lua +++ b/WeakAurasOptions/OptionsFrames/OptionsFrame.lua @@ -334,7 +334,7 @@ function OptionsPrivate.CreateFrame() local minimizebutton = CreateFrame("Button", nil, frame, "MaximizeMinimizeButtonFrameTemplate") minimizebutton:SetFrameLevel(frame.TitleContainer:GetFrameLevel() + 1) - minimizebutton:SetPoint("RIGHT", frame.CloseButton, "LEFT", WeakAuras.IsClassicOrCataOrMists() and 10 or 0, 0) + minimizebutton:SetPoint("RIGHT", frame.CloseButton, "LEFT", WeakAuras.IsClassicOrWrathOrCataOrMists() and 10 or 0, 0) minimizebutton:SetOnMaximizedCallback(function() frame.minimized = false local right, top = frame:GetRight(), frame:GetTop() diff --git a/WeakAurasOptions/WeakAurasOptions_Wrath.toc b/WeakAurasOptions/WeakAurasOptions_Wrath.toc new file mode 100644 index 0000000000..4c0c0d1cf4 --- /dev/null +++ b/WeakAurasOptions/WeakAurasOptions_Wrath.toc @@ -0,0 +1,114 @@ +## Interface: 30405, 38000 +## Title: WeakAuras Options +## Author: The WeakAuras Team +## Version: @project-version@ +## Notes: Options for WeakAuras +## Notes-esES: Opciones para WeakAuras +## Notes-esMX: Opciones para WeakAuras +## Notes-deDE: Optionen für WeakAuras +## Notes-ruRU: Опции WeakAuras +## Notes-zhTW: WeakAuras的設定 +## X-Category: Interface Enhancements +## Globe-Main: WeakAuras +## DefaultState: Enabled +## LoadOnDemand: 1 +## Dependencies: WeakAuras +## SavedVariables: WeakAurasOptionsSaved +## AllowLoadGameType: wrath, titan + +embeds.xml +locales.xml + +ForAllIndentsAndPurposes.lua + +RegionOptions\Empty.lua +RegionOptions\AuraBar.lua +RegionOptions\Texture.lua +RegionOptions\Icon.lua +RegionOptions\Text.lua +RegionOptions\Group.lua +RegionOptions\DynamicGroup.lua +RegionOptions\StopMotion.lua +RegionOptions\Model.lua +RegionOptions\ProgressTexture.lua + +SubRegionOptions\SubRegionCommon.lua +SubRegionOptions\Background.lua +SubRegionOptions\SubText.lua +SubRegionOptions\Border.lua +SubRegionOptions\Glow.lua +SubRegionOptions\Tick.lua +SubRegionOptions\Model.lua +SubRegionOptions\StopMotion.lua +SubRegionOptions\Texture.lua +SubRegionOptions\CircularProgressTexture.lua +SubRegionOptions\LinearProgressTexture.lua + +Cache.lua + +CommonOptions.lua +GroupOptions.lua +DisplayOptions.lua +TriggerOptions.lua +LoadOptions.lua +ActionOptions.lua +AnimationOptions.lua +InformationOptions.lua + +BuffTrigger2.lua +GenericTrigger.lua + +WeakAurasOptions.lua +ConditionOptions.lua +AuthorOptions.lua + +Changelog.lua + +OptionsFrames\OptionsFrame.lua + +# Groups +OptionsFrames\CodeReview.lua +OptionsFrames\IconPicker.lua +OptionsFrames\ImportExport.lua +OptionsFrames\ModelPicker.lua +OptionsFrames\TextEditor.lua +OptionsFrames\TexturePicker.lua +OptionsFrames\Update.lua +OptionsFrames\DebugLogFrame.lua + +# Misc frames +OptionsFrames\MoverSizer.lua +OptionsFrames\FrameChooser.lua + +AceGUI-Widgets\AceGUIWidget-WeakAurasExpand.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasExpandSmall.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasIcon.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasNewHeaderButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasLoadedHeaderButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasDisplayButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasDropDownItemCurrency.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasPendingInstallButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasPendingUpdateButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasTextureButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasIconButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasMultiLineEditBox.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasMultiLineEditBoxWithEnter.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasNewButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasImportButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasToolbarButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasTwoColumnDropDown.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasSnippetButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasAnchorButtons.lua +AceGUI-Widgets\AceGUIContainer-WeakAurasTreeGroup.lua +AceGUI-Widgets\AceGUIContainer-WeakAurasInlineGroup.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasExpandAnchor.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasSpacer.lua +AceGUI-Widgets\AceGuiWidget-WeakAurasProgressBar.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasSpinBox.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasMiniTalent_Wrath.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasScrollArea.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasInput.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasInputFocus.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasInputWithIndentation.lua +AceGUI-Widgets\AceGuiWidget-WeakAurasMediaSound.lua +AceGUI-Widgets\WeakAurasStatusbarAtlasWidget.lua diff --git a/WeakAurasTemplates/TriggerTemplatesDataWrath.lua b/WeakAurasTemplates/TriggerTemplatesDataWrath.lua new file mode 100644 index 0000000000..a9c7e15446 --- /dev/null +++ b/WeakAurasTemplates/TriggerTemplatesDataWrath.lua @@ -0,0 +1,1278 @@ +local AddonName, TemplatePrivate = ... +---@class WeakAuras +local WeakAuras = WeakAuras +if not WeakAuras.IsWrathClassic() then return end +local L = WeakAuras.L +local GetSpellInfo, tinsert, GetItemInfo, GetSpellDescription, C_Timer, Spell + = GetSpellInfo, tinsert, GetItemInfo, GetSpellDescription, C_Timer, Spell + +-- The templates tables are created on demand +local templates = + { + class = { }, + race = { + Human = {}, + NightElf = {}, + Dwarf = {}, + Gnome = {}, + Draenei = {}, + Orc = {}, + Scourge = {}, + Tauren = {}, + Troll = {}, + BloodElf = {}, + }, + general = { + title = L["General"], + icon = 136116, + args = {} + }, + } + +local manaIcon = "Interface\\Icons\\spell_frost_manarecharge.blp" +local rageIcon = "Interface\\Icons\\ability_racial_bloodrage.blp" +local comboPointsIcon = "Interface\\Icons\\ability_backstab" + +local powerTypes = + { + [0] = { name = POWER_TYPE_MANA, icon = manaIcon }, + [1] = { name = POWER_TYPE_RED_POWER, icon = rageIcon}, + [2] = { name = POWER_TYPE_FOCUS, icon = "Interface\\Icons\\ability_hunter_focusfire"}, + [3] = { name = POWER_TYPE_ENERGY, icon = "Interface\\Icons\\spell_shadow_shadowworddominate"}, + [4] = { name = COMBO_POINTS, icon = comboPointsIcon}, + } + +-- Collected by WeakAurasTemplateCollector: +-------------------------------------------------------------------------------- + +templates.class.WARRIOR = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 469, type = "buff", unit = "player"}, -- Commanding Shout + { spell = 2565, type = "buff", unit = "player"}, -- Shield Block + { spell = 6673, type = "buff", unit = "player"}, -- Battle Shout + { spell = 18499, type = "buff", unit = "player"}, -- Berserker Rage + { spell = 12292, type = "buff", unit = "player"}, -- Sweeping Strikes + { spell = 12328, type = "buff", unit = "player"}, -- Death Wish + { spell = 12317, type = "buff", unit = "player"}, -- Enrage + { spell = 12319, type = "buff", unit = "player"}, -- Flurry + { spell = 12975, type = "buff", unit = "player"}, -- Last Stand + { spell = 23920, type = "buff", unit = "player"}, -- Spell Reflection + { spell = 46913, type = "buff", unit = "player"}, -- Bloodsurge + }, + icon = 132333 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 355, type = "debuff", unit = "target"}, -- Taunt + { spell = 676, type = "debuff", unit = "target"}, -- Disarm + { spell = 694, type = "debuff", unit = "target"}, -- Mocking Blow + { spell = 772, type = "debuff", unit = "target"}, -- Rend + { spell = 1160, type = "debuff", unit = "target"}, -- Demoralizing Shout + { spell = 1715, type = "debuff", unit = "target"}, -- Hamstring + { spell = 5246, type = "debuff", unit = "target"}, -- Intimidating Shout + { spell = 6343, type = "debuff", unit = "target"}, -- Thunder Clap + { spell = 7384, type = "debuff", unit = "target"}, -- Sunder Armor + { spell = 12289, type = "debuff", unit = "target"}, -- Improved Hamstring + { spell = 12294, type = "debuff", unit = "target"}, -- Mortal Strike + { spell = 12797, type = "debuff", unit = "target"}, -- Improved Revenge + { spell = 12809, type = "debuff", unit = "target"}, -- Concussion Blow + }, + icon = 132366 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 72, type = "ability", debuff = true, requiresTarget = true, form = {1, 2}}, -- Shield Bash + { spell = 78, type = "ability", queued = true}, -- Heroic Strike + { spell = 100, type = "ability", requiresTarget = true, form = 1}, -- Charge + { spell = 355, type = "ability", debuff = true, requiresTarget = true, form = 2}, -- Taunt + { spell = 469, type = "ability", buff = true}, -- Commanding Shout + { spell = 676, type = "ability", debuff = true, requiresTarget = true, form = 2}, -- Disarm + { spell = 694, type = "ability", debuff = true, requiresTarget = true, form = {1, 2}}, -- Mocking Blow + { spell = 772, type = "ability", debuff = true, requiresTarget = true}, -- Rend + { spell = 845, type = "ability", queued = true}, -- Cleave + { spell = 871, type = "ability", buff = true, form = 2}, -- Shield Wall + { spell = 1160, type = "ability", debuff = true}, -- Demoralizing Shout + { spell = 1161, type = "ability", debuff = true}, -- Challenging Shout + { spell = 1464, type = "ability", requiresTarget = true, buff = true, buffId = 46913}, -- Slam + { spell = 1680, type = "ability", buff = true, buffId = 46913, form = 3}, -- Whirlwind + { spell = 1715, type = "ability", requiresTarget = true, form = {1, 2}}, -- Hamstring + { spell = 1719, type = "ability", buff = true, form = 3}, -- Recklessness + { spell = 2565, type = "ability", buff = true, form = 2}, -- Shield Block + { spell = 2687, type = "ability", buff = true}, -- Bloodrage + { spell = 3411, type = "ability", requiresTarget = true, form = 2}, -- Intervene + { spell = 5246, type = "ability", debuff = true, requiresTarget = true}, -- Intimidating Shout + { spell = 5308, type = "ability", requiresTarget = true, form = {1, 3}}, -- Execute + { spell = 6343, type = "ability", debuff = true, form = {1, 2}}, -- Thunder Clap + { spell = 6552, type = "ability", requiresTarget = true, form = 3}, -- Pummel + { spell = 6572, type = "ability", requiresTarget = true, usable = true, form = 2}, -- Revenge + { spell = 6673, type = "ability", buff = true}, -- Battle Shout + { spell = 7384, type = "ability", requiresTarget = true, buff = true, buffId = 60503, form = 1}, -- Overpower + { spell = 7386, type = "ability", requiresTarget = true, debuff = true}, -- Sunder Armor + { spell = 12323, type = "ability", debuff = true, talent = 46}, -- Piercing Howl + { spell = 12328, type = "ability", buff = true, talent = 53}, -- Sweeping Strikes + { spell = 12294, type = "ability", requiresTarget = true, talent = 20}, -- Mortal Strike + { spell = 12809, type = "ability", requiresTarget = true, debuff = true, talent = 94}, -- Concussion Blow + { spell = 12975, type = "ability", buff = true, talent = 86}, -- Last Stand + { spell = 12292, type = "ability", buff = true, talent = 13}, -- Death Wish + { spell = 18499, type = "ability", buff = true}, -- Berserker Rage + { spell = 20230, type = "ability", buff = true, form = 1}, -- Retaliation + { spell = 20252, type = "ability", requiresTarget = true, form = 3}, -- Intercept + { spell = 20243, type = "ability", requiresTarget = true, talent = 102}, -- Devastate + { spell = 23881, type = "ability", requiresTarget = true, talent = 58}, -- Bloodthirst + { spell = 23920, type = "ability", buff = true, form = {1, 2}}, -- Spell Reflection + { spell = 23922, type = "ability", requiresTarget = true, talent = 99}, -- Shield Slam + { spell = 29801, type = "ability", requiresTarget = true, talent = 61}, -- Rampage + { spell = 34428, type = "ability", requiresTarget = true, usable = true}, -- Victory Rush + { spell = 46924, type = "ability", buff = true}, -- Bladestorm + { spell = 55694, type = "ability", buff = true}, -- Enraged Regeneration + { spell = 57755, type = "ability", requiresTarget = true}, -- Heroic Throw + { spell = 60970, type = "ability", talent = 65}, -- Heroic Fury + { spell = 64382, type = "ability", requiresTarget = true, debuff = true, form = 1}, -- Shattering Throw + }, + icon = 132355 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = rageIcon, + } + } +} + +templates.class.PALADIN = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 498, type = "buff", unit = "player"}, -- Divine Protection + { spell = 642, type = "buff", unit = "player"}, -- Divine Shield + { spell = 1022, type = "buff", unit = "group"}, -- Blessing of Protection + { spell = 1044, type = "buff", unit = "group"}, -- Blessing of Freedom + { spell = 6940, type = "buff", unit = "group"}, -- Blessing of Sacrifice + }, + icon = 135964 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 853, type = "debuff", unit = "target"}, -- Hammer of Justice + }, + icon = 135952 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 498, type = "ability", buff = true}, -- Divine Protection + { spell = 633, type = "ability"}, -- Lay on Hands + { spell = 642, type = "ability", buff = true}, -- Divine Shield + { spell = 709, type = "ability", buff = true}, -- Righteous Fury + { spell = 853, type = "ability", requiresTarget = true, debuff = true}, -- Hammer of Justice + { spell = 879, type = "ability", requiresTarget = true, usable = true}, -- Exorcism + { spell = 1022, type = "ability", buff = true}, -- Blessing of Protection + { spell = 1044, type = "ability", buff = true}, -- Blessing of Freedom + { spell = 1152, type = "ability"}, -- Purify + { spell = 2812, type = "ability"}, -- Holy Wrath + { spell = 4987, type = "ability"}, -- Cleanse + { spell = 6940, type = "ability"}, -- Blessing of Sacrifice + { spell = 10326, type = "ability", debuff = true, requiresTarget = true, usable = true}, -- Turn Evil + { spell = 19876, type = "ability", buff = true}, -- Shadow Resistance Aura + { spell = 19888, type = "ability", buff = true}, -- Frost Resistance Aura + { spell = 19891, type = "ability", buff = true}, -- Fire Resistance Aura + { spell = 20066, type = "ability", requiresTarget = true, debuff = true, talent = 99}, -- Repentance + { spell = 20164, type = "ability", buff = true}, -- Seal of Justice + { spell = 20165, type = "ability", buff = true}, -- Seal of Light + { spell = 20166, type = "ability", buff = true}, -- Seal of Wisdom + { spell = 20271, type = "ability", buff = true, requiresTarget = true}, -- Judgement + { spell = 20375, type = "ability", buff = true, talent = 88}, -- Seal of Command + { spell = 20473, type = "ability", talent = 17}, -- Holy Shock + { spell = 20925, type = "ability", charges = true, buff = true, talent = 59}, -- Holy Shield + { spell = 21082, type = "ability", buff = true}, -- Seal of the Crusader + { spell = 21084, type = "ability", buff = true}, -- Seal of Righteousness + { spell = 24275, type = "ability", requiresTarget = true, usable = true}, -- Hammer of Wrath + { spell = 26573, type = "ability"}, -- Consecration + { spell = 31789, type = "ability"}, -- Righteous Defense + { spell = 31842, type = "ability", buff = true, talent = 20}, -- Divine Illumination + { spell = 31884, type = "ability", buff = true}, -- Avenging Wrath + { spell = 31892, type = "ability", buff = true}, -- Seal of Blood + { spell = 31935, type = "ability", talent = 62}, -- Avenger's Shield + { spell = 35395, type = "ability", requiresTarget = true, talent = 102}, -- Crusader Strike + { spell = 53585, type = "ability", talent = 104}, -- Divine Storm + { spell = 53595, type = "ability", talent = 61}, -- Hammer of the Righteous + { spell = 348704, type = "ability", buff = true}, -- Seal of Vengeance + }, + icon = 135972 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = manaIcon, + }, + } +} + +templates.class.HUNTER = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 136, type = "buff", unit = "pet"}, -- Mend Pet + { spell = 3045, type = "buff", unit = "player"}, -- Rapid Fire + { spell = 5384, type = "buff", unit = "player"}, -- Feign Death + { spell = 6197, type = "buff", unit = "player"}, -- Eagle Eye + { spell = 19621, type = "buff", unit = "pet"}, -- Frenzy + { spell = 24450, type = "buff", unit = "pet"}, -- Prowl + }, + icon = 132242 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 1130, type = "debuff", unit = "target"}, -- Hunter's Mark + { spell = 1513, type = "debuff", unit = "target"}, -- Scare Beast + { spell = 1978, type = "debuff", unit = "target"}, -- Serpent Sting + { spell = 2649, type = "debuff", unit = "target"}, -- Growl + { spell = 2974, type = "debuff", unit = "target"}, -- Wing Clip + { spell = 3034, type = "debuff", unit = "target"}, -- Viper Sting + { spell = 3043, type = "debuff", unit = "target"}, -- Scorpid Sting + { spell = 3355, type = "debuff", unit = "multi"}, -- Freezing Trap + { spell = 5116, type = "debuff", unit = "target"}, -- Concussive Shot + { spell = 24394, type = "debuff", unit = "target"}, -- Intimidation + }, + icon = 135860 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 781, type = "ability"}, -- Disengage + { spell = 1130, type = "ability", requiresTarget = true, debuff = true}, -- Hunter's Mark + { spell = 1495, type = "ability", requiresTarget = true, usable = true}, -- Mongoose Bite + { spell = 1499, type = "ability"}, -- Freezing Trap + { spell = 1510, type = "ability"}, -- Volley + { spell = 1513, type = "ability", requiresTarget = true, debuff = true}, -- Scare Beast + { spell = 1543, type = "ability", duration = 30}, -- Flare + { spell = 1978, type = "ability", requiresTarget = true, debuff = true}, -- Serpent Sting + { spell = 2643, type = "ability"}, -- Multi-Shot + { spell = 2649, type = "ability", requiresTarget = true, debuff = true}, -- Growl + { spell = 2973, type = "ability", queued = true}, -- Raptor Strike + { spell = 2974, type = "ability", requiresTarget = true, debuff = true}, -- Wing Clip + { spell = 3034, type = "ability", requiresTarget = true, debuff = true}, -- Viper Sting + { spell = 3043, type = "ability", requiresTarget = true, debuff = true}, -- Scorpid Sting + { spell = 3044, type = "ability", requiresTarget = true}, -- Arcane Shot + { spell = 3045, type = "ability", buff = true}, -- Rapid Fire + { spell = 5116, type = "ability", requiresTarget = true, debuff = true}, -- Concussive Shot + { spell = 5384, type = "ability", buff = true, unit = "player"}, -- Feign Death + { spell = 13795, type = "ability"}, -- Immolation Trap + { spell = 13809, type = "ability"}, -- Frost Trap + { spell = 13813, type = "ability"}, -- Explosive Trap + { spell = 16827, type = "ability", requiresTarget = true}, -- Claw + { spell = 19263, type = "ability", buff = true}, -- Deterrence -TODO + { spell = 19306, type = "ability", requiresTarget = true, usable = true, talent = 96}, -- Counterattack + { spell = 19434, type = "ability", requiresTarget = true, talent = 47}, -- Aimed Shot + { spell = 19386, type = "ability", requiresTarget = true, debuff = true, talent = 100}, -- Wyvern Sting + { spell = 19503, type = "ability", requiresTarget = true, debuff = true, talent = 52}, -- Scatter Shot + { spell = 19574, type = "ability", buff = true, talent = 18}, -- Bestial Wrath + { spell = 19577, type = "ability", requiresTarget = true, debuff = true, talent = 13}, -- Intimidation + { spell = 19801, type = "ability", requiresTarget = true}, -- Tranquilizing Shot + { spell = 20736, type = "ability", requiresTarget = true}, -- Distracting Shot + { spell = 23989, type = "ability", talent = 103}, -- Readiness + { spell = 34120, type = "ability", requiresTarget = true}, -- Steady Shot + { spell = 34477, type = "ability", requiresTarget = true, debuff = true}, -- Misdirection + { spell = 34490, type = "ability", requiresTarget = true, debuff = true, talent = 60}, -- Silencing Shot + { spell = 34600, type = "ability"}, -- Snake Trap + { spell = 53209, type = "ability", requiresTarget = true, talent = 66}, -- Chimera Shot + { spell = 53301, type = "ability", requiresTarget = true, talent = 106}, -- Explosive Shot + { spell = 53351, type = "ability", requiresTarget = true, usable = true}, -- Kill Shot + }, + icon = 135130 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = manaIcon, + }, + } +} + +templates.class.ROGUE = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 2983, type = "buff", unit = "player"}, -- Sprint + { spell = 5171, type = "buff", unit = "player"}, -- Slice and Dice + { spell = 5277, type = "buff", unit = "player"}, -- Evasion + { spell = 13750, type = "buff", unit = "player"}, -- Adrenaline Rush + { spell = 13877, type = "buff", unit = "player"}, -- Blade Fury + { spell = 14177, type = "buff", unit = "player"}, -- Cold Blood + { spell = 14149, type = "buff", unit = "player"}, -- Remorseless + { spell = 14278, type = "buff", unit = "player"}, -- Ghostly Strike + }, + icon = 132290 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 703, type = "debuff", unit = "target"}, -- Garrote + { spell = 8643, type = "debuff", unit = "target"}, -- Kidney SHot + { spell = 14251, type = "debuff", unit = "target"}, -- Riposte + { spell = 11198, type = "debuff", unit = "target"}, -- Expose Armor + { spell = 18425, type = "debuff", unit = "target"}, -- Kick - Silenced + { spell = 17348, type = "debuff", unit = "target"}, -- Hemorrhage + { spell = 14183, type = "debuff", unit = "target"}, -- Premeditation + }, + icon = 132302 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 53, type = "ability", requiresTarget = true, usable = true}, -- Backstab + { spell = 703, type = "ability", requiresTarget = true, debuff = true}, -- Garrote + { spell = 921, type = "ability", requiresTarget = true, usable = true}, -- Pick Pocket + { spell = 1329, type = "ability", requiresTarget = true, usable = true, talent = 21}, -- Mutilate + { spell = 1725, type = "ability"}, -- Distract + { spell = 1752, type = "ability", requiresTarget = true}, -- Sinister Strike + { spell = 1766, type = "ability", requiresTarget = true}, -- Kick + { spell = 1776, type = "ability", requiresTarget = true, usable = true, debuff = true}, -- Gouge + { spell = 1784, type = "ability", buff = true}, -- Stealth + { spell = 1856, type = "ability", buff = true}, -- Vanish + { spell = 2094, type = "ability", requiresTarget = true, debuff = true}, -- Blind + { spell = 2098, type = "ability", requiresTarget = true}, -- Eviscerate + { spell = 2983, type = "ability", buff = true}, -- Sprint + { spell = 5171, type = "ability", requiresTarget = true, buff = true}, -- Slice and Dice + { spell = 5277, type = "ability", buff = true}, -- Evasion + { spell = 6770, type = "ability", requiresTarget = true, usable = true, debuff = true}, -- Sap + { spell = 8643, type = "ability", requiresTarget = true, usable = true, debuff = true}, -- Kidney Shot + { spell = 8647, type = "ability", requiresTarget = true, debuff = true}, -- Expose Armor + { spell = 13750, type = "ability", buff = true, talent = 61}, -- Adrenaline Rush + { spell = 13877, type = "ability", buff = true, talent = 54}, -- Blade Fury + { spell = 14177, type = "ability", buff = true, talent = 13}, -- Cold Blood + { spell = 14183, type = "ability", requiresTarget = true, debuff = true, talent = 99}, -- Premeditation + { spell = 14185, type = "ability"}, -- Preparation + { spell = 14251, type = "ability", requiresTarget = true, usable = true, debuff = true, talent = 48}, -- Riposte + { spell = 14271, type = "ability", requiresTarget = true, buff = true, talent = 87}, -- Ghostly Strike + { spell = 16511, type = "ability", requiresTarget = true, debuff = true, talent = 95}, -- Hemorrhage + { spell = 31224, type = "ability", buff = true}, -- Cloak of Shadows + { spell = 36554, type = "ability", requiresTarget = true, talent = 102}, -- Shadowstep + { spell = 51662, type = "ability", buff = true, talent = 27}, -- Hunger For Blood + { spell = 51690, type = "ability", buff = true, talent = 68}, -- Killing Spree + { spell = 51713, type = "ability", buff = true, talent = 107}, -- Shadow Dance + { spell = 51723, type = "ability"}, -- Fan of Knives + { spell = 57934, type = "ability", buff = true}, -- Tricks of the Trade + }, + icon = 132350 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = comboPointsIcon, + }, + } +} + +templates.class.PRIEST = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 586, type = "buff", unit = "player"}, -- Fade + { spell = 17, type = "buff", unit = "target"}, -- Power Word: Shield + { spell = 21562, type = "buff", unit = "player"}, -- Power Word: Fortitude + { spell = 2096, type = "buff", unit = "player"}, -- Mind Vision + { spell = 1706, type = "buff", unit = "player"}, -- Levitate + }, + icon = 135940 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 8122, type = "debuff", unit = "target"}, -- Psychic Scream + { spell = 2096, type = "debuff", unit = "target"}, -- Mind Vision + { spell = 589, type = "debuff", unit = "target"}, -- Shadow Word: Pain + { spell = 9484, type = "debuff", unit = "multi" }, -- Shackle Undead + { spell = 34914, type = "debuff", unit = "target", talent = 101}, -- Vampiric Touch + }, + icon = 136207 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 17, type = "ability"}, -- Power Word: Shield + { spell = 527, type = "ability"}, -- Purify + { spell = 552, type = "ability"}, -- Abolish Disease + { spell = 585, type = "ability", requireTarget = true}, -- Smite + { spell = 586, type = "ability", buff = true}, -- Fade + { spell = 589, type = "ability", requireTarget = true, debuff = true}, -- Shadow Word: Pain + { spell = 2060, type = "ability"}, -- Greater Heal + { spell = 2061, type = "ability"}, -- Flash Heal + { spell = 6064, type = "ability"}, -- Heal + { spell = 6346, type = "ability", buff = true}, -- Fear Ward + { spell = 8092, type = "ability", requireTarget = true}, -- Mind Blast + { spell = 8122, type = "ability"}, -- Psychic Scream + { spell = 8129, type = "ability", requireTarget = true}, -- Mana Burn + { spell = 10060, type = "ability", buff = true, talent = 19}, -- Power Infusion + { spell = 10876, type = "ability", requireTarget = true}, -- Mana Burn + { spell = 10947, type = "ability", requireTarget = true}, -- Mind Flay + { spell = 10951, type = "ability", buff = true}, -- Inner Fire + { spell = 14751, type = "ability", buff = true, talent = 8}, -- Inner Focus + { spell = 14914, type = "ability", debuff = true, requireTarget = true}, -- Holy Fire + { spell = 15487, type = "ability", debuff = true, requireTarget = true, talent = 92}, -- Silence + { spell = 33206, type = "ability", buff = true, talent = 22}, -- Pain Suppression + { spell = 32375, type = "ability"}, -- Mass Dispel + { spell = 32379, type = "ability", requireTarget = true}, -- Shadow Word: Death + { spell = 32546, type = "ability"}, -- Binding Heal + { spell = 33076, type = "ability"}, -- Prayer of Mending + { spell = 34433, type = "ability", totem = true}, -- Shadowfiend + { spell = 34861, type = "ability", talent = 61}, -- Circle of Healing + { spell = 34914, type = "ability", debuff = true, requireTarget = true, talent = 101}, -- Vampiric Touch + { spell = 47540, type = "ability", requireTarget = true, talent = 24}, -- Penance + { spell = 47585, type = "ability", buff = true, talent = 105}, -- Dispersion + { spell = 47788, type = "ability", buff = true, talent = 66}, -- Guardian Spirit + { spell = 64843, type = "ability"}, -- Divine Hymn + { spell = 64901, type = "ability"}, -- Hymn of Hope + }, + icon = 136224 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = manaIcon, + }, + } +} + +templates.class.SHAMAN = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 546, type = "buff", unit = "player"}, -- Water Walking + { spell = 16256, type = "buff", unit = "player", talent = 50}, -- Flurry + }, + icon = 135863 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 3600, type = "debuff", unit = "target"}, -- Earthbind + }, + icon = 135813 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 131, type = "ability", buff = true, usable = true}, -- Water Breathing + { spell = 324, type = "ability", buff = true}, -- Lightning Shield + { spell = 331, type = "ability"}, -- Healing Wave + { spell = 403, type = "ability", requireTarget = true}, -- Lightning Bolt + { spell = 421, type = "ability", requireTarget = true}, -- Chain Lightning + { spell = 546, type = "ability", buff = true, usable = true}, -- Water Walking + { spell = 556, type = "ability"}, -- Astral Recall + { spell = 974, type = "ability", buff = true, talent = 100}, -- Earth Shield + { spell = 1064, type = "ability"}, -- Chain Heal + { spell = 1535, type = "ability", totem = true}, -- Fire Nova Totem + { spell = 2008, type = "ability"}, -- Ancestral Spirit + { spell = 2062, type = "ability", totem = true}, -- Earth Elemental Totem + { spell = 2484, type = "ability", totem = true}, -- Earthbind Totem + { spell = 2645, type = "ability", buff = true}, -- Ghost Wolf + { spell = 2825, type = "ability", buff = true}, -- Bloodlust + { spell = 2894, type = "ability", totem = true}, -- Fire Elemental Totem + { spell = 3599, type = "ability", totem = true}, -- Searing Totem + { spell = 3738, type = "ability", totem = true}, -- Wrath of Air Totem + { spell = 5394, type = "ability", totem = true}, -- Healing Stream Totem + { spell = 5675, type = "ability", totem = true}, -- Mana Spring Totem + { spell = 5730, type = "ability", totem = true}, -- Stoneclaw Totem + { spell = 6495, type = "ability", totem = true}, -- Sentry Totem + { spell = 8142, type = "ability", requireTarget = true}, -- Earth Shock + { spell = 8143, type = "ability", requireTarget = true, debuff = true}, -- Frost Shock + { spell = 8017, type = "ability", weaponBuff = true}, -- Rockbiter Weapon -- !! weaponBuff is not supported yet + { spell = 8024, type = "ability", weaponBuff = true}, -- Flametongue Weapon + { spell = 8033, type = "ability", weaponBuff = true}, -- Frostbrand Weapon + { spell = 8050, type = "ability", requireTarget = true, debuff = true}, -- Flame Shock + { spell = 8071, type = "ability", totem = true}, -- Stoneskin Totem + { spell = 8075, type = "ability", totem = true}, -- Strength of Earth Totem + { spell = 8143, type = "ability", totem = true}, -- Tremor Totem + { spell = 8166, type = "ability", totem = true}, -- Poison Cleansing Totem + { spell = 8170, type = "ability", totem = true}, -- Disease Cleansing Totem + { spell = 8177, type = "ability", totem = true}, -- Grounding Totem + { spell = 8181, type = "ability", totem = true}, -- Frost Resistance Totem + { spell = 8184, type = "ability", totem = true}, -- Fire Resistance Totem + { spell = 8190, type = "ability", totem = true}, -- Magma Totem + { spell = 8227, type = "ability", totem = true}, -- Flametongue Totem + { spell = 8514, type = "ability", totem = true}, -- Windfury Totem + { spell = 8835, type = "ability", totem = true}, -- Grace of Air Totem + { spell = 10595, type = "ability", totem = true}, -- Nature Resistance Totem + { spell = 15107, type = "ability", totem = true}, -- Windwall Totem + { spell = 16246, type = "ability", buff = true, talent = 6}, -- Clearcasting + { spell = 16166, type = "ability", buff = true, talent = 17}, -- Elemental Mastery + { spell = 16188, type = "ability", buff = true, talent = 93}, -- Nature Swiftness + { spell = 16190, type = "ability", totem = true, talent = 96}, -- Mana Tide Totem + { spell = 17364, type = "ability", debuff = true, talent = 59}, -- Stormstrike + { spell = 20608, type = "ability"}, -- Reincarnation + { spell = 24398, type = "ability", buff = true}, -- Water Shield + { spell = 25908, type = "ability", totem = true}, -- Tranquil Air Totem + { spell = 30706, type = "ability", totem = true, talent = 20}, -- Totem of Wrath + { spell = 30823, type = "buff", talent = 61}, -- Shamanistic Rage + { spell = 32182, type = "ability", buff = true}, -- Heroism + { spell = 51514, type = "ability", requireTarget = true}, -- Hex + { spell = 51505, type = "ability", requireTarget = true}, -- Lava Burst + { spell = 51490, type = "ability", talent = 23}, -- Thunderstorm + { spell = 51533, type = "ability", buff = true, talent = 65}, -- Feral Spirit + { spell = 61295, type = "ability", talent = 105}, -- Riptide + }, + icon = 135963 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = 135990, + }, + } +} + +templates.class.MAGE = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 130, type = "buff", unit = "player"}, -- Slow Fall + { spell = 543, type = "buff", unit = "player"}, -- Fire Ward + { spell = 604, type = "buff", unit = "player"}, -- Dampen Magic + { spell = 1008, type = "buff", unit = "player"}, -- Amplify Magic + { spell = 1459, type = "buff", unit = "player"}, -- Arcane Intellect + { spell = 1463, type = "buff", unit = "player"}, -- Mana Shield + { spell = 6143, type = "buff", unit = "player"}, -- Frost Ward + { spell = 12042, type = "buff", unit = "player"}, -- Arcane Power + { spell = 12536, type = "buff", unit = "player"}, -- Clearcasting + { spell = 45438, type = "buff", unit = "player"}, -- Ice Block + }, + icon = 136096 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 122, type = "debuff", unit = "target"}, -- Frost Nova + { spell = 118, type = "debuff", unit = "multi" }, -- Polymorph + { spell = 11071, type = "debuff", unit = "target"}, -- Frostbite + { spell = 11103, type = "debuff", unit = "target"}, -- Impact + { spell = 11180, type = "debuff", unit = "target"}, -- Winter's Chill + }, + icon = 135848 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 66, type = "ability", buff = true, buffId = 32612}, -- Invisibility + { spell = 116, type = "ability", requiresTarget = true}, -- Frostbolt + { spell = 118, type = "ability", debuff = true, requireTarget = true}, -- Polymorph + { spell = 120, type = "ability"}, -- Cone of Cold + { spell = 122, type = "ability"}, -- Frost Nova + { spell = 130, type = "ability", buff = true}, -- Slow Fall + { spell = 168, type = "ability", buff = true}, -- Frost Armor + { spell = 475, type = "ability"}, -- Remove Curse + { spell = 543, type = "ability", buff = true}, -- Fire Ward + { spell = 1449, type = "ability"}, -- Arcane Explosion + { spell = 1463, type = "ability", buff = true}, -- Mana Shield + { spell = 1953, type = "ability"}, -- Blink + { spell = 2120, type = "ability"}, -- Flamestrike + { spell = 2136, type = "ability", requiresTarget = true}, -- Fire Blast + { spell = 2139, type = "ability", requiresTarget = true}, -- Counterspell + { spell = 2855, type = "ability", debuff = true, requireTarget = true}, -- Detect Magic + { spell = 2948, type = "ability", requiresTarget = true}, -- Scorch + { spell = 5143, type = "ability", requiresTarget = true}, -- Arcane Missiles + { spell = 6117, type = "ability", buff = true}, -- Mage Armor + { spell = 6143, type = "ability", buff = true}, -- Frost Ward + { spell = 10187, type = "ability"}, -- Blizzard + { spell = 11113, type = "ability", debuff = true, talent = 55}, -- Blast Wave + { spell = 11129, type = "ability", buff = true, talent = 59}, -- Combustion + { spell = 11426, type = "ability", buff = true, talent = 99}, -- ice Barrier + { spell = 11958, type = "ability", talent = 95}, -- Cold Snap + { spell = 12042, type = "ability", buff = true, talent = 16}, -- Arcane Power + { spell = 12043, type = "ability", buff = true, talent = 13}, -- Presence of Mind + { spell = 12051, type = "ability"}, -- Evocation + { spell = 14272, type = "ability", buff = true, talent = 89}, -- Icy Veins + { spell = 18809, type = "ability", requiresTarget = true}, -- Pyroblast + { spell = 25304, type = "ability", requiresTarget = true}, -- Frostbolt + { spell = 30449, type = "ability", requiresTarget = true}, -- Spellsteal + { spell = 30451, type = "ability", requiresTarget = true}, -- Arcane Blast + { spell = 30482, type = "ability", buff = true}, -- Molten Armor + { spell = 31661, type = "ability", buff = true}, -- Dragon's Breath + { spell = 31687, type = "ability", totem = true, talent = 102}, -- Summon Water Elemental + { spell = 34589, type = "ability", requireTarget = true, debuff = true, talent = 23}, -- Slow + { spell = 45438, type = "ability", buff = true}, -- Ice Block + { spell = 44614, type = "ability", requiresTarget = true, debuff = true}, -- Frostfire Bolt + { spell = 44457, type = "ability", buff = true, talent = 67}, -- Living Bomb + { spell = 44425, type = "ability", requiresTarget = true, talent = 27}, -- Arcane Barrage + { spell = 44572, type = "ability", requiresTarget = true, debuff = true, usable = true, talent = 107}, -- Deep Freeze + }, + icon = 136075 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = manaIcon, + }, + } +} + +templates.class.WARLOCK = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 126, type = "buff", unit = "player"}, -- Eye of Kilrogg + { spell = 687, type = "buff", unit = "player"}, -- Demon Skin + { spell = 755, type = "buff", unit = "pet"}, -- Health Funnel + { spell = 5697, type = "buff", unit = "player"}, -- Unending Breath + { spell = 6229, type = "buff", unit = "player"}, -- Shadow Ward + { spell = 7870, type = "buff", unit = "pet"}, -- Lesser Invisibility + { spell = 18094, type = "buff", unit = "player"}, -- Nightfall + { spell = 19028, type = "buff", unit = "player", talent = 59}, -- Soul Link + { spell = 20707, type = "buff", unit = "group"}, -- Soulstone + }, + icon = 136210 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 172, type = "debuff", unit = "target"}, -- Corruption + { spell = 348, type = "debuff", unit = "target"}, -- Immolate + { spell = 603, type = "debuff", unit = "target"}, -- Curse of Doom + { spell = 702, type = "debuff", unit = "target"}, -- Curse of Weakness + { spell = 704, type = "debuff", unit = "target"}, -- Curse of Recklessness + { spell = 710, type = "debuff", unit = "multi"}, -- Banish + { spell = 980, type = "debuff", unit = "target"}, -- Curse of Agony + { spell = 1098, type = "debuff", unit = "multi"}, -- Enslave Demon + { spell = 1490, type = "debuff", unit = "target"}, -- Curse of the Elements + { spell = 1714, type = "debuff", unit = "target"}, -- Curse of Tongues + { spell = 6358, type = "debuff", unit = "target"}, -- Seduction + { spell = 6789, type = "debuff", unit = "target" }, -- Death Coil + { spell = 6360, type = "debuff", unit = "target"}, -- Whiplash + { spell = 17862, type = "debuff", unit = "target"}, -- Curse of Shadow + { spell = 18223, type = "debuff", unit = "target", talent = 15}, -- Curse of Exhaustion + { spell = 18265, type = "debuff", unit = "target", talent = 14}, -- Siphon Life + { spell = 30108, type = "debuff", unit = "target", talent = 21}, -- Unstable Affliction + { spell = 48181, type = "debuff", unit = "target", talent = 26}, -- Haunt + }, + icon = 136139 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 172, type = "ability", requiresTarget = true, debuff = true}, -- Corruption + { spell = 348, type = "ability", requiresTarget = true, debuff = true}, -- Immolate + { spell = 686, type = "ability", requiresTarget = true}, -- Shadow Bolt + { spell = 698, type = "ability"}, -- Ritual of Summoning + { spell = 710, type = "ability", requiresTarget = true, debuff = true}, -- Banish + { spell = 980, type = "ability", requiresTarget = true, debuff = true}, -- Agony + { spell = 1120, type = "ability", requiresTarget = true}, -- Drain Soul + { spell = 3110, type = "ability", requiresTarget = true}, -- Firebolt + { spell = 3716, type = "ability", requiresTarget = true}, -- Consuming Shadows + { spell = 5138, type = "ability", requiresTarget = true}, -- Drain Mana + { spell = 5484, type = "ability"}, -- Howl of Terror + { spell = 5676, type = "ability", requiresTarget = true}, -- Searing Pain + { spell = 5740, type = "ability"}, -- Rain of Fire + { spell = 5782, type = "ability", requiresTarget = true, debuff = true}, -- Fear + { spell = 6353, type = "ability", requiresTarget = true}, -- Soul Fire + { spell = 6358, type = "ability", requiresTarget = true}, -- Seduction + { spell = 6360, type = "ability", requiresTarget = true}, -- Whiplash + { spell = 6789, type = "ability", requiresTarget = true}, -- Death Coil + { spell = 7814, type = "ability", requiresTarget = true}, -- Lash of Pain + { spell = 7870, type = "ability"}, -- Lesser Invisibility + { spell = 17962, type = "ability", requiresTarget = true, usable = true, talent = 98}, -- Conflagrate + { spell = 17926, type = "ability", requiresTarget = true}, -- Death Coil + { spell = 18288, type = "ability", buff = true, talent = 9}, -- Amplify Curse + { spell = 18708, type = "ability", talent = 28}, -- Fel Domination + { spell = 18877, type = "ability", requiresTarget = true, debuff = true, talent = 88}, -- Shadowburn + { spell = 30108, ability = "ability", debuff = true, requiresTarget = true, talent = 21}, -- Unstable Affliction + { spell = 30283, type = "ability", debuff = true, talent = 101}, -- Fel Domination + { spell = 48181, type = "ability", requiresTarget = true, debuff = true, talent = 26}, -- Haunt + { spell = 59672, type = "ability", buff = true, talent = 66}, -- Metamorphosis + { spell = 50796, type = "ability", requiresTarget = true, talent = 105}, -- Chaos Bolt + { spell = 47897, type = "ability"}, -- Shadowflame + { spell = 48020, type = "ability"}, -- Demonic Circle: Teleport + }, + icon = 135808 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = "Interface\\Icons\\inv_misc_gem_amethyst_02", + }, + } +} + +templates.class.DRUID = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 774, type = "buff", unit = "player", talent = 9 }, -- Rejuvenation + { spell = 5487, type = "buff", unit = "player"}, -- Bear Form + { spell = 8936, type = "buff", unit = "player"}, -- Regrowth + { spell = 783, type = "buff", unit = "player"}, -- Travel Form + { spell = 768, type = "buff", unit = "player"}, -- Cat Form + { spell = 22812, type = "buff", unit = "player"}, -- Barkskin + { spell = 1850, type = "buff", unit = "player"}, -- Dash + { spell = 5215, type = "buff", unit = "player"}, -- Prowl + { spell = 29166, type = "buff", unit = "group"}, -- Innervate + { spell = 33763, type = "buff", unit = "player"}, -- Lifebloom + }, + icon = 136097 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 339, type = "debuff", unit = "multi"}, -- Entangling Roots + { spell = 770, type = "debuff", unit = "target"}, -- Faerie Fire + { spell = 5211, type = "debuff", unit = "target", talent = 10 }, -- Mighty Bash + { spell = 1079, type = "debuff", unit = "target", talent = 7 }, -- Rip + { spell = 6795, type = "debuff", unit = "target"}, -- Growl + { spell = 2637, type = "debuff", unit = "multi"}, -- Hibernate + { spell = 5570, type = "debuff", unit = "target", talent = 8}, -- Insect Swarm + { spell = 8921, type = "debuff", unit = "target"}, -- Moonfire + }, + icon = 132114 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 99, type = "ability", debuff = true}, -- Demoralizing Roar + { spell = 339, type = "ability", requiresTarget = true, debuff = true}, -- Entangling Roots + { spell = 740, type = "ability", duration = 10}, -- Tranquility + { spell = 768, type = "ability"}, -- Cat Form + { spell = 770, type = "ability", requiresTarget = true, debuff = true}, -- Faerie Fire + { spell = 783, type = "ability"}, -- Travel Form + { spell = 1066, type = "ability"}, -- Aquatic Form + { spell = 1079, type = "ability", requiresTarget = true, form = 3}, -- Rip + { spell = 1082, type = "ability", requiresTarget = true, form = 3}, -- Claw + { spell = 1822, type = "ability", requiresTarget = true, debuff = true, form = 3}, -- Rake + { spell = 1850, type = "ability", buff = true}, -- Dash + { spell = 2637, type = "ability", requiresTarget = true, debuff = true}, -- Hibernate + { spell = 2782, type = "ability"}, -- Remove Curse + { spell = 2893, type = "ability"}, -- Abolish Poison + { spell = 2908, type = "ability", requiresTarget = true}, -- Soothe + { spell = 2912, type = "ability", requiresTarget = true}, -- Starfire + { spell = 5176, type = "ability", requiresTarget = true}, -- Wrath + { spell = 5209, type = "ability", form = 1}, -- Challenging Roar + { spell = 5211, type = "ability", requiresTarget = true, talent = 6, form = 1}, -- Mighty Bash + { spell = 5215, type = "ability", buff = true}, -- Prowl + { spell = 5221, type = "ability", requiresTarget = true, form = 3}, -- Shred + { spell = 5229, type = "ability", buff = true, form = 1}, -- Enrage + { spell = 5487, type = "ability"}, -- Bear Form + { spell = 5570, type = "ability", requiresTarget = true, debuff = true, talent = 8}, -- Insect Swarm + { spell = 6785, type = "ability", requiresTarget = true, form = 3}, -- Ravage + { spell = 6795, type = "ability", debuff = true, requiresTarget = true, form = 1}, -- Growl + { spell = 6807, type = "ability", queued = true, form = 1}, -- Maul + { spell = 8921, type = "ability", requiresTarget = true, debuff = true}, -- Moonfire + { spell = 8946, type = "ability"}, -- Cure Poison + { spell = 8983, type = "ability", requiresTarget = true, debuff = true, form = 1}, -- Buff + { spell = 9634, type = "ability"}, -- Dire Bear Form + { spell = 9846, type = "ability", buff = true, form = 3}, -- Tiger's Fury + { spell = 16689, type = "ability", buff = true, talent = 2}, -- Nature's Grasp + { spell = 16914, type = "ability"}, -- Hurricane + { spell = 16979, type = "ability", form = 1, talent = 47}, -- Feral Charge + { spell = 17116, type = "ability", buff = true, talent = 91}, -- Nature's Swiftness + { spell = 18562, type = "ability", talent = 97}, -- Swiftmend + { spell = 20484, type = "ability"}, -- Rebirth + { spell = 22568, type = "ability", form = 3}, -- Ferocious Bite + { spell = 22570, type = "ability", debuff = true, form = 3}, -- Maim + { spell = 22812, type = "ability", buff = true}, -- Barkskin + { spell = 22842, type = "ability", buff = true, form = 1}, -- Frenzied Regeneration + { spell = 24858, type = "ability", talent = 18}, -- Moonkin Form + { spell = 26997, type = "ability", form = 1}, -- Swipe + { spell = 27006, type = "ability", requiresTarget = true, debuff = true, form = 3}, -- Pounce + { spell = 33831, type = "ability", talent = 21}, -- Force of Nature + { spell = 42389, type = "ability", talent = 61, form = {1, 3}}, -- Mangle + { spell = 48438, type = "ability", talent = 103}, -- Wild Growth + { spell = 50464, type = "ability"}, -- Nourish + { spell = 48505, type = "ability", talent = 24}, -- Starfall + { spell = 50334, type = "ability", buff = true, talent = 67}, -- Berserk + }, + icon = 132134 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources and Shapeshift Form"], + args = { + }, + icon = manaIcon, + }, + }, +} +templates.class.DEATHKNIGHT = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 3714, type = "buff", unit = "player"}, -- Path of Frost + { spell = 48707, type = "buff", unit = "player"}, -- Anti-Magic Shell + { spell = 48792, type = "buff", unit = "player"}, -- Icebound Fortitude + { spell = 49039, type = "buff", unit = "player"}, -- Lichborne + { spell = 49182, type = "buff", unit = "player", talent = 21}, -- Blade Barrier + { spell = 49188, type = "buff", unit = "player", talent = 50}, -- Rime + { spell = 49200, type = "buff", unit = "player", talent = 52}, -- Acclimation + { spell = 50421, type = "buff", unit = "player", talent = 9}, -- Scent of Blood + { spell = 50447, type = "buff", unit = "player", talent = 7}, -- Bloody Vengeance + { spell = 50880, type = "buff", unit = "player", talent = 62}, -- Icy Talons + { spell = 51123, type = "buff", unit = "player", talent = 63}, -- Killing Machine + { spell = 51124, type = "buff", unit = "player"}, -- Killing Machine + { spell = 53365, type = "buff", unit = "player"}, -- Unholy Strength + { spell = 55233, type = "buff", unit = "player"}, -- Vampiric Blood + { spell = 57330, type = "buff", unit = "player"}, -- Horn of Winter + { spell = 59052, type = "buff", unit = "player"}, -- Rime + { spell = 66799, type = "buff", unit = "player", talent = 111}, -- Desolation + }, + icon = 237517 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 45524, type = "debuff", unit = "target"}, -- Chains of Ice + { spell = 48743, type = "debuff", unit = "player"}, -- Death Pact + { spell = 49194, type = "debuff", unit = "target", talent = 88}, -- Unholy Blight + { spell = 50040, type = "debuff", unit = "target", buffId = 50436, talent = 68}, -- Chilblains + { spell = 51099, type = "debuff", unit = "target", buffId = 51726, talent = 102}, -- Ebon Plaguebringer + { spell = 51399, type = "debuff", unit = "target"}, -- Death Grip + { spell = 55095, type = "debuff", unit = "target"}, -- Frost Fever + { spell = 55666 , type = "debuff", unit = "target", talent = 110}, -- Desecration + { spell = 56222, type = "debuff", unit = "target"}, -- Dark Command + { spell = 59879, type = "debuff", unit = "target"}, -- Blood Plague + }, + icon = 237514 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 3714, type = "ability", buff = true}, -- Path of Frost + { spell = 42650, type = "ability"}, -- Army of the Dead + { spell = 43265, type = "ability", debuff = true}, -- Death and Decay + { spell = 45462, type = "ability", requiresTarget = true, debuff = true, buffId = 59879}, -- Plague Strike + { spell = 45524, type = "ability", debuff = true, requiresTarget = true}, -- Chains of Ice + { spell = 45529, type = "ability", buff = true}, -- Blood Tap + { spell = 45902, type = "ability", requiresTarget = true}, -- Blood Strike + { spell = 46585, type = "ability"}, -- Raise Dead + { spell = 47476, type = "ability", debuff = true,requiresTarget = true}, -- Strangulate + { spell = 47528, type = "ability", requiresTarget = true}, -- Mind Freeze + { spell = 47541, type = "ability", requiresTarget = true}, -- Death Coil + { spell = 48707, type = "ability", buff = true}, -- Anti-Magic Shell + { spell = 48743, type = "ability"}, -- Death Pact + { spell = 48792, type = "ability", buff = true}, -- Icebound Fortitude + { spell = 48982, type = "ability", talent = 4}, -- Rune Tap + { spell = 49005, type = "ability", debuff = true, requiresTarget = true, talent = 10}, -- Mark of Blood + { spell = 49016, type = "ability", buff = true, requiresTarget = true, talent = 13}, -- Unholy Frenzy + { spell = 49028, type = "ability", buff = true, requiresTarget = true, talent = 19}, -- Dancing Rune Weapon + { spell = 49039, type = "ability", buff = true, talent = 66}, -- Lichborne + { spell = 49143, type = "ability", requiresTarget = true, talent = 44}, -- Frost Strike + { spell = 49158, type = "ability", talent = 87}, -- Corpse Explosion + { spell = 49184, type = "ability", requiresTarget = true, talent = 48}, -- Howling Blast + { spell = 49203, type = "ability", debuff = true, talent = 54}, -- Hungering Cold + { spell = 57330, type = "ability", buff = true}, -- Horn of Winter + { spell = 61999, type = "ability"}, -- Raise Ally + { spell = 63560, type = "ability", unit = "pet", buff = true, talent = 105}, -- Ghoul Frenzy + { spell = 66198, type = "ability", requiresTarget = true}, -- Obliterate + }, + icon = 136120 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = "Interface\\PlayerFrame\\UI-PlayerFrame-Deathknight-SingleRune", + }, + } +} + +-- General Section +tinsert(templates.general.args, { + title = L["Health"], + icon = "Interface\\Icons\\inv_potion_54", + type = "health" +}); +tinsert(templates.general.args, { + title = L["Cast"], + icon = 136209, + type = "cast" +}); +tinsert(templates.general.args, { + title = L["Always Active"], + icon = "Interface\\Addons\\WeakAuras\\PowerAurasMedia\\Auras\\Aura78", + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Conditions"), + event = "Conditions", + use_alwaystrue = true}}} +}); + +tinsert(templates.general.args, { + title = L["Pet alive"], + icon = "Interface\\Icons\\ability_hunter_pet_raptor", + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Conditions"), + event = "Conditions", + use_HasPet = true}}} +}); + +tinsert(templates.general.args, { + title = L["Pet Behavior"], + icon = "Interface\\Icons\\ability_defend.blp", + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Pet Behavior"), + event = "Pet Behavior", + use_behavior = true, + behavior = "assist"}}} +}); + +tinsert(templates.general.args, { + spell = 2825, type = "buff", unit = "player", + forceOwnOnly = true, + ownOnly = nil, + overideTitle = L["Bloodlust/Heroism"], + spellIds = {2825, 32182}} +); + +-- Meta template for Power triggers +local function createSimplePowerTemplate(powertype) + local power = { + title = powerTypes[powertype].name, + icon = powerTypes[powertype].icon, + type = "power", + powertype = powertype, + } + return power; +end + +------------------------------- +-- Hardcoded trigger templates +------------------------------- + +-- Warrior +tinsert(templates.class.WARRIOR[1][8].args, { + title = L["Stance"], + icon = 132349, + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Stance/Form/Aura"), + event = "Stance/Form/Aura"}}} +}) +for j, id in ipairs({2457, 71, 2458}) do + local title, _, icon = GetSpellInfo(id) + if title then + tinsert(templates.class.WARRIOR[1][8].args, { + title = title, + icon = icon, + triggers = { + [1] = { + trigger = { + type = WeakAuras.GetTriggerCategoryFor("Stance/Form/Aura"), + event = "Stance/Form/Aura", + use_form = true, + form = { single = j } + } + } + } + }); + end +end + +tinsert(templates.class.WARRIOR[1][8].args, createSimplePowerTemplate(1)); +tinsert(templates.class.PALADIN[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.HUNTER[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.ROGUE[1][8].args, createSimplePowerTemplate(3)); +tinsert(templates.class.ROGUE[1][8].args, createSimplePowerTemplate(4)); +tinsert(templates.class.PRIEST[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.SHAMAN[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.MAGE[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.WARLOCK[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.DRUID[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.DRUID[1][8].args, createSimplePowerTemplate(1)); +tinsert(templates.class.DRUID[1][8].args, createSimplePowerTemplate(3)); +tinsert(templates.class.DRUID[1][8].args, createSimplePowerTemplate(4)); + +-- Shapeshift Form +tinsert(templates.class.DRUID[1][8].args, { + title = L["Shapeshift Form"], + icon = 132276, + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Stance/Form/Aura"), + event = "Stance/Form/Aura"}}} +}); +for j, id in ipairs({5487, 768, 783, 114282, 1394966}) do + local title, _, icon = GetSpellInfo(id) + if title then + tinsert(templates.class.DRUID[1][8].args, { + title = title, + icon = icon, + triggers = { + [1] = { + trigger = { + type = WeakAuras.GetTriggerCategoryFor("Stance/Form/Aura"), + event = "Stance/Form/Aura", + use_form = true, + form = { single = j } + } + } + } + }); + end +end + + +------------------------------ +-- Hardcoded race templates +------------------------------- + +-- Will of Survive +tinsert(templates.race.Human, { spell = 59752, type = "ability" }); +-- Stoneform +tinsert(templates.race.Dwarf, { spell = 20594, type = "ability", buff = true, titleSuffix = L["cooldown"]}); +tinsert(templates.race.Dwarf, { spell = 20594, type = "buff", unit = "player", titleSuffix = L["buff"]}); +-- Shadow Meld +tinsert(templates.race.NightElf, { spell = 58984, type = "ability", buff = true, titleSuffix = L["cooldown"]}); +tinsert(templates.race.NightElf, { spell = 58984, type = "buff", titleSuffix = L["buff"]}); +-- Escape Artist +tinsert(templates.race.Gnome, { spell = 20589, type = "ability" }); + +-- Blood Fury +tinsert(templates.race.Orc, { spell = 20572, type = "ability", titleSuffix = L["cooldown"]}); +tinsert(templates.race.Orc, { spell = 20572, type = "buff", unit = "player", titleSuffix = L["buff"]}); +--Cannibalize +tinsert(templates.race.Scourge, { spell = 20577, type = "ability", titleSuffix = L["cooldown"]}); +tinsert(templates.race.Scourge, { spell = 20578, type = "buff", unit = "player", titleSuffix = L["buff"]}); +-- Will of the Forsaken +tinsert(templates.race.Scourge, { spell = 7744, type = "ability", buff = true, titleSuffix = L["cooldown"]}); +tinsert(templates.race.Scourge, { spell = 7744, type = "buff", unit = "player", titleSuffix = L["buff"]}); +-- War Stomp +tinsert(templates.race.Tauren, { spell = 20549, type = "ability", debuff = true, titleSuffix = L["cooldown"]}); +tinsert(templates.race.Tauren, { spell = 20549, type = "debuff", titleSuffix = L["debuff"]}); +--Beserking +tinsert(templates.race.Troll, { spell = 26297, type = "ability", buff = true, titleSuffix = L["cooldown"]}); +tinsert(templates.race.Troll, { spell = 26297, type = "buff", unit = "player", titleSuffix = L["buff"]}); +-- Arcane Torrent +tinsert(templates.race.BloodElf, { spell = 28730, type = "ability", debuff = true, titleSuffix = L["cooldown"]}); +-- Gift of the Naaru +tinsert(templates.race.Draenei, { spell = 28880, type = "ability", buff = true, titleSuffix = L["cooldown"]}); +tinsert(templates.race.Draenei, { spell = 28880, type = "buff", unit = "player", titleSuffix = L["buff"]}); + +------------------------------ +-- Helper code for options +------------------------------- + +-- Enrich items from spell, set title +local function handleItem(item) + local waitingForItemInfo = false; + if (item.spell) then + local name, icon, _; + if (item.type == "item") then + name, _, _, _, _, _, _, _, _, icon = GetItemInfo(item.spell); + if (name == nil) then + name = L["Unknown Item"] .. " " .. tostring(item.spell); + waitingForItemInfo = true; + end + else + name, _, icon = GetSpellInfo(item.spell); + if (name == nil) then + name = L["Unknown Spell"] .. " " .. tostring(item.spell); + end + end + if (icon and not item.icon) then + item.icon = icon; + end + + item.title = item.overideTitle or name or ""; + if (item.titleSuffix) then + item.title = item.title .. " " .. item.titleSuffix; + end + if (item.titlePrefix) then + item.title = item.titlePrefix .. item.title; + end + if (item.titleItemPrefix) then + local prefix = GetItemInfo(item.titleItemPrefix); + if (prefix) then + item.title = prefix .. "-" .. item.title; + else + waitingForItemInfo = true; + end + end + if (item.type ~= "item") then + local spell = Spell:CreateFromSpellID(item.spell); + if (not spell:IsSpellEmpty()) then + spell:ContinueOnSpellLoad(function() + item.description = GetSpellDescription(spell:GetSpellID()); + end); + end + item.description = GetSpellDescription(item.spell); + end + end + if (item.talent) then + item.load = item.load or {}; + if type(item.talent) == "table" then + item.load.talent = { multi = {} }; + for _,v in pairs(item.talent) do + item.load.talent.multi[v] = true; + end + item.load.use_talent = false; + else + item.load.talent = { + single = item.talent, + multi = {}; + }; + item.load.use_talent = true; + end + end + if (item.pvptalent) then + item.load = item.load or {}; + item.load.use_pvptalent = true; + item.load.pvptalent = { + single = item.pvptalent, + multi = {}; + } + end + if (item.covenant) then + item.load = item.load or {} + item.load.use_covenant = true + item.load.covenant = { + single = item.covenant, + multi = {} + } + end + if (item.bonusItemId) then + item.load = item.load or {} + item.load.use_item_bonusid_equipped = true + item.load.item_bonusid_equipped = tostring(item.bonusItemId) + end + -- form field is lazy handled by a usable condition + if item.form then + item.usable = true + end + return waitingForItemInfo; +end + +local function addLoadCondition(item, loadCondition) + -- No need to deep copy here, templates are read-only + item.load = item.load or {}; + for k, v in pairs(loadCondition) do + item.load[k] = v; + end +end + +local delayedEnrichDatabase = false; +local itemInfoReceived = CreateFrame("Frame") + +local enrichTries = 0; +local function enrichDatabase() + if (enrichTries > 3) then + return; + end + enrichTries = enrichTries + 1; + + local waitingForItemInfo = false; + for className, class in pairs(templates.class) do + for specIndex, spec in pairs(class) do + for _, section in pairs(spec) do + local loadCondition = { + use_class = true, class = { single = className, multi = {} }, + }; + for itemIndex, item in pairs(section.args or {}) do + local handle = handleItem(item) + if(handle) then + waitingForItemInfo = true; + end + addLoadCondition(item, loadCondition); + end + end + end + end + + for raceName, race in pairs(templates.race) do + local loadCondition = { + use_race = true, race = { single = raceName, multi = {} } + }; + for _, item in pairs(race) do + local handle = handleItem(item) + if handle then + waitingForItemInfo = true; + end + if handle ~= nil then + addLoadCondition(item, loadCondition); + end + end + end + + for _, item in pairs(templates.general.args) do + if (handleItem(item)) then + waitingForItemInfo = true; + end + end + + if (waitingForItemInfo) then + itemInfoReceived:RegisterEvent("GET_ITEM_INFO_RECEIVED"); + else + itemInfoReceived:UnregisterEvent("GET_ITEM_INFO_RECEIVED"); + end +end + + +enrichDatabase(); + +itemInfoReceived:SetScript("OnEvent", function() + if (not delayedEnrichDatabase) then + delayedEnrichDatabase = true; + C_Timer.After(2, function() + enrichDatabase(); + delayedEnrichDatabase = false; + end) + end +end); + + +TemplatePrivate.triggerTemplates = templates diff --git a/WeakAurasTemplates/WeakAurasTemplates_Wrath.toc b/WeakAurasTemplates/WeakAurasTemplates_Wrath.toc new file mode 100644 index 0000000000..0fcd64cba9 --- /dev/null +++ b/WeakAurasTemplates/WeakAurasTemplates_Wrath.toc @@ -0,0 +1,19 @@ +## Interface: 30405, 38000 +## Title: WeakAuras Templates +## Author: The WeakAuras Team +## Version: @project-version@ +## Notes: Templates for WeakAuras +## Notes-esES: Plantillas para WeakAuras +## Notes-esMX: Plantillas para WeakAuras +## X-Category: Interface Enhancements +## Globe-Main: WeakAuras +## DefaultState: Enabled +## LoadOnDemand: 1 +## Dependencies: WeakAuras, WeakAurasOptions + +locales.xml + +TriggerTemplates.lua +TriggerTemplatesDataWrath.lua + +AceGUI-Widgets\AceGUIContainer-WeakAurasTemplateGroup.lua From b89e7196872595909947eebded32016ab94fcdc0 Mon Sep 17 00:00:00 2001 From: Infus Date: Tue, 25 Nov 2025 20:06:42 +0100 Subject: [PATCH 02/17] BT Multi Target mode: add warnings on it, and if it's missing a filter Fixes: #6094 --- WeakAurasOptions/BuffTrigger2.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/WeakAurasOptions/BuffTrigger2.lua b/WeakAurasOptions/BuffTrigger2.lua index d3ae4021c7..35e36d093a 100644 --- a/WeakAurasOptions/BuffTrigger2.lua +++ b/WeakAurasOptions/BuffTrigger2.lua @@ -321,6 +321,15 @@ local function GetBuffTriggerOptions(data, triggernum) end, desc = L["• |cff00ff00Player|r, |cff00ff00Target|r, |cff00ff00Focus|r, and |cff00ff00Pet|r correspond directly to those individual unitIDs.\n• |cff00ff00Specific Unit|r lets you provide a specific valid unitID to watch.\n|cffff0000Note|r: The game will not fire events for all valid unitIDs, making some untrackable by this trigger.\n• |cffffff00Party|r, |cffffff00Raid|r, |cffffff00Boss|r, |cffffff00Arena|r, and |cffffff00Nameplate|r can match multiple corresponding unitIDs.\n• |cffffff00Smart Group|r adjusts to your current group type, matching just the \"player\" when solo, \"party\" units (including \"player\") in a party or \"raid\" units in a raid.\n• |cffffff00Multi-target|r attempts to use the Combat Log events, rather than unitID, to track affected units.\n|cffff0000Note|r: Without a direct relationship to actual unitIDs, results may vary.\n\n|cffffff00*|r Yellow Unit settings can match multiple units and will default to being active even while no affected units are found without a Unit Count or Match Count setting."], }, + multiWarning = { + type = "description", + width = WeakAuras.doubleWidth, + name = L["The Multi Target mode is less reliable and not recommended."], + order = 10.15, + hidden = function() + return not (trigger.type == "aura2" and trigger.unit == "multi") + end, + }, useSpecificUnit = { type = "toggle", width = WeakAuras.normalWidth, @@ -407,6 +416,16 @@ local function GetBuffTriggerOptions(data, triggernum) and not trigger.use_debuffClass) end }, + multiNoFilterWarning = { + type = "description", + width = WeakAuras.doubleWidth, + name = L["The Multi Target mode requires a name or spell id filter"], + order = 11.9, + hidden = function() + return not (trigger.type == "aura2" and trigger.unit == "multi" + and not trigger.useName and not trigger.useExactSpellId) + end + }, useName = { type = "toggle", name = L["Name(s)"], From 4e2a6bf49eb2369b22904959c0c356f4742d3383 Mon Sep 17 00:00:00 2001 From: Infus Date: Tue, 25 Nov 2025 20:17:39 +0100 Subject: [PATCH 03/17] Profiling: Add an inherit font This should make the display fall back to a suitable font for missing glyphs. I think... Fixes: #6091 --- WeakAuras/Profiling.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WeakAuras/Profiling.xml b/WeakAuras/Profiling.xml index fd4e44b26c..8f0fc134fe 100644 --- a/WeakAuras/Profiling.xml +++ b/WeakAuras/Profiling.xml @@ -23,7 +23,7 @@ - + @@ -51,7 +51,7 @@ - + @@ -288,4 +288,4 @@ - \ No newline at end of file + From 056fe305004d7fcf99f6539b528f93fdc0ccec16 Mon Sep 17 00:00:00 2001 From: Infus Date: Tue, 25 Nov 2025 20:35:50 +0100 Subject: [PATCH 04/17] Masque Support: Support new masque version Fixes: #6098 --- WeakAuras/SubRegionTypes/Glow.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/WeakAuras/SubRegionTypes/Glow.lua b/WeakAuras/SubRegionTypes/Glow.lua index e04edd1070..ec3d4fbc3a 100644 --- a/WeakAuras/SubRegionTypes/Glow.lua +++ b/WeakAuras/SubRegionTypes/Glow.lua @@ -205,7 +205,9 @@ local funcs = { if MSQ and self.parentType == "icon" then if (visible) then - self.__MSQ_Shape = self:GetParent().button.__MSQ_Shape + local button = self:GetParent().button + local mcfg = button._MSQ_CFG + self.__MSQ_Shape = (mcfg and mcfg.Shape) or button.__MSQ_Shape self:Show() glowStart(self, self, color) else From dd823e10dfb46b503e8a23eee698de020a62eb5c Mon Sep 17 00:00:00 2001 From: NoM0Re <1629787+NoM0Re@users.noreply.github.com> Date: Thu, 27 Nov 2025 06:41:19 +0100 Subject: [PATCH 05/17] Remove atlas file from Wrath Titan Reforge as it was not running the workflow and C_Texture.GetAtlasElements() is working properly. --- WeakAuras/WeakAuras_Wrath.toc | 1 - 1 file changed, 1 deletion(-) diff --git a/WeakAuras/WeakAuras_Wrath.toc b/WeakAuras/WeakAuras_Wrath.toc index 5924dc4d75..ebc9b450b3 100644 --- a/WeakAuras/WeakAuras_Wrath.toc +++ b/WeakAuras/WeakAuras_Wrath.toc @@ -40,7 +40,6 @@ DefaultOptions.lua SubscribableObject.lua Features.lua TimeMachine.lua -Atlas_Wrath.lua Types_Wrath.lua Types.lua Prototypes.lua From 608953cad90426f5f9e1ee4ccee88bebcebace81 Mon Sep 17 00:00:00 2001 From: NoM0Re <1629787+NoM0Re@users.noreply.github.com> Date: Thu, 27 Nov 2025 18:01:46 +0100 Subject: [PATCH 06/17] Glyph Load: Only show in Mists of Pandaria --- WeakAuras/Prototypes.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/WeakAuras/Prototypes.lua b/WeakAuras/Prototypes.lua index cace6846c5..1b312053de 100644 --- a/WeakAuras/Prototypes.lua +++ b/WeakAuras/Prototypes.lua @@ -1807,6 +1807,7 @@ Private.load_prototype = { test = "WeakAuras.IsGlyphActive(%s)", events = {"GLYPH_ADDED", "GLYPH_REMOVED", "GLYPH_UPDATED", "USE_GLYPH"}, enable = WeakAuras.IsMists(), + hidden = not WeakAuras.IsMists(), }, { name = "spellknown", From be60a77af35aa6ed625dcf9e267365465a2911bb Mon Sep 17 00:00:00 2001 From: NoM0Re <1629787+NoM0Re@users.noreply.github.com> Date: Thu, 27 Nov 2025 18:00:54 +0100 Subject: [PATCH 07/17] Titan: fix repair dialog text assignment Based on PR #6107 by @barneyng --- WeakAuras/WeakAuras.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/WeakAuras/WeakAuras.lua b/WeakAuras/WeakAuras.lua index 5eb3dbed9c..da38cf946a 100644 --- a/WeakAuras/WeakAuras.lua +++ b/WeakAuras/WeakAuras.lua @@ -2441,10 +2441,11 @@ StaticPopupDialogs["WEAKAURAS_CONFIRM_REPAIR"] = { local AutomaticRepairText = L["WeakAuras has detected that it has been downgraded.\nYour saved auras may no longer work properly.\nWould you like to run the |cffff0000EXPERIMENTAL|r repair tool? This will overwrite any changes you have made since the last database upgrade.\nLast upgrade: %s\n\n|cffff0000You should BACKUP your WTF folder BEFORE pressing this button.|r"] local ManualRepairText = L["Are you sure you want to run the |cffff0000EXPERIMENTAL|r repair tool?\nThis will overwrite any changes you have made since the last database upgrade.\nLast upgrade: %s"] + local text = WeakAuras.IsWrathClassic() and self.Text or self.text if self.data.reason == "user" then - self.text:SetText(ManualRepairText:format(LastUpgrade())) + text:SetText(ManualRepairText:format(LastUpgrade())) else - self.text:SetText(AutomaticRepairText:format(LastUpgrade())) + text:SetText(AutomaticRepairText:format(LastUpgrade())) end end, OnCancel = function(self) From ffea5c449cbbc76e03776b08e62335e8fdcea0f4 Mon Sep 17 00:00:00 2001 From: NoM0Re <1629787+NoM0Re@users.noreply.github.com> Date: Thu, 27 Nov 2025 18:01:18 +0100 Subject: [PATCH 08/17] Titan: remove neutral faction group Based on PR #6107 by @barneyng --- WeakAuras/Types.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/WeakAuras/Types.lua b/WeakAuras/Types.lua index 1bf70d0173..8e4e1c7313 100644 --- a/WeakAuras/Types.lua +++ b/WeakAuras/Types.lua @@ -4580,6 +4580,7 @@ if WeakAuras.IsWrathOrCata() then Private.talent_extra_option_types[2] = nil if WeakAuras.IsWrathClassic() then + Private.faction_group.Neutral = nil Private.item_slot_types[0] = AMMOSLOT Private.item_slot_types[18] = RANGEDSLOT From ca81cc70dd3c7f3fcb98b0fcddb475b2366a4d82 Mon Sep 17 00:00:00 2001 From: NoM0Re <1629787+NoM0Re@users.noreply.github.com> Date: Thu, 27 Nov 2025 17:55:43 +0100 Subject: [PATCH 09/17] Titan: Replace encounter data with phase 1 raids & bosses Based on PR #6107 by @barneyng --- WeakAuras/Types_Wrath.lua | 126 +++++--------------------------------- 1 file changed, 14 insertions(+), 112 deletions(-) diff --git a/WeakAuras/Types_Wrath.lua b/WeakAuras/Types_Wrath.lua index b972192124..7605b9a6e1 100644 --- a/WeakAuras/Types_Wrath.lua +++ b/WeakAuras/Types_Wrath.lua @@ -15,123 +15,25 @@ function Private.InitializeEncounterAndZoneLists() end local raids = { { - L["Vault of Archavon"], + L["Molten Core"], { - { L["Archavon the Stone Watcher"], 772 }, - { L["Emalon the Storm Watcher"], 774 }, - { L["Koralon the Flame Watcher"], 776 }, - { L["Toravon the Ice Watcher"], 885 }, + { L["Lucifron"], 663 }, + { L["Magmadar"], 664 }, + { L["Gehennas"], 665 }, + { L["Garr"], 666 }, + { L["Shazzrah"], 667 }, + { L["Baron Geddon"], 668 }, + { L["Sulfuron Harbinger"], 669 }, + { L["Golemagg the Incinerator"], 670 }, + { L["Majordomo Executus"], 671 }, + { L["Ragnaros"], 672 }, } }, { - L["Naxxramas"], + L["World Bosses"], { - -- The Arachnid Quarter - { L["Anub'Rekhan"], 1107 }, - { L["Grand Widow Faerlina"], 1110 }, - { L["Maexxna"], 1116 }, - -- The Plague Quarter - { L["Noth the Plaguebringer"], 1117 }, - { L["Heigan the Unclean"], 1112 }, - { L["Loatheb"], 1115 }, - -- The Military Quarter - { L["Instructor Razuvious"], 1113 }, - { L["Gothik the Harvester"], 1109 }, - { L["The Four Horsemen"], 1121 }, - -- The Construct Quarter - { L["Patchwerk"], 1118 }, - { L["Grobbulus"], 1111 }, - { L["Gluth"], 1108 }, - { L["Thaddius"], 1120 }, - -- Frostwyrm Lair - { L["Sapphiron"], 1119 }, - { L["Kel'Thuzad"], 1114 } - } - }, - { - L["The Obsidian Sanctum"], - { - { L["Tenebron"], 736 }, - { L["Shadron"], 738 }, - { L["Vesperon"], 740 }, - { L["Sartharion"], 742 }, - } - }, - { - L["The Eye of Eternity"], - { - { L["Malygos"], 734 }, - } - }, - { - L["Ulduar"], - { - -- The Siege of Ulduar - { L["Flame Leviathan"], 744 }, - { L["Ignis the Furnace Master"], 745 }, - { L["Razorscale"], 746 }, - { L["XT-002 Deconstructor"], 747 }, - -- The Antechamber of Ulduar - { L["Assembly of Iron"], 748 }, - { L["Kologarn"], 749 }, - { L["Auriaya"], 750 }, - -- The Keepers of Ulduar - { L["Freya"], 753 }, - { L["Hodir"], 751 }, - { L["Mimiron"], 754 }, - { L["Thorim"], 752 }, - -- The Descent into Madness - { L["General Vezax"], 755 }, - { L["Yogg-Saron"], 756 }, - -- Celestial Planetarium - { L["Algalon the Observer"], 757 }, - } - }, - { - L["Trial of the Crusader"], - { - { L["Northrend Beasts"], 629 }, - { L["Lord Jaraxxus"], 633 }, - { L["Faction Champions"], 637 }, - { L["Val'kyr Twins"], 641 }, - { L["Anub'arak"], 645 }, - } - }, - { - L["Onyxia's Lair"], - { - { L["Onyxia"], 1084 }, - } - }, - { - L["Icecrown Citadel"], - { - -- The Lower Spire - { L["Lord Marrowgar"], 845 }, - { L["Lady Deathwhisper"], 846 }, - { L["Gunship Battle"], 847 }, - { L["Deathbringer Saurfang"], 848 }, - -- The Plagueworks - { L["Festergut"], 849 }, - { L["Rotface"], 850 }, - { L["Professor Putricide"], 851 }, - -- The Crimson Hall - { L["Blood Prince Council"], 852 }, - { L["Blood-Queen Lana'thel"], 853 }, - -- The Frostwing Halls - { L["Valithria Dreamwalker"], 854 }, - { L["Sindragosa"], 855 }, - -- The Frozen Throne - { L["The Lich King"], 856 }, - } - }, - { - L["The Ruby Sanctum"], - { - { L["Baltharus the Warborn"], 890 }, - { L["General Zarithrian"], 893 }, - { L["Saviana Ragefire"], 891 }, - { L["Halion"], 887 }, + { L["Azuregos"], 3440 }, + { L["Lord Kazzak"], 3437 }, } }, } From e68d9801e0294b17ba036370628facbe1d0838f2 Mon Sep 17 00:00:00 2001 From: StormFX Date: Tue, 2 Dec 2025 20:52:01 -0600 Subject: [PATCH 10/17] Fix Masque glow support. (Closes #6098) --- WeakAuras/SubRegionTypes/Glow.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WeakAuras/SubRegionTypes/Glow.lua b/WeakAuras/SubRegionTypes/Glow.lua index ec3d4fbc3a..bd9db42018 100644 --- a/WeakAuras/SubRegionTypes/Glow.lua +++ b/WeakAuras/SubRegionTypes/Glow.lua @@ -206,8 +206,8 @@ local funcs = { if MSQ and self.parentType == "icon" then if (visible) then local button = self:GetParent().button - local mcfg = button._MSQ_CFG - self.__MSQ_Shape = (mcfg and mcfg.Shape) or button.__MSQ_Shape + self._MSQ_CFG = button._MSQ_CFG + self.__MSQ_Shape = button.__MSQ_Shape self:Show() glowStart(self, self, color) else From b94beb1e5c189827e336e0a9cade369d50575841 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 20:37:40 +0000 Subject: [PATCH 11/17] Bump peter-evans/create-pull-request from 6 to 7 Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 6 to 7. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v6...v7) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/atlas-update.yml | 2 +- .github/workflows/discord-update.yaml | 2 +- .github/workflows/modelpaths-update.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/atlas-update.yml b/.github/workflows/atlas-update.yml index 72c151e2d2..22e2d0e85e 100644 --- a/.github/workflows/atlas-update.yml +++ b/.github/workflows/atlas-update.yml @@ -30,7 +30,7 @@ jobs: rm -rf .luarocks - name: Create Pull Request - uses: peter-evans/create-pull-request@v6 + uses: peter-evans/create-pull-request@v7 with: branch: update-atlasfiles commit-message: Update Atlas File List from wago.tools diff --git a/.github/workflows/discord-update.yaml b/.github/workflows/discord-update.yaml index e02cd9ea44..ab39865219 100644 --- a/.github/workflows/discord-update.yaml +++ b/.github/workflows/discord-update.yaml @@ -32,7 +32,7 @@ jobs: path: commit-body.txt - name: Create Pull Request - uses: peter-evans/create-pull-request@v6 + uses: peter-evans/create-pull-request@v7 with: branch: update-discordlist commit-message: Update Discord List diff --git a/.github/workflows/modelpaths-update.yml b/.github/workflows/modelpaths-update.yml index 500ab03ea7..0074d8e4a8 100644 --- a/.github/workflows/modelpaths-update.yml +++ b/.github/workflows/modelpaths-update.yml @@ -20,7 +20,7 @@ jobs: shell: bash - name: Create Pull Request - uses: peter-evans/create-pull-request@v6 + uses: peter-evans/create-pull-request@v7 with: branch: update-modelpaths commit-message: Update WeakAurasModelPaths from wago.tools From 469ef31020fb09e122ed65a41a19a523c522e83a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 23:15:07 +0000 Subject: [PATCH 12/17] Bump cbrgm/mastodon-github-action from 2.1.19 to 2.1.22 Bumps [cbrgm/mastodon-github-action](https://github.com/cbrgm/mastodon-github-action) from 2.1.19 to 2.1.22. - [Release notes](https://github.com/cbrgm/mastodon-github-action/releases) - [Commits](https://github.com/cbrgm/mastodon-github-action/compare/v2.1.19...v2.1.22) --- updated-dependencies: - dependency-name: cbrgm/mastodon-github-action dependency-version: 2.1.22 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/release_notifications.yml | 2 +- .github/workflows/release_notifications_manual_tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_notifications.yml b/.github/workflows/release_notifications.yml index aeae211002..4a8a66483a 100644 --- a/.github/workflows/release_notifications.yml +++ b/.github/workflows/release_notifications.yml @@ -83,7 +83,7 @@ jobs: steps: - name: Send Mastodon Notification id: mastodon - uses: cbrgm/mastodon-github-action@v2.1.19 + uses: cbrgm/mastodon-github-action@v2.1.22 with: access-token: ${{ secrets.MASTODON_ACCESS_TOKEN }} url: ${{ secrets.MASTODON_URL }} diff --git a/.github/workflows/release_notifications_manual_tests.yml b/.github/workflows/release_notifications_manual_tests.yml index d88ee89194..28d817a33c 100644 --- a/.github/workflows/release_notifications_manual_tests.yml +++ b/.github/workflows/release_notifications_manual_tests.yml @@ -102,7 +102,7 @@ jobs: steps: - name: Mastodon Notification id: mastodon - uses: cbrgm/mastodon-github-action@v2.1.19 + uses: cbrgm/mastodon-github-action@v2.1.22 with: access-token: ${{ secrets.MASTODON_ACCESS_TOKEN }} # access token url: ${{ secrets.MASTODON_URL }} # https://example.social From 4e270f5e32dcd97be2605de3552b98259cde46e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 23:49:16 +0000 Subject: [PATCH 13/17] Bump leafo/gh-actions-luarocks from 5 to 6 Bumps [leafo/gh-actions-luarocks](https://github.com/leafo/gh-actions-luarocks) from 5 to 6. - [Release notes](https://github.com/leafo/gh-actions-luarocks/releases) - [Commits](https://github.com/leafo/gh-actions-luarocks/compare/v5...v6) --- updated-dependencies: - dependency-name: leafo/gh-actions-luarocks dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/atlas-update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/atlas-update.yml b/.github/workflows/atlas-update.yml index 22e2d0e85e..038a02be7c 100644 --- a/.github/workflows/atlas-update.yml +++ b/.github/workflows/atlas-update.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v6 - uses: leafo/gh-actions-lua@v12 - - uses: leafo/gh-actions-luarocks@v5 + - uses: leafo/gh-actions-luarocks@v6 - name: Install Luarocks run: | From f1e56e83d3dd53c7e347e4455c9917fb6e16c1d2 Mon Sep 17 00:00:00 2001 From: Stanzilla <75278+Stanzilla@users.noreply.github.com> Date: Mon, 8 Dec 2025 22:36:39 +0000 Subject: [PATCH 14/17] Update Discord List --- WeakAuras/DiscordList.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/WeakAuras/DiscordList.lua b/WeakAuras/DiscordList.lua index 3d6930e892..2e50bb0b45 100644 --- a/WeakAuras/DiscordList.lua +++ b/WeakAuras/DiscordList.lua @@ -6,12 +6,10 @@ local Private = select(2, ...) Private.DiscordList = { [=[AcidWeb]=], [=[aelen]=], - [=[Alluneve]=], [=[Azortharion]=], [=[BadBrain]=], [=[Bart]=], [=[Boneshock]=], - [=[Boxthor]=], [=[Burlis]=], [=[Causese]=], [=[Chab]=], @@ -27,7 +25,6 @@ Private.DiscordList = { [=[Fliyin]=], [=[Gameaholic]=], [=[Guffin]=], - [=[Ifor]=], [=[Ironi]=], [=[Jods]=], [=[kanegasi]=], @@ -38,7 +35,6 @@ Private.DiscordList = { [=[Listefano]=], [=[Luckyone]=], [=[Luxthos]=], - [=[m33shoq]=], [=[Magic]=], [=[Manabanana]=], [=[Murph]=], From b5a2321c725ad41ff491733f2ad40c2d3a33581a Mon Sep 17 00:00:00 2001 From: NoM0Re <1629787+NoM0Re@users.noreply.github.com> Date: Sun, 7 Dec 2025 19:54:32 +0100 Subject: [PATCH 15/17] Titan: Raid Launch Fixes - Correcting difficultySize, difficulty, and instance types, including handling for the newly introduced difficulty: 'Raid: 25 Titan-Reforged' https://wago.tools/db2/Difficulty?build=3.80.0.64393 - Introducing Difficulty: 'titan' = L["Titan Reforged"] - Raised the GetDifficultyInfo loop by a arbitrarily number so that we might be able to detect new difficulties in the future. - Updated the talent-known trigger to use MiniTalentWidget and refactor so it doesnt expose globals, is nil safe, less shadowing. - The power types for Titan have been corrected and several conditional removal checks have been refactored. - Implemented a collection of activation fixes. - The bug report template has been updated to include all the latest World of Warcraft expansions. - Corrected lockoutSchool to use C_Spell.GetSchoolString, aligning it with the existing usage in the types table, and it is also marked as deprecated. - Added Vault of Archavon to Wrath encounter list. --- .github/ISSUE_TEMPLATE/bug_report.yml | 5 +- WeakAuras/Prototypes.lua | 95 ++++++++++++++++----------- WeakAuras/Types.lua | 78 +++++++++++----------- WeakAuras/Types_Wrath.lua | 6 ++ 4 files changed, 105 insertions(+), 79 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 422cb3e9a2..ca5a11ceeb 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -34,9 +34,10 @@ body: description: What version of World of Warcraft are are you running? options: - Retail (Default) - - Beta (WoW 11.0) - - Classic Era + - Mists of Pandaria Classic - Cataclysm Classic + - Titan Reforged + - Classic Era validations: required: true diff --git a/WeakAuras/Prototypes.lua b/WeakAuras/Prototypes.lua index 1b312053de..6bdb1b3169 100644 --- a/WeakAuras/Prototypes.lua +++ b/WeakAuras/Prototypes.lua @@ -1405,8 +1405,8 @@ Private.load_prototype = { init = WeakAuras.IsMistsOrRetail() and "arg" or nil, width = WeakAuras.normalWidth, optional = true, - enable = WeakAuras.IsWrathOrMistsOrRetail(), - hidden = not WeakAuras.IsWrathOrMistsOrRetail(), + enable = WeakAuras.IsMistsOrRetail(), + hidden = not WeakAuras.IsMistsOrRetail(), events = {"PET_BATTLE_OPENING_START", "PET_BATTLE_CLOSE"} }, { @@ -4165,7 +4165,7 @@ Private.event_prototypes = { store = true, conditionType = "select", enable = function(trigger) - return WeakAuras.IsClassicOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") + return WeakAuras.IsClassicOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") end }, { @@ -4464,7 +4464,7 @@ Private.event_prototypes = { store = true, conditionType = "select", enable = function(trigger) - return WeakAuras.IsClassicOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") + return WeakAuras.IsClassicOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") end }, { @@ -6972,8 +6972,12 @@ Private.event_prototypes = { force_events = (WeakAuras.IsRetail() and "TRAIT_CONFIG_UPDATED") or "CHARACTER_POINTS_CHANGED", name = L["Talent Known"], init = function(trigger) - local inverse = trigger.use_inverse and not WeakAuras.IsMistsOrRetail() + local inverse = trigger.use_inverse and not WeakAuras.IsWrathOrMistsOrRetail() local ret = {} + table.insert(ret, [[ + local active = true + local activeName, activeIcon, _ + ]]) if (trigger.use_talent) then -- Single selection local index = trigger.talent and trigger.talent.single; @@ -6982,7 +6986,7 @@ Private.event_prototypes = { table.insert(ret, ([[ local tier = %s; local column = %s; - local active = false + active = false local name, icon, _, _, rank = Private.ExecEnv.GetTalentInfo(tier, column) if rank and rank > 0 then active = true; @@ -6996,11 +7000,8 @@ Private.event_prototypes = { ]]) end elseif (trigger.use_talent == false) then + -- Multi selection if (trigger.talent.multi) then - table.insert(ret, [[ - local active = true - local activeIcon, activeName, _ - ]]) if WeakAuras.IsRetail() then table.insert(ret, [[ local index @@ -7013,7 +7014,7 @@ Private.event_prototypes = { ]]) end for index, value in pairs(trigger.talent.multi) do - if WeakAuras.IsClassicOrWrathOrCata() then + if WeakAuras.IsClassicOrCata() then local tier = index and ceil(index / MAX_NUM_TALENTS) local column = index and ((index - 1) % MAX_NUM_TALENTS + 1) table.insert(ret, ([[ @@ -7021,13 +7022,26 @@ Private.event_prototypes = { tier = %s column = %s local name, icon, _, _, rank = Private.ExecEnv.GetTalentInfo(tier, column) - if rank > 0 then + if rank and rank > 0 then active = true; activeName = name; activeIcon = icon; end end ]]):format(tier, column)) + elseif WeakAuras.IsWrathClassic() then + local tier = index and math.ceil(index / MAX_NUM_TALENTS) + local column = index and ((index - 1) % MAX_NUM_TALENTS + 1) + table.insert(ret, ([[ + tier = %s + column = %s + local shouldBeActive = %s + local rank + activeName, activeIcon, _, _, rank = Private.ExecEnv.GetTalentInfo(tier, column) + if ((rank and rank > 0) ~= shouldBeActive) then + active = false + end + ]]):format(tier, column, value and "true" or "false")) elseif WeakAuras.IsMists() then local tier = index and math.ceil(index / 3) local column = index and (index - 1) % 3 + 1 @@ -7051,7 +7065,7 @@ Private.event_prototypes = { if talentId then activeName, activeIcon, _, rank = WeakAuras.GetTalentById(talentId) if activeName ~= nil then - if rank > 0 ~= shouldBeActive then + if ((rank and rank > 0) ~= shouldBeActive) then active = false end end @@ -7066,11 +7080,11 @@ Private.event_prototypes = { end end end + -- Hero Talents if (WeakAuras.IsTWW() and trigger.use_herotalent == false) then if (trigger.herotalent.multi) then table.insert(ret, [[ local heroActive = true - local activeIcon, activeName, _ local index ]]) for index, value in pairs(trigger.herotalent.multi) do @@ -7080,7 +7094,7 @@ Private.event_prototypes = { if talentId then activeName, activeIcon, _, rank = WeakAuras.GetTalentById(talentId) if activeName ~= nil then - if rank > 0 ~= shouldBeActive then + if ((rank and rank > 0) ~= shouldBeActive) then heroActive = false end end @@ -7151,7 +7165,7 @@ Private.event_prototypes = { end end return {} - elseif WeakAuras.IsMists() then + elseif WeakAuras.IsWrathOrMists() then return Private.talentInfo[class] else if Private.talent_types_specific[class] then @@ -7161,11 +7175,11 @@ Private.event_prototypes = { end end end, - multiUseControlWhenFalse = WeakAuras.IsMistsOrRetail(), - multiAll = WeakAuras.IsMistsOrRetail(), - multiNoSingle = WeakAuras.IsMistsOrRetail(), - multiTristate = WeakAuras.IsMistsOrRetail(), -- values can be true/false/nil - control = WeakAuras.IsMistsOrRetail() and "WeakAurasMiniTalent" or nil, + multiUseControlWhenFalse = WeakAuras.IsWrathOrMistsOrRetail(), + multiAll = WeakAuras.IsWrathOrMistsOrRetail(), + multiNoSingle = WeakAuras.IsWrathOrMistsOrRetail(), + multiTristate = WeakAuras.IsWrathOrMistsOrRetail(), -- values can be true/false/nil + control = WeakAuras.IsWrathOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, multiConvertKey = WeakAuras.IsRetail() and function(trigger, key) local classId for i = 1, GetNumClasses() do @@ -7279,8 +7293,8 @@ Private.event_prototypes = { display = L["Inverse"], type = "toggle", test = "true", - enable = not WeakAuras.IsMistsOrRetail(), - hidden = WeakAuras.IsMistsOrRetail(), + enable = not WeakAuras.IsWrathOrMistsOrRetail(), + hidden = WeakAuras.IsWrathOrMistsOrRetail(), }, { hidden = true, @@ -9181,12 +9195,14 @@ Private.event_prototypes = { desc = function() if WeakAuras.IsRetail() then return L["Set IDs can be found on websites such as wowhead.com/item-sets"] - elseif WeakAuras.IsClassicEra() then - return L["Set IDs can be found on websites such as wowhead.com/classic/item-sets"] - elseif WeakAuras.IsCataClassic() then - return L["Set IDs can be found on websites such as wowhead.com/cata/item-sets"] elseif WeakAuras.IsMists() then return L["Set IDs can be found on websites such as wowhead.com/mop-classic/item-sets"] + elseif WeakAuras.IsCataClassic() then + return L["Set IDs can be found on websites such as wowhead.com/cata/item-sets"] + elseif WeakAuras.IsWotLKClassic() then + return L["Set IDs can be found on websites such as wowhead.com/wotlk/item-sets"] + elseif WeakAuras.IsClassicEra() then + return L["Set IDs can be found on websites such as wowhead.com/classic/item-sets"] end end }, @@ -9631,7 +9647,7 @@ Private.event_prototypes = { name = "lockoutSchool", display = L["Interrupted School Text"], hidden = true, - init = "lockoutSchool and lockoutSchool > 0 and GetSchoolString(lockoutSchool) or nil", + init = "lockoutSchool and lockoutSchool > 0 and C_Spell.GetSchoolString(lockoutSchool) or nil", store = true, test = "true", }, @@ -10043,7 +10059,7 @@ Private.event_prototypes = { store = true, conditionType = "select", enable = function(trigger) - return WeakAuras.IsClassicOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") + return WeakAuras.IsClassicOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") and not trigger.use_inverse end }, @@ -10715,8 +10731,8 @@ Private.event_prototypes = { operator = "and", limit = 2 }, - enable = WeakAuras.IsClassicOrCataOrMists(), - hidden = not WeakAuras.IsClassicOrCataOrMists(), + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + hidden = not WeakAuras.IsClassicOrWrathOrCataOrMists(), }, { type = "header", @@ -11049,7 +11065,7 @@ Private.event_prototypes = { name = "resistanceHeader", display = L["Resistances"], hidden = WeakAuras.IsRetail(), - enable = WeakAuras.IsClassicOrCataOrMists(), + enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), }, { name = "resistanceholy", @@ -12351,11 +12367,14 @@ if C_AssistedCombat and C_AssistedCombat.GetNextCastSpell then end if WeakAuras.IsClassicEra() then - Private.event_prototypes["Death Knight Rune"] = nil - Private.event_prototypes["Currency"] = nil Private.event_prototypes["Alternate Power"] = nil + Private.event_prototypes["Currency"] = nil + Private.event_prototypes["Death Knight Rune"] = nil Private.event_prototypes["Spell Activation Overlay"] = nil end +if WeakAuras.IsWrathClassic() then + Private.event_prototypes["Alternate Power"] = nil +end if WeakAuras.IsCataOrMists() then Private.event_prototypes["Swing Timer"] = nil end @@ -12363,16 +12382,16 @@ if WeakAuras.IsClassicOrWrathOrCata() then if not UnitDetailedThreatSituation then Private.event_prototypes["Threat Situation"] = nil end - Private.event_prototypes["Evoker Essence"] = nil - Private.event_prototypes["Equipment Set"] = nil - Private.event_prototypes["PvP Talent Selected"] = nil Private.event_prototypes["Class/Spec"] = nil + Private.event_prototypes["Equipment Set"] = nil + Private.event_prototypes["Evoker Essence"] = nil Private.event_prototypes["Loot Specialization"] = nil + Private.event_prototypes["PvP Talent Selected"] = nil end if WeakAuras.IsMists() then Private.event_prototypes["Evoker Essence"] = nil - Private.event_prototypes["PvP Talent Selected"] = nil Private.event_prototypes["Loot Specialization"] = nil + Private.event_prototypes["PvP Talent Selected"] = nil end if WeakAuras.IsRetail() then Private.event_prototypes["Queued Action"] = nil diff --git a/WeakAuras/Types.lua b/WeakAuras/Types.lua index 8e4e1c7313..7b49b270de 100644 --- a/WeakAuras/Types.lua +++ b/WeakAuras/Types.lua @@ -1672,23 +1672,22 @@ Private.power_types = { if WeakAuras.IsRetail() then Private.power_types[99] = STAGGER Private.power_types[19] = POWER_TYPE_ESSENCE -elseif WeakAuras.IsCataClassic() then - Private.power_types[8] = nil - Private.power_types[12] = nil - Private.power_types[13] = nil - Private.power_types[16] = nil - Private.power_types[17] = nil - Private.power_types[18] = nil elseif WeakAuras.IsMists() then - Private.power_types[8] = nil + for _, k in ipairs{8, 13, 16, 17, 18} do + Private.power_types[k] = nil + end Private.power_types[14] = BURNING_EMBERS - Private.power_types[13] = nil Private.power_types[15] = POWER_TYPE_DEMONIC_FURY - Private.power_types[16] = nil - Private.power_types[17] = nil - Private.power_types[18] = nil Private.power_types[28] = SHADOW_ORBS Private.power_types[99] = L["Stagger"] +elseif WeakAuras.IsCataClassic() then + for _, k in ipairs{8, 12, 13, 16, 17, 18} do + Private.power_types[k] = nil + end +elseif WeakAuras.IsWrathClassic() then + for k = 7, 18 do + Private.power_types[k] = nil + end end if WeakAuras.IsCataOrMists() then @@ -3132,10 +3131,14 @@ Private.instance_types = { ratedarena = L["Rated Arena"] } -if WeakAuras.IsClassicEra() then +if WeakAuras.IsClassicOrWrath() then Private.instance_types["ratedpvp"] = nil - Private.instance_types["arena"] = nil Private.instance_types["ratedarena"] = nil + Private.instance_types["flexible"] = nil + Private.instance_types["scenario"] = nil + if WeakAuras.IsClassicEra() then + Private.instance_types["arena"] = nil + end end ---@type table @@ -3209,11 +3212,12 @@ if not WeakAuras.IsClassicEra() then [232] = unused, -- event party [236] = L["Lorewalking"], [237] = WeakAuras.IsMists() and L["Dungeon (Celestial)"] or unused, + [244] = L["25 Player Raid (Titan Reforged)"], } Private.instance_difficulty_types[0] =L["None"] - for i = 1, 240 do + for i = 1, 260 do local name, type = GetDifficultyInfo(i) if name then if instance_difficulty_names[i] then @@ -3251,32 +3255,24 @@ Private.group_types = { } ---@type table +Private.difficulty_types = { + none = L["None"], + normal = PLAYER_DIFFICULTY1, + heroic = PLAYER_DIFFICULTY2, +} if WeakAuras.IsRetail() then - Private.difficulty_types = { - none = L["None"], - normal = PLAYER_DIFFICULTY1, - heroic = PLAYER_DIFFICULTY2, - mythic = PLAYER_DIFFICULTY6, - timewalking = PLAYER_DIFFICULTY_TIMEWALKER, - lfr = PLAYER_DIFFICULTY3, - challenge = PLAYER_DIFFICULTY5 - } -elseif WeakAuras.IsCataClassic() then - Private.difficulty_types = { - none = L["None"], - lfr = PLAYER_DIFFICULTY3, - normal = PLAYER_DIFFICULTY1, - heroic = PLAYER_DIFFICULTY2, - } + Private.difficulty_types.mythic = PLAYER_DIFFICULTY6 + Private.difficulty_types.timewalking = PLAYER_DIFFICULTY_TIMEWALKER + Private.difficulty_types.lfr = PLAYER_DIFFICULTY3 + Private.difficulty_types.challenge = PLAYER_DIFFICULTY5 elseif WeakAuras.IsMists() then - Private.difficulty_types = { - none = L["None"], - normal = PLAYER_DIFFICULTY1, - heroic = PLAYER_DIFFICULTY2, - mythic = PLAYER_DIFFICULTY6, - lfr = PLAYER_DIFFICULTY3, - challenge = PLAYER_DIFFICULTY5 - } + Private.difficulty_types.mythic = PLAYER_DIFFICULTY6 + Private.difficulty_types.lfr = PLAYER_DIFFICULTY3 + Private.difficulty_types.challenge = PLAYER_DIFFICULTY5 +elseif WeakAuras.IsCataClassic() then + Private.difficulty_types.lfr = PLAYER_DIFFICULTY3 +elseif WeakAuras.IsWrathClassic() then + Private.difficulty_types.titan = L["Titan Reforged"] end ---@type table @@ -4315,6 +4311,10 @@ Private.difficulty_info = { size = "twenty", difficulty = "normal", }, + [244] = { + size = "twentyfive", + difficulty = "titan", + }, } Private.glow_types = { diff --git a/WeakAuras/Types_Wrath.lua b/WeakAuras/Types_Wrath.lua index 7605b9a6e1..898ccadcb4 100644 --- a/WeakAuras/Types_Wrath.lua +++ b/WeakAuras/Types_Wrath.lua @@ -29,6 +29,12 @@ function Private.InitializeEncounterAndZoneLists() { L["Ragnaros"], 672 }, } }, + { + L["Vault of Archavon"], + { + { L["Archavon the Stone Watcher"], 772 }, + } + }, { L["World Bosses"], { From 734ba8e98edd8be3205814f7d4769db045f84f91 Mon Sep 17 00:00:00 2001 From: Buds Date: Tue, 25 Nov 2025 06:26:37 +0100 Subject: [PATCH 16/17] Initial support for TBC Classic 2 --- .luacheckrc | 1 + WeakAuras/Compatibility.lua | 20 +- WeakAuras/Init.lua | 4 + WeakAuras/Transmission.lua | 33 +- WeakAuras/Types_TBC.lua | 129 + WeakAuras/WeakAuras_TBC.toc | 101 + WeakAurasModelPaths/ModelPathsBCC.lua | 90243 ++++++++++++++++ .../WeakAurasModelPaths_TBC.toc | 18 + WeakAurasOptions/WeakAurasOptions_TBC.toc | 114 + .../TriggerTemplatesDataBCC.lua | 1154 + WeakAurasTemplates/WeakAurasTemplates_TBC.toc | 17 + 11 files changed, 91818 insertions(+), 16 deletions(-) create mode 100644 WeakAuras/Types_TBC.lua create mode 100644 WeakAuras/WeakAuras_TBC.toc create mode 100644 WeakAurasModelPaths/ModelPathsBCC.lua create mode 100644 WeakAurasModelPaths/WeakAurasModelPaths_TBC.toc create mode 100644 WeakAurasOptions/WeakAurasOptions_TBC.toc create mode 100644 WeakAurasTemplates/TriggerTemplatesDataBCC.lua create mode 100644 WeakAurasTemplates/WeakAurasTemplates_TBC.toc diff --git a/.luacheckrc b/.luacheckrc index fe11a629ec..af7e1f0702 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -89,6 +89,7 @@ globals = { "C_DateAndTime", "C_EditMode", "ChatFrame_AddMessageEventFilter", + "ChatFrameUtil", "Clamp", "COMBAT_TEXT_SCROLL_FUNCTION", "CombatLogGetCurrentEventInfo", diff --git a/WeakAuras/Compatibility.lua b/WeakAuras/Compatibility.lua index b1fae4cc4e..1bd9a1b476 100644 --- a/WeakAuras/Compatibility.lua +++ b/WeakAuras/Compatibility.lua @@ -76,7 +76,25 @@ else end if C_SpecializationInfo and C_SpecializationInfo.GetTalentInfo and not WeakAuras.IsClassicEra() then - if WeakAuras.IsWrathClassic() then + if WeakAuras.IsTBC() then + Private.ExecEnv.GetTalentInfo = function(tabIndex, talentIndex, isInspect, isPet, groupIndex) + local talentInfoQuery = {}; + talentInfoQuery.specializationIndex = tabIndex; + talentInfoQuery.talentIndex = talentIndex; + talentInfoQuery.isInspect = isInspect; + talentInfoQuery.isPet = isPet; + talentInfoQuery.groupIndex = groupIndex; + local talentInfo = C_SpecializationInfo.GetTalentInfo(talentInfoQuery); + if not talentInfo then + return nil; + end + + return talentInfo.name, talentInfo.icon, talentInfo.tier, talentInfo.column, talentInfo.rank, + talentInfo.maxRank, talentInfo.meetsPrereq, talentInfo.previewRank, + talentInfo.meetsPreviewPrereq, talentInfo.isExceptional, talentInfo.hasGoldBorder, + talentInfo.talentID; + end + elseif WeakAuras.IsWrathClassic() then -- copy pasta from Interface/AddOns/Blizzard_DeprecatedSpecialization/Deprecated_Specialization_Wrath.lua Private.ExecEnv.GetTalentInfo = function(tabIndex, talentIndex, isInspect, isPet, groupIndex) local talentInfoQuery = {} diff --git a/WeakAuras/Init.lua b/WeakAuras/Init.lua index 7a1d94475e..f79e8f17bd 100644 --- a/WeakAuras/Init.lua +++ b/WeakAuras/Init.lua @@ -429,6 +429,10 @@ end -- save compatibility with old auras WeakAuras.IsClassic = WeakAuras.IsClassicEra +function WeakAuras.IsTBC() + return flavor == 2 +end + ---@return boolean result function WeakAuras.IsWrathClassic() return flavor == 3 diff --git a/WeakAuras/Transmission.lua b/WeakAuras/Transmission.lua index bd3cfc067b..57e5097da8 100644 --- a/WeakAuras/Transmission.lua +++ b/WeakAuras/Transmission.lua @@ -197,21 +197,24 @@ local function filterFunc(_, event, msg, player, l, cs, t, flag, channelId, ...) end end -ChatFrame_AddMessageEventFilter("CHAT_MSG_CHANNEL", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_YELL", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_GUILD", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_OFFICER", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_PARTY", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_PARTY_LEADER", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_RAID", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_RAID_LEADER", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_SAY", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_WHISPER", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_WHISPER_INFORM", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_BN_WHISPER", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_BN_WHISPER_INFORM", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_INSTANCE_CHAT", filterFunc) -ChatFrame_AddMessageEventFilter("CHAT_MSG_INSTANCE_CHAT_LEADER", filterFunc) +if not WeakAuras.IsTBC() then + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_CHANNEL", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_YELL", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_GUILD", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_OFFICER", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_PARTY", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_PARTY_LEADER", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_RAID", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_RAID_LEADER", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_SAY", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_WHISPER", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_WHISPER_INFORM", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_BN_WHISPER", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_BN_WHISPER_INFORM", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_INSTANCE_CHAT", filterFunc) + ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_INSTANCE_CHAT_LEADER", filterFunc) +end + local Compresser = LibStub:GetLibrary("LibCompress") local LibDeflate = LibStub:GetLibrary("LibDeflate") diff --git a/WeakAuras/Types_TBC.lua b/WeakAuras/Types_TBC.lua new file mode 100644 index 0000000000..9c313ceb9a --- /dev/null +++ b/WeakAuras/Types_TBC.lua @@ -0,0 +1,129 @@ +if not WeakAuras.IsLibsOK() then return end +--- @type string, Private +local AddonName, Private = ... + +local WeakAuras = WeakAuras; +local L = WeakAuras.L; + +local encounter_list = "" +function Private.InitializeEncounterAndZoneLists() + if encounter_list ~= "" then + return + end + local raids = { + { + L["Karazhan"], + { + { L["Attumen the Huntsman"], 652 }, + { L["Moroes"], 653 }, + { L["Maiden of Virtue"], 654 }, + { L["Opera Hall"], 655 }, + { L["The Curator"], 656 }, + { L["Terestian Illhoof"], 657 }, + { L["Shade of Aran"], 658 }, + { L["Netherspite"], 659 }, + { L["Chess Event"], 660 }, + { L["Prince Malchezaar"], 661 }, + { L["Nightbane"], 662 }, + } + }, + { + L["Gruul's Lair"], + { + { L["High King Maulgar"], 649 }, + { L["Gruul the Dragonkiller"], 650 }, + } + }, + { + L["Magtheridon's Lair"], + { + { L["Magtheridon"], 651 }, + } + }, + { + L["Coilfang: Serpentshrine Cavern"], + { + { L["Hydross the Unstable"], 623 }, + { L["The Lurker Below"], 624 }, + { L["Leotheras the Blind"], 625 }, + { L["Fathom-Lord Karathress"], 626 }, + { L["Morogrim Tidewalker"], 627 }, + { L["Lady Vashj"], 628 }, + } + }, + { + L["Tempest Keep"], + { + { L["Al'ar"], 730 }, + { L["Void Reaver"], 731 }, + { L["High Astromancer Solarian"], 732 }, + { L["Kael'thas Sunstrider"], 733 }, + } + }, + { + L["The Battle for Mount Hyjal"], + { + { L["Rage Winterchill"], 618 }, + { L["Anetheron"], 619 }, + { L["Kaz'rogal"], 620 }, + { L["Azgalor"], 621 }, + { L["Archimonde"], 622 }, + } + }, + { + L["Black Temple"], + { + { L["High Warlord Naj'entus"], 601 }, + { L["Supremus"], 602 }, + { L["Shade of Akama"], 603 }, + { L["Teron Gorefiend"], 604 }, + { L["Gurtogg Bloodboil"], 605 }, + { L["Reliquary of Souls"], 606 }, + { L["Mother Shahraz"], 607 }, + { L["The Illidari Council"], 608 }, + { L["Illidan Stormrage"], 609 }, + } + }, + { + L["Zul'Aman"], + { + { L["Akil'zon"], 1189 }, + { L["Nalorakk"], 1190 }, + { L["Jan'alai"], 1191 }, + { L["Halazzi"], 1192 }, + { L["Hex Lord Malacrass"], 1193 }, + { L["Daakara"], 1194 }, + } + }, + { + L["The Sunwell Plateau"], + { + { L["Kalecgos"], 724 }, + { L["Brutallus"], 725 }, + { L["Felmyst"], 726 }, + { L["Eredar Twins"], 727 }, + { L["M'uru"], 728 }, + { L["Kil'jaeden"], 729 }, + } + } + } + + for _, raid in ipairs(raids) do + encounter_list = ("%s|cffffd200%s|r\n"):format(encounter_list, raid[1]) + for _, boss in ipairs(raid[2]) do + encounter_list = ("%s%s: %d\n"):format(encounter_list, boss[1], boss[2]) + end + encounter_list = encounter_list .. "\n" + end + + encounter_list = encounter_list:sub(1, -3) .. "\n\n" .. L["Supports multiple entries, separated by commas\n"] +end + +function Private.get_encounters_list() + return encounter_list +end + + +function Private.get_zoneId_list() + return "" +end diff --git a/WeakAuras/WeakAuras_TBC.toc b/WeakAuras/WeakAuras_TBC.toc new file mode 100644 index 0000000000..a3c432a20e --- /dev/null +++ b/WeakAuras/WeakAuras_TBC.toc @@ -0,0 +1,101 @@ +## Interface: 205505 +## Title: WeakAuras +## Author: The WeakAuras Team +## Version: @project-version@ +## X-Flavor: TBC +## Notes: A powerful, comprehensive utility for displaying graphics and information based on buffs, debuffs, and other triggers. +## Notes-esES: Potente y completa aplicación que te permitirá mostrar por pantalla múltiples diseños, basados en beneficios, perjuicios y otros activadores. +## Notes-esMX: Potente y completa aplicación que te permitirá mostrar por pantalla múltiples diseños, basados en beneficios, perjuicios y otros activadores. +## Notes-deDE: Ein leistungsfähiges, umfassendes Addon zur grafischen Darstellung von Informationen von Auren, Cooldowns, Timern und vielem mehr. +## Notes-ruRU: Мощный, многосторонний инструмент для отображения графики и информации, основанной на баффах, дебаффах и других триггерах. +## Notes-zhTW: 一個強大且全面實用的顯示圖形和訊息基於增益,減益和其它觸發。 +## X-Category: Interface Enhancements +## Globe-Post: WeakAurasOptions, WeakAurasModelPaths, WeakAurasTemplates +## X-Website: https://www.curseforge.com/wow/addons/weakauras +## X-Curse-Project-ID: 65387 +## X-WoWI-ID: 24910 +## X-Wago-ID: VBNBxKx5 +## DefaultState: Enabled +## LoadOnDemand: 0 +## SavedVariables: WeakAurasSaved +## OptionalDeps: Ace3, LibCompress, LibSharedMedia-3.0, AceGUI-3.0-SharedMediaWidgets, Masque, GTFO, LibButtonGlow-1.0, LibSpellRange-1.0, LibRangeCheck-3.0, LibDBIcon-1.0, LibGetFrame-1.0, !LibUIDropDownMenu, !!AddonLocale, CustomNames, BigWigs, DBM-Core +## AllowLoadGameType: tbc + +# External code + initialization +embeds.xml + +# TaintLess +Libs\TaintLess\TaintLess.xml + +# Client flavor specific libs +Libs\LibSpecialization\LibSpecialization.lua + +Init.lua +Compatibility.lua +locales.xml +ArchiveTypes\Repository.lua +DefaultOptions.lua + +# Core files +SubscribableObject.lua +Features.lua +TimeMachine.lua +Types_TBC.lua +Types.lua +Prototypes.lua +Profiling.lua +Profiling.xml +WeakAuras.lua +History.lua +Transmission.lua +Modernize.lua +Animations.lua +Conditions.lua +AnchorToWeakAuras.lua + +# Trigger systems +LibSpecializationWrapper.lua +BuffTrigger2.lua +GenericTrigger.lua +BossMods.lua + +# Helper Systems +TSUHelpers.lua +AuraWarnings.lua +AuraEnvironment.lua +AuraEnvironmentWrappedSystems.lua +DebugLog.lua + +# Region support +RegionTypes\SmoothStatusBarMixin.lua +RegionTypes\RegionPrototype.lua +RegionTypes\Empty.lua +BaseRegions\TextureCoords.lua +BaseRegions\CircularProgressTexture.lua +BaseRegions\LinearProgressTexture.lua +RegionTypes\ProgressTexture.lua +BaseRegions\Texture.lua +RegionTypes\Texture.lua +RegionTypes\AuraBar.lua +RegionTypes\Icon.lua +RegionTypes\Text.lua +RegionTypes\Group.lua +RegionTypes\DynamicGroup.lua +BaseRegions\StopMotion.lua +RegionTypes\StopMotion.lua +RegionTypes\Model.lua + +# Sub-region support +SubRegionTypes\Background.lua +SubRegionTypes\SubText.lua +SubRegionTypes\Border.lua +SubRegionTypes\Glow.lua +SubRegionTypes\Tick.lua +SubRegionTypes\Model.lua +SubRegionTypes\StopMotion.lua +SubRegionTypes\Texture.lua +SubRegionTypes\CircularProgressTexture.lua +SubRegionTypes\LinearProgressTexture.lua + +#Misc +DiscordList.lua diff --git a/WeakAurasModelPaths/ModelPathsBCC.lua b/WeakAurasModelPaths/ModelPathsBCC.lua new file mode 100644 index 0000000000..bdbfe0e3d8 --- /dev/null +++ b/WeakAurasModelPaths/ModelPathsBCC.lua @@ -0,0 +1,90243 @@ +WeakAuras.ModelPaths = { + { + children = { + { + fileId = "116902", + value = "flybybloodelf.m2", + text = "flybybloodelf.m2", + }, + { + fileId = "116903", + value = "flybydraenei.m2", + text = "flybydraenei.m2", + }, + { + fileId = "116904", + value = "flybydwarf.m2", + text = "flybydwarf.m2", + }, + { + fileId = "116905", + value = "flybygnome.m2", + text = "flybygnome.m2", + }, + { + fileId = "116906", + value = "flybyhuman.m2", + text = "flybyhuman.m2", + }, + { + fileId = "116907", + value = "flybynightelf.m2", + text = "flybynightelf.m2", + }, + { + fileId = "116908", + value = "flybyorc.m2", + text = "flybyorc.m2", + }, + { + fileId = "116909", + value = "flybysunwell5man.m2", + text = "flybysunwell5man.m2", + }, + { + fileId = "116910", + value = "flybytauren.m2", + text = "flybytauren.m2", + }, + { + fileId = "116911", + value = "flybytroll.m2", + text = "flybytroll.m2", + }, + { + fileId = "116912", + value = "flybyundead.m2", + text = "flybyundead.m2", + }, + { + fileId = "116913", + value = "orcintro01.m2", + text = "orcintro01.m2", + }, + { + fileId = "116914", + value = "orcintro02.m2", + text = "orcintro02.m2", + }, + { + fileId = "116915", + value = "orcintro03.m2", + text = "orcintro03.m2", + }, + { + fileId = "116916", + value = "orcintro04.m2", + text = "orcintro04.m2", + }, + { + fileId = "116917", + value = "orcintro05.m2", + text = "orcintro05.m2", + }, + { + fileId = "116918", + value = "orcintro06.m2", + text = "orcintro06.m2", + }, + { + fileId = "116919", + value = "palantirofazora.m2", + text = "palantirofazora.m2", + }, + { + fileId = "116920", + value = "scry_cam.m2", + text = "scry_cam.m2", + }, + }, + value = "cameras", + text = "cameras", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "116921", + value = "bloodelffemale.m2", + text = "bloodelffemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "117170", + value = "bloodelfmale.m2", + text = "bloodelfmale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "bloodelf", + text = "bloodelf", + }, + { + children = { + { + children = { + { + fileId = "117400", + value = "brokenfemale.m2", + text = "brokenfemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "117412", + value = "brokenmale.m2", + text = "brokenmale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "broken", + text = "broken", + }, + { + children = { + { + children = { + { + fileId = "117437", + value = "draeneifemale.m2", + text = "draeneifemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "117721", + value = "draeneimale.m2", + text = "draeneimale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "draenei", + text = "draenei", + }, + { + children = { + { + children = { + { + fileId = "118135", + value = "dwarffemale.m2", + text = "dwarffemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "118355", + value = "dwarfmale.m2", + text = "dwarfmale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "dwarf", + text = "dwarf", + }, + { + children = { + { + children = { + { + fileId = "118652", + value = "felorcfemale.m2", + text = "felorcfemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "118653", + value = "felorcmale.m2", + text = "felorcmale.m2", + }, + { + fileId = "118654", + value = "felorcmaleaxe.m2", + text = "felorcmaleaxe.m2", + }, + { + fileId = "118667", + value = "felorcmalesword.m2", + text = "felorcmalesword.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "felorc", + text = "felorc", + }, + { + children = { + { + children = { + { + fileId = "118798", + value = "foresttrollmale.m2", + text = "foresttrollmale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "foresttroll", + text = "foresttroll", + }, + { + children = { + { + children = { + { + fileId = "119063", + value = "gnomefemale.m2", + text = "gnomefemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "119159", + value = "gnomemale.m2", + text = "gnomemale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "gnome", + text = "gnome", + }, + { + children = { + { + children = { + { + fileId = "119369", + value = "goblinfemale.m2", + text = "goblinfemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "119376", + value = "goblinmale.m2", + text = "goblinmale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "goblin", + text = "goblin", + }, + { + children = { + { + children = { + { + fileId = "119563", + value = "humanfemale.m2", + text = "humanfemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "119940", + value = "humanmale.m2", + text = "humanmale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "human", + text = "human", + }, + { + children = { + { + children = { + { + fileId = "120263", + value = "naga_female.m2", + text = "naga_female.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "120294", + value = "naga_male.m2", + text = "naga_male.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "naga_", + text = "naga_", + }, + { + children = { + { + children = { + { + fileId = "120590", + value = "nightelffemale.m2", + text = "nightelffemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "120791", + value = "nightelfmale.m2", + text = "nightelfmale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "nightelf", + text = "nightelf", + }, + { + children = { + { + children = { + { + fileId = "121087", + value = "orcfemale.m2", + text = "orcfemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "121287", + value = "orcmale.m2", + text = "orcmale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "orc", + text = "orc", + }, + { + children = { + { + children = { + { + fileId = "121608", + value = "scourgefemale.m2", + text = "scourgefemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "121768", + value = "scourgemale.m2", + text = "scourgemale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "scourge", + text = "scourge", + }, + { + children = { + { + children = { + { + fileId = "121941", + value = "skeletonfemale.m2", + text = "skeletonfemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "121942", + value = "skeletonmale.m2", + text = "skeletonmale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "skeleton", + text = "skeleton", + }, + { + children = { + { + children = { + { + fileId = "121961", + value = "taurenfemale.m2", + text = "taurenfemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "122055", + value = "taurenmale.m2", + text = "taurenmale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "tauren", + text = "tauren", + }, + { + children = { + { + children = { + { + fileId = "122414", + value = "trollfemale.m2", + text = "trollfemale.m2", + }, + }, + value = "female", + text = "female", + }, + { + children = { + { + fileId = "122560", + value = "trollmale.m2", + text = "trollmale.m2", + }, + }, + value = "male", + text = "male", + }, + }, + value = "troll", + text = "troll", + }, + }, + value = "character", + text = "character", + }, + { + children = { + { + children = { + { + fileId = "122866", + value = "abyssal_illidan.m2", + text = "abyssal_illidan.m2", + }, + }, + value = "abyssalillidan", + text = "abyssalillidan", + }, + { + children = { + { + fileId = "122870", + value = "abyssal_outland.m2", + text = "abyssal_outland.m2", + }, + }, + value = "abyssaloutland", + text = "abyssaloutland", + }, + { + children = { + { + fileId = "122877", + value = "airelemental.m2", + text = "airelemental.m2", + }, + }, + value = "airelemental", + text = "airelemental", + }, + { + children = { + { + fileId = "122883", + value = "akama.m2", + text = "akama.m2", + }, + }, + value = "akama", + text = "akama", + }, + { + children = { + { + fileId = "122886", + value = "alliancerider.m2", + text = "alliancerider.m2", + }, + }, + value = "alliancerider", + text = "alliancerider", + }, + { + children = { + { + fileId = "122889", + value = "ancientofarcane.m2", + text = "ancientofarcane.m2", + }, + }, + value = "ancientofarcane", + text = "ancientofarcane", + }, + { + children = { + { + fileId = "122893", + value = "ancientoflore.m2", + text = "ancientoflore.m2", + }, + }, + value = "ancientoflore", + text = "ancientoflore", + }, + { + children = { + { + fileId = "122895", + value = "ancientofwar.m2", + text = "ancientofwar.m2", + }, + }, + value = "ancientofwar", + text = "ancientofwar", + }, + { + children = { + { + fileId = "122899", + value = "ancientprotector.m2", + text = "ancientprotector.m2", + }, + }, + value = "ancientprotector", + text = "ancientprotector", + }, + { + children = { + { + fileId = "122906", + value = "anubisath.m2", + text = "anubisath.m2", + }, + }, + value = "anubisath", + text = "anubisath", + }, + { + children = { + { + fileId = "122910", + value = "arakkoa.m2", + text = "arakkoa.m2", + }, + { + fileId = "122914", + value = "arakkoa_sage.m2", + text = "arakkoa_sage.m2", + }, + { + fileId = "122924", + value = "arakkoa_warrior.m2", + text = "arakkoa_warrior.m2", + }, + }, + value = "arakkoa", + text = "arakkoa", + }, + { + children = { + { + fileId = "122952", + value = "arcanegolem.m2", + text = "arcanegolem.m2", + }, + { + fileId = "122953", + value = "arcanegolembroken.m2", + text = "arcanegolembroken.m2", + }, + }, + value = "arcanegolem", + text = "arcanegolem", + }, + { + children = { + { + fileId = "122955", + value = "arcanetitan.m2", + text = "arcanetitan.m2", + }, + }, + value = "arcanetitan", + text = "arcanetitan", + }, + { + children = { + { + fileId = "122957", + value = "arcanevoidwraith.m2", + text = "arcanevoidwraith.m2", + }, + }, + value = "arcanevoidwraith", + text = "arcanevoidwraith", + }, + { + children = { + { + fileId = "122975", + value = "babybeholder.m2", + text = "babybeholder.m2", + }, + }, + value = "babybeholder", + text = "babybeholder", + }, + { + children = { + { + fileId = "122977", + value = "babycrocodile.m2", + text = "babycrocodile.m2", + }, + }, + value = "babycrocodile", + text = "babycrocodile", + }, + { + children = { + { + fileId = "122982", + value = "babyelekk.m2", + text = "babyelekk.m2", + }, + }, + value = "babyelekk", + text = "babyelekk", + }, + { + children = { + { + fileId = "122988", + value = "babyhawkstrider.m2", + text = "babyhawkstrider.m2", + }, + }, + value = "babyhawkstrider", + text = "babyhawkstrider", + }, + { + children = { + { + fileId = "122994", + value = "band_drumset.m2", + text = "band_drumset.m2", + }, + { + fileId = "122997", + value = "bandbloodelfmale.m2", + text = "bandbloodelfmale.m2", + }, + { + fileId = "122999", + value = "bandorcmale.m2", + text = "bandorcmale.m2", + }, + { + fileId = "123001", + value = "bandtaurenmale.m2", + text = "bandtaurenmale.m2", + }, + { + fileId = "123004", + value = "bandtrollmale.m2", + text = "bandtrollmale.m2", + }, + { + fileId = "123005", + value = "bandundeadmale.m2", + text = "bandundeadmale.m2", + }, + }, + value = "band", + text = "band", + }, + { + children = { + { + fileId = "123014", + value = "banshee.m2", + text = "banshee.m2", + }, + }, + value = "banshee", + text = "banshee", + }, + { + children = { + { + fileId = "123020", + value = "basilisk.m2", + text = "basilisk.m2", + }, + }, + value = "basilisk", + text = "basilisk", + }, + { + children = { + { + fileId = "123035", + value = "basilisk_outland.m2", + text = "basilisk_outland.m2", + }, + }, + value = "basiliskoutland", + text = "basiliskoutland", + }, + { + children = { + { + fileId = "123040", + value = "bear.m2", + text = "bear.m2", + }, + { + fileId = "123051", + value = "polarbearcub.m2", + text = "polarbearcub.m2", + }, + }, + value = "bear", + text = "bear", + }, + { + children = { + { + fileId = "123053", + value = "bearcub.m2", + text = "bearcub.m2", + }, + }, + value = "bearcub", + text = "bearcub", + }, + { + children = { + { + fileId = "123055", + value = "beargod.m2", + text = "beargod.m2", + }, + }, + value = "beargod", + text = "beargod", + }, + { + children = { + { + fileId = "123058", + value = "bearmount.m2", + text = "bearmount.m2", + }, + }, + value = "bearmount", + text = "bearmount", + }, + { + children = { + { + fileId = "123067", + value = "bearmountalt.m2", + text = "bearmountalt.m2", + }, + }, + value = "bearmountalt", + text = "bearmountalt", + }, + { + children = { + { + fileId = "123071", + value = "beholder.m2", + text = "beholder.m2", + }, + }, + value = "beholder", + text = "beholder", + }, + { + children = { + { + fileId = "123079", + value = "bloodelffemalekid.m2", + text = "bloodelffemalekid.m2", + }, + }, + value = "bloodelffemalekid", + text = "bloodelffemalekid", + }, + { + children = { + { + fileId = "123081", + value = "bloodelfmale_guard.m2", + text = "bloodelfmale_guard.m2", + }, + }, + value = "bloodelfguard", + text = "bloodelfguard", + }, + { + children = { + { + fileId = "123088", + value = "bloodelfmalekid.m2", + text = "bloodelfmalekid.m2", + }, + }, + value = "bloodelfmalekid", + text = "bloodelfmalekid", + }, + { + children = { + { + fileId = "123090", + value = "boar.m2", + text = "boar.m2", + }, + { + fileId = "123100", + value = "boartruesilver.m2", + text = "boartruesilver.m2", + }, + }, + value = "boar", + text = "boar", + }, + { + children = { + { + fileId = "123101", + value = "bodyofkathune.m2", + text = "bodyofkathune.m2", + }, + }, + value = "bodyofkathune", + text = "bodyofkathune", + }, + { + children = { + { + fileId = "123105", + value = "bogbeast.m2", + text = "bogbeast.m2", + }, + }, + value = "bogbeast", + text = "bogbeast", + }, + { + children = { + { + fileId = "123120", + value = "bonegolem.m2", + text = "bonegolem.m2", + }, + }, + value = "bonegolem", + text = "bonegolem", + }, + { + children = { + { + fileId = "123124", + value = "boneworm.m2", + text = "boneworm.m2", + }, + }, + value = "boneworm", + text = "boneworm", + }, + { + children = { + { + fileId = "123129", + value = "be_broom01.m2", + text = "be_broom01.m2", + }, + }, + value = "broom", + text = "broom", + }, + { + children = { + { + fileId = "123130", + value = "broommount.m2", + text = "broommount.m2", + }, + }, + value = "broommount", + text = "broommount", + }, + { + children = { + { + fileId = "123133", + value = "brutallus.m2", + text = "brutallus.m2", + }, + }, + value = "brutallus", + text = "brutallus", + }, + { + children = { + { + fileId = "123137", + value = "carrionbird.m2", + text = "carrionbird.m2", + }, + }, + value = "carrionbird", + text = "carrionbird", + }, + { + children = { + { + fileId = "123148", + value = "carrionbirdoutland.m2", + text = "carrionbirdoutland.m2", + }, + }, + value = "carrionbirdoutland", + text = "carrionbirdoutland", + }, + { + children = { + { + fileId = "123162", + value = "cat.m2", + text = "cat.m2", + }, + }, + value = "cat", + text = "cat", + }, + { + children = { + { + fileId = "123170", + value = "centaur.m2", + text = "centaur.m2", + }, + { + fileId = "123171", + value = "centaurcaster.m2", + text = "centaurcaster.m2", + }, + { + fileId = "123182", + value = "centaurkhan.m2", + text = "centaurkhan.m2", + }, + { + fileId = "123194", + value = "centaurwarrior.m2", + text = "centaurwarrior.m2", + }, + }, + value = "centaur", + text = "centaur", + }, + { + children = { + { + fileId = "123200", + value = "chicken.m2", + text = "chicken.m2", + }, + }, + value = "chicken", + text = "chicken", + }, + { + children = { + { + fileId = "123205", + value = "chimera.m2", + text = "chimera.m2", + }, + }, + value = "chimera", + text = "chimera", + }, + { + children = { + { + fileId = "123214", + value = "chimeraoutland.m2", + text = "chimeraoutland.m2", + }, + }, + value = "chimeraoutland", + text = "chimeraoutland", + }, + { + children = { + { + fileId = "123225", + value = "chinesedragon.m2", + text = "chinesedragon.m2", + }, + }, + value = "chinesedragon", + text = "chinesedragon", + }, + { + children = { + { + fileId = "123235", + value = "clawofkathune.m2", + text = "clawofkathune.m2", + }, + }, + value = "clawofkathune", + text = "clawofkathune", + }, + { + children = { + { + fileId = "123240", + value = "clefthoove.m2", + text = "clefthoove.m2", + }, + }, + value = "clefthoove", + text = "clefthoove", + }, + { + children = { + { + fileId = "2199326", + value = "cloudfire.m2", + text = "cloudfire.m2", + }, + { + fileId = "2199576", + value = "cloudradioactive.m2", + text = "cloudradioactive.m2", + }, + { + fileId = "123265", + value = "cloudswampgas.m2", + text = "cloudswampgas.m2", + }, + { + fileId = "123266", + value = "cloudswampgas_shadowmoon_white.m2", + text = "cloudswampgas_shadowmoon_white.m2", + }, + }, + value = "cloud", + text = "cloud", + }, + { + children = { + { + fileId = "123268", + value = "cockatriceelite.m2", + text = "cockatriceelite.m2", + }, + { + fileId = "123275", + value = "cockatricemount.m2", + text = "cockatricemount.m2", + }, + }, + value = "cockatrice", + text = "cockatrice", + }, + { + children = { + { + fileId = "123284", + value = "cockroach.m2", + text = "cockroach.m2", + }, + }, + value = "cockroach", + text = "cockroach", + }, + { + children = { + { + fileId = "123285", + value = "cocoon.m2", + text = "cocoon.m2", + }, + }, + value = "cocoon", + text = "cocoon", + }, + { + children = { + { + fileId = "123288", + value = "cow.m2", + text = "cow.m2", + }, + }, + value = "cow", + text = "cow", + }, + { + children = { + { + fileId = "123291", + value = "crab.m2", + text = "crab.m2", + }, + }, + value = "crab", + text = "crab", + }, + { + children = { + { + fileId = "123299", + value = "crackelfmale.m2", + text = "crackelfmale.m2", + }, + }, + value = "crackelf", + text = "crackelf", + }, + { + children = { + { + fileId = "123304", + value = "cratecreature.m2", + text = "cratecreature.m2", + }, + { + fileId = "123306", + value = "cratecreaturebasic.m2", + text = "cratecreaturebasic.m2", + }, + }, + value = "cratecreature", + text = "cratecreature", + }, + { + children = { + { + fileId = "123307", + value = "crawler.m2", + text = "crawler.m2", + }, + }, + value = "crawler", + text = "crawler", + }, + { + children = { + { + fileId = "123320", + value = "crawlerelite.m2", + text = "crawlerelite.m2", + }, + }, + value = "crawlerelite", + text = "crawlerelite", + }, + { + children = { + { + fileId = "123324", + value = "crocodile.m2", + text = "crocodile.m2", + }, + }, + value = "crocodile", + text = "crocodile", + }, + { + children = { + { + fileId = "123329", + value = "cryptfiend.m2", + text = "cryptfiend.m2", + }, + }, + value = "cryptfiend", + text = "cryptfiend", + }, + { + children = { + { + fileId = "123335", + value = "cryptlord.m2", + text = "cryptlord.m2", + }, + { + fileId = "123337", + value = "cryptlord_underground.m2", + text = "cryptlord_underground.m2", + }, + }, + value = "cryptlord", + text = "cryptlord", + }, + { + children = { + { + fileId = "123343", + value = "crypt_scarab.m2", + text = "crypt_scarab.m2", + }, + }, + value = "cryptscarab", + text = "cryptscarab", + }, + { + children = { + { + fileId = "123344", + value = "crystalportal.m2", + text = "crystalportal.m2", + }, + }, + value = "crystalportal", + text = "crystalportal", + }, + { + children = { + { + fileId = "123345", + value = "cupid.m2", + text = "cupid.m2", + }, + }, + value = "cupid", + text = "cupid", + }, + { + children = { + { + fileId = "123348", + value = "darkhound.m2", + text = "darkhound.m2", + }, + }, + value = "darkhound", + text = "darkhound", + }, + { + children = { + { + fileId = "123362", + value = "deer.m2", + text = "deer.m2", + }, + }, + value = "deer", + text = "deer", + }, + { + children = { + { + fileId = "123372", + value = "demonhunter.m2", + text = "demonhunter.m2", + }, + }, + value = "demonhunter", + text = "demonhunter", + }, + { + children = { + { + fileId = "123375", + value = "diablofunsized.m2", + text = "diablofunsized.m2", + }, + }, + value = "diablo", + text = "diablo", + }, + { + children = { + { + fileId = "123377", + value = "diemetradon.m2", + text = "diemetradon.m2", + }, + }, + value = "diemetradon", + text = "diemetradon", + }, + { + children = { + { + fileId = "123388", + value = "direwolf.m2", + text = "direwolf.m2", + }, + { + fileId = "123410", + value = "pvpridingdirewolf.m2", + text = "pvpridingdirewolf.m2", + }, + { + fileId = "123418", + value = "ridingdirewolf.m2", + text = "ridingdirewolf.m2", + }, + }, + value = "direwolf", + text = "direwolf", + }, + { + children = { + { + fileId = "123441", + value = "doomguard.m2", + text = "doomguard.m2", + }, + }, + value = "doomguard", + text = "doomguard", + }, + { + children = { + { + fileId = "123443", + value = "doomguardoutland.m2", + text = "doomguardoutland.m2", + }, + }, + value = "doomguardoutland", + text = "doomguardoutland", + }, + { + children = { + { + fileId = "123455", + value = "draeneifemalekid.m2", + text = "draeneifemalekid.m2", + }, + }, + value = "draeneifemalekid", + text = "draeneifemalekid", + }, + { + children = { + { + fileId = "123457", + value = "draeneimalekid.m2", + text = "draeneimalekid.m2", + }, + }, + value = "draeneimalekid", + text = "draeneimalekid", + }, + { + children = { + { + fileId = "123459", + value = "dragon.m2", + text = "dragon.m2", + }, + { + fileId = "123460", + value = "dragonazurgoz.m2", + text = "dragonazurgoz.m2", + }, + { + fileId = "123461", + value = "dragonnefarian.m2", + text = "dragonnefarian.m2", + }, + { + fileId = "123465", + value = "dragononyxia.m2", + text = "dragononyxia.m2", + }, + { + fileId = "123496", + value = "lethon.m2", + text = "lethon.m2", + }, + { + fileId = "123498", + value = "taerar.m2", + text = "taerar.m2", + }, + { + fileId = "123499", + value = "taerar_q.m2", + text = "taerar_q.m2", + }, + }, + value = "dragon", + text = "dragon", + }, + { + children = { + { + fileId = "123500", + value = "dragondarkshade.m2", + text = "dragondarkshade.m2", + }, + }, + value = "dragondarkshade", + text = "dragondarkshade", + }, + { + children = { + { + fileId = "123507", + value = "dragonfootsoldier.m2", + text = "dragonfootsoldier.m2", + }, + }, + value = "dragonfootsoldier", + text = "dragonfootsoldier", + }, + { + children = { + { + fileId = "123519", + value = "dragonfootsoldierdarkshade.m2", + text = "dragonfootsoldierdarkshade.m2", + }, + }, + value = "dragonfootsoldierdarkshade", + text = "dragonfootsoldierdarkshade", + }, + { + children = { + { + fileId = "123522", + value = "dragonhawk.m2", + text = "dragonhawk.m2", + }, + }, + value = "dragonhawk", + text = "dragonhawk", + }, + { + children = { + { + fileId = "123531", + value = "dragonhawkgod.m2", + text = "dragonhawkgod.m2", + }, + }, + value = "dragonhawkgod", + text = "dragonhawkgod", + }, + { + children = { + { + fileId = "123534", + value = "dragonkalecgos.m2", + text = "dragonkalecgos.m2", + }, + }, + value = "dragonkalecgos", + text = "dragonkalecgos", + }, + { + children = { + { + fileId = "123538", + value = "dragonkite.m2", + text = "dragonkite.m2", + }, + }, + value = "dragonkite", + text = "dragonkite", + }, + { + children = { + { + fileId = "123543", + value = "dragonspawn.m2", + text = "dragonspawn.m2", + }, + { + fileId = "123544", + value = "dragonspawnarmored.m2", + text = "dragonspawnarmored.m2", + }, + { + fileId = "123553", + value = "dragonspawngreater.m2", + text = "dragonspawngreater.m2", + }, + { + fileId = "123554", + value = "dragonspawnoverlord.m2", + text = "dragonspawnoverlord.m2", + }, + }, + value = "dragonspawn", + text = "dragonspawn", + }, + { + children = { + { + fileId = "123570", + value = "dragonspawnarmoreddarkshade.m2", + text = "dragonspawnarmoreddarkshade.m2", + }, + }, + value = "dragonspawnarmoreddarkshade", + text = "dragonspawnarmoreddarkshade", + }, + { + children = { + { + fileId = "123577", + value = "dragonspawncaster.m2", + text = "dragonspawncaster.m2", + }, + }, + value = "dragonspawncaster", + text = "dragonspawncaster", + }, + { + children = { + { + fileId = "123595", + value = "dragonspawncasterdarkshade.m2", + text = "dragonspawncasterdarkshade.m2", + }, + }, + value = "dragonspawncasterdarkshade", + text = "dragonspawncasterdarkshade", + }, + { + children = { + { + fileId = "123598", + value = "dragonspawndarkshade.m2", + text = "dragonspawndarkshade.m2", + }, + }, + value = "dragonspawndarkshade", + text = "dragonspawndarkshade", + }, + { + children = { + { + fileId = "123603", + value = "dragonspawnoverlorddarkshade.m2", + text = "dragonspawnoverlorddarkshade.m2", + }, + }, + value = "dragonspawnoverlorddarkshade", + text = "dragonspawnoverlorddarkshade", + }, + { + children = { + { + fileId = "123610", + value = "dragonwhelp.m2", + text = "dragonwhelp.m2", + }, + }, + value = "dragonwhelp", + text = "dragonwhelp", + }, + { + children = { + { + fileId = "123620", + value = "dragonwhelpdarkshade.m2", + text = "dragonwhelpdarkshade.m2", + }, + }, + value = "dragonwhelpdarkshade", + text = "dragonwhelpdarkshade", + }, + { + children = { + { + fileId = "123622", + value = "dragonwhelpoutland.m2", + text = "dragonwhelpoutland.m2", + }, + }, + value = "dragonwhelpoutland", + text = "dragonwhelpoutland", + }, + { + children = { + { + fileId = "123629", + value = "dragonwhelpoutlandcute.m2", + text = "dragonwhelpoutlandcute.m2", + }, + }, + value = "dragonwhelpoutlandcute", + text = "dragonwhelpoutlandcute", + }, + { + children = { + { + fileId = "123636", + value = "drake.m2", + text = "drake.m2", + }, + { + fileId = "123661", + value = "orcdrakerider.m2", + text = "orcdrakerider.m2", + }, + }, + value = "drake", + text = "drake", + }, + { + children = { + { + fileId = "123664", + value = "drakeadon.m2", + text = "drakeadon.m2", + }, + }, + value = "drakeadon", + text = "drakeadon", + }, + { + children = { + { + fileId = "123666", + value = "drakedarkshade.m2", + text = "drakedarkshade.m2", + }, + }, + value = "drakedarkshade", + text = "drakedarkshade", + }, + { + children = { + { + fileId = "123673", + value = "dreadlord.m2", + text = "dreadlord.m2", + }, + }, + value = "dreadlord", + text = "dreadlord", + }, + { + children = { + { + fileId = "123678", + value = "druidbear.m2", + text = "druidbear.m2", + }, + { + fileId = "123680", + value = "druidbeartauren.m2", + text = "druidbeartauren.m2", + }, + }, + value = "druidbear", + text = "druidbear", + }, + { + children = { + { + fileId = "123682", + value = "druidcat.m2", + text = "druidcat.m2", + }, + }, + value = "druidcat", + text = "druidcat", + }, + { + children = { + { + fileId = "123688", + value = "druidcattauren.m2", + text = "druidcattauren.m2", + }, + }, + value = "druidcattauren", + text = "druidcattauren", + }, + { + children = { + { + fileId = "123690", + value = "druidowlbear.m2", + text = "druidowlbear.m2", + }, + { + fileId = "123695", + value = "druidowlbeartauren.m2", + text = "druidowlbeartauren.m2", + }, + }, + value = "druidowlbear", + text = "druidowlbear", + }, + { + children = { + { + fileId = "123698", + value = "dryad.m2", + text = "dryad.m2", + }, + }, + value = "dryad", + text = "dryad", + }, + { + children = { + { + fileId = "123705", + value = "dryder.m2", + text = "dryder.m2", + }, + }, + value = "dryder", + text = "dryder", + }, + { + children = { + { + fileId = "123708", + value = "dwarfmalewarriorlight.m2", + text = "dwarfmalewarriorlight.m2", + }, + { + fileId = "123709", + value = "dwarfmalewarriorlight_ghost.m2", + text = "dwarfmalewarriorlight_ghost.m2", + }, + }, + value = "dwarfmalewarriorlight", + text = "dwarfmalewarriorlight", + }, + { + children = { + { + fileId = "123715", + value = "eagle.m2", + text = "eagle.m2", + }, + }, + value = "eagle", + text = "eagle", + }, + { + children = { + { + fileId = "123719", + value = "eaglegod.m2", + text = "eaglegod.m2", + }, + }, + value = "eaglegod", + text = "eaglegod", + }, + { + children = { + { + fileId = "123722", + value = "eggcreature.m2", + text = "eggcreature.m2", + }, + }, + value = "egg", + text = "egg", + }, + { + children = { + { + fileId = "123729", + value = "elekk.m2", + text = "elekk.m2", + }, + { + fileId = "123730", + value = "elekkwild.m2", + text = "elekkwild.m2", + }, + }, + value = "elekk", + text = "elekk", + }, + { + children = { + { + fileId = "123747", + value = "elementalearth.m2", + text = "elementalearth.m2", + }, + }, + value = "elementalearth", + text = "elementalearth", + }, + { + children = { + { + fileId = "2199352", + value = "poisonelemental.m2", + text = "poisonelemental.m2", + }, + }, + value = "elementalpoison", + text = "elementalpoison", + }, + { + children = { + { + fileId = "123756", + value = "ent.m2", + text = "ent.m2", + }, + }, + value = "ent", + text = "ent", + }, + { + children = { + { + fileId = "123766", + value = "epicdruidflightalliance.m2", + text = "epicdruidflightalliance.m2", + }, + }, + value = "epicdruidflightalliance", + text = "epicdruidflightalliance", + }, + { + children = { + { + fileId = "123767", + value = "epicdruidflighthorde.m2", + text = "epicdruidflighthorde.m2", + }, + }, + value = "epicdruidflighthorde", + text = "epicdruidflighthorde", + }, + { + children = { + { + fileId = "123769", + value = "archimonde.m2", + text = "archimonde.m2", + }, + { + fileId = "123772", + value = "eredar.m2", + text = "eredar.m2", + }, + }, + value = "eredar", + text = "eredar", + }, + { + children = { + { + fileId = "123788", + value = "eredarfemale.m2", + text = "eredarfemale.m2", + }, + }, + value = "eredarfemale", + text = "eredarfemale", + }, + { + children = { + { + fileId = "123791", + value = "etherial.m2", + text = "etherial.m2", + }, + }, + value = "etherial", + text = "etherial", + }, + { + children = { + { + fileId = "123799", + value = "etherialrobe.m2", + text = "etherialrobe.m2", + }, + }, + value = "etherialrobe", + text = "etherialrobe", + }, + { + children = { + { + fileId = "123808", + value = "eyeofkathune.m2", + text = "eyeofkathune.m2", + }, + }, + value = "eyeofkathune", + text = "eyeofkathune", + }, + { + children = { + { + fileId = "123814", + value = "eyestalkofkathune.m2", + text = "eyestalkofkathune.m2", + }, + }, + value = "eyestalkofkathune", + text = "eyestalkofkathune", + }, + { + children = { + { + fileId = "123816", + value = "faeriedragon.m2", + text = "faeriedragon.m2", + }, + { + fileId = "123818", + value = "faeriedragon_ghost.m2", + text = "faeriedragon_ghost.m2", + }, + }, + value = "faeriedragon", + text = "faeriedragon", + }, + { + children = { + { + fileId = "123821", + value = "batrider.m2", + text = "batrider.m2", + }, + { + fileId = "123830", + value = "battaxi.m2", + text = "battaxi.m2", + }, + { + fileId = "123831", + value = "felbat.m2", + text = "felbat.m2", + }, + }, + value = "felbat", + text = "felbat", + }, + { + children = { + { + fileId = "123834", + value = "felbeast.m2", + text = "felbeast.m2", + }, + }, + value = "felbeast", + text = "felbeast", + }, + { + children = { + { + fileId = "123837", + value = "felbeastshadowmoon.m2", + text = "felbeastshadowmoon.m2", + }, + }, + value = "felbeastshadowmoon", + text = "felbeastshadowmoon", + }, + { + children = { + { + fileId = "123839", + value = "felboar.m2", + text = "felboar.m2", + }, + }, + value = "felboar", + text = "felboar", + }, + { + children = { + { + fileId = "123845", + value = "felcannon.m2", + text = "felcannon.m2", + }, + { + fileId = "123846", + value = "felcannon_02.m2", + text = "felcannon_02.m2", + }, + }, + value = "felcannon", + text = "felcannon", + }, + { + children = { + { + fileId = "123847", + value = "felelfcasterfemale.m2", + text = "felelfcasterfemale.m2", + }, + }, + value = "felelfcasterfemale", + text = "felelfcasterfemale", + }, + { + children = { + { + fileId = "123852", + value = "felelfcastermale.m2", + text = "felelfcastermale.m2", + }, + }, + value = "felelfcastermale", + text = "felelfcastermale", + }, + { + children = { + { + fileId = "123856", + value = "felelfhunterfemale.m2", + text = "felelfhunterfemale.m2", + }, + }, + value = "felelfhunterfemale", + text = "felelfhunterfemale", + }, + { + children = { + { + fileId = "123862", + value = "felelfwarriormale.m2", + text = "felelfwarriormale.m2", + }, + }, + value = "felelfwarriormale", + text = "felelfwarriormale", + }, + { + children = { + { + fileId = "123869", + value = "felgolem.m2", + text = "felgolem.m2", + }, + }, + value = "felgolem", + text = "felgolem", + }, + { + children = { + { + fileId = "123870", + value = "felguard.m2", + text = "felguard.m2", + }, + }, + value = "felguard", + text = "felguard", + }, + { + children = { + { + fileId = "123876", + value = "felhorseepic.m2", + text = "felhorseepic.m2", + }, + }, + value = "felhorse", + text = "felhorse", + }, + { + children = { + { + fileId = "123878", + value = "felhound.m2", + text = "felhound.m2", + }, + }, + value = "felhound", + text = "felhound", + }, + { + children = { + { + fileId = "123880", + value = "felorc.m2", + text = "felorc.m2", + }, + { + fileId = "123882", + value = "felorc_axe.m2", + text = "felorc_axe.m2", + }, + { + fileId = "123887", + value = "felorc_sword.m2", + text = "felorc_sword.m2", + }, + }, + value = "felorc", + text = "felorc", + }, + { + children = { + { + fileId = "123893", + value = "felorcwarrioraxe.m2", + text = "felorcwarrioraxe.m2", + }, + }, + value = "felorcaxe", + text = "felorcaxe", + }, + { + children = { + { + fileId = "123900", + value = "felorcwarriorboss.m2", + text = "felorcwarriorboss.m2", + }, + }, + value = "felorcboss", + text = "felorcboss", + }, + { + children = { + { + fileId = "123901", + value = "felorcdire.m2", + text = "felorcdire.m2", + }, + }, + value = "felorcdire", + text = "felorcdire", + }, + { + children = { + { + fileId = "123906", + value = "felorcnetherdrake.m2", + text = "felorcnetherdrake.m2", + }, + { + fileId = "123908", + value = "felorcnetherdrakemounted.m2", + text = "felorcnetherdrakemounted.m2", + }, + }, + value = "felorcnetherdrake", + text = "felorcnetherdrake", + }, + { + children = { + { + fileId = "123915", + value = "felorcwarriorsword.m2", + text = "felorcwarriorsword.m2", + }, + }, + value = "felorcsword", + text = "felorcsword", + }, + { + children = { + { + fileId = "123918", + value = "felorcwarlord.m2", + text = "felorcwarlord.m2", + }, + }, + value = "felorcwarlord", + text = "felorcwarlord", + }, + { + children = { + { + fileId = "123929", + value = "felreaver.m2", + text = "felreaver.m2", + }, + }, + value = "felreaver", + text = "felreaver", + }, + { + children = { + { + fileId = "123931", + value = "firedancer.m2", + text = "firedancer.m2", + }, + }, + value = "firedancer", + text = "firedancer", + }, + { + children = { + { + fileId = "123934", + value = "fireelemental.m2", + text = "fireelemental.m2", + }, + { + fileId = "2199522", + value = "fireelementalgreen.m2", + text = "fireelementalgreen.m2", + }, + }, + value = "fireelemental", + text = "fireelemental", + }, + { + children = { + { + fileId = "123939", + value = "fireflygreen.m2", + text = "fireflygreen.m2", + }, + }, + value = "firefly", + text = "firefly", + }, + { + children = { + { + fileId = "123944", + value = "firesprite.m2", + text = "firesprite.m2", + }, + }, + value = "firesprite", + text = "firesprite", + }, + { + children = { + { + fileId = "123947", + value = "fish.m2", + text = "fish.m2", + }, + }, + value = "fish", + text = "fish", + }, + { + children = { + { + fileId = "123949", + value = "fleshbeast.m2", + text = "fleshbeast.m2", + }, + }, + value = "fleshbeast", + text = "fleshbeast", + }, + { + children = { + { + fileId = "123952", + value = "fleshgiant.m2", + text = "fleshgiant.m2", + }, + }, + value = "fleshgiant", + text = "fleshgiant", + }, + { + children = { + { + fileId = "123961", + value = "fleshgolem.m2", + text = "fleshgolem.m2", + }, + }, + value = "fleshgolem", + text = "fleshgolem", + }, + { + children = { + { + fileId = "123972", + value = "fleshtitan.m2", + text = "fleshtitan.m2", + }, + }, + value = "fleshtitan", + text = "fleshtitan", + }, + { + children = { + { + fileId = "123977", + value = "flyingmachinecreature.m2", + text = "flyingmachinecreature.m2", + }, + }, + value = "flyingmachinecreature", + text = "flyingmachinecreature", + }, + { + children = { + { + fileId = "123987", + value = "flyingreindeer.m2", + text = "flyingreindeer.m2", + }, + }, + value = "flyingreindeer", + text = "flyingreindeer", + }, + { + children = { + { + fileId = "123990", + value = "forceofnature.m2", + text = "forceofnature.m2", + }, + }, + value = "forceofnature", + text = "forceofnature", + }, + { + children = { + { + fileId = "124001", + value = "foresttroll.m2", + text = "foresttroll.m2", + }, + }, + value = "foresttroll", + text = "foresttroll", + }, + { + children = { + { + fileId = "124004", + value = "frenzy.m2", + text = "frenzy.m2", + }, + }, + value = "frenzy", + text = "frenzy", + }, + { + children = { + { + fileId = "124008", + value = "frog.m2", + text = "frog.m2", + }, + }, + value = "frog", + text = "frog", + }, + { + children = { + { + fileId = "124014", + value = "frostlord.m2", + text = "frostlord.m2", + }, + { + fileId = "124022", + value = "frostlordcore.m2", + text = "frostlordcore.m2", + }, + }, + value = "frostlord", + text = "frostlord", + }, + { + children = { + { + fileId = "124036", + value = "frostsabre.m2", + text = "frostsabre.m2", + }, + { + fileId = "124038", + value = "pvpridingfrostsabre.m2", + text = "pvpridingfrostsabre.m2", + }, + { + fileId = "124052", + value = "ridingfrostsabre.m2", + text = "ridingfrostsabre.m2", + }, + }, + value = "frostsabre", + text = "frostsabre", + }, + { + children = { + { + fileId = "124077", + value = "frostwurm.m2", + text = "frostwurm.m2", + }, + { + fileId = "124078", + value = "frostwurm_nofrost.m2", + text = "frostwurm_nofrost.m2", + }, + }, + value = "frostwurm", + text = "frostwurm", + }, + { + children = { + { + fileId = "124084", + value = "frostwurmfellfire.m2", + text = "frostwurmfellfire.m2", + }, + }, + value = "frostwurmfellfire", + text = "frostwurmfellfire", + }, + { + children = { + { + fileId = "124096", + value = "fungalgiant.m2", + text = "fungalgiant.m2", + }, + }, + value = "fungalgiant", + text = "fungalgiant", + }, + { + children = { + { + fileId = "124110", + value = "fungalmonster.m2", + text = "fungalmonster.m2", + }, + }, + value = "fungalmonster", + text = "fungalmonster", + }, + { + children = { + { + fileId = "124118", + value = "furbolg.m2", + text = "furbolg.m2", + }, + }, + value = "furbolg", + text = "furbolg", + }, + { + children = { + { + fileId = "124131", + value = "gargoyle.m2", + text = "gargoyle.m2", + }, + }, + value = "gargoyle", + text = "gargoyle", + }, + { + children = { + { + fileId = "124148", + value = "gazelle.m2", + text = "gazelle.m2", + }, + }, + value = "gazelle", + text = "gazelle", + }, + { + children = { + { + fileId = "124155", + value = "ghost.m2", + text = "ghost.m2", + }, + }, + value = "ghost", + text = "ghost", + }, + { + children = { + { + fileId = "124160", + value = "ghoul.m2", + text = "ghoul.m2", + }, + }, + value = "ghoul", + text = "ghoul", + }, + { + children = { + { + fileId = "124166", + value = "giantspider.m2", + text = "giantspider.m2", + }, + }, + value = "giantspider", + text = "giantspider", + }, + { + children = { + { + fileId = "124169", + value = "giraffe.m2", + text = "giraffe.m2", + }, + }, + value = "giraffe", + text = "giraffe", + }, + { + children = { + { + fileId = "124173", + value = "gnoll.m2", + text = "gnoll.m2", + }, + }, + value = "gnoll", + text = "gnoll", + }, + { + children = { + { + fileId = "124186", + value = "gnollcaster.m2", + text = "gnollcaster.m2", + }, + }, + value = "gnollcaster", + text = "gnollcaster", + }, + { + children = { + { + fileId = "124192", + value = "gnollmelee.m2", + text = "gnollmelee.m2", + }, + }, + value = "gnollmelee", + text = "gnollmelee", + }, + { + children = { + { + fileId = "124198", + value = "gnome.m2", + text = "gnome.m2", + }, + }, + value = "gnome", + text = "gnome", + }, + { + children = { + { + fileId = "124203", + value = "gnomerocketcar.m2", + text = "gnomerocketcar.m2", + }, + }, + value = "gnomerocketcar", + text = "gnomerocketcar", + }, + { + children = { + { + fileId = "124204", + value = "gnomealertbot.m2", + text = "gnomealertbot.m2", + }, + { + fileId = "124207", + value = "gnomebombot.m2", + text = "gnomebombot.m2", + }, + { + fileId = "124208", + value = "gnomebot.m2", + text = "gnomebot.m2", + }, + { + fileId = "124209", + value = "gnomepounder.m2", + text = "gnomepounder.m2", + }, + { + fileId = "124210", + value = "gnomespidertank.m2", + text = "gnomespidertank.m2", + }, + }, + value = "gnomespidertank", + text = "gnomespidertank", + }, + { + children = { + { + fileId = "124224", + value = "goblin.m2", + text = "goblin.m2", + }, + { + fileId = "124225", + value = "goblinshredder.m2", + text = "goblinshredder.m2", + }, + }, + value = "goblin", + text = "goblin", + }, + { + children = { + { + fileId = "124234", + value = "goblinrocketcar.m2", + text = "goblinrocketcar.m2", + }, + }, + value = "goblinrocketcar", + text = "goblinrocketcar", + }, + { + children = { + { + fileId = "124235", + value = "golemharvest.m2", + text = "golemharvest.m2", + }, + }, + value = "golemharvest", + text = "golemharvest", + }, + { + children = { + { + fileId = "124243", + value = "golemharveststage2.m2", + text = "golemharveststage2.m2", + }, + }, + value = "golemharveststage2", + text = "golemharveststage2", + }, + { + children = { + { + fileId = "124247", + value = "golemcannonstone.m2", + text = "golemcannonstone.m2", + }, + { + fileId = "124248", + value = "golemstone.m2", + text = "golemstone.m2", + }, + }, + value = "golemstone", + text = "golemstone", + }, + { + children = { + { + fileId = "124263", + value = "gorilla.m2", + text = "gorilla.m2", + }, + { + fileId = "124265", + value = "gorillapet.m2", + text = "gorillapet.m2", + }, + }, + value = "gorilla", + text = "gorilla", + }, + { + children = { + { + fileId = "124272", + value = "grell.m2", + text = "grell.m2", + }, + }, + value = "grell", + text = "grell", + }, + { + children = { + { + fileId = "124280", + value = "gronn.m2", + text = "gronn.m2", + }, + }, + value = "gronn", + text = "gronn", + }, + { + children = { + { + fileId = "124289", + value = "groundflower.m2", + text = "groundflower.m2", + }, + }, + value = "groundflower", + text = "groundflower", + }, + { + children = { + { + fileId = "124290", + value = "gryphon.m2", + text = "gryphon.m2", + }, + { + fileId = "124292", + value = "gryphon_armored.m2", + text = "gryphon_armored.m2", + }, + { + fileId = "124293", + value = "gryphon_armoredmount.m2", + text = "gryphon_armoredmount.m2", + }, + { + fileId = "124297", + value = "gryphon_ghost.m2", + text = "gryphon_ghost.m2", + }, + { + fileId = "124298", + value = "gryphon_mount.m2", + text = "gryphon_mount.m2", + }, + { + fileId = "124299", + value = "gryphon_skeletal.m2", + text = "gryphon_skeletal.m2", + }, + }, + value = "gryphon", + text = "gryphon", + }, + { + children = { + { + fileId = "124313", + value = "gyrocopter_01.m2", + text = "gyrocopter_01.m2", + }, + { + fileId = "124315", + value = "gyrocopter_02.m2", + text = "gyrocopter_02.m2", + }, + }, + value = "gyrocopter", + text = "gyrocopter", + }, + { + children = { + { + fileId = "124317", + value = "hakkar.m2", + text = "hakkar.m2", + }, + }, + value = "hakkar", + text = "hakkar", + }, + { + children = { + { + fileId = "124324", + value = "halfbodyofkathune.m2", + text = "halfbodyofkathune.m2", + }, + }, + value = "halfbodyofkathune", + text = "halfbodyofkathune", + }, + { + children = { + { + fileId = "124325", + value = "haremmatron.m2", + text = "haremmatron.m2", + }, + }, + value = "haremmatron", + text = "haremmatron", + }, + { + children = { + { + fileId = "124329", + value = "harpy.m2", + text = "harpy.m2", + }, + }, + value = "harpy", + text = "harpy", + }, + { + children = { + { + fileId = "124342", + value = "headlesshorseman.m2", + text = "headlesshorseman.m2", + }, + }, + value = "headlesshorseman", + text = "headlesshorseman", + }, + { + children = { + { + fileId = "124345", + value = "headlesshorsemanhorse.m2", + text = "headlesshorsemanhorse.m2", + }, + }, + value = "headlesshorsemanhorse", + text = "headlesshorsemanhorse", + }, + { + children = { + { + fileId = "124348", + value = "headlesshorsemanmount.m2", + text = "headlesshorsemanmount.m2", + }, + }, + value = "headlesshorsemanmount", + text = "headlesshorsemanmount", + }, + { + children = { + { + fileId = "234664", + value = "hhgroundmount.m2", + text = "hhgroundmount.m2", + }, + }, + value = "hhgroundmount", + text = "hhgroundmount", + }, + { + children = { + { + fileId = "124351", + value = "hhmount.m2", + text = "hhmount.m2", + }, + }, + value = "hhmount", + text = "hhmount", + }, + { + children = { + { + fileId = "124366", + value = "highelffemale_hunter.m2", + text = "highelffemale_hunter.m2", + }, + { + fileId = "124367", + value = "highelffemale_mage.m2", + text = "highelffemale_mage.m2", + }, + { + fileId = "124368", + value = "highelffemale_priest.m2", + text = "highelffemale_priest.m2", + }, + { + fileId = "124369", + value = "highelffemale_warrior.m2", + text = "highelffemale_warrior.m2", + }, + { + fileId = "124377", + value = "highelfmale_hunter.m2", + text = "highelfmale_hunter.m2", + }, + { + fileId = "124378", + value = "highelfmale_mage.m2", + text = "highelfmale_mage.m2", + }, + { + fileId = "124379", + value = "highelfmale_priest.m2", + text = "highelfmale_priest.m2", + }, + { + fileId = "124380", + value = "highelfmale_warrior.m2", + text = "highelfmale_warrior.m2", + }, + }, + value = "highelf", + text = "highelf", + }, + { + children = { + { + fileId = "124387", + value = "hippogryph.m2", + text = "hippogryph.m2", + }, + { + fileId = "124393", + value = "hippogryphpet.m2", + text = "hippogryphpet.m2", + }, + }, + value = "hippogryph", + text = "hippogryph", + }, + { + children = { + { + fileId = "124410", + value = "hippogryphmount.m2", + text = "hippogryphmount.m2", + }, + }, + value = "hippogryphmount", + text = "hippogryphmount", + }, + { + children = { + { + fileId = "124417", + value = "holidayrobot.m2", + text = "holidayrobot.m2", + }, + }, + value = "holidayrobot", + text = "holidayrobot", + }, + { + children = { + { + fileId = "124421", + value = "horderider.m2", + text = "horderider.m2", + }, + }, + value = "horderider", + text = "horderider", + }, + { + children = { + { + fileId = "124424", + value = "horisath.m2", + text = "horisath.m2", + }, + }, + value = "horisath", + text = "horisath", + }, + { + children = { + { + fileId = "124427", + value = "horse.m2", + text = "horse.m2", + }, + }, + value = "horse", + text = "horse", + }, + { + children = { + { + fileId = "124437", + value = "hufmcitizenlow.m2", + text = "hufmcitizenlow.m2", + }, + }, + value = "hufmcitizenlow", + text = "hufmcitizenlow", + }, + { + children = { + { + fileId = "124440", + value = "hufmcitizenmid.m2", + text = "hufmcitizenmid.m2", + }, + }, + value = "hufmcitizenmid", + text = "hufmcitizenmid", + }, + { + children = { + { + fileId = "124442", + value = "hufmmerchant.m2", + text = "hufmmerchant.m2", + }, + }, + value = "hufmmerchant", + text = "hufmmerchant", + }, + { + children = { + { + fileId = "124444", + value = "humanfemaleblacksmith.m2", + text = "humanfemaleblacksmith.m2", + }, + }, + value = "humanfemaleblacksmith", + text = "humanfemaleblacksmith", + }, + { + children = { + { + fileId = "124448", + value = "humanfemalecaster.m2", + text = "humanfemalecaster.m2", + }, + }, + value = "humanfemalecaster", + text = "humanfemalecaster", + }, + { + children = { + { + fileId = "124452", + value = "humanfemalefarmer.m2", + text = "humanfemalefarmer.m2", + }, + }, + value = "humanfemalefarmer", + text = "humanfemalefarmer", + }, + { + children = { + { + fileId = "124456", + value = "humanfemalekid.m2", + text = "humanfemalekid.m2", + }, + }, + value = "humanfemalekid", + text = "humanfemalekid", + }, + { + children = { + { + fileId = "124463", + value = "humanfemalemerchantfat.m2", + text = "humanfemalemerchantfat.m2", + }, + }, + value = "humanfemalemerchantfat", + text = "humanfemalemerchantfat", + }, + { + children = { + { + fileId = "124467", + value = "humanfemalemerchantthin.m2", + text = "humanfemalemerchantthin.m2", + }, + }, + value = "humanfemalemerchantthin", + text = "humanfemalemerchantthin", + }, + { + children = { + { + fileId = "124468", + value = "humanfemalepeasant.m2", + text = "humanfemalepeasant.m2", + }, + }, + value = "humanfemalepeasant", + text = "humanfemalepeasant", + }, + { + children = { + { + fileId = "124472", + value = "humanfemalewarriorheavy.m2", + text = "humanfemalewarriorheavy.m2", + }, + }, + value = "humanfemalewarriorheavy", + text = "humanfemalewarriorheavy", + }, + { + children = { + { + fileId = "124475", + value = "humanfemalewarriorlight.m2", + text = "humanfemalewarriorlight.m2", + }, + }, + value = "humanfemalewarriorlight", + text = "humanfemalewarriorlight", + }, + { + children = { + { + fileId = "124478", + value = "humanfemalewarriormedium.m2", + text = "humanfemalewarriormedium.m2", + }, + }, + value = "humanfemalewarriormedium", + text = "humanfemalewarriormedium", + }, + { + children = { + { + fileId = "124482", + value = "humanmaleblacksmith.m2", + text = "humanmaleblacksmith.m2", + }, + }, + value = "humanmaleblacksmith", + text = "humanmaleblacksmith", + }, + { + children = { + { + fileId = "124485", + value = "humanmalecaster.m2", + text = "humanmalecaster.m2", + }, + }, + value = "humanmalecaster", + text = "humanmalecaster", + }, + { + children = { + { + fileId = "124490", + value = "humanmalefarmer.m2", + text = "humanmalefarmer.m2", + }, + }, + value = "humanmalefarmer", + text = "humanmalefarmer", + }, + { + children = { + { + fileId = "124494", + value = "humanmaleguard.m2", + text = "humanmaleguard.m2", + }, + }, + value = "humanmaleguard", + text = "humanmaleguard", + }, + { + children = { + { + fileId = "124495", + value = "humanmalekid.m2", + text = "humanmalekid.m2", + }, + { + fileId = "124496", + value = "humanmalekid_ghost.m2", + text = "humanmalekid_ghost.m2", + }, + }, + value = "humanmalekid", + text = "humanmalekid", + }, + { + children = { + { + fileId = "124500", + value = "humanmalemarshal.m2", + text = "humanmalemarshal.m2", + }, + }, + value = "humanmalemarshal", + text = "humanmalemarshal", + }, + { + children = { + { + fileId = "124506", + value = "humanmalenoble.m2", + text = "humanmalenoble.m2", + }, + }, + value = "humanmalenoble", + text = "humanmalenoble", + }, + { + children = { + { + fileId = "124507", + value = "humanmalepeasant.m2", + text = "humanmalepeasant.m2", + }, + { + fileId = "124508", + value = "humanmalepeasantaxe.m2", + text = "humanmalepeasantaxe.m2", + }, + { + fileId = "124509", + value = "humanmalepeasantgold.m2", + text = "humanmalepeasantgold.m2", + }, + { + fileId = "124512", + value = "humanmalepeasantpick.m2", + text = "humanmalepeasantpick.m2", + }, + { + fileId = "124515", + value = "humanmalepeasantwood.m2", + text = "humanmalepeasantwood.m2", + }, + }, + value = "humanmalepeasant", + text = "humanmalepeasant", + }, + { + children = { + { + fileId = "124516", + value = "humanmalepiratecaptain.m2", + text = "humanmalepiratecaptain.m2", + }, + { + fileId = "124517", + value = "humanmalepiratecaptain_ghost.m2", + text = "humanmalepiratecaptain_ghost.m2", + }, + }, + value = "humanmalepiratecaptain", + text = "humanmalepiratecaptain", + }, + { + children = { + { + fileId = "124521", + value = "humanmalepiratecrewman.m2", + text = "humanmalepiratecrewman.m2", + }, + { + fileId = "124522", + value = "humanmalepiratecrewman_ghost.m2", + text = "humanmalepiratecrewman_ghost.m2", + }, + }, + value = "humanmalepiratecrewman", + text = "humanmalepiratecrewman", + }, + { + children = { + { + fileId = "124533", + value = "humanmalepirateswashbuckler.m2", + text = "humanmalepirateswashbuckler.m2", + }, + { + fileId = "124534", + value = "humanmalepirateswashbuckler_ghost.m2", + text = "humanmalepirateswashbuckler_ghost.m2", + }, + }, + value = "humanmalepirateswashbuckler", + text = "humanmalepirateswashbuckler", + }, + { + children = { + { + fileId = "124540", + value = "humanmalewarriorheavy.m2", + text = "humanmalewarriorheavy.m2", + }, + { + fileId = "124541", + value = "humanmalewarriorheavy_ghost.m2", + text = "humanmalewarriorheavy_ghost.m2", + }, + }, + value = "humanmalewarriorheavy", + text = "humanmalewarriorheavy", + }, + { + children = { + { + fileId = "124544", + value = "humanmalewarriorlight.m2", + text = "humanmalewarriorlight.m2", + }, + }, + value = "humanmalewarriorlight", + text = "humanmalewarriorlight", + }, + { + children = { + { + fileId = "124547", + value = "humanmalewarriormedium.m2", + text = "humanmalewarriormedium.m2", + }, + }, + value = "humanmalewarriormedium", + text = "humanmalewarriormedium", + }, + { + children = { + { + fileId = "124552", + value = "humanmalewizard.m2", + text = "humanmalewizard.m2", + }, + }, + value = "humanmalewizard", + text = "humanmalewizard", + }, + { + children = { + { + fileId = "124553", + value = "humanthief.m2", + text = "humanthief.m2", + }, + }, + value = "humanthief", + text = "humanthief", + }, + { + children = { + { + fileId = "124565", + value = "humlblacksmith.m2", + text = "humlblacksmith.m2", + }, + }, + value = "humlblacksmith", + text = "humlblacksmith", + }, + { + children = { + { + fileId = "124566", + value = "humlcitizenmid.m2", + text = "humlcitizenmid.m2", + }, + }, + value = "humlcitizenmid", + text = "humlcitizenmid", + }, + { + children = { + { + fileId = "124569", + value = "humlmagicsmith.m2", + text = "humlmagicsmith.m2", + }, + }, + value = "humlmagicsmith", + text = "humlmagicsmith", + }, + { + children = { + { + fileId = "124571", + value = "humlmerchant.m2", + text = "humlmerchant.m2", + }, + }, + value = "humlmerchant", + text = "humlmerchant", + }, + { + children = { + { + fileId = "124572", + value = "humluppercitizen.m2", + text = "humluppercitizen.m2", + }, + }, + value = "humluppercitizen", + text = "humluppercitizen", + }, + { + children = { + { + fileId = "124576", + value = "humnguardbig.m2", + text = "humnguardbig.m2", + }, + }, + value = "humnguardbig", + text = "humnguardbig", + }, + { + children = { + { + fileId = "124578", + value = "humscitizenmid.m2", + text = "humscitizenmid.m2", + }, + }, + value = "humscitizenmid", + text = "humscitizenmid", + }, + { + children = { + { + fileId = "124579", + value = "humsguardbig.m2", + text = "humsguardbig.m2", + }, + }, + value = "humsguardbig", + text = "humsguardbig", + }, + { + children = { + { + fileId = "124580", + value = "humsmerchant.m2", + text = "humsmerchant.m2", + }, + }, + value = "humsmerchant", + text = "humsmerchant", + }, + { + children = { + { + fileId = "124581", + value = "hydra.m2", + text = "hydra.m2", + }, + }, + value = "hydra", + text = "hydra", + }, + { + children = { + { + fileId = "124591", + value = "hydraoutland.m2", + text = "hydraoutland.m2", + }, + }, + value = "hydraoutland", + text = "hydraoutland", + }, + { + children = { + { + fileId = "124601", + value = "hyena.m2", + text = "hyena.m2", + }, + }, + value = "hyena", + text = "hyena", + }, + { + children = { + { + fileId = "124612", + value = "illidan.m2", + text = "illidan.m2", + }, + { + fileId = "124614", + value = "illidandark.m2", + text = "illidandark.m2", + }, + }, + value = "illidan", + text = "illidan", + }, + { + children = { + { + fileId = "124618", + value = "creature_illidansglaive.m2", + text = "creature_illidansglaive.m2", + }, + }, + value = "illidanglaive", + text = "illidanglaive", + }, + { + children = { + { + fileId = "2199501", + value = "fireimp.m2", + text = "fireimp.m2", + }, + { + fileId = "124622", + value = "imp.m2", + text = "imp.m2", + }, + }, + value = "imp", + text = "imp", + }, + { + children = { + { + fileId = "124630", + value = "impoutland.m2", + text = "impoutland.m2", + }, + }, + value = "impoutland", + text = "impoutland", + }, + { + children = { + { + fileId = "4382565", + value = "incubus_low.m2", + text = "incubus_low.m2", + }, + }, + value = "incubus_low", + text = "incubus_low", + }, + { + children = { + { + fileId = "124637", + value = "infernal.m2", + text = "infernal.m2", + }, + }, + value = "infernal", + text = "infernal", + }, + { + children = { + { + fileId = "124639", + value = "invisibleman.m2", + text = "invisibleman.m2", + }, + }, + value = "invisibleman", + text = "invisibleman", + }, + { + children = { + { + fileId = "124640", + value = "invisiblestalker.m2", + text = "invisiblestalker.m2", + }, + { + fileId = "124642", + value = "invisiblestalkernoname.m2", + text = "invisiblestalkernoname.m2", + }, + }, + value = "invisiblestalker", + text = "invisiblestalker", + }, + { + children = { + { + fileId = "124652", + value = "kaelthas.m2", + text = "kaelthas.m2", + }, + }, + value = "kaelthas", + text = "kaelthas", + }, + { + children = { + { + fileId = "124656", + value = "kaelthasbroken.m2", + text = "kaelthasbroken.m2", + }, + }, + value = "kaelthas_broken", + text = "kaelthas_broken", + }, + { + children = { + { + fileId = "124659", + value = "kalecgos.m2", + text = "kalecgos.m2", + }, + }, + value = "kalecgos", + text = "kalecgos", + }, + { + children = { + { + fileId = "124667", + value = "kargath.m2", + text = "kargath.m2", + }, + }, + value = "kargath", + text = "kargath", + }, + { + children = { + { + fileId = "124670", + value = "keeperofthegrove.m2", + text = "keeperofthegrove.m2", + }, + }, + value = "keeperofthegrove", + text = "keeperofthegrove", + }, + { + children = { + { + fileId = "124677", + value = "kelthuzad.m2", + text = "kelthuzad.m2", + }, + { + fileId = "124678", + value = "kelthuzad_window_portal_creature.m2", + text = "kelthuzad_window_portal_creature.m2", + }, + }, + value = "kelthuzad", + text = "kelthuzad", + }, + { + children = { + { + fileId = "124682", + value = "kiljaeden.m2", + text = "kiljaeden.m2", + }, + }, + value = "kiljaeden", + text = "kiljaeden", + }, + { + children = { + { + fileId = "124691", + value = "kobold.m2", + text = "kobold.m2", + }, + }, + value = "kobold", + text = "kobold", + }, + { + children = { + { + fileId = "124694", + value = "kodobeast.m2", + text = "kodobeast.m2", + }, + { + fileId = "124695", + value = "kodobeastpack.m2", + text = "kodobeastpack.m2", + }, + { + fileId = "124696", + value = "kodobeastpvpt2.m2", + text = "kodobeastpvpt2.m2", + }, + { + fileId = "124697", + value = "kodobeasttame.m2", + text = "kodobeasttame.m2", + }, + { + fileId = "124711", + value = "ridingkodo.m2", + text = "ridingkodo.m2", + }, + }, + value = "kodobeast", + text = "kodobeast", + }, + { + children = { + { + fileId = "2198638", + value = "kodobeastpack.m2", + text = "kodobeastpack.m2", + }, + }, + value = "kodobeastpack", + text = "kodobeastpack", + }, + { + children = { + { + fileId = "2198601", + value = "kodobeasttame.m2", + text = "kodobeasttame.m2", + }, + }, + value = "kodobeasttame", + text = "kodobeasttame", + }, + { + children = { + { + fileId = "124727", + value = "krakken.m2", + text = "krakken.m2", + }, + }, + value = "krakken", + text = "krakken", + }, + { + children = { + { + fileId = "124735", + value = "ladyvashj.m2", + text = "ladyvashj.m2", + }, + }, + value = "ladyvashj", + text = "ladyvashj", + }, + { + children = { + { + fileId = "124738", + value = "landro.m2", + text = "landro.m2", + }, + }, + value = "landro", + text = "landro", + }, + { + children = { + { + fileId = "124739", + value = "larva.m2", + text = "larva.m2", + }, + }, + value = "larva", + text = "larva", + }, + { + children = { + { + fileId = "124747", + value = "larvaoutland.m2", + text = "larvaoutland.m2", + }, + }, + value = "larvaoutland", + text = "larvaoutland", + }, + { + children = { + { + fileId = "124753", + value = "lasher.m2", + text = "lasher.m2", + }, + }, + value = "lasher", + text = "lasher", + }, + { + children = { + { + fileId = "124765", + value = "lasherorchid.m2", + text = "lasherorchid.m2", + }, + }, + value = "lasherorchid", + text = "lasherorchid", + }, + { + children = { + { + fileId = "124777", + value = "lessermanafiend.m2", + text = "lessermanafiend.m2", + }, + { + fileId = "2199322", + value = "lessermanafiend_blue.m2", + text = "lessermanafiend_blue.m2", + }, + { + fileId = "2199340", + value = "lessermanafiend_red.m2", + text = "lessermanafiend_red.m2", + }, + { + fileId = "2199333", + value = "lessermanafiend_violet.m2", + text = "lessermanafiend_violet.m2", + }, + { + fileId = "2199348", + value = "lessermanafiend_white.m2", + text = "lessermanafiend_white.m2", + }, + }, + value = "lessermanafiend", + text = "lessermanafiend", + }, + { + children = { + { + fileId = "124779", + value = "lich.m2", + text = "lich.m2", + }, + }, + value = "lich", + text = "lich", + }, + { + children = { + { + fileId = "124781", + value = "lion.m2", + text = "lion.m2", + }, + }, + value = "lion", + text = "lion", + }, + { + children = { + { + fileId = "124790", + value = "lobstrok.m2", + text = "lobstrok.m2", + }, + }, + value = "lobstrok", + text = "lobstrok", + }, + { + children = { + { + fileId = "124801", + value = "lobstrokoutland.m2", + text = "lobstrokoutland.m2", + }, + }, + value = "lobstrokoutland", + text = "lobstrokoutland", + }, + { + children = { + { + fileId = "124802", + value = "lordkezzak.m2", + text = "lordkezzak.m2", + }, + { + fileId = "124804", + value = "lordkezzak_armored.m2", + text = "lordkezzak_armored.m2", + }, + }, + value = "lord kezzak", + text = "lord kezzak", + }, + { + children = { + { + fileId = "124809", + value = "lostone.m2", + text = "lostone.m2", + }, + }, + value = "lostone", + text = "lostone", + }, + { + children = { + { + fileId = "124824", + value = "lynxgod.m2", + text = "lynxgod.m2", + }, + }, + value = "lynxgod", + text = "lynxgod", + }, + { + children = { + { + fileId = "4323001", + value = "mace_1h_incubus_whip_a_01.m2", + text = "mace_1h_incubus_whip_a_01.m2", + }, + }, + value = "mace_1h_incubus_whip_a_01", + text = "mace_1h_incubus_whip_a_01", + }, + { + children = { + { + fileId = "124827", + value = "madscientist.m2", + text = "madscientist.m2", + }, + }, + value = "madscientist", + text = "madscientist", + }, + { + children = { + { + fileId = "124850", + value = "manafiend.m2", + text = "manafiend.m2", + }, + }, + value = "manafiend", + text = "manafiend", + }, + { + children = { + { + fileId = "124853", + value = "manafiendgreen.m2", + text = "manafiendgreen.m2", + }, + }, + value = "manafiendgreen", + text = "manafiendgreen", + }, + { + children = { + { + fileId = "124857", + value = "manawurm.m2", + text = "manawurm.m2", + }, + }, + value = "manawurm", + text = "manawurm", + }, + { + children = { + { + fileId = "124865", + value = "gnomemechastrider.m2", + text = "gnomemechastrider.m2", + }, + { + fileId = "124872", + value = "mechastrider.m2", + text = "mechastrider.m2", + }, + { + fileId = "124880", + value = "pvpmechastrider.m2", + text = "pvpmechastrider.m2", + }, + }, + value = "mechastrider", + text = "mechastrider", + }, + { + children = { + { + fileId = "124890", + value = "medivh.m2", + text = "medivh.m2", + }, + }, + value = "medivh", + text = "medivh", + }, + { + children = { + { + fileId = "124898", + value = "miev.m2", + text = "miev.m2", + }, + }, + value = "miev", + text = "miev", + }, + { + children = { + { + fileId = "124903", + value = "minespider.m2", + text = "minespider.m2", + }, + { + fileId = "124904", + value = "minespiderboss.m2", + text = "minespiderboss.m2", + }, + }, + value = "minespider", + text = "minespider", + }, + { + children = { + { + fileId = "124915", + value = "moarg1.m2", + text = "moarg1.m2", + }, + { + fileId = "124916", + value = "moarg2.m2", + text = "moarg2.m2", + }, + { + fileId = "124917", + value = "moarg3.m2", + text = "moarg3.m2", + }, + { + fileId = "124918", + value = "moarg4.m2", + text = "moarg4.m2", + }, + { + fileId = "124919", + value = "moarg5.m2", + text = "moarg5.m2", + }, + { + fileId = "124920", + value = "moarg6.m2", + text = "moarg6.m2", + }, + }, + value = "moarg", + text = "moarg", + }, + { + children = { + { + fileId = "124923", + value = "moargminion.m2", + text = "moargminion.m2", + }, + }, + value = "moargminion", + text = "moargminion", + }, + { + children = { + { + fileId = "124928", + value = "mobat.m2", + text = "mobat.m2", + }, + }, + value = "mobat", + text = "mobat", + }, + { + children = { + { + fileId = "124932", + value = "moth.m2", + text = "moth.m2", + }, + }, + value = "moth", + text = "moth", + }, + { + children = { + { + fileId = "124945", + value = "mothpet.m2", + text = "mothpet.m2", + }, + }, + value = "mothpet", + text = "mothpet", + }, + { + children = { + { + fileId = "124952", + value = "mountaingiant.m2", + text = "mountaingiant.m2", + }, + }, + value = "mountaingiant", + text = "mountaingiant", + }, + { + children = { + { + fileId = "124956", + value = "mountaingiantcrystal.m2", + text = "mountaingiantcrystal.m2", + }, + { + fileId = "124957", + value = "mountaingiantcrystal_boss.m2", + text = "mountaingiantcrystal_boss.m2", + }, + }, + value = "mountaingiantcrystal", + text = "mountaingiantcrystal", + }, + { + children = { + { + fileId = "124972", + value = "mountaingiantcrystalogrila.m2", + text = "mountaingiantcrystalogrila.m2", + }, + }, + value = "mountaingiantcrystalogrila", + text = "mountaingiantcrystalogrila", + }, + { + children = { + { + fileId = "124977", + value = "mountaingiant_bladesedge.m2", + text = "mountaingiant_bladesedge.m2", + }, + { + fileId = "124979", + value = "mountaingiant_netherstorm.m2", + text = "mountaingiant_netherstorm.m2", + }, + { + fileId = "124981", + value = "mountaingiant_zangarmarsh.m2", + text = "mountaingiant_zangarmarsh.m2", + }, + }, + value = "mountaingiantoutland", + text = "mountaingiantoutland", + }, + { + children = { + { + fileId = "124984", + value = "mounteddeathknight.m2", + text = "mounteddeathknight.m2", + }, + { + fileId = "124985", + value = "mounteddeathknight_blaumeux.m2", + text = "mounteddeathknight_blaumeux.m2", + }, + { + fileId = "124986", + value = "mounteddeathknight_korthazz.m2", + text = "mounteddeathknight_korthazz.m2", + }, + { + fileId = "124987", + value = "mounteddeathknight_mograine.m2", + text = "mounteddeathknight_mograine.m2", + }, + { + fileId = "124988", + value = "mounteddeathknight_zeliek.m2", + text = "mounteddeathknight_zeliek.m2", + }, + { + fileId = "125009", + value = "ridingundeadwarhorse.m2", + text = "ridingundeadwarhorse.m2", + }, + { + fileId = "125012", + value = "unmounteddeathknight.m2", + text = "unmounteddeathknight.m2", + }, + }, + value = "mounteddeathknight", + text = "mounteddeathknight", + }, + { + children = { + { + fileId = "125013", + value = "mounteddemonknight.m2", + text = "mounteddemonknight.m2", + }, + }, + value = "mounteddemonknight", + text = "mounteddemonknight", + }, + { + children = { + { + fileId = "125017", + value = "mountedknight.m2", + text = "mountedknight.m2", + }, + }, + value = "mountedknight", + text = "mountedknight", + }, + { + children = { + { + fileId = "125021", + value = "mouthofkathune01.m2", + text = "mouthofkathune01.m2", + }, + }, + value = "mouthofkathune01", + text = "mouthofkathune01", + }, + { + children = { + { + fileId = "125023", + value = "babymurloc.m2", + text = "babymurloc.m2", + }, + { + fileId = "125024", + value = "murloc.m2", + text = "murloc.m2", + }, + }, + value = "murloc", + text = "murloc", + }, + { + children = { + { + fileId = "125041", + value = "murloccostume.m2", + text = "murloccostume.m2", + }, + }, + value = "murloccostume", + text = "murloccostume", + }, + { + children = { + { + fileId = "125049", + value = "murmur.m2", + text = "murmur.m2", + }, + }, + value = "murmur", + text = "murmur", + }, + { + children = { + { + fileId = "125051", + value = "muru.m2", + text = "muru.m2", + }, + }, + value = "muru", + text = "muru", + }, + { + children = { + { + fileId = "125059", + value = "naaru.m2", + text = "naaru.m2", + }, + }, + value = "naaru", + text = "naaru", + }, + { + children = { + { + fileId = "125069", + value = "siren.m2", + text = "siren.m2", + }, + }, + value = "nagafemale", + text = "nagafemale", + }, + { + children = { + { + fileId = "125075", + value = "nagalordmale.m2", + text = "nagalordmale.m2", + }, + }, + value = "nagalordmale", + text = "nagalordmale", + }, + { + children = { + { + fileId = "125078", + value = "nagamale.m2", + text = "nagamale.m2", + }, + }, + value = "nagamale", + text = "nagamale", + }, + { + children = { + { + fileId = "125092", + value = "necromancer.m2", + text = "necromancer.m2", + }, + }, + value = "necromancer", + text = "necromancer", + }, + { + children = { + { + fileId = "2198559", + value = "dragonnefarian.m2", + text = "dragonnefarian.m2", + }, + }, + value = "nefarian", + text = "nefarian", + }, + { + children = { + { + fileId = "125140", + value = "netherdragon.m2", + text = "netherdragon.m2", + }, + }, + value = "netherdragon", + text = "netherdragon", + }, + { + children = { + { + fileId = "125168", + value = "netherdrake.m2", + text = "netherdrake.m2", + }, + { + fileId = "125170", + value = "netherdrakeelite.m2", + text = "netherdrakeelite.m2", + }, + { + fileId = "125178", + value = "netherdrakeoutland.m2", + text = "netherdrakeoutland.m2", + }, + }, + value = "netherdrake", + text = "netherdrake", + }, + { + children = { + { + fileId = "125197", + value = "netherdrakonid.m2", + text = "netherdrakonid.m2", + }, + }, + value = "netherdrakonid", + text = "netherdrakonid", + }, + { + children = { + { + fileId = "125203", + value = "netherdrakonidboss.m2", + text = "netherdrakonidboss.m2", + }, + }, + value = "netherdrakonidboss", + text = "netherdrakonidboss", + }, + { + children = { + { + fileId = "125208", + value = "netherray.m2", + text = "netherray.m2", + }, + }, + value = "netherray", + text = "netherray", + }, + { + children = { + { + fileId = "125217", + value = "nian.m2", + text = "nian.m2", + }, + }, + value = "nian", + text = "nian", + }, + { + children = { + { + fileId = "125218", + value = "nightbane.m2", + text = "nightbane.m2", + }, + }, + value = "nightbane", + text = "nightbane", + }, + { + children = { + { + fileId = "125223", + value = "gorgon101.m2", + text = "gorgon101.m2", + }, + { + fileId = "125227", + value = "nightmare.m2", + text = "nightmare.m2", + }, + }, + value = "nightmare", + text = "nightmare", + }, + { + children = { + { + fileId = "125254", + value = "archerytarget.m2", + text = "archerytarget.m2", + }, + { + fileId = "125257", + value = "cannon.m2", + text = "cannon.m2", + }, + { + fileId = "125259", + value = "woodendummy.m2", + text = "woodendummy.m2", + }, + }, + value = "object", + text = "object", + }, + { + children = { + { + fileId = "125260", + value = "obsidiandestroyer.m2", + text = "obsidiandestroyer.m2", + }, + }, + value = "obsidiandestroyer", + text = "obsidiandestroyer", + }, + { + children = { + { + fileId = "125263", + value = "ogre.m2", + text = "ogre.m2", + }, + { + fileId = "125264", + value = "ogremage.m2", + text = "ogremage.m2", + }, + { + fileId = "125293", + value = "ogrewarlord.m2", + text = "ogrewarlord.m2", + }, + }, + value = "ogre", + text = "ogre", + }, + { + children = { + { + fileId = "125300", + value = "ogre02.m2", + text = "ogre02.m2", + }, + }, + value = "ogre02", + text = "ogre02", + }, + { + children = { + { + fileId = "125313", + value = "ogreking.m2", + text = "ogreking.m2", + }, + }, + value = "ogreking", + text = "ogreking", + }, + { + children = { + { + fileId = "125317", + value = "ogremage02.m2", + text = "ogremage02.m2", + }, + }, + value = "ogremage02", + text = "ogremage02", + }, + { + children = { + { + fileId = "125336", + value = "ogremagelord.m2", + text = "ogremagelord.m2", + }, + }, + value = "ogremagelord", + text = "ogremagelord", + }, + { + children = { + { + fileId = "125358", + value = "orca.m2", + text = "orca.m2", + }, + }, + value = "orca", + text = "orca", + }, + { + children = { + { + fileId = "125362", + value = "orcfemalekid.m2", + text = "orcfemalekid.m2", + }, + }, + value = "orcfemalekid", + text = "orcfemalekid", + }, + { + children = { + { + fileId = "125365", + value = "orcfemalekidbrown.m2", + text = "orcfemalekidbrown.m2", + }, + }, + value = "orcfemalekidbrown", + text = "orcfemalekidbrown", + }, + { + children = { + { + fileId = "2198642", + value = "orcfemale.m2", + text = "orcfemale.m2", + }, + }, + value = "orcfemalewarriorlight", + text = "orcfemalewarriorlight", + }, + { + children = { + { + fileId = "125367", + value = "orcmalekid.m2", + text = "orcmalekid.m2", + }, + }, + value = "orcmalekid", + text = "orcmalekid", + }, + { + children = { + { + fileId = "125370", + value = "orcmalekidbrown.m2", + text = "orcmalekidbrown.m2", + }, + }, + value = "orcmalekidbrown", + text = "orcmalekidbrown", + }, + { + children = { + { + fileId = "125372", + value = "orcmalemerchantlight.m2", + text = "orcmalemerchantlight.m2", + }, + }, + value = "orcmalemerchantlight", + text = "orcmalemerchantlight", + }, + { + children = { + { + fileId = "125374", + value = "orcmalewarriorheavy.m2", + text = "orcmalewarriorheavy.m2", + }, + }, + value = "orcmalewarriorheavy", + text = "orcmalewarriorheavy", + }, + { + children = { + { + fileId = "125377", + value = "orcmalewarriorlight.m2", + text = "orcmalewarriorlight.m2", + }, + }, + value = "orcmalewarriorlight", + text = "orcmalewarriorlight", + }, + { + children = { + { + fileId = "125378", + value = "owl.m2", + text = "owl.m2", + }, + }, + value = "owl", + text = "owl", + }, + { + children = { + { + fileId = "125389", + value = "pandacub.m2", + text = "pandacub.m2", + }, + }, + value = "panda", + text = "panda", + }, + { + children = { + { + fileId = "125392", + value = "paperairplane_gyro.m2", + text = "paperairplane_gyro.m2", + }, + }, + value = "paperairplane_gyro", + text = "paperairplane_gyro", + }, + { + children = { + { + fileId = "125394", + value = "paperairplane_zeppelin.m2", + text = "paperairplane_zeppelin.m2", + }, + }, + value = "paperairplane_zeppelin", + text = "paperairplane_zeppelin", + }, + { + children = { + { + fileId = "125395", + value = "parrot.m2", + text = "parrot.m2", + }, + }, + value = "parrot", + text = "parrot", + }, + { + children = { + { + fileId = "125407", + value = "phoenix.m2", + text = "phoenix.m2", + }, + }, + value = "phoenix", + text = "phoenix", + }, + { + children = { + { + fileId = "125417", + value = "phoenixpet.m2", + text = "phoenixpet.m2", + }, + }, + value = "phoenixpet", + text = "phoenixpet", + }, + { + children = { + { + fileId = "125420", + value = "pig.m2", + text = "pig.m2", + }, + }, + value = "pig", + text = "pig", + }, + { + children = { + { + fileId = "125426", + value = "magtheridon.m2", + text = "magtheridon.m2", + }, + { + fileId = "125427", + value = "pitlord.m2", + text = "pitlord.m2", + }, + }, + value = "pitlord", + text = "pitlord", + }, + { + children = { + { + fileId = "125432", + value = "portalofkathune.m2", + text = "portalofkathune.m2", + }, + }, + value = "portalofkathune", + text = "portalofkathune", + }, + { + children = { + { + fileId = "125434", + value = "prariedog.m2", + text = "prariedog.m2", + }, + }, + value = "prariedog", + text = "prariedog", + }, + { + children = { + { + fileId = "125437", + value = "pterrordax.m2", + text = "pterrordax.m2", + }, + }, + value = "pterrordax", + text = "pterrordax", + }, + { + children = { + { + fileId = "125444", + value = "pumpkinsoldier.m2", + text = "pumpkinsoldier.m2", + }, + }, + value = "pumpkinsoldier", + text = "pumpkinsoldier", + }, + { + children = { + { + fileId = "125446", + value = "creature_burningash.m2", + text = "creature_burningash.m2", + }, + { + fileId = "125447", + value = "creature_burninglegioncannon.m2", + text = "creature_burninglegioncannon.m2", + }, + { + fileId = "125448", + value = "creature_demoncrystal_02.m2", + text = "creature_demoncrystal_02.m2", + }, + { + fileId = "125449", + value = "creature_etherealstorm.m2", + text = "creature_etherealstorm.m2", + }, + { + fileId = "125450", + value = "creature_nagadistiller.m2", + text = "creature_nagadistiller.m2", + }, + { + fileId = "125451", + value = "creature_powercrystal.m2", + text = "creature_powercrystal.m2", + }, + { + fileId = "125452", + value = "creature_scourgecrystal.m2", + text = "creature_scourgecrystal.m2", + }, + { + fileId = "125454", + value = "creature_scourgecrystaldamaged.m2", + text = "creature_scourgecrystaldamaged.m2", + }, + }, + value = "questobjects", + text = "questobjects", + }, + { + children = { + { + fileId = "125497", + value = "quillboar.m2", + text = "quillboar.m2", + }, + { + fileId = "125498", + value = "quillboarcaster.m2", + text = "quillboarcaster.m2", + }, + { + fileId = "125499", + value = "quillboarwarrior.m2", + text = "quillboarwarrior.m2", + }, + }, + value = "quillboar", + text = "quillboar", + }, + { + children = { + { + fileId = "125500", + value = "battleguard.m2", + text = "battleguard.m2", + }, + }, + value = "quirajbattleguard", + text = "quirajbattleguard", + }, + { + children = { + { + fileId = "125504", + value = "quirajgladiator.m2", + text = "quirajgladiator.m2", + }, + }, + value = "quirajgladiator", + text = "quirajgladiator", + }, + { + children = { + { + fileId = "125508", + value = "quirajprophet.m2", + text = "quirajprophet.m2", + }, + }, + value = "quirajprophet", + text = "quirajprophet", + }, + { + children = { + { + fileId = "125512", + value = "rabbit.m2", + text = "rabbit.m2", + }, + { + fileId = "125513", + value = "rabbitgold.m2", + text = "rabbitgold.m2", + }, + }, + value = "rabbit", + text = "rabbit", + }, + { + children = { + { + fileId = "125518", + value = "raccoon.m2", + text = "raccoon.m2", + }, + }, + value = "raccoon", + text = "raccoon", + }, + { + children = { + { + fileId = "125519", + value = "ragnaros.m2", + text = "ragnaros.m2", + }, + }, + value = "ragnaros", + text = "ragnaros", + }, + { + children = { + { + fileId = "125522", + value = "pvpridingram.m2", + text = "pvpridingram.m2", + }, + { + fileId = "125531", + value = "ram.m2", + text = "ram.m2", + }, + { + fileId = "125546", + value = "ridingram.m2", + text = "ridingram.m2", + }, + }, + value = "ram", + text = "ram", + }, + { + children = { + { + fileId = "125559", + value = "raptor.m2", + text = "raptor.m2", + }, + }, + value = "raptor", + text = "raptor", + }, + { + children = { + { + fileId = "125568", + value = "raptor_outland.m2", + text = "raptor_outland.m2", + }, + }, + value = "raptoroutland", + text = "raptoroutland", + }, + { + children = { + { + fileId = "125576", + value = "rat.m2", + text = "rat.m2", + }, + }, + value = "rat", + text = "rat", + }, + { + children = { + { + fileId = "125578", + value = "ravengod.m2", + text = "ravengod.m2", + }, + }, + value = "ravengod", + text = "ravengod", + }, + { + children = { + { + fileId = "125581", + value = "reindeer.m2", + text = "reindeer.m2", + }, + { + fileId = "125583", + value = "reindeermount.m2", + text = "reindeermount.m2", + }, + }, + value = "reindeer", + text = "reindeer", + }, + { + children = { + { + fileId = "125589", + value = "rexxar.m2", + text = "rexxar.m2", + }, + }, + value = "rexxar", + text = "rexxar", + }, + { + children = { + { + fileId = "125593", + value = "ridingelekk.m2", + text = "ridingelekk.m2", + }, + { + fileId = "125595", + value = "ridingelekkelite.m2", + text = "ridingelekkelite.m2", + }, + }, + value = "ridingelekk", + text = "ridingelekk", + }, + { + children = { + { + fileId = "125603", + value = "packmule.m2", + text = "packmule.m2", + }, + { + fileId = "125614", + value = "ridinghorse.m2", + text = "ridinghorse.m2", + }, + { + fileId = "125620", + value = "ridinghorsepvpt2.m2", + text = "ridinghorsepvpt2.m2", + }, + }, + value = "ridinghorse", + text = "ridinghorse", + }, + { + children = { + { + fileId = "125632", + value = "ridingnetherray.m2", + text = "ridingnetherray.m2", + }, + }, + value = "ridingnetherray", + text = "ridingnetherray", + }, + { + children = { + { + fileId = "125644", + value = "ridingphoenix.m2", + text = "ridingphoenix.m2", + }, + }, + value = "ridingphoenix", + text = "ridingphoenix", + }, + { + children = { + { + fileId = "125649", + value = "pvpridingraptor.m2", + text = "pvpridingraptor.m2", + }, + { + fileId = "125680", + value = "ridingraptor.m2", + text = "ridingraptor.m2", + }, + }, + value = "ridingraptor", + text = "ridingraptor", + }, + { + children = { + { + fileId = "125687", + value = "ridingsilithid.m2", + text = "ridingsilithid.m2", + }, + }, + value = "ridingsilithid", + text = "ridingsilithid", + }, + { + children = { + { + fileId = "125698", + value = "ridingtalbuk.m2", + text = "ridingtalbuk.m2", + }, + { + fileId = "125699", + value = "ridingtalbukepic.m2", + text = "ridingtalbukepic.m2", + }, + }, + value = "ridingtalbuk", + text = "ridingtalbuk", + }, + { + children = { + { + fileId = "125715", + value = "ridingturtle.m2", + text = "ridingturtle.m2", + }, + }, + value = "ridingturtle", + text = "ridingturtle", + }, + { + children = { + { + fileId = "125718", + value = "ridingwyvern.m2", + text = "ridingwyvern.m2", + }, + }, + value = "ridingwyvern", + text = "ridingwyvern", + }, + { + children = { + { + fileId = "125729", + value = "ridingwyvernarmored.m2", + text = "ridingwyvernarmored.m2", + }, + }, + value = "ridingwyvernarmored", + text = "ridingwyvernarmored", + }, + { + children = { + { + fileId = "125741", + value = "rocketchicken.m2", + text = "rocketchicken.m2", + }, + }, + value = "rocketchicken", + text = "rocketchicken", + }, + { + children = { + { + fileId = "125743", + value = "rocketmount.m2", + text = "rocketmount.m2", + }, + }, + value = "rocketmount", + text = "rocketmount", + }, + { + children = { + { + fileId = "125747", + value = "rockflayer.m2", + text = "rockflayer.m2", + }, + { + fileId = "125763", + value = "rockflayercrystal.m2", + text = "rockflayercrystal.m2", + }, + { + fileId = "125764", + value = "rockflayerelite.m2", + text = "rockflayerelite.m2", + }, + }, + value = "rockflayer", + text = "rockflayer", + }, + { + children = { + { + fileId = "125777", + value = "salamandermale.m2", + text = "salamandermale.m2", + }, + }, + value = "salamander", + text = "salamander", + }, + { + children = { + { + fileId = "125782", + value = "sandreaver.m2", + text = "sandreaver.m2", + }, + }, + value = "sandreaver", + text = "sandreaver", + }, + { + children = { + { + fileId = "125790", + value = "sandvortex.m2", + text = "sandvortex.m2", + }, + }, + value = "sandvortex", + text = "sandvortex", + }, + { + children = { + { + fileId = "125795", + value = "sandworm.m2", + text = "sandworm.m2", + }, + }, + value = "sandworm", + text = "sandworm", + }, + { + children = { + { + fileId = "125796", + value = "satyr.m2", + text = "satyr.m2", + }, + }, + value = "satyr", + text = "satyr", + }, + { + children = { + { + fileId = "125815", + value = "scorpion.m2", + text = "scorpion.m2", + }, + }, + value = "scorpion", + text = "scorpion", + }, + { + children = { + { + fileId = "125830", + value = "seagiant.m2", + text = "seagiant.m2", + }, + }, + value = "seagiant", + text = "seagiant", + }, + { + children = { + { + fileId = "125835", + value = "sealion.m2", + text = "sealion.m2", + }, + }, + value = "sealion", + text = "sealion", + }, + { + children = { + { + fileId = "125837", + value = "seaturtle.m2", + text = "seaturtle.m2", + }, + }, + value = "seaturtle", + text = "seaturtle", + }, + { + children = { + { + fileId = "125851", + value = "serpent.m2", + text = "serpent.m2", + }, + { + fileId = "125852", + value = "serpentruby.m2", + text = "serpentruby.m2", + }, + }, + value = "serpent", + text = "serpent", + }, + { + children = { + { + fileId = "125854", + value = "shade.m2", + text = "shade.m2", + }, + { + fileId = "2199329", + value = "shadewhite.m2", + text = "shadewhite.m2", + }, + }, + value = "shade", + text = "shade", + }, + { + children = { + { + fileId = "125859", + value = "hammerhead.m2", + text = "hammerhead.m2", + }, + { + fileId = "125860", + value = "shark.m2", + text = "shark.m2", + }, + }, + value = "shark", + text = "shark", + }, + { + children = { + { + fileId = "125865", + value = "sheep.m2", + text = "sheep.m2", + }, + }, + value = "sheep", + text = "sheep", + }, + { + children = { + { + fileId = "125869", + value = "shivan.m2", + text = "shivan.m2", + }, + }, + value = "shivan", + text = "shivan", + }, + { + children = { + { + fileId = "125891", + value = "silithid.m2", + text = "silithid.m2", + }, + }, + value = "silithid", + text = "silithid", + }, + { + children = { + { + fileId = "125892", + value = "silithidscarab.m2", + text = "silithidscarab.m2", + }, + }, + value = "silithidscarab", + text = "silithidscarab", + }, + { + children = { + { + fileId = "125902", + value = "silithidtank.m2", + text = "silithidtank.m2", + }, + }, + value = "silithidtank", + text = "silithidtank", + }, + { + children = { + { + fileId = "125912", + value = "silithidtankboss.m2", + text = "silithidtankboss.m2", + }, + { + fileId = "125913", + value = "silithidtankboss_damaged.m2", + text = "silithidtankboss_damaged.m2", + }, + }, + value = "silithidtankboss", + text = "silithidtankboss", + }, + { + children = { + { + fileId = "125931", + value = "silithidwasp.m2", + text = "silithidwasp.m2", + }, + }, + value = "silithidwasp", + text = "silithidwasp", + }, + { + children = { + { + fileId = "125932", + value = "silithidwaspboss.m2", + text = "silithidwaspboss.m2", + }, + }, + value = "silithidwaspboss", + text = "silithidwaspboss", + }, + { + children = { + { + fileId = "125938", + value = "skeletalserpent.m2", + text = "skeletalserpent.m2", + }, + }, + value = "skeletalserpent", + text = "skeletalserpent", + }, + { + children = { + { + fileId = "125942", + value = "skeleton.m2", + text = "skeleton.m2", + }, + }, + value = "skeleton", + text = "skeleton", + }, + { + children = { + { + fileId = "125947", + value = "skeletonmage.m2", + text = "skeletonmage.m2", + }, + }, + value = "skeletonmage", + text = "skeletonmage", + }, + { + children = { + { + fileId = "125948", + value = "skeletonnaked.m2", + text = "skeletonnaked.m2", + }, + }, + value = "skeletonnaked", + text = "skeletonnaked", + }, + { + children = { + { + fileId = "125956", + value = "skunk.m2", + text = "skunk.m2", + }, + }, + value = "skunk", + text = "skunk", + }, + { + children = { + { + fileId = "125957", + value = "slime.m2", + text = "slime.m2", + }, + { + fileId = "125958", + value = "slimelesser.m2", + text = "slimelesser.m2", + }, + }, + value = "slime", + text = "slime", + }, + { + children = { + { + fileId = "125965", + value = "giantslime.m2", + text = "giantslime.m2", + }, + }, + value = "slimegiant", + text = "slimegiant", + }, + { + children = { + { + fileId = "125967", + value = "slith.m2", + text = "slith.m2", + }, + }, + value = "slith", + text = "slith", + }, + { + children = { + { + fileId = "125969", + value = "snake.m2", + text = "snake.m2", + }, + }, + value = "snake", + text = "snake", + }, + { + children = { + { + fileId = "125984", + value = "snowman.m2", + text = "snowman.m2", + }, + }, + value = "snowman", + text = "snowman", + }, + { + children = { + { + fileId = "125988", + value = "spectraltiger.m2", + text = "spectraltiger.m2", + }, + { + fileId = "125989", + value = "spectraltigerepic.m2", + text = "spectraltigerepic.m2", + }, + }, + value = "spectraltiger", + text = "spectraltiger", + }, + { + children = { + { + fileId = "125990", + value = "airelementaltotem.m2", + text = "airelementaltotem.m2", + }, + { + fileId = "125991", + value = "battlestandard_alliance.m2", + text = "battlestandard_alliance.m2", + }, + { + fileId = "125993", + value = "battlestandard_horde.m2", + text = "battlestandard_horde.m2", + }, + { + fileId = "125995", + value = "creature_spellportal.m2", + text = "creature_spellportal.m2", + }, + { + fileId = "126004", + value = "draeneitotem_air.m2", + text = "draeneitotem_air.m2", + }, + { + fileId = "126005", + value = "draeneitotem_earth.m2", + text = "draeneitotem_earth.m2", + }, + { + fileId = "126006", + value = "draeneitotem_fire.m2", + text = "draeneitotem_fire.m2", + }, + { + fileId = "126007", + value = "draeneitotem_water.m2", + text = "draeneitotem_water.m2", + }, + { + fileId = "126009", + value = "earthelementaltotem.m2", + text = "earthelementaltotem.m2", + }, + { + fileId = "126011", + value = "eyeofkilrog.m2", + text = "eyeofkilrog.m2", + }, + { + fileId = "126012", + value = "fireelementaltotem.m2", + text = "fireelementaltotem.m2", + }, + { + fileId = "126013", + value = "firelighttotem.m2", + text = "firelighttotem.m2", + }, + { + fileId = "126014", + value = "firetotem.m2", + text = "firetotem.m2", + }, + { + fileId = "126016", + value = "flameturret.m2", + text = "flameturret.m2", + }, + { + fileId = "126018", + value = "healingtotem.m2", + text = "healingtotem.m2", + }, + { + fileId = "126020", + value = "invisibilitytotem.m2", + text = "invisibilitytotem.m2", + }, + { + fileId = "126022", + value = "landmine01.m2", + text = "landmine01.m2", + }, + { + fileId = "126024", + value = "manatotem.m2", + text = "manatotem.m2", + }, + { + fileId = "126026", + value = "monsterlure01.m2", + text = "monsterlure01.m2", + }, + { + fileId = "126032", + value = "sentrytotem.m2", + text = "sentrytotem.m2", + }, + { + fileId = "126033", + value = "serpent_totem.m2", + text = "serpent_totem.m2", + }, + { + fileId = "126036", + value = "stasistotem.m2", + text = "stasistotem.m2", + }, + { + fileId = "126040", + value = "valentinesdummy.m2", + text = "valentinesdummy.m2", + }, + { + fileId = "126041", + value = "waterelementaltotem.m2", + text = "waterelementaltotem.m2", + }, + }, + value = "spells", + text = "spells", + }, + { + children = { + { + fileId = "126042", + value = "spirithealer.m2", + text = "spirithealer.m2", + }, + }, + value = "spirithealer", + text = "spirithealer", + }, + { + children = { + { + fileId = "126045", + value = "spiritofredemption.m2", + text = "spiritofredemption.m2", + }, + }, + value = "spiritofredemption", + text = "spiritofredemption", + }, + { + children = { + { + fileId = "126047", + value = "sporebat.m2", + text = "sporebat.m2", + }, + }, + value = "sporebat", + text = "sporebat", + }, + { + children = { + { + fileId = "126052", + value = "sporecreature.m2", + text = "sporecreature.m2", + }, + }, + value = "sporecreature", + text = "sporecreature", + }, + { + children = { + { + fileId = "126055", + value = "sporeling.m2", + text = "sporeling.m2", + }, + }, + value = "sporeling", + text = "sporeling", + }, + { + children = { + { + fileId = "126061", + value = "squirrel.m2", + text = "squirrel.m2", + }, + }, + value = "squirrel", + text = "squirrel", + }, + { + children = { + { + fileId = "126065", + value = "stag.m2", + text = "stag.m2", + }, + }, + value = "stag", + text = "stag", + }, + { + children = { + { + fileId = "126069", + value = "steamtonk.m2", + text = "steamtonk.m2", + }, + }, + value = "steamtonk", + text = "steamtonk", + }, + { + children = { + { + fileId = "126072", + value = "stonekeeper.m2", + text = "stonekeeper.m2", + }, + }, + value = "stonekeeper", + text = "stonekeeper", + }, + { + children = { + { + fileId = "126075", + value = "stormcrow.m2", + text = "stormcrow.m2", + }, + }, + value = "stormcrow", + text = "stormcrow", + }, + { + children = { + { + fileId = "126077", + value = "stormcrowdruid.m2", + text = "stormcrowdruid.m2", + }, + }, + value = "stormcrowdruid", + text = "stormcrowdruid", + }, + { + children = { + { + fileId = "126081", + value = "succubus.m2", + text = "succubus.m2", + }, + }, + value = "succubus", + text = "succubus", + }, + { + children = { + { + fileId = "126106", + value = "talbuk.m2", + text = "talbuk.m2", + }, + }, + value = "talbuk", + text = "talbuk", + }, + { + children = { + { + fileId = "126117", + value = "tallstrider.m2", + text = "tallstrider.m2", + }, + }, + value = "tallstrider", + text = "tallstrider", + }, + { + children = { + { + fileId = "126124", + value = "tarantula.m2", + text = "tarantula.m2", + }, + }, + value = "tarantula", + text = "tarantula", + }, + { + children = { + { + fileId = "126131", + value = "deathguard.m2", + text = "deathguard.m2", + }, + }, + value = "tempdeathguard", + text = "tempdeathguard", + }, + { + children = { + { + fileId = "126133", + value = "scarletcrusaderheavy.m2", + text = "scarletcrusaderheavy.m2", + }, + }, + value = "tempscarletcrusaderheavy", + text = "tempscarletcrusaderheavy", + }, + { + children = { + { + fileId = "126136", + value = "scarletcrusaderlight.m2", + text = "scarletcrusaderlight.m2", + }, + }, + value = "tempscarletcrusaderlight", + text = "tempscarletcrusaderlight", + }, + { + children = { + { + fileId = "126137", + value = "scourgemalenpc.m2", + text = "scourgemalenpc.m2", + }, + }, + value = "tempscourgemalenpc", + text = "tempscourgemalenpc", + }, + { + children = { + { + fileId = "126143", + value = "terongorefiend.m2", + text = "terongorefiend.m2", + }, + }, + value = "terongorefiend", + text = "terongorefiend", + }, + { + children = { + { + fileId = "126149", + value = "terongorefiend_mounted.m2", + text = "terongorefiend_mounted.m2", + }, + }, + value = "terongorefiend_mounted", + text = "terongorefiend_mounted", + }, + { + children = { + { + fileId = "126150", + value = "tharazun.m2", + text = "tharazun.m2", + }, + }, + value = "tharazun", + text = "tharazun", + }, + { + children = { + { + fileId = "126153", + value = "threshadon.m2", + text = "threshadon.m2", + }, + }, + value = "threshadon", + text = "threshadon", + }, + { + children = { + { + fileId = "126158", + value = "thunderaan.m2", + text = "thunderaan.m2", + }, + }, + value = "thunderaan", + text = "thunderaan", + }, + { + children = { + { + fileId = "126169", + value = "thunderlizard.m2", + text = "thunderlizard.m2", + }, + }, + value = "thunderlizard", + text = "thunderlizard", + }, + { + children = { + { + fileId = "126171", + value = "tiger.m2", + text = "tiger.m2", + }, + { + fileId = "126172", + value = "tiger_ghost.m2", + text = "tiger_ghost.m2", + }, + { + fileId = "126173", + value = "tigercub.m2", + text = "tigercub.m2", + }, + { + fileId = "126174", + value = "tigergem.m2", + text = "tigergem.m2", + }, + }, + value = "tiger", + text = "tiger", + }, + { + children = { + { + fileId = "2199505", + value = "tigon.m2", + text = "tigon.m2", + }, + { + fileId = "126194", + value = "tigonfemale.m2", + text = "tigonfemale.m2", + }, + { + fileId = "126195", + value = "tigonmale.m2", + text = "tigonmale.m2", + }, + }, + value = "tigon", + text = "tigon", + }, + { + children = { + { + fileId = "126198", + value = "time_rift1.m2", + text = "time_rift1.m2", + }, + }, + value = "timerift", + text = "timerift", + }, + { + children = { + { + fileId = "126199", + value = "titanfemale.m2", + text = "titanfemale.m2", + }, + }, + value = "titanfemale", + text = "titanfemale", + }, + { + children = { + { + fileId = "126214", + value = "titanmale.m2", + text = "titanmale.m2", + }, + { + fileId = "126215", + value = "titanmale_ghost.m2", + text = "titanmale_ghost.m2", + }, + }, + value = "titanmale", + text = "titanmale", + }, + { + children = { + { + fileId = "126223", + value = "ashenvaletreefalling01.m2", + text = "ashenvaletreefalling01.m2", + }, + }, + value = "tree", + text = "tree", + }, + { + children = { + { + fileId = "126225", + value = "trex.m2", + text = "trex.m2", + }, + }, + value = "trex", + text = "trex", + }, + { + children = { + { + fileId = "126235", + value = "tripod.m2", + text = "tripod.m2", + }, + }, + value = "tripod", + text = "tripod", + }, + { + children = { + { + fileId = "126239", + value = "troglodyte.m2", + text = "troglodyte.m2", + }, + }, + value = "troglodyte", + text = "troglodyte", + }, + { + children = { + { + fileId = "126244", + value = "troll.m2", + text = "troll.m2", + }, + { + fileId = "126245", + value = "trollforestboss.m2", + text = "trollforestboss.m2", + }, + { + fileId = "126246", + value = "trollforestcaster.m2", + text = "trollforestcaster.m2", + }, + { + fileId = "126247", + value = "trolljungleboss.m2", + text = "trolljungleboss.m2", + }, + { + fileId = "126248", + value = "trolljunglecaster.m2", + text = "trolljunglecaster.m2", + }, + { + fileId = "126249", + value = "trollmelee.m2", + text = "trollmelee.m2", + }, + { + fileId = "126267", + value = "trollwhelp.m2", + text = "trollwhelp.m2", + }, + }, + value = "troll", + text = "troll", + }, + { + children = { + { + fileId = "126277", + value = "trolldire.m2", + text = "trolldire.m2", + }, + }, + value = "trolldire", + text = "trolldire", + }, + { + children = { + { + fileId = "126278", + value = "turkey.m2", + text = "turkey.m2", + }, + }, + value = "turkey", + text = "turkey", + }, + { + children = { + { + fileId = "126281", + value = "turtle.m2", + text = "turtle.m2", + }, + }, + value = "turtle", + text = "turtle", + }, + { + children = { + { + fileId = "126289", + value = "twinemperor.m2", + text = "twinemperor.m2", + }, + }, + value = "twinemperor", + text = "twinemperor", + }, + { + children = { + { + fileId = "234866", + value = "tyraelpet.m2", + text = "tyraelpet.m2", + }, + }, + value = "tyraelpet", + text = "tyraelpet", + }, + { + children = { + { + fileId = "126302", + value = "undeadbeast.m2", + text = "undeadbeast.m2", + }, + }, + value = "undeadbeast", + text = "undeadbeast", + }, + { + children = { + { + fileId = "126304", + value = "ridingundeadhorse.m2", + text = "ridingundeadhorse.m2", + }, + { + fileId = "126306", + value = "undeadhorse.m2", + text = "undeadhorse.m2", + }, + }, + value = "undeadhorse", + text = "undeadhorse", + }, + { + children = { + { + fileId = "126320", + value = "unicorn.m2", + text = "unicorn.m2", + }, + }, + value = "unicorn", + text = "unicorn", + }, + { + children = { + { + fileId = "126337", + value = "velen.m2", + text = "velen.m2", + }, + }, + value = "velen", + text = "velen", + }, + { + children = { + { + fileId = "126342", + value = "voidcaller.m2", + text = "voidcaller.m2", + }, + }, + value = "voidcaller", + text = "voidcaller", + }, + { + children = { + { + fileId = "126350", + value = "voidgod.m2", + text = "voidgod.m2", + }, + }, + value = "voidgod", + text = "voidgod", + }, + { + children = { + { + fileId = "126353", + value = "voidlord.m2", + text = "voidlord.m2", + }, + }, + value = "voidlord", + text = "voidlord", + }, + { + children = { + { + fileId = "126363", + value = "voidterror.m2", + text = "voidterror.m2", + }, + }, + value = "voidterror", + text = "voidterror", + }, + { + children = { + { + fileId = "126369", + value = "voidwalker.m2", + text = "voidwalker.m2", + }, + }, + value = "voidwalker", + text = "voidwalker", + }, + { + children = { + { + fileId = "126371", + value = "voidwalker_outland.m2", + text = "voidwalker_outland.m2", + }, + }, + value = "voidwalkeroutland", + text = "voidwalkeroutland", + }, + { + children = { + { + fileId = "126382", + value = "voidwraith.m2", + text = "voidwraith.m2", + }, + }, + value = "voidwraith", + text = "voidwraith", + }, + { + children = { + { + fileId = "126403", + value = "pvpwarhorse.m2", + text = "pvpwarhorse.m2", + }, + { + fileId = "126407", + value = "warhorse.m2", + text = "warhorse.m2", + }, + }, + value = "warhorse", + text = "warhorse", + }, + { + children = { + { + fileId = "126410", + value = "warpstalker.m2", + text = "warpstalker.m2", + }, + }, + value = "warpstalker", + text = "warpstalker", + }, + { + children = { + { + fileId = "3940778", + value = "warpstalkermountbc.m2", + text = "warpstalkermountbc.m2", + }, + }, + value = "warpstalkermountbc", + text = "warpstalkermountbc", + }, + { + children = { + { + fileId = "126418", + value = "warpstorm.m2", + text = "warpstorm.m2", + }, + { + fileId = "126419", + value = "warpstorm_large.m2", + text = "warpstorm_large.m2", + }, + { + fileId = "126420", + value = "warpstorm_xlarge.m2", + text = "warpstorm_xlarge.m2", + }, + }, + value = "warpstorm", + text = "warpstorm", + }, + { + children = { + { + fileId = "126423", + value = "waterbubblecreature.m2", + text = "waterbubblecreature.m2", + }, + { + fileId = "126424", + value = "waterbubblecreature_nosound.m2", + text = "waterbubblecreature_nosound.m2", + }, + }, + value = "waterbubblecreature", + text = "waterbubblecreature", + }, + { + children = { + { + fileId = "126426", + value = "waterelemental.m2", + text = "waterelemental.m2", + }, + }, + value = "waterelemental", + text = "waterelemental", + }, + { + children = { + { + fileId = "126437", + value = "wellofsouls.m2", + text = "wellofsouls.m2", + }, + { + fileId = "126440", + value = "wellofsoulsgrief.m2", + text = "wellofsoulsgrief.m2", + }, + { + fileId = "126441", + value = "wellofsoulspain.m2", + text = "wellofsoulspain.m2", + }, + { + fileId = "126443", + value = "wellofsoulsseduction.m2", + text = "wellofsoulsseduction.m2", + }, + }, + value = "wellofsouls", + text = "wellofsouls", + }, + { + children = { + { + fileId = "126444", + value = "wendigo.m2", + text = "wendigo.m2", + }, + }, + value = "wendigo", + text = "wendigo", + }, + { + children = { + { + fileId = "126449", + value = "wight.m2", + text = "wight.m2", + }, + }, + value = "wight", + text = "wight", + }, + { + children = { + { + fileId = "126452", + value = "windserpent.m2", + text = "windserpent.m2", + }, + }, + value = "windserpent", + text = "windserpent", + }, + { + children = { + { + fileId = "126465", + value = "windserpentoutland.m2", + text = "windserpentoutland.m2", + }, + }, + value = "windserpentoutland", + text = "windserpentoutland", + }, + { + children = { + { + fileId = "126483", + value = "wisp.m2", + text = "wisp.m2", + }, + { + fileId = "2199512", + value = "wispred.m2", + text = "wispred.m2", + }, + }, + value = "wisp", + text = "wisp", + }, + { + children = { + { + fileId = "126487", + value = "wolf.m2", + text = "wolf.m2", + }, + { + fileId = "126488", + value = "wolf_ghost.m2", + text = "wolf_ghost.m2", + }, + }, + value = "wolf", + text = "wolf", + }, + { + children = { + { + fileId = "126501", + value = "wolpertinger.m2", + text = "wolpertinger.m2", + }, + }, + value = "wolpertinger", + text = "wolpertinger", + }, + { + children = { + { + fileId = "126511", + value = "worgen.m2", + text = "worgen.m2", + }, + }, + value = "worgen", + text = "worgen", + }, + { + children = { + { + fileId = "126512", + value = "worm.m2", + text = "worm.m2", + }, + }, + value = "worm", + text = "worm", + }, + { + children = { + { + fileId = "126521", + value = "wrathguard.m2", + text = "wrathguard.m2", + }, + }, + value = "wrathguard", + text = "wrathguard", + }, + { + children = { + { + fileId = "126530", + value = "wyvern.m2", + text = "wyvern.m2", + }, + { + fileId = "126532", + value = "wyvern_armored.m2", + text = "wyvern_armored.m2", + }, + { + fileId = "126540", + value = "wyvern_mount.m2", + text = "wyvern_mount.m2", + }, + }, + value = "wyvern", + text = "wyvern", + }, + { + children = { + { + fileId = "126560", + value = "zebramount.m2", + text = "zebramount.m2", + }, + }, + value = "zebramount", + text = "zebramount", + }, + { + children = { + { + fileId = "126561", + value = "zerglingpet.m2", + text = "zerglingpet.m2", + }, + }, + value = "zergling", + text = "zergling", + }, + { + children = { + { + fileId = "126565", + value = "zigguratcrystal.m2", + text = "zigguratcrystal.m2", + }, + }, + value = "zigguratcrystal", + text = "zigguratcrystal", + }, + { + children = { + { + fileId = "126568", + value = "zippelin.m2", + text = "zippelin.m2", + }, + }, + value = "zippelin", + text = "zippelin", + }, + { + children = { + { + fileId = "126570", + value = "zombie.m2", + text = "zombie.m2", + }, + { + fileId = "126571", + value = "zombiearm.m2", + text = "zombiearm.m2", + }, + { + fileId = "126575", + value = "zombiesword.m2", + text = "zombiesword.m2", + }, + }, + value = "zombie", + text = "zombie", + }, + { + children = { + { + fileId = "126597", + value = "zuljin.m2", + text = "zuljin.m2", + }, + }, + value = "zuljin", + text = "zuljin", + }, + }, + value = "creature", + text = "creature", + }, + { + children = { + { + children = { + { + fileId = "130465", + value = "bladesedgeforestskybox.m2", + text = "bladesedgeforestskybox.m2", + }, + { + fileId = "130469", + value = "bladesedgenightelfskybox.m2", + text = "bladesedgenightelfskybox.m2", + }, + { + fileId = "130476", + value = "bladesedgeskybox.m2", + text = "bladesedgeskybox.m2", + }, + { + fileId = "130481", + value = "bonewastesskybox.m2", + text = "bonewastesskybox.m2", + }, + { + fileId = "130482", + value = "cavernsoftimesky.m2", + text = "cavernsoftimesky.m2", + }, + { + fileId = "130493", + value = "cot_sky01.m2", + text = "cot_sky01.m2", + }, + { + fileId = "130495", + value = "deathclouds.m2", + text = "deathclouds.m2", + }, + { + fileId = "130497", + value = "diremaulskybox.m2", + text = "diremaulskybox.m2", + }, + { + fileId = "130525", + value = "hellfireskybox.m2", + text = "hellfireskybox.m2", + }, + { + fileId = "130575", + value = "nagrandskybox.m2", + text = "nagrandskybox.m2", + }, + { + fileId = "130593", + value = "netherstormskybox.m2", + text = "netherstormskybox.m2", + }, + { + fileId = "130609", + value = "portalworldlegionsky.m2", + text = "portalworldlegionsky.m2", + }, + { + fileId = "130616", + value = "shadowmoonillidan.m2", + text = "shadowmoonillidan.m2", + }, + { + fileId = "130623", + value = "shadowmoonskybox.m2", + text = "shadowmoonskybox.m2", + }, + { + fileId = "130629", + value = "stars.m2", + text = "stars.m2", + }, + { + fileId = "130636", + value = "stratholmeskybox.m2", + text = "stratholmeskybox.m2", + }, + }, + value = "stars", + text = "stars", + }, + }, + value = "environments", + text = "environments", + }, + { + children = { + { + children = { + { + fileId = "130731", + value = "talktome.m2", + text = "talktome.m2", + }, + { + fileId = "587741", + value = "talktome_chat.m2", + text = "talktome_chat.m2", + }, + { + fileId = "587744", + value = "talktome_gears.m2", + text = "talktome_gears.m2", + }, + { + fileId = "650616", + value = "talktome_legendary.m2", + text = "talktome_legendary.m2", + }, + { + fileId = "650036", + value = "talktome_petbattles.m2", + text = "talktome_petbattles.m2", + }, + { + fileId = "667489", + value = "talktome_petbattles_gold.m2", + text = "talktome_petbattles_gold.m2", + }, + { + fileId = "650619", + value = "talktome_questionlegendary.m2", + text = "talktome_questionlegendary.m2", + }, + { + fileId = "130732", + value = "talktomeblue.m2", + text = "talktomeblue.m2", + }, + { + fileId = "1444889", + value = "talktomeblue_faded.m2", + text = "talktomeblue_faded.m2", + }, + { + fileId = "1417649", + value = "talktomefaded.m2", + text = "talktomefaded.m2", + }, + { + fileId = "130733", + value = "talktomegreen.m2", + text = "talktomegreen.m2", + }, + { + fileId = "130734", + value = "talktomegrey.m2", + text = "talktomegrey.m2", + }, + { + fileId = "130735", + value = "talktomequestion_grey.m2", + text = "talktomequestion_grey.m2", + }, + { + fileId = "130736", + value = "talktomequestion_ltblue.m2", + text = "talktomequestion_ltblue.m2", + }, + { + fileId = "130737", + value = "talktomequestion_white.m2", + text = "talktomequestion_white.m2", + }, + { + fileId = "1444892", + value = "talktomequestionltblue_faded.m2", + text = "talktomequestionltblue_faded.m2", + }, + { + fileId = "130738", + value = "talktomequestionmark.m2", + text = "talktomequestionmark.m2", + }, + { + fileId = "433904", + value = "talktomered.m2", + text = "talktomered.m2", + }, + { + fileId = "523824", + value = "talktometrainerclass.m2", + text = "talktometrainerclass.m2", + }, + { + fileId = "130745", + value = "ui-autocastbutton.m2", + text = "ui-autocastbutton.m2", + }, + { + fileId = "130746", + value = "ui-buffon.m2", + text = "ui-buffon.m2", + }, + }, + value = "buttons", + text = "buttons", + }, + { + children = { + { + fileId = "131012", + value = "ui-cooldown-indicator.m2", + text = "ui-cooldown-indicator.m2", + }, + }, + value = "cooldown", + text = "cooldown", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "623712", + value = "ui_alliance.m2", + text = "ui_alliance.m2", + }, + }, + value = "ui_alliance", + text = "ui_alliance", + }, + { + children = { + { + fileId = "651555", + value = "ui_alliance_lowres.m2", + text = "ui_alliance_lowres.m2", + }, + }, + value = "ui_alliance_lowres", + text = "ui_alliance_lowres", + }, + { + children = { + { + fileId = "131921", + value = "ui_bloodelf.m2", + text = "ui_bloodelf.m2", + }, + }, + value = "ui_bloodelf", + text = "ui_bloodelf", + }, + { + children = { + { + fileId = "343630", + value = "ui_characterselect.m2", + text = "ui_characterselect.m2", + }, + }, + value = "ui_characterselect", + text = "ui_characterselect", + }, + { + children = { + { + fileId = "236082", + value = "ui_deathknight.m2", + text = "ui_deathknight.m2", + }, + { + fileId = "1560617", + value = "ui_deathknight_lowres.m2", + text = "ui_deathknight_lowres.m2", + }, + }, + value = "ui_deathknight", + text = "ui_deathknight", + }, + { + children = { + { + fileId = "1305036", + value = "ui_demonhunter.m2", + text = "ui_demonhunter.m2", + }, + { + fileId = "1560446", + value = "ui_demonhunter_lowres.m2", + text = "ui_demonhunter_lowres.m2", + }, + }, + value = "ui_demonhunter", + text = "ui_demonhunter", + }, + { + children = { + { + fileId = "131934", + value = "ui_draenei.m2", + text = "ui_draenei.m2", + }, + }, + value = "ui_draenei", + text = "ui_draenei", + }, + { + children = { + { + fileId = "131940", + value = "ui_dwarf.m2", + text = "ui_dwarf.m2", + }, + }, + value = "ui_dwarf", + text = "ui_dwarf", + }, + { + children = { + { + fileId = "430171", + value = "ui_gnome.m2", + text = "ui_gnome.m2", + }, + }, + value = "ui_gnome", + text = "ui_gnome", + }, + { + children = { + { + fileId = "319097", + value = "ui_goblin.m2", + text = "ui_goblin.m2", + }, + }, + value = "ui_goblin", + text = "ui_goblin", + }, + { + children = { + { + fileId = "1662239", + value = "ui_highmountaintauren.m2", + text = "ui_highmountaintauren.m2", + }, + }, + value = "ui_highmountaintauren", + text = "ui_highmountaintauren", + }, + { + children = { + { + fileId = "623714", + value = "ui_horde.m2", + text = "ui_horde.m2", + }, + }, + value = "ui_horde", + text = "ui_horde", + }, + { + children = { + { + fileId = "651558", + value = "ui_horde_lowres.m2", + text = "ui_horde_lowres.m2", + }, + }, + value = "ui_horde_lowres", + text = "ui_horde_lowres", + }, + { + children = { + { + fileId = "131948", + value = "ui_human.m2", + text = "ui_human.m2", + }, + }, + value = "ui_human", + text = "ui_human", + }, + { + children = { + { + fileId = "1662241", + value = "ui_lightforgeddraenei.m2", + text = "ui_lightforgeddraenei.m2", + }, + }, + value = "ui_lightforgeddraenei", + text = "ui_lightforgeddraenei", + }, + { + children = { + { + fileId = "131970", + value = "ui_mainmenu.m2", + text = "ui_mainmenu.m2", + }, + }, + value = "ui_mainmenu", + text = "ui_mainmenu", + }, + { + children = { + { + fileId = "131982", + value = "ui_mainmenu_burningcrusade.m2", + text = "ui_mainmenu_burningcrusade.m2", + }, + }, + value = "ui_mainmenu_burningcrusade", + text = "ui_mainmenu_burningcrusade", + }, + { + children = { + { + fileId = "653518", + value = "ui_mainmenu_cata_lowbandwidth.m2", + text = "ui_mainmenu_cata_lowbandwidth.m2", + }, + }, + value = "ui_mainmenu_cata_lowbandwidth", + text = "ui_mainmenu_cata_lowbandwidth", + }, + { + children = { + { + fileId = "466614", + value = "ui_mainmenu_cataclysm.m2", + text = "ui_mainmenu_cataclysm.m2", + }, + }, + value = "ui_mainmenu_cataclysm", + text = "ui_mainmenu_cataclysm", + }, + { + children = { + { + fileId = "1396280", + value = "ui_mainmenu_legion.m2", + text = "ui_mainmenu_legion.m2", + }, + { + fileId = "1396283", + value = "ui_mainmenu_legion_lowbandwidth.m2", + text = "ui_mainmenu_legion_lowbandwidth.m2", + }, + }, + value = "ui_mainmenu_legion", + text = "ui_mainmenu_legion", + }, + { + children = { + { + fileId = "467804", + value = "ui_mainmenu_lowbandwidth.m2", + text = "ui_mainmenu_lowbandwidth.m2", + }, + }, + value = "ui_mainmenu_lowbandwidth", + text = "ui_mainmenu_lowbandwidth", + }, + { + children = { + { + fileId = "236122", + value = "ui_mainmenu_northrend.m2", + text = "ui_mainmenu_northrend.m2", + }, + }, + value = "ui_mainmenu_northrend", + text = "ui_mainmenu_northrend", + }, + { + children = { + { + fileId = "631713", + value = "ui_mainmenu_pandaria.m2", + text = "ui_mainmenu_pandaria.m2", + }, + }, + value = "ui_mainmenu_pandaria", + text = "ui_mainmenu_pandaria", + }, + { + children = { + { + fileId = "1067592", + value = "ui_mainmenu_warlords.m2", + text = "ui_mainmenu_warlords.m2", + }, + { + fileId = "1067658", + value = "ui_mainmenu_warlords_lowbandwidth.m2", + text = "ui_mainmenu_warlords_lowbandwidth.m2", + }, + }, + value = "ui_mainmenu_warlords", + text = "ui_mainmenu_warlords", + }, + { + children = { + { + fileId = "1662240", + value = "ui_nightborneelf.m2", + text = "ui_nightborneelf.m2", + }, + }, + value = "ui_nightborneelf", + text = "ui_nightborneelf", + }, + { + children = { + { + fileId = "131993", + value = "ui_nightelf.m2", + text = "ui_nightelf.m2", + }, + }, + value = "ui_nightelf", + text = "ui_nightelf", + }, + { + children = { + { + fileId = "132003", + value = "ui_orc.m2", + text = "ui_orc.m2", + }, + }, + value = "ui_orc", + text = "ui_orc", + }, + { + children = { + { + fileId = "574549", + value = "ui_pandaren.m2", + text = "ui_pandaren.m2", + }, + }, + value = "ui_pandaren", + text = "ui_pandaren", + }, + { + children = { + { + fileId = "623716", + value = "ui_pandarencharacterselect.m2", + text = "ui_pandarencharacterselect.m2", + }, + }, + value = "ui_pandarencharacterselect", + text = "ui_pandarencharacterselect", + }, + { + children = { + { + fileId = "651561", + value = "ui_pandarencharacterselect_lowres.m2", + text = "ui_pandarencharacterselect_lowres.m2", + }, + }, + value = "ui_pandarencharacterselect_lowres", + text = "ui_pandarencharacterselect_lowres", + }, + { + children = { + { + fileId = "132005", + value = "ui_rs_dwarf.m2", + text = "ui_rs_dwarf.m2", + }, + }, + value = "ui_rs_dwarf", + text = "ui_rs_dwarf", + }, + { + children = { + { + fileId = "132007", + value = "ui_rs_human.m2", + text = "ui_rs_human.m2", + }, + }, + value = "ui_rs_human", + text = "ui_rs_human", + }, + { + children = { + { + fileId = "132010", + value = "ui_rs_nightelf.m2", + text = "ui_rs_nightelf.m2", + }, + }, + value = "ui_rs_nightelf", + text = "ui_rs_nightelf", + }, + { + children = { + { + fileId = "132016", + value = "ui_rs_orc.m2", + text = "ui_rs_orc.m2", + }, + }, + value = "ui_rs_orc", + text = "ui_rs_orc", + }, + { + children = { + { + fileId = "132020", + value = "ui_rs_scourge.m2", + text = "ui_rs_scourge.m2", + }, + }, + value = "ui_rs_scourge", + text = "ui_rs_scourge", + }, + { + children = { + { + fileId = "132025", + value = "ui_rs_tauren.m2", + text = "ui_rs_tauren.m2", + }, + }, + value = "ui_rs_tauren", + text = "ui_rs_tauren", + }, + { + children = { + { + fileId = "132035", + value = "ui_scourge.m2", + text = "ui_scourge.m2", + }, + }, + value = "ui_scourge", + text = "ui_scourge", + }, + { + children = { + { + fileId = "132046", + value = "ui_tauren.m2", + text = "ui_tauren.m2", + }, + }, + value = "ui_tauren", + text = "ui_tauren", + }, + { + children = { + { + fileId = "429097", + value = "ui_troll.m2", + text = "ui_troll.m2", + }, + }, + value = "ui_troll", + text = "ui_troll", + }, + { + children = { + { + fileId = "1662242", + value = "ui_voidelf.m2", + text = "ui_voidelf.m2", + }, + }, + value = "ui_voidelf", + text = "ui_voidelf", + }, + { + children = { + { + fileId = "313254", + value = "ui_worgen.m2", + text = "ui_worgen.m2", + }, + }, + value = "ui_worgen", + text = "ui_worgen", + }, + }, + value = "models", + text = "models", + }, + }, + value = "glues", + text = "glues", + }, + { + children = { + { + fileId = "2198609", + value = "inventoryartgeometry.m2", + text = "inventoryartgeometry.m2", + }, + { + fileId = "2198630", + value = "inventoryartgeometryold.m2", + text = "inventoryartgeometryold.m2", + }, + { + fileId = "2198512", + value = "invnoart.m2", + text = "invnoart.m2", + }, + }, + value = "inventoryitems", + text = "inventoryitems", + }, + { + children = { + { + fileId = "136255", + value = "forcedbackpackitem.m2", + text = "forcedbackpackitem.m2", + }, + }, + value = "itemanimations", + text = "itemanimations", + }, + { + children = { + { + fileId = "136432", + value = "minimaparrow.m2", + text = "minimaparrow.m2", + }, + { + fileId = "136433", + value = "minimapcompassring.m2", + text = "minimapcompassring.m2", + }, + { + children = { + { + fileId = "136436", + value = "minimapping.m2", + text = "minimapping.m2", + }, + }, + value = "ping", + text = "ping", + }, + { + fileId = "136444", + value = "rotating-minimaparrow.m2", + text = "rotating-minimaparrow.m2", + }, + { + fileId = "136447", + value = "rotating-minimapgrouparrow.m2", + text = "rotating-minimapgrouparrow.m2", + }, + }, + value = "minimap", + text = "minimap", + }, + { + children = { + { + fileId = "1068226", + value = "6hu_title_garrison.m2", + text = "6hu_title_garrison.m2", + }, + { + fileId = "1068263", + value = "6ih_title_blackhand.m2", + text = "6ih_title_blackhand.m2", + }, + { + fileId = "1068262", + value = "6ih_title_guldan.m2", + text = "6ih_title_guldan.m2", + }, + { + fileId = "1068259", + value = "6ih_title_kargath.m2", + text = "6ih_title_kargath.m2", + }, + { + fileId = "1068258", + value = "6ih_title_kilrogg.m2", + text = "6ih_title_kilrogg.m2", + }, + { + fileId = "1068253", + value = "6ih_title_nerzhul.m2", + text = "6ih_title_nerzhul.m2", + }, + { + fileId = "1068227", + value = "6or_title_garrison.m2", + text = "6or_title_garrison.m2", + }, + }, + value = "titlecards", + text = "titlecards", + }, + { + children = { + { + fileId = "237714", + value = "vehicle_target_01.m2", + text = "vehicle_target_01.m2", + }, + { + fileId = "237715", + value = "vehicle_target_02.m2", + text = "vehicle_target_02.m2", + }, + }, + value = "vehicles", + text = "vehicles", + }, + }, + value = "interface", + text = "interface", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "137238", + value = "arrowacidflight_01.m2", + text = "arrowacidflight_01.m2", + }, + { + fileId = "137239", + value = "arrowfireflight_01.m2", + text = "arrowfireflight_01.m2", + }, + { + fileId = "137240", + value = "arrowflight_01.m2", + text = "arrowflight_01.m2", + }, + { + fileId = "137241", + value = "arrowiceflight_01.m2", + text = "arrowiceflight_01.m2", + }, + { + fileId = "137242", + value = "arrowmagicflight_01.m2", + text = "arrowmagicflight_01.m2", + }, + { + fileId = "137245", + value = "bulletflight_01.m2", + text = "bulletflight_01.m2", + }, + }, + value = "ammo", + text = "ammo", + }, + { + children = { + { + children = { + { + fileId = "137247", + value = "battlestandard_alliance_a_01.m2", + text = "battlestandard_alliance_a_01.m2", + }, + { + fileId = "2198613", + value = "battlestandard_stormpike_a_01.m2", + text = "battlestandard_stormpike_a_01.m2", + }, + }, + value = "battlestandard_alliance_a_01", + text = "battlestandard_alliance_a_01", + }, + { + children = { + { + fileId = "2199527", + value = "battlestandard_frostwolf_a_01.m2", + text = "battlestandard_frostwolf_a_01.m2", + }, + { + fileId = "137253", + value = "battlestandard_horde_a_01.m2", + text = "battlestandard_horde_a_01.m2", + }, + }, + value = "battlestandard_horde_a_01", + text = "battlestandard_horde_a_01", + }, + }, + value = "battlestandards", + text = "battlestandards", + }, + { + children = { + { + fileId = "137443", + value = "helm_blindfold_a_01_bef.m2", + text = "helm_blindfold_a_01_bef.m2", + }, + { + fileId = "137444", + value = "helm_blindfold_a_01_bem.m2", + text = "helm_blindfold_a_01_bem.m2", + }, + { + fileId = "137445", + value = "helm_blindfold_a_01_drf.m2", + text = "helm_blindfold_a_01_drf.m2", + }, + { + fileId = "137446", + value = "helm_blindfold_a_01_drm.m2", + text = "helm_blindfold_a_01_drm.m2", + }, + { + fileId = "137447", + value = "helm_blindfold_a_01_dwf.m2", + text = "helm_blindfold_a_01_dwf.m2", + }, + { + fileId = "137448", + value = "helm_blindfold_a_01_dwm.m2", + text = "helm_blindfold_a_01_dwm.m2", + }, + { + fileId = "137449", + value = "helm_blindfold_a_01_gnf.m2", + text = "helm_blindfold_a_01_gnf.m2", + }, + { + fileId = "137450", + value = "helm_blindfold_a_01_gnm.m2", + text = "helm_blindfold_a_01_gnm.m2", + }, + { + fileId = "137451", + value = "helm_blindfold_a_01_gof.m2", + text = "helm_blindfold_a_01_gof.m2", + }, + { + fileId = "137452", + value = "helm_blindfold_a_01_gom.m2", + text = "helm_blindfold_a_01_gom.m2", + }, + { + fileId = "137453", + value = "helm_blindfold_a_01_huf.m2", + text = "helm_blindfold_a_01_huf.m2", + }, + { + fileId = "137454", + value = "helm_blindfold_a_01_hum.m2", + text = "helm_blindfold_a_01_hum.m2", + }, + { + fileId = "137455", + value = "helm_blindfold_a_01_nif.m2", + text = "helm_blindfold_a_01_nif.m2", + }, + { + fileId = "137456", + value = "helm_blindfold_a_01_nim.m2", + text = "helm_blindfold_a_01_nim.m2", + }, + { + fileId = "137457", + value = "helm_blindfold_a_01_orf.m2", + text = "helm_blindfold_a_01_orf.m2", + }, + { + fileId = "137458", + value = "helm_blindfold_a_01_orm.m2", + text = "helm_blindfold_a_01_orm.m2", + }, + { + fileId = "137459", + value = "helm_blindfold_a_01_scf.m2", + text = "helm_blindfold_a_01_scf.m2", + }, + { + fileId = "137460", + value = "helm_blindfold_a_01_scm.m2", + text = "helm_blindfold_a_01_scm.m2", + }, + { + fileId = "137461", + value = "helm_blindfold_a_01_taf.m2", + text = "helm_blindfold_a_01_taf.m2", + }, + { + fileId = "137462", + value = "helm_blindfold_a_01_tam.m2", + text = "helm_blindfold_a_01_tam.m2", + }, + { + fileId = "137463", + value = "helm_blindfold_a_01_trf.m2", + text = "helm_blindfold_a_01_trf.m2", + }, + { + fileId = "137464", + value = "helm_blindfold_a_01_trm.m2", + text = "helm_blindfold_a_01_trm.m2", + }, + { + fileId = "137467", + value = "helm_circlet_a_01_bef.m2", + text = "helm_circlet_a_01_bef.m2", + }, + { + fileId = "137468", + value = "helm_circlet_a_01_bem.m2", + text = "helm_circlet_a_01_bem.m2", + }, + { + fileId = "137469", + value = "helm_circlet_a_01_drf.m2", + text = "helm_circlet_a_01_drf.m2", + }, + { + fileId = "137470", + value = "helm_circlet_a_01_drm.m2", + text = "helm_circlet_a_01_drm.m2", + }, + { + fileId = "137471", + value = "helm_circlet_a_01_dwf.m2", + text = "helm_circlet_a_01_dwf.m2", + }, + { + fileId = "137472", + value = "helm_circlet_a_01_dwm.m2", + text = "helm_circlet_a_01_dwm.m2", + }, + { + fileId = "137473", + value = "helm_circlet_a_01_gnf.m2", + text = "helm_circlet_a_01_gnf.m2", + }, + { + fileId = "137474", + value = "helm_circlet_a_01_gnm.m2", + text = "helm_circlet_a_01_gnm.m2", + }, + { + fileId = "137475", + value = "helm_circlet_a_01_gof.m2", + text = "helm_circlet_a_01_gof.m2", + }, + { + fileId = "137476", + value = "helm_circlet_a_01_gom.m2", + text = "helm_circlet_a_01_gom.m2", + }, + { + fileId = "137477", + value = "helm_circlet_a_01_huf.m2", + text = "helm_circlet_a_01_huf.m2", + }, + { + fileId = "137478", + value = "helm_circlet_a_01_hum.m2", + text = "helm_circlet_a_01_hum.m2", + }, + { + fileId = "137479", + value = "helm_circlet_a_01_nif.m2", + text = "helm_circlet_a_01_nif.m2", + }, + { + fileId = "137480", + value = "helm_circlet_a_01_nim.m2", + text = "helm_circlet_a_01_nim.m2", + }, + { + fileId = "137481", + value = "helm_circlet_a_01_orf.m2", + text = "helm_circlet_a_01_orf.m2", + }, + { + fileId = "137482", + value = "helm_circlet_a_01_orm.m2", + text = "helm_circlet_a_01_orm.m2", + }, + { + fileId = "137483", + value = "helm_circlet_a_01_scf.m2", + text = "helm_circlet_a_01_scf.m2", + }, + { + fileId = "137484", + value = "helm_circlet_a_01_scm.m2", + text = "helm_circlet_a_01_scm.m2", + }, + { + fileId = "137485", + value = "helm_circlet_a_01_taf.m2", + text = "helm_circlet_a_01_taf.m2", + }, + { + fileId = "137486", + value = "helm_circlet_a_01_tam.m2", + text = "helm_circlet_a_01_tam.m2", + }, + { + fileId = "137487", + value = "helm_circlet_a_01_trf.m2", + text = "helm_circlet_a_01_trf.m2", + }, + { + fileId = "137488", + value = "helm_circlet_a_01_trm.m2", + text = "helm_circlet_a_01_trm.m2", + }, + { + fileId = "137491", + value = "helm_circlet_b_01_bef.m2", + text = "helm_circlet_b_01_bef.m2", + }, + { + fileId = "137492", + value = "helm_circlet_b_01_bem.m2", + text = "helm_circlet_b_01_bem.m2", + }, + { + fileId = "137493", + value = "helm_circlet_b_01_drf.m2", + text = "helm_circlet_b_01_drf.m2", + }, + { + fileId = "137494", + value = "helm_circlet_b_01_drm.m2", + text = "helm_circlet_b_01_drm.m2", + }, + { + fileId = "137495", + value = "helm_circlet_b_01_dwf.m2", + text = "helm_circlet_b_01_dwf.m2", + }, + { + fileId = "137496", + value = "helm_circlet_b_01_dwm.m2", + text = "helm_circlet_b_01_dwm.m2", + }, + { + fileId = "137497", + value = "helm_circlet_b_01_gnf.m2", + text = "helm_circlet_b_01_gnf.m2", + }, + { + fileId = "137498", + value = "helm_circlet_b_01_gnm.m2", + text = "helm_circlet_b_01_gnm.m2", + }, + { + fileId = "137499", + value = "helm_circlet_b_01_gof.m2", + text = "helm_circlet_b_01_gof.m2", + }, + { + fileId = "137500", + value = "helm_circlet_b_01_gom.m2", + text = "helm_circlet_b_01_gom.m2", + }, + { + fileId = "137501", + value = "helm_circlet_b_01_huf.m2", + text = "helm_circlet_b_01_huf.m2", + }, + { + fileId = "137502", + value = "helm_circlet_b_01_hum.m2", + text = "helm_circlet_b_01_hum.m2", + }, + { + fileId = "137503", + value = "helm_circlet_b_01_nif.m2", + text = "helm_circlet_b_01_nif.m2", + }, + { + fileId = "137504", + value = "helm_circlet_b_01_nim.m2", + text = "helm_circlet_b_01_nim.m2", + }, + { + fileId = "137505", + value = "helm_circlet_b_01_orf.m2", + text = "helm_circlet_b_01_orf.m2", + }, + { + fileId = "137506", + value = "helm_circlet_b_01_orm.m2", + text = "helm_circlet_b_01_orm.m2", + }, + { + fileId = "137507", + value = "helm_circlet_b_01_scf.m2", + text = "helm_circlet_b_01_scf.m2", + }, + { + fileId = "137508", + value = "helm_circlet_b_01_scm.m2", + text = "helm_circlet_b_01_scm.m2", + }, + { + fileId = "137509", + value = "helm_circlet_b_01_taf.m2", + text = "helm_circlet_b_01_taf.m2", + }, + { + fileId = "137510", + value = "helm_circlet_b_01_tam.m2", + text = "helm_circlet_b_01_tam.m2", + }, + { + fileId = "137511", + value = "helm_circlet_b_01_trf.m2", + text = "helm_circlet_b_01_trf.m2", + }, + { + fileId = "137512", + value = "helm_circlet_b_01_trm.m2", + text = "helm_circlet_b_01_trm.m2", + }, + { + fileId = "137520", + value = "helm_circlet_b_02_bef.m2", + text = "helm_circlet_b_02_bef.m2", + }, + { + fileId = "137521", + value = "helm_circlet_b_02_bem.m2", + text = "helm_circlet_b_02_bem.m2", + }, + { + fileId = "137522", + value = "helm_circlet_b_02_drf.m2", + text = "helm_circlet_b_02_drf.m2", + }, + { + fileId = "137523", + value = "helm_circlet_b_02_drm.m2", + text = "helm_circlet_b_02_drm.m2", + }, + { + fileId = "137524", + value = "helm_circlet_b_02_dwf.m2", + text = "helm_circlet_b_02_dwf.m2", + }, + { + fileId = "137525", + value = "helm_circlet_b_02_dwm.m2", + text = "helm_circlet_b_02_dwm.m2", + }, + { + fileId = "137526", + value = "helm_circlet_b_02_gnf.m2", + text = "helm_circlet_b_02_gnf.m2", + }, + { + fileId = "137527", + value = "helm_circlet_b_02_gnm.m2", + text = "helm_circlet_b_02_gnm.m2", + }, + { + fileId = "137528", + value = "helm_circlet_b_02_gof.m2", + text = "helm_circlet_b_02_gof.m2", + }, + { + fileId = "137529", + value = "helm_circlet_b_02_gom.m2", + text = "helm_circlet_b_02_gom.m2", + }, + { + fileId = "137530", + value = "helm_circlet_b_02_huf.m2", + text = "helm_circlet_b_02_huf.m2", + }, + { + fileId = "137531", + value = "helm_circlet_b_02_hum.m2", + text = "helm_circlet_b_02_hum.m2", + }, + { + fileId = "137532", + value = "helm_circlet_b_02_nif.m2", + text = "helm_circlet_b_02_nif.m2", + }, + { + fileId = "137533", + value = "helm_circlet_b_02_nim.m2", + text = "helm_circlet_b_02_nim.m2", + }, + { + fileId = "137534", + value = "helm_circlet_b_02_orf.m2", + text = "helm_circlet_b_02_orf.m2", + }, + { + fileId = "137535", + value = "helm_circlet_b_02_orm.m2", + text = "helm_circlet_b_02_orm.m2", + }, + { + fileId = "137536", + value = "helm_circlet_b_02_scf.m2", + text = "helm_circlet_b_02_scf.m2", + }, + { + fileId = "137537", + value = "helm_circlet_b_02_scm.m2", + text = "helm_circlet_b_02_scm.m2", + }, + { + fileId = "137538", + value = "helm_circlet_b_02_taf.m2", + text = "helm_circlet_b_02_taf.m2", + }, + { + fileId = "137539", + value = "helm_circlet_b_02_tam.m2", + text = "helm_circlet_b_02_tam.m2", + }, + { + fileId = "137540", + value = "helm_circlet_b_02_trf.m2", + text = "helm_circlet_b_02_trf.m2", + }, + { + fileId = "137541", + value = "helm_circlet_b_02_trm.m2", + text = "helm_circlet_b_02_trm.m2", + }, + { + fileId = "137548", + value = "helm_circlet_c_01_bef.m2", + text = "helm_circlet_c_01_bef.m2", + }, + { + fileId = "137549", + value = "helm_circlet_c_01_bem.m2", + text = "helm_circlet_c_01_bem.m2", + }, + { + fileId = "137550", + value = "helm_circlet_c_01_drf.m2", + text = "helm_circlet_c_01_drf.m2", + }, + { + fileId = "137551", + value = "helm_circlet_c_01_drm.m2", + text = "helm_circlet_c_01_drm.m2", + }, + { + fileId = "137552", + value = "helm_circlet_c_01_dwf.m2", + text = "helm_circlet_c_01_dwf.m2", + }, + { + fileId = "137553", + value = "helm_circlet_c_01_dwm.m2", + text = "helm_circlet_c_01_dwm.m2", + }, + { + fileId = "137554", + value = "helm_circlet_c_01_gnf.m2", + text = "helm_circlet_c_01_gnf.m2", + }, + { + fileId = "137555", + value = "helm_circlet_c_01_gnm.m2", + text = "helm_circlet_c_01_gnm.m2", + }, + { + fileId = "137556", + value = "helm_circlet_c_01_gof.m2", + text = "helm_circlet_c_01_gof.m2", + }, + { + fileId = "137557", + value = "helm_circlet_c_01_gom.m2", + text = "helm_circlet_c_01_gom.m2", + }, + { + fileId = "137558", + value = "helm_circlet_c_01_huf.m2", + text = "helm_circlet_c_01_huf.m2", + }, + { + fileId = "137559", + value = "helm_circlet_c_01_hum.m2", + text = "helm_circlet_c_01_hum.m2", + }, + { + fileId = "137560", + value = "helm_circlet_c_01_nif.m2", + text = "helm_circlet_c_01_nif.m2", + }, + { + fileId = "137561", + value = "helm_circlet_c_01_nim.m2", + text = "helm_circlet_c_01_nim.m2", + }, + { + fileId = "137562", + value = "helm_circlet_c_01_orf.m2", + text = "helm_circlet_c_01_orf.m2", + }, + { + fileId = "137563", + value = "helm_circlet_c_01_orm.m2", + text = "helm_circlet_c_01_orm.m2", + }, + { + fileId = "137564", + value = "helm_circlet_c_01_scf.m2", + text = "helm_circlet_c_01_scf.m2", + }, + { + fileId = "137565", + value = "helm_circlet_c_01_scm.m2", + text = "helm_circlet_c_01_scm.m2", + }, + { + fileId = "137566", + value = "helm_circlet_c_01_taf.m2", + text = "helm_circlet_c_01_taf.m2", + }, + { + fileId = "137567", + value = "helm_circlet_c_01_tam.m2", + text = "helm_circlet_c_01_tam.m2", + }, + { + fileId = "137568", + value = "helm_circlet_c_01_trf.m2", + text = "helm_circlet_c_01_trf.m2", + }, + { + fileId = "137569", + value = "helm_circlet_c_01_trm.m2", + text = "helm_circlet_c_01_trm.m2", + }, + { + fileId = "137573", + value = "helm_cloth_a_01_bef.m2", + text = "helm_cloth_a_01_bef.m2", + }, + { + fileId = "137574", + value = "helm_cloth_a_01_bem.m2", + text = "helm_cloth_a_01_bem.m2", + }, + { + fileId = "137575", + value = "helm_cloth_a_01_drf.m2", + text = "helm_cloth_a_01_drf.m2", + }, + { + fileId = "137576", + value = "helm_cloth_a_01_drm.m2", + text = "helm_cloth_a_01_drm.m2", + }, + { + fileId = "137577", + value = "helm_cloth_a_01_dwf.m2", + text = "helm_cloth_a_01_dwf.m2", + }, + { + fileId = "137578", + value = "helm_cloth_a_01_dwm.m2", + text = "helm_cloth_a_01_dwm.m2", + }, + { + fileId = "137579", + value = "helm_cloth_a_01_gnf.m2", + text = "helm_cloth_a_01_gnf.m2", + }, + { + fileId = "137580", + value = "helm_cloth_a_01_gnm.m2", + text = "helm_cloth_a_01_gnm.m2", + }, + { + fileId = "137581", + value = "helm_cloth_a_01_gof.m2", + text = "helm_cloth_a_01_gof.m2", + }, + { + fileId = "137582", + value = "helm_cloth_a_01_gom.m2", + text = "helm_cloth_a_01_gom.m2", + }, + { + fileId = "137583", + value = "helm_cloth_a_01_huf.m2", + text = "helm_cloth_a_01_huf.m2", + }, + { + fileId = "137584", + value = "helm_cloth_a_01_hum.m2", + text = "helm_cloth_a_01_hum.m2", + }, + { + fileId = "137585", + value = "helm_cloth_a_01_nif.m2", + text = "helm_cloth_a_01_nif.m2", + }, + { + fileId = "137586", + value = "helm_cloth_a_01_nim.m2", + text = "helm_cloth_a_01_nim.m2", + }, + { + fileId = "137587", + value = "helm_cloth_a_01_orf.m2", + text = "helm_cloth_a_01_orf.m2", + }, + { + fileId = "137588", + value = "helm_cloth_a_01_orm.m2", + text = "helm_cloth_a_01_orm.m2", + }, + { + fileId = "137589", + value = "helm_cloth_a_01_scf.m2", + text = "helm_cloth_a_01_scf.m2", + }, + { + fileId = "137590", + value = "helm_cloth_a_01_scm.m2", + text = "helm_cloth_a_01_scm.m2", + }, + { + fileId = "137591", + value = "helm_cloth_a_01_taf.m2", + text = "helm_cloth_a_01_taf.m2", + }, + { + fileId = "137592", + value = "helm_cloth_a_01_tam.m2", + text = "helm_cloth_a_01_tam.m2", + }, + { + fileId = "137593", + value = "helm_cloth_a_01_trf.m2", + text = "helm_cloth_a_01_trf.m2", + }, + { + fileId = "137594", + value = "helm_cloth_a_01_trm.m2", + text = "helm_cloth_a_01_trm.m2", + }, + { + fileId = "137625", + value = "helm_cloth_a_02_bef.m2", + text = "helm_cloth_a_02_bef.m2", + }, + { + fileId = "137626", + value = "helm_cloth_a_02_bem.m2", + text = "helm_cloth_a_02_bem.m2", + }, + { + fileId = "137627", + value = "helm_cloth_a_02_drf.m2", + text = "helm_cloth_a_02_drf.m2", + }, + { + fileId = "137628", + value = "helm_cloth_a_02_drm.m2", + text = "helm_cloth_a_02_drm.m2", + }, + { + fileId = "137629", + value = "helm_cloth_a_02_dwf.m2", + text = "helm_cloth_a_02_dwf.m2", + }, + { + fileId = "137630", + value = "helm_cloth_a_02_dwm.m2", + text = "helm_cloth_a_02_dwm.m2", + }, + { + fileId = "137631", + value = "helm_cloth_a_02_gnf.m2", + text = "helm_cloth_a_02_gnf.m2", + }, + { + fileId = "137632", + value = "helm_cloth_a_02_gnm.m2", + text = "helm_cloth_a_02_gnm.m2", + }, + { + fileId = "137633", + value = "helm_cloth_a_02_gof.m2", + text = "helm_cloth_a_02_gof.m2", + }, + { + fileId = "137634", + value = "helm_cloth_a_02_gom.m2", + text = "helm_cloth_a_02_gom.m2", + }, + { + fileId = "137635", + value = "helm_cloth_a_02_huf.m2", + text = "helm_cloth_a_02_huf.m2", + }, + { + fileId = "137636", + value = "helm_cloth_a_02_hum.m2", + text = "helm_cloth_a_02_hum.m2", + }, + { + fileId = "137637", + value = "helm_cloth_a_02_nif.m2", + text = "helm_cloth_a_02_nif.m2", + }, + { + fileId = "137638", + value = "helm_cloth_a_02_nim.m2", + text = "helm_cloth_a_02_nim.m2", + }, + { + fileId = "137639", + value = "helm_cloth_a_02_orf.m2", + text = "helm_cloth_a_02_orf.m2", + }, + { + fileId = "137640", + value = "helm_cloth_a_02_orm.m2", + text = "helm_cloth_a_02_orm.m2", + }, + { + fileId = "137641", + value = "helm_cloth_a_02_scf.m2", + text = "helm_cloth_a_02_scf.m2", + }, + { + fileId = "137642", + value = "helm_cloth_a_02_scm.m2", + text = "helm_cloth_a_02_scm.m2", + }, + { + fileId = "137643", + value = "helm_cloth_a_02_taf.m2", + text = "helm_cloth_a_02_taf.m2", + }, + { + fileId = "137644", + value = "helm_cloth_a_02_tam.m2", + text = "helm_cloth_a_02_tam.m2", + }, + { + fileId = "137645", + value = "helm_cloth_a_02_trf.m2", + text = "helm_cloth_a_02_trf.m2", + }, + { + fileId = "137646", + value = "helm_cloth_a_02_trm.m2", + text = "helm_cloth_a_02_trm.m2", + }, + { + fileId = "137647", + value = "helm_cloth_b_01pirate_bef.m2", + text = "helm_cloth_b_01pirate_bef.m2", + }, + { + fileId = "137648", + value = "helm_cloth_b_01pirate_bem.m2", + text = "helm_cloth_b_01pirate_bem.m2", + }, + { + fileId = "137649", + value = "helm_cloth_b_01pirate_drf.m2", + text = "helm_cloth_b_01pirate_drf.m2", + }, + { + fileId = "137650", + value = "helm_cloth_b_01pirate_drm.m2", + text = "helm_cloth_b_01pirate_drm.m2", + }, + { + fileId = "137651", + value = "helm_cloth_b_01pirate_dwf.m2", + text = "helm_cloth_b_01pirate_dwf.m2", + }, + { + fileId = "137652", + value = "helm_cloth_b_01pirate_dwm.m2", + text = "helm_cloth_b_01pirate_dwm.m2", + }, + { + fileId = "137653", + value = "helm_cloth_b_01pirate_gnf.m2", + text = "helm_cloth_b_01pirate_gnf.m2", + }, + { + fileId = "137654", + value = "helm_cloth_b_01pirate_gnm.m2", + text = "helm_cloth_b_01pirate_gnm.m2", + }, + { + fileId = "137655", + value = "helm_cloth_b_01pirate_gof.m2", + text = "helm_cloth_b_01pirate_gof.m2", + }, + { + fileId = "137656", + value = "helm_cloth_b_01pirate_gom.m2", + text = "helm_cloth_b_01pirate_gom.m2", + }, + { + fileId = "137657", + value = "helm_cloth_b_01pirate_huf.m2", + text = "helm_cloth_b_01pirate_huf.m2", + }, + { + fileId = "137658", + value = "helm_cloth_b_01pirate_hum.m2", + text = "helm_cloth_b_01pirate_hum.m2", + }, + { + fileId = "137659", + value = "helm_cloth_b_01pirate_nif.m2", + text = "helm_cloth_b_01pirate_nif.m2", + }, + { + fileId = "137660", + value = "helm_cloth_b_01pirate_nim.m2", + text = "helm_cloth_b_01pirate_nim.m2", + }, + { + fileId = "137661", + value = "helm_cloth_b_01pirate_orf.m2", + text = "helm_cloth_b_01pirate_orf.m2", + }, + { + fileId = "137662", + value = "helm_cloth_b_01pirate_orm.m2", + text = "helm_cloth_b_01pirate_orm.m2", + }, + { + fileId = "137663", + value = "helm_cloth_b_01pirate_scf.m2", + text = "helm_cloth_b_01pirate_scf.m2", + }, + { + fileId = "137664", + value = "helm_cloth_b_01pirate_scm.m2", + text = "helm_cloth_b_01pirate_scm.m2", + }, + { + fileId = "137665", + value = "helm_cloth_b_01pirate_taf.m2", + text = "helm_cloth_b_01pirate_taf.m2", + }, + { + fileId = "137666", + value = "helm_cloth_b_01pirate_tam.m2", + text = "helm_cloth_b_01pirate_tam.m2", + }, + { + fileId = "137667", + value = "helm_cloth_b_01pirate_trf.m2", + text = "helm_cloth_b_01pirate_trf.m2", + }, + { + fileId = "137668", + value = "helm_cloth_b_01pirate_trm.m2", + text = "helm_cloth_b_01pirate_trm.m2", + }, + { + fileId = "137672", + value = "helm_cloth_b_03admiral_bef.m2", + text = "helm_cloth_b_03admiral_bef.m2", + }, + { + fileId = "137673", + value = "helm_cloth_b_03admiral_bem.m2", + text = "helm_cloth_b_03admiral_bem.m2", + }, + { + fileId = "137674", + value = "helm_cloth_b_03admiral_drf.m2", + text = "helm_cloth_b_03admiral_drf.m2", + }, + { + fileId = "137675", + value = "helm_cloth_b_03admiral_drm.m2", + text = "helm_cloth_b_03admiral_drm.m2", + }, + { + fileId = "137676", + value = "helm_cloth_b_03admiral_dwf.m2", + text = "helm_cloth_b_03admiral_dwf.m2", + }, + { + fileId = "137677", + value = "helm_cloth_b_03admiral_dwm.m2", + text = "helm_cloth_b_03admiral_dwm.m2", + }, + { + fileId = "137678", + value = "helm_cloth_b_03admiral_gnf.m2", + text = "helm_cloth_b_03admiral_gnf.m2", + }, + { + fileId = "137679", + value = "helm_cloth_b_03admiral_gnm.m2", + text = "helm_cloth_b_03admiral_gnm.m2", + }, + { + fileId = "137680", + value = "helm_cloth_b_03admiral_gof.m2", + text = "helm_cloth_b_03admiral_gof.m2", + }, + { + fileId = "137681", + value = "helm_cloth_b_03admiral_gom.m2", + text = "helm_cloth_b_03admiral_gom.m2", + }, + { + fileId = "137682", + value = "helm_cloth_b_03admiral_huf.m2", + text = "helm_cloth_b_03admiral_huf.m2", + }, + { + fileId = "137683", + value = "helm_cloth_b_03admiral_hum.m2", + text = "helm_cloth_b_03admiral_hum.m2", + }, + { + fileId = "137684", + value = "helm_cloth_b_03admiral_nif.m2", + text = "helm_cloth_b_03admiral_nif.m2", + }, + { + fileId = "137685", + value = "helm_cloth_b_03admiral_nim.m2", + text = "helm_cloth_b_03admiral_nim.m2", + }, + { + fileId = "137686", + value = "helm_cloth_b_03admiral_orf.m2", + text = "helm_cloth_b_03admiral_orf.m2", + }, + { + fileId = "137687", + value = "helm_cloth_b_03admiral_orm.m2", + text = "helm_cloth_b_03admiral_orm.m2", + }, + { + fileId = "137688", + value = "helm_cloth_b_03admiral_scf.m2", + text = "helm_cloth_b_03admiral_scf.m2", + }, + { + fileId = "137689", + value = "helm_cloth_b_03admiral_scm.m2", + text = "helm_cloth_b_03admiral_scm.m2", + }, + { + fileId = "137690", + value = "helm_cloth_b_03admiral_taf.m2", + text = "helm_cloth_b_03admiral_taf.m2", + }, + { + fileId = "137691", + value = "helm_cloth_b_03admiral_tam.m2", + text = "helm_cloth_b_03admiral_tam.m2", + }, + { + fileId = "137692", + value = "helm_cloth_b_03admiral_trf.m2", + text = "helm_cloth_b_03admiral_trf.m2", + }, + { + fileId = "137693", + value = "helm_cloth_b_03admiral_trm.m2", + text = "helm_cloth_b_03admiral_trm.m2", + }, + { + fileId = "137696", + value = "helm_cloth_b_04widebrim_bef.m2", + text = "helm_cloth_b_04widebrim_bef.m2", + }, + { + fileId = "137697", + value = "helm_cloth_b_04widebrim_bem.m2", + text = "helm_cloth_b_04widebrim_bem.m2", + }, + { + fileId = "137698", + value = "helm_cloth_b_04widebrim_drf.m2", + text = "helm_cloth_b_04widebrim_drf.m2", + }, + { + fileId = "137699", + value = "helm_cloth_b_04widebrim_drm.m2", + text = "helm_cloth_b_04widebrim_drm.m2", + }, + { + fileId = "137700", + value = "helm_cloth_b_04widebrim_dwf.m2", + text = "helm_cloth_b_04widebrim_dwf.m2", + }, + { + fileId = "137701", + value = "helm_cloth_b_04widebrim_dwm.m2", + text = "helm_cloth_b_04widebrim_dwm.m2", + }, + { + fileId = "137702", + value = "helm_cloth_b_04widebrim_gnf.m2", + text = "helm_cloth_b_04widebrim_gnf.m2", + }, + { + fileId = "137703", + value = "helm_cloth_b_04widebrim_gnm.m2", + text = "helm_cloth_b_04widebrim_gnm.m2", + }, + { + fileId = "137704", + value = "helm_cloth_b_04widebrim_gof.m2", + text = "helm_cloth_b_04widebrim_gof.m2", + }, + { + fileId = "137705", + value = "helm_cloth_b_04widebrim_gom.m2", + text = "helm_cloth_b_04widebrim_gom.m2", + }, + { + fileId = "137706", + value = "helm_cloth_b_04widebrim_huf.m2", + text = "helm_cloth_b_04widebrim_huf.m2", + }, + { + fileId = "137707", + value = "helm_cloth_b_04widebrim_hum.m2", + text = "helm_cloth_b_04widebrim_hum.m2", + }, + { + fileId = "137708", + value = "helm_cloth_b_04widebrim_nif.m2", + text = "helm_cloth_b_04widebrim_nif.m2", + }, + { + fileId = "137709", + value = "helm_cloth_b_04widebrim_nim.m2", + text = "helm_cloth_b_04widebrim_nim.m2", + }, + { + fileId = "137710", + value = "helm_cloth_b_04widebrim_orf.m2", + text = "helm_cloth_b_04widebrim_orf.m2", + }, + { + fileId = "137711", + value = "helm_cloth_b_04widebrim_orm.m2", + text = "helm_cloth_b_04widebrim_orm.m2", + }, + { + fileId = "137712", + value = "helm_cloth_b_04widebrim_scf.m2", + text = "helm_cloth_b_04widebrim_scf.m2", + }, + { + fileId = "137713", + value = "helm_cloth_b_04widebrim_scm.m2", + text = "helm_cloth_b_04widebrim_scm.m2", + }, + { + fileId = "137714", + value = "helm_cloth_b_04widebrim_taf.m2", + text = "helm_cloth_b_04widebrim_taf.m2", + }, + { + fileId = "137715", + value = "helm_cloth_b_04widebrim_tam.m2", + text = "helm_cloth_b_04widebrim_tam.m2", + }, + { + fileId = "137716", + value = "helm_cloth_b_04widebrim_trf.m2", + text = "helm_cloth_b_04widebrim_trf.m2", + }, + { + fileId = "137717", + value = "helm_cloth_b_04widebrim_trm.m2", + text = "helm_cloth_b_04widebrim_trm.m2", + }, + { + fileId = "137726", + value = "helm_cloth_b_05_bef.m2", + text = "helm_cloth_b_05_bef.m2", + }, + { + fileId = "137727", + value = "helm_cloth_b_05_bem.m2", + text = "helm_cloth_b_05_bem.m2", + }, + { + fileId = "137728", + value = "helm_cloth_b_05_drf.m2", + text = "helm_cloth_b_05_drf.m2", + }, + { + fileId = "137729", + value = "helm_cloth_b_05_drm.m2", + text = "helm_cloth_b_05_drm.m2", + }, + { + fileId = "137730", + value = "helm_cloth_b_05_dwf.m2", + text = "helm_cloth_b_05_dwf.m2", + }, + { + fileId = "137731", + value = "helm_cloth_b_05_dwm.m2", + text = "helm_cloth_b_05_dwm.m2", + }, + { + fileId = "137732", + value = "helm_cloth_b_05_gnf.m2", + text = "helm_cloth_b_05_gnf.m2", + }, + { + fileId = "137733", + value = "helm_cloth_b_05_gnm.m2", + text = "helm_cloth_b_05_gnm.m2", + }, + { + fileId = "137734", + value = "helm_cloth_b_05_gof.m2", + text = "helm_cloth_b_05_gof.m2", + }, + { + fileId = "137735", + value = "helm_cloth_b_05_gom.m2", + text = "helm_cloth_b_05_gom.m2", + }, + { + fileId = "137736", + value = "helm_cloth_b_05_huf.m2", + text = "helm_cloth_b_05_huf.m2", + }, + { + fileId = "137737", + value = "helm_cloth_b_05_hum.m2", + text = "helm_cloth_b_05_hum.m2", + }, + { + fileId = "137738", + value = "helm_cloth_b_05_nif.m2", + text = "helm_cloth_b_05_nif.m2", + }, + { + fileId = "137739", + value = "helm_cloth_b_05_nim.m2", + text = "helm_cloth_b_05_nim.m2", + }, + { + fileId = "137740", + value = "helm_cloth_b_05_orf.m2", + text = "helm_cloth_b_05_orf.m2", + }, + { + fileId = "137741", + value = "helm_cloth_b_05_orm.m2", + text = "helm_cloth_b_05_orm.m2", + }, + { + fileId = "137742", + value = "helm_cloth_b_05_scf.m2", + text = "helm_cloth_b_05_scf.m2", + }, + { + fileId = "137743", + value = "helm_cloth_b_05_scm.m2", + text = "helm_cloth_b_05_scm.m2", + }, + { + fileId = "137744", + value = "helm_cloth_b_05_taf.m2", + text = "helm_cloth_b_05_taf.m2", + }, + { + fileId = "137745", + value = "helm_cloth_b_05_tam.m2", + text = "helm_cloth_b_05_tam.m2", + }, + { + fileId = "137746", + value = "helm_cloth_b_05_trf.m2", + text = "helm_cloth_b_05_trf.m2", + }, + { + fileId = "137747", + value = "helm_cloth_b_05_trm.m2", + text = "helm_cloth_b_05_trm.m2", + }, + { + fileId = "137751", + value = "helm_cloth_b_06_bef.m2", + text = "helm_cloth_b_06_bef.m2", + }, + { + fileId = "137752", + value = "helm_cloth_b_06_bem.m2", + text = "helm_cloth_b_06_bem.m2", + }, + { + fileId = "137753", + value = "helm_cloth_b_06_drf.m2", + text = "helm_cloth_b_06_drf.m2", + }, + { + fileId = "137754", + value = "helm_cloth_b_06_drm.m2", + text = "helm_cloth_b_06_drm.m2", + }, + { + fileId = "137755", + value = "helm_cloth_b_06_dwf.m2", + text = "helm_cloth_b_06_dwf.m2", + }, + { + fileId = "137756", + value = "helm_cloth_b_06_dwm.m2", + text = "helm_cloth_b_06_dwm.m2", + }, + { + fileId = "137757", + value = "helm_cloth_b_06_gnf.m2", + text = "helm_cloth_b_06_gnf.m2", + }, + { + fileId = "137758", + value = "helm_cloth_b_06_gnm.m2", + text = "helm_cloth_b_06_gnm.m2", + }, + { + fileId = "137759", + value = "helm_cloth_b_06_gof.m2", + text = "helm_cloth_b_06_gof.m2", + }, + { + fileId = "137760", + value = "helm_cloth_b_06_gom.m2", + text = "helm_cloth_b_06_gom.m2", + }, + { + fileId = "137761", + value = "helm_cloth_b_06_huf.m2", + text = "helm_cloth_b_06_huf.m2", + }, + { + fileId = "137762", + value = "helm_cloth_b_06_hum.m2", + text = "helm_cloth_b_06_hum.m2", + }, + { + fileId = "137763", + value = "helm_cloth_b_06_nif.m2", + text = "helm_cloth_b_06_nif.m2", + }, + { + fileId = "137764", + value = "helm_cloth_b_06_nim.m2", + text = "helm_cloth_b_06_nim.m2", + }, + { + fileId = "137765", + value = "helm_cloth_b_06_orf.m2", + text = "helm_cloth_b_06_orf.m2", + }, + { + fileId = "137766", + value = "helm_cloth_b_06_orm.m2", + text = "helm_cloth_b_06_orm.m2", + }, + { + fileId = "137767", + value = "helm_cloth_b_06_scf.m2", + text = "helm_cloth_b_06_scf.m2", + }, + { + fileId = "137768", + value = "helm_cloth_b_06_scm.m2", + text = "helm_cloth_b_06_scm.m2", + }, + { + fileId = "137769", + value = "helm_cloth_b_06_taf.m2", + text = "helm_cloth_b_06_taf.m2", + }, + { + fileId = "137770", + value = "helm_cloth_b_06_tam.m2", + text = "helm_cloth_b_06_tam.m2", + }, + { + fileId = "137771", + value = "helm_cloth_b_06_trf.m2", + text = "helm_cloth_b_06_trf.m2", + }, + { + fileId = "137772", + value = "helm_cloth_b_06_trm.m2", + text = "helm_cloth_b_06_trm.m2", + }, + { + fileId = "137782", + value = "helm_cloth_c_01mitre_bef.m2", + text = "helm_cloth_c_01mitre_bef.m2", + }, + { + fileId = "137783", + value = "helm_cloth_c_01mitre_bem.m2", + text = "helm_cloth_c_01mitre_bem.m2", + }, + { + fileId = "137784", + value = "helm_cloth_c_01mitre_drf.m2", + text = "helm_cloth_c_01mitre_drf.m2", + }, + { + fileId = "137785", + value = "helm_cloth_c_01mitre_drm.m2", + text = "helm_cloth_c_01mitre_drm.m2", + }, + { + fileId = "137786", + value = "helm_cloth_c_01mitre_dwf.m2", + text = "helm_cloth_c_01mitre_dwf.m2", + }, + { + fileId = "137787", + value = "helm_cloth_c_01mitre_dwm.m2", + text = "helm_cloth_c_01mitre_dwm.m2", + }, + { + fileId = "137788", + value = "helm_cloth_c_01mitre_gnf.m2", + text = "helm_cloth_c_01mitre_gnf.m2", + }, + { + fileId = "137789", + value = "helm_cloth_c_01mitre_gnm.m2", + text = "helm_cloth_c_01mitre_gnm.m2", + }, + { + fileId = "137790", + value = "helm_cloth_c_01mitre_gof.m2", + text = "helm_cloth_c_01mitre_gof.m2", + }, + { + fileId = "137791", + value = "helm_cloth_c_01mitre_gom.m2", + text = "helm_cloth_c_01mitre_gom.m2", + }, + { + fileId = "137792", + value = "helm_cloth_c_01mitre_huf.m2", + text = "helm_cloth_c_01mitre_huf.m2", + }, + { + fileId = "137793", + value = "helm_cloth_c_01mitre_hum.m2", + text = "helm_cloth_c_01mitre_hum.m2", + }, + { + fileId = "137794", + value = "helm_cloth_c_01mitre_nif.m2", + text = "helm_cloth_c_01mitre_nif.m2", + }, + { + fileId = "137795", + value = "helm_cloth_c_01mitre_nim.m2", + text = "helm_cloth_c_01mitre_nim.m2", + }, + { + fileId = "137796", + value = "helm_cloth_c_01mitre_orf.m2", + text = "helm_cloth_c_01mitre_orf.m2", + }, + { + fileId = "137797", + value = "helm_cloth_c_01mitre_orm.m2", + text = "helm_cloth_c_01mitre_orm.m2", + }, + { + fileId = "137798", + value = "helm_cloth_c_01mitre_scf.m2", + text = "helm_cloth_c_01mitre_scf.m2", + }, + { + fileId = "137799", + value = "helm_cloth_c_01mitre_scm.m2", + text = "helm_cloth_c_01mitre_scm.m2", + }, + { + fileId = "137800", + value = "helm_cloth_c_01mitre_taf.m2", + text = "helm_cloth_c_01mitre_taf.m2", + }, + { + fileId = "137801", + value = "helm_cloth_c_01mitre_tam.m2", + text = "helm_cloth_c_01mitre_tam.m2", + }, + { + fileId = "137802", + value = "helm_cloth_c_01mitre_trf.m2", + text = "helm_cloth_c_01mitre_trf.m2", + }, + { + fileId = "137803", + value = "helm_cloth_c_01mitre_trm.m2", + text = "helm_cloth_c_01mitre_trm.m2", + }, + { + fileId = "137805", + value = "helm_cloth_holiday_christmas_a_01_bef.m2", + text = "helm_cloth_holiday_christmas_a_01_bef.m2", + }, + { + fileId = "137806", + value = "helm_cloth_holiday_christmas_a_01_bem.m2", + text = "helm_cloth_holiday_christmas_a_01_bem.m2", + }, + { + fileId = "137807", + value = "helm_cloth_holiday_christmas_a_01_drf.m2", + text = "helm_cloth_holiday_christmas_a_01_drf.m2", + }, + { + fileId = "137808", + value = "helm_cloth_holiday_christmas_a_01_drm.m2", + text = "helm_cloth_holiday_christmas_a_01_drm.m2", + }, + { + fileId = "137809", + value = "helm_cloth_holiday_christmas_a_01_dwf.m2", + text = "helm_cloth_holiday_christmas_a_01_dwf.m2", + }, + { + fileId = "137810", + value = "helm_cloth_holiday_christmas_a_01_dwm.m2", + text = "helm_cloth_holiday_christmas_a_01_dwm.m2", + }, + { + fileId = "137811", + value = "helm_cloth_holiday_christmas_a_01_gnf.m2", + text = "helm_cloth_holiday_christmas_a_01_gnf.m2", + }, + { + fileId = "137812", + value = "helm_cloth_holiday_christmas_a_01_gnm.m2", + text = "helm_cloth_holiday_christmas_a_01_gnm.m2", + }, + { + fileId = "137813", + value = "helm_cloth_holiday_christmas_a_01_gof.m2", + text = "helm_cloth_holiday_christmas_a_01_gof.m2", + }, + { + fileId = "137814", + value = "helm_cloth_holiday_christmas_a_01_gom.m2", + text = "helm_cloth_holiday_christmas_a_01_gom.m2", + }, + { + fileId = "137815", + value = "helm_cloth_holiday_christmas_a_01_huf.m2", + text = "helm_cloth_holiday_christmas_a_01_huf.m2", + }, + { + fileId = "137816", + value = "helm_cloth_holiday_christmas_a_01_hum.m2", + text = "helm_cloth_holiday_christmas_a_01_hum.m2", + }, + { + fileId = "137817", + value = "helm_cloth_holiday_christmas_a_01_nif.m2", + text = "helm_cloth_holiday_christmas_a_01_nif.m2", + }, + { + fileId = "137818", + value = "helm_cloth_holiday_christmas_a_01_nim.m2", + text = "helm_cloth_holiday_christmas_a_01_nim.m2", + }, + { + fileId = "137819", + value = "helm_cloth_holiday_christmas_a_01_orf.m2", + text = "helm_cloth_holiday_christmas_a_01_orf.m2", + }, + { + fileId = "137820", + value = "helm_cloth_holiday_christmas_a_01_orm.m2", + text = "helm_cloth_holiday_christmas_a_01_orm.m2", + }, + { + fileId = "137821", + value = "helm_cloth_holiday_christmas_a_01_scf.m2", + text = "helm_cloth_holiday_christmas_a_01_scf.m2", + }, + { + fileId = "137822", + value = "helm_cloth_holiday_christmas_a_01_scm.m2", + text = "helm_cloth_holiday_christmas_a_01_scm.m2", + }, + { + fileId = "137823", + value = "helm_cloth_holiday_christmas_a_01_taf.m2", + text = "helm_cloth_holiday_christmas_a_01_taf.m2", + }, + { + fileId = "137824", + value = "helm_cloth_holiday_christmas_a_01_tam.m2", + text = "helm_cloth_holiday_christmas_a_01_tam.m2", + }, + { + fileId = "137825", + value = "helm_cloth_holiday_christmas_a_01_trf.m2", + text = "helm_cloth_holiday_christmas_a_01_trf.m2", + }, + { + fileId = "137826", + value = "helm_cloth_holiday_christmas_a_01_trm.m2", + text = "helm_cloth_holiday_christmas_a_01_trm.m2", + }, + { + fileId = "137828", + value = "helm_cloth_mexico_a_01_bef.m2", + text = "helm_cloth_mexico_a_01_bef.m2", + }, + { + fileId = "137829", + value = "helm_cloth_mexico_a_01_bem.m2", + text = "helm_cloth_mexico_a_01_bem.m2", + }, + { + fileId = "137830", + value = "helm_cloth_mexico_a_01_drf.m2", + text = "helm_cloth_mexico_a_01_drf.m2", + }, + { + fileId = "137831", + value = "helm_cloth_mexico_a_01_drm.m2", + text = "helm_cloth_mexico_a_01_drm.m2", + }, + { + fileId = "137832", + value = "helm_cloth_mexico_a_01_dwf.m2", + text = "helm_cloth_mexico_a_01_dwf.m2", + }, + { + fileId = "137833", + value = "helm_cloth_mexico_a_01_dwm.m2", + text = "helm_cloth_mexico_a_01_dwm.m2", + }, + { + fileId = "137834", + value = "helm_cloth_mexico_a_01_gnf.m2", + text = "helm_cloth_mexico_a_01_gnf.m2", + }, + { + fileId = "137835", + value = "helm_cloth_mexico_a_01_gnm.m2", + text = "helm_cloth_mexico_a_01_gnm.m2", + }, + { + fileId = "137836", + value = "helm_cloth_mexico_a_01_gof.m2", + text = "helm_cloth_mexico_a_01_gof.m2", + }, + { + fileId = "137837", + value = "helm_cloth_mexico_a_01_gom.m2", + text = "helm_cloth_mexico_a_01_gom.m2", + }, + { + fileId = "137838", + value = "helm_cloth_mexico_a_01_huf.m2", + text = "helm_cloth_mexico_a_01_huf.m2", + }, + { + fileId = "137839", + value = "helm_cloth_mexico_a_01_hum.m2", + text = "helm_cloth_mexico_a_01_hum.m2", + }, + { + fileId = "137840", + value = "helm_cloth_mexico_a_01_nif.m2", + text = "helm_cloth_mexico_a_01_nif.m2", + }, + { + fileId = "137841", + value = "helm_cloth_mexico_a_01_nim.m2", + text = "helm_cloth_mexico_a_01_nim.m2", + }, + { + fileId = "137842", + value = "helm_cloth_mexico_a_01_orf.m2", + text = "helm_cloth_mexico_a_01_orf.m2", + }, + { + fileId = "137843", + value = "helm_cloth_mexico_a_01_orm.m2", + text = "helm_cloth_mexico_a_01_orm.m2", + }, + { + fileId = "137844", + value = "helm_cloth_mexico_a_01_scf.m2", + text = "helm_cloth_mexico_a_01_scf.m2", + }, + { + fileId = "137845", + value = "helm_cloth_mexico_a_01_scm.m2", + text = "helm_cloth_mexico_a_01_scm.m2", + }, + { + fileId = "137846", + value = "helm_cloth_mexico_a_01_taf.m2", + text = "helm_cloth_mexico_a_01_taf.m2", + }, + { + fileId = "137847", + value = "helm_cloth_mexico_a_01_tam.m2", + text = "helm_cloth_mexico_a_01_tam.m2", + }, + { + fileId = "137848", + value = "helm_cloth_mexico_a_01_trf.m2", + text = "helm_cloth_mexico_a_01_trf.m2", + }, + { + fileId = "137849", + value = "helm_cloth_mexico_a_01_trm.m2", + text = "helm_cloth_mexico_a_01_trm.m2", + }, + { + fileId = "137850", + value = "helm_cloth_sunfest_a_01_bef.m2", + text = "helm_cloth_sunfest_a_01_bef.m2", + }, + { + fileId = "137851", + value = "helm_cloth_sunfest_a_01_bem.m2", + text = "helm_cloth_sunfest_a_01_bem.m2", + }, + { + fileId = "137852", + value = "helm_cloth_sunfest_a_01_drf.m2", + text = "helm_cloth_sunfest_a_01_drf.m2", + }, + { + fileId = "137853", + value = "helm_cloth_sunfest_a_01_drm.m2", + text = "helm_cloth_sunfest_a_01_drm.m2", + }, + { + fileId = "137854", + value = "helm_cloth_sunfest_a_01_dwf.m2", + text = "helm_cloth_sunfest_a_01_dwf.m2", + }, + { + fileId = "137855", + value = "helm_cloth_sunfest_a_01_dwm.m2", + text = "helm_cloth_sunfest_a_01_dwm.m2", + }, + { + fileId = "137856", + value = "helm_cloth_sunfest_a_01_gnf.m2", + text = "helm_cloth_sunfest_a_01_gnf.m2", + }, + { + fileId = "137857", + value = "helm_cloth_sunfest_a_01_gnm.m2", + text = "helm_cloth_sunfest_a_01_gnm.m2", + }, + { + fileId = "137858", + value = "helm_cloth_sunfest_a_01_gof.m2", + text = "helm_cloth_sunfest_a_01_gof.m2", + }, + { + fileId = "137859", + value = "helm_cloth_sunfest_a_01_gom.m2", + text = "helm_cloth_sunfest_a_01_gom.m2", + }, + { + fileId = "137860", + value = "helm_cloth_sunfest_a_01_huf.m2", + text = "helm_cloth_sunfest_a_01_huf.m2", + }, + { + fileId = "137861", + value = "helm_cloth_sunfest_a_01_hum.m2", + text = "helm_cloth_sunfest_a_01_hum.m2", + }, + { + fileId = "137862", + value = "helm_cloth_sunfest_a_01_nif.m2", + text = "helm_cloth_sunfest_a_01_nif.m2", + }, + { + fileId = "137863", + value = "helm_cloth_sunfest_a_01_nim.m2", + text = "helm_cloth_sunfest_a_01_nim.m2", + }, + { + fileId = "137864", + value = "helm_cloth_sunfest_a_01_orf.m2", + text = "helm_cloth_sunfest_a_01_orf.m2", + }, + { + fileId = "137865", + value = "helm_cloth_sunfest_a_01_orm.m2", + text = "helm_cloth_sunfest_a_01_orm.m2", + }, + { + fileId = "137866", + value = "helm_cloth_sunfest_a_01_scf.m2", + text = "helm_cloth_sunfest_a_01_scf.m2", + }, + { + fileId = "137867", + value = "helm_cloth_sunfest_a_01_scm.m2", + text = "helm_cloth_sunfest_a_01_scm.m2", + }, + { + fileId = "137868", + value = "helm_cloth_sunfest_a_01_taf.m2", + text = "helm_cloth_sunfest_a_01_taf.m2", + }, + { + fileId = "137869", + value = "helm_cloth_sunfest_a_01_tam.m2", + text = "helm_cloth_sunfest_a_01_tam.m2", + }, + { + fileId = "137870", + value = "helm_cloth_sunfest_a_01_trf.m2", + text = "helm_cloth_sunfest_a_01_trf.m2", + }, + { + fileId = "137871", + value = "helm_cloth_sunfest_a_01_trm.m2", + text = "helm_cloth_sunfest_a_01_trm.m2", + }, + { + fileId = "137874", + value = "helm_engi_b_01_bef.m2", + text = "helm_engi_b_01_bef.m2", + }, + { + fileId = "137875", + value = "helm_engi_b_01_bem.m2", + text = "helm_engi_b_01_bem.m2", + }, + { + fileId = "137876", + value = "helm_engi_b_01_drf.m2", + text = "helm_engi_b_01_drf.m2", + }, + { + fileId = "137877", + value = "helm_engi_b_01_drm.m2", + text = "helm_engi_b_01_drm.m2", + }, + { + fileId = "137878", + value = "helm_engi_b_01_dwf.m2", + text = "helm_engi_b_01_dwf.m2", + }, + { + fileId = "137879", + value = "helm_engi_b_01_dwm.m2", + text = "helm_engi_b_01_dwm.m2", + }, + { + fileId = "137880", + value = "helm_engi_b_01_gnf.m2", + text = "helm_engi_b_01_gnf.m2", + }, + { + fileId = "137881", + value = "helm_engi_b_01_gnm.m2", + text = "helm_engi_b_01_gnm.m2", + }, + { + fileId = "137882", + value = "helm_engi_b_01_gof.m2", + text = "helm_engi_b_01_gof.m2", + }, + { + fileId = "137883", + value = "helm_engi_b_01_gom.m2", + text = "helm_engi_b_01_gom.m2", + }, + { + fileId = "137884", + value = "helm_engi_b_01_huf.m2", + text = "helm_engi_b_01_huf.m2", + }, + { + fileId = "137885", + value = "helm_engi_b_01_hum.m2", + text = "helm_engi_b_01_hum.m2", + }, + { + fileId = "137886", + value = "helm_engi_b_01_nif.m2", + text = "helm_engi_b_01_nif.m2", + }, + { + fileId = "137887", + value = "helm_engi_b_01_nim.m2", + text = "helm_engi_b_01_nim.m2", + }, + { + fileId = "137888", + value = "helm_engi_b_01_orf.m2", + text = "helm_engi_b_01_orf.m2", + }, + { + fileId = "137889", + value = "helm_engi_b_01_orm.m2", + text = "helm_engi_b_01_orm.m2", + }, + { + fileId = "137890", + value = "helm_engi_b_01_scf.m2", + text = "helm_engi_b_01_scf.m2", + }, + { + fileId = "137891", + value = "helm_engi_b_01_scm.m2", + text = "helm_engi_b_01_scm.m2", + }, + { + fileId = "137892", + value = "helm_engi_b_01_taf.m2", + text = "helm_engi_b_01_taf.m2", + }, + { + fileId = "137893", + value = "helm_engi_b_01_tam.m2", + text = "helm_engi_b_01_tam.m2", + }, + { + fileId = "137894", + value = "helm_engi_b_01_trf.m2", + text = "helm_engi_b_01_trf.m2", + }, + { + fileId = "137895", + value = "helm_engi_b_01_trm.m2", + text = "helm_engi_b_01_trm.m2", + }, + { + fileId = "137897", + value = "helm_engi_b_02_bef.m2", + text = "helm_engi_b_02_bef.m2", + }, + { + fileId = "137898", + value = "helm_engi_b_02_bem.m2", + text = "helm_engi_b_02_bem.m2", + }, + { + fileId = "137899", + value = "helm_engi_b_02_drf.m2", + text = "helm_engi_b_02_drf.m2", + }, + { + fileId = "137900", + value = "helm_engi_b_02_drm.m2", + text = "helm_engi_b_02_drm.m2", + }, + { + fileId = "137901", + value = "helm_engi_b_02_dwf.m2", + text = "helm_engi_b_02_dwf.m2", + }, + { + fileId = "137902", + value = "helm_engi_b_02_dwm.m2", + text = "helm_engi_b_02_dwm.m2", + }, + { + fileId = "137903", + value = "helm_engi_b_02_gnf.m2", + text = "helm_engi_b_02_gnf.m2", + }, + { + fileId = "137904", + value = "helm_engi_b_02_gnm.m2", + text = "helm_engi_b_02_gnm.m2", + }, + { + fileId = "137905", + value = "helm_engi_b_02_gof.m2", + text = "helm_engi_b_02_gof.m2", + }, + { + fileId = "137906", + value = "helm_engi_b_02_gom.m2", + text = "helm_engi_b_02_gom.m2", + }, + { + fileId = "137907", + value = "helm_engi_b_02_huf.m2", + text = "helm_engi_b_02_huf.m2", + }, + { + fileId = "137908", + value = "helm_engi_b_02_hum.m2", + text = "helm_engi_b_02_hum.m2", + }, + { + fileId = "137909", + value = "helm_engi_b_02_nif.m2", + text = "helm_engi_b_02_nif.m2", + }, + { + fileId = "137910", + value = "helm_engi_b_02_nim.m2", + text = "helm_engi_b_02_nim.m2", + }, + { + fileId = "137911", + value = "helm_engi_b_02_orf.m2", + text = "helm_engi_b_02_orf.m2", + }, + { + fileId = "137912", + value = "helm_engi_b_02_orm.m2", + text = "helm_engi_b_02_orm.m2", + }, + { + fileId = "137913", + value = "helm_engi_b_02_scf.m2", + text = "helm_engi_b_02_scf.m2", + }, + { + fileId = "137914", + value = "helm_engi_b_02_scm.m2", + text = "helm_engi_b_02_scm.m2", + }, + { + fileId = "137915", + value = "helm_engi_b_02_taf.m2", + text = "helm_engi_b_02_taf.m2", + }, + { + fileId = "137916", + value = "helm_engi_b_02_tam.m2", + text = "helm_engi_b_02_tam.m2", + }, + { + fileId = "137917", + value = "helm_engi_b_02_trf.m2", + text = "helm_engi_b_02_trf.m2", + }, + { + fileId = "137918", + value = "helm_engi_b_02_trm.m2", + text = "helm_engi_b_02_trm.m2", + }, + { + fileId = "2199344", + value = "helm_engi_c_01diver.m2", + text = "helm_engi_c_01diver.m2", + }, + { + fileId = "137921", + value = "helm_engi_c_01diver_bef.m2", + text = "helm_engi_c_01diver_bef.m2", + }, + { + fileId = "137922", + value = "helm_engi_c_01diver_bem.m2", + text = "helm_engi_c_01diver_bem.m2", + }, + { + fileId = "137923", + value = "helm_engi_c_01diver_drf.m2", + text = "helm_engi_c_01diver_drf.m2", + }, + { + fileId = "137924", + value = "helm_engi_c_01diver_drm.m2", + text = "helm_engi_c_01diver_drm.m2", + }, + { + fileId = "137925", + value = "helm_engi_c_01diver_dwf.m2", + text = "helm_engi_c_01diver_dwf.m2", + }, + { + fileId = "137926", + value = "helm_engi_c_01diver_dwm.m2", + text = "helm_engi_c_01diver_dwm.m2", + }, + { + fileId = "137927", + value = "helm_engi_c_01diver_gnf.m2", + text = "helm_engi_c_01diver_gnf.m2", + }, + { + fileId = "137928", + value = "helm_engi_c_01diver_gnm.m2", + text = "helm_engi_c_01diver_gnm.m2", + }, + { + fileId = "137929", + value = "helm_engi_c_01diver_gof.m2", + text = "helm_engi_c_01diver_gof.m2", + }, + { + fileId = "137930", + value = "helm_engi_c_01diver_gom.m2", + text = "helm_engi_c_01diver_gom.m2", + }, + { + fileId = "137931", + value = "helm_engi_c_01diver_huf.m2", + text = "helm_engi_c_01diver_huf.m2", + }, + { + fileId = "137932", + value = "helm_engi_c_01diver_hum.m2", + text = "helm_engi_c_01diver_hum.m2", + }, + { + fileId = "137933", + value = "helm_engi_c_01diver_nif.m2", + text = "helm_engi_c_01diver_nif.m2", + }, + { + fileId = "137934", + value = "helm_engi_c_01diver_nim.m2", + text = "helm_engi_c_01diver_nim.m2", + }, + { + fileId = "137935", + value = "helm_engi_c_01diver_orf.m2", + text = "helm_engi_c_01diver_orf.m2", + }, + { + fileId = "137936", + value = "helm_engi_c_01diver_orm.m2", + text = "helm_engi_c_01diver_orm.m2", + }, + { + fileId = "137937", + value = "helm_engi_c_01diver_scf.m2", + text = "helm_engi_c_01diver_scf.m2", + }, + { + fileId = "137938", + value = "helm_engi_c_01diver_scm.m2", + text = "helm_engi_c_01diver_scm.m2", + }, + { + fileId = "137939", + value = "helm_engi_c_01diver_taf.m2", + text = "helm_engi_c_01diver_taf.m2", + }, + { + fileId = "137940", + value = "helm_engi_c_01diver_tam.m2", + text = "helm_engi_c_01diver_tam.m2", + }, + { + fileId = "137941", + value = "helm_engi_c_01diver_trf.m2", + text = "helm_engi_c_01diver_trf.m2", + }, + { + fileId = "137942", + value = "helm_engi_c_01diver_trm.m2", + text = "helm_engi_c_01diver_trm.m2", + }, + { + fileId = "137946", + value = "helm_engi_c_02space_bef.m2", + text = "helm_engi_c_02space_bef.m2", + }, + { + fileId = "137947", + value = "helm_engi_c_02space_bem.m2", + text = "helm_engi_c_02space_bem.m2", + }, + { + fileId = "137948", + value = "helm_engi_c_02space_drf.m2", + text = "helm_engi_c_02space_drf.m2", + }, + { + fileId = "137949", + value = "helm_engi_c_02space_drm.m2", + text = "helm_engi_c_02space_drm.m2", + }, + { + fileId = "137950", + value = "helm_engi_c_02space_dwf.m2", + text = "helm_engi_c_02space_dwf.m2", + }, + { + fileId = "137951", + value = "helm_engi_c_02space_dwm.m2", + text = "helm_engi_c_02space_dwm.m2", + }, + { + fileId = "137952", + value = "helm_engi_c_02space_gnf.m2", + text = "helm_engi_c_02space_gnf.m2", + }, + { + fileId = "137953", + value = "helm_engi_c_02space_gnm.m2", + text = "helm_engi_c_02space_gnm.m2", + }, + { + fileId = "137954", + value = "helm_engi_c_02space_gof.m2", + text = "helm_engi_c_02space_gof.m2", + }, + { + fileId = "137955", + value = "helm_engi_c_02space_gom.m2", + text = "helm_engi_c_02space_gom.m2", + }, + { + fileId = "137956", + value = "helm_engi_c_02space_huf.m2", + text = "helm_engi_c_02space_huf.m2", + }, + { + fileId = "137957", + value = "helm_engi_c_02space_hum.m2", + text = "helm_engi_c_02space_hum.m2", + }, + { + fileId = "137958", + value = "helm_engi_c_02space_nif.m2", + text = "helm_engi_c_02space_nif.m2", + }, + { + fileId = "137959", + value = "helm_engi_c_02space_nim.m2", + text = "helm_engi_c_02space_nim.m2", + }, + { + fileId = "137960", + value = "helm_engi_c_02space_orf.m2", + text = "helm_engi_c_02space_orf.m2", + }, + { + fileId = "137961", + value = "helm_engi_c_02space_orm.m2", + text = "helm_engi_c_02space_orm.m2", + }, + { + fileId = "137962", + value = "helm_engi_c_02space_scf.m2", + text = "helm_engi_c_02space_scf.m2", + }, + { + fileId = "137963", + value = "helm_engi_c_02space_scm.m2", + text = "helm_engi_c_02space_scm.m2", + }, + { + fileId = "137964", + value = "helm_engi_c_02space_taf.m2", + text = "helm_engi_c_02space_taf.m2", + }, + { + fileId = "137965", + value = "helm_engi_c_02space_tam.m2", + text = "helm_engi_c_02space_tam.m2", + }, + { + fileId = "137966", + value = "helm_engi_c_02space_trf.m2", + text = "helm_engi_c_02space_trf.m2", + }, + { + fileId = "137967", + value = "helm_engi_c_02space_trm.m2", + text = "helm_engi_c_02space_trm.m2", + }, + { + fileId = "137968", + value = "helm_eyepatch_a_01_bef.m2", + text = "helm_eyepatch_a_01_bef.m2", + }, + { + fileId = "137969", + value = "helm_eyepatch_a_01_bem.m2", + text = "helm_eyepatch_a_01_bem.m2", + }, + { + fileId = "137970", + value = "helm_eyepatch_a_01_drf.m2", + text = "helm_eyepatch_a_01_drf.m2", + }, + { + fileId = "137971", + value = "helm_eyepatch_a_01_drm.m2", + text = "helm_eyepatch_a_01_drm.m2", + }, + { + fileId = "137972", + value = "helm_eyepatch_a_01_dwf.m2", + text = "helm_eyepatch_a_01_dwf.m2", + }, + { + fileId = "137973", + value = "helm_eyepatch_a_01_dwm.m2", + text = "helm_eyepatch_a_01_dwm.m2", + }, + { + fileId = "137974", + value = "helm_eyepatch_a_01_gnf.m2", + text = "helm_eyepatch_a_01_gnf.m2", + }, + { + fileId = "137975", + value = "helm_eyepatch_a_01_gnm.m2", + text = "helm_eyepatch_a_01_gnm.m2", + }, + { + fileId = "137976", + value = "helm_eyepatch_a_01_gof.m2", + text = "helm_eyepatch_a_01_gof.m2", + }, + { + fileId = "137977", + value = "helm_eyepatch_a_01_gom.m2", + text = "helm_eyepatch_a_01_gom.m2", + }, + { + fileId = "137978", + value = "helm_eyepatch_a_01_huf.m2", + text = "helm_eyepatch_a_01_huf.m2", + }, + { + fileId = "137979", + value = "helm_eyepatch_a_01_hum.m2", + text = "helm_eyepatch_a_01_hum.m2", + }, + { + fileId = "137980", + value = "helm_eyepatch_a_01_nif.m2", + text = "helm_eyepatch_a_01_nif.m2", + }, + { + fileId = "137981", + value = "helm_eyepatch_a_01_nim.m2", + text = "helm_eyepatch_a_01_nim.m2", + }, + { + fileId = "137982", + value = "helm_eyepatch_a_01_orf.m2", + text = "helm_eyepatch_a_01_orf.m2", + }, + { + fileId = "137983", + value = "helm_eyepatch_a_01_orm.m2", + text = "helm_eyepatch_a_01_orm.m2", + }, + { + fileId = "137984", + value = "helm_eyepatch_a_01_scf.m2", + text = "helm_eyepatch_a_01_scf.m2", + }, + { + fileId = "137985", + value = "helm_eyepatch_a_01_scm.m2", + text = "helm_eyepatch_a_01_scm.m2", + }, + { + fileId = "137986", + value = "helm_eyepatch_a_01_taf.m2", + text = "helm_eyepatch_a_01_taf.m2", + }, + { + fileId = "137987", + value = "helm_eyepatch_a_01_tam.m2", + text = "helm_eyepatch_a_01_tam.m2", + }, + { + fileId = "137988", + value = "helm_eyepatch_a_01_trf.m2", + text = "helm_eyepatch_a_01_trf.m2", + }, + { + fileId = "137989", + value = "helm_eyepatch_a_01_trm.m2", + text = "helm_eyepatch_a_01_trm.m2", + }, + { + fileId = "137996", + value = "helm_eyepatch_a_02_bem.m2", + text = "helm_eyepatch_a_02_bem.m2", + }, + { + fileId = "137998", + value = "helm_goggles_b_01_bef.m2", + text = "helm_goggles_b_01_bef.m2", + }, + { + fileId = "137999", + value = "helm_goggles_b_01_bem.m2", + text = "helm_goggles_b_01_bem.m2", + }, + { + fileId = "138000", + value = "helm_goggles_b_01_drf.m2", + text = "helm_goggles_b_01_drf.m2", + }, + { + fileId = "138001", + value = "helm_goggles_b_01_drm.m2", + text = "helm_goggles_b_01_drm.m2", + }, + { + fileId = "138002", + value = "helm_goggles_b_01_dwf.m2", + text = "helm_goggles_b_01_dwf.m2", + }, + { + fileId = "138003", + value = "helm_goggles_b_01_dwm.m2", + text = "helm_goggles_b_01_dwm.m2", + }, + { + fileId = "138004", + value = "helm_goggles_b_01_gnf.m2", + text = "helm_goggles_b_01_gnf.m2", + }, + { + fileId = "138005", + value = "helm_goggles_b_01_gnm.m2", + text = "helm_goggles_b_01_gnm.m2", + }, + { + fileId = "138006", + value = "helm_goggles_b_01_gom.m2", + text = "helm_goggles_b_01_gom.m2", + }, + { + fileId = "138007", + value = "helm_goggles_b_01_huf.m2", + text = "helm_goggles_b_01_huf.m2", + }, + { + fileId = "138008", + value = "helm_goggles_b_01_hum.m2", + text = "helm_goggles_b_01_hum.m2", + }, + { + fileId = "138009", + value = "helm_goggles_b_01_nif.m2", + text = "helm_goggles_b_01_nif.m2", + }, + { + fileId = "138010", + value = "helm_goggles_b_01_nim.m2", + text = "helm_goggles_b_01_nim.m2", + }, + { + fileId = "138011", + value = "helm_goggles_b_01_orf.m2", + text = "helm_goggles_b_01_orf.m2", + }, + { + fileId = "138012", + value = "helm_goggles_b_01_orm.m2", + text = "helm_goggles_b_01_orm.m2", + }, + { + fileId = "138013", + value = "helm_goggles_b_01_scf.m2", + text = "helm_goggles_b_01_scf.m2", + }, + { + fileId = "138014", + value = "helm_goggles_b_01_scm.m2", + text = "helm_goggles_b_01_scm.m2", + }, + { + fileId = "138015", + value = "helm_goggles_b_01_taf.m2", + text = "helm_goggles_b_01_taf.m2", + }, + { + fileId = "138016", + value = "helm_goggles_b_01_tam.m2", + text = "helm_goggles_b_01_tam.m2", + }, + { + fileId = "138017", + value = "helm_goggles_b_01_trf.m2", + text = "helm_goggles_b_01_trf.m2", + }, + { + fileId = "138018", + value = "helm_goggles_b_01_trm.m2", + text = "helm_goggles_b_01_trm.m2", + }, + { + fileId = "138028", + value = "helm_goggles_b_02engi_bef.m2", + text = "helm_goggles_b_02engi_bef.m2", + }, + { + fileId = "138029", + value = "helm_goggles_b_02engi_bem.m2", + text = "helm_goggles_b_02engi_bem.m2", + }, + { + fileId = "138030", + value = "helm_goggles_b_02engi_drf.m2", + text = "helm_goggles_b_02engi_drf.m2", + }, + { + fileId = "138031", + value = "helm_goggles_b_02engi_drm.m2", + text = "helm_goggles_b_02engi_drm.m2", + }, + { + fileId = "138032", + value = "helm_goggles_b_02engi_dwf.m2", + text = "helm_goggles_b_02engi_dwf.m2", + }, + { + fileId = "138033", + value = "helm_goggles_b_02engi_dwm.m2", + text = "helm_goggles_b_02engi_dwm.m2", + }, + { + fileId = "138034", + value = "helm_goggles_b_02engi_gnf.m2", + text = "helm_goggles_b_02engi_gnf.m2", + }, + { + fileId = "138035", + value = "helm_goggles_b_02engi_gnm.m2", + text = "helm_goggles_b_02engi_gnm.m2", + }, + { + fileId = "138036", + value = "helm_goggles_b_02engi_gof.m2", + text = "helm_goggles_b_02engi_gof.m2", + }, + { + fileId = "138037", + value = "helm_goggles_b_02engi_gom.m2", + text = "helm_goggles_b_02engi_gom.m2", + }, + { + fileId = "138038", + value = "helm_goggles_b_02engi_huf.m2", + text = "helm_goggles_b_02engi_huf.m2", + }, + { + fileId = "138039", + value = "helm_goggles_b_02engi_hum.m2", + text = "helm_goggles_b_02engi_hum.m2", + }, + { + fileId = "138040", + value = "helm_goggles_b_02engi_nif.m2", + text = "helm_goggles_b_02engi_nif.m2", + }, + { + fileId = "138041", + value = "helm_goggles_b_02engi_nim.m2", + text = "helm_goggles_b_02engi_nim.m2", + }, + { + fileId = "138042", + value = "helm_goggles_b_02engi_orf.m2", + text = "helm_goggles_b_02engi_orf.m2", + }, + { + fileId = "138043", + value = "helm_goggles_b_02engi_orm.m2", + text = "helm_goggles_b_02engi_orm.m2", + }, + { + fileId = "138044", + value = "helm_goggles_b_02engi_scf.m2", + text = "helm_goggles_b_02engi_scf.m2", + }, + { + fileId = "138045", + value = "helm_goggles_b_02engi_scm.m2", + text = "helm_goggles_b_02engi_scm.m2", + }, + { + fileId = "138046", + value = "helm_goggles_b_02engi_taf.m2", + text = "helm_goggles_b_02engi_taf.m2", + }, + { + fileId = "138047", + value = "helm_goggles_b_02engi_tam.m2", + text = "helm_goggles_b_02engi_tam.m2", + }, + { + fileId = "138048", + value = "helm_goggles_b_02engi_trf.m2", + text = "helm_goggles_b_02engi_trf.m2", + }, + { + fileId = "138049", + value = "helm_goggles_b_02engi_trm.m2", + text = "helm_goggles_b_02engi_trm.m2", + }, + { + fileId = "138051", + value = "helm_goggles_b_03_bef.m2", + text = "helm_goggles_b_03_bef.m2", + }, + { + fileId = "138052", + value = "helm_goggles_b_03_bem.m2", + text = "helm_goggles_b_03_bem.m2", + }, + { + fileId = "138053", + value = "helm_goggles_b_03_drf.m2", + text = "helm_goggles_b_03_drf.m2", + }, + { + fileId = "138054", + value = "helm_goggles_b_03_drm.m2", + text = "helm_goggles_b_03_drm.m2", + }, + { + fileId = "138055", + value = "helm_goggles_b_03_dwf.m2", + text = "helm_goggles_b_03_dwf.m2", + }, + { + fileId = "138056", + value = "helm_goggles_b_03_dwm.m2", + text = "helm_goggles_b_03_dwm.m2", + }, + { + fileId = "138057", + value = "helm_goggles_b_03_gnf.m2", + text = "helm_goggles_b_03_gnf.m2", + }, + { + fileId = "138058", + value = "helm_goggles_b_03_gnm.m2", + text = "helm_goggles_b_03_gnm.m2", + }, + { + fileId = "138059", + value = "helm_goggles_b_03_gof.m2", + text = "helm_goggles_b_03_gof.m2", + }, + { + fileId = "138060", + value = "helm_goggles_b_03_gom.m2", + text = "helm_goggles_b_03_gom.m2", + }, + { + fileId = "138061", + value = "helm_goggles_b_03_huf.m2", + text = "helm_goggles_b_03_huf.m2", + }, + { + fileId = "138062", + value = "helm_goggles_b_03_hum.m2", + text = "helm_goggles_b_03_hum.m2", + }, + { + fileId = "138063", + value = "helm_goggles_b_03_nif.m2", + text = "helm_goggles_b_03_nif.m2", + }, + { + fileId = "138064", + value = "helm_goggles_b_03_nim.m2", + text = "helm_goggles_b_03_nim.m2", + }, + { + fileId = "138065", + value = "helm_goggles_b_03_orf.m2", + text = "helm_goggles_b_03_orf.m2", + }, + { + fileId = "138066", + value = "helm_goggles_b_03_orm.m2", + text = "helm_goggles_b_03_orm.m2", + }, + { + fileId = "138067", + value = "helm_goggles_b_03_scf.m2", + text = "helm_goggles_b_03_scf.m2", + }, + { + fileId = "138068", + value = "helm_goggles_b_03_scm.m2", + text = "helm_goggles_b_03_scm.m2", + }, + { + fileId = "138069", + value = "helm_goggles_b_03_taf.m2", + text = "helm_goggles_b_03_taf.m2", + }, + { + fileId = "138070", + value = "helm_goggles_b_03_tam.m2", + text = "helm_goggles_b_03_tam.m2", + }, + { + fileId = "138071", + value = "helm_goggles_b_03_trf.m2", + text = "helm_goggles_b_03_trf.m2", + }, + { + fileId = "138072", + value = "helm_goggles_b_03_trm.m2", + text = "helm_goggles_b_03_trm.m2", + }, + { + fileId = "138074", + value = "helm_goggles_b_04.m2", + text = "helm_goggles_b_04.m2", + }, + { + fileId = "138075", + value = "helm_goggles_b_04_dwf.m2", + text = "helm_goggles_b_04_dwf.m2", + }, + { + fileId = "138076", + value = "helm_goggles_b_04_dwm.m2", + text = "helm_goggles_b_04_dwm.m2", + }, + { + fileId = "138078", + value = "helm_goggles_c_01_bef.m2", + text = "helm_goggles_c_01_bef.m2", + }, + { + fileId = "138079", + value = "helm_goggles_c_01_bem.m2", + text = "helm_goggles_c_01_bem.m2", + }, + { + fileId = "138080", + value = "helm_goggles_c_01_drf.m2", + text = "helm_goggles_c_01_drf.m2", + }, + { + fileId = "138081", + value = "helm_goggles_c_01_drm.m2", + text = "helm_goggles_c_01_drm.m2", + }, + { + fileId = "138082", + value = "helm_goggles_c_01_dwf.m2", + text = "helm_goggles_c_01_dwf.m2", + }, + { + fileId = "138083", + value = "helm_goggles_c_01_dwm.m2", + text = "helm_goggles_c_01_dwm.m2", + }, + { + fileId = "138084", + value = "helm_goggles_c_01_gnf.m2", + text = "helm_goggles_c_01_gnf.m2", + }, + { + fileId = "138085", + value = "helm_goggles_c_01_gnm.m2", + text = "helm_goggles_c_01_gnm.m2", + }, + { + fileId = "138086", + value = "helm_goggles_c_01_gof.m2", + text = "helm_goggles_c_01_gof.m2", + }, + { + fileId = "138087", + value = "helm_goggles_c_01_gom.m2", + text = "helm_goggles_c_01_gom.m2", + }, + { + fileId = "138088", + value = "helm_goggles_c_01_huf.m2", + text = "helm_goggles_c_01_huf.m2", + }, + { + fileId = "138089", + value = "helm_goggles_c_01_hum.m2", + text = "helm_goggles_c_01_hum.m2", + }, + { + fileId = "138090", + value = "helm_goggles_c_01_nif.m2", + text = "helm_goggles_c_01_nif.m2", + }, + { + fileId = "138091", + value = "helm_goggles_c_01_nim.m2", + text = "helm_goggles_c_01_nim.m2", + }, + { + fileId = "138092", + value = "helm_goggles_c_01_orf.m2", + text = "helm_goggles_c_01_orf.m2", + }, + { + fileId = "138093", + value = "helm_goggles_c_01_orm.m2", + text = "helm_goggles_c_01_orm.m2", + }, + { + fileId = "138094", + value = "helm_goggles_c_01_scf.m2", + text = "helm_goggles_c_01_scf.m2", + }, + { + fileId = "138095", + value = "helm_goggles_c_01_scm.m2", + text = "helm_goggles_c_01_scm.m2", + }, + { + fileId = "138096", + value = "helm_goggles_c_01_taf.m2", + text = "helm_goggles_c_01_taf.m2", + }, + { + fileId = "138097", + value = "helm_goggles_c_01_tam.m2", + text = "helm_goggles_c_01_tam.m2", + }, + { + fileId = "138098", + value = "helm_goggles_c_01_trf.m2", + text = "helm_goggles_c_01_trf.m2", + }, + { + fileId = "138099", + value = "helm_goggles_c_01_trm.m2", + text = "helm_goggles_c_01_trm.m2", + }, + { + fileId = "138104", + value = "helm_goggles_d_01_bef.m2", + text = "helm_goggles_d_01_bef.m2", + }, + { + fileId = "138105", + value = "helm_goggles_d_01_bem.m2", + text = "helm_goggles_d_01_bem.m2", + }, + { + fileId = "138106", + value = "helm_goggles_d_01_drf.m2", + text = "helm_goggles_d_01_drf.m2", + }, + { + fileId = "138107", + value = "helm_goggles_d_01_drm.m2", + text = "helm_goggles_d_01_drm.m2", + }, + { + fileId = "138108", + value = "helm_goggles_d_01_dwf.m2", + text = "helm_goggles_d_01_dwf.m2", + }, + { + fileId = "138109", + value = "helm_goggles_d_01_dwm.m2", + text = "helm_goggles_d_01_dwm.m2", + }, + { + fileId = "138110", + value = "helm_goggles_d_01_gnf.m2", + text = "helm_goggles_d_01_gnf.m2", + }, + { + fileId = "138111", + value = "helm_goggles_d_01_gnm.m2", + text = "helm_goggles_d_01_gnm.m2", + }, + { + fileId = "138112", + value = "helm_goggles_d_01_gof.m2", + text = "helm_goggles_d_01_gof.m2", + }, + { + fileId = "138113", + value = "helm_goggles_d_01_gom.m2", + text = "helm_goggles_d_01_gom.m2", + }, + { + fileId = "138114", + value = "helm_goggles_d_01_huf.m2", + text = "helm_goggles_d_01_huf.m2", + }, + { + fileId = "138115", + value = "helm_goggles_d_01_hum.m2", + text = "helm_goggles_d_01_hum.m2", + }, + { + fileId = "138116", + value = "helm_goggles_d_01_nif.m2", + text = "helm_goggles_d_01_nif.m2", + }, + { + fileId = "138117", + value = "helm_goggles_d_01_nim.m2", + text = "helm_goggles_d_01_nim.m2", + }, + { + fileId = "138118", + value = "helm_goggles_d_01_orf.m2", + text = "helm_goggles_d_01_orf.m2", + }, + { + fileId = "138119", + value = "helm_goggles_d_01_orm.m2", + text = "helm_goggles_d_01_orm.m2", + }, + { + fileId = "138120", + value = "helm_goggles_d_01_scf.m2", + text = "helm_goggles_d_01_scf.m2", + }, + { + fileId = "138121", + value = "helm_goggles_d_01_scm.m2", + text = "helm_goggles_d_01_scm.m2", + }, + { + fileId = "138122", + value = "helm_goggles_d_01_taf.m2", + text = "helm_goggles_d_01_taf.m2", + }, + { + fileId = "138123", + value = "helm_goggles_d_01_tam.m2", + text = "helm_goggles_d_01_tam.m2", + }, + { + fileId = "138124", + value = "helm_goggles_d_01_trf.m2", + text = "helm_goggles_d_01_trf.m2", + }, + { + fileId = "138125", + value = "helm_goggles_d_01_trm.m2", + text = "helm_goggles_d_01_trm.m2", + }, + { + fileId = "138137", + value = "helm_leather_a_01_bef.m2", + text = "helm_leather_a_01_bef.m2", + }, + { + fileId = "138138", + value = "helm_leather_a_01_bem.m2", + text = "helm_leather_a_01_bem.m2", + }, + { + fileId = "138139", + value = "helm_leather_a_01_drf.m2", + text = "helm_leather_a_01_drf.m2", + }, + { + fileId = "138140", + value = "helm_leather_a_01_drm.m2", + text = "helm_leather_a_01_drm.m2", + }, + { + fileId = "138141", + value = "helm_leather_a_01_dwf.m2", + text = "helm_leather_a_01_dwf.m2", + }, + { + fileId = "138142", + value = "helm_leather_a_01_dwm.m2", + text = "helm_leather_a_01_dwm.m2", + }, + { + fileId = "138143", + value = "helm_leather_a_01_gnf.m2", + text = "helm_leather_a_01_gnf.m2", + }, + { + fileId = "138144", + value = "helm_leather_a_01_gnm.m2", + text = "helm_leather_a_01_gnm.m2", + }, + { + fileId = "138145", + value = "helm_leather_a_01_gof.m2", + text = "helm_leather_a_01_gof.m2", + }, + { + fileId = "138146", + value = "helm_leather_a_01_gom.m2", + text = "helm_leather_a_01_gom.m2", + }, + { + fileId = "138147", + value = "helm_leather_a_01_huf.m2", + text = "helm_leather_a_01_huf.m2", + }, + { + fileId = "138148", + value = "helm_leather_a_01_hum.m2", + text = "helm_leather_a_01_hum.m2", + }, + { + fileId = "138149", + value = "helm_leather_a_01_nif.m2", + text = "helm_leather_a_01_nif.m2", + }, + { + fileId = "138150", + value = "helm_leather_a_01_nim.m2", + text = "helm_leather_a_01_nim.m2", + }, + { + fileId = "138151", + value = "helm_leather_a_01_orf.m2", + text = "helm_leather_a_01_orf.m2", + }, + { + fileId = "138152", + value = "helm_leather_a_01_orm.m2", + text = "helm_leather_a_01_orm.m2", + }, + { + fileId = "138153", + value = "helm_leather_a_01_scf.m2", + text = "helm_leather_a_01_scf.m2", + }, + { + fileId = "138154", + value = "helm_leather_a_01_scm.m2", + text = "helm_leather_a_01_scm.m2", + }, + { + fileId = "138155", + value = "helm_leather_a_01_taf.m2", + text = "helm_leather_a_01_taf.m2", + }, + { + fileId = "138156", + value = "helm_leather_a_01_tam.m2", + text = "helm_leather_a_01_tam.m2", + }, + { + fileId = "138157", + value = "helm_leather_a_01_trf.m2", + text = "helm_leather_a_01_trf.m2", + }, + { + fileId = "138158", + value = "helm_leather_a_01_trm.m2", + text = "helm_leather_a_01_trm.m2", + }, + { + fileId = "138167", + value = "helm_leather_a_02_bef.m2", + text = "helm_leather_a_02_bef.m2", + }, + { + fileId = "138168", + value = "helm_leather_a_02_bem.m2", + text = "helm_leather_a_02_bem.m2", + }, + { + fileId = "138169", + value = "helm_leather_a_02_drf.m2", + text = "helm_leather_a_02_drf.m2", + }, + { + fileId = "138170", + value = "helm_leather_a_02_drm.m2", + text = "helm_leather_a_02_drm.m2", + }, + { + fileId = "138171", + value = "helm_leather_a_02_dwf.m2", + text = "helm_leather_a_02_dwf.m2", + }, + { + fileId = "138172", + value = "helm_leather_a_02_dwm.m2", + text = "helm_leather_a_02_dwm.m2", + }, + { + fileId = "138173", + value = "helm_leather_a_02_gnf.m2", + text = "helm_leather_a_02_gnf.m2", + }, + { + fileId = "138174", + value = "helm_leather_a_02_gnm.m2", + text = "helm_leather_a_02_gnm.m2", + }, + { + fileId = "138175", + value = "helm_leather_a_02_gof.m2", + text = "helm_leather_a_02_gof.m2", + }, + { + fileId = "138176", + value = "helm_leather_a_02_gom.m2", + text = "helm_leather_a_02_gom.m2", + }, + { + fileId = "138177", + value = "helm_leather_a_02_huf.m2", + text = "helm_leather_a_02_huf.m2", + }, + { + fileId = "138178", + value = "helm_leather_a_02_hum.m2", + text = "helm_leather_a_02_hum.m2", + }, + { + fileId = "138179", + value = "helm_leather_a_02_nif.m2", + text = "helm_leather_a_02_nif.m2", + }, + { + fileId = "138180", + value = "helm_leather_a_02_nim.m2", + text = "helm_leather_a_02_nim.m2", + }, + { + fileId = "138181", + value = "helm_leather_a_02_orf.m2", + text = "helm_leather_a_02_orf.m2", + }, + { + fileId = "138182", + value = "helm_leather_a_02_orm.m2", + text = "helm_leather_a_02_orm.m2", + }, + { + fileId = "138183", + value = "helm_leather_a_02_scf.m2", + text = "helm_leather_a_02_scf.m2", + }, + { + fileId = "138184", + value = "helm_leather_a_02_scm.m2", + text = "helm_leather_a_02_scm.m2", + }, + { + fileId = "138185", + value = "helm_leather_a_02_taf.m2", + text = "helm_leather_a_02_taf.m2", + }, + { + fileId = "138186", + value = "helm_leather_a_02_tam.m2", + text = "helm_leather_a_02_tam.m2", + }, + { + fileId = "138187", + value = "helm_leather_a_02_trf.m2", + text = "helm_leather_a_02_trf.m2", + }, + { + fileId = "138188", + value = "helm_leather_a_02_trm.m2", + text = "helm_leather_a_02_trm.m2", + }, + { + fileId = "138194", + value = "helm_leather_a_03defias_bef.m2", + text = "helm_leather_a_03defias_bef.m2", + }, + { + fileId = "138195", + value = "helm_leather_a_03defias_bem.m2", + text = "helm_leather_a_03defias_bem.m2", + }, + { + fileId = "138196", + value = "helm_leather_a_03defias_drf.m2", + text = "helm_leather_a_03defias_drf.m2", + }, + { + fileId = "138197", + value = "helm_leather_a_03defias_drm.m2", + text = "helm_leather_a_03defias_drm.m2", + }, + { + fileId = "138198", + value = "helm_leather_a_03defias_dwf.m2", + text = "helm_leather_a_03defias_dwf.m2", + }, + { + fileId = "138199", + value = "helm_leather_a_03defias_dwm.m2", + text = "helm_leather_a_03defias_dwm.m2", + }, + { + fileId = "138200", + value = "helm_leather_a_03defias_gnf.m2", + text = "helm_leather_a_03defias_gnf.m2", + }, + { + fileId = "138201", + value = "helm_leather_a_03defias_gnm.m2", + text = "helm_leather_a_03defias_gnm.m2", + }, + { + fileId = "138202", + value = "helm_leather_a_03defias_gof.m2", + text = "helm_leather_a_03defias_gof.m2", + }, + { + fileId = "138203", + value = "helm_leather_a_03defias_gom.m2", + text = "helm_leather_a_03defias_gom.m2", + }, + { + fileId = "138204", + value = "helm_leather_a_03defias_huf.m2", + text = "helm_leather_a_03defias_huf.m2", + }, + { + fileId = "138205", + value = "helm_leather_a_03defias_hum.m2", + text = "helm_leather_a_03defias_hum.m2", + }, + { + fileId = "138206", + value = "helm_leather_a_03defias_nif.m2", + text = "helm_leather_a_03defias_nif.m2", + }, + { + fileId = "138207", + value = "helm_leather_a_03defias_nim.m2", + text = "helm_leather_a_03defias_nim.m2", + }, + { + fileId = "138208", + value = "helm_leather_a_03defias_orf.m2", + text = "helm_leather_a_03defias_orf.m2", + }, + { + fileId = "138209", + value = "helm_leather_a_03defias_orm.m2", + text = "helm_leather_a_03defias_orm.m2", + }, + { + fileId = "138210", + value = "helm_leather_a_03defias_scf.m2", + text = "helm_leather_a_03defias_scf.m2", + }, + { + fileId = "138211", + value = "helm_leather_a_03defias_scm.m2", + text = "helm_leather_a_03defias_scm.m2", + }, + { + fileId = "138212", + value = "helm_leather_a_03defias_taf.m2", + text = "helm_leather_a_03defias_taf.m2", + }, + { + fileId = "138213", + value = "helm_leather_a_03defias_tam.m2", + text = "helm_leather_a_03defias_tam.m2", + }, + { + fileId = "138214", + value = "helm_leather_a_03defias_trf.m2", + text = "helm_leather_a_03defias_trf.m2", + }, + { + fileId = "138215", + value = "helm_leather_a_03defias_trm.m2", + text = "helm_leather_a_03defias_trm.m2", + }, + { + fileId = "138223", + value = "helm_leather_ahnqiraj_a_01_bef.m2", + text = "helm_leather_ahnqiraj_a_01_bef.m2", + }, + { + fileId = "138224", + value = "helm_leather_ahnqiraj_a_01_bem.m2", + text = "helm_leather_ahnqiraj_a_01_bem.m2", + }, + { + fileId = "138225", + value = "helm_leather_ahnqiraj_a_01_drf.m2", + text = "helm_leather_ahnqiraj_a_01_drf.m2", + }, + { + fileId = "138226", + value = "helm_leather_ahnqiraj_a_01_drm.m2", + text = "helm_leather_ahnqiraj_a_01_drm.m2", + }, + { + fileId = "138227", + value = "helm_leather_ahnqiraj_a_01_dwf.m2", + text = "helm_leather_ahnqiraj_a_01_dwf.m2", + }, + { + fileId = "138228", + value = "helm_leather_ahnqiraj_a_01_dwm.m2", + text = "helm_leather_ahnqiraj_a_01_dwm.m2", + }, + { + fileId = "138229", + value = "helm_leather_ahnqiraj_a_01_gnf.m2", + text = "helm_leather_ahnqiraj_a_01_gnf.m2", + }, + { + fileId = "138230", + value = "helm_leather_ahnqiraj_a_01_gnm.m2", + text = "helm_leather_ahnqiraj_a_01_gnm.m2", + }, + { + fileId = "138231", + value = "helm_leather_ahnqiraj_a_01_gof.m2", + text = "helm_leather_ahnqiraj_a_01_gof.m2", + }, + { + fileId = "138232", + value = "helm_leather_ahnqiraj_a_01_gom.m2", + text = "helm_leather_ahnqiraj_a_01_gom.m2", + }, + { + fileId = "138233", + value = "helm_leather_ahnqiraj_a_01_huf.m2", + text = "helm_leather_ahnqiraj_a_01_huf.m2", + }, + { + fileId = "138234", + value = "helm_leather_ahnqiraj_a_01_hum.m2", + text = "helm_leather_ahnqiraj_a_01_hum.m2", + }, + { + fileId = "138235", + value = "helm_leather_ahnqiraj_a_01_nif.m2", + text = "helm_leather_ahnqiraj_a_01_nif.m2", + }, + { + fileId = "138236", + value = "helm_leather_ahnqiraj_a_01_nim.m2", + text = "helm_leather_ahnqiraj_a_01_nim.m2", + }, + { + fileId = "138237", + value = "helm_leather_ahnqiraj_a_01_orf.m2", + text = "helm_leather_ahnqiraj_a_01_orf.m2", + }, + { + fileId = "138238", + value = "helm_leather_ahnqiraj_a_01_orm.m2", + text = "helm_leather_ahnqiraj_a_01_orm.m2", + }, + { + fileId = "138239", + value = "helm_leather_ahnqiraj_a_01_scf.m2", + text = "helm_leather_ahnqiraj_a_01_scf.m2", + }, + { + fileId = "138240", + value = "helm_leather_ahnqiraj_a_01_scm.m2", + text = "helm_leather_ahnqiraj_a_01_scm.m2", + }, + { + fileId = "138241", + value = "helm_leather_ahnqiraj_a_01_taf.m2", + text = "helm_leather_ahnqiraj_a_01_taf.m2", + }, + { + fileId = "138242", + value = "helm_leather_ahnqiraj_a_01_tam.m2", + text = "helm_leather_ahnqiraj_a_01_tam.m2", + }, + { + fileId = "138243", + value = "helm_leather_ahnqiraj_a_01_trf.m2", + text = "helm_leather_ahnqiraj_a_01_trf.m2", + }, + { + fileId = "138244", + value = "helm_leather_ahnqiraj_a_01_trm.m2", + text = "helm_leather_ahnqiraj_a_01_trm.m2", + }, + { + fileId = "138248", + value = "helm_leather_b_01_bef.m2", + text = "helm_leather_b_01_bef.m2", + }, + { + fileId = "138249", + value = "helm_leather_b_01_bem.m2", + text = "helm_leather_b_01_bem.m2", + }, + { + fileId = "138250", + value = "helm_leather_b_01_drf.m2", + text = "helm_leather_b_01_drf.m2", + }, + { + fileId = "138251", + value = "helm_leather_b_01_drm.m2", + text = "helm_leather_b_01_drm.m2", + }, + { + fileId = "138252", + value = "helm_leather_b_01_dwf.m2", + text = "helm_leather_b_01_dwf.m2", + }, + { + fileId = "138253", + value = "helm_leather_b_01_dwm.m2", + text = "helm_leather_b_01_dwm.m2", + }, + { + fileId = "138254", + value = "helm_leather_b_01_gnf.m2", + text = "helm_leather_b_01_gnf.m2", + }, + { + fileId = "138255", + value = "helm_leather_b_01_gnm.m2", + text = "helm_leather_b_01_gnm.m2", + }, + { + fileId = "138256", + value = "helm_leather_b_01_gof.m2", + text = "helm_leather_b_01_gof.m2", + }, + { + fileId = "138257", + value = "helm_leather_b_01_gom.m2", + text = "helm_leather_b_01_gom.m2", + }, + { + fileId = "138258", + value = "helm_leather_b_01_huf.m2", + text = "helm_leather_b_01_huf.m2", + }, + { + fileId = "138259", + value = "helm_leather_b_01_hum.m2", + text = "helm_leather_b_01_hum.m2", + }, + { + fileId = "138260", + value = "helm_leather_b_01_nif.m2", + text = "helm_leather_b_01_nif.m2", + }, + { + fileId = "138261", + value = "helm_leather_b_01_nim.m2", + text = "helm_leather_b_01_nim.m2", + }, + { + fileId = "138262", + value = "helm_leather_b_01_orf.m2", + text = "helm_leather_b_01_orf.m2", + }, + { + fileId = "138263", + value = "helm_leather_b_01_orm.m2", + text = "helm_leather_b_01_orm.m2", + }, + { + fileId = "138264", + value = "helm_leather_b_01_scf.m2", + text = "helm_leather_b_01_scf.m2", + }, + { + fileId = "138265", + value = "helm_leather_b_01_scm.m2", + text = "helm_leather_b_01_scm.m2", + }, + { + fileId = "138266", + value = "helm_leather_b_01_taf.m2", + text = "helm_leather_b_01_taf.m2", + }, + { + fileId = "138267", + value = "helm_leather_b_01_tam.m2", + text = "helm_leather_b_01_tam.m2", + }, + { + fileId = "138268", + value = "helm_leather_b_01_trf.m2", + text = "helm_leather_b_01_trf.m2", + }, + { + fileId = "138269", + value = "helm_leather_b_01_trm.m2", + text = "helm_leather_b_01_trm.m2", + }, + { + fileId = "138279", + value = "helm_leather_b_03venture_bef.m2", + text = "helm_leather_b_03venture_bef.m2", + }, + { + fileId = "138280", + value = "helm_leather_b_03venture_bem.m2", + text = "helm_leather_b_03venture_bem.m2", + }, + { + fileId = "138281", + value = "helm_leather_b_03venture_drf.m2", + text = "helm_leather_b_03venture_drf.m2", + }, + { + fileId = "138282", + value = "helm_leather_b_03venture_drm.m2", + text = "helm_leather_b_03venture_drm.m2", + }, + { + fileId = "138283", + value = "helm_leather_b_03venture_dwf.m2", + text = "helm_leather_b_03venture_dwf.m2", + }, + { + fileId = "138284", + value = "helm_leather_b_03venture_dwm.m2", + text = "helm_leather_b_03venture_dwm.m2", + }, + { + fileId = "138286", + value = "helm_leather_b_03venture_gnf.m2", + text = "helm_leather_b_03venture_gnf.m2", + }, + { + fileId = "138287", + value = "helm_leather_b_03venture_gnm.m2", + text = "helm_leather_b_03venture_gnm.m2", + }, + { + fileId = "138288", + value = "helm_leather_b_03venture_gof.m2", + text = "helm_leather_b_03venture_gof.m2", + }, + { + fileId = "138289", + value = "helm_leather_b_03venture_gom.m2", + text = "helm_leather_b_03venture_gom.m2", + }, + { + fileId = "138290", + value = "helm_leather_b_03venture_huf.m2", + text = "helm_leather_b_03venture_huf.m2", + }, + { + fileId = "138291", + value = "helm_leather_b_03venture_hum.m2", + text = "helm_leather_b_03venture_hum.m2", + }, + { + fileId = "138292", + value = "helm_leather_b_03venture_nif.m2", + text = "helm_leather_b_03venture_nif.m2", + }, + { + fileId = "138293", + value = "helm_leather_b_03venture_nim.m2", + text = "helm_leather_b_03venture_nim.m2", + }, + { + fileId = "138294", + value = "helm_leather_b_03venture_orf.m2", + text = "helm_leather_b_03venture_orf.m2", + }, + { + fileId = "138295", + value = "helm_leather_b_03venture_orm.m2", + text = "helm_leather_b_03venture_orm.m2", + }, + { + fileId = "138296", + value = "helm_leather_b_03venture_scf.m2", + text = "helm_leather_b_03venture_scf.m2", + }, + { + fileId = "138297", + value = "helm_leather_b_03venture_scm.m2", + text = "helm_leather_b_03venture_scm.m2", + }, + { + fileId = "138298", + value = "helm_leather_b_03venture_taf.m2", + text = "helm_leather_b_03venture_taf.m2", + }, + { + fileId = "138299", + value = "helm_leather_b_03venture_tam.m2", + text = "helm_leather_b_03venture_tam.m2", + }, + { + fileId = "138300", + value = "helm_leather_b_03venture_trf.m2", + text = "helm_leather_b_03venture_trf.m2", + }, + { + fileId = "138301", + value = "helm_leather_b_03venture_trm.m2", + text = "helm_leather_b_03venture_trm.m2", + }, + { + fileId = "138302", + value = "helm_leather_b_06_bef.m2", + text = "helm_leather_b_06_bef.m2", + }, + { + fileId = "138303", + value = "helm_leather_b_06_bem.m2", + text = "helm_leather_b_06_bem.m2", + }, + { + fileId = "138304", + value = "helm_leather_b_06_drf.m2", + text = "helm_leather_b_06_drf.m2", + }, + { + fileId = "138305", + value = "helm_leather_b_06_drm.m2", + text = "helm_leather_b_06_drm.m2", + }, + { + fileId = "138306", + value = "helm_leather_b_06_dwf.m2", + text = "helm_leather_b_06_dwf.m2", + }, + { + fileId = "138307", + value = "helm_leather_b_06_dwm.m2", + text = "helm_leather_b_06_dwm.m2", + }, + { + fileId = "138308", + value = "helm_leather_b_06_gnf.m2", + text = "helm_leather_b_06_gnf.m2", + }, + { + fileId = "138309", + value = "helm_leather_b_06_gnm.m2", + text = "helm_leather_b_06_gnm.m2", + }, + { + fileId = "138310", + value = "helm_leather_b_06_gof.m2", + text = "helm_leather_b_06_gof.m2", + }, + { + fileId = "138311", + value = "helm_leather_b_06_huf.m2", + text = "helm_leather_b_06_huf.m2", + }, + { + fileId = "138312", + value = "helm_leather_b_06_hum.m2", + text = "helm_leather_b_06_hum.m2", + }, + { + fileId = "138313", + value = "helm_leather_b_06_nif.m2", + text = "helm_leather_b_06_nif.m2", + }, + { + fileId = "138314", + value = "helm_leather_b_06_nim.m2", + text = "helm_leather_b_06_nim.m2", + }, + { + fileId = "138315", + value = "helm_leather_b_06_orf.m2", + text = "helm_leather_b_06_orf.m2", + }, + { + fileId = "138316", + value = "helm_leather_b_06_orm.m2", + text = "helm_leather_b_06_orm.m2", + }, + { + fileId = "138317", + value = "helm_leather_b_06_scf.m2", + text = "helm_leather_b_06_scf.m2", + }, + { + fileId = "138318", + value = "helm_leather_b_06_scm.m2", + text = "helm_leather_b_06_scm.m2", + }, + { + fileId = "138319", + value = "helm_leather_b_06_taf.m2", + text = "helm_leather_b_06_taf.m2", + }, + { + fileId = "138320", + value = "helm_leather_b_06_tam.m2", + text = "helm_leather_b_06_tam.m2", + }, + { + fileId = "138321", + value = "helm_leather_b_06_trf.m2", + text = "helm_leather_b_06_trf.m2", + }, + { + fileId = "138322", + value = "helm_leather_b_06_trm.m2", + text = "helm_leather_b_06_trm.m2", + }, + { + fileId = "138336", + value = "helm_leather_blood_c_02_bef.m2", + text = "helm_leather_blood_c_02_bef.m2", + }, + { + fileId = "138337", + value = "helm_leather_blood_c_02_bem.m2", + text = "helm_leather_blood_c_02_bem.m2", + }, + { + fileId = "138338", + value = "helm_leather_blood_c_02_drf.m2", + text = "helm_leather_blood_c_02_drf.m2", + }, + { + fileId = "138339", + value = "helm_leather_blood_c_02_drm.m2", + text = "helm_leather_blood_c_02_drm.m2", + }, + { + fileId = "138340", + value = "helm_leather_blood_c_02_dwf.m2", + text = "helm_leather_blood_c_02_dwf.m2", + }, + { + fileId = "138341", + value = "helm_leather_blood_c_02_dwm.m2", + text = "helm_leather_blood_c_02_dwm.m2", + }, + { + fileId = "138342", + value = "helm_leather_blood_c_02_gnf.m2", + text = "helm_leather_blood_c_02_gnf.m2", + }, + { + fileId = "138343", + value = "helm_leather_blood_c_02_gnm.m2", + text = "helm_leather_blood_c_02_gnm.m2", + }, + { + fileId = "138344", + value = "helm_leather_blood_c_02_gof.m2", + text = "helm_leather_blood_c_02_gof.m2", + }, + { + fileId = "138345", + value = "helm_leather_blood_c_02_gom.m2", + text = "helm_leather_blood_c_02_gom.m2", + }, + { + fileId = "138346", + value = "helm_leather_blood_c_02_huf.m2", + text = "helm_leather_blood_c_02_huf.m2", + }, + { + fileId = "138347", + value = "helm_leather_blood_c_02_hum.m2", + text = "helm_leather_blood_c_02_hum.m2", + }, + { + fileId = "138348", + value = "helm_leather_blood_c_02_nif.m2", + text = "helm_leather_blood_c_02_nif.m2", + }, + { + fileId = "138349", + value = "helm_leather_blood_c_02_nim.m2", + text = "helm_leather_blood_c_02_nim.m2", + }, + { + fileId = "138350", + value = "helm_leather_blood_c_02_orf.m2", + text = "helm_leather_blood_c_02_orf.m2", + }, + { + fileId = "138351", + value = "helm_leather_blood_c_02_orm.m2", + text = "helm_leather_blood_c_02_orm.m2", + }, + { + fileId = "138352", + value = "helm_leather_blood_c_02_scf.m2", + text = "helm_leather_blood_c_02_scf.m2", + }, + { + fileId = "138353", + value = "helm_leather_blood_c_02_scm.m2", + text = "helm_leather_blood_c_02_scm.m2", + }, + { + fileId = "138354", + value = "helm_leather_blood_c_02_taf.m2", + text = "helm_leather_blood_c_02_taf.m2", + }, + { + fileId = "138355", + value = "helm_leather_blood_c_02_tam.m2", + text = "helm_leather_blood_c_02_tam.m2", + }, + { + fileId = "138356", + value = "helm_leather_blood_c_02_trf.m2", + text = "helm_leather_blood_c_02_trf.m2", + }, + { + fileId = "138357", + value = "helm_leather_blood_c_02_trm.m2", + text = "helm_leather_blood_c_02_trm.m2", + }, + { + fileId = "138358", + value = "helm_leather_d_01_bef.m2", + text = "helm_leather_d_01_bef.m2", + }, + { + fileId = "138359", + value = "helm_leather_d_01_bem.m2", + text = "helm_leather_d_01_bem.m2", + }, + { + fileId = "138360", + value = "helm_leather_d_01_drf.m2", + text = "helm_leather_d_01_drf.m2", + }, + { + fileId = "138361", + value = "helm_leather_d_01_drm.m2", + text = "helm_leather_d_01_drm.m2", + }, + { + fileId = "138362", + value = "helm_leather_d_01_dwf.m2", + text = "helm_leather_d_01_dwf.m2", + }, + { + fileId = "138363", + value = "helm_leather_d_01_dwm.m2", + text = "helm_leather_d_01_dwm.m2", + }, + { + fileId = "138364", + value = "helm_leather_d_01_gnf.m2", + text = "helm_leather_d_01_gnf.m2", + }, + { + fileId = "138365", + value = "helm_leather_d_01_gnm.m2", + text = "helm_leather_d_01_gnm.m2", + }, + { + fileId = "138366", + value = "helm_leather_d_01_gof.m2", + text = "helm_leather_d_01_gof.m2", + }, + { + fileId = "138367", + value = "helm_leather_d_01_gom.m2", + text = "helm_leather_d_01_gom.m2", + }, + { + fileId = "138368", + value = "helm_leather_d_01_huf.m2", + text = "helm_leather_d_01_huf.m2", + }, + { + fileId = "138369", + value = "helm_leather_d_01_hum.m2", + text = "helm_leather_d_01_hum.m2", + }, + { + fileId = "138370", + value = "helm_leather_d_01_nif.m2", + text = "helm_leather_d_01_nif.m2", + }, + { + fileId = "138371", + value = "helm_leather_d_01_nim.m2", + text = "helm_leather_d_01_nim.m2", + }, + { + fileId = "138372", + value = "helm_leather_d_01_orf.m2", + text = "helm_leather_d_01_orf.m2", + }, + { + fileId = "138373", + value = "helm_leather_d_01_orm.m2", + text = "helm_leather_d_01_orm.m2", + }, + { + fileId = "138374", + value = "helm_leather_d_01_scf.m2", + text = "helm_leather_d_01_scf.m2", + }, + { + fileId = "138375", + value = "helm_leather_d_01_scm.m2", + text = "helm_leather_d_01_scm.m2", + }, + { + fileId = "138376", + value = "helm_leather_d_01_taf.m2", + text = "helm_leather_d_01_taf.m2", + }, + { + fileId = "138377", + value = "helm_leather_d_01_tam.m2", + text = "helm_leather_d_01_tam.m2", + }, + { + fileId = "138378", + value = "helm_leather_d_01_trf.m2", + text = "helm_leather_d_01_trf.m2", + }, + { + fileId = "138379", + value = "helm_leather_d_01_trm.m2", + text = "helm_leather_d_01_trm.m2", + }, + { + fileId = "138389", + value = "helm_leather_d_02_bef.m2", + text = "helm_leather_d_02_bef.m2", + }, + { + fileId = "138390", + value = "helm_leather_d_02_bem.m2", + text = "helm_leather_d_02_bem.m2", + }, + { + fileId = "138391", + value = "helm_leather_d_02_drf.m2", + text = "helm_leather_d_02_drf.m2", + }, + { + fileId = "138392", + value = "helm_leather_d_02_drm.m2", + text = "helm_leather_d_02_drm.m2", + }, + { + fileId = "138393", + value = "helm_leather_d_02_dwf.m2", + text = "helm_leather_d_02_dwf.m2", + }, + { + fileId = "138394", + value = "helm_leather_d_02_dwm.m2", + text = "helm_leather_d_02_dwm.m2", + }, + { + fileId = "138395", + value = "helm_leather_d_02_gnf.m2", + text = "helm_leather_d_02_gnf.m2", + }, + { + fileId = "138396", + value = "helm_leather_d_02_gnm.m2", + text = "helm_leather_d_02_gnm.m2", + }, + { + fileId = "138397", + value = "helm_leather_d_02_gof.m2", + text = "helm_leather_d_02_gof.m2", + }, + { + fileId = "138398", + value = "helm_leather_d_02_gom.m2", + text = "helm_leather_d_02_gom.m2", + }, + { + fileId = "138399", + value = "helm_leather_d_02_huf.m2", + text = "helm_leather_d_02_huf.m2", + }, + { + fileId = "138400", + value = "helm_leather_d_02_hum.m2", + text = "helm_leather_d_02_hum.m2", + }, + { + fileId = "138401", + value = "helm_leather_d_02_nif.m2", + text = "helm_leather_d_02_nif.m2", + }, + { + fileId = "138402", + value = "helm_leather_d_02_nim.m2", + text = "helm_leather_d_02_nim.m2", + }, + { + fileId = "138403", + value = "helm_leather_d_02_orf.m2", + text = "helm_leather_d_02_orf.m2", + }, + { + fileId = "138404", + value = "helm_leather_d_02_orm.m2", + text = "helm_leather_d_02_orm.m2", + }, + { + fileId = "138405", + value = "helm_leather_d_02_scf.m2", + text = "helm_leather_d_02_scf.m2", + }, + { + fileId = "138406", + value = "helm_leather_d_02_scm.m2", + text = "helm_leather_d_02_scm.m2", + }, + { + fileId = "138407", + value = "helm_leather_d_02_taf.m2", + text = "helm_leather_d_02_taf.m2", + }, + { + fileId = "138408", + value = "helm_leather_d_02_tam.m2", + text = "helm_leather_d_02_tam.m2", + }, + { + fileId = "138409", + value = "helm_leather_d_02_trf.m2", + text = "helm_leather_d_02_trf.m2", + }, + { + fileId = "138410", + value = "helm_leather_d_02_trm.m2", + text = "helm_leather_d_02_trm.m2", + }, + { + fileId = "138419", + value = "helm_leather_dungeondruid_a_01_bef.m2", + text = "helm_leather_dungeondruid_a_01_bef.m2", + }, + { + fileId = "138420", + value = "helm_leather_dungeondruid_a_01_bem.m2", + text = "helm_leather_dungeondruid_a_01_bem.m2", + }, + { + fileId = "138421", + value = "helm_leather_dungeondruid_a_01_drf.m2", + text = "helm_leather_dungeondruid_a_01_drf.m2", + }, + { + fileId = "138422", + value = "helm_leather_dungeondruid_a_01_drm.m2", + text = "helm_leather_dungeondruid_a_01_drm.m2", + }, + { + fileId = "138423", + value = "helm_leather_dungeondruid_a_01_dwf.m2", + text = "helm_leather_dungeondruid_a_01_dwf.m2", + }, + { + fileId = "138424", + value = "helm_leather_dungeondruid_a_01_dwm.m2", + text = "helm_leather_dungeondruid_a_01_dwm.m2", + }, + { + fileId = "138425", + value = "helm_leather_dungeondruid_a_01_gnf.m2", + text = "helm_leather_dungeondruid_a_01_gnf.m2", + }, + { + fileId = "138426", + value = "helm_leather_dungeondruid_a_01_gnm.m2", + text = "helm_leather_dungeondruid_a_01_gnm.m2", + }, + { + fileId = "138427", + value = "helm_leather_dungeondruid_a_01_gom.m2", + text = "helm_leather_dungeondruid_a_01_gom.m2", + }, + { + fileId = "138428", + value = "helm_leather_dungeondruid_a_01_huf.m2", + text = "helm_leather_dungeondruid_a_01_huf.m2", + }, + { + fileId = "138429", + value = "helm_leather_dungeondruid_a_01_hum.m2", + text = "helm_leather_dungeondruid_a_01_hum.m2", + }, + { + fileId = "138430", + value = "helm_leather_dungeondruid_a_01_nif.m2", + text = "helm_leather_dungeondruid_a_01_nif.m2", + }, + { + fileId = "138431", + value = "helm_leather_dungeondruid_a_01_nim.m2", + text = "helm_leather_dungeondruid_a_01_nim.m2", + }, + { + fileId = "138432", + value = "helm_leather_dungeondruid_a_01_orf.m2", + text = "helm_leather_dungeondruid_a_01_orf.m2", + }, + { + fileId = "138433", + value = "helm_leather_dungeondruid_a_01_orm.m2", + text = "helm_leather_dungeondruid_a_01_orm.m2", + }, + { + fileId = "138435", + value = "helm_leather_dungeondruid_a_01_scf.m2", + text = "helm_leather_dungeondruid_a_01_scf.m2", + }, + { + fileId = "138436", + value = "helm_leather_dungeondruid_a_01_scm.m2", + text = "helm_leather_dungeondruid_a_01_scm.m2", + }, + { + fileId = "138437", + value = "helm_leather_dungeondruid_a_01_taf.m2", + text = "helm_leather_dungeondruid_a_01_taf.m2", + }, + { + fileId = "138438", + value = "helm_leather_dungeondruid_a_01_tam.m2", + text = "helm_leather_dungeondruid_a_01_tam.m2", + }, + { + fileId = "138439", + value = "helm_leather_dungeondruid_a_01_trf.m2", + text = "helm_leather_dungeondruid_a_01_trf.m2", + }, + { + fileId = "138440", + value = "helm_leather_dungeondruid_a_01_trm.m2", + text = "helm_leather_dungeondruid_a_01_trm.m2", + }, + { + fileId = "138445", + value = "helm_leather_dungeondruid_b_01_bef.m2", + text = "helm_leather_dungeondruid_b_01_bef.m2", + }, + { + fileId = "138446", + value = "helm_leather_dungeondruid_b_01_bem.m2", + text = "helm_leather_dungeondruid_b_01_bem.m2", + }, + { + fileId = "138447", + value = "helm_leather_dungeondruid_b_01_drf.m2", + text = "helm_leather_dungeondruid_b_01_drf.m2", + }, + { + fileId = "138448", + value = "helm_leather_dungeondruid_b_01_drm.m2", + text = "helm_leather_dungeondruid_b_01_drm.m2", + }, + { + fileId = "138449", + value = "helm_leather_dungeondruid_b_01_dwf.m2", + text = "helm_leather_dungeondruid_b_01_dwf.m2", + }, + { + fileId = "138450", + value = "helm_leather_dungeondruid_b_01_dwm.m2", + text = "helm_leather_dungeondruid_b_01_dwm.m2", + }, + { + fileId = "138451", + value = "helm_leather_dungeondruid_b_01_gnf.m2", + text = "helm_leather_dungeondruid_b_01_gnf.m2", + }, + { + fileId = "138452", + value = "helm_leather_dungeondruid_b_01_gnm.m2", + text = "helm_leather_dungeondruid_b_01_gnm.m2", + }, + { + fileId = "138453", + value = "helm_leather_dungeondruid_b_01_gof.m2", + text = "helm_leather_dungeondruid_b_01_gof.m2", + }, + { + fileId = "138454", + value = "helm_leather_dungeondruid_b_01_gom.m2", + text = "helm_leather_dungeondruid_b_01_gom.m2", + }, + { + fileId = "138455", + value = "helm_leather_dungeondruid_b_01_huf.m2", + text = "helm_leather_dungeondruid_b_01_huf.m2", + }, + { + fileId = "138456", + value = "helm_leather_dungeondruid_b_01_hum.m2", + text = "helm_leather_dungeondruid_b_01_hum.m2", + }, + { + fileId = "138457", + value = "helm_leather_dungeondruid_b_01_nif.m2", + text = "helm_leather_dungeondruid_b_01_nif.m2", + }, + { + fileId = "138458", + value = "helm_leather_dungeondruid_b_01_nim.m2", + text = "helm_leather_dungeondruid_b_01_nim.m2", + }, + { + fileId = "138459", + value = "helm_leather_dungeondruid_b_01_orf.m2", + text = "helm_leather_dungeondruid_b_01_orf.m2", + }, + { + fileId = "138460", + value = "helm_leather_dungeondruid_b_01_orm.m2", + text = "helm_leather_dungeondruid_b_01_orm.m2", + }, + { + fileId = "138461", + value = "helm_leather_dungeondruid_b_01_scf.m2", + text = "helm_leather_dungeondruid_b_01_scf.m2", + }, + { + fileId = "138462", + value = "helm_leather_dungeondruid_b_01_scm.m2", + text = "helm_leather_dungeondruid_b_01_scm.m2", + }, + { + fileId = "138463", + value = "helm_leather_dungeondruid_b_01_taf.m2", + text = "helm_leather_dungeondruid_b_01_taf.m2", + }, + { + fileId = "138464", + value = "helm_leather_dungeondruid_b_01_tam.m2", + text = "helm_leather_dungeondruid_b_01_tam.m2", + }, + { + fileId = "138465", + value = "helm_leather_dungeondruid_b_01_trf.m2", + text = "helm_leather_dungeondruid_b_01_trf.m2", + }, + { + fileId = "138466", + value = "helm_leather_dungeondruid_b_01_trm.m2", + text = "helm_leather_dungeondruid_b_01_trm.m2", + }, + { + fileId = "138471", + value = "helm_leather_dungeonrogue_b_01_bef.m2", + text = "helm_leather_dungeonrogue_b_01_bef.m2", + }, + { + fileId = "138472", + value = "helm_leather_dungeonrogue_b_01_bem.m2", + text = "helm_leather_dungeonrogue_b_01_bem.m2", + }, + { + fileId = "138473", + value = "helm_leather_dungeonrogue_b_01_drf.m2", + text = "helm_leather_dungeonrogue_b_01_drf.m2", + }, + { + fileId = "138474", + value = "helm_leather_dungeonrogue_b_01_drm.m2", + text = "helm_leather_dungeonrogue_b_01_drm.m2", + }, + { + fileId = "138475", + value = "helm_leather_dungeonrogue_b_01_dwf.m2", + text = "helm_leather_dungeonrogue_b_01_dwf.m2", + }, + { + fileId = "138476", + value = "helm_leather_dungeonrogue_b_01_dwm.m2", + text = "helm_leather_dungeonrogue_b_01_dwm.m2", + }, + { + fileId = "138477", + value = "helm_leather_dungeonrogue_b_01_gnf.m2", + text = "helm_leather_dungeonrogue_b_01_gnf.m2", + }, + { + fileId = "138478", + value = "helm_leather_dungeonrogue_b_01_gnm.m2", + text = "helm_leather_dungeonrogue_b_01_gnm.m2", + }, + { + fileId = "138479", + value = "helm_leather_dungeonrogue_b_01_gof.m2", + text = "helm_leather_dungeonrogue_b_01_gof.m2", + }, + { + fileId = "138480", + value = "helm_leather_dungeonrogue_b_01_gom.m2", + text = "helm_leather_dungeonrogue_b_01_gom.m2", + }, + { + fileId = "138481", + value = "helm_leather_dungeonrogue_b_01_huf.m2", + text = "helm_leather_dungeonrogue_b_01_huf.m2", + }, + { + fileId = "138482", + value = "helm_leather_dungeonrogue_b_01_hum.m2", + text = "helm_leather_dungeonrogue_b_01_hum.m2", + }, + { + fileId = "138483", + value = "helm_leather_dungeonrogue_b_01_nif.m2", + text = "helm_leather_dungeonrogue_b_01_nif.m2", + }, + { + fileId = "138484", + value = "helm_leather_dungeonrogue_b_01_nim.m2", + text = "helm_leather_dungeonrogue_b_01_nim.m2", + }, + { + fileId = "138485", + value = "helm_leather_dungeonrogue_b_01_orf.m2", + text = "helm_leather_dungeonrogue_b_01_orf.m2", + }, + { + fileId = "138486", + value = "helm_leather_dungeonrogue_b_01_orm.m2", + text = "helm_leather_dungeonrogue_b_01_orm.m2", + }, + { + fileId = "138487", + value = "helm_leather_dungeonrogue_b_01_scf.m2", + text = "helm_leather_dungeonrogue_b_01_scf.m2", + }, + { + fileId = "138488", + value = "helm_leather_dungeonrogue_b_01_scm.m2", + text = "helm_leather_dungeonrogue_b_01_scm.m2", + }, + { + fileId = "138489", + value = "helm_leather_dungeonrogue_b_01_taf.m2", + text = "helm_leather_dungeonrogue_b_01_taf.m2", + }, + { + fileId = "138490", + value = "helm_leather_dungeonrogue_b_01_tam.m2", + text = "helm_leather_dungeonrogue_b_01_tam.m2", + }, + { + fileId = "138491", + value = "helm_leather_dungeonrogue_b_01_trf.m2", + text = "helm_leather_dungeonrogue_b_01_trf.m2", + }, + { + fileId = "138492", + value = "helm_leather_dungeonrogue_b_01_trm.m2", + text = "helm_leather_dungeonrogue_b_01_trm.m2", + }, + { + fileId = "138618", + value = "helm_leather_pvpalliance_a_01_bef.m2", + text = "helm_leather_pvpalliance_a_01_bef.m2", + }, + { + fileId = "138619", + value = "helm_leather_pvpalliance_a_01_bem.m2", + text = "helm_leather_pvpalliance_a_01_bem.m2", + }, + { + fileId = "138620", + value = "helm_leather_pvpalliance_a_01_drf.m2", + text = "helm_leather_pvpalliance_a_01_drf.m2", + }, + { + fileId = "138621", + value = "helm_leather_pvpalliance_a_01_drm.m2", + text = "helm_leather_pvpalliance_a_01_drm.m2", + }, + { + fileId = "138622", + value = "helm_leather_pvpalliance_a_01_dwf.m2", + text = "helm_leather_pvpalliance_a_01_dwf.m2", + }, + { + fileId = "138623", + value = "helm_leather_pvpalliance_a_01_dwm.m2", + text = "helm_leather_pvpalliance_a_01_dwm.m2", + }, + { + fileId = "138624", + value = "helm_leather_pvpalliance_a_01_gnf.m2", + text = "helm_leather_pvpalliance_a_01_gnf.m2", + }, + { + fileId = "138625", + value = "helm_leather_pvpalliance_a_01_gnm.m2", + text = "helm_leather_pvpalliance_a_01_gnm.m2", + }, + { + fileId = "138626", + value = "helm_leather_pvpalliance_a_01_gof.m2", + text = "helm_leather_pvpalliance_a_01_gof.m2", + }, + { + fileId = "138627", + value = "helm_leather_pvpalliance_a_01_gom.m2", + text = "helm_leather_pvpalliance_a_01_gom.m2", + }, + { + fileId = "138628", + value = "helm_leather_pvpalliance_a_01_huf.m2", + text = "helm_leather_pvpalliance_a_01_huf.m2", + }, + { + fileId = "138629", + value = "helm_leather_pvpalliance_a_01_hum.m2", + text = "helm_leather_pvpalliance_a_01_hum.m2", + }, + { + fileId = "138630", + value = "helm_leather_pvpalliance_a_01_nif.m2", + text = "helm_leather_pvpalliance_a_01_nif.m2", + }, + { + fileId = "138631", + value = "helm_leather_pvpalliance_a_01_nim.m2", + text = "helm_leather_pvpalliance_a_01_nim.m2", + }, + { + fileId = "138632", + value = "helm_leather_pvpalliance_a_01_orf.m2", + text = "helm_leather_pvpalliance_a_01_orf.m2", + }, + { + fileId = "138633", + value = "helm_leather_pvpalliance_a_01_orm.m2", + text = "helm_leather_pvpalliance_a_01_orm.m2", + }, + { + fileId = "138634", + value = "helm_leather_pvpalliance_a_01_scf.m2", + text = "helm_leather_pvpalliance_a_01_scf.m2", + }, + { + fileId = "138635", + value = "helm_leather_pvpalliance_a_01_scm.m2", + text = "helm_leather_pvpalliance_a_01_scm.m2", + }, + { + fileId = "138636", + value = "helm_leather_pvpalliance_a_01_taf.m2", + text = "helm_leather_pvpalliance_a_01_taf.m2", + }, + { + fileId = "138637", + value = "helm_leather_pvpalliance_a_01_tam.m2", + text = "helm_leather_pvpalliance_a_01_tam.m2", + }, + { + fileId = "138638", + value = "helm_leather_pvpalliance_a_01_trf.m2", + text = "helm_leather_pvpalliance_a_01_trf.m2", + }, + { + fileId = "138639", + value = "helm_leather_pvpalliance_a_01_trm.m2", + text = "helm_leather_pvpalliance_a_01_trm.m2", + }, + { + fileId = "138642", + value = "helm_leather_pvpalliance_c_01_bef.m2", + text = "helm_leather_pvpalliance_c_01_bef.m2", + }, + { + fileId = "138643", + value = "helm_leather_pvpalliance_c_01_drf.m2", + text = "helm_leather_pvpalliance_c_01_drf.m2", + }, + { + fileId = "138644", + value = "helm_leather_pvpalliance_c_01_drm.m2", + text = "helm_leather_pvpalliance_c_01_drm.m2", + }, + { + fileId = "138645", + value = "helm_leather_pvpalliance_c_01_gof.m2", + text = "helm_leather_pvpalliance_c_01_gof.m2", + }, + { + fileId = "138646", + value = "helm_leather_pvphorde_a_01_bef.m2", + text = "helm_leather_pvphorde_a_01_bef.m2", + }, + { + fileId = "138647", + value = "helm_leather_pvphorde_a_01_bem.m2", + text = "helm_leather_pvphorde_a_01_bem.m2", + }, + { + fileId = "138648", + value = "helm_leather_pvphorde_a_01_drf.m2", + text = "helm_leather_pvphorde_a_01_drf.m2", + }, + { + fileId = "138649", + value = "helm_leather_pvphorde_a_01_drm.m2", + text = "helm_leather_pvphorde_a_01_drm.m2", + }, + { + fileId = "138650", + value = "helm_leather_pvphorde_a_01_dwf.m2", + text = "helm_leather_pvphorde_a_01_dwf.m2", + }, + { + fileId = "138651", + value = "helm_leather_pvphorde_a_01_dwm.m2", + text = "helm_leather_pvphorde_a_01_dwm.m2", + }, + { + fileId = "138652", + value = "helm_leather_pvphorde_a_01_gnf.m2", + text = "helm_leather_pvphorde_a_01_gnf.m2", + }, + { + fileId = "138653", + value = "helm_leather_pvphorde_a_01_gnm.m2", + text = "helm_leather_pvphorde_a_01_gnm.m2", + }, + { + fileId = "138654", + value = "helm_leather_pvphorde_a_01_gof.m2", + text = "helm_leather_pvphorde_a_01_gof.m2", + }, + { + fileId = "138655", + value = "helm_leather_pvphorde_a_01_gom.m2", + text = "helm_leather_pvphorde_a_01_gom.m2", + }, + { + fileId = "138656", + value = "helm_leather_pvphorde_a_01_huf.m2", + text = "helm_leather_pvphorde_a_01_huf.m2", + }, + { + fileId = "138657", + value = "helm_leather_pvphorde_a_01_hum.m2", + text = "helm_leather_pvphorde_a_01_hum.m2", + }, + { + fileId = "138658", + value = "helm_leather_pvphorde_a_01_nif.m2", + text = "helm_leather_pvphorde_a_01_nif.m2", + }, + { + fileId = "138659", + value = "helm_leather_pvphorde_a_01_nim.m2", + text = "helm_leather_pvphorde_a_01_nim.m2", + }, + { + fileId = "138660", + value = "helm_leather_pvphorde_a_01_orf.m2", + text = "helm_leather_pvphorde_a_01_orf.m2", + }, + { + fileId = "138661", + value = "helm_leather_pvphorde_a_01_orm.m2", + text = "helm_leather_pvphorde_a_01_orm.m2", + }, + { + fileId = "138662", + value = "helm_leather_pvphorde_a_01_scf.m2", + text = "helm_leather_pvphorde_a_01_scf.m2", + }, + { + fileId = "138663", + value = "helm_leather_pvphorde_a_01_scm.m2", + text = "helm_leather_pvphorde_a_01_scm.m2", + }, + { + fileId = "138664", + value = "helm_leather_pvphorde_a_01_taf.m2", + text = "helm_leather_pvphorde_a_01_taf.m2", + }, + { + fileId = "138665", + value = "helm_leather_pvphorde_a_01_tam.m2", + text = "helm_leather_pvphorde_a_01_tam.m2", + }, + { + fileId = "138666", + value = "helm_leather_pvphorde_a_01_trf.m2", + text = "helm_leather_pvphorde_a_01_trf.m2", + }, + { + fileId = "138667", + value = "helm_leather_pvphorde_a_01_trm.m2", + text = "helm_leather_pvphorde_a_01_trm.m2", + }, + { + fileId = "138670", + value = "helm_leather_pvphorde_c_01_bef.m2", + text = "helm_leather_pvphorde_c_01_bef.m2", + }, + { + fileId = "138671", + value = "helm_leather_pvphorde_c_01_bem.m2", + text = "helm_leather_pvphorde_c_01_bem.m2", + }, + { + fileId = "138672", + value = "helm_leather_pvphorde_c_01_drf.m2", + text = "helm_leather_pvphorde_c_01_drf.m2", + }, + { + fileId = "138673", + value = "helm_leather_pvphorde_c_01_drm.m2", + text = "helm_leather_pvphorde_c_01_drm.m2", + }, + { + fileId = "138674", + value = "helm_leather_pvphorde_c_01_dwf.m2", + text = "helm_leather_pvphorde_c_01_dwf.m2", + }, + { + fileId = "138675", + value = "helm_leather_pvphorde_c_01_dwm.m2", + text = "helm_leather_pvphorde_c_01_dwm.m2", + }, + { + fileId = "138676", + value = "helm_leather_pvphorde_c_01_gnf.m2", + text = "helm_leather_pvphorde_c_01_gnf.m2", + }, + { + fileId = "138677", + value = "helm_leather_pvphorde_c_01_gnm.m2", + text = "helm_leather_pvphorde_c_01_gnm.m2", + }, + { + fileId = "138678", + value = "helm_leather_pvphorde_c_01_gof.m2", + text = "helm_leather_pvphorde_c_01_gof.m2", + }, + { + fileId = "138679", + value = "helm_leather_pvphorde_c_01_gom.m2", + text = "helm_leather_pvphorde_c_01_gom.m2", + }, + { + fileId = "138680", + value = "helm_leather_pvphorde_c_01_huf.m2", + text = "helm_leather_pvphorde_c_01_huf.m2", + }, + { + fileId = "138681", + value = "helm_leather_pvphorde_c_01_hum.m2", + text = "helm_leather_pvphorde_c_01_hum.m2", + }, + { + fileId = "138682", + value = "helm_leather_pvphorde_c_01_nif.m2", + text = "helm_leather_pvphorde_c_01_nif.m2", + }, + { + fileId = "138683", + value = "helm_leather_pvphorde_c_01_nim.m2", + text = "helm_leather_pvphorde_c_01_nim.m2", + }, + { + fileId = "138684", + value = "helm_leather_pvphorde_c_01_orf.m2", + text = "helm_leather_pvphorde_c_01_orf.m2", + }, + { + fileId = "138685", + value = "helm_leather_pvphorde_c_01_orm.m2", + text = "helm_leather_pvphorde_c_01_orm.m2", + }, + { + fileId = "138686", + value = "helm_leather_pvphorde_c_01_scf.m2", + text = "helm_leather_pvphorde_c_01_scf.m2", + }, + { + fileId = "138687", + value = "helm_leather_pvphorde_c_01_scm.m2", + text = "helm_leather_pvphorde_c_01_scm.m2", + }, + { + fileId = "138688", + value = "helm_leather_pvphorde_c_01_taf.m2", + text = "helm_leather_pvphorde_c_01_taf.m2", + }, + { + fileId = "138689", + value = "helm_leather_pvphorde_c_01_tam.m2", + text = "helm_leather_pvphorde_c_01_tam.m2", + }, + { + fileId = "138690", + value = "helm_leather_pvphorde_c_01_trf.m2", + text = "helm_leather_pvphorde_c_01_trf.m2", + }, + { + fileId = "138691", + value = "helm_leather_pvphorde_c_01_trm.m2", + text = "helm_leather_pvphorde_c_01_trm.m2", + }, + { + fileId = "138695", + value = "helm_leather_raiddruid_a_01_bef.m2", + text = "helm_leather_raiddruid_a_01_bef.m2", + }, + { + fileId = "138696", + value = "helm_leather_raiddruid_a_01_bem.m2", + text = "helm_leather_raiddruid_a_01_bem.m2", + }, + { + fileId = "138697", + value = "helm_leather_raiddruid_a_01_drf.m2", + text = "helm_leather_raiddruid_a_01_drf.m2", + }, + { + fileId = "138698", + value = "helm_leather_raiddruid_a_01_drm.m2", + text = "helm_leather_raiddruid_a_01_drm.m2", + }, + { + fileId = "138699", + value = "helm_leather_raiddruid_a_01_dwf.m2", + text = "helm_leather_raiddruid_a_01_dwf.m2", + }, + { + fileId = "138700", + value = "helm_leather_raiddruid_a_01_dwm.m2", + text = "helm_leather_raiddruid_a_01_dwm.m2", + }, + { + fileId = "138701", + value = "helm_leather_raiddruid_a_01_gnf.m2", + text = "helm_leather_raiddruid_a_01_gnf.m2", + }, + { + fileId = "138702", + value = "helm_leather_raiddruid_a_01_gnm.m2", + text = "helm_leather_raiddruid_a_01_gnm.m2", + }, + { + fileId = "138703", + value = "helm_leather_raiddruid_a_01_gof.m2", + text = "helm_leather_raiddruid_a_01_gof.m2", + }, + { + fileId = "138704", + value = "helm_leather_raiddruid_a_01_huf.m2", + text = "helm_leather_raiddruid_a_01_huf.m2", + }, + { + fileId = "138705", + value = "helm_leather_raiddruid_a_01_hum.m2", + text = "helm_leather_raiddruid_a_01_hum.m2", + }, + { + fileId = "138706", + value = "helm_leather_raiddruid_a_01_nif.m2", + text = "helm_leather_raiddruid_a_01_nif.m2", + }, + { + fileId = "138707", + value = "helm_leather_raiddruid_a_01_nim.m2", + text = "helm_leather_raiddruid_a_01_nim.m2", + }, + { + fileId = "138708", + value = "helm_leather_raiddruid_a_01_orf.m2", + text = "helm_leather_raiddruid_a_01_orf.m2", + }, + { + fileId = "138709", + value = "helm_leather_raiddruid_a_01_orm.m2", + text = "helm_leather_raiddruid_a_01_orm.m2", + }, + { + fileId = "138710", + value = "helm_leather_raiddruid_a_01_scf.m2", + text = "helm_leather_raiddruid_a_01_scf.m2", + }, + { + fileId = "138711", + value = "helm_leather_raiddruid_a_01_scm.m2", + text = "helm_leather_raiddruid_a_01_scm.m2", + }, + { + fileId = "138712", + value = "helm_leather_raiddruid_a_01_taf.m2", + text = "helm_leather_raiddruid_a_01_taf.m2", + }, + { + fileId = "138713", + value = "helm_leather_raiddruid_a_01_tam.m2", + text = "helm_leather_raiddruid_a_01_tam.m2", + }, + { + fileId = "138714", + value = "helm_leather_raiddruid_a_01_trf.m2", + text = "helm_leather_raiddruid_a_01_trf.m2", + }, + { + fileId = "138715", + value = "helm_leather_raiddruid_a_01_trm.m2", + text = "helm_leather_raiddruid_a_01_trm.m2", + }, + { + fileId = "138720", + value = "helm_leather_raiddruid_b_01_bef.m2", + text = "helm_leather_raiddruid_b_01_bef.m2", + }, + { + fileId = "138721", + value = "helm_leather_raiddruid_b_01_bem.m2", + text = "helm_leather_raiddruid_b_01_bem.m2", + }, + { + fileId = "138722", + value = "helm_leather_raiddruid_b_01_drf.m2", + text = "helm_leather_raiddruid_b_01_drf.m2", + }, + { + fileId = "138723", + value = "helm_leather_raiddruid_b_01_drm.m2", + text = "helm_leather_raiddruid_b_01_drm.m2", + }, + { + fileId = "138724", + value = "helm_leather_raiddruid_b_01_dwf.m2", + text = "helm_leather_raiddruid_b_01_dwf.m2", + }, + { + fileId = "138725", + value = "helm_leather_raiddruid_b_01_dwm.m2", + text = "helm_leather_raiddruid_b_01_dwm.m2", + }, + { + fileId = "138726", + value = "helm_leather_raiddruid_b_01_gnf.m2", + text = "helm_leather_raiddruid_b_01_gnf.m2", + }, + { + fileId = "138727", + value = "helm_leather_raiddruid_b_01_gnm.m2", + text = "helm_leather_raiddruid_b_01_gnm.m2", + }, + { + fileId = "138728", + value = "helm_leather_raiddruid_b_01_gof.m2", + text = "helm_leather_raiddruid_b_01_gof.m2", + }, + { + fileId = "138729", + value = "helm_leather_raiddruid_b_01_gom.m2", + text = "helm_leather_raiddruid_b_01_gom.m2", + }, + { + fileId = "138730", + value = "helm_leather_raiddruid_b_01_huf.m2", + text = "helm_leather_raiddruid_b_01_huf.m2", + }, + { + fileId = "138731", + value = "helm_leather_raiddruid_b_01_hum.m2", + text = "helm_leather_raiddruid_b_01_hum.m2", + }, + { + fileId = "138732", + value = "helm_leather_raiddruid_b_01_nif.m2", + text = "helm_leather_raiddruid_b_01_nif.m2", + }, + { + fileId = "138733", + value = "helm_leather_raiddruid_b_01_nim.m2", + text = "helm_leather_raiddruid_b_01_nim.m2", + }, + { + fileId = "138734", + value = "helm_leather_raiddruid_b_01_orf.m2", + text = "helm_leather_raiddruid_b_01_orf.m2", + }, + { + fileId = "138735", + value = "helm_leather_raiddruid_b_01_orm.m2", + text = "helm_leather_raiddruid_b_01_orm.m2", + }, + { + fileId = "138736", + value = "helm_leather_raiddruid_b_01_scf.m2", + text = "helm_leather_raiddruid_b_01_scf.m2", + }, + { + fileId = "138737", + value = "helm_leather_raiddruid_b_01_scm.m2", + text = "helm_leather_raiddruid_b_01_scm.m2", + }, + { + fileId = "138738", + value = "helm_leather_raiddruid_b_01_taf.m2", + text = "helm_leather_raiddruid_b_01_taf.m2", + }, + { + fileId = "138739", + value = "helm_leather_raiddruid_b_01_tam.m2", + text = "helm_leather_raiddruid_b_01_tam.m2", + }, + { + fileId = "138740", + value = "helm_leather_raiddruid_b_01_trf.m2", + text = "helm_leather_raiddruid_b_01_trf.m2", + }, + { + fileId = "138741", + value = "helm_leather_raiddruid_b_01_trm.m2", + text = "helm_leather_raiddruid_b_01_trm.m2", + }, + { + fileId = "138746", + value = "helm_leather_raiddruid_c_01_bef.m2", + text = "helm_leather_raiddruid_c_01_bef.m2", + }, + { + fileId = "138747", + value = "helm_leather_raiddruid_c_01_bem.m2", + text = "helm_leather_raiddruid_c_01_bem.m2", + }, + { + fileId = "138748", + value = "helm_leather_raiddruid_c_01_drf.m2", + text = "helm_leather_raiddruid_c_01_drf.m2", + }, + { + fileId = "138749", + value = "helm_leather_raiddruid_c_01_drm.m2", + text = "helm_leather_raiddruid_c_01_drm.m2", + }, + { + fileId = "138750", + value = "helm_leather_raiddruid_c_01_dwf.m2", + text = "helm_leather_raiddruid_c_01_dwf.m2", + }, + { + fileId = "138751", + value = "helm_leather_raiddruid_c_01_dwm.m2", + text = "helm_leather_raiddruid_c_01_dwm.m2", + }, + { + fileId = "138752", + value = "helm_leather_raiddruid_c_01_gnf.m2", + text = "helm_leather_raiddruid_c_01_gnf.m2", + }, + { + fileId = "138753", + value = "helm_leather_raiddruid_c_01_gnm.m2", + text = "helm_leather_raiddruid_c_01_gnm.m2", + }, + { + fileId = "138754", + value = "helm_leather_raiddruid_c_01_gof.m2", + text = "helm_leather_raiddruid_c_01_gof.m2", + }, + { + fileId = "138755", + value = "helm_leather_raiddruid_c_01_gom.m2", + text = "helm_leather_raiddruid_c_01_gom.m2", + }, + { + fileId = "138756", + value = "helm_leather_raiddruid_c_01_huf.m2", + text = "helm_leather_raiddruid_c_01_huf.m2", + }, + { + fileId = "138757", + value = "helm_leather_raiddruid_c_01_hum.m2", + text = "helm_leather_raiddruid_c_01_hum.m2", + }, + { + fileId = "138758", + value = "helm_leather_raiddruid_c_01_nif.m2", + text = "helm_leather_raiddruid_c_01_nif.m2", + }, + { + fileId = "138759", + value = "helm_leather_raiddruid_c_01_nim.m2", + text = "helm_leather_raiddruid_c_01_nim.m2", + }, + { + fileId = "138760", + value = "helm_leather_raiddruid_c_01_orf.m2", + text = "helm_leather_raiddruid_c_01_orf.m2", + }, + { + fileId = "138761", + value = "helm_leather_raiddruid_c_01_orm.m2", + text = "helm_leather_raiddruid_c_01_orm.m2", + }, + { + fileId = "138762", + value = "helm_leather_raiddruid_c_01_scf.m2", + text = "helm_leather_raiddruid_c_01_scf.m2", + }, + { + fileId = "138763", + value = "helm_leather_raiddruid_c_01_scm.m2", + text = "helm_leather_raiddruid_c_01_scm.m2", + }, + { + fileId = "138764", + value = "helm_leather_raiddruid_c_01_taf.m2", + text = "helm_leather_raiddruid_c_01_taf.m2", + }, + { + fileId = "138765", + value = "helm_leather_raiddruid_c_01_tam.m2", + text = "helm_leather_raiddruid_c_01_tam.m2", + }, + { + fileId = "138766", + value = "helm_leather_raiddruid_c_01_trf.m2", + text = "helm_leather_raiddruid_c_01_trf.m2", + }, + { + fileId = "138767", + value = "helm_leather_raiddruid_c_01_trm.m2", + text = "helm_leather_raiddruid_c_01_trm.m2", + }, + { + fileId = "138769", + value = "helm_leather_raiddruid_d_01_bef.m2", + text = "helm_leather_raiddruid_d_01_bef.m2", + }, + { + fileId = "138770", + value = "helm_leather_raiddruid_d_01_bem.m2", + text = "helm_leather_raiddruid_d_01_bem.m2", + }, + { + fileId = "138771", + value = "helm_leather_raiddruid_d_01_drf.m2", + text = "helm_leather_raiddruid_d_01_drf.m2", + }, + { + fileId = "138772", + value = "helm_leather_raiddruid_d_01_drm.m2", + text = "helm_leather_raiddruid_d_01_drm.m2", + }, + { + fileId = "138773", + value = "helm_leather_raiddruid_d_01_dwf.m2", + text = "helm_leather_raiddruid_d_01_dwf.m2", + }, + { + fileId = "138774", + value = "helm_leather_raiddruid_d_01_dwm.m2", + text = "helm_leather_raiddruid_d_01_dwm.m2", + }, + { + fileId = "138775", + value = "helm_leather_raiddruid_d_01_gnf.m2", + text = "helm_leather_raiddruid_d_01_gnf.m2", + }, + { + fileId = "138776", + value = "helm_leather_raiddruid_d_01_gnm.m2", + text = "helm_leather_raiddruid_d_01_gnm.m2", + }, + { + fileId = "138777", + value = "helm_leather_raiddruid_d_01_huf.m2", + text = "helm_leather_raiddruid_d_01_huf.m2", + }, + { + fileId = "138778", + value = "helm_leather_raiddruid_d_01_hum.m2", + text = "helm_leather_raiddruid_d_01_hum.m2", + }, + { + fileId = "138779", + value = "helm_leather_raiddruid_d_01_nif.m2", + text = "helm_leather_raiddruid_d_01_nif.m2", + }, + { + fileId = "138780", + value = "helm_leather_raiddruid_d_01_nim.m2", + text = "helm_leather_raiddruid_d_01_nim.m2", + }, + { + fileId = "138781", + value = "helm_leather_raiddruid_d_01_orf.m2", + text = "helm_leather_raiddruid_d_01_orf.m2", + }, + { + fileId = "138782", + value = "helm_leather_raiddruid_d_01_orm.m2", + text = "helm_leather_raiddruid_d_01_orm.m2", + }, + { + fileId = "138783", + value = "helm_leather_raiddruid_d_01_scf.m2", + text = "helm_leather_raiddruid_d_01_scf.m2", + }, + { + fileId = "138784", + value = "helm_leather_raiddruid_d_01_scm.m2", + text = "helm_leather_raiddruid_d_01_scm.m2", + }, + { + fileId = "138785", + value = "helm_leather_raiddruid_d_01_taf.m2", + text = "helm_leather_raiddruid_d_01_taf.m2", + }, + { + fileId = "138786", + value = "helm_leather_raiddruid_d_01_tam.m2", + text = "helm_leather_raiddruid_d_01_tam.m2", + }, + { + fileId = "138787", + value = "helm_leather_raiddruid_d_01_trf.m2", + text = "helm_leather_raiddruid_d_01_trf.m2", + }, + { + fileId = "138788", + value = "helm_leather_raiddruid_d_01_trm.m2", + text = "helm_leather_raiddruid_d_01_trm.m2", + }, + { + fileId = "138791", + value = "helm_leather_raiddruid_e_01_bef.m2", + text = "helm_leather_raiddruid_e_01_bef.m2", + }, + { + fileId = "138792", + value = "helm_leather_raiddruid_e_01_bem.m2", + text = "helm_leather_raiddruid_e_01_bem.m2", + }, + { + fileId = "138793", + value = "helm_leather_raiddruid_e_01_drf.m2", + text = "helm_leather_raiddruid_e_01_drf.m2", + }, + { + fileId = "138794", + value = "helm_leather_raiddruid_e_01_drm.m2", + text = "helm_leather_raiddruid_e_01_drm.m2", + }, + { + fileId = "138795", + value = "helm_leather_raiddruid_e_01_dwf.m2", + text = "helm_leather_raiddruid_e_01_dwf.m2", + }, + { + fileId = "138796", + value = "helm_leather_raiddruid_e_01_dwm.m2", + text = "helm_leather_raiddruid_e_01_dwm.m2", + }, + { + fileId = "138797", + value = "helm_leather_raiddruid_e_01_gnf.m2", + text = "helm_leather_raiddruid_e_01_gnf.m2", + }, + { + fileId = "138798", + value = "helm_leather_raiddruid_e_01_gnm.m2", + text = "helm_leather_raiddruid_e_01_gnm.m2", + }, + { + fileId = "138799", + value = "helm_leather_raiddruid_e_01_gof.m2", + text = "helm_leather_raiddruid_e_01_gof.m2", + }, + { + fileId = "138800", + value = "helm_leather_raiddruid_e_01_gom.m2", + text = "helm_leather_raiddruid_e_01_gom.m2", + }, + { + fileId = "138801", + value = "helm_leather_raiddruid_e_01_huf.m2", + text = "helm_leather_raiddruid_e_01_huf.m2", + }, + { + fileId = "138802", + value = "helm_leather_raiddruid_e_01_hum.m2", + text = "helm_leather_raiddruid_e_01_hum.m2", + }, + { + fileId = "138803", + value = "helm_leather_raiddruid_e_01_nif.m2", + text = "helm_leather_raiddruid_e_01_nif.m2", + }, + { + fileId = "138804", + value = "helm_leather_raiddruid_e_01_nim.m2", + text = "helm_leather_raiddruid_e_01_nim.m2", + }, + { + fileId = "138805", + value = "helm_leather_raiddruid_e_01_orf.m2", + text = "helm_leather_raiddruid_e_01_orf.m2", + }, + { + fileId = "138806", + value = "helm_leather_raiddruid_e_01_orm.m2", + text = "helm_leather_raiddruid_e_01_orm.m2", + }, + { + fileId = "138807", + value = "helm_leather_raiddruid_e_01_scf.m2", + text = "helm_leather_raiddruid_e_01_scf.m2", + }, + { + fileId = "138808", + value = "helm_leather_raiddruid_e_01_scm.m2", + text = "helm_leather_raiddruid_e_01_scm.m2", + }, + { + fileId = "138809", + value = "helm_leather_raiddruid_e_01_taf.m2", + text = "helm_leather_raiddruid_e_01_taf.m2", + }, + { + fileId = "138810", + value = "helm_leather_raiddruid_e_01_tam.m2", + text = "helm_leather_raiddruid_e_01_tam.m2", + }, + { + fileId = "138811", + value = "helm_leather_raiddruid_e_01_trf.m2", + text = "helm_leather_raiddruid_e_01_trf.m2", + }, + { + fileId = "138812", + value = "helm_leather_raiddruid_e_01_trm.m2", + text = "helm_leather_raiddruid_e_01_trm.m2", + }, + { + fileId = "138816", + value = "helm_leather_raiddruid_f_01_bef.m2", + text = "helm_leather_raiddruid_f_01_bef.m2", + }, + { + fileId = "138817", + value = "helm_leather_raiddruid_f_01_bem.m2", + text = "helm_leather_raiddruid_f_01_bem.m2", + }, + { + fileId = "138818", + value = "helm_leather_raiddruid_f_01_drf.m2", + text = "helm_leather_raiddruid_f_01_drf.m2", + }, + { + fileId = "138819", + value = "helm_leather_raiddruid_f_01_drm.m2", + text = "helm_leather_raiddruid_f_01_drm.m2", + }, + { + fileId = "138820", + value = "helm_leather_raiddruid_f_01_dwf.m2", + text = "helm_leather_raiddruid_f_01_dwf.m2", + }, + { + fileId = "138821", + value = "helm_leather_raiddruid_f_01_dwm.m2", + text = "helm_leather_raiddruid_f_01_dwm.m2", + }, + { + fileId = "138822", + value = "helm_leather_raiddruid_f_01_gnf.m2", + text = "helm_leather_raiddruid_f_01_gnf.m2", + }, + { + fileId = "138823", + value = "helm_leather_raiddruid_f_01_gnm.m2", + text = "helm_leather_raiddruid_f_01_gnm.m2", + }, + { + fileId = "138824", + value = "helm_leather_raiddruid_f_01_gof.m2", + text = "helm_leather_raiddruid_f_01_gof.m2", + }, + { + fileId = "138825", + value = "helm_leather_raiddruid_f_01_gom.m2", + text = "helm_leather_raiddruid_f_01_gom.m2", + }, + { + fileId = "138826", + value = "helm_leather_raiddruid_f_01_huf.m2", + text = "helm_leather_raiddruid_f_01_huf.m2", + }, + { + fileId = "138827", + value = "helm_leather_raiddruid_f_01_hum.m2", + text = "helm_leather_raiddruid_f_01_hum.m2", + }, + { + fileId = "138828", + value = "helm_leather_raiddruid_f_01_nif.m2", + text = "helm_leather_raiddruid_f_01_nif.m2", + }, + { + fileId = "138829", + value = "helm_leather_raiddruid_f_01_nim.m2", + text = "helm_leather_raiddruid_f_01_nim.m2", + }, + { + fileId = "138830", + value = "helm_leather_raiddruid_f_01_orf.m2", + text = "helm_leather_raiddruid_f_01_orf.m2", + }, + { + fileId = "138831", + value = "helm_leather_raiddruid_f_01_orm.m2", + text = "helm_leather_raiddruid_f_01_orm.m2", + }, + { + fileId = "138832", + value = "helm_leather_raiddruid_f_01_scf.m2", + text = "helm_leather_raiddruid_f_01_scf.m2", + }, + { + fileId = "138833", + value = "helm_leather_raiddruid_f_01_scm.m2", + text = "helm_leather_raiddruid_f_01_scm.m2", + }, + { + fileId = "138834", + value = "helm_leather_raiddruid_f_01_taf.m2", + text = "helm_leather_raiddruid_f_01_taf.m2", + }, + { + fileId = "138835", + value = "helm_leather_raiddruid_f_01_tam.m2", + text = "helm_leather_raiddruid_f_01_tam.m2", + }, + { + fileId = "138836", + value = "helm_leather_raiddruid_f_01_trf.m2", + text = "helm_leather_raiddruid_f_01_trf.m2", + }, + { + fileId = "138837", + value = "helm_leather_raiddruid_f_01_trm.m2", + text = "helm_leather_raiddruid_f_01_trm.m2", + }, + { + fileId = "138842", + value = "helm_leather_raidrogue_a_01_bef.m2", + text = "helm_leather_raidrogue_a_01_bef.m2", + }, + { + fileId = "138843", + value = "helm_leather_raidrogue_a_01_bem.m2", + text = "helm_leather_raidrogue_a_01_bem.m2", + }, + { + fileId = "138844", + value = "helm_leather_raidrogue_a_01_drf.m2", + text = "helm_leather_raidrogue_a_01_drf.m2", + }, + { + fileId = "138845", + value = "helm_leather_raidrogue_a_01_drm.m2", + text = "helm_leather_raidrogue_a_01_drm.m2", + }, + { + fileId = "138846", + value = "helm_leather_raidrogue_a_01_dwf.m2", + text = "helm_leather_raidrogue_a_01_dwf.m2", + }, + { + fileId = "138847", + value = "helm_leather_raidrogue_a_01_dwm.m2", + text = "helm_leather_raidrogue_a_01_dwm.m2", + }, + { + fileId = "138848", + value = "helm_leather_raidrogue_a_01_gnf.m2", + text = "helm_leather_raidrogue_a_01_gnf.m2", + }, + { + fileId = "138849", + value = "helm_leather_raidrogue_a_01_gnm.m2", + text = "helm_leather_raidrogue_a_01_gnm.m2", + }, + { + fileId = "138850", + value = "helm_leather_raidrogue_a_01_gof.m2", + text = "helm_leather_raidrogue_a_01_gof.m2", + }, + { + fileId = "138851", + value = "helm_leather_raidrogue_a_01_gom.m2", + text = "helm_leather_raidrogue_a_01_gom.m2", + }, + { + fileId = "138852", + value = "helm_leather_raidrogue_a_01_huf.m2", + text = "helm_leather_raidrogue_a_01_huf.m2", + }, + { + fileId = "138853", + value = "helm_leather_raidrogue_a_01_hum.m2", + text = "helm_leather_raidrogue_a_01_hum.m2", + }, + { + fileId = "138854", + value = "helm_leather_raidrogue_a_01_nif.m2", + text = "helm_leather_raidrogue_a_01_nif.m2", + }, + { + fileId = "138855", + value = "helm_leather_raidrogue_a_01_nim.m2", + text = "helm_leather_raidrogue_a_01_nim.m2", + }, + { + fileId = "138856", + value = "helm_leather_raidrogue_a_01_orf.m2", + text = "helm_leather_raidrogue_a_01_orf.m2", + }, + { + fileId = "138857", + value = "helm_leather_raidrogue_a_01_orm.m2", + text = "helm_leather_raidrogue_a_01_orm.m2", + }, + { + fileId = "138858", + value = "helm_leather_raidrogue_a_01_scf.m2", + text = "helm_leather_raidrogue_a_01_scf.m2", + }, + { + fileId = "138859", + value = "helm_leather_raidrogue_a_01_scm.m2", + text = "helm_leather_raidrogue_a_01_scm.m2", + }, + { + fileId = "138860", + value = "helm_leather_raidrogue_a_01_taf.m2", + text = "helm_leather_raidrogue_a_01_taf.m2", + }, + { + fileId = "138861", + value = "helm_leather_raidrogue_a_01_tam.m2", + text = "helm_leather_raidrogue_a_01_tam.m2", + }, + { + fileId = "138862", + value = "helm_leather_raidrogue_a_01_trf.m2", + text = "helm_leather_raidrogue_a_01_trf.m2", + }, + { + fileId = "138863", + value = "helm_leather_raidrogue_a_01_trm.m2", + text = "helm_leather_raidrogue_a_01_trm.m2", + }, + { + fileId = "138867", + value = "helm_leather_raidrogue_b_01_bef.m2", + text = "helm_leather_raidrogue_b_01_bef.m2", + }, + { + fileId = "138868", + value = "helm_leather_raidrogue_b_01_bem.m2", + text = "helm_leather_raidrogue_b_01_bem.m2", + }, + { + fileId = "138869", + value = "helm_leather_raidrogue_b_01_drf.m2", + text = "helm_leather_raidrogue_b_01_drf.m2", + }, + { + fileId = "138870", + value = "helm_leather_raidrogue_b_01_drm.m2", + text = "helm_leather_raidrogue_b_01_drm.m2", + }, + { + fileId = "138871", + value = "helm_leather_raidrogue_b_01_dwf.m2", + text = "helm_leather_raidrogue_b_01_dwf.m2", + }, + { + fileId = "138872", + value = "helm_leather_raidrogue_b_01_dwm.m2", + text = "helm_leather_raidrogue_b_01_dwm.m2", + }, + { + fileId = "138873", + value = "helm_leather_raidrogue_b_01_gnf.m2", + text = "helm_leather_raidrogue_b_01_gnf.m2", + }, + { + fileId = "138874", + value = "helm_leather_raidrogue_b_01_gnm.m2", + text = "helm_leather_raidrogue_b_01_gnm.m2", + }, + { + fileId = "138875", + value = "helm_leather_raidrogue_b_01_gof.m2", + text = "helm_leather_raidrogue_b_01_gof.m2", + }, + { + fileId = "138876", + value = "helm_leather_raidrogue_b_01_gom.m2", + text = "helm_leather_raidrogue_b_01_gom.m2", + }, + { + fileId = "138877", + value = "helm_leather_raidrogue_b_01_huf.m2", + text = "helm_leather_raidrogue_b_01_huf.m2", + }, + { + fileId = "138878", + value = "helm_leather_raidrogue_b_01_hum.m2", + text = "helm_leather_raidrogue_b_01_hum.m2", + }, + { + fileId = "138879", + value = "helm_leather_raidrogue_b_01_nif.m2", + text = "helm_leather_raidrogue_b_01_nif.m2", + }, + { + fileId = "138880", + value = "helm_leather_raidrogue_b_01_nim.m2", + text = "helm_leather_raidrogue_b_01_nim.m2", + }, + { + fileId = "138881", + value = "helm_leather_raidrogue_b_01_orf.m2", + text = "helm_leather_raidrogue_b_01_orf.m2", + }, + { + fileId = "138882", + value = "helm_leather_raidrogue_b_01_orm.m2", + text = "helm_leather_raidrogue_b_01_orm.m2", + }, + { + fileId = "138883", + value = "helm_leather_raidrogue_b_01_scf.m2", + text = "helm_leather_raidrogue_b_01_scf.m2", + }, + { + fileId = "138884", + value = "helm_leather_raidrogue_b_01_scm.m2", + text = "helm_leather_raidrogue_b_01_scm.m2", + }, + { + fileId = "138885", + value = "helm_leather_raidrogue_b_01_taf.m2", + text = "helm_leather_raidrogue_b_01_taf.m2", + }, + { + fileId = "138886", + value = "helm_leather_raidrogue_b_01_tam.m2", + text = "helm_leather_raidrogue_b_01_tam.m2", + }, + { + fileId = "138887", + value = "helm_leather_raidrogue_b_01_trf.m2", + text = "helm_leather_raidrogue_b_01_trf.m2", + }, + { + fileId = "138888", + value = "helm_leather_raidrogue_b_01_trm.m2", + text = "helm_leather_raidrogue_b_01_trm.m2", + }, + { + fileId = "138893", + value = "helm_leather_raidrogue_c_01_bef.m2", + text = "helm_leather_raidrogue_c_01_bef.m2", + }, + { + fileId = "138894", + value = "helm_leather_raidrogue_c_01_bem.m2", + text = "helm_leather_raidrogue_c_01_bem.m2", + }, + { + fileId = "138895", + value = "helm_leather_raidrogue_c_01_drf.m2", + text = "helm_leather_raidrogue_c_01_drf.m2", + }, + { + fileId = "138896", + value = "helm_leather_raidrogue_c_01_drm.m2", + text = "helm_leather_raidrogue_c_01_drm.m2", + }, + { + fileId = "138897", + value = "helm_leather_raidrogue_c_01_dwf.m2", + text = "helm_leather_raidrogue_c_01_dwf.m2", + }, + { + fileId = "138898", + value = "helm_leather_raidrogue_c_01_dwm.m2", + text = "helm_leather_raidrogue_c_01_dwm.m2", + }, + { + fileId = "138899", + value = "helm_leather_raidrogue_c_01_gnf.m2", + text = "helm_leather_raidrogue_c_01_gnf.m2", + }, + { + fileId = "138900", + value = "helm_leather_raidrogue_c_01_gnm.m2", + text = "helm_leather_raidrogue_c_01_gnm.m2", + }, + { + fileId = "138901", + value = "helm_leather_raidrogue_c_01_gof.m2", + text = "helm_leather_raidrogue_c_01_gof.m2", + }, + { + fileId = "138902", + value = "helm_leather_raidrogue_c_01_gom.m2", + text = "helm_leather_raidrogue_c_01_gom.m2", + }, + { + fileId = "138903", + value = "helm_leather_raidrogue_c_01_huf.m2", + text = "helm_leather_raidrogue_c_01_huf.m2", + }, + { + fileId = "138904", + value = "helm_leather_raidrogue_c_01_hum.m2", + text = "helm_leather_raidrogue_c_01_hum.m2", + }, + { + fileId = "138905", + value = "helm_leather_raidrogue_c_01_nif.m2", + text = "helm_leather_raidrogue_c_01_nif.m2", + }, + { + fileId = "138906", + value = "helm_leather_raidrogue_c_01_nim.m2", + text = "helm_leather_raidrogue_c_01_nim.m2", + }, + { + fileId = "138907", + value = "helm_leather_raidrogue_c_01_orf.m2", + text = "helm_leather_raidrogue_c_01_orf.m2", + }, + { + fileId = "138908", + value = "helm_leather_raidrogue_c_01_orm.m2", + text = "helm_leather_raidrogue_c_01_orm.m2", + }, + { + fileId = "138909", + value = "helm_leather_raidrogue_c_01_scf.m2", + text = "helm_leather_raidrogue_c_01_scf.m2", + }, + { + fileId = "138910", + value = "helm_leather_raidrogue_c_01_scm.m2", + text = "helm_leather_raidrogue_c_01_scm.m2", + }, + { + fileId = "138911", + value = "helm_leather_raidrogue_c_01_taf.m2", + text = "helm_leather_raidrogue_c_01_taf.m2", + }, + { + fileId = "138912", + value = "helm_leather_raidrogue_c_01_tam.m2", + text = "helm_leather_raidrogue_c_01_tam.m2", + }, + { + fileId = "138913", + value = "helm_leather_raidrogue_c_01_trf.m2", + text = "helm_leather_raidrogue_c_01_trf.m2", + }, + { + fileId = "138914", + value = "helm_leather_raidrogue_c_01_trm.m2", + text = "helm_leather_raidrogue_c_01_trm.m2", + }, + { + fileId = "138918", + value = "helm_leather_raidrogue_d_01_bef.m2", + text = "helm_leather_raidrogue_d_01_bef.m2", + }, + { + fileId = "138919", + value = "helm_leather_raidrogue_d_01_bem.m2", + text = "helm_leather_raidrogue_d_01_bem.m2", + }, + { + fileId = "138920", + value = "helm_leather_raidrogue_d_01_drf.m2", + text = "helm_leather_raidrogue_d_01_drf.m2", + }, + { + fileId = "138921", + value = "helm_leather_raidrogue_d_01_drm.m2", + text = "helm_leather_raidrogue_d_01_drm.m2", + }, + { + fileId = "138922", + value = "helm_leather_raidrogue_d_01_dwf.m2", + text = "helm_leather_raidrogue_d_01_dwf.m2", + }, + { + fileId = "138923", + value = "helm_leather_raidrogue_d_01_dwm.m2", + text = "helm_leather_raidrogue_d_01_dwm.m2", + }, + { + fileId = "138924", + value = "helm_leather_raidrogue_d_01_gnf.m2", + text = "helm_leather_raidrogue_d_01_gnf.m2", + }, + { + fileId = "138925", + value = "helm_leather_raidrogue_d_01_gnm.m2", + text = "helm_leather_raidrogue_d_01_gnm.m2", + }, + { + fileId = "138926", + value = "helm_leather_raidrogue_d_01_gof.m2", + text = "helm_leather_raidrogue_d_01_gof.m2", + }, + { + fileId = "138927", + value = "helm_leather_raidrogue_d_01_gom.m2", + text = "helm_leather_raidrogue_d_01_gom.m2", + }, + { + fileId = "138928", + value = "helm_leather_raidrogue_d_01_huf.m2", + text = "helm_leather_raidrogue_d_01_huf.m2", + }, + { + fileId = "138929", + value = "helm_leather_raidrogue_d_01_hum.m2", + text = "helm_leather_raidrogue_d_01_hum.m2", + }, + { + fileId = "138930", + value = "helm_leather_raidrogue_d_01_nif.m2", + text = "helm_leather_raidrogue_d_01_nif.m2", + }, + { + fileId = "138931", + value = "helm_leather_raidrogue_d_01_nim.m2", + text = "helm_leather_raidrogue_d_01_nim.m2", + }, + { + fileId = "138932", + value = "helm_leather_raidrogue_d_01_orf.m2", + text = "helm_leather_raidrogue_d_01_orf.m2", + }, + { + fileId = "138933", + value = "helm_leather_raidrogue_d_01_orm.m2", + text = "helm_leather_raidrogue_d_01_orm.m2", + }, + { + fileId = "138934", + value = "helm_leather_raidrogue_d_01_scf.m2", + text = "helm_leather_raidrogue_d_01_scf.m2", + }, + { + fileId = "138935", + value = "helm_leather_raidrogue_d_01_scm.m2", + text = "helm_leather_raidrogue_d_01_scm.m2", + }, + { + fileId = "138936", + value = "helm_leather_raidrogue_d_01_taf.m2", + text = "helm_leather_raidrogue_d_01_taf.m2", + }, + { + fileId = "138937", + value = "helm_leather_raidrogue_d_01_tam.m2", + text = "helm_leather_raidrogue_d_01_tam.m2", + }, + { + fileId = "138938", + value = "helm_leather_raidrogue_d_01_trf.m2", + text = "helm_leather_raidrogue_d_01_trf.m2", + }, + { + fileId = "138939", + value = "helm_leather_raidrogue_d_01_trm.m2", + text = "helm_leather_raidrogue_d_01_trm.m2", + }, + { + fileId = "138941", + value = "helm_leather_raidrogue_e_01_bef.m2", + text = "helm_leather_raidrogue_e_01_bef.m2", + }, + { + fileId = "138942", + value = "helm_leather_raidrogue_e_01_bem.m2", + text = "helm_leather_raidrogue_e_01_bem.m2", + }, + { + fileId = "138943", + value = "helm_leather_raidrogue_e_01_drf.m2", + text = "helm_leather_raidrogue_e_01_drf.m2", + }, + { + fileId = "138944", + value = "helm_leather_raidrogue_e_01_drm.m2", + text = "helm_leather_raidrogue_e_01_drm.m2", + }, + { + fileId = "138945", + value = "helm_leather_raidrogue_e_01_dwf.m2", + text = "helm_leather_raidrogue_e_01_dwf.m2", + }, + { + fileId = "138946", + value = "helm_leather_raidrogue_e_01_dwm.m2", + text = "helm_leather_raidrogue_e_01_dwm.m2", + }, + { + fileId = "138947", + value = "helm_leather_raidrogue_e_01_gnf.m2", + text = "helm_leather_raidrogue_e_01_gnf.m2", + }, + { + fileId = "138948", + value = "helm_leather_raidrogue_e_01_gnm.m2", + text = "helm_leather_raidrogue_e_01_gnm.m2", + }, + { + fileId = "138949", + value = "helm_leather_raidrogue_e_01_gof.m2", + text = "helm_leather_raidrogue_e_01_gof.m2", + }, + { + fileId = "138950", + value = "helm_leather_raidrogue_e_01_gom.m2", + text = "helm_leather_raidrogue_e_01_gom.m2", + }, + { + fileId = "138951", + value = "helm_leather_raidrogue_e_01_huf.m2", + text = "helm_leather_raidrogue_e_01_huf.m2", + }, + { + fileId = "138952", + value = "helm_leather_raidrogue_e_01_hum.m2", + text = "helm_leather_raidrogue_e_01_hum.m2", + }, + { + fileId = "138953", + value = "helm_leather_raidrogue_e_01_nif.m2", + text = "helm_leather_raidrogue_e_01_nif.m2", + }, + { + fileId = "138954", + value = "helm_leather_raidrogue_e_01_nim.m2", + text = "helm_leather_raidrogue_e_01_nim.m2", + }, + { + fileId = "138955", + value = "helm_leather_raidrogue_e_01_orf.m2", + text = "helm_leather_raidrogue_e_01_orf.m2", + }, + { + fileId = "138956", + value = "helm_leather_raidrogue_e_01_orm.m2", + text = "helm_leather_raidrogue_e_01_orm.m2", + }, + { + fileId = "138957", + value = "helm_leather_raidrogue_e_01_scf.m2", + text = "helm_leather_raidrogue_e_01_scf.m2", + }, + { + fileId = "138958", + value = "helm_leather_raidrogue_e_01_scm.m2", + text = "helm_leather_raidrogue_e_01_scm.m2", + }, + { + fileId = "138959", + value = "helm_leather_raidrogue_e_01_taf.m2", + text = "helm_leather_raidrogue_e_01_taf.m2", + }, + { + fileId = "138960", + value = "helm_leather_raidrogue_e_01_tam.m2", + text = "helm_leather_raidrogue_e_01_tam.m2", + }, + { + fileId = "138961", + value = "helm_leather_raidrogue_e_01_trf.m2", + text = "helm_leather_raidrogue_e_01_trf.m2", + }, + { + fileId = "138962", + value = "helm_leather_raidrogue_e_01_trm.m2", + text = "helm_leather_raidrogue_e_01_trm.m2", + }, + { + fileId = "138967", + value = "helm_leather_raidrogue_f_01_bef.m2", + text = "helm_leather_raidrogue_f_01_bef.m2", + }, + { + fileId = "138968", + value = "helm_leather_raidrogue_f_01_bem.m2", + text = "helm_leather_raidrogue_f_01_bem.m2", + }, + { + fileId = "138969", + value = "helm_leather_raidrogue_f_01_drf.m2", + text = "helm_leather_raidrogue_f_01_drf.m2", + }, + { + fileId = "138970", + value = "helm_leather_raidrogue_f_01_drm.m2", + text = "helm_leather_raidrogue_f_01_drm.m2", + }, + { + fileId = "138971", + value = "helm_leather_raidrogue_f_01_dwf.m2", + text = "helm_leather_raidrogue_f_01_dwf.m2", + }, + { + fileId = "138972", + value = "helm_leather_raidrogue_f_01_dwm.m2", + text = "helm_leather_raidrogue_f_01_dwm.m2", + }, + { + fileId = "138973", + value = "helm_leather_raidrogue_f_01_gnf.m2", + text = "helm_leather_raidrogue_f_01_gnf.m2", + }, + { + fileId = "138974", + value = "helm_leather_raidrogue_f_01_gnm.m2", + text = "helm_leather_raidrogue_f_01_gnm.m2", + }, + { + fileId = "138975", + value = "helm_leather_raidrogue_f_01_gom.m2", + text = "helm_leather_raidrogue_f_01_gom.m2", + }, + { + fileId = "138976", + value = "helm_leather_raidrogue_f_01_huf.m2", + text = "helm_leather_raidrogue_f_01_huf.m2", + }, + { + fileId = "138977", + value = "helm_leather_raidrogue_f_01_hum.m2", + text = "helm_leather_raidrogue_f_01_hum.m2", + }, + { + fileId = "138978", + value = "helm_leather_raidrogue_f_01_nif.m2", + text = "helm_leather_raidrogue_f_01_nif.m2", + }, + { + fileId = "138979", + value = "helm_leather_raidrogue_f_01_nim.m2", + text = "helm_leather_raidrogue_f_01_nim.m2", + }, + { + fileId = "138980", + value = "helm_leather_raidrogue_f_01_orf.m2", + text = "helm_leather_raidrogue_f_01_orf.m2", + }, + { + fileId = "138981", + value = "helm_leather_raidrogue_f_01_orm.m2", + text = "helm_leather_raidrogue_f_01_orm.m2", + }, + { + fileId = "138982", + value = "helm_leather_raidrogue_f_01_scf.m2", + text = "helm_leather_raidrogue_f_01_scf.m2", + }, + { + fileId = "138983", + value = "helm_leather_raidrogue_f_01_scm.m2", + text = "helm_leather_raidrogue_f_01_scm.m2", + }, + { + fileId = "138984", + value = "helm_leather_raidrogue_f_01_taf.m2", + text = "helm_leather_raidrogue_f_01_taf.m2", + }, + { + fileId = "138985", + value = "helm_leather_raidrogue_f_01_tam.m2", + text = "helm_leather_raidrogue_f_01_tam.m2", + }, + { + fileId = "138986", + value = "helm_leather_raidrogue_f_01_trf.m2", + text = "helm_leather_raidrogue_f_01_trf.m2", + }, + { + fileId = "138987", + value = "helm_leather_raidrogue_f_01_trm.m2", + text = "helm_leather_raidrogue_f_01_trm.m2", + }, + { + fileId = "139018", + value = "helm_leather_sunwell_d_01_bef.m2", + text = "helm_leather_sunwell_d_01_bef.m2", + }, + { + fileId = "139019", + value = "helm_leather_sunwell_d_01_bem.m2", + text = "helm_leather_sunwell_d_01_bem.m2", + }, + { + fileId = "139020", + value = "helm_leather_sunwell_d_01_drf.m2", + text = "helm_leather_sunwell_d_01_drf.m2", + }, + { + fileId = "139021", + value = "helm_leather_sunwell_d_01_drm.m2", + text = "helm_leather_sunwell_d_01_drm.m2", + }, + { + fileId = "139022", + value = "helm_leather_sunwell_d_01_dwf.m2", + text = "helm_leather_sunwell_d_01_dwf.m2", + }, + { + fileId = "139023", + value = "helm_leather_sunwell_d_01_dwm.m2", + text = "helm_leather_sunwell_d_01_dwm.m2", + }, + { + fileId = "139024", + value = "helm_leather_sunwell_d_01_gnf.m2", + text = "helm_leather_sunwell_d_01_gnf.m2", + }, + { + fileId = "139025", + value = "helm_leather_sunwell_d_01_gnm.m2", + text = "helm_leather_sunwell_d_01_gnm.m2", + }, + { + fileId = "139026", + value = "helm_leather_sunwell_d_01_gof.m2", + text = "helm_leather_sunwell_d_01_gof.m2", + }, + { + fileId = "139027", + value = "helm_leather_sunwell_d_01_gom.m2", + text = "helm_leather_sunwell_d_01_gom.m2", + }, + { + fileId = "139028", + value = "helm_leather_sunwell_d_01_huf.m2", + text = "helm_leather_sunwell_d_01_huf.m2", + }, + { + fileId = "139029", + value = "helm_leather_sunwell_d_01_hum.m2", + text = "helm_leather_sunwell_d_01_hum.m2", + }, + { + fileId = "139030", + value = "helm_leather_sunwell_d_01_nif.m2", + text = "helm_leather_sunwell_d_01_nif.m2", + }, + { + fileId = "139031", + value = "helm_leather_sunwell_d_01_nim.m2", + text = "helm_leather_sunwell_d_01_nim.m2", + }, + { + fileId = "139032", + value = "helm_leather_sunwell_d_01_orf.m2", + text = "helm_leather_sunwell_d_01_orf.m2", + }, + { + fileId = "139033", + value = "helm_leather_sunwell_d_01_orm.m2", + text = "helm_leather_sunwell_d_01_orm.m2", + }, + { + fileId = "139034", + value = "helm_leather_sunwell_d_01_scf.m2", + text = "helm_leather_sunwell_d_01_scf.m2", + }, + { + fileId = "139035", + value = "helm_leather_sunwell_d_01_scm.m2", + text = "helm_leather_sunwell_d_01_scm.m2", + }, + { + fileId = "139036", + value = "helm_leather_sunwell_d_01_taf.m2", + text = "helm_leather_sunwell_d_01_taf.m2", + }, + { + fileId = "139037", + value = "helm_leather_sunwell_d_01_tam.m2", + text = "helm_leather_sunwell_d_01_tam.m2", + }, + { + fileId = "139038", + value = "helm_leather_sunwell_d_01_trf.m2", + text = "helm_leather_sunwell_d_01_trf.m2", + }, + { + fileId = "139039", + value = "helm_leather_sunwell_d_01_trm.m2", + text = "helm_leather_sunwell_d_01_trm.m2", + }, + { + fileId = "139044", + value = "helm_leather_zulaman_d_01_bef.m2", + text = "helm_leather_zulaman_d_01_bef.m2", + }, + { + fileId = "139045", + value = "helm_leather_zulaman_d_01_bem.m2", + text = "helm_leather_zulaman_d_01_bem.m2", + }, + { + fileId = "139046", + value = "helm_leather_zulaman_d_01_drf.m2", + text = "helm_leather_zulaman_d_01_drf.m2", + }, + { + fileId = "139047", + value = "helm_leather_zulaman_d_01_drm.m2", + text = "helm_leather_zulaman_d_01_drm.m2", + }, + { + fileId = "139048", + value = "helm_leather_zulaman_d_01_dwf.m2", + text = "helm_leather_zulaman_d_01_dwf.m2", + }, + { + fileId = "139049", + value = "helm_leather_zulaman_d_01_dwm.m2", + text = "helm_leather_zulaman_d_01_dwm.m2", + }, + { + fileId = "139050", + value = "helm_leather_zulaman_d_01_gnf.m2", + text = "helm_leather_zulaman_d_01_gnf.m2", + }, + { + fileId = "139051", + value = "helm_leather_zulaman_d_01_gnm.m2", + text = "helm_leather_zulaman_d_01_gnm.m2", + }, + { + fileId = "139052", + value = "helm_leather_zulaman_d_01_huf.m2", + text = "helm_leather_zulaman_d_01_huf.m2", + }, + { + fileId = "139053", + value = "helm_leather_zulaman_d_01_hum.m2", + text = "helm_leather_zulaman_d_01_hum.m2", + }, + { + fileId = "139054", + value = "helm_leather_zulaman_d_01_nif.m2", + text = "helm_leather_zulaman_d_01_nif.m2", + }, + { + fileId = "139055", + value = "helm_leather_zulaman_d_01_nim.m2", + text = "helm_leather_zulaman_d_01_nim.m2", + }, + { + fileId = "139056", + value = "helm_leather_zulaman_d_01_orf.m2", + text = "helm_leather_zulaman_d_01_orf.m2", + }, + { + fileId = "139057", + value = "helm_leather_zulaman_d_01_orm.m2", + text = "helm_leather_zulaman_d_01_orm.m2", + }, + { + fileId = "139058", + value = "helm_leather_zulaman_d_01_scf.m2", + text = "helm_leather_zulaman_d_01_scf.m2", + }, + { + fileId = "139059", + value = "helm_leather_zulaman_d_01_scm.m2", + text = "helm_leather_zulaman_d_01_scm.m2", + }, + { + fileId = "139060", + value = "helm_leather_zulaman_d_01_taf.m2", + text = "helm_leather_zulaman_d_01_taf.m2", + }, + { + fileId = "139061", + value = "helm_leather_zulaman_d_01_tam.m2", + text = "helm_leather_zulaman_d_01_tam.m2", + }, + { + fileId = "139062", + value = "helm_leather_zulaman_d_01_trf.m2", + text = "helm_leather_zulaman_d_01_trf.m2", + }, + { + fileId = "139063", + value = "helm_leather_zulaman_d_01_trm.m2", + text = "helm_leather_zulaman_d_01_trm.m2", + }, + { + fileId = "139067", + value = "helm_leather_zulaman_d_02_bef.m2", + text = "helm_leather_zulaman_d_02_bef.m2", + }, + { + fileId = "139068", + value = "helm_leather_zulaman_d_02_bem.m2", + text = "helm_leather_zulaman_d_02_bem.m2", + }, + { + fileId = "139069", + value = "helm_leather_zulaman_d_02_drf.m2", + text = "helm_leather_zulaman_d_02_drf.m2", + }, + { + fileId = "139070", + value = "helm_leather_zulaman_d_02_drm.m2", + text = "helm_leather_zulaman_d_02_drm.m2", + }, + { + fileId = "139071", + value = "helm_leather_zulaman_d_02_dwf.m2", + text = "helm_leather_zulaman_d_02_dwf.m2", + }, + { + fileId = "139072", + value = "helm_leather_zulaman_d_02_dwm.m2", + text = "helm_leather_zulaman_d_02_dwm.m2", + }, + { + fileId = "139073", + value = "helm_leather_zulaman_d_02_gnf.m2", + text = "helm_leather_zulaman_d_02_gnf.m2", + }, + { + fileId = "139074", + value = "helm_leather_zulaman_d_02_gnm.m2", + text = "helm_leather_zulaman_d_02_gnm.m2", + }, + { + fileId = "139075", + value = "helm_leather_zulaman_d_02_gof.m2", + text = "helm_leather_zulaman_d_02_gof.m2", + }, + { + fileId = "139076", + value = "helm_leather_zulaman_d_02_gom.m2", + text = "helm_leather_zulaman_d_02_gom.m2", + }, + { + fileId = "139077", + value = "helm_leather_zulaman_d_02_huf.m2", + text = "helm_leather_zulaman_d_02_huf.m2", + }, + { + fileId = "139078", + value = "helm_leather_zulaman_d_02_hum.m2", + text = "helm_leather_zulaman_d_02_hum.m2", + }, + { + fileId = "139079", + value = "helm_leather_zulaman_d_02_nif.m2", + text = "helm_leather_zulaman_d_02_nif.m2", + }, + { + fileId = "139080", + value = "helm_leather_zulaman_d_02_nim.m2", + text = "helm_leather_zulaman_d_02_nim.m2", + }, + { + fileId = "139081", + value = "helm_leather_zulaman_d_02_orf.m2", + text = "helm_leather_zulaman_d_02_orf.m2", + }, + { + fileId = "139082", + value = "helm_leather_zulaman_d_02_orm.m2", + text = "helm_leather_zulaman_d_02_orm.m2", + }, + { + fileId = "139083", + value = "helm_leather_zulaman_d_02_scf.m2", + text = "helm_leather_zulaman_d_02_scf.m2", + }, + { + fileId = "139084", + value = "helm_leather_zulaman_d_02_scm.m2", + text = "helm_leather_zulaman_d_02_scm.m2", + }, + { + fileId = "139085", + value = "helm_leather_zulaman_d_02_taf.m2", + text = "helm_leather_zulaman_d_02_taf.m2", + }, + { + fileId = "139086", + value = "helm_leather_zulaman_d_02_tam.m2", + text = "helm_leather_zulaman_d_02_tam.m2", + }, + { + fileId = "139087", + value = "helm_leather_zulaman_d_02_trf.m2", + text = "helm_leather_zulaman_d_02_trf.m2", + }, + { + fileId = "139088", + value = "helm_leather_zulaman_d_02_trm.m2", + text = "helm_leather_zulaman_d_02_trm.m2", + }, + { + fileId = "139093", + value = "helm_magic_b_01_bef.m2", + text = "helm_magic_b_01_bef.m2", + }, + { + fileId = "139094", + value = "helm_magic_b_01_bem.m2", + text = "helm_magic_b_01_bem.m2", + }, + { + fileId = "139095", + value = "helm_magic_b_01_drf.m2", + text = "helm_magic_b_01_drf.m2", + }, + { + fileId = "139096", + value = "helm_magic_b_01_drm.m2", + text = "helm_magic_b_01_drm.m2", + }, + { + fileId = "139097", + value = "helm_magic_b_01_dwf.m2", + text = "helm_magic_b_01_dwf.m2", + }, + { + fileId = "139098", + value = "helm_magic_b_01_dwm.m2", + text = "helm_magic_b_01_dwm.m2", + }, + { + fileId = "139099", + value = "helm_magic_b_01_gnf.m2", + text = "helm_magic_b_01_gnf.m2", + }, + { + fileId = "139100", + value = "helm_magic_b_01_gnm.m2", + text = "helm_magic_b_01_gnm.m2", + }, + { + fileId = "139101", + value = "helm_magic_b_01_gof.m2", + text = "helm_magic_b_01_gof.m2", + }, + { + fileId = "139102", + value = "helm_magic_b_01_gom.m2", + text = "helm_magic_b_01_gom.m2", + }, + { + fileId = "139103", + value = "helm_magic_b_01_huf.m2", + text = "helm_magic_b_01_huf.m2", + }, + { + fileId = "139104", + value = "helm_magic_b_01_hum.m2", + text = "helm_magic_b_01_hum.m2", + }, + { + fileId = "139105", + value = "helm_magic_b_01_nif.m2", + text = "helm_magic_b_01_nif.m2", + }, + { + fileId = "139106", + value = "helm_magic_b_01_nim.m2", + text = "helm_magic_b_01_nim.m2", + }, + { + fileId = "139107", + value = "helm_magic_b_01_orf.m2", + text = "helm_magic_b_01_orf.m2", + }, + { + fileId = "139108", + value = "helm_magic_b_01_orm.m2", + text = "helm_magic_b_01_orm.m2", + }, + { + fileId = "139109", + value = "helm_magic_b_01_scf.m2", + text = "helm_magic_b_01_scf.m2", + }, + { + fileId = "139110", + value = "helm_magic_b_01_scm.m2", + text = "helm_magic_b_01_scm.m2", + }, + { + fileId = "139111", + value = "helm_magic_b_01_taf.m2", + text = "helm_magic_b_01_taf.m2", + }, + { + fileId = "139112", + value = "helm_magic_b_01_tam.m2", + text = "helm_magic_b_01_tam.m2", + }, + { + fileId = "139113", + value = "helm_magic_b_01_trf.m2", + text = "helm_magic_b_01_trf.m2", + }, + { + fileId = "139114", + value = "helm_magic_b_01_trm.m2", + text = "helm_magic_b_01_trm.m2", + }, + { + fileId = "139116", + value = "helm_magic_b_02_bef.m2", + text = "helm_magic_b_02_bef.m2", + }, + { + fileId = "139117", + value = "helm_magic_b_02_bem.m2", + text = "helm_magic_b_02_bem.m2", + }, + { + fileId = "139118", + value = "helm_magic_b_02_drf.m2", + text = "helm_magic_b_02_drf.m2", + }, + { + fileId = "139119", + value = "helm_magic_b_02_drm.m2", + text = "helm_magic_b_02_drm.m2", + }, + { + fileId = "139120", + value = "helm_magic_b_02_dwf.m2", + text = "helm_magic_b_02_dwf.m2", + }, + { + fileId = "139121", + value = "helm_magic_b_02_dwm.m2", + text = "helm_magic_b_02_dwm.m2", + }, + { + fileId = "139122", + value = "helm_magic_b_02_gnf.m2", + text = "helm_magic_b_02_gnf.m2", + }, + { + fileId = "139123", + value = "helm_magic_b_02_gnm.m2", + text = "helm_magic_b_02_gnm.m2", + }, + { + fileId = "139124", + value = "helm_magic_b_02_gof.m2", + text = "helm_magic_b_02_gof.m2", + }, + { + fileId = "139125", + value = "helm_magic_b_02_gom.m2", + text = "helm_magic_b_02_gom.m2", + }, + { + fileId = "139126", + value = "helm_magic_b_02_huf.m2", + text = "helm_magic_b_02_huf.m2", + }, + { + fileId = "139127", + value = "helm_magic_b_02_hum.m2", + text = "helm_magic_b_02_hum.m2", + }, + { + fileId = "139128", + value = "helm_magic_b_02_nif.m2", + text = "helm_magic_b_02_nif.m2", + }, + { + fileId = "139129", + value = "helm_magic_b_02_nim.m2", + text = "helm_magic_b_02_nim.m2", + }, + { + fileId = "139130", + value = "helm_magic_b_02_orf.m2", + text = "helm_magic_b_02_orf.m2", + }, + { + fileId = "139131", + value = "helm_magic_b_02_orm.m2", + text = "helm_magic_b_02_orm.m2", + }, + { + fileId = "139132", + value = "helm_magic_b_02_scf.m2", + text = "helm_magic_b_02_scf.m2", + }, + { + fileId = "139133", + value = "helm_magic_b_02_scm.m2", + text = "helm_magic_b_02_scm.m2", + }, + { + fileId = "139134", + value = "helm_magic_b_02_taf.m2", + text = "helm_magic_b_02_taf.m2", + }, + { + fileId = "139135", + value = "helm_magic_b_02_tam.m2", + text = "helm_magic_b_02_tam.m2", + }, + { + fileId = "139136", + value = "helm_magic_b_02_trf.m2", + text = "helm_magic_b_02_trf.m2", + }, + { + fileId = "139137", + value = "helm_magic_b_02_trm.m2", + text = "helm_magic_b_02_trm.m2", + }, + { + fileId = "139139", + value = "helm_magic_c_01_bef.m2", + text = "helm_magic_c_01_bef.m2", + }, + { + fileId = "139140", + value = "helm_magic_c_01_bem.m2", + text = "helm_magic_c_01_bem.m2", + }, + { + fileId = "139141", + value = "helm_magic_c_01_drf.m2", + text = "helm_magic_c_01_drf.m2", + }, + { + fileId = "139142", + value = "helm_magic_c_01_drm.m2", + text = "helm_magic_c_01_drm.m2", + }, + { + fileId = "139143", + value = "helm_magic_c_01_dwf.m2", + text = "helm_magic_c_01_dwf.m2", + }, + { + fileId = "139144", + value = "helm_magic_c_01_dwm.m2", + text = "helm_magic_c_01_dwm.m2", + }, + { + fileId = "139145", + value = "helm_magic_c_01_gnf.m2", + text = "helm_magic_c_01_gnf.m2", + }, + { + fileId = "139146", + value = "helm_magic_c_01_gnm.m2", + text = "helm_magic_c_01_gnm.m2", + }, + { + fileId = "139147", + value = "helm_magic_c_01_gof.m2", + text = "helm_magic_c_01_gof.m2", + }, + { + fileId = "139148", + value = "helm_magic_c_01_gom.m2", + text = "helm_magic_c_01_gom.m2", + }, + { + fileId = "139149", + value = "helm_magic_c_01_huf.m2", + text = "helm_magic_c_01_huf.m2", + }, + { + fileId = "139150", + value = "helm_magic_c_01_hum.m2", + text = "helm_magic_c_01_hum.m2", + }, + { + fileId = "139151", + value = "helm_magic_c_01_nif.m2", + text = "helm_magic_c_01_nif.m2", + }, + { + fileId = "139152", + value = "helm_magic_c_01_nim.m2", + text = "helm_magic_c_01_nim.m2", + }, + { + fileId = "139153", + value = "helm_magic_c_01_orf.m2", + text = "helm_magic_c_01_orf.m2", + }, + { + fileId = "139154", + value = "helm_magic_c_01_orm.m2", + text = "helm_magic_c_01_orm.m2", + }, + { + fileId = "139155", + value = "helm_magic_c_01_scf.m2", + text = "helm_magic_c_01_scf.m2", + }, + { + fileId = "139156", + value = "helm_magic_c_01_scm.m2", + text = "helm_magic_c_01_scm.m2", + }, + { + fileId = "139157", + value = "helm_magic_c_01_taf.m2", + text = "helm_magic_c_01_taf.m2", + }, + { + fileId = "139158", + value = "helm_magic_c_01_tam.m2", + text = "helm_magic_c_01_tam.m2", + }, + { + fileId = "139159", + value = "helm_magic_c_01_trf.m2", + text = "helm_magic_c_01_trf.m2", + }, + { + fileId = "139160", + value = "helm_magic_c_01_trm.m2", + text = "helm_magic_c_01_trm.m2", + }, + { + fileId = "139163", + value = "helm_mail_a_01_bef.m2", + text = "helm_mail_a_01_bef.m2", + }, + { + fileId = "139164", + value = "helm_mail_a_01_bem.m2", + text = "helm_mail_a_01_bem.m2", + }, + { + fileId = "139165", + value = "helm_mail_a_01_drf.m2", + text = "helm_mail_a_01_drf.m2", + }, + { + fileId = "139166", + value = "helm_mail_a_01_drm.m2", + text = "helm_mail_a_01_drm.m2", + }, + { + fileId = "139167", + value = "helm_mail_a_01_dwf.m2", + text = "helm_mail_a_01_dwf.m2", + }, + { + fileId = "139168", + value = "helm_mail_a_01_dwm.m2", + text = "helm_mail_a_01_dwm.m2", + }, + { + fileId = "139169", + value = "helm_mail_a_01_gnf.m2", + text = "helm_mail_a_01_gnf.m2", + }, + { + fileId = "139170", + value = "helm_mail_a_01_gnm.m2", + text = "helm_mail_a_01_gnm.m2", + }, + { + fileId = "139171", + value = "helm_mail_a_01_gof.m2", + text = "helm_mail_a_01_gof.m2", + }, + { + fileId = "139172", + value = "helm_mail_a_01_gom.m2", + text = "helm_mail_a_01_gom.m2", + }, + { + fileId = "139173", + value = "helm_mail_a_01_huf.m2", + text = "helm_mail_a_01_huf.m2", + }, + { + fileId = "139174", + value = "helm_mail_a_01_hum.m2", + text = "helm_mail_a_01_hum.m2", + }, + { + fileId = "139175", + value = "helm_mail_a_01_nif.m2", + text = "helm_mail_a_01_nif.m2", + }, + { + fileId = "139176", + value = "helm_mail_a_01_nim.m2", + text = "helm_mail_a_01_nim.m2", + }, + { + fileId = "139177", + value = "helm_mail_a_01_orf.m2", + text = "helm_mail_a_01_orf.m2", + }, + { + fileId = "139178", + value = "helm_mail_a_01_orm.m2", + text = "helm_mail_a_01_orm.m2", + }, + { + fileId = "139179", + value = "helm_mail_a_01_scf.m2", + text = "helm_mail_a_01_scf.m2", + }, + { + fileId = "139180", + value = "helm_mail_a_01_scm.m2", + text = "helm_mail_a_01_scm.m2", + }, + { + fileId = "139181", + value = "helm_mail_a_01_taf.m2", + text = "helm_mail_a_01_taf.m2", + }, + { + fileId = "139182", + value = "helm_mail_a_01_tam.m2", + text = "helm_mail_a_01_tam.m2", + }, + { + fileId = "139183", + value = "helm_mail_a_01_trf.m2", + text = "helm_mail_a_01_trf.m2", + }, + { + fileId = "139184", + value = "helm_mail_a_01_trm.m2", + text = "helm_mail_a_01_trm.m2", + }, + { + fileId = "139191", + value = "helm_mail_a_02_bef.m2", + text = "helm_mail_a_02_bef.m2", + }, + { + fileId = "139192", + value = "helm_mail_a_02_bem.m2", + text = "helm_mail_a_02_bem.m2", + }, + { + fileId = "139193", + value = "helm_mail_a_02_drf.m2", + text = "helm_mail_a_02_drf.m2", + }, + { + fileId = "139194", + value = "helm_mail_a_02_drm.m2", + text = "helm_mail_a_02_drm.m2", + }, + { + fileId = "139195", + value = "helm_mail_a_02_dwf.m2", + text = "helm_mail_a_02_dwf.m2", + }, + { + fileId = "139196", + value = "helm_mail_a_02_dwm.m2", + text = "helm_mail_a_02_dwm.m2", + }, + { + fileId = "139197", + value = "helm_mail_a_02_gnf.m2", + text = "helm_mail_a_02_gnf.m2", + }, + { + fileId = "139198", + value = "helm_mail_a_02_gnm.m2", + text = "helm_mail_a_02_gnm.m2", + }, + { + fileId = "139199", + value = "helm_mail_a_02_gof.m2", + text = "helm_mail_a_02_gof.m2", + }, + { + fileId = "139200", + value = "helm_mail_a_02_gom.m2", + text = "helm_mail_a_02_gom.m2", + }, + { + fileId = "139201", + value = "helm_mail_a_02_huf.m2", + text = "helm_mail_a_02_huf.m2", + }, + { + fileId = "139202", + value = "helm_mail_a_02_hum.m2", + text = "helm_mail_a_02_hum.m2", + }, + { + fileId = "139203", + value = "helm_mail_a_02_nif.m2", + text = "helm_mail_a_02_nif.m2", + }, + { + fileId = "139204", + value = "helm_mail_a_02_nim.m2", + text = "helm_mail_a_02_nim.m2", + }, + { + fileId = "139205", + value = "helm_mail_a_02_orf.m2", + text = "helm_mail_a_02_orf.m2", + }, + { + fileId = "139206", + value = "helm_mail_a_02_orm.m2", + text = "helm_mail_a_02_orm.m2", + }, + { + fileId = "139207", + value = "helm_mail_a_02_scf.m2", + text = "helm_mail_a_02_scf.m2", + }, + { + fileId = "139208", + value = "helm_mail_a_02_scm.m2", + text = "helm_mail_a_02_scm.m2", + }, + { + fileId = "139209", + value = "helm_mail_a_02_taf.m2", + text = "helm_mail_a_02_taf.m2", + }, + { + fileId = "139210", + value = "helm_mail_a_02_tam.m2", + text = "helm_mail_a_02_tam.m2", + }, + { + fileId = "139211", + value = "helm_mail_a_02_trf.m2", + text = "helm_mail_a_02_trf.m2", + }, + { + fileId = "139212", + value = "helm_mail_a_02_trm.m2", + text = "helm_mail_a_02_trm.m2", + }, + { + fileId = "139217", + value = "helm_mail_ahnqiraj_a_01_bef.m2", + text = "helm_mail_ahnqiraj_a_01_bef.m2", + }, + { + fileId = "139218", + value = "helm_mail_ahnqiraj_a_01_bem.m2", + text = "helm_mail_ahnqiraj_a_01_bem.m2", + }, + { + fileId = "139219", + value = "helm_mail_ahnqiraj_a_01_drf.m2", + text = "helm_mail_ahnqiraj_a_01_drf.m2", + }, + { + fileId = "139220", + value = "helm_mail_ahnqiraj_a_01_drm.m2", + text = "helm_mail_ahnqiraj_a_01_drm.m2", + }, + { + fileId = "139221", + value = "helm_mail_ahnqiraj_a_01_dwf.m2", + text = "helm_mail_ahnqiraj_a_01_dwf.m2", + }, + { + fileId = "139222", + value = "helm_mail_ahnqiraj_a_01_dwm.m2", + text = "helm_mail_ahnqiraj_a_01_dwm.m2", + }, + { + fileId = "139223", + value = "helm_mail_ahnqiraj_a_01_gnf.m2", + text = "helm_mail_ahnqiraj_a_01_gnf.m2", + }, + { + fileId = "139224", + value = "helm_mail_ahnqiraj_a_01_gnm.m2", + text = "helm_mail_ahnqiraj_a_01_gnm.m2", + }, + { + fileId = "139225", + value = "helm_mail_ahnqiraj_a_01_gof.m2", + text = "helm_mail_ahnqiraj_a_01_gof.m2", + }, + { + fileId = "139226", + value = "helm_mail_ahnqiraj_a_01_gom.m2", + text = "helm_mail_ahnqiraj_a_01_gom.m2", + }, + { + fileId = "139227", + value = "helm_mail_ahnqiraj_a_01_huf.m2", + text = "helm_mail_ahnqiraj_a_01_huf.m2", + }, + { + fileId = "139228", + value = "helm_mail_ahnqiraj_a_01_hum.m2", + text = "helm_mail_ahnqiraj_a_01_hum.m2", + }, + { + fileId = "139229", + value = "helm_mail_ahnqiraj_a_01_nif.m2", + text = "helm_mail_ahnqiraj_a_01_nif.m2", + }, + { + fileId = "139230", + value = "helm_mail_ahnqiraj_a_01_nim.m2", + text = "helm_mail_ahnqiraj_a_01_nim.m2", + }, + { + fileId = "139231", + value = "helm_mail_ahnqiraj_a_01_orf.m2", + text = "helm_mail_ahnqiraj_a_01_orf.m2", + }, + { + fileId = "139232", + value = "helm_mail_ahnqiraj_a_01_orm.m2", + text = "helm_mail_ahnqiraj_a_01_orm.m2", + }, + { + fileId = "139233", + value = "helm_mail_ahnqiraj_a_01_scf.m2", + text = "helm_mail_ahnqiraj_a_01_scf.m2", + }, + { + fileId = "139234", + value = "helm_mail_ahnqiraj_a_01_scm.m2", + text = "helm_mail_ahnqiraj_a_01_scm.m2", + }, + { + fileId = "139235", + value = "helm_mail_ahnqiraj_a_01_taf.m2", + text = "helm_mail_ahnqiraj_a_01_taf.m2", + }, + { + fileId = "139236", + value = "helm_mail_ahnqiraj_a_01_tam.m2", + text = "helm_mail_ahnqiraj_a_01_tam.m2", + }, + { + fileId = "139237", + value = "helm_mail_ahnqiraj_a_01_trf.m2", + text = "helm_mail_ahnqiraj_a_01_trf.m2", + }, + { + fileId = "139238", + value = "helm_mail_ahnqiraj_a_01_trm.m2", + text = "helm_mail_ahnqiraj_a_01_trm.m2", + }, + { + fileId = "139243", + value = "helm_mail_b_01_bef.m2", + text = "helm_mail_b_01_bef.m2", + }, + { + fileId = "139244", + value = "helm_mail_b_01_bem.m2", + text = "helm_mail_b_01_bem.m2", + }, + { + fileId = "139245", + value = "helm_mail_b_01_drf.m2", + text = "helm_mail_b_01_drf.m2", + }, + { + fileId = "139246", + value = "helm_mail_b_01_drm.m2", + text = "helm_mail_b_01_drm.m2", + }, + { + fileId = "139247", + value = "helm_mail_b_01_dwf.m2", + text = "helm_mail_b_01_dwf.m2", + }, + { + fileId = "139248", + value = "helm_mail_b_01_dwm.m2", + text = "helm_mail_b_01_dwm.m2", + }, + { + fileId = "139249", + value = "helm_mail_b_01_gnf.m2", + text = "helm_mail_b_01_gnf.m2", + }, + { + fileId = "139250", + value = "helm_mail_b_01_gnm.m2", + text = "helm_mail_b_01_gnm.m2", + }, + { + fileId = "139251", + value = "helm_mail_b_01_gof.m2", + text = "helm_mail_b_01_gof.m2", + }, + { + fileId = "139252", + value = "helm_mail_b_01_gom.m2", + text = "helm_mail_b_01_gom.m2", + }, + { + fileId = "139253", + value = "helm_mail_b_01_huf.m2", + text = "helm_mail_b_01_huf.m2", + }, + { + fileId = "139254", + value = "helm_mail_b_01_hum.m2", + text = "helm_mail_b_01_hum.m2", + }, + { + fileId = "139255", + value = "helm_mail_b_01_nif.m2", + text = "helm_mail_b_01_nif.m2", + }, + { + fileId = "139256", + value = "helm_mail_b_01_nim.m2", + text = "helm_mail_b_01_nim.m2", + }, + { + fileId = "139257", + value = "helm_mail_b_01_orf.m2", + text = "helm_mail_b_01_orf.m2", + }, + { + fileId = "139258", + value = "helm_mail_b_01_orm.m2", + text = "helm_mail_b_01_orm.m2", + }, + { + fileId = "139259", + value = "helm_mail_b_01_scf.m2", + text = "helm_mail_b_01_scf.m2", + }, + { + fileId = "139260", + value = "helm_mail_b_01_scm.m2", + text = "helm_mail_b_01_scm.m2", + }, + { + fileId = "139261", + value = "helm_mail_b_01_taf.m2", + text = "helm_mail_b_01_taf.m2", + }, + { + fileId = "139262", + value = "helm_mail_b_01_tam.m2", + text = "helm_mail_b_01_tam.m2", + }, + { + fileId = "139263", + value = "helm_mail_b_01_trf.m2", + text = "helm_mail_b_01_trf.m2", + }, + { + fileId = "139264", + value = "helm_mail_b_01_trm.m2", + text = "helm_mail_b_01_trm.m2", + }, + { + fileId = "139265", + value = "helm_mail_c_01_bem.m2", + text = "helm_mail_c_01_bem.m2", + }, + { + fileId = "139266", + value = "helm_mail_c_01_drm.m2", + text = "helm_mail_c_01_drm.m2", + }, + { + fileId = "139267", + value = "helm_mail_c_01_gof.m2", + text = "helm_mail_c_01_gof.m2", + }, + { + fileId = "139268", + value = "helm_mail_c_02_bef.m2", + text = "helm_mail_c_02_bef.m2", + }, + { + fileId = "139269", + value = "helm_mail_c_02_bem.m2", + text = "helm_mail_c_02_bem.m2", + }, + { + fileId = "139270", + value = "helm_mail_c_02_drf.m2", + text = "helm_mail_c_02_drf.m2", + }, + { + fileId = "139271", + value = "helm_mail_c_02_drm.m2", + text = "helm_mail_c_02_drm.m2", + }, + { + fileId = "139272", + value = "helm_mail_c_02_dwf.m2", + text = "helm_mail_c_02_dwf.m2", + }, + { + fileId = "139273", + value = "helm_mail_c_02_dwm.m2", + text = "helm_mail_c_02_dwm.m2", + }, + { + fileId = "139274", + value = "helm_mail_c_02_gnf.m2", + text = "helm_mail_c_02_gnf.m2", + }, + { + fileId = "139275", + value = "helm_mail_c_02_gnm.m2", + text = "helm_mail_c_02_gnm.m2", + }, + { + fileId = "139276", + value = "helm_mail_c_02_gof.m2", + text = "helm_mail_c_02_gof.m2", + }, + { + fileId = "139277", + value = "helm_mail_c_02_huf.m2", + text = "helm_mail_c_02_huf.m2", + }, + { + fileId = "139278", + value = "helm_mail_c_02_hum.m2", + text = "helm_mail_c_02_hum.m2", + }, + { + fileId = "139279", + value = "helm_mail_c_02_nif.m2", + text = "helm_mail_c_02_nif.m2", + }, + { + fileId = "139280", + value = "helm_mail_c_02_nim.m2", + text = "helm_mail_c_02_nim.m2", + }, + { + fileId = "139281", + value = "helm_mail_c_02_orf.m2", + text = "helm_mail_c_02_orf.m2", + }, + { + fileId = "139282", + value = "helm_mail_c_02_orm.m2", + text = "helm_mail_c_02_orm.m2", + }, + { + fileId = "139283", + value = "helm_mail_c_02_scf.m2", + text = "helm_mail_c_02_scf.m2", + }, + { + fileId = "139284", + value = "helm_mail_c_02_scm.m2", + text = "helm_mail_c_02_scm.m2", + }, + { + fileId = "139285", + value = "helm_mail_c_02_taf.m2", + text = "helm_mail_c_02_taf.m2", + }, + { + fileId = "139286", + value = "helm_mail_c_02_tam.m2", + text = "helm_mail_c_02_tam.m2", + }, + { + fileId = "139287", + value = "helm_mail_c_02_trf.m2", + text = "helm_mail_c_02_trf.m2", + }, + { + fileId = "139288", + value = "helm_mail_c_02_trm.m2", + text = "helm_mail_c_02_trm.m2", + }, + { + fileId = "139293", + value = "helm_mail_d_01_bef.m2", + text = "helm_mail_d_01_bef.m2", + }, + { + fileId = "139294", + value = "helm_mail_d_01_bem.m2", + text = "helm_mail_d_01_bem.m2", + }, + { + fileId = "139295", + value = "helm_mail_d_01_drf.m2", + text = "helm_mail_d_01_drf.m2", + }, + { + fileId = "139296", + value = "helm_mail_d_01_drm.m2", + text = "helm_mail_d_01_drm.m2", + }, + { + fileId = "139297", + value = "helm_mail_d_01_dwf.m2", + text = "helm_mail_d_01_dwf.m2", + }, + { + fileId = "139298", + value = "helm_mail_d_01_dwm.m2", + text = "helm_mail_d_01_dwm.m2", + }, + { + fileId = "139299", + value = "helm_mail_d_01_gnf.m2", + text = "helm_mail_d_01_gnf.m2", + }, + { + fileId = "139300", + value = "helm_mail_d_01_gnm.m2", + text = "helm_mail_d_01_gnm.m2", + }, + { + fileId = "139301", + value = "helm_mail_d_01_gof.m2", + text = "helm_mail_d_01_gof.m2", + }, + { + fileId = "139302", + value = "helm_mail_d_01_gom.m2", + text = "helm_mail_d_01_gom.m2", + }, + { + fileId = "139303", + value = "helm_mail_d_01_huf.m2", + text = "helm_mail_d_01_huf.m2", + }, + { + fileId = "139304", + value = "helm_mail_d_01_hum.m2", + text = "helm_mail_d_01_hum.m2", + }, + { + fileId = "139305", + value = "helm_mail_d_01_nif.m2", + text = "helm_mail_d_01_nif.m2", + }, + { + fileId = "139306", + value = "helm_mail_d_01_nim.m2", + text = "helm_mail_d_01_nim.m2", + }, + { + fileId = "139307", + value = "helm_mail_d_01_orf.m2", + text = "helm_mail_d_01_orf.m2", + }, + { + fileId = "139308", + value = "helm_mail_d_01_orm.m2", + text = "helm_mail_d_01_orm.m2", + }, + { + fileId = "139309", + value = "helm_mail_d_01_scf.m2", + text = "helm_mail_d_01_scf.m2", + }, + { + fileId = "139310", + value = "helm_mail_d_01_scm.m2", + text = "helm_mail_d_01_scm.m2", + }, + { + fileId = "139311", + value = "helm_mail_d_01_taf.m2", + text = "helm_mail_d_01_taf.m2", + }, + { + fileId = "139312", + value = "helm_mail_d_01_tam.m2", + text = "helm_mail_d_01_tam.m2", + }, + { + fileId = "139313", + value = "helm_mail_d_01_trf.m2", + text = "helm_mail_d_01_trf.m2", + }, + { + fileId = "139314", + value = "helm_mail_d_01_trm.m2", + text = "helm_mail_d_01_trm.m2", + }, + { + fileId = "139321", + value = "helm_mail_dungeonhunter_a_01_bef.m2", + text = "helm_mail_dungeonhunter_a_01_bef.m2", + }, + { + fileId = "139322", + value = "helm_mail_dungeonhunter_a_01_bem.m2", + text = "helm_mail_dungeonhunter_a_01_bem.m2", + }, + { + fileId = "139323", + value = "helm_mail_dungeonhunter_a_01_drf.m2", + text = "helm_mail_dungeonhunter_a_01_drf.m2", + }, + { + fileId = "139324", + value = "helm_mail_dungeonhunter_a_01_drm.m2", + text = "helm_mail_dungeonhunter_a_01_drm.m2", + }, + { + fileId = "139325", + value = "helm_mail_dungeonhunter_a_01_dwf.m2", + text = "helm_mail_dungeonhunter_a_01_dwf.m2", + }, + { + fileId = "139326", + value = "helm_mail_dungeonhunter_a_01_dwm.m2", + text = "helm_mail_dungeonhunter_a_01_dwm.m2", + }, + { + fileId = "139327", + value = "helm_mail_dungeonhunter_a_01_gnf.m2", + text = "helm_mail_dungeonhunter_a_01_gnf.m2", + }, + { + fileId = "139328", + value = "helm_mail_dungeonhunter_a_01_gnm.m2", + text = "helm_mail_dungeonhunter_a_01_gnm.m2", + }, + { + fileId = "139329", + value = "helm_mail_dungeonhunter_a_01_gof.m2", + text = "helm_mail_dungeonhunter_a_01_gof.m2", + }, + { + fileId = "139330", + value = "helm_mail_dungeonhunter_a_01_huf.m2", + text = "helm_mail_dungeonhunter_a_01_huf.m2", + }, + { + fileId = "139331", + value = "helm_mail_dungeonhunter_a_01_hum.m2", + text = "helm_mail_dungeonhunter_a_01_hum.m2", + }, + { + fileId = "139332", + value = "helm_mail_dungeonhunter_a_01_nif.m2", + text = "helm_mail_dungeonhunter_a_01_nif.m2", + }, + { + fileId = "139333", + value = "helm_mail_dungeonhunter_a_01_nim.m2", + text = "helm_mail_dungeonhunter_a_01_nim.m2", + }, + { + fileId = "139334", + value = "helm_mail_dungeonhunter_a_01_orf.m2", + text = "helm_mail_dungeonhunter_a_01_orf.m2", + }, + { + fileId = "139335", + value = "helm_mail_dungeonhunter_a_01_orm.m2", + text = "helm_mail_dungeonhunter_a_01_orm.m2", + }, + { + fileId = "139336", + value = "helm_mail_dungeonhunter_a_01_scf.m2", + text = "helm_mail_dungeonhunter_a_01_scf.m2", + }, + { + fileId = "139337", + value = "helm_mail_dungeonhunter_a_01_scm.m2", + text = "helm_mail_dungeonhunter_a_01_scm.m2", + }, + { + fileId = "139338", + value = "helm_mail_dungeonhunter_a_01_taf.m2", + text = "helm_mail_dungeonhunter_a_01_taf.m2", + }, + { + fileId = "139339", + value = "helm_mail_dungeonhunter_a_01_tam.m2", + text = "helm_mail_dungeonhunter_a_01_tam.m2", + }, + { + fileId = "139340", + value = "helm_mail_dungeonhunter_a_01_trf.m2", + text = "helm_mail_dungeonhunter_a_01_trf.m2", + }, + { + fileId = "139341", + value = "helm_mail_dungeonhunter_a_01_trm.m2", + text = "helm_mail_dungeonhunter_a_01_trm.m2", + }, + { + fileId = "139346", + value = "helm_mail_dungeonhunter_b_02_bef.m2", + text = "helm_mail_dungeonhunter_b_02_bef.m2", + }, + { + fileId = "139347", + value = "helm_mail_dungeonhunter_b_02_bem.m2", + text = "helm_mail_dungeonhunter_b_02_bem.m2", + }, + { + fileId = "139348", + value = "helm_mail_dungeonhunter_b_02_drf.m2", + text = "helm_mail_dungeonhunter_b_02_drf.m2", + }, + { + fileId = "139349", + value = "helm_mail_dungeonhunter_b_02_drm.m2", + text = "helm_mail_dungeonhunter_b_02_drm.m2", + }, + { + fileId = "139350", + value = "helm_mail_dungeonhunter_b_02_dwf.m2", + text = "helm_mail_dungeonhunter_b_02_dwf.m2", + }, + { + fileId = "139351", + value = "helm_mail_dungeonhunter_b_02_dwm.m2", + text = "helm_mail_dungeonhunter_b_02_dwm.m2", + }, + { + fileId = "139352", + value = "helm_mail_dungeonhunter_b_02_gnf.m2", + text = "helm_mail_dungeonhunter_b_02_gnf.m2", + }, + { + fileId = "139353", + value = "helm_mail_dungeonhunter_b_02_gnm.m2", + text = "helm_mail_dungeonhunter_b_02_gnm.m2", + }, + { + fileId = "139354", + value = "helm_mail_dungeonhunter_b_02_gof.m2", + text = "helm_mail_dungeonhunter_b_02_gof.m2", + }, + { + fileId = "139355", + value = "helm_mail_dungeonhunter_b_02_gom.m2", + text = "helm_mail_dungeonhunter_b_02_gom.m2", + }, + { + fileId = "139356", + value = "helm_mail_dungeonhunter_b_02_huf.m2", + text = "helm_mail_dungeonhunter_b_02_huf.m2", + }, + { + fileId = "139357", + value = "helm_mail_dungeonhunter_b_02_hum.m2", + text = "helm_mail_dungeonhunter_b_02_hum.m2", + }, + { + fileId = "139358", + value = "helm_mail_dungeonhunter_b_02_nif.m2", + text = "helm_mail_dungeonhunter_b_02_nif.m2", + }, + { + fileId = "139359", + value = "helm_mail_dungeonhunter_b_02_nim.m2", + text = "helm_mail_dungeonhunter_b_02_nim.m2", + }, + { + fileId = "139360", + value = "helm_mail_dungeonhunter_b_02_orf.m2", + text = "helm_mail_dungeonhunter_b_02_orf.m2", + }, + { + fileId = "139361", + value = "helm_mail_dungeonhunter_b_02_orm.m2", + text = "helm_mail_dungeonhunter_b_02_orm.m2", + }, + { + fileId = "139362", + value = "helm_mail_dungeonhunter_b_02_scf.m2", + text = "helm_mail_dungeonhunter_b_02_scf.m2", + }, + { + fileId = "139363", + value = "helm_mail_dungeonhunter_b_02_scm.m2", + text = "helm_mail_dungeonhunter_b_02_scm.m2", + }, + { + fileId = "139364", + value = "helm_mail_dungeonhunter_b_02_taf.m2", + text = "helm_mail_dungeonhunter_b_02_taf.m2", + }, + { + fileId = "139365", + value = "helm_mail_dungeonhunter_b_02_tam.m2", + text = "helm_mail_dungeonhunter_b_02_tam.m2", + }, + { + fileId = "139366", + value = "helm_mail_dungeonhunter_b_02_trf.m2", + text = "helm_mail_dungeonhunter_b_02_trf.m2", + }, + { + fileId = "139367", + value = "helm_mail_dungeonhunter_b_02_trm.m2", + text = "helm_mail_dungeonhunter_b_02_trm.m2", + }, + { + fileId = "139373", + value = "helm_mail_dungeonshaman_a_01_bef.m2", + text = "helm_mail_dungeonshaman_a_01_bef.m2", + }, + { + fileId = "139374", + value = "helm_mail_dungeonshaman_a_01_bem.m2", + text = "helm_mail_dungeonshaman_a_01_bem.m2", + }, + { + fileId = "139375", + value = "helm_mail_dungeonshaman_a_01_drf.m2", + text = "helm_mail_dungeonshaman_a_01_drf.m2", + }, + { + fileId = "139376", + value = "helm_mail_dungeonshaman_a_01_drm.m2", + text = "helm_mail_dungeonshaman_a_01_drm.m2", + }, + { + fileId = "139377", + value = "helm_mail_dungeonshaman_a_01_dwf.m2", + text = "helm_mail_dungeonshaman_a_01_dwf.m2", + }, + { + fileId = "139378", + value = "helm_mail_dungeonshaman_a_01_dwm.m2", + text = "helm_mail_dungeonshaman_a_01_dwm.m2", + }, + { + fileId = "139379", + value = "helm_mail_dungeonshaman_a_01_gnf.m2", + text = "helm_mail_dungeonshaman_a_01_gnf.m2", + }, + { + fileId = "139380", + value = "helm_mail_dungeonshaman_a_01_gnm.m2", + text = "helm_mail_dungeonshaman_a_01_gnm.m2", + }, + { + fileId = "139381", + value = "helm_mail_dungeonshaman_a_01_gof.m2", + text = "helm_mail_dungeonshaman_a_01_gof.m2", + }, + { + fileId = "139382", + value = "helm_mail_dungeonshaman_a_01_gom.m2", + text = "helm_mail_dungeonshaman_a_01_gom.m2", + }, + { + fileId = "139383", + value = "helm_mail_dungeonshaman_a_01_huf.m2", + text = "helm_mail_dungeonshaman_a_01_huf.m2", + }, + { + fileId = "139384", + value = "helm_mail_dungeonshaman_a_01_hum.m2", + text = "helm_mail_dungeonshaman_a_01_hum.m2", + }, + { + fileId = "139385", + value = "helm_mail_dungeonshaman_a_01_nif.m2", + text = "helm_mail_dungeonshaman_a_01_nif.m2", + }, + { + fileId = "139386", + value = "helm_mail_dungeonshaman_a_01_nim.m2", + text = "helm_mail_dungeonshaman_a_01_nim.m2", + }, + { + fileId = "139387", + value = "helm_mail_dungeonshaman_a_01_orf.m2", + text = "helm_mail_dungeonshaman_a_01_orf.m2", + }, + { + fileId = "139388", + value = "helm_mail_dungeonshaman_a_01_orm.m2", + text = "helm_mail_dungeonshaman_a_01_orm.m2", + }, + { + fileId = "139389", + value = "helm_mail_dungeonshaman_a_01_scf.m2", + text = "helm_mail_dungeonshaman_a_01_scf.m2", + }, + { + fileId = "139390", + value = "helm_mail_dungeonshaman_a_01_scm.m2", + text = "helm_mail_dungeonshaman_a_01_scm.m2", + }, + { + fileId = "139391", + value = "helm_mail_dungeonshaman_a_01_taf.m2", + text = "helm_mail_dungeonshaman_a_01_taf.m2", + }, + { + fileId = "139392", + value = "helm_mail_dungeonshaman_a_01_tam.m2", + text = "helm_mail_dungeonshaman_a_01_tam.m2", + }, + { + fileId = "139393", + value = "helm_mail_dungeonshaman_a_01_trf.m2", + text = "helm_mail_dungeonshaman_a_01_trf.m2", + }, + { + fileId = "139394", + value = "helm_mail_dungeonshaman_a_01_trm.m2", + text = "helm_mail_dungeonshaman_a_01_trm.m2", + }, + { + fileId = "139400", + value = "helm_mail_dungeonshaman_b_01_bef.m2", + text = "helm_mail_dungeonshaman_b_01_bef.m2", + }, + { + fileId = "139401", + value = "helm_mail_dungeonshaman_b_01_bem.m2", + text = "helm_mail_dungeonshaman_b_01_bem.m2", + }, + { + fileId = "139402", + value = "helm_mail_dungeonshaman_b_01_drf.m2", + text = "helm_mail_dungeonshaman_b_01_drf.m2", + }, + { + fileId = "139403", + value = "helm_mail_dungeonshaman_b_01_drm.m2", + text = "helm_mail_dungeonshaman_b_01_drm.m2", + }, + { + fileId = "139404", + value = "helm_mail_dungeonshaman_b_01_dwf.m2", + text = "helm_mail_dungeonshaman_b_01_dwf.m2", + }, + { + fileId = "139405", + value = "helm_mail_dungeonshaman_b_01_dwm.m2", + text = "helm_mail_dungeonshaman_b_01_dwm.m2", + }, + { + fileId = "139406", + value = "helm_mail_dungeonshaman_b_01_gnf.m2", + text = "helm_mail_dungeonshaman_b_01_gnf.m2", + }, + { + fileId = "139407", + value = "helm_mail_dungeonshaman_b_01_gnm.m2", + text = "helm_mail_dungeonshaman_b_01_gnm.m2", + }, + { + fileId = "139408", + value = "helm_mail_dungeonshaman_b_01_gof.m2", + text = "helm_mail_dungeonshaman_b_01_gof.m2", + }, + { + fileId = "139409", + value = "helm_mail_dungeonshaman_b_01_gom.m2", + text = "helm_mail_dungeonshaman_b_01_gom.m2", + }, + { + fileId = "139410", + value = "helm_mail_dungeonshaman_b_01_huf.m2", + text = "helm_mail_dungeonshaman_b_01_huf.m2", + }, + { + fileId = "139411", + value = "helm_mail_dungeonshaman_b_01_hum.m2", + text = "helm_mail_dungeonshaman_b_01_hum.m2", + }, + { + fileId = "139412", + value = "helm_mail_dungeonshaman_b_01_nif.m2", + text = "helm_mail_dungeonshaman_b_01_nif.m2", + }, + { + fileId = "139413", + value = "helm_mail_dungeonshaman_b_01_nim.m2", + text = "helm_mail_dungeonshaman_b_01_nim.m2", + }, + { + fileId = "139414", + value = "helm_mail_dungeonshaman_b_01_orf.m2", + text = "helm_mail_dungeonshaman_b_01_orf.m2", + }, + { + fileId = "139415", + value = "helm_mail_dungeonshaman_b_01_orm.m2", + text = "helm_mail_dungeonshaman_b_01_orm.m2", + }, + { + fileId = "139416", + value = "helm_mail_dungeonshaman_b_01_scf.m2", + text = "helm_mail_dungeonshaman_b_01_scf.m2", + }, + { + fileId = "139417", + value = "helm_mail_dungeonshaman_b_01_scm.m2", + text = "helm_mail_dungeonshaman_b_01_scm.m2", + }, + { + fileId = "139418", + value = "helm_mail_dungeonshaman_b_01_taf.m2", + text = "helm_mail_dungeonshaman_b_01_taf.m2", + }, + { + fileId = "139419", + value = "helm_mail_dungeonshaman_b_01_tam.m2", + text = "helm_mail_dungeonshaman_b_01_tam.m2", + }, + { + fileId = "139420", + value = "helm_mail_dungeonshaman_b_01_trf.m2", + text = "helm_mail_dungeonshaman_b_01_trf.m2", + }, + { + fileId = "139421", + value = "helm_mail_dungeonshaman_b_01_trm.m2", + text = "helm_mail_dungeonshaman_b_01_trm.m2", + }, + { + fileId = "139526", + value = "helm_mail_pvpalliance_a_01_bef.m2", + text = "helm_mail_pvpalliance_a_01_bef.m2", + }, + { + fileId = "139527", + value = "helm_mail_pvpalliance_a_01_bem.m2", + text = "helm_mail_pvpalliance_a_01_bem.m2", + }, + { + fileId = "139528", + value = "helm_mail_pvpalliance_a_01_drf.m2", + text = "helm_mail_pvpalliance_a_01_drf.m2", + }, + { + fileId = "139529", + value = "helm_mail_pvpalliance_a_01_drm.m2", + text = "helm_mail_pvpalliance_a_01_drm.m2", + }, + { + fileId = "139530", + value = "helm_mail_pvpalliance_a_01_dwf.m2", + text = "helm_mail_pvpalliance_a_01_dwf.m2", + }, + { + fileId = "139531", + value = "helm_mail_pvpalliance_a_01_dwm.m2", + text = "helm_mail_pvpalliance_a_01_dwm.m2", + }, + { + fileId = "139532", + value = "helm_mail_pvpalliance_a_01_gnf.m2", + text = "helm_mail_pvpalliance_a_01_gnf.m2", + }, + { + fileId = "139533", + value = "helm_mail_pvpalliance_a_01_gnm.m2", + text = "helm_mail_pvpalliance_a_01_gnm.m2", + }, + { + fileId = "139534", + value = "helm_mail_pvpalliance_a_01_gof.m2", + text = "helm_mail_pvpalliance_a_01_gof.m2", + }, + { + fileId = "139535", + value = "helm_mail_pvpalliance_a_01_gom.m2", + text = "helm_mail_pvpalliance_a_01_gom.m2", + }, + { + fileId = "139536", + value = "helm_mail_pvpalliance_a_01_huf.m2", + text = "helm_mail_pvpalliance_a_01_huf.m2", + }, + { + fileId = "139537", + value = "helm_mail_pvpalliance_a_01_hum.m2", + text = "helm_mail_pvpalliance_a_01_hum.m2", + }, + { + fileId = "139538", + value = "helm_mail_pvpalliance_a_01_nif.m2", + text = "helm_mail_pvpalliance_a_01_nif.m2", + }, + { + fileId = "139539", + value = "helm_mail_pvpalliance_a_01_nim.m2", + text = "helm_mail_pvpalliance_a_01_nim.m2", + }, + { + fileId = "139540", + value = "helm_mail_pvpalliance_a_01_orf.m2", + text = "helm_mail_pvpalliance_a_01_orf.m2", + }, + { + fileId = "139541", + value = "helm_mail_pvpalliance_a_01_orm.m2", + text = "helm_mail_pvpalliance_a_01_orm.m2", + }, + { + fileId = "139542", + value = "helm_mail_pvpalliance_a_01_scf.m2", + text = "helm_mail_pvpalliance_a_01_scf.m2", + }, + { + fileId = "139543", + value = "helm_mail_pvpalliance_a_01_scm.m2", + text = "helm_mail_pvpalliance_a_01_scm.m2", + }, + { + fileId = "139544", + value = "helm_mail_pvpalliance_a_01_taf.m2", + text = "helm_mail_pvpalliance_a_01_taf.m2", + }, + { + fileId = "139545", + value = "helm_mail_pvpalliance_a_01_tam.m2", + text = "helm_mail_pvpalliance_a_01_tam.m2", + }, + { + fileId = "139546", + value = "helm_mail_pvpalliance_a_01_trf.m2", + text = "helm_mail_pvpalliance_a_01_trf.m2", + }, + { + fileId = "139547", + value = "helm_mail_pvpalliance_a_01_trm.m2", + text = "helm_mail_pvpalliance_a_01_trm.m2", + }, + { + fileId = "139551", + value = "helm_mail_pvpalliance_c_01_bef.m2", + text = "helm_mail_pvpalliance_c_01_bef.m2", + }, + { + fileId = "139552", + value = "helm_mail_pvpalliance_c_01_bem.m2", + text = "helm_mail_pvpalliance_c_01_bem.m2", + }, + { + fileId = "139553", + value = "helm_mail_pvpalliance_c_01_drf.m2", + text = "helm_mail_pvpalliance_c_01_drf.m2", + }, + { + fileId = "139554", + value = "helm_mail_pvpalliance_c_01_drm.m2", + text = "helm_mail_pvpalliance_c_01_drm.m2", + }, + { + fileId = "139555", + value = "helm_mail_pvpalliance_c_01_dwf.m2", + text = "helm_mail_pvpalliance_c_01_dwf.m2", + }, + { + fileId = "139556", + value = "helm_mail_pvpalliance_c_01_dwm.m2", + text = "helm_mail_pvpalliance_c_01_dwm.m2", + }, + { + fileId = "139557", + value = "helm_mail_pvpalliance_c_01_gnf.m2", + text = "helm_mail_pvpalliance_c_01_gnf.m2", + }, + { + fileId = "139558", + value = "helm_mail_pvpalliance_c_01_gnm.m2", + text = "helm_mail_pvpalliance_c_01_gnm.m2", + }, + { + fileId = "139559", + value = "helm_mail_pvpalliance_c_01_gof.m2", + text = "helm_mail_pvpalliance_c_01_gof.m2", + }, + { + fileId = "139560", + value = "helm_mail_pvpalliance_c_01_gom.m2", + text = "helm_mail_pvpalliance_c_01_gom.m2", + }, + { + fileId = "139561", + value = "helm_mail_pvpalliance_c_01_huf.m2", + text = "helm_mail_pvpalliance_c_01_huf.m2", + }, + { + fileId = "139562", + value = "helm_mail_pvpalliance_c_01_hum.m2", + text = "helm_mail_pvpalliance_c_01_hum.m2", + }, + { + fileId = "139563", + value = "helm_mail_pvpalliance_c_01_nif.m2", + text = "helm_mail_pvpalliance_c_01_nif.m2", + }, + { + fileId = "139564", + value = "helm_mail_pvpalliance_c_01_nim.m2", + text = "helm_mail_pvpalliance_c_01_nim.m2", + }, + { + fileId = "139565", + value = "helm_mail_pvpalliance_c_01_orf.m2", + text = "helm_mail_pvpalliance_c_01_orf.m2", + }, + { + fileId = "139566", + value = "helm_mail_pvpalliance_c_01_orm.m2", + text = "helm_mail_pvpalliance_c_01_orm.m2", + }, + { + fileId = "139567", + value = "helm_mail_pvpalliance_c_01_scf.m2", + text = "helm_mail_pvpalliance_c_01_scf.m2", + }, + { + fileId = "139568", + value = "helm_mail_pvpalliance_c_01_scm.m2", + text = "helm_mail_pvpalliance_c_01_scm.m2", + }, + { + fileId = "139569", + value = "helm_mail_pvpalliance_c_01_taf.m2", + text = "helm_mail_pvpalliance_c_01_taf.m2", + }, + { + fileId = "139570", + value = "helm_mail_pvpalliance_c_01_tam.m2", + text = "helm_mail_pvpalliance_c_01_tam.m2", + }, + { + fileId = "139571", + value = "helm_mail_pvpalliance_c_01_trf.m2", + text = "helm_mail_pvpalliance_c_01_trf.m2", + }, + { + fileId = "139572", + value = "helm_mail_pvpalliance_c_01_trm.m2", + text = "helm_mail_pvpalliance_c_01_trm.m2", + }, + { + fileId = "139573", + value = "helm_mail_pvphorde_a_01_bef.m2", + text = "helm_mail_pvphorde_a_01_bef.m2", + }, + { + fileId = "139574", + value = "helm_mail_pvphorde_a_01_bem.m2", + text = "helm_mail_pvphorde_a_01_bem.m2", + }, + { + fileId = "139575", + value = "helm_mail_pvphorde_a_01_drf.m2", + text = "helm_mail_pvphorde_a_01_drf.m2", + }, + { + fileId = "139576", + value = "helm_mail_pvphorde_a_01_drm.m2", + text = "helm_mail_pvphorde_a_01_drm.m2", + }, + { + fileId = "139577", + value = "helm_mail_pvphorde_a_01_dwf.m2", + text = "helm_mail_pvphorde_a_01_dwf.m2", + }, + { + fileId = "139578", + value = "helm_mail_pvphorde_a_01_dwm.m2", + text = "helm_mail_pvphorde_a_01_dwm.m2", + }, + { + fileId = "139579", + value = "helm_mail_pvphorde_a_01_gnf.m2", + text = "helm_mail_pvphorde_a_01_gnf.m2", + }, + { + fileId = "139580", + value = "helm_mail_pvphorde_a_01_gnm.m2", + text = "helm_mail_pvphorde_a_01_gnm.m2", + }, + { + fileId = "139581", + value = "helm_mail_pvphorde_a_01_gof.m2", + text = "helm_mail_pvphorde_a_01_gof.m2", + }, + { + fileId = "139582", + value = "helm_mail_pvphorde_a_01_huf.m2", + text = "helm_mail_pvphorde_a_01_huf.m2", + }, + { + fileId = "139583", + value = "helm_mail_pvphorde_a_01_hum.m2", + text = "helm_mail_pvphorde_a_01_hum.m2", + }, + { + fileId = "139584", + value = "helm_mail_pvphorde_a_01_nif.m2", + text = "helm_mail_pvphorde_a_01_nif.m2", + }, + { + fileId = "139585", + value = "helm_mail_pvphorde_a_01_nim.m2", + text = "helm_mail_pvphorde_a_01_nim.m2", + }, + { + fileId = "139586", + value = "helm_mail_pvphorde_a_01_orf.m2", + text = "helm_mail_pvphorde_a_01_orf.m2", + }, + { + fileId = "139587", + value = "helm_mail_pvphorde_a_01_orm.m2", + text = "helm_mail_pvphorde_a_01_orm.m2", + }, + { + fileId = "139588", + value = "helm_mail_pvphorde_a_01_scf.m2", + text = "helm_mail_pvphorde_a_01_scf.m2", + }, + { + fileId = "139589", + value = "helm_mail_pvphorde_a_01_scm.m2", + text = "helm_mail_pvphorde_a_01_scm.m2", + }, + { + fileId = "139590", + value = "helm_mail_pvphorde_a_01_taf.m2", + text = "helm_mail_pvphorde_a_01_taf.m2", + }, + { + fileId = "139591", + value = "helm_mail_pvphorde_a_01_tam.m2", + text = "helm_mail_pvphorde_a_01_tam.m2", + }, + { + fileId = "139592", + value = "helm_mail_pvphorde_a_01_trf.m2", + text = "helm_mail_pvphorde_a_01_trf.m2", + }, + { + fileId = "139593", + value = "helm_mail_pvphorde_a_01_trm.m2", + text = "helm_mail_pvphorde_a_01_trm.m2", + }, + { + fileId = "139596", + value = "helm_mail_pvphorde_c_01_bef.m2", + text = "helm_mail_pvphorde_c_01_bef.m2", + }, + { + fileId = "139597", + value = "helm_mail_pvphorde_c_01_bem.m2", + text = "helm_mail_pvphorde_c_01_bem.m2", + }, + { + fileId = "139598", + value = "helm_mail_pvphorde_c_01_drf.m2", + text = "helm_mail_pvphorde_c_01_drf.m2", + }, + { + fileId = "139599", + value = "helm_mail_pvphorde_c_01_drm.m2", + text = "helm_mail_pvphorde_c_01_drm.m2", + }, + { + fileId = "139600", + value = "helm_mail_pvphorde_c_01_dwf.m2", + text = "helm_mail_pvphorde_c_01_dwf.m2", + }, + { + fileId = "139601", + value = "helm_mail_pvphorde_c_01_dwm.m2", + text = "helm_mail_pvphorde_c_01_dwm.m2", + }, + { + fileId = "139602", + value = "helm_mail_pvphorde_c_01_gnf.m2", + text = "helm_mail_pvphorde_c_01_gnf.m2", + }, + { + fileId = "139603", + value = "helm_mail_pvphorde_c_01_gnm.m2", + text = "helm_mail_pvphorde_c_01_gnm.m2", + }, + { + fileId = "139604", + value = "helm_mail_pvphorde_c_01_gof.m2", + text = "helm_mail_pvphorde_c_01_gof.m2", + }, + { + fileId = "139605", + value = "helm_mail_pvphorde_c_01_gom.m2", + text = "helm_mail_pvphorde_c_01_gom.m2", + }, + { + fileId = "139606", + value = "helm_mail_pvphorde_c_01_huf.m2", + text = "helm_mail_pvphorde_c_01_huf.m2", + }, + { + fileId = "139607", + value = "helm_mail_pvphorde_c_01_hum.m2", + text = "helm_mail_pvphorde_c_01_hum.m2", + }, + { + fileId = "139608", + value = "helm_mail_pvphorde_c_01_nif.m2", + text = "helm_mail_pvphorde_c_01_nif.m2", + }, + { + fileId = "139609", + value = "helm_mail_pvphorde_c_01_nim.m2", + text = "helm_mail_pvphorde_c_01_nim.m2", + }, + { + fileId = "139610", + value = "helm_mail_pvphorde_c_01_orf.m2", + text = "helm_mail_pvphorde_c_01_orf.m2", + }, + { + fileId = "139611", + value = "helm_mail_pvphorde_c_01_orm.m2", + text = "helm_mail_pvphorde_c_01_orm.m2", + }, + { + fileId = "139612", + value = "helm_mail_pvphorde_c_01_scf.m2", + text = "helm_mail_pvphorde_c_01_scf.m2", + }, + { + fileId = "139613", + value = "helm_mail_pvphorde_c_01_scm.m2", + text = "helm_mail_pvphorde_c_01_scm.m2", + }, + { + fileId = "139614", + value = "helm_mail_pvphorde_c_01_taf.m2", + text = "helm_mail_pvphorde_c_01_taf.m2", + }, + { + fileId = "139615", + value = "helm_mail_pvphorde_c_01_tam.m2", + text = "helm_mail_pvphorde_c_01_tam.m2", + }, + { + fileId = "139616", + value = "helm_mail_pvphorde_c_01_trf.m2", + text = "helm_mail_pvphorde_c_01_trf.m2", + }, + { + fileId = "139617", + value = "helm_mail_pvphorde_c_01_trm.m2", + text = "helm_mail_pvphorde_c_01_trm.m2", + }, + { + fileId = "139621", + value = "helm_mail_raidhunter_a_01_bef.m2", + text = "helm_mail_raidhunter_a_01_bef.m2", + }, + { + fileId = "139622", + value = "helm_mail_raidhunter_a_01_bem.m2", + text = "helm_mail_raidhunter_a_01_bem.m2", + }, + { + fileId = "139623", + value = "helm_mail_raidhunter_a_01_drf.m2", + text = "helm_mail_raidhunter_a_01_drf.m2", + }, + { + fileId = "139624", + value = "helm_mail_raidhunter_a_01_drm.m2", + text = "helm_mail_raidhunter_a_01_drm.m2", + }, + { + fileId = "139625", + value = "helm_mail_raidhunter_a_01_dwf.m2", + text = "helm_mail_raidhunter_a_01_dwf.m2", + }, + { + fileId = "139626", + value = "helm_mail_raidhunter_a_01_dwm.m2", + text = "helm_mail_raidhunter_a_01_dwm.m2", + }, + { + fileId = "139627", + value = "helm_mail_raidhunter_a_01_gnf.m2", + text = "helm_mail_raidhunter_a_01_gnf.m2", + }, + { + fileId = "139628", + value = "helm_mail_raidhunter_a_01_gnm.m2", + text = "helm_mail_raidhunter_a_01_gnm.m2", + }, + { + fileId = "139629", + value = "helm_mail_raidhunter_a_01_huf.m2", + text = "helm_mail_raidhunter_a_01_huf.m2", + }, + { + fileId = "139630", + value = "helm_mail_raidhunter_a_01_hum.m2", + text = "helm_mail_raidhunter_a_01_hum.m2", + }, + { + fileId = "139631", + value = "helm_mail_raidhunter_a_01_nif.m2", + text = "helm_mail_raidhunter_a_01_nif.m2", + }, + { + fileId = "139632", + value = "helm_mail_raidhunter_a_01_nim.m2", + text = "helm_mail_raidhunter_a_01_nim.m2", + }, + { + fileId = "139633", + value = "helm_mail_raidhunter_a_01_orf.m2", + text = "helm_mail_raidhunter_a_01_orf.m2", + }, + { + fileId = "139634", + value = "helm_mail_raidhunter_a_01_orm.m2", + text = "helm_mail_raidhunter_a_01_orm.m2", + }, + { + fileId = "139635", + value = "helm_mail_raidhunter_a_01_scf.m2", + text = "helm_mail_raidhunter_a_01_scf.m2", + }, + { + fileId = "139636", + value = "helm_mail_raidhunter_a_01_scm.m2", + text = "helm_mail_raidhunter_a_01_scm.m2", + }, + { + fileId = "139637", + value = "helm_mail_raidhunter_a_01_taf.m2", + text = "helm_mail_raidhunter_a_01_taf.m2", + }, + { + fileId = "139638", + value = "helm_mail_raidhunter_a_01_tam.m2", + text = "helm_mail_raidhunter_a_01_tam.m2", + }, + { + fileId = "139639", + value = "helm_mail_raidhunter_a_01_trf.m2", + text = "helm_mail_raidhunter_a_01_trf.m2", + }, + { + fileId = "139640", + value = "helm_mail_raidhunter_a_01_trm.m2", + text = "helm_mail_raidhunter_a_01_trm.m2", + }, + { + fileId = "139645", + value = "helm_mail_raidhunter_b_01_bef.m2", + text = "helm_mail_raidhunter_b_01_bef.m2", + }, + { + fileId = "139646", + value = "helm_mail_raidhunter_b_01_bem.m2", + text = "helm_mail_raidhunter_b_01_bem.m2", + }, + { + fileId = "139647", + value = "helm_mail_raidhunter_b_01_drf.m2", + text = "helm_mail_raidhunter_b_01_drf.m2", + }, + { + fileId = "139648", + value = "helm_mail_raidhunter_b_01_drm.m2", + text = "helm_mail_raidhunter_b_01_drm.m2", + }, + { + fileId = "139649", + value = "helm_mail_raidhunter_b_01_dwf.m2", + text = "helm_mail_raidhunter_b_01_dwf.m2", + }, + { + fileId = "139650", + value = "helm_mail_raidhunter_b_01_dwm.m2", + text = "helm_mail_raidhunter_b_01_dwm.m2", + }, + { + fileId = "139651", + value = "helm_mail_raidhunter_b_01_gnf.m2", + text = "helm_mail_raidhunter_b_01_gnf.m2", + }, + { + fileId = "139652", + value = "helm_mail_raidhunter_b_01_gnm.m2", + text = "helm_mail_raidhunter_b_01_gnm.m2", + }, + { + fileId = "139653", + value = "helm_mail_raidhunter_b_01_gof.m2", + text = "helm_mail_raidhunter_b_01_gof.m2", + }, + { + fileId = "139654", + value = "helm_mail_raidhunter_b_01_gom.m2", + text = "helm_mail_raidhunter_b_01_gom.m2", + }, + { + fileId = "139655", + value = "helm_mail_raidhunter_b_01_huf.m2", + text = "helm_mail_raidhunter_b_01_huf.m2", + }, + { + fileId = "139656", + value = "helm_mail_raidhunter_b_01_hum.m2", + text = "helm_mail_raidhunter_b_01_hum.m2", + }, + { + fileId = "139657", + value = "helm_mail_raidhunter_b_01_nif.m2", + text = "helm_mail_raidhunter_b_01_nif.m2", + }, + { + fileId = "139658", + value = "helm_mail_raidhunter_b_01_nim.m2", + text = "helm_mail_raidhunter_b_01_nim.m2", + }, + { + fileId = "139659", + value = "helm_mail_raidhunter_b_01_orf.m2", + text = "helm_mail_raidhunter_b_01_orf.m2", + }, + { + fileId = "139660", + value = "helm_mail_raidhunter_b_01_orm.m2", + text = "helm_mail_raidhunter_b_01_orm.m2", + }, + { + fileId = "139661", + value = "helm_mail_raidhunter_b_01_scf.m2", + text = "helm_mail_raidhunter_b_01_scf.m2", + }, + { + fileId = "139662", + value = "helm_mail_raidhunter_b_01_scm.m2", + text = "helm_mail_raidhunter_b_01_scm.m2", + }, + { + fileId = "139663", + value = "helm_mail_raidhunter_b_01_taf.m2", + text = "helm_mail_raidhunter_b_01_taf.m2", + }, + { + fileId = "139664", + value = "helm_mail_raidhunter_b_01_tam.m2", + text = "helm_mail_raidhunter_b_01_tam.m2", + }, + { + fileId = "139665", + value = "helm_mail_raidhunter_b_01_trf.m2", + text = "helm_mail_raidhunter_b_01_trf.m2", + }, + { + fileId = "139666", + value = "helm_mail_raidhunter_b_01_trm.m2", + text = "helm_mail_raidhunter_b_01_trm.m2", + }, + { + fileId = "139672", + value = "helm_mail_raidhunter_c_01_bef.m2", + text = "helm_mail_raidhunter_c_01_bef.m2", + }, + { + fileId = "139673", + value = "helm_mail_raidhunter_c_01_bem.m2", + text = "helm_mail_raidhunter_c_01_bem.m2", + }, + { + fileId = "139674", + value = "helm_mail_raidhunter_c_01_drf.m2", + text = "helm_mail_raidhunter_c_01_drf.m2", + }, + { + fileId = "139675", + value = "helm_mail_raidhunter_c_01_drm.m2", + text = "helm_mail_raidhunter_c_01_drm.m2", + }, + { + fileId = "139676", + value = "helm_mail_raidhunter_c_01_dwf.m2", + text = "helm_mail_raidhunter_c_01_dwf.m2", + }, + { + fileId = "139677", + value = "helm_mail_raidhunter_c_01_dwm.m2", + text = "helm_mail_raidhunter_c_01_dwm.m2", + }, + { + fileId = "139678", + value = "helm_mail_raidhunter_c_01_gnf.m2", + text = "helm_mail_raidhunter_c_01_gnf.m2", + }, + { + fileId = "139679", + value = "helm_mail_raidhunter_c_01_gnm.m2", + text = "helm_mail_raidhunter_c_01_gnm.m2", + }, + { + fileId = "139680", + value = "helm_mail_raidhunter_c_01_gof.m2", + text = "helm_mail_raidhunter_c_01_gof.m2", + }, + { + fileId = "139681", + value = "helm_mail_raidhunter_c_01_gom.m2", + text = "helm_mail_raidhunter_c_01_gom.m2", + }, + { + fileId = "139682", + value = "helm_mail_raidhunter_c_01_huf.m2", + text = "helm_mail_raidhunter_c_01_huf.m2", + }, + { + fileId = "139683", + value = "helm_mail_raidhunter_c_01_hum.m2", + text = "helm_mail_raidhunter_c_01_hum.m2", + }, + { + fileId = "139684", + value = "helm_mail_raidhunter_c_01_nif.m2", + text = "helm_mail_raidhunter_c_01_nif.m2", + }, + { + fileId = "139685", + value = "helm_mail_raidhunter_c_01_nim.m2", + text = "helm_mail_raidhunter_c_01_nim.m2", + }, + { + fileId = "139686", + value = "helm_mail_raidhunter_c_01_orf.m2", + text = "helm_mail_raidhunter_c_01_orf.m2", + }, + { + fileId = "139687", + value = "helm_mail_raidhunter_c_01_orm.m2", + text = "helm_mail_raidhunter_c_01_orm.m2", + }, + { + fileId = "139688", + value = "helm_mail_raidhunter_c_01_scf.m2", + text = "helm_mail_raidhunter_c_01_scf.m2", + }, + { + fileId = "139689", + value = "helm_mail_raidhunter_c_01_scm.m2", + text = "helm_mail_raidhunter_c_01_scm.m2", + }, + { + fileId = "139690", + value = "helm_mail_raidhunter_c_01_taf.m2", + text = "helm_mail_raidhunter_c_01_taf.m2", + }, + { + fileId = "139691", + value = "helm_mail_raidhunter_c_01_tam.m2", + text = "helm_mail_raidhunter_c_01_tam.m2", + }, + { + fileId = "139692", + value = "helm_mail_raidhunter_c_01_trf.m2", + text = "helm_mail_raidhunter_c_01_trf.m2", + }, + { + fileId = "139693", + value = "helm_mail_raidhunter_c_01_trm.m2", + text = "helm_mail_raidhunter_c_01_trm.m2", + }, + { + fileId = "139696", + value = "helm_mail_raidhunter_d_01_bef.m2", + text = "helm_mail_raidhunter_d_01_bef.m2", + }, + { + fileId = "139697", + value = "helm_mail_raidhunter_d_01_bem.m2", + text = "helm_mail_raidhunter_d_01_bem.m2", + }, + { + fileId = "139698", + value = "helm_mail_raidhunter_d_01_drf.m2", + text = "helm_mail_raidhunter_d_01_drf.m2", + }, + { + fileId = "139699", + value = "helm_mail_raidhunter_d_01_drm.m2", + text = "helm_mail_raidhunter_d_01_drm.m2", + }, + { + fileId = "139700", + value = "helm_mail_raidhunter_d_01_dwf.m2", + text = "helm_mail_raidhunter_d_01_dwf.m2", + }, + { + fileId = "139701", + value = "helm_mail_raidhunter_d_01_dwm.m2", + text = "helm_mail_raidhunter_d_01_dwm.m2", + }, + { + fileId = "139702", + value = "helm_mail_raidhunter_d_01_gnf.m2", + text = "helm_mail_raidhunter_d_01_gnf.m2", + }, + { + fileId = "139703", + value = "helm_mail_raidhunter_d_01_gnm.m2", + text = "helm_mail_raidhunter_d_01_gnm.m2", + }, + { + fileId = "139704", + value = "helm_mail_raidhunter_d_01_gom.m2", + text = "helm_mail_raidhunter_d_01_gom.m2", + }, + { + fileId = "139705", + value = "helm_mail_raidhunter_d_01_huf.m2", + text = "helm_mail_raidhunter_d_01_huf.m2", + }, + { + fileId = "139706", + value = "helm_mail_raidhunter_d_01_hum.m2", + text = "helm_mail_raidhunter_d_01_hum.m2", + }, + { + fileId = "139707", + value = "helm_mail_raidhunter_d_01_nif.m2", + text = "helm_mail_raidhunter_d_01_nif.m2", + }, + { + fileId = "139708", + value = "helm_mail_raidhunter_d_01_nim.m2", + text = "helm_mail_raidhunter_d_01_nim.m2", + }, + { + fileId = "139709", + value = "helm_mail_raidhunter_d_01_orf.m2", + text = "helm_mail_raidhunter_d_01_orf.m2", + }, + { + fileId = "139710", + value = "helm_mail_raidhunter_d_01_orm.m2", + text = "helm_mail_raidhunter_d_01_orm.m2", + }, + { + fileId = "139711", + value = "helm_mail_raidhunter_d_01_scf.m2", + text = "helm_mail_raidhunter_d_01_scf.m2", + }, + { + fileId = "139712", + value = "helm_mail_raidhunter_d_01_scm.m2", + text = "helm_mail_raidhunter_d_01_scm.m2", + }, + { + fileId = "139713", + value = "helm_mail_raidhunter_d_01_taf.m2", + text = "helm_mail_raidhunter_d_01_taf.m2", + }, + { + fileId = "139714", + value = "helm_mail_raidhunter_d_01_tam.m2", + text = "helm_mail_raidhunter_d_01_tam.m2", + }, + { + fileId = "139715", + value = "helm_mail_raidhunter_d_01_trf.m2", + text = "helm_mail_raidhunter_d_01_trf.m2", + }, + { + fileId = "139716", + value = "helm_mail_raidhunter_d_01_trm.m2", + text = "helm_mail_raidhunter_d_01_trm.m2", + }, + { + fileId = "139719", + value = "helm_mail_raidhunter_e_01_bef.m2", + text = "helm_mail_raidhunter_e_01_bef.m2", + }, + { + fileId = "139720", + value = "helm_mail_raidhunter_e_01_bem.m2", + text = "helm_mail_raidhunter_e_01_bem.m2", + }, + { + fileId = "139721", + value = "helm_mail_raidhunter_e_01_drf.m2", + text = "helm_mail_raidhunter_e_01_drf.m2", + }, + { + fileId = "139722", + value = "helm_mail_raidhunter_e_01_drm.m2", + text = "helm_mail_raidhunter_e_01_drm.m2", + }, + { + fileId = "139723", + value = "helm_mail_raidhunter_e_01_dwf.m2", + text = "helm_mail_raidhunter_e_01_dwf.m2", + }, + { + fileId = "139724", + value = "helm_mail_raidhunter_e_01_dwm.m2", + text = "helm_mail_raidhunter_e_01_dwm.m2", + }, + { + fileId = "139725", + value = "helm_mail_raidhunter_e_01_gnf.m2", + text = "helm_mail_raidhunter_e_01_gnf.m2", + }, + { + fileId = "139726", + value = "helm_mail_raidhunter_e_01_gnm.m2", + text = "helm_mail_raidhunter_e_01_gnm.m2", + }, + { + fileId = "139727", + value = "helm_mail_raidhunter_e_01_gof.m2", + text = "helm_mail_raidhunter_e_01_gof.m2", + }, + { + fileId = "139728", + value = "helm_mail_raidhunter_e_01_gom.m2", + text = "helm_mail_raidhunter_e_01_gom.m2", + }, + { + fileId = "139729", + value = "helm_mail_raidhunter_e_01_huf.m2", + text = "helm_mail_raidhunter_e_01_huf.m2", + }, + { + fileId = "139730", + value = "helm_mail_raidhunter_e_01_hum.m2", + text = "helm_mail_raidhunter_e_01_hum.m2", + }, + { + fileId = "139731", + value = "helm_mail_raidhunter_e_01_nif.m2", + text = "helm_mail_raidhunter_e_01_nif.m2", + }, + { + fileId = "139732", + value = "helm_mail_raidhunter_e_01_nim.m2", + text = "helm_mail_raidhunter_e_01_nim.m2", + }, + { + fileId = "139733", + value = "helm_mail_raidhunter_e_01_orf.m2", + text = "helm_mail_raidhunter_e_01_orf.m2", + }, + { + fileId = "139734", + value = "helm_mail_raidhunter_e_01_orm.m2", + text = "helm_mail_raidhunter_e_01_orm.m2", + }, + { + fileId = "139735", + value = "helm_mail_raidhunter_e_01_scf.m2", + text = "helm_mail_raidhunter_e_01_scf.m2", + }, + { + fileId = "139736", + value = "helm_mail_raidhunter_e_01_scm.m2", + text = "helm_mail_raidhunter_e_01_scm.m2", + }, + { + fileId = "139737", + value = "helm_mail_raidhunter_e_01_taf.m2", + text = "helm_mail_raidhunter_e_01_taf.m2", + }, + { + fileId = "139738", + value = "helm_mail_raidhunter_e_01_tam.m2", + text = "helm_mail_raidhunter_e_01_tam.m2", + }, + { + fileId = "139739", + value = "helm_mail_raidhunter_e_01_trf.m2", + text = "helm_mail_raidhunter_e_01_trf.m2", + }, + { + fileId = "139740", + value = "helm_mail_raidhunter_e_01_trm.m2", + text = "helm_mail_raidhunter_e_01_trm.m2", + }, + { + fileId = "139743", + value = "helm_mail_raidhunter_f_01_bef.m2", + text = "helm_mail_raidhunter_f_01_bef.m2", + }, + { + fileId = "139744", + value = "helm_mail_raidhunter_f_01_bem.m2", + text = "helm_mail_raidhunter_f_01_bem.m2", + }, + { + fileId = "139745", + value = "helm_mail_raidhunter_f_01_drf.m2", + text = "helm_mail_raidhunter_f_01_drf.m2", + }, + { + fileId = "139746", + value = "helm_mail_raidhunter_f_01_drm.m2", + text = "helm_mail_raidhunter_f_01_drm.m2", + }, + { + fileId = "139747", + value = "helm_mail_raidhunter_f_01_dwf.m2", + text = "helm_mail_raidhunter_f_01_dwf.m2", + }, + { + fileId = "139748", + value = "helm_mail_raidhunter_f_01_dwm.m2", + text = "helm_mail_raidhunter_f_01_dwm.m2", + }, + { + fileId = "139749", + value = "helm_mail_raidhunter_f_01_gnf.m2", + text = "helm_mail_raidhunter_f_01_gnf.m2", + }, + { + fileId = "139750", + value = "helm_mail_raidhunter_f_01_gnm.m2", + text = "helm_mail_raidhunter_f_01_gnm.m2", + }, + { + fileId = "139751", + value = "helm_mail_raidhunter_f_01_gof.m2", + text = "helm_mail_raidhunter_f_01_gof.m2", + }, + { + fileId = "139752", + value = "helm_mail_raidhunter_f_01_gom.m2", + text = "helm_mail_raidhunter_f_01_gom.m2", + }, + { + fileId = "139753", + value = "helm_mail_raidhunter_f_01_huf.m2", + text = "helm_mail_raidhunter_f_01_huf.m2", + }, + { + fileId = "139754", + value = "helm_mail_raidhunter_f_01_hum.m2", + text = "helm_mail_raidhunter_f_01_hum.m2", + }, + { + fileId = "139755", + value = "helm_mail_raidhunter_f_01_nif.m2", + text = "helm_mail_raidhunter_f_01_nif.m2", + }, + { + fileId = "139756", + value = "helm_mail_raidhunter_f_01_nim.m2", + text = "helm_mail_raidhunter_f_01_nim.m2", + }, + { + fileId = "139757", + value = "helm_mail_raidhunter_f_01_orf.m2", + text = "helm_mail_raidhunter_f_01_orf.m2", + }, + { + fileId = "139758", + value = "helm_mail_raidhunter_f_01_orm.m2", + text = "helm_mail_raidhunter_f_01_orm.m2", + }, + { + fileId = "139759", + value = "helm_mail_raidhunter_f_01_scf.m2", + text = "helm_mail_raidhunter_f_01_scf.m2", + }, + { + fileId = "139760", + value = "helm_mail_raidhunter_f_01_scm.m2", + text = "helm_mail_raidhunter_f_01_scm.m2", + }, + { + fileId = "139761", + value = "helm_mail_raidhunter_f_01_taf.m2", + text = "helm_mail_raidhunter_f_01_taf.m2", + }, + { + fileId = "139762", + value = "helm_mail_raidhunter_f_01_tam.m2", + text = "helm_mail_raidhunter_f_01_tam.m2", + }, + { + fileId = "139763", + value = "helm_mail_raidhunter_f_01_trf.m2", + text = "helm_mail_raidhunter_f_01_trf.m2", + }, + { + fileId = "139764", + value = "helm_mail_raidhunter_f_01_trm.m2", + text = "helm_mail_raidhunter_f_01_trm.m2", + }, + { + fileId = "139796", + value = "helm_mail_raidshaman_a_01_bef.m2", + text = "helm_mail_raidshaman_a_01_bef.m2", + }, + { + fileId = "139797", + value = "helm_mail_raidshaman_a_01_bem.m2", + text = "helm_mail_raidshaman_a_01_bem.m2", + }, + { + fileId = "139798", + value = "helm_mail_raidshaman_a_01_drf.m2", + text = "helm_mail_raidshaman_a_01_drf.m2", + }, + { + fileId = "139799", + value = "helm_mail_raidshaman_a_01_drm.m2", + text = "helm_mail_raidshaman_a_01_drm.m2", + }, + { + fileId = "139800", + value = "helm_mail_raidshaman_a_01_dwf.m2", + text = "helm_mail_raidshaman_a_01_dwf.m2", + }, + { + fileId = "139801", + value = "helm_mail_raidshaman_a_01_dwm.m2", + text = "helm_mail_raidshaman_a_01_dwm.m2", + }, + { + fileId = "139802", + value = "helm_mail_raidshaman_a_01_gnf.m2", + text = "helm_mail_raidshaman_a_01_gnf.m2", + }, + { + fileId = "139803", + value = "helm_mail_raidshaman_a_01_gnm.m2", + text = "helm_mail_raidshaman_a_01_gnm.m2", + }, + { + fileId = "139804", + value = "helm_mail_raidshaman_a_01_gof.m2", + text = "helm_mail_raidshaman_a_01_gof.m2", + }, + { + fileId = "139805", + value = "helm_mail_raidshaman_a_01_gom.m2", + text = "helm_mail_raidshaman_a_01_gom.m2", + }, + { + fileId = "139806", + value = "helm_mail_raidshaman_a_01_huf.m2", + text = "helm_mail_raidshaman_a_01_huf.m2", + }, + { + fileId = "139807", + value = "helm_mail_raidshaman_a_01_hum.m2", + text = "helm_mail_raidshaman_a_01_hum.m2", + }, + { + fileId = "139808", + value = "helm_mail_raidshaman_a_01_nif.m2", + text = "helm_mail_raidshaman_a_01_nif.m2", + }, + { + fileId = "139809", + value = "helm_mail_raidshaman_a_01_nim.m2", + text = "helm_mail_raidshaman_a_01_nim.m2", + }, + { + fileId = "139810", + value = "helm_mail_raidshaman_a_01_orf.m2", + text = "helm_mail_raidshaman_a_01_orf.m2", + }, + { + fileId = "139811", + value = "helm_mail_raidshaman_a_01_orm.m2", + text = "helm_mail_raidshaman_a_01_orm.m2", + }, + { + fileId = "139812", + value = "helm_mail_raidshaman_a_01_scf.m2", + text = "helm_mail_raidshaman_a_01_scf.m2", + }, + { + fileId = "139813", + value = "helm_mail_raidshaman_a_01_scm.m2", + text = "helm_mail_raidshaman_a_01_scm.m2", + }, + { + fileId = "139814", + value = "helm_mail_raidshaman_a_01_taf.m2", + text = "helm_mail_raidshaman_a_01_taf.m2", + }, + { + fileId = "139815", + value = "helm_mail_raidshaman_a_01_tam.m2", + text = "helm_mail_raidshaman_a_01_tam.m2", + }, + { + fileId = "139816", + value = "helm_mail_raidshaman_a_01_trf.m2", + text = "helm_mail_raidshaman_a_01_trf.m2", + }, + { + fileId = "139817", + value = "helm_mail_raidshaman_a_01_trm.m2", + text = "helm_mail_raidshaman_a_01_trm.m2", + }, + { + fileId = "139824", + value = "helm_mail_raidshaman_b_01_bef.m2", + text = "helm_mail_raidshaman_b_01_bef.m2", + }, + { + fileId = "139825", + value = "helm_mail_raidshaman_b_01_bem.m2", + text = "helm_mail_raidshaman_b_01_bem.m2", + }, + { + fileId = "139826", + value = "helm_mail_raidshaman_b_01_drf.m2", + text = "helm_mail_raidshaman_b_01_drf.m2", + }, + { + fileId = "139827", + value = "helm_mail_raidshaman_b_01_drm.m2", + text = "helm_mail_raidshaman_b_01_drm.m2", + }, + { + fileId = "139828", + value = "helm_mail_raidshaman_b_01_dwf.m2", + text = "helm_mail_raidshaman_b_01_dwf.m2", + }, + { + fileId = "139829", + value = "helm_mail_raidshaman_b_01_dwm.m2", + text = "helm_mail_raidshaman_b_01_dwm.m2", + }, + { + fileId = "139830", + value = "helm_mail_raidshaman_b_01_gnf.m2", + text = "helm_mail_raidshaman_b_01_gnf.m2", + }, + { + fileId = "139831", + value = "helm_mail_raidshaman_b_01_gnm.m2", + text = "helm_mail_raidshaman_b_01_gnm.m2", + }, + { + fileId = "139832", + value = "helm_mail_raidshaman_b_01_gof.m2", + text = "helm_mail_raidshaman_b_01_gof.m2", + }, + { + fileId = "139833", + value = "helm_mail_raidshaman_b_01_gom.m2", + text = "helm_mail_raidshaman_b_01_gom.m2", + }, + { + fileId = "139834", + value = "helm_mail_raidshaman_b_01_huf.m2", + text = "helm_mail_raidshaman_b_01_huf.m2", + }, + { + fileId = "139835", + value = "helm_mail_raidshaman_b_01_hum.m2", + text = "helm_mail_raidshaman_b_01_hum.m2", + }, + { + fileId = "139836", + value = "helm_mail_raidshaman_b_01_nif.m2", + text = "helm_mail_raidshaman_b_01_nif.m2", + }, + { + fileId = "139837", + value = "helm_mail_raidshaman_b_01_nim.m2", + text = "helm_mail_raidshaman_b_01_nim.m2", + }, + { + fileId = "139838", + value = "helm_mail_raidshaman_b_01_orf.m2", + text = "helm_mail_raidshaman_b_01_orf.m2", + }, + { + fileId = "139839", + value = "helm_mail_raidshaman_b_01_orm.m2", + text = "helm_mail_raidshaman_b_01_orm.m2", + }, + { + fileId = "139840", + value = "helm_mail_raidshaman_b_01_scf.m2", + text = "helm_mail_raidshaman_b_01_scf.m2", + }, + { + fileId = "139841", + value = "helm_mail_raidshaman_b_01_scm.m2", + text = "helm_mail_raidshaman_b_01_scm.m2", + }, + { + fileId = "139842", + value = "helm_mail_raidshaman_b_01_taf.m2", + text = "helm_mail_raidshaman_b_01_taf.m2", + }, + { + fileId = "139843", + value = "helm_mail_raidshaman_b_01_tam.m2", + text = "helm_mail_raidshaman_b_01_tam.m2", + }, + { + fileId = "139844", + value = "helm_mail_raidshaman_b_01_trf.m2", + text = "helm_mail_raidshaman_b_01_trf.m2", + }, + { + fileId = "139845", + value = "helm_mail_raidshaman_b_01_trm.m2", + text = "helm_mail_raidshaman_b_01_trm.m2", + }, + { + fileId = "139851", + value = "helm_mail_raidshaman_d_01_bef.m2", + text = "helm_mail_raidshaman_d_01_bef.m2", + }, + { + fileId = "139852", + value = "helm_mail_raidshaman_d_01_bem.m2", + text = "helm_mail_raidshaman_d_01_bem.m2", + }, + { + fileId = "139853", + value = "helm_mail_raidshaman_d_01_drf.m2", + text = "helm_mail_raidshaman_d_01_drf.m2", + }, + { + fileId = "139854", + value = "helm_mail_raidshaman_d_01_drm.m2", + text = "helm_mail_raidshaman_d_01_drm.m2", + }, + { + fileId = "139855", + value = "helm_mail_raidshaman_d_01_dwf.m2", + text = "helm_mail_raidshaman_d_01_dwf.m2", + }, + { + fileId = "139856", + value = "helm_mail_raidshaman_d_01_dwm.m2", + text = "helm_mail_raidshaman_d_01_dwm.m2", + }, + { + fileId = "139857", + value = "helm_mail_raidshaman_d_01_gnf.m2", + text = "helm_mail_raidshaman_d_01_gnf.m2", + }, + { + fileId = "139858", + value = "helm_mail_raidshaman_d_01_gnm.m2", + text = "helm_mail_raidshaman_d_01_gnm.m2", + }, + { + fileId = "139859", + value = "helm_mail_raidshaman_d_01_gof.m2", + text = "helm_mail_raidshaman_d_01_gof.m2", + }, + { + fileId = "139860", + value = "helm_mail_raidshaman_d_01_gom.m2", + text = "helm_mail_raidshaman_d_01_gom.m2", + }, + { + fileId = "139862", + value = "helm_mail_raidshaman_d_01_huf.m2", + text = "helm_mail_raidshaman_d_01_huf.m2", + }, + { + fileId = "139863", + value = "helm_mail_raidshaman_d_01_hum.m2", + text = "helm_mail_raidshaman_d_01_hum.m2", + }, + { + fileId = "139864", + value = "helm_mail_raidshaman_d_01_nif.m2", + text = "helm_mail_raidshaman_d_01_nif.m2", + }, + { + fileId = "139865", + value = "helm_mail_raidshaman_d_01_nim.m2", + text = "helm_mail_raidshaman_d_01_nim.m2", + }, + { + fileId = "139866", + value = "helm_mail_raidshaman_d_01_orf.m2", + text = "helm_mail_raidshaman_d_01_orf.m2", + }, + { + fileId = "139867", + value = "helm_mail_raidshaman_d_01_orm.m2", + text = "helm_mail_raidshaman_d_01_orm.m2", + }, + { + fileId = "139868", + value = "helm_mail_raidshaman_d_01_scf.m2", + text = "helm_mail_raidshaman_d_01_scf.m2", + }, + { + fileId = "139869", + value = "helm_mail_raidshaman_d_01_scm.m2", + text = "helm_mail_raidshaman_d_01_scm.m2", + }, + { + fileId = "139870", + value = "helm_mail_raidshaman_d_01_taf.m2", + text = "helm_mail_raidshaman_d_01_taf.m2", + }, + { + fileId = "139871", + value = "helm_mail_raidshaman_d_01_tam.m2", + text = "helm_mail_raidshaman_d_01_tam.m2", + }, + { + fileId = "139872", + value = "helm_mail_raidshaman_d_01_trf.m2", + text = "helm_mail_raidshaman_d_01_trf.m2", + }, + { + fileId = "139873", + value = "helm_mail_raidshaman_d_01_trm.m2", + text = "helm_mail_raidshaman_d_01_trm.m2", + }, + { + fileId = "139876", + value = "helm_mail_raidshaman_e_01_bef.m2", + text = "helm_mail_raidshaman_e_01_bef.m2", + }, + { + fileId = "139877", + value = "helm_mail_raidshaman_e_01_bem.m2", + text = "helm_mail_raidshaman_e_01_bem.m2", + }, + { + fileId = "139878", + value = "helm_mail_raidshaman_e_01_drf.m2", + text = "helm_mail_raidshaman_e_01_drf.m2", + }, + { + fileId = "139879", + value = "helm_mail_raidshaman_e_01_drm.m2", + text = "helm_mail_raidshaman_e_01_drm.m2", + }, + { + fileId = "139880", + value = "helm_mail_raidshaman_e_01_dwf.m2", + text = "helm_mail_raidshaman_e_01_dwf.m2", + }, + { + fileId = "139881", + value = "helm_mail_raidshaman_e_01_dwm.m2", + text = "helm_mail_raidshaman_e_01_dwm.m2", + }, + { + fileId = "139882", + value = "helm_mail_raidshaman_e_01_gnf.m2", + text = "helm_mail_raidshaman_e_01_gnf.m2", + }, + { + fileId = "139883", + value = "helm_mail_raidshaman_e_01_gnm.m2", + text = "helm_mail_raidshaman_e_01_gnm.m2", + }, + { + fileId = "139884", + value = "helm_mail_raidshaman_e_01_gof.m2", + text = "helm_mail_raidshaman_e_01_gof.m2", + }, + { + fileId = "139885", + value = "helm_mail_raidshaman_e_01_gom.m2", + text = "helm_mail_raidshaman_e_01_gom.m2", + }, + { + fileId = "139886", + value = "helm_mail_raidshaman_e_01_huf.m2", + text = "helm_mail_raidshaman_e_01_huf.m2", + }, + { + fileId = "139887", + value = "helm_mail_raidshaman_e_01_hum.m2", + text = "helm_mail_raidshaman_e_01_hum.m2", + }, + { + fileId = "139888", + value = "helm_mail_raidshaman_e_01_nif.m2", + text = "helm_mail_raidshaman_e_01_nif.m2", + }, + { + fileId = "139889", + value = "helm_mail_raidshaman_e_01_nim.m2", + text = "helm_mail_raidshaman_e_01_nim.m2", + }, + { + fileId = "139890", + value = "helm_mail_raidshaman_e_01_orf.m2", + text = "helm_mail_raidshaman_e_01_orf.m2", + }, + { + fileId = "139891", + value = "helm_mail_raidshaman_e_01_orm.m2", + text = "helm_mail_raidshaman_e_01_orm.m2", + }, + { + fileId = "139892", + value = "helm_mail_raidshaman_e_01_scf.m2", + text = "helm_mail_raidshaman_e_01_scf.m2", + }, + { + fileId = "139893", + value = "helm_mail_raidshaman_e_01_scm.m2", + text = "helm_mail_raidshaman_e_01_scm.m2", + }, + { + fileId = "139894", + value = "helm_mail_raidshaman_e_01_taf.m2", + text = "helm_mail_raidshaman_e_01_taf.m2", + }, + { + fileId = "139895", + value = "helm_mail_raidshaman_e_01_tam.m2", + text = "helm_mail_raidshaman_e_01_tam.m2", + }, + { + fileId = "139896", + value = "helm_mail_raidshaman_e_01_trf.m2", + text = "helm_mail_raidshaman_e_01_trf.m2", + }, + { + fileId = "139897", + value = "helm_mail_raidshaman_e_01_trm.m2", + text = "helm_mail_raidshaman_e_01_trm.m2", + }, + { + fileId = "139900", + value = "helm_mail_raidshaman_f_01_bef.m2", + text = "helm_mail_raidshaman_f_01_bef.m2", + }, + { + fileId = "139901", + value = "helm_mail_raidshaman_f_01_bem.m2", + text = "helm_mail_raidshaman_f_01_bem.m2", + }, + { + fileId = "139902", + value = "helm_mail_raidshaman_f_01_drf.m2", + text = "helm_mail_raidshaman_f_01_drf.m2", + }, + { + fileId = "139903", + value = "helm_mail_raidshaman_f_01_drm.m2", + text = "helm_mail_raidshaman_f_01_drm.m2", + }, + { + fileId = "139904", + value = "helm_mail_raidshaman_f_01_dwf.m2", + text = "helm_mail_raidshaman_f_01_dwf.m2", + }, + { + fileId = "139905", + value = "helm_mail_raidshaman_f_01_dwm.m2", + text = "helm_mail_raidshaman_f_01_dwm.m2", + }, + { + fileId = "139906", + value = "helm_mail_raidshaman_f_01_gnf.m2", + text = "helm_mail_raidshaman_f_01_gnf.m2", + }, + { + fileId = "139907", + value = "helm_mail_raidshaman_f_01_gnm.m2", + text = "helm_mail_raidshaman_f_01_gnm.m2", + }, + { + fileId = "139908", + value = "helm_mail_raidshaman_f_01_gof.m2", + text = "helm_mail_raidshaman_f_01_gof.m2", + }, + { + fileId = "139909", + value = "helm_mail_raidshaman_f_01_gom.m2", + text = "helm_mail_raidshaman_f_01_gom.m2", + }, + { + fileId = "139910", + value = "helm_mail_raidshaman_f_01_huf.m2", + text = "helm_mail_raidshaman_f_01_huf.m2", + }, + { + fileId = "139911", + value = "helm_mail_raidshaman_f_01_hum.m2", + text = "helm_mail_raidshaman_f_01_hum.m2", + }, + { + fileId = "139912", + value = "helm_mail_raidshaman_f_01_nif.m2", + text = "helm_mail_raidshaman_f_01_nif.m2", + }, + { + fileId = "139913", + value = "helm_mail_raidshaman_f_01_nim.m2", + text = "helm_mail_raidshaman_f_01_nim.m2", + }, + { + fileId = "139914", + value = "helm_mail_raidshaman_f_01_orf.m2", + text = "helm_mail_raidshaman_f_01_orf.m2", + }, + { + fileId = "139915", + value = "helm_mail_raidshaman_f_01_orm.m2", + text = "helm_mail_raidshaman_f_01_orm.m2", + }, + { + fileId = "139916", + value = "helm_mail_raidshaman_f_01_scf.m2", + text = "helm_mail_raidshaman_f_01_scf.m2", + }, + { + fileId = "139917", + value = "helm_mail_raidshaman_f_01_scm.m2", + text = "helm_mail_raidshaman_f_01_scm.m2", + }, + { + fileId = "139918", + value = "helm_mail_raidshaman_f_01_taf.m2", + text = "helm_mail_raidshaman_f_01_taf.m2", + }, + { + fileId = "139919", + value = "helm_mail_raidshaman_f_01_tam.m2", + text = "helm_mail_raidshaman_f_01_tam.m2", + }, + { + fileId = "139920", + value = "helm_mail_raidshaman_f_01_trf.m2", + text = "helm_mail_raidshaman_f_01_trf.m2", + }, + { + fileId = "139921", + value = "helm_mail_raidshaman_f_01_trm.m2", + text = "helm_mail_raidshaman_f_01_trm.m2", + }, + { + fileId = "139926", + value = "helm_mail_sunwell_d_01_bef.m2", + text = "helm_mail_sunwell_d_01_bef.m2", + }, + { + fileId = "139927", + value = "helm_mail_sunwell_d_01_bem.m2", + text = "helm_mail_sunwell_d_01_bem.m2", + }, + { + fileId = "139928", + value = "helm_mail_sunwell_d_01_drf.m2", + text = "helm_mail_sunwell_d_01_drf.m2", + }, + { + fileId = "139929", + value = "helm_mail_sunwell_d_01_drm.m2", + text = "helm_mail_sunwell_d_01_drm.m2", + }, + { + fileId = "139930", + value = "helm_mail_sunwell_d_01_dwf.m2", + text = "helm_mail_sunwell_d_01_dwf.m2", + }, + { + fileId = "139931", + value = "helm_mail_sunwell_d_01_dwm.m2", + text = "helm_mail_sunwell_d_01_dwm.m2", + }, + { + fileId = "139932", + value = "helm_mail_sunwell_d_01_gnf.m2", + text = "helm_mail_sunwell_d_01_gnf.m2", + }, + { + fileId = "139933", + value = "helm_mail_sunwell_d_01_gnm.m2", + text = "helm_mail_sunwell_d_01_gnm.m2", + }, + { + fileId = "139934", + value = "helm_mail_sunwell_d_01_gof.m2", + text = "helm_mail_sunwell_d_01_gof.m2", + }, + { + fileId = "139935", + value = "helm_mail_sunwell_d_01_gom.m2", + text = "helm_mail_sunwell_d_01_gom.m2", + }, + { + fileId = "139936", + value = "helm_mail_sunwell_d_01_huf.m2", + text = "helm_mail_sunwell_d_01_huf.m2", + }, + { + fileId = "139937", + value = "helm_mail_sunwell_d_01_hum.m2", + text = "helm_mail_sunwell_d_01_hum.m2", + }, + { + fileId = "139938", + value = "helm_mail_sunwell_d_01_nif.m2", + text = "helm_mail_sunwell_d_01_nif.m2", + }, + { + fileId = "139939", + value = "helm_mail_sunwell_d_01_nim.m2", + text = "helm_mail_sunwell_d_01_nim.m2", + }, + { + fileId = "139940", + value = "helm_mail_sunwell_d_01_orf.m2", + text = "helm_mail_sunwell_d_01_orf.m2", + }, + { + fileId = "139941", + value = "helm_mail_sunwell_d_01_orm.m2", + text = "helm_mail_sunwell_d_01_orm.m2", + }, + { + fileId = "139942", + value = "helm_mail_sunwell_d_01_scf.m2", + text = "helm_mail_sunwell_d_01_scf.m2", + }, + { + fileId = "139943", + value = "helm_mail_sunwell_d_01_scm.m2", + text = "helm_mail_sunwell_d_01_scm.m2", + }, + { + fileId = "139944", + value = "helm_mail_sunwell_d_01_taf.m2", + text = "helm_mail_sunwell_d_01_taf.m2", + }, + { + fileId = "139945", + value = "helm_mail_sunwell_d_01_tam.m2", + text = "helm_mail_sunwell_d_01_tam.m2", + }, + { + fileId = "139946", + value = "helm_mail_sunwell_d_01_trf.m2", + text = "helm_mail_sunwell_d_01_trf.m2", + }, + { + fileId = "139947", + value = "helm_mail_sunwell_d_01_trm.m2", + text = "helm_mail_sunwell_d_01_trm.m2", + }, + { + fileId = "139953", + value = "helm_mail_zulaman_d_01_bef.m2", + text = "helm_mail_zulaman_d_01_bef.m2", + }, + { + fileId = "139954", + value = "helm_mail_zulaman_d_01_bem.m2", + text = "helm_mail_zulaman_d_01_bem.m2", + }, + { + fileId = "139955", + value = "helm_mail_zulaman_d_01_drf.m2", + text = "helm_mail_zulaman_d_01_drf.m2", + }, + { + fileId = "139956", + value = "helm_mail_zulaman_d_01_drm.m2", + text = "helm_mail_zulaman_d_01_drm.m2", + }, + { + fileId = "139957", + value = "helm_mail_zulaman_d_01_dwf.m2", + text = "helm_mail_zulaman_d_01_dwf.m2", + }, + { + fileId = "139958", + value = "helm_mail_zulaman_d_01_dwm.m2", + text = "helm_mail_zulaman_d_01_dwm.m2", + }, + { + fileId = "139959", + value = "helm_mail_zulaman_d_01_gnf.m2", + text = "helm_mail_zulaman_d_01_gnf.m2", + }, + { + fileId = "139960", + value = "helm_mail_zulaman_d_01_gnm.m2", + text = "helm_mail_zulaman_d_01_gnm.m2", + }, + { + fileId = "139961", + value = "helm_mail_zulaman_d_01_huf.m2", + text = "helm_mail_zulaman_d_01_huf.m2", + }, + { + fileId = "139962", + value = "helm_mail_zulaman_d_01_hum.m2", + text = "helm_mail_zulaman_d_01_hum.m2", + }, + { + fileId = "139963", + value = "helm_mail_zulaman_d_01_nif.m2", + text = "helm_mail_zulaman_d_01_nif.m2", + }, + { + fileId = "139964", + value = "helm_mail_zulaman_d_01_nim.m2", + text = "helm_mail_zulaman_d_01_nim.m2", + }, + { + fileId = "139965", + value = "helm_mail_zulaman_d_01_orf.m2", + text = "helm_mail_zulaman_d_01_orf.m2", + }, + { + fileId = "139966", + value = "helm_mail_zulaman_d_01_orm.m2", + text = "helm_mail_zulaman_d_01_orm.m2", + }, + { + fileId = "139967", + value = "helm_mail_zulaman_d_01_scf.m2", + text = "helm_mail_zulaman_d_01_scf.m2", + }, + { + fileId = "139968", + value = "helm_mail_zulaman_d_01_scm.m2", + text = "helm_mail_zulaman_d_01_scm.m2", + }, + { + fileId = "139969", + value = "helm_mail_zulaman_d_01_taf.m2", + text = "helm_mail_zulaman_d_01_taf.m2", + }, + { + fileId = "139970", + value = "helm_mail_zulaman_d_01_tam.m2", + text = "helm_mail_zulaman_d_01_tam.m2", + }, + { + fileId = "139971", + value = "helm_mail_zulaman_d_01_trf.m2", + text = "helm_mail_zulaman_d_01_trf.m2", + }, + { + fileId = "139972", + value = "helm_mail_zulaman_d_01_trm.m2", + text = "helm_mail_zulaman_d_01_trm.m2", + }, + { + fileId = "139978", + value = "helm_mail_zulaman_d_02_bef.m2", + text = "helm_mail_zulaman_d_02_bef.m2", + }, + { + fileId = "139979", + value = "helm_mail_zulaman_d_02_bem.m2", + text = "helm_mail_zulaman_d_02_bem.m2", + }, + { + fileId = "139980", + value = "helm_mail_zulaman_d_02_drf.m2", + text = "helm_mail_zulaman_d_02_drf.m2", + }, + { + fileId = "139981", + value = "helm_mail_zulaman_d_02_drm.m2", + text = "helm_mail_zulaman_d_02_drm.m2", + }, + { + fileId = "139982", + value = "helm_mail_zulaman_d_02_dwf.m2", + text = "helm_mail_zulaman_d_02_dwf.m2", + }, + { + fileId = "139983", + value = "helm_mail_zulaman_d_02_dwm.m2", + text = "helm_mail_zulaman_d_02_dwm.m2", + }, + { + fileId = "139984", + value = "helm_mail_zulaman_d_02_gnf.m2", + text = "helm_mail_zulaman_d_02_gnf.m2", + }, + { + fileId = "139985", + value = "helm_mail_zulaman_d_02_gnm.m2", + text = "helm_mail_zulaman_d_02_gnm.m2", + }, + { + fileId = "139986", + value = "helm_mail_zulaman_d_02_huf.m2", + text = "helm_mail_zulaman_d_02_huf.m2", + }, + { + fileId = "139987", + value = "helm_mail_zulaman_d_02_hum.m2", + text = "helm_mail_zulaman_d_02_hum.m2", + }, + { + fileId = "139988", + value = "helm_mail_zulaman_d_02_nif.m2", + text = "helm_mail_zulaman_d_02_nif.m2", + }, + { + fileId = "139989", + value = "helm_mail_zulaman_d_02_nim.m2", + text = "helm_mail_zulaman_d_02_nim.m2", + }, + { + fileId = "139990", + value = "helm_mail_zulaman_d_02_orf.m2", + text = "helm_mail_zulaman_d_02_orf.m2", + }, + { + fileId = "139991", + value = "helm_mail_zulaman_d_02_orm.m2", + text = "helm_mail_zulaman_d_02_orm.m2", + }, + { + fileId = "139992", + value = "helm_mail_zulaman_d_02_scf.m2", + text = "helm_mail_zulaman_d_02_scf.m2", + }, + { + fileId = "139993", + value = "helm_mail_zulaman_d_02_scm.m2", + text = "helm_mail_zulaman_d_02_scm.m2", + }, + { + fileId = "139994", + value = "helm_mail_zulaman_d_02_taf.m2", + text = "helm_mail_zulaman_d_02_taf.m2", + }, + { + fileId = "139995", + value = "helm_mail_zulaman_d_02_tam.m2", + text = "helm_mail_zulaman_d_02_tam.m2", + }, + { + fileId = "139996", + value = "helm_mail_zulaman_d_02_trf.m2", + text = "helm_mail_zulaman_d_02_trf.m2", + }, + { + fileId = "139997", + value = "helm_mail_zulaman_d_02_trm.m2", + text = "helm_mail_zulaman_d_02_trm.m2", + }, + { + fileId = "140002", + value = "helm_mask_a_01troll_bef.m2", + text = "helm_mask_a_01troll_bef.m2", + }, + { + fileId = "140003", + value = "helm_mask_a_01troll_bem.m2", + text = "helm_mask_a_01troll_bem.m2", + }, + { + fileId = "140004", + value = "helm_mask_a_01troll_drf.m2", + text = "helm_mask_a_01troll_drf.m2", + }, + { + fileId = "140005", + value = "helm_mask_a_01troll_drm.m2", + text = "helm_mask_a_01troll_drm.m2", + }, + { + fileId = "140006", + value = "helm_mask_a_01troll_dwf.m2", + text = "helm_mask_a_01troll_dwf.m2", + }, + { + fileId = "140007", + value = "helm_mask_a_01troll_dwm.m2", + text = "helm_mask_a_01troll_dwm.m2", + }, + { + fileId = "140008", + value = "helm_mask_a_01troll_gnf.m2", + text = "helm_mask_a_01troll_gnf.m2", + }, + { + fileId = "140009", + value = "helm_mask_a_01troll_gnm.m2", + text = "helm_mask_a_01troll_gnm.m2", + }, + { + fileId = "140010", + value = "helm_mask_a_01troll_gof.m2", + text = "helm_mask_a_01troll_gof.m2", + }, + { + fileId = "140011", + value = "helm_mask_a_01troll_gom.m2", + text = "helm_mask_a_01troll_gom.m2", + }, + { + fileId = "140012", + value = "helm_mask_a_01troll_huf.m2", + text = "helm_mask_a_01troll_huf.m2", + }, + { + fileId = "140013", + value = "helm_mask_a_01troll_hum.m2", + text = "helm_mask_a_01troll_hum.m2", + }, + { + fileId = "140014", + value = "helm_mask_a_01troll_nif.m2", + text = "helm_mask_a_01troll_nif.m2", + }, + { + fileId = "140015", + value = "helm_mask_a_01troll_nim.m2", + text = "helm_mask_a_01troll_nim.m2", + }, + { + fileId = "140016", + value = "helm_mask_a_01troll_orf.m2", + text = "helm_mask_a_01troll_orf.m2", + }, + { + fileId = "140017", + value = "helm_mask_a_01troll_orm.m2", + text = "helm_mask_a_01troll_orm.m2", + }, + { + fileId = "140018", + value = "helm_mask_a_01troll_scf.m2", + text = "helm_mask_a_01troll_scf.m2", + }, + { + fileId = "140019", + value = "helm_mask_a_01troll_scm.m2", + text = "helm_mask_a_01troll_scm.m2", + }, + { + fileId = "140020", + value = "helm_mask_a_01troll_taf.m2", + text = "helm_mask_a_01troll_taf.m2", + }, + { + fileId = "140021", + value = "helm_mask_a_01troll_tam.m2", + text = "helm_mask_a_01troll_tam.m2", + }, + { + fileId = "140022", + value = "helm_mask_a_01troll_trf.m2", + text = "helm_mask_a_01troll_trf.m2", + }, + { + fileId = "140023", + value = "helm_mask_a_01troll_trm.m2", + text = "helm_mask_a_01troll_trm.m2", + }, + { + fileId = "140024", + value = "helm_mask_b_01mirror_bef.m2", + text = "helm_mask_b_01mirror_bef.m2", + }, + { + fileId = "140025", + value = "helm_mask_b_01mirror_bem.m2", + text = "helm_mask_b_01mirror_bem.m2", + }, + { + fileId = "140026", + value = "helm_mask_b_01mirror_drf.m2", + text = "helm_mask_b_01mirror_drf.m2", + }, + { + fileId = "140027", + value = "helm_mask_b_01mirror_drm.m2", + text = "helm_mask_b_01mirror_drm.m2", + }, + { + fileId = "140028", + value = "helm_mask_b_01mirror_gof.m2", + text = "helm_mask_b_01mirror_gof.m2", + }, + { + fileId = "140029", + value = "helm_mask_b_01mirror_gom.m2", + text = "helm_mask_b_01mirror_gom.m2", + }, + { + fileId = "140031", + value = "helm_mask_halloween_bef.m2", + text = "helm_mask_halloween_bef.m2", + }, + { + fileId = "140032", + value = "helm_mask_halloween_bem.m2", + text = "helm_mask_halloween_bem.m2", + }, + { + fileId = "140036", + value = "helm_mask_halloween_drf.m2", + text = "helm_mask_halloween_drf.m2", + }, + { + fileId = "140038", + value = "helm_mask_halloween_drm.m2", + text = "helm_mask_halloween_drm.m2", + }, + { + fileId = "140040", + value = "helm_mask_halloween_dwf.m2", + text = "helm_mask_halloween_dwf.m2", + }, + { + fileId = "140042", + value = "helm_mask_halloween_dwm.m2", + text = "helm_mask_halloween_dwm.m2", + }, + { + fileId = "140044", + value = "helm_mask_halloween_gnf.m2", + text = "helm_mask_halloween_gnf.m2", + }, + { + fileId = "140046", + value = "helm_mask_halloween_gnm.m2", + text = "helm_mask_halloween_gnm.m2", + }, + { + fileId = "140047", + value = "helm_mask_halloween_gof.m2", + text = "helm_mask_halloween_gof.m2", + }, + { + fileId = "140048", + value = "helm_mask_halloween_gom.m2", + text = "helm_mask_halloween_gom.m2", + }, + { + fileId = "140050", + value = "helm_mask_halloween_huf.m2", + text = "helm_mask_halloween_huf.m2", + }, + { + fileId = "140052", + value = "helm_mask_halloween_hum.m2", + text = "helm_mask_halloween_hum.m2", + }, + { + fileId = "140054", + value = "helm_mask_halloween_nif.m2", + text = "helm_mask_halloween_nif.m2", + }, + { + fileId = "140056", + value = "helm_mask_halloween_nim.m2", + text = "helm_mask_halloween_nim.m2", + }, + { + fileId = "140058", + value = "helm_mask_halloween_orf.m2", + text = "helm_mask_halloween_orf.m2", + }, + { + fileId = "140060", + value = "helm_mask_halloween_orm.m2", + text = "helm_mask_halloween_orm.m2", + }, + { + fileId = "140062", + value = "helm_mask_halloween_scf.m2", + text = "helm_mask_halloween_scf.m2", + }, + { + fileId = "140064", + value = "helm_mask_halloween_scm.m2", + text = "helm_mask_halloween_scm.m2", + }, + { + fileId = "140066", + value = "helm_mask_halloween_taf.m2", + text = "helm_mask_halloween_taf.m2", + }, + { + fileId = "140068", + value = "helm_mask_halloween_tam.m2", + text = "helm_mask_halloween_tam.m2", + }, + { + fileId = "140070", + value = "helm_mask_halloween_trf.m2", + text = "helm_mask_halloween_trf.m2", + }, + { + fileId = "140072", + value = "helm_mask_halloween_trm.m2", + text = "helm_mask_halloween_trm.m2", + }, + { + fileId = "140097", + value = "helm_mask_pumpkin_bef.m2", + text = "helm_mask_pumpkin_bef.m2", + }, + { + fileId = "140098", + value = "helm_mask_pumpkin_bem.m2", + text = "helm_mask_pumpkin_bem.m2", + }, + { + fileId = "140099", + value = "helm_mask_pumpkin_drf.m2", + text = "helm_mask_pumpkin_drf.m2", + }, + { + fileId = "140100", + value = "helm_mask_pumpkin_drm.m2", + text = "helm_mask_pumpkin_drm.m2", + }, + { + fileId = "140101", + value = "helm_mask_pumpkin_dwf.m2", + text = "helm_mask_pumpkin_dwf.m2", + }, + { + fileId = "140102", + value = "helm_mask_pumpkin_dwm.m2", + text = "helm_mask_pumpkin_dwm.m2", + }, + { + fileId = "140103", + value = "helm_mask_pumpkin_gnf.m2", + text = "helm_mask_pumpkin_gnf.m2", + }, + { + fileId = "140104", + value = "helm_mask_pumpkin_gnm.m2", + text = "helm_mask_pumpkin_gnm.m2", + }, + { + fileId = "140105", + value = "helm_mask_pumpkin_gof.m2", + text = "helm_mask_pumpkin_gof.m2", + }, + { + fileId = "140106", + value = "helm_mask_pumpkin_gom.m2", + text = "helm_mask_pumpkin_gom.m2", + }, + { + fileId = "140107", + value = "helm_mask_pumpkin_huf.m2", + text = "helm_mask_pumpkin_huf.m2", + }, + { + fileId = "140108", + value = "helm_mask_pumpkin_hum.m2", + text = "helm_mask_pumpkin_hum.m2", + }, + { + fileId = "140109", + value = "helm_mask_pumpkin_nif.m2", + text = "helm_mask_pumpkin_nif.m2", + }, + { + fileId = "140110", + value = "helm_mask_pumpkin_nim.m2", + text = "helm_mask_pumpkin_nim.m2", + }, + { + fileId = "140111", + value = "helm_mask_pumpkin_orf.m2", + text = "helm_mask_pumpkin_orf.m2", + }, + { + fileId = "140112", + value = "helm_mask_pumpkin_orm.m2", + text = "helm_mask_pumpkin_orm.m2", + }, + { + fileId = "140113", + value = "helm_mask_pumpkin_scf.m2", + text = "helm_mask_pumpkin_scf.m2", + }, + { + fileId = "140114", + value = "helm_mask_pumpkin_scm.m2", + text = "helm_mask_pumpkin_scm.m2", + }, + { + fileId = "140115", + value = "helm_mask_pumpkin_taf.m2", + text = "helm_mask_pumpkin_taf.m2", + }, + { + fileId = "140116", + value = "helm_mask_pumpkin_tam.m2", + text = "helm_mask_pumpkin_tam.m2", + }, + { + fileId = "140117", + value = "helm_mask_pumpkin_trf.m2", + text = "helm_mask_pumpkin_trf.m2", + }, + { + fileId = "140118", + value = "helm_mask_pumpkin_trm.m2", + text = "helm_mask_pumpkin_trm.m2", + }, + { + fileId = "140119", + value = "helm_mask_zulgurub_d_01_bef.m2", + text = "helm_mask_zulgurub_d_01_bef.m2", + }, + { + fileId = "140120", + value = "helm_mask_zulgurub_d_01_bem.m2", + text = "helm_mask_zulgurub_d_01_bem.m2", + }, + { + fileId = "140121", + value = "helm_mask_zulgurub_d_01_drf.m2", + text = "helm_mask_zulgurub_d_01_drf.m2", + }, + { + fileId = "140122", + value = "helm_mask_zulgurub_d_01_drm.m2", + text = "helm_mask_zulgurub_d_01_drm.m2", + }, + { + fileId = "140123", + value = "helm_mask_zulgurub_d_01_dwf.m2", + text = "helm_mask_zulgurub_d_01_dwf.m2", + }, + { + fileId = "140124", + value = "helm_mask_zulgurub_d_01_dwm.m2", + text = "helm_mask_zulgurub_d_01_dwm.m2", + }, + { + fileId = "140125", + value = "helm_mask_zulgurub_d_01_gnf.m2", + text = "helm_mask_zulgurub_d_01_gnf.m2", + }, + { + fileId = "140126", + value = "helm_mask_zulgurub_d_01_gnm.m2", + text = "helm_mask_zulgurub_d_01_gnm.m2", + }, + { + fileId = "140127", + value = "helm_mask_zulgurub_d_01_gof.m2", + text = "helm_mask_zulgurub_d_01_gof.m2", + }, + { + fileId = "140128", + value = "helm_mask_zulgurub_d_01_gom.m2", + text = "helm_mask_zulgurub_d_01_gom.m2", + }, + { + fileId = "140129", + value = "helm_mask_zulgurub_d_01_huf.m2", + text = "helm_mask_zulgurub_d_01_huf.m2", + }, + { + fileId = "140130", + value = "helm_mask_zulgurub_d_01_hum.m2", + text = "helm_mask_zulgurub_d_01_hum.m2", + }, + { + fileId = "140131", + value = "helm_mask_zulgurub_d_01_nif.m2", + text = "helm_mask_zulgurub_d_01_nif.m2", + }, + { + fileId = "140132", + value = "helm_mask_zulgurub_d_01_nim.m2", + text = "helm_mask_zulgurub_d_01_nim.m2", + }, + { + fileId = "140133", + value = "helm_mask_zulgurub_d_01_orf.m2", + text = "helm_mask_zulgurub_d_01_orf.m2", + }, + { + fileId = "140134", + value = "helm_mask_zulgurub_d_01_orm.m2", + text = "helm_mask_zulgurub_d_01_orm.m2", + }, + { + fileId = "140135", + value = "helm_mask_zulgurub_d_01_scf.m2", + text = "helm_mask_zulgurub_d_01_scf.m2", + }, + { + fileId = "140136", + value = "helm_mask_zulgurub_d_01_scm.m2", + text = "helm_mask_zulgurub_d_01_scm.m2", + }, + { + fileId = "140137", + value = "helm_mask_zulgurub_d_01_taf.m2", + text = "helm_mask_zulgurub_d_01_taf.m2", + }, + { + fileId = "140138", + value = "helm_mask_zulgurub_d_01_tam.m2", + text = "helm_mask_zulgurub_d_01_tam.m2", + }, + { + fileId = "140139", + value = "helm_mask_zulgurub_d_01_trf.m2", + text = "helm_mask_zulgurub_d_01_trf.m2", + }, + { + fileId = "140140", + value = "helm_mask_zulgurub_d_01_trm.m2", + text = "helm_mask_zulgurub_d_01_trm.m2", + }, + { + fileId = "140142", + value = "helm_monocle_a_01_bef.m2", + text = "helm_monocle_a_01_bef.m2", + }, + { + fileId = "140143", + value = "helm_monocle_a_01_bem.m2", + text = "helm_monocle_a_01_bem.m2", + }, + { + fileId = "140144", + value = "helm_monocle_a_01_drf.m2", + text = "helm_monocle_a_01_drf.m2", + }, + { + fileId = "140145", + value = "helm_monocle_a_01_drm.m2", + text = "helm_monocle_a_01_drm.m2", + }, + { + fileId = "140146", + value = "helm_monocle_a_01_dwf.m2", + text = "helm_monocle_a_01_dwf.m2", + }, + { + fileId = "140147", + value = "helm_monocle_a_01_dwm.m2", + text = "helm_monocle_a_01_dwm.m2", + }, + { + fileId = "140148", + value = "helm_monocle_a_01_gnf.m2", + text = "helm_monocle_a_01_gnf.m2", + }, + { + fileId = "140149", + value = "helm_monocle_a_01_gnm.m2", + text = "helm_monocle_a_01_gnm.m2", + }, + { + fileId = "140150", + value = "helm_monocle_a_01_gof.m2", + text = "helm_monocle_a_01_gof.m2", + }, + { + fileId = "140151", + value = "helm_monocle_a_01_gom.m2", + text = "helm_monocle_a_01_gom.m2", + }, + { + fileId = "140152", + value = "helm_monocle_a_01_huf.m2", + text = "helm_monocle_a_01_huf.m2", + }, + { + fileId = "140153", + value = "helm_monocle_a_01_hum.m2", + text = "helm_monocle_a_01_hum.m2", + }, + { + fileId = "140154", + value = "helm_monocle_a_01_nif.m2", + text = "helm_monocle_a_01_nif.m2", + }, + { + fileId = "140155", + value = "helm_monocle_a_01_nim.m2", + text = "helm_monocle_a_01_nim.m2", + }, + { + fileId = "140156", + value = "helm_monocle_a_01_orf.m2", + text = "helm_monocle_a_01_orf.m2", + }, + { + fileId = "140157", + value = "helm_monocle_a_01_orm.m2", + text = "helm_monocle_a_01_orm.m2", + }, + { + fileId = "140158", + value = "helm_monocle_a_01_scf.m2", + text = "helm_monocle_a_01_scf.m2", + }, + { + fileId = "140159", + value = "helm_monocle_a_01_scm.m2", + text = "helm_monocle_a_01_scm.m2", + }, + { + fileId = "140160", + value = "helm_monocle_a_01_taf.m2", + text = "helm_monocle_a_01_taf.m2", + }, + { + fileId = "140161", + value = "helm_monocle_a_01_tam.m2", + text = "helm_monocle_a_01_tam.m2", + }, + { + fileId = "140162", + value = "helm_monocle_a_01_trf.m2", + text = "helm_monocle_a_01_trf.m2", + }, + { + fileId = "140163", + value = "helm_monocle_a_01_trm.m2", + text = "helm_monocle_a_01_trm.m2", + }, + { + fileId = "140167", + value = "helm_monocle_b_01_bef.m2", + text = "helm_monocle_b_01_bef.m2", + }, + { + fileId = "140168", + value = "helm_monocle_b_01_bem.m2", + text = "helm_monocle_b_01_bem.m2", + }, + { + fileId = "140169", + value = "helm_monocle_b_01_drf.m2", + text = "helm_monocle_b_01_drf.m2", + }, + { + fileId = "140170", + value = "helm_monocle_b_01_drm.m2", + text = "helm_monocle_b_01_drm.m2", + }, + { + fileId = "140171", + value = "helm_monocle_b_01_dwf.m2", + text = "helm_monocle_b_01_dwf.m2", + }, + { + fileId = "140172", + value = "helm_monocle_b_01_dwm.m2", + text = "helm_monocle_b_01_dwm.m2", + }, + { + fileId = "140173", + value = "helm_monocle_b_01_gnf.m2", + text = "helm_monocle_b_01_gnf.m2", + }, + { + fileId = "140174", + value = "helm_monocle_b_01_gnm.m2", + text = "helm_monocle_b_01_gnm.m2", + }, + { + fileId = "140175", + value = "helm_monocle_b_01_gof.m2", + text = "helm_monocle_b_01_gof.m2", + }, + { + fileId = "140176", + value = "helm_monocle_b_01_gom.m2", + text = "helm_monocle_b_01_gom.m2", + }, + { + fileId = "140177", + value = "helm_monocle_b_01_huf.m2", + text = "helm_monocle_b_01_huf.m2", + }, + { + fileId = "140178", + value = "helm_monocle_b_01_hum.m2", + text = "helm_monocle_b_01_hum.m2", + }, + { + fileId = "140179", + value = "helm_monocle_b_01_nif.m2", + text = "helm_monocle_b_01_nif.m2", + }, + { + fileId = "140180", + value = "helm_monocle_b_01_nim.m2", + text = "helm_monocle_b_01_nim.m2", + }, + { + fileId = "140181", + value = "helm_monocle_b_01_orf.m2", + text = "helm_monocle_b_01_orf.m2", + }, + { + fileId = "140182", + value = "helm_monocle_b_01_orm.m2", + text = "helm_monocle_b_01_orm.m2", + }, + { + fileId = "140183", + value = "helm_monocle_b_01_scf.m2", + text = "helm_monocle_b_01_scf.m2", + }, + { + fileId = "140184", + value = "helm_monocle_b_01_scm.m2", + text = "helm_monocle_b_01_scm.m2", + }, + { + fileId = "140185", + value = "helm_monocle_b_01_taf.m2", + text = "helm_monocle_b_01_taf.m2", + }, + { + fileId = "140186", + value = "helm_monocle_b_01_tam.m2", + text = "helm_monocle_b_01_tam.m2", + }, + { + fileId = "140187", + value = "helm_monocle_b_01_trf.m2", + text = "helm_monocle_b_01_trf.m2", + }, + { + fileId = "140188", + value = "helm_monocle_b_01_trm.m2", + text = "helm_monocle_b_01_trm.m2", + }, + { + fileId = "140189", + value = "helm_monocle_b_02engi_bef.m2", + text = "helm_monocle_b_02engi_bef.m2", + }, + { + fileId = "140190", + value = "helm_monocle_b_02engi_bem.m2", + text = "helm_monocle_b_02engi_bem.m2", + }, + { + fileId = "140191", + value = "helm_monocle_b_02engi_drf.m2", + text = "helm_monocle_b_02engi_drf.m2", + }, + { + fileId = "140192", + value = "helm_monocle_b_02engi_drm.m2", + text = "helm_monocle_b_02engi_drm.m2", + }, + { + fileId = "140193", + value = "helm_monocle_b_02engi_dwf.m2", + text = "helm_monocle_b_02engi_dwf.m2", + }, + { + fileId = "140194", + value = "helm_monocle_b_02engi_dwm.m2", + text = "helm_monocle_b_02engi_dwm.m2", + }, + { + fileId = "140195", + value = "helm_monocle_b_02engi_gnf.m2", + text = "helm_monocle_b_02engi_gnf.m2", + }, + { + fileId = "140196", + value = "helm_monocle_b_02engi_gnm.m2", + text = "helm_monocle_b_02engi_gnm.m2", + }, + { + fileId = "140197", + value = "helm_monocle_b_02engi_gof.m2", + text = "helm_monocle_b_02engi_gof.m2", + }, + { + fileId = "140198", + value = "helm_monocle_b_02engi_gom.m2", + text = "helm_monocle_b_02engi_gom.m2", + }, + { + fileId = "140199", + value = "helm_monocle_b_02engi_huf.m2", + text = "helm_monocle_b_02engi_huf.m2", + }, + { + fileId = "140200", + value = "helm_monocle_b_02engi_hum.m2", + text = "helm_monocle_b_02engi_hum.m2", + }, + { + fileId = "140201", + value = "helm_monocle_b_02engi_nif.m2", + text = "helm_monocle_b_02engi_nif.m2", + }, + { + fileId = "140202", + value = "helm_monocle_b_02engi_nim.m2", + text = "helm_monocle_b_02engi_nim.m2", + }, + { + fileId = "140203", + value = "helm_monocle_b_02engi_orf.m2", + text = "helm_monocle_b_02engi_orf.m2", + }, + { + fileId = "140204", + value = "helm_monocle_b_02engi_orm.m2", + text = "helm_monocle_b_02engi_orm.m2", + }, + { + fileId = "140205", + value = "helm_monocle_b_02engi_scf.m2", + text = "helm_monocle_b_02engi_scf.m2", + }, + { + fileId = "140206", + value = "helm_monocle_b_02engi_scm.m2", + text = "helm_monocle_b_02engi_scm.m2", + }, + { + fileId = "140207", + value = "helm_monocle_b_02engi_taf.m2", + text = "helm_monocle_b_02engi_taf.m2", + }, + { + fileId = "140208", + value = "helm_monocle_b_02engi_tam.m2", + text = "helm_monocle_b_02engi_tam.m2", + }, + { + fileId = "140209", + value = "helm_monocle_b_02engi_trf.m2", + text = "helm_monocle_b_02engi_trf.m2", + }, + { + fileId = "140210", + value = "helm_monocle_b_02engi_trm.m2", + text = "helm_monocle_b_02engi_trm.m2", + }, + { + fileId = "140211", + value = "helm_monocle_c_01_bef.m2", + text = "helm_monocle_c_01_bef.m2", + }, + { + fileId = "140212", + value = "helm_monocle_c_01_bem.m2", + text = "helm_monocle_c_01_bem.m2", + }, + { + fileId = "140213", + value = "helm_monocle_c_01_drf.m2", + text = "helm_monocle_c_01_drf.m2", + }, + { + fileId = "140214", + value = "helm_monocle_c_01_drm.m2", + text = "helm_monocle_c_01_drm.m2", + }, + { + fileId = "140215", + value = "helm_monocle_c_01_dwf.m2", + text = "helm_monocle_c_01_dwf.m2", + }, + { + fileId = "140216", + value = "helm_monocle_c_01_dwm.m2", + text = "helm_monocle_c_01_dwm.m2", + }, + { + fileId = "140217", + value = "helm_monocle_c_01_gnf.m2", + text = "helm_monocle_c_01_gnf.m2", + }, + { + fileId = "140218", + value = "helm_monocle_c_01_gnm.m2", + text = "helm_monocle_c_01_gnm.m2", + }, + { + fileId = "140219", + value = "helm_monocle_c_01_gof.m2", + text = "helm_monocle_c_01_gof.m2", + }, + { + fileId = "140220", + value = "helm_monocle_c_01_gom.m2", + text = "helm_monocle_c_01_gom.m2", + }, + { + fileId = "140221", + value = "helm_monocle_c_01_huf.m2", + text = "helm_monocle_c_01_huf.m2", + }, + { + fileId = "140222", + value = "helm_monocle_c_01_hum.m2", + text = "helm_monocle_c_01_hum.m2", + }, + { + fileId = "140223", + value = "helm_monocle_c_01_nif.m2", + text = "helm_monocle_c_01_nif.m2", + }, + { + fileId = "140224", + value = "helm_monocle_c_01_nim.m2", + text = "helm_monocle_c_01_nim.m2", + }, + { + fileId = "140225", + value = "helm_monocle_c_01_orf.m2", + text = "helm_monocle_c_01_orf.m2", + }, + { + fileId = "140226", + value = "helm_monocle_c_01_orm.m2", + text = "helm_monocle_c_01_orm.m2", + }, + { + fileId = "140227", + value = "helm_monocle_c_01_scf.m2", + text = "helm_monocle_c_01_scf.m2", + }, + { + fileId = "140228", + value = "helm_monocle_c_01_scm.m2", + text = "helm_monocle_c_01_scm.m2", + }, + { + fileId = "140229", + value = "helm_monocle_c_01_taf.m2", + text = "helm_monocle_c_01_taf.m2", + }, + { + fileId = "140230", + value = "helm_monocle_c_01_tam.m2", + text = "helm_monocle_c_01_tam.m2", + }, + { + fileId = "140231", + value = "helm_monocle_c_01_trf.m2", + text = "helm_monocle_c_01_trf.m2", + }, + { + fileId = "140232", + value = "helm_monocle_c_01_trm.m2", + text = "helm_monocle_c_01_trm.m2", + }, + { + fileId = "140235", + value = "helm_plate_a_01crusader_bef.m2", + text = "helm_plate_a_01crusader_bef.m2", + }, + { + fileId = "140236", + value = "helm_plate_a_01crusader_bem.m2", + text = "helm_plate_a_01crusader_bem.m2", + }, + { + fileId = "140237", + value = "helm_plate_a_01crusader_drf.m2", + text = "helm_plate_a_01crusader_drf.m2", + }, + { + fileId = "140238", + value = "helm_plate_a_01crusader_drm.m2", + text = "helm_plate_a_01crusader_drm.m2", + }, + { + fileId = "140239", + value = "helm_plate_a_01crusader_dwf.m2", + text = "helm_plate_a_01crusader_dwf.m2", + }, + { + fileId = "140240", + value = "helm_plate_a_01crusader_dwm.m2", + text = "helm_plate_a_01crusader_dwm.m2", + }, + { + fileId = "140241", + value = "helm_plate_a_01crusader_gnf.m2", + text = "helm_plate_a_01crusader_gnf.m2", + }, + { + fileId = "140242", + value = "helm_plate_a_01crusader_gnm.m2", + text = "helm_plate_a_01crusader_gnm.m2", + }, + { + fileId = "140243", + value = "helm_plate_a_01crusader_gof.m2", + text = "helm_plate_a_01crusader_gof.m2", + }, + { + fileId = "140244", + value = "helm_plate_a_01crusader_gom.m2", + text = "helm_plate_a_01crusader_gom.m2", + }, + { + fileId = "140245", + value = "helm_plate_a_01crusader_huf.m2", + text = "helm_plate_a_01crusader_huf.m2", + }, + { + fileId = "140246", + value = "helm_plate_a_01crusader_hum.m2", + text = "helm_plate_a_01crusader_hum.m2", + }, + { + fileId = "140247", + value = "helm_plate_a_01crusader_nif.m2", + text = "helm_plate_a_01crusader_nif.m2", + }, + { + fileId = "140248", + value = "helm_plate_a_01crusader_nim.m2", + text = "helm_plate_a_01crusader_nim.m2", + }, + { + fileId = "140249", + value = "helm_plate_a_01crusader_orf.m2", + text = "helm_plate_a_01crusader_orf.m2", + }, + { + fileId = "140250", + value = "helm_plate_a_01crusader_orm.m2", + text = "helm_plate_a_01crusader_orm.m2", + }, + { + fileId = "140251", + value = "helm_plate_a_01crusader_scf.m2", + text = "helm_plate_a_01crusader_scf.m2", + }, + { + fileId = "140252", + value = "helm_plate_a_01crusader_scm.m2", + text = "helm_plate_a_01crusader_scm.m2", + }, + { + fileId = "140253", + value = "helm_plate_a_01crusader_taf.m2", + text = "helm_plate_a_01crusader_taf.m2", + }, + { + fileId = "140254", + value = "helm_plate_a_01crusader_tam.m2", + text = "helm_plate_a_01crusader_tam.m2", + }, + { + fileId = "140255", + value = "helm_plate_a_01crusader_trf.m2", + text = "helm_plate_a_01crusader_trf.m2", + }, + { + fileId = "140256", + value = "helm_plate_a_01crusader_trm.m2", + text = "helm_plate_a_01crusader_trm.m2", + }, + { + fileId = "140263", + value = "helm_plate_a_02ironforgeguard_bef.m2", + text = "helm_plate_a_02ironforgeguard_bef.m2", + }, + { + fileId = "140264", + value = "helm_plate_a_02ironforgeguard_bem.m2", + text = "helm_plate_a_02ironforgeguard_bem.m2", + }, + { + fileId = "140265", + value = "helm_plate_a_02ironforgeguard_drf.m2", + text = "helm_plate_a_02ironforgeguard_drf.m2", + }, + { + fileId = "140266", + value = "helm_plate_a_02ironforgeguard_drm.m2", + text = "helm_plate_a_02ironforgeguard_drm.m2", + }, + { + fileId = "140267", + value = "helm_plate_a_02ironforgeguard_dwf.m2", + text = "helm_plate_a_02ironforgeguard_dwf.m2", + }, + { + fileId = "140268", + value = "helm_plate_a_02ironforgeguard_dwm.m2", + text = "helm_plate_a_02ironforgeguard_dwm.m2", + }, + { + fileId = "140269", + value = "helm_plate_a_02ironforgeguard_gnf.m2", + text = "helm_plate_a_02ironforgeguard_gnf.m2", + }, + { + fileId = "140270", + value = "helm_plate_a_02ironforgeguard_gnm.m2", + text = "helm_plate_a_02ironforgeguard_gnm.m2", + }, + { + fileId = "140271", + value = "helm_plate_a_02ironforgeguard_gof.m2", + text = "helm_plate_a_02ironforgeguard_gof.m2", + }, + { + fileId = "140272", + value = "helm_plate_a_02ironforgeguard_huf.m2", + text = "helm_plate_a_02ironforgeguard_huf.m2", + }, + { + fileId = "140273", + value = "helm_plate_a_02ironforgeguard_hum.m2", + text = "helm_plate_a_02ironforgeguard_hum.m2", + }, + { + fileId = "140274", + value = "helm_plate_a_02ironforgeguard_nif.m2", + text = "helm_plate_a_02ironforgeguard_nif.m2", + }, + { + fileId = "140275", + value = "helm_plate_a_02ironforgeguard_nim.m2", + text = "helm_plate_a_02ironforgeguard_nim.m2", + }, + { + fileId = "140276", + value = "helm_plate_a_02ironforgeguard_orf.m2", + text = "helm_plate_a_02ironforgeguard_orf.m2", + }, + { + fileId = "140277", + value = "helm_plate_a_02ironforgeguard_orm.m2", + text = "helm_plate_a_02ironforgeguard_orm.m2", + }, + { + fileId = "140278", + value = "helm_plate_a_02ironforgeguard_scf.m2", + text = "helm_plate_a_02ironforgeguard_scf.m2", + }, + { + fileId = "140279", + value = "helm_plate_a_02ironforgeguard_scm.m2", + text = "helm_plate_a_02ironforgeguard_scm.m2", + }, + { + fileId = "140280", + value = "helm_plate_a_02ironforgeguard_taf.m2", + text = "helm_plate_a_02ironforgeguard_taf.m2", + }, + { + fileId = "140281", + value = "helm_plate_a_02ironforgeguard_tam.m2", + text = "helm_plate_a_02ironforgeguard_tam.m2", + }, + { + fileId = "140282", + value = "helm_plate_a_02ironforgeguard_trf.m2", + text = "helm_plate_a_02ironforgeguard_trf.m2", + }, + { + fileId = "140283", + value = "helm_plate_a_02ironforgeguard_trm.m2", + text = "helm_plate_a_02ironforgeguard_trm.m2", + }, + { + fileId = "140285", + value = "helm_plate_ahnqiraj_a_01_bef.m2", + text = "helm_plate_ahnqiraj_a_01_bef.m2", + }, + { + fileId = "140286", + value = "helm_plate_ahnqiraj_a_01_bem.m2", + text = "helm_plate_ahnqiraj_a_01_bem.m2", + }, + { + fileId = "140287", + value = "helm_plate_ahnqiraj_a_01_drf.m2", + text = "helm_plate_ahnqiraj_a_01_drf.m2", + }, + { + fileId = "140288", + value = "helm_plate_ahnqiraj_a_01_drm.m2", + text = "helm_plate_ahnqiraj_a_01_drm.m2", + }, + { + fileId = "140289", + value = "helm_plate_ahnqiraj_a_01_dwf.m2", + text = "helm_plate_ahnqiraj_a_01_dwf.m2", + }, + { + fileId = "140290", + value = "helm_plate_ahnqiraj_a_01_dwm.m2", + text = "helm_plate_ahnqiraj_a_01_dwm.m2", + }, + { + fileId = "140291", + value = "helm_plate_ahnqiraj_a_01_gnf.m2", + text = "helm_plate_ahnqiraj_a_01_gnf.m2", + }, + { + fileId = "140292", + value = "helm_plate_ahnqiraj_a_01_gnm.m2", + text = "helm_plate_ahnqiraj_a_01_gnm.m2", + }, + { + fileId = "140293", + value = "helm_plate_ahnqiraj_a_01_gof.m2", + text = "helm_plate_ahnqiraj_a_01_gof.m2", + }, + { + fileId = "140294", + value = "helm_plate_ahnqiraj_a_01_gom.m2", + text = "helm_plate_ahnqiraj_a_01_gom.m2", + }, + { + fileId = "140295", + value = "helm_plate_ahnqiraj_a_01_huf.m2", + text = "helm_plate_ahnqiraj_a_01_huf.m2", + }, + { + fileId = "140296", + value = "helm_plate_ahnqiraj_a_01_hum.m2", + text = "helm_plate_ahnqiraj_a_01_hum.m2", + }, + { + fileId = "140297", + value = "helm_plate_ahnqiraj_a_01_nif.m2", + text = "helm_plate_ahnqiraj_a_01_nif.m2", + }, + { + fileId = "140298", + value = "helm_plate_ahnqiraj_a_01_nim.m2", + text = "helm_plate_ahnqiraj_a_01_nim.m2", + }, + { + fileId = "140299", + value = "helm_plate_ahnqiraj_a_01_orf.m2", + text = "helm_plate_ahnqiraj_a_01_orf.m2", + }, + { + fileId = "140300", + value = "helm_plate_ahnqiraj_a_01_orm.m2", + text = "helm_plate_ahnqiraj_a_01_orm.m2", + }, + { + fileId = "140301", + value = "helm_plate_ahnqiraj_a_01_scf.m2", + text = "helm_plate_ahnqiraj_a_01_scf.m2", + }, + { + fileId = "140302", + value = "helm_plate_ahnqiraj_a_01_scm.m2", + text = "helm_plate_ahnqiraj_a_01_scm.m2", + }, + { + fileId = "140303", + value = "helm_plate_ahnqiraj_a_01_taf.m2", + text = "helm_plate_ahnqiraj_a_01_taf.m2", + }, + { + fileId = "140304", + value = "helm_plate_ahnqiraj_a_01_tam.m2", + text = "helm_plate_ahnqiraj_a_01_tam.m2", + }, + { + fileId = "140305", + value = "helm_plate_ahnqiraj_a_01_trf.m2", + text = "helm_plate_ahnqiraj_a_01_trf.m2", + }, + { + fileId = "140306", + value = "helm_plate_ahnqiraj_a_01_trm.m2", + text = "helm_plate_ahnqiraj_a_01_trm.m2", + }, + { + fileId = "140315", + value = "helm_plate_b_01stormwind_bef.m2", + text = "helm_plate_b_01stormwind_bef.m2", + }, + { + fileId = "140316", + value = "helm_plate_b_01stormwind_bem.m2", + text = "helm_plate_b_01stormwind_bem.m2", + }, + { + fileId = "140317", + value = "helm_plate_b_01stormwind_drf.m2", + text = "helm_plate_b_01stormwind_drf.m2", + }, + { + fileId = "140318", + value = "helm_plate_b_01stormwind_drm.m2", + text = "helm_plate_b_01stormwind_drm.m2", + }, + { + fileId = "140319", + value = "helm_plate_b_01stormwind_dwf.m2", + text = "helm_plate_b_01stormwind_dwf.m2", + }, + { + fileId = "140320", + value = "helm_plate_b_01stormwind_dwm.m2", + text = "helm_plate_b_01stormwind_dwm.m2", + }, + { + fileId = "140321", + value = "helm_plate_b_01stormwind_gnf.m2", + text = "helm_plate_b_01stormwind_gnf.m2", + }, + { + fileId = "140322", + value = "helm_plate_b_01stormwind_gnm.m2", + text = "helm_plate_b_01stormwind_gnm.m2", + }, + { + fileId = "140323", + value = "helm_plate_b_01stormwind_gof.m2", + text = "helm_plate_b_01stormwind_gof.m2", + }, + { + fileId = "140324", + value = "helm_plate_b_01stormwind_gom.m2", + text = "helm_plate_b_01stormwind_gom.m2", + }, + { + fileId = "140325", + value = "helm_plate_b_01stormwind_huf.m2", + text = "helm_plate_b_01stormwind_huf.m2", + }, + { + fileId = "140326", + value = "helm_plate_b_01stormwind_hum.m2", + text = "helm_plate_b_01stormwind_hum.m2", + }, + { + fileId = "140327", + value = "helm_plate_b_01stormwind_nif.m2", + text = "helm_plate_b_01stormwind_nif.m2", + }, + { + fileId = "140328", + value = "helm_plate_b_01stormwind_nim.m2", + text = "helm_plate_b_01stormwind_nim.m2", + }, + { + fileId = "140329", + value = "helm_plate_b_01stormwind_orf.m2", + text = "helm_plate_b_01stormwind_orf.m2", + }, + { + fileId = "140330", + value = "helm_plate_b_01stormwind_orm.m2", + text = "helm_plate_b_01stormwind_orm.m2", + }, + { + fileId = "140331", + value = "helm_plate_b_01stormwind_scf.m2", + text = "helm_plate_b_01stormwind_scf.m2", + }, + { + fileId = "140332", + value = "helm_plate_b_01stormwind_scm.m2", + text = "helm_plate_b_01stormwind_scm.m2", + }, + { + fileId = "140333", + value = "helm_plate_b_01stormwind_taf.m2", + text = "helm_plate_b_01stormwind_taf.m2", + }, + { + fileId = "140334", + value = "helm_plate_b_01stormwind_tam.m2", + text = "helm_plate_b_01stormwind_tam.m2", + }, + { + fileId = "140335", + value = "helm_plate_b_01stormwind_trf.m2", + text = "helm_plate_b_01stormwind_trf.m2", + }, + { + fileId = "140336", + value = "helm_plate_b_01stormwind_trm.m2", + text = "helm_plate_b_01stormwind_trm.m2", + }, + { + fileId = "140340", + value = "helm_plate_b_03sentinel_bef.m2", + text = "helm_plate_b_03sentinel_bef.m2", + }, + { + fileId = "140341", + value = "helm_plate_b_03sentinel_bem.m2", + text = "helm_plate_b_03sentinel_bem.m2", + }, + { + fileId = "140342", + value = "helm_plate_b_03sentinel_drf.m2", + text = "helm_plate_b_03sentinel_drf.m2", + }, + { + fileId = "140343", + value = "helm_plate_b_03sentinel_drm.m2", + text = "helm_plate_b_03sentinel_drm.m2", + }, + { + fileId = "140344", + value = "helm_plate_b_03sentinel_dwf.m2", + text = "helm_plate_b_03sentinel_dwf.m2", + }, + { + fileId = "140345", + value = "helm_plate_b_03sentinel_dwm.m2", + text = "helm_plate_b_03sentinel_dwm.m2", + }, + { + fileId = "140346", + value = "helm_plate_b_03sentinel_gnf.m2", + text = "helm_plate_b_03sentinel_gnf.m2", + }, + { + fileId = "140347", + value = "helm_plate_b_03sentinel_gnm.m2", + text = "helm_plate_b_03sentinel_gnm.m2", + }, + { + fileId = "140348", + value = "helm_plate_b_03sentinel_gof.m2", + text = "helm_plate_b_03sentinel_gof.m2", + }, + { + fileId = "140349", + value = "helm_plate_b_03sentinel_gom.m2", + text = "helm_plate_b_03sentinel_gom.m2", + }, + { + fileId = "140350", + value = "helm_plate_b_03sentinel_huf.m2", + text = "helm_plate_b_03sentinel_huf.m2", + }, + { + fileId = "140351", + value = "helm_plate_b_03sentinel_hum.m2", + text = "helm_plate_b_03sentinel_hum.m2", + }, + { + fileId = "140352", + value = "helm_plate_b_03sentinel_nif.m2", + text = "helm_plate_b_03sentinel_nif.m2", + }, + { + fileId = "140353", + value = "helm_plate_b_03sentinel_nim.m2", + text = "helm_plate_b_03sentinel_nim.m2", + }, + { + fileId = "140354", + value = "helm_plate_b_03sentinel_orf.m2", + text = "helm_plate_b_03sentinel_orf.m2", + }, + { + fileId = "140355", + value = "helm_plate_b_03sentinel_orm.m2", + text = "helm_plate_b_03sentinel_orm.m2", + }, + { + fileId = "140356", + value = "helm_plate_b_03sentinel_scf.m2", + text = "helm_plate_b_03sentinel_scf.m2", + }, + { + fileId = "140357", + value = "helm_plate_b_03sentinel_scm.m2", + text = "helm_plate_b_03sentinel_scm.m2", + }, + { + fileId = "140358", + value = "helm_plate_b_03sentinel_taf.m2", + text = "helm_plate_b_03sentinel_taf.m2", + }, + { + fileId = "140359", + value = "helm_plate_b_03sentinel_tam.m2", + text = "helm_plate_b_03sentinel_tam.m2", + }, + { + fileId = "140360", + value = "helm_plate_b_03sentinel_trf.m2", + text = "helm_plate_b_03sentinel_trf.m2", + }, + { + fileId = "140361", + value = "helm_plate_b_03sentinel_trm.m2", + text = "helm_plate_b_03sentinel_trm.m2", + }, + { + fileId = "140362", + value = "helm_plate_b_04_bef.m2", + text = "helm_plate_b_04_bef.m2", + }, + { + fileId = "140363", + value = "helm_plate_b_04_bem.m2", + text = "helm_plate_b_04_bem.m2", + }, + { + fileId = "140364", + value = "helm_plate_b_04_drf.m2", + text = "helm_plate_b_04_drf.m2", + }, + { + fileId = "140365", + value = "helm_plate_b_04_drm.m2", + text = "helm_plate_b_04_drm.m2", + }, + { + fileId = "140366", + value = "helm_plate_b_04_dwf.m2", + text = "helm_plate_b_04_dwf.m2", + }, + { + fileId = "140367", + value = "helm_plate_b_04_dwm.m2", + text = "helm_plate_b_04_dwm.m2", + }, + { + fileId = "140368", + value = "helm_plate_b_04_gnf.m2", + text = "helm_plate_b_04_gnf.m2", + }, + { + fileId = "140369", + value = "helm_plate_b_04_gnm.m2", + text = "helm_plate_b_04_gnm.m2", + }, + { + fileId = "140370", + value = "helm_plate_b_04_gof.m2", + text = "helm_plate_b_04_gof.m2", + }, + { + fileId = "140371", + value = "helm_plate_b_04_gom.m2", + text = "helm_plate_b_04_gom.m2", + }, + { + fileId = "140372", + value = "helm_plate_b_04_huf.m2", + text = "helm_plate_b_04_huf.m2", + }, + { + fileId = "140373", + value = "helm_plate_b_04_hum.m2", + text = "helm_plate_b_04_hum.m2", + }, + { + fileId = "140374", + value = "helm_plate_b_04_nif.m2", + text = "helm_plate_b_04_nif.m2", + }, + { + fileId = "140375", + value = "helm_plate_b_04_nim.m2", + text = "helm_plate_b_04_nim.m2", + }, + { + fileId = "140376", + value = "helm_plate_b_04_orf.m2", + text = "helm_plate_b_04_orf.m2", + }, + { + fileId = "140377", + value = "helm_plate_b_04_orm.m2", + text = "helm_plate_b_04_orm.m2", + }, + { + fileId = "140378", + value = "helm_plate_b_04_scf.m2", + text = "helm_plate_b_04_scf.m2", + }, + { + fileId = "140379", + value = "helm_plate_b_04_scm.m2", + text = "helm_plate_b_04_scm.m2", + }, + { + fileId = "140380", + value = "helm_plate_b_04_taf.m2", + text = "helm_plate_b_04_taf.m2", + }, + { + fileId = "140381", + value = "helm_plate_b_04_tam.m2", + text = "helm_plate_b_04_tam.m2", + }, + { + fileId = "140382", + value = "helm_plate_b_04_trf.m2", + text = "helm_plate_b_04_trf.m2", + }, + { + fileId = "140383", + value = "helm_plate_b_04_trm.m2", + text = "helm_plate_b_04_trm.m2", + }, + { + fileId = "140387", + value = "helm_plate_bloodknight_d_02_bef.m2", + text = "helm_plate_bloodknight_d_02_bef.m2", + }, + { + fileId = "140388", + value = "helm_plate_bloodknight_d_02_bem.m2", + text = "helm_plate_bloodknight_d_02_bem.m2", + }, + { + fileId = "140389", + value = "helm_plate_bloodknight_d_02_drf.m2", + text = "helm_plate_bloodknight_d_02_drf.m2", + }, + { + fileId = "140390", + value = "helm_plate_bloodknight_d_02_drm.m2", + text = "helm_plate_bloodknight_d_02_drm.m2", + }, + { + fileId = "140391", + value = "helm_plate_bloodknight_d_02_dwf.m2", + text = "helm_plate_bloodknight_d_02_dwf.m2", + }, + { + fileId = "140392", + value = "helm_plate_bloodknight_d_02_dwm.m2", + text = "helm_plate_bloodknight_d_02_dwm.m2", + }, + { + fileId = "140393", + value = "helm_plate_bloodknight_d_02_gnf.m2", + text = "helm_plate_bloodknight_d_02_gnf.m2", + }, + { + fileId = "140394", + value = "helm_plate_bloodknight_d_02_gnm.m2", + text = "helm_plate_bloodknight_d_02_gnm.m2", + }, + { + fileId = "140395", + value = "helm_plate_bloodknight_d_02_gof.m2", + text = "helm_plate_bloodknight_d_02_gof.m2", + }, + { + fileId = "140396", + value = "helm_plate_bloodknight_d_02_gom.m2", + text = "helm_plate_bloodknight_d_02_gom.m2", + }, + { + fileId = "140397", + value = "helm_plate_bloodknight_d_02_huf.m2", + text = "helm_plate_bloodknight_d_02_huf.m2", + }, + { + fileId = "140398", + value = "helm_plate_bloodknight_d_02_hum.m2", + text = "helm_plate_bloodknight_d_02_hum.m2", + }, + { + fileId = "140399", + value = "helm_plate_bloodknight_d_02_nif.m2", + text = "helm_plate_bloodknight_d_02_nif.m2", + }, + { + fileId = "140400", + value = "helm_plate_bloodknight_d_02_nim.m2", + text = "helm_plate_bloodknight_d_02_nim.m2", + }, + { + fileId = "140401", + value = "helm_plate_bloodknight_d_02_orf.m2", + text = "helm_plate_bloodknight_d_02_orf.m2", + }, + { + fileId = "140402", + value = "helm_plate_bloodknight_d_02_orm.m2", + text = "helm_plate_bloodknight_d_02_orm.m2", + }, + { + fileId = "140403", + value = "helm_plate_bloodknight_d_02_scf.m2", + text = "helm_plate_bloodknight_d_02_scf.m2", + }, + { + fileId = "140404", + value = "helm_plate_bloodknight_d_02_scm.m2", + text = "helm_plate_bloodknight_d_02_scm.m2", + }, + { + fileId = "140405", + value = "helm_plate_bloodknight_d_02_taf.m2", + text = "helm_plate_bloodknight_d_02_taf.m2", + }, + { + fileId = "140406", + value = "helm_plate_bloodknight_d_02_tam.m2", + text = "helm_plate_bloodknight_d_02_tam.m2", + }, + { + fileId = "140407", + value = "helm_plate_bloodknight_d_02_trf.m2", + text = "helm_plate_bloodknight_d_02_trf.m2", + }, + { + fileId = "140408", + value = "helm_plate_bloodknight_d_02_trm.m2", + text = "helm_plate_bloodknight_d_02_trm.m2", + }, + { + fileId = "140409", + value = "helm_plate_d_01_bef.m2", + text = "helm_plate_d_01_bef.m2", + }, + { + fileId = "140410", + value = "helm_plate_d_01_bem.m2", + text = "helm_plate_d_01_bem.m2", + }, + { + fileId = "140411", + value = "helm_plate_d_01_drf.m2", + text = "helm_plate_d_01_drf.m2", + }, + { + fileId = "140412", + value = "helm_plate_d_01_drm.m2", + text = "helm_plate_d_01_drm.m2", + }, + { + fileId = "140413", + value = "helm_plate_d_01_dwf.m2", + text = "helm_plate_d_01_dwf.m2", + }, + { + fileId = "140414", + value = "helm_plate_d_01_dwm.m2", + text = "helm_plate_d_01_dwm.m2", + }, + { + fileId = "140415", + value = "helm_plate_d_01_gnf.m2", + text = "helm_plate_d_01_gnf.m2", + }, + { + fileId = "140416", + value = "helm_plate_d_01_gnm.m2", + text = "helm_plate_d_01_gnm.m2", + }, + { + fileId = "140417", + value = "helm_plate_d_01_gof.m2", + text = "helm_plate_d_01_gof.m2", + }, + { + fileId = "140418", + value = "helm_plate_d_01_gom.m2", + text = "helm_plate_d_01_gom.m2", + }, + { + fileId = "140419", + value = "helm_plate_d_01_huf.m2", + text = "helm_plate_d_01_huf.m2", + }, + { + fileId = "140420", + value = "helm_plate_d_01_hum.m2", + text = "helm_plate_d_01_hum.m2", + }, + { + fileId = "140421", + value = "helm_plate_d_01_nif.m2", + text = "helm_plate_d_01_nif.m2", + }, + { + fileId = "140422", + value = "helm_plate_d_01_nim.m2", + text = "helm_plate_d_01_nim.m2", + }, + { + fileId = "140423", + value = "helm_plate_d_01_orf.m2", + text = "helm_plate_d_01_orf.m2", + }, + { + fileId = "140424", + value = "helm_plate_d_01_orm.m2", + text = "helm_plate_d_01_orm.m2", + }, + { + fileId = "140425", + value = "helm_plate_d_01_scf.m2", + text = "helm_plate_d_01_scf.m2", + }, + { + fileId = "140426", + value = "helm_plate_d_01_scm.m2", + text = "helm_plate_d_01_scm.m2", + }, + { + fileId = "140427", + value = "helm_plate_d_01_taf.m2", + text = "helm_plate_d_01_taf.m2", + }, + { + fileId = "140428", + value = "helm_plate_d_01_tam.m2", + text = "helm_plate_d_01_tam.m2", + }, + { + fileId = "140429", + value = "helm_plate_d_01_trf.m2", + text = "helm_plate_d_01_trf.m2", + }, + { + fileId = "140430", + value = "helm_plate_d_01_trm.m2", + text = "helm_plate_d_01_trm.m2", + }, + { + fileId = "140432", + value = "helm_plate_d_02_bef.m2", + text = "helm_plate_d_02_bef.m2", + }, + { + fileId = "140433", + value = "helm_plate_d_02_bem.m2", + text = "helm_plate_d_02_bem.m2", + }, + { + fileId = "140434", + value = "helm_plate_d_02_drf.m2", + text = "helm_plate_d_02_drf.m2", + }, + { + fileId = "140435", + value = "helm_plate_d_02_drm.m2", + text = "helm_plate_d_02_drm.m2", + }, + { + fileId = "140436", + value = "helm_plate_d_02_dwf.m2", + text = "helm_plate_d_02_dwf.m2", + }, + { + fileId = "140437", + value = "helm_plate_d_02_dwm.m2", + text = "helm_plate_d_02_dwm.m2", + }, + { + fileId = "140438", + value = "helm_plate_d_02_gnf.m2", + text = "helm_plate_d_02_gnf.m2", + }, + { + fileId = "140439", + value = "helm_plate_d_02_gnm.m2", + text = "helm_plate_d_02_gnm.m2", + }, + { + fileId = "140440", + value = "helm_plate_d_02_gof.m2", + text = "helm_plate_d_02_gof.m2", + }, + { + fileId = "140441", + value = "helm_plate_d_02_gom.m2", + text = "helm_plate_d_02_gom.m2", + }, + { + fileId = "140442", + value = "helm_plate_d_02_huf.m2", + text = "helm_plate_d_02_huf.m2", + }, + { + fileId = "140443", + value = "helm_plate_d_02_hum.m2", + text = "helm_plate_d_02_hum.m2", + }, + { + fileId = "140444", + value = "helm_plate_d_02_nif.m2", + text = "helm_plate_d_02_nif.m2", + }, + { + fileId = "140445", + value = "helm_plate_d_02_nim.m2", + text = "helm_plate_d_02_nim.m2", + }, + { + fileId = "140446", + value = "helm_plate_d_02_orf.m2", + text = "helm_plate_d_02_orf.m2", + }, + { + fileId = "140447", + value = "helm_plate_d_02_orm.m2", + text = "helm_plate_d_02_orm.m2", + }, + { + fileId = "140448", + value = "helm_plate_d_02_scf.m2", + text = "helm_plate_d_02_scf.m2", + }, + { + fileId = "140449", + value = "helm_plate_d_02_scm.m2", + text = "helm_plate_d_02_scm.m2", + }, + { + fileId = "140450", + value = "helm_plate_d_02_taf.m2", + text = "helm_plate_d_02_taf.m2", + }, + { + fileId = "140451", + value = "helm_plate_d_02_tam.m2", + text = "helm_plate_d_02_tam.m2", + }, + { + fileId = "140452", + value = "helm_plate_d_02_trf.m2", + text = "helm_plate_d_02_trf.m2", + }, + { + fileId = "140453", + value = "helm_plate_d_02_trm.m2", + text = "helm_plate_d_02_trm.m2", + }, + { + fileId = "140456", + value = "helm_plate_d_03_bef.m2", + text = "helm_plate_d_03_bef.m2", + }, + { + fileId = "140457", + value = "helm_plate_d_03_bem.m2", + text = "helm_plate_d_03_bem.m2", + }, + { + fileId = "140458", + value = "helm_plate_d_03_drf.m2", + text = "helm_plate_d_03_drf.m2", + }, + { + fileId = "140459", + value = "helm_plate_d_03_drm.m2", + text = "helm_plate_d_03_drm.m2", + }, + { + fileId = "140460", + value = "helm_plate_d_03_dwf.m2", + text = "helm_plate_d_03_dwf.m2", + }, + { + fileId = "140461", + value = "helm_plate_d_03_dwm.m2", + text = "helm_plate_d_03_dwm.m2", + }, + { + fileId = "140462", + value = "helm_plate_d_03_gnf.m2", + text = "helm_plate_d_03_gnf.m2", + }, + { + fileId = "140463", + value = "helm_plate_d_03_gnm.m2", + text = "helm_plate_d_03_gnm.m2", + }, + { + fileId = "140464", + value = "helm_plate_d_03_gof.m2", + text = "helm_plate_d_03_gof.m2", + }, + { + fileId = "140465", + value = "helm_plate_d_03_gom.m2", + text = "helm_plate_d_03_gom.m2", + }, + { + fileId = "140466", + value = "helm_plate_d_03_huf.m2", + text = "helm_plate_d_03_huf.m2", + }, + { + fileId = "140467", + value = "helm_plate_d_03_hum.m2", + text = "helm_plate_d_03_hum.m2", + }, + { + fileId = "140468", + value = "helm_plate_d_03_nif.m2", + text = "helm_plate_d_03_nif.m2", + }, + { + fileId = "140469", + value = "helm_plate_d_03_nim.m2", + text = "helm_plate_d_03_nim.m2", + }, + { + fileId = "140470", + value = "helm_plate_d_03_orf.m2", + text = "helm_plate_d_03_orf.m2", + }, + { + fileId = "140471", + value = "helm_plate_d_03_orm.m2", + text = "helm_plate_d_03_orm.m2", + }, + { + fileId = "140472", + value = "helm_plate_d_03_scf.m2", + text = "helm_plate_d_03_scf.m2", + }, + { + fileId = "140473", + value = "helm_plate_d_03_scm.m2", + text = "helm_plate_d_03_scm.m2", + }, + { + fileId = "140474", + value = "helm_plate_d_03_taf.m2", + text = "helm_plate_d_03_taf.m2", + }, + { + fileId = "140475", + value = "helm_plate_d_03_tam.m2", + text = "helm_plate_d_03_tam.m2", + }, + { + fileId = "140476", + value = "helm_plate_d_03_trf.m2", + text = "helm_plate_d_03_trf.m2", + }, + { + fileId = "140477", + value = "helm_plate_d_03_trm.m2", + text = "helm_plate_d_03_trm.m2", + }, + { + fileId = "140493", + value = "helm_plate_d_04_bef.m2", + text = "helm_plate_d_04_bef.m2", + }, + { + fileId = "140494", + value = "helm_plate_d_04_bem.m2", + text = "helm_plate_d_04_bem.m2", + }, + { + fileId = "140495", + value = "helm_plate_d_04_drf.m2", + text = "helm_plate_d_04_drf.m2", + }, + { + fileId = "140496", + value = "helm_plate_d_04_drm.m2", + text = "helm_plate_d_04_drm.m2", + }, + { + fileId = "140497", + value = "helm_plate_d_04_dwf.m2", + text = "helm_plate_d_04_dwf.m2", + }, + { + fileId = "140498", + value = "helm_plate_d_04_dwm.m2", + text = "helm_plate_d_04_dwm.m2", + }, + { + fileId = "140499", + value = "helm_plate_d_04_gnf.m2", + text = "helm_plate_d_04_gnf.m2", + }, + { + fileId = "140500", + value = "helm_plate_d_04_gnm.m2", + text = "helm_plate_d_04_gnm.m2", + }, + { + fileId = "140501", + value = "helm_plate_d_04_gof.m2", + text = "helm_plate_d_04_gof.m2", + }, + { + fileId = "140502", + value = "helm_plate_d_04_gom.m2", + text = "helm_plate_d_04_gom.m2", + }, + { + fileId = "140503", + value = "helm_plate_d_04_huf.m2", + text = "helm_plate_d_04_huf.m2", + }, + { + fileId = "140504", + value = "helm_plate_d_04_hum.m2", + text = "helm_plate_d_04_hum.m2", + }, + { + fileId = "140505", + value = "helm_plate_d_04_nif.m2", + text = "helm_plate_d_04_nif.m2", + }, + { + fileId = "140506", + value = "helm_plate_d_04_nim.m2", + text = "helm_plate_d_04_nim.m2", + }, + { + fileId = "140507", + value = "helm_plate_d_04_orf.m2", + text = "helm_plate_d_04_orf.m2", + }, + { + fileId = "140508", + value = "helm_plate_d_04_orm.m2", + text = "helm_plate_d_04_orm.m2", + }, + { + fileId = "140509", + value = "helm_plate_d_04_scf.m2", + text = "helm_plate_d_04_scf.m2", + }, + { + fileId = "140510", + value = "helm_plate_d_04_scm.m2", + text = "helm_plate_d_04_scm.m2", + }, + { + fileId = "140511", + value = "helm_plate_d_04_taf.m2", + text = "helm_plate_d_04_taf.m2", + }, + { + fileId = "140512", + value = "helm_plate_d_04_tam.m2", + text = "helm_plate_d_04_tam.m2", + }, + { + fileId = "140513", + value = "helm_plate_d_04_trf.m2", + text = "helm_plate_d_04_trf.m2", + }, + { + fileId = "140514", + value = "helm_plate_d_04_trm.m2", + text = "helm_plate_d_04_trm.m2", + }, + { + fileId = "140535", + value = "helm_plate_dungeonpaladin_a_01_bef.m2", + text = "helm_plate_dungeonpaladin_a_01_bef.m2", + }, + { + fileId = "140536", + value = "helm_plate_dungeonpaladin_a_01_bem.m2", + text = "helm_plate_dungeonpaladin_a_01_bem.m2", + }, + { + fileId = "140537", + value = "helm_plate_dungeonpaladin_a_01_drf.m2", + text = "helm_plate_dungeonpaladin_a_01_drf.m2", + }, + { + fileId = "140538", + value = "helm_plate_dungeonpaladin_a_01_drm.m2", + text = "helm_plate_dungeonpaladin_a_01_drm.m2", + }, + { + fileId = "140539", + value = "helm_plate_dungeonpaladin_a_01_dwf.m2", + text = "helm_plate_dungeonpaladin_a_01_dwf.m2", + }, + { + fileId = "140540", + value = "helm_plate_dungeonpaladin_a_01_dwm.m2", + text = "helm_plate_dungeonpaladin_a_01_dwm.m2", + }, + { + fileId = "140541", + value = "helm_plate_dungeonpaladin_a_01_gnf.m2", + text = "helm_plate_dungeonpaladin_a_01_gnf.m2", + }, + { + fileId = "140542", + value = "helm_plate_dungeonpaladin_a_01_gnm.m2", + text = "helm_plate_dungeonpaladin_a_01_gnm.m2", + }, + { + fileId = "140543", + value = "helm_plate_dungeonpaladin_a_01_gof.m2", + text = "helm_plate_dungeonpaladin_a_01_gof.m2", + }, + { + fileId = "140544", + value = "helm_plate_dungeonpaladin_a_01_gom.m2", + text = "helm_plate_dungeonpaladin_a_01_gom.m2", + }, + { + fileId = "140545", + value = "helm_plate_dungeonpaladin_a_01_huf.m2", + text = "helm_plate_dungeonpaladin_a_01_huf.m2", + }, + { + fileId = "140546", + value = "helm_plate_dungeonpaladin_a_01_hum.m2", + text = "helm_plate_dungeonpaladin_a_01_hum.m2", + }, + { + fileId = "140547", + value = "helm_plate_dungeonpaladin_a_01_nif.m2", + text = "helm_plate_dungeonpaladin_a_01_nif.m2", + }, + { + fileId = "140548", + value = "helm_plate_dungeonpaladin_a_01_nim.m2", + text = "helm_plate_dungeonpaladin_a_01_nim.m2", + }, + { + fileId = "140549", + value = "helm_plate_dungeonpaladin_a_01_orf.m2", + text = "helm_plate_dungeonpaladin_a_01_orf.m2", + }, + { + fileId = "140550", + value = "helm_plate_dungeonpaladin_a_01_orm.m2", + text = "helm_plate_dungeonpaladin_a_01_orm.m2", + }, + { + fileId = "140551", + value = "helm_plate_dungeonpaladin_a_01_scf.m2", + text = "helm_plate_dungeonpaladin_a_01_scf.m2", + }, + { + fileId = "140552", + value = "helm_plate_dungeonpaladin_a_01_scm.m2", + text = "helm_plate_dungeonpaladin_a_01_scm.m2", + }, + { + fileId = "140553", + value = "helm_plate_dungeonpaladin_a_01_taf.m2", + text = "helm_plate_dungeonpaladin_a_01_taf.m2", + }, + { + fileId = "140554", + value = "helm_plate_dungeonpaladin_a_01_tam.m2", + text = "helm_plate_dungeonpaladin_a_01_tam.m2", + }, + { + fileId = "140555", + value = "helm_plate_dungeonpaladin_a_01_trf.m2", + text = "helm_plate_dungeonpaladin_a_01_trf.m2", + }, + { + fileId = "140556", + value = "helm_plate_dungeonpaladin_a_01_trm.m2", + text = "helm_plate_dungeonpaladin_a_01_trm.m2", + }, + { + fileId = "140560", + value = "helm_plate_dungeonpaladin_b_01_bef.m2", + text = "helm_plate_dungeonpaladin_b_01_bef.m2", + }, + { + fileId = "140561", + value = "helm_plate_dungeonpaladin_b_01_bem.m2", + text = "helm_plate_dungeonpaladin_b_01_bem.m2", + }, + { + fileId = "140562", + value = "helm_plate_dungeonpaladin_b_01_drf.m2", + text = "helm_plate_dungeonpaladin_b_01_drf.m2", + }, + { + fileId = "140563", + value = "helm_plate_dungeonpaladin_b_01_drm.m2", + text = "helm_plate_dungeonpaladin_b_01_drm.m2", + }, + { + fileId = "140564", + value = "helm_plate_dungeonpaladin_b_01_dwf.m2", + text = "helm_plate_dungeonpaladin_b_01_dwf.m2", + }, + { + fileId = "140565", + value = "helm_plate_dungeonpaladin_b_01_dwm.m2", + text = "helm_plate_dungeonpaladin_b_01_dwm.m2", + }, + { + fileId = "140566", + value = "helm_plate_dungeonpaladin_b_01_gnf.m2", + text = "helm_plate_dungeonpaladin_b_01_gnf.m2", + }, + { + fileId = "140567", + value = "helm_plate_dungeonpaladin_b_01_gnm.m2", + text = "helm_plate_dungeonpaladin_b_01_gnm.m2", + }, + { + fileId = "140568", + value = "helm_plate_dungeonpaladin_b_01_gof.m2", + text = "helm_plate_dungeonpaladin_b_01_gof.m2", + }, + { + fileId = "140569", + value = "helm_plate_dungeonpaladin_b_01_gom.m2", + text = "helm_plate_dungeonpaladin_b_01_gom.m2", + }, + { + fileId = "140570", + value = "helm_plate_dungeonpaladin_b_01_huf.m2", + text = "helm_plate_dungeonpaladin_b_01_huf.m2", + }, + { + fileId = "140571", + value = "helm_plate_dungeonpaladin_b_01_hum.m2", + text = "helm_plate_dungeonpaladin_b_01_hum.m2", + }, + { + fileId = "140572", + value = "helm_plate_dungeonpaladin_b_01_nif.m2", + text = "helm_plate_dungeonpaladin_b_01_nif.m2", + }, + { + fileId = "140573", + value = "helm_plate_dungeonpaladin_b_01_nim.m2", + text = "helm_plate_dungeonpaladin_b_01_nim.m2", + }, + { + fileId = "140574", + value = "helm_plate_dungeonpaladin_b_01_orf.m2", + text = "helm_plate_dungeonpaladin_b_01_orf.m2", + }, + { + fileId = "140575", + value = "helm_plate_dungeonpaladin_b_01_orm.m2", + text = "helm_plate_dungeonpaladin_b_01_orm.m2", + }, + { + fileId = "140576", + value = "helm_plate_dungeonpaladin_b_01_scf.m2", + text = "helm_plate_dungeonpaladin_b_01_scf.m2", + }, + { + fileId = "140577", + value = "helm_plate_dungeonpaladin_b_01_scm.m2", + text = "helm_plate_dungeonpaladin_b_01_scm.m2", + }, + { + fileId = "140578", + value = "helm_plate_dungeonpaladin_b_01_taf.m2", + text = "helm_plate_dungeonpaladin_b_01_taf.m2", + }, + { + fileId = "140579", + value = "helm_plate_dungeonpaladin_b_01_tam.m2", + text = "helm_plate_dungeonpaladin_b_01_tam.m2", + }, + { + fileId = "140580", + value = "helm_plate_dungeonpaladin_b_01_trf.m2", + text = "helm_plate_dungeonpaladin_b_01_trf.m2", + }, + { + fileId = "140581", + value = "helm_plate_dungeonpaladin_b_01_trm.m2", + text = "helm_plate_dungeonpaladin_b_01_trm.m2", + }, + { + fileId = "140612", + value = "helm_plate_dungeonwarrior_a_01_bef.m2", + text = "helm_plate_dungeonwarrior_a_01_bef.m2", + }, + { + fileId = "140613", + value = "helm_plate_dungeonwarrior_a_01_bem.m2", + text = "helm_plate_dungeonwarrior_a_01_bem.m2", + }, + { + fileId = "140614", + value = "helm_plate_dungeonwarrior_a_01_drf.m2", + text = "helm_plate_dungeonwarrior_a_01_drf.m2", + }, + { + fileId = "140615", + value = "helm_plate_dungeonwarrior_a_01_drm.m2", + text = "helm_plate_dungeonwarrior_a_01_drm.m2", + }, + { + fileId = "140616", + value = "helm_plate_dungeonwarrior_a_01_dwf.m2", + text = "helm_plate_dungeonwarrior_a_01_dwf.m2", + }, + { + fileId = "140617", + value = "helm_plate_dungeonwarrior_a_01_dwm.m2", + text = "helm_plate_dungeonwarrior_a_01_dwm.m2", + }, + { + fileId = "140618", + value = "helm_plate_dungeonwarrior_a_01_gnf.m2", + text = "helm_plate_dungeonwarrior_a_01_gnf.m2", + }, + { + fileId = "140619", + value = "helm_plate_dungeonwarrior_a_01_gnm.m2", + text = "helm_plate_dungeonwarrior_a_01_gnm.m2", + }, + { + fileId = "140620", + value = "helm_plate_dungeonwarrior_a_01_gof.m2", + text = "helm_plate_dungeonwarrior_a_01_gof.m2", + }, + { + fileId = "140621", + value = "helm_plate_dungeonwarrior_a_01_gom.m2", + text = "helm_plate_dungeonwarrior_a_01_gom.m2", + }, + { + fileId = "140622", + value = "helm_plate_dungeonwarrior_a_01_huf.m2", + text = "helm_plate_dungeonwarrior_a_01_huf.m2", + }, + { + fileId = "140623", + value = "helm_plate_dungeonwarrior_a_01_hum.m2", + text = "helm_plate_dungeonwarrior_a_01_hum.m2", + }, + { + fileId = "140624", + value = "helm_plate_dungeonwarrior_a_01_nif.m2", + text = "helm_plate_dungeonwarrior_a_01_nif.m2", + }, + { + fileId = "140625", + value = "helm_plate_dungeonwarrior_a_01_nim.m2", + text = "helm_plate_dungeonwarrior_a_01_nim.m2", + }, + { + fileId = "140626", + value = "helm_plate_dungeonwarrior_a_01_orf.m2", + text = "helm_plate_dungeonwarrior_a_01_orf.m2", + }, + { + fileId = "140627", + value = "helm_plate_dungeonwarrior_a_01_orm.m2", + text = "helm_plate_dungeonwarrior_a_01_orm.m2", + }, + { + fileId = "140628", + value = "helm_plate_dungeonwarrior_a_01_scf.m2", + text = "helm_plate_dungeonwarrior_a_01_scf.m2", + }, + { + fileId = "140629", + value = "helm_plate_dungeonwarrior_a_01_scm.m2", + text = "helm_plate_dungeonwarrior_a_01_scm.m2", + }, + { + fileId = "140630", + value = "helm_plate_dungeonwarrior_a_01_taf.m2", + text = "helm_plate_dungeonwarrior_a_01_taf.m2", + }, + { + fileId = "140631", + value = "helm_plate_dungeonwarrior_a_01_tam.m2", + text = "helm_plate_dungeonwarrior_a_01_tam.m2", + }, + { + fileId = "140632", + value = "helm_plate_dungeonwarrior_a_01_trf.m2", + text = "helm_plate_dungeonwarrior_a_01_trf.m2", + }, + { + fileId = "140633", + value = "helm_plate_dungeonwarrior_a_01_trm.m2", + text = "helm_plate_dungeonwarrior_a_01_trm.m2", + }, + { + fileId = "140639", + value = "helm_plate_dungeonwarrior_b_01_bef.m2", + text = "helm_plate_dungeonwarrior_b_01_bef.m2", + }, + { + fileId = "140640", + value = "helm_plate_dungeonwarrior_b_01_bem.m2", + text = "helm_plate_dungeonwarrior_b_01_bem.m2", + }, + { + fileId = "140641", + value = "helm_plate_dungeonwarrior_b_01_drf.m2", + text = "helm_plate_dungeonwarrior_b_01_drf.m2", + }, + { + fileId = "140642", + value = "helm_plate_dungeonwarrior_b_01_drm.m2", + text = "helm_plate_dungeonwarrior_b_01_drm.m2", + }, + { + fileId = "140643", + value = "helm_plate_dungeonwarrior_b_01_dwf.m2", + text = "helm_plate_dungeonwarrior_b_01_dwf.m2", + }, + { + fileId = "140644", + value = "helm_plate_dungeonwarrior_b_01_dwm.m2", + text = "helm_plate_dungeonwarrior_b_01_dwm.m2", + }, + { + fileId = "140645", + value = "helm_plate_dungeonwarrior_b_01_gnf.m2", + text = "helm_plate_dungeonwarrior_b_01_gnf.m2", + }, + { + fileId = "140646", + value = "helm_plate_dungeonwarrior_b_01_gnm.m2", + text = "helm_plate_dungeonwarrior_b_01_gnm.m2", + }, + { + fileId = "140647", + value = "helm_plate_dungeonwarrior_b_01_gof.m2", + text = "helm_plate_dungeonwarrior_b_01_gof.m2", + }, + { + fileId = "140648", + value = "helm_plate_dungeonwarrior_b_01_gom.m2", + text = "helm_plate_dungeonwarrior_b_01_gom.m2", + }, + { + fileId = "140649", + value = "helm_plate_dungeonwarrior_b_01_huf.m2", + text = "helm_plate_dungeonwarrior_b_01_huf.m2", + }, + { + fileId = "140650", + value = "helm_plate_dungeonwarrior_b_01_hum.m2", + text = "helm_plate_dungeonwarrior_b_01_hum.m2", + }, + { + fileId = "140651", + value = "helm_plate_dungeonwarrior_b_01_nif.m2", + text = "helm_plate_dungeonwarrior_b_01_nif.m2", + }, + { + fileId = "140652", + value = "helm_plate_dungeonwarrior_b_01_nim.m2", + text = "helm_plate_dungeonwarrior_b_01_nim.m2", + }, + { + fileId = "140653", + value = "helm_plate_dungeonwarrior_b_01_orf.m2", + text = "helm_plate_dungeonwarrior_b_01_orf.m2", + }, + { + fileId = "140654", + value = "helm_plate_dungeonwarrior_b_01_orm.m2", + text = "helm_plate_dungeonwarrior_b_01_orm.m2", + }, + { + fileId = "140655", + value = "helm_plate_dungeonwarrior_b_01_scf.m2", + text = "helm_plate_dungeonwarrior_b_01_scf.m2", + }, + { + fileId = "140656", + value = "helm_plate_dungeonwarrior_b_01_scm.m2", + text = "helm_plate_dungeonwarrior_b_01_scm.m2", + }, + { + fileId = "140657", + value = "helm_plate_dungeonwarrior_b_01_taf.m2", + text = "helm_plate_dungeonwarrior_b_01_taf.m2", + }, + { + fileId = "140658", + value = "helm_plate_dungeonwarrior_b_01_tam.m2", + text = "helm_plate_dungeonwarrior_b_01_tam.m2", + }, + { + fileId = "140659", + value = "helm_plate_dungeonwarrior_b_01_trf.m2", + text = "helm_plate_dungeonwarrior_b_01_trf.m2", + }, + { + fileId = "140660", + value = "helm_plate_dungeonwarrior_b_01_trm.m2", + text = "helm_plate_dungeonwarrior_b_01_trm.m2", + }, + { + fileId = "140666", + value = "helm_plate_headless_d_01_bef.m2", + text = "helm_plate_headless_d_01_bef.m2", + }, + { + fileId = "140667", + value = "helm_plate_headless_d_01_bem.m2", + text = "helm_plate_headless_d_01_bem.m2", + }, + { + fileId = "140668", + value = "helm_plate_headless_d_01_drf.m2", + text = "helm_plate_headless_d_01_drf.m2", + }, + { + fileId = "140669", + value = "helm_plate_headless_d_01_drm.m2", + text = "helm_plate_headless_d_01_drm.m2", + }, + { + fileId = "140670", + value = "helm_plate_headless_d_01_dwf.m2", + text = "helm_plate_headless_d_01_dwf.m2", + }, + { + fileId = "140671", + value = "helm_plate_headless_d_01_dwm.m2", + text = "helm_plate_headless_d_01_dwm.m2", + }, + { + fileId = "140672", + value = "helm_plate_headless_d_01_gnf.m2", + text = "helm_plate_headless_d_01_gnf.m2", + }, + { + fileId = "140673", + value = "helm_plate_headless_d_01_gnm.m2", + text = "helm_plate_headless_d_01_gnm.m2", + }, + { + fileId = "140674", + value = "helm_plate_headless_d_01_gof.m2", + text = "helm_plate_headless_d_01_gof.m2", + }, + { + fileId = "140675", + value = "helm_plate_headless_d_01_gom.m2", + text = "helm_plate_headless_d_01_gom.m2", + }, + { + fileId = "140676", + value = "helm_plate_headless_d_01_huf.m2", + text = "helm_plate_headless_d_01_huf.m2", + }, + { + fileId = "140677", + value = "helm_plate_headless_d_01_hum.m2", + text = "helm_plate_headless_d_01_hum.m2", + }, + { + fileId = "140678", + value = "helm_plate_headless_d_01_nif.m2", + text = "helm_plate_headless_d_01_nif.m2", + }, + { + fileId = "140679", + value = "helm_plate_headless_d_01_nim.m2", + text = "helm_plate_headless_d_01_nim.m2", + }, + { + fileId = "140680", + value = "helm_plate_headless_d_01_orf.m2", + text = "helm_plate_headless_d_01_orf.m2", + }, + { + fileId = "140681", + value = "helm_plate_headless_d_01_orm.m2", + text = "helm_plate_headless_d_01_orm.m2", + }, + { + fileId = "140682", + value = "helm_plate_headless_d_01_scf.m2", + text = "helm_plate_headless_d_01_scf.m2", + }, + { + fileId = "140683", + value = "helm_plate_headless_d_01_scm.m2", + text = "helm_plate_headless_d_01_scm.m2", + }, + { + fileId = "140684", + value = "helm_plate_headless_d_01_taf.m2", + text = "helm_plate_headless_d_01_taf.m2", + }, + { + fileId = "140685", + value = "helm_plate_headless_d_01_tam.m2", + text = "helm_plate_headless_d_01_tam.m2", + }, + { + fileId = "140686", + value = "helm_plate_headless_d_01_trf.m2", + text = "helm_plate_headless_d_01_trf.m2", + }, + { + fileId = "140687", + value = "helm_plate_headless_d_01_trm.m2", + text = "helm_plate_headless_d_01_trm.m2", + }, + { + fileId = "140814", + value = "helm_plate_pvpalliance_a_01_bef.m2", + text = "helm_plate_pvpalliance_a_01_bef.m2", + }, + { + fileId = "140815", + value = "helm_plate_pvpalliance_a_01_bem.m2", + text = "helm_plate_pvpalliance_a_01_bem.m2", + }, + { + fileId = "140816", + value = "helm_plate_pvpalliance_a_01_drf.m2", + text = "helm_plate_pvpalliance_a_01_drf.m2", + }, + { + fileId = "140817", + value = "helm_plate_pvpalliance_a_01_drm.m2", + text = "helm_plate_pvpalliance_a_01_drm.m2", + }, + { + fileId = "140818", + value = "helm_plate_pvpalliance_a_01_dwf.m2", + text = "helm_plate_pvpalliance_a_01_dwf.m2", + }, + { + fileId = "140819", + value = "helm_plate_pvpalliance_a_01_dwm.m2", + text = "helm_plate_pvpalliance_a_01_dwm.m2", + }, + { + fileId = "140820", + value = "helm_plate_pvpalliance_a_01_gnf.m2", + text = "helm_plate_pvpalliance_a_01_gnf.m2", + }, + { + fileId = "140821", + value = "helm_plate_pvpalliance_a_01_gnm.m2", + text = "helm_plate_pvpalliance_a_01_gnm.m2", + }, + { + fileId = "140822", + value = "helm_plate_pvpalliance_a_01_gof.m2", + text = "helm_plate_pvpalliance_a_01_gof.m2", + }, + { + fileId = "140823", + value = "helm_plate_pvpalliance_a_01_gom.m2", + text = "helm_plate_pvpalliance_a_01_gom.m2", + }, + { + fileId = "140824", + value = "helm_plate_pvpalliance_a_01_huf.m2", + text = "helm_plate_pvpalliance_a_01_huf.m2", + }, + { + fileId = "140825", + value = "helm_plate_pvpalliance_a_01_hum.m2", + text = "helm_plate_pvpalliance_a_01_hum.m2", + }, + { + fileId = "140826", + value = "helm_plate_pvpalliance_a_01_nif.m2", + text = "helm_plate_pvpalliance_a_01_nif.m2", + }, + { + fileId = "140827", + value = "helm_plate_pvpalliance_a_01_nim.m2", + text = "helm_plate_pvpalliance_a_01_nim.m2", + }, + { + fileId = "140828", + value = "helm_plate_pvpalliance_a_01_orf.m2", + text = "helm_plate_pvpalliance_a_01_orf.m2", + }, + { + fileId = "140829", + value = "helm_plate_pvpalliance_a_01_orm.m2", + text = "helm_plate_pvpalliance_a_01_orm.m2", + }, + { + fileId = "140830", + value = "helm_plate_pvpalliance_a_01_scf.m2", + text = "helm_plate_pvpalliance_a_01_scf.m2", + }, + { + fileId = "140831", + value = "helm_plate_pvpalliance_a_01_scm.m2", + text = "helm_plate_pvpalliance_a_01_scm.m2", + }, + { + fileId = "140832", + value = "helm_plate_pvpalliance_a_01_taf.m2", + text = "helm_plate_pvpalliance_a_01_taf.m2", + }, + { + fileId = "140833", + value = "helm_plate_pvpalliance_a_01_tam.m2", + text = "helm_plate_pvpalliance_a_01_tam.m2", + }, + { + fileId = "140834", + value = "helm_plate_pvpalliance_a_01_trf.m2", + text = "helm_plate_pvpalliance_a_01_trf.m2", + }, + { + fileId = "140835", + value = "helm_plate_pvpalliance_a_01_trm.m2", + text = "helm_plate_pvpalliance_a_01_trm.m2", + }, + { + fileId = "140839", + value = "helm_plate_pvpalliance_c_01_gom.m2", + text = "helm_plate_pvpalliance_c_01_gom.m2", + }, + { + fileId = "140840", + value = "helm_plate_pvphorde_a_01_bef.m2", + text = "helm_plate_pvphorde_a_01_bef.m2", + }, + { + fileId = "140841", + value = "helm_plate_pvphorde_a_01_bem.m2", + text = "helm_plate_pvphorde_a_01_bem.m2", + }, + { + fileId = "140842", + value = "helm_plate_pvphorde_a_01_drf.m2", + text = "helm_plate_pvphorde_a_01_drf.m2", + }, + { + fileId = "140843", + value = "helm_plate_pvphorde_a_01_drm.m2", + text = "helm_plate_pvphorde_a_01_drm.m2", + }, + { + fileId = "140844", + value = "helm_plate_pvphorde_a_01_dwf.m2", + text = "helm_plate_pvphorde_a_01_dwf.m2", + }, + { + fileId = "140845", + value = "helm_plate_pvphorde_a_01_dwm.m2", + text = "helm_plate_pvphorde_a_01_dwm.m2", + }, + { + fileId = "140846", + value = "helm_plate_pvphorde_a_01_gnf.m2", + text = "helm_plate_pvphorde_a_01_gnf.m2", + }, + { + fileId = "140847", + value = "helm_plate_pvphorde_a_01_gnm.m2", + text = "helm_plate_pvphorde_a_01_gnm.m2", + }, + { + fileId = "140848", + value = "helm_plate_pvphorde_a_01_gof.m2", + text = "helm_plate_pvphorde_a_01_gof.m2", + }, + { + fileId = "140849", + value = "helm_plate_pvphorde_a_01_huf.m2", + text = "helm_plate_pvphorde_a_01_huf.m2", + }, + { + fileId = "140850", + value = "helm_plate_pvphorde_a_01_hum.m2", + text = "helm_plate_pvphorde_a_01_hum.m2", + }, + { + fileId = "140851", + value = "helm_plate_pvphorde_a_01_nif.m2", + text = "helm_plate_pvphorde_a_01_nif.m2", + }, + { + fileId = "140852", + value = "helm_plate_pvphorde_a_01_nim.m2", + text = "helm_plate_pvphorde_a_01_nim.m2", + }, + { + fileId = "140853", + value = "helm_plate_pvphorde_a_01_orf.m2", + text = "helm_plate_pvphorde_a_01_orf.m2", + }, + { + fileId = "140854", + value = "helm_plate_pvphorde_a_01_orm.m2", + text = "helm_plate_pvphorde_a_01_orm.m2", + }, + { + fileId = "140855", + value = "helm_plate_pvphorde_a_01_scf.m2", + text = "helm_plate_pvphorde_a_01_scf.m2", + }, + { + fileId = "140856", + value = "helm_plate_pvphorde_a_01_scm.m2", + text = "helm_plate_pvphorde_a_01_scm.m2", + }, + { + fileId = "140857", + value = "helm_plate_pvphorde_a_01_taf.m2", + text = "helm_plate_pvphorde_a_01_taf.m2", + }, + { + fileId = "140858", + value = "helm_plate_pvphorde_a_01_tam.m2", + text = "helm_plate_pvphorde_a_01_tam.m2", + }, + { + fileId = "140859", + value = "helm_plate_pvphorde_a_01_trf.m2", + text = "helm_plate_pvphorde_a_01_trf.m2", + }, + { + fileId = "140860", + value = "helm_plate_pvphorde_a_01_trm.m2", + text = "helm_plate_pvphorde_a_01_trm.m2", + }, + { + fileId = "140862", + value = "helm_plate_pvphorde_b_01_bem.m2", + text = "helm_plate_pvphorde_b_01_bem.m2", + }, + { + fileId = "140893", + value = "helm_plate_raidpaladin_a_01_bef.m2", + text = "helm_plate_raidpaladin_a_01_bef.m2", + }, + { + fileId = "140894", + value = "helm_plate_raidpaladin_a_01_bem.m2", + text = "helm_plate_raidpaladin_a_01_bem.m2", + }, + { + fileId = "140895", + value = "helm_plate_raidpaladin_a_01_drf.m2", + text = "helm_plate_raidpaladin_a_01_drf.m2", + }, + { + fileId = "140896", + value = "helm_plate_raidpaladin_a_01_drm.m2", + text = "helm_plate_raidpaladin_a_01_drm.m2", + }, + { + fileId = "140897", + value = "helm_plate_raidpaladin_a_01_dwf.m2", + text = "helm_plate_raidpaladin_a_01_dwf.m2", + }, + { + fileId = "140898", + value = "helm_plate_raidpaladin_a_01_dwm.m2", + text = "helm_plate_raidpaladin_a_01_dwm.m2", + }, + { + fileId = "140899", + value = "helm_plate_raidpaladin_a_01_gnf.m2", + text = "helm_plate_raidpaladin_a_01_gnf.m2", + }, + { + fileId = "140900", + value = "helm_plate_raidpaladin_a_01_gnm.m2", + text = "helm_plate_raidpaladin_a_01_gnm.m2", + }, + { + fileId = "140901", + value = "helm_plate_raidpaladin_a_01_gof.m2", + text = "helm_plate_raidpaladin_a_01_gof.m2", + }, + { + fileId = "140902", + value = "helm_plate_raidpaladin_a_01_huf.m2", + text = "helm_plate_raidpaladin_a_01_huf.m2", + }, + { + fileId = "140903", + value = "helm_plate_raidpaladin_a_01_hum.m2", + text = "helm_plate_raidpaladin_a_01_hum.m2", + }, + { + fileId = "140904", + value = "helm_plate_raidpaladin_a_01_nif.m2", + text = "helm_plate_raidpaladin_a_01_nif.m2", + }, + { + fileId = "140905", + value = "helm_plate_raidpaladin_a_01_nim.m2", + text = "helm_plate_raidpaladin_a_01_nim.m2", + }, + { + fileId = "140906", + value = "helm_plate_raidpaladin_a_01_orf.m2", + text = "helm_plate_raidpaladin_a_01_orf.m2", + }, + { + fileId = "140907", + value = "helm_plate_raidpaladin_a_01_orm.m2", + text = "helm_plate_raidpaladin_a_01_orm.m2", + }, + { + fileId = "140908", + value = "helm_plate_raidpaladin_a_01_scf.m2", + text = "helm_plate_raidpaladin_a_01_scf.m2", + }, + { + fileId = "140909", + value = "helm_plate_raidpaladin_a_01_scm.m2", + text = "helm_plate_raidpaladin_a_01_scm.m2", + }, + { + fileId = "140910", + value = "helm_plate_raidpaladin_a_01_taf.m2", + text = "helm_plate_raidpaladin_a_01_taf.m2", + }, + { + fileId = "140911", + value = "helm_plate_raidpaladin_a_01_tam.m2", + text = "helm_plate_raidpaladin_a_01_tam.m2", + }, + { + fileId = "140912", + value = "helm_plate_raidpaladin_a_01_trf.m2", + text = "helm_plate_raidpaladin_a_01_trf.m2", + }, + { + fileId = "140913", + value = "helm_plate_raidpaladin_a_01_trm.m2", + text = "helm_plate_raidpaladin_a_01_trm.m2", + }, + { + fileId = "140919", + value = "helm_plate_raidpaladin_b_01_bef.m2", + text = "helm_plate_raidpaladin_b_01_bef.m2", + }, + { + fileId = "140920", + value = "helm_plate_raidpaladin_b_01_bem.m2", + text = "helm_plate_raidpaladin_b_01_bem.m2", + }, + { + fileId = "140921", + value = "helm_plate_raidpaladin_b_01_drf.m2", + text = "helm_plate_raidpaladin_b_01_drf.m2", + }, + { + fileId = "140922", + value = "helm_plate_raidpaladin_b_01_drm.m2", + text = "helm_plate_raidpaladin_b_01_drm.m2", + }, + { + fileId = "140923", + value = "helm_plate_raidpaladin_b_01_dwf.m2", + text = "helm_plate_raidpaladin_b_01_dwf.m2", + }, + { + fileId = "140924", + value = "helm_plate_raidpaladin_b_01_dwm.m2", + text = "helm_plate_raidpaladin_b_01_dwm.m2", + }, + { + fileId = "140925", + value = "helm_plate_raidpaladin_b_01_gnf.m2", + text = "helm_plate_raidpaladin_b_01_gnf.m2", + }, + { + fileId = "140926", + value = "helm_plate_raidpaladin_b_01_gnm.m2", + text = "helm_plate_raidpaladin_b_01_gnm.m2", + }, + { + fileId = "140927", + value = "helm_plate_raidpaladin_b_01_gof.m2", + text = "helm_plate_raidpaladin_b_01_gof.m2", + }, + { + fileId = "140928", + value = "helm_plate_raidpaladin_b_01_gom.m2", + text = "helm_plate_raidpaladin_b_01_gom.m2", + }, + { + fileId = "140929", + value = "helm_plate_raidpaladin_b_01_huf.m2", + text = "helm_plate_raidpaladin_b_01_huf.m2", + }, + { + fileId = "140930", + value = "helm_plate_raidpaladin_b_01_hum.m2", + text = "helm_plate_raidpaladin_b_01_hum.m2", + }, + { + fileId = "140931", + value = "helm_plate_raidpaladin_b_01_nif.m2", + text = "helm_plate_raidpaladin_b_01_nif.m2", + }, + { + fileId = "140932", + value = "helm_plate_raidpaladin_b_01_nim.m2", + text = "helm_plate_raidpaladin_b_01_nim.m2", + }, + { + fileId = "140933", + value = "helm_plate_raidpaladin_b_01_orf.m2", + text = "helm_plate_raidpaladin_b_01_orf.m2", + }, + { + fileId = "140934", + value = "helm_plate_raidpaladin_b_01_orm.m2", + text = "helm_plate_raidpaladin_b_01_orm.m2", + }, + { + fileId = "140935", + value = "helm_plate_raidpaladin_b_01_scf.m2", + text = "helm_plate_raidpaladin_b_01_scf.m2", + }, + { + fileId = "140936", + value = "helm_plate_raidpaladin_b_01_scm.m2", + text = "helm_plate_raidpaladin_b_01_scm.m2", + }, + { + fileId = "140937", + value = "helm_plate_raidpaladin_b_01_taf.m2", + text = "helm_plate_raidpaladin_b_01_taf.m2", + }, + { + fileId = "140938", + value = "helm_plate_raidpaladin_b_01_tam.m2", + text = "helm_plate_raidpaladin_b_01_tam.m2", + }, + { + fileId = "140939", + value = "helm_plate_raidpaladin_b_01_trf.m2", + text = "helm_plate_raidpaladin_b_01_trf.m2", + }, + { + fileId = "140940", + value = "helm_plate_raidpaladin_b_01_trm.m2", + text = "helm_plate_raidpaladin_b_01_trm.m2", + }, + { + fileId = "140944", + value = "helm_plate_raidpaladin_c_01_bef.m2", + text = "helm_plate_raidpaladin_c_01_bef.m2", + }, + { + fileId = "140945", + value = "helm_plate_raidpaladin_c_01_bem.m2", + text = "helm_plate_raidpaladin_c_01_bem.m2", + }, + { + fileId = "140946", + value = "helm_plate_raidpaladin_c_01_drf.m2", + text = "helm_plate_raidpaladin_c_01_drf.m2", + }, + { + fileId = "140947", + value = "helm_plate_raidpaladin_c_01_drm.m2", + text = "helm_plate_raidpaladin_c_01_drm.m2", + }, + { + fileId = "140948", + value = "helm_plate_raidpaladin_c_01_dwf.m2", + text = "helm_plate_raidpaladin_c_01_dwf.m2", + }, + { + fileId = "140949", + value = "helm_plate_raidpaladin_c_01_dwm.m2", + text = "helm_plate_raidpaladin_c_01_dwm.m2", + }, + { + fileId = "140950", + value = "helm_plate_raidpaladin_c_01_gnf.m2", + text = "helm_plate_raidpaladin_c_01_gnf.m2", + }, + { + fileId = "140951", + value = "helm_plate_raidpaladin_c_01_gnm.m2", + text = "helm_plate_raidpaladin_c_01_gnm.m2", + }, + { + fileId = "140952", + value = "helm_plate_raidpaladin_c_01_gof.m2", + text = "helm_plate_raidpaladin_c_01_gof.m2", + }, + { + fileId = "140953", + value = "helm_plate_raidpaladin_c_01_gom.m2", + text = "helm_plate_raidpaladin_c_01_gom.m2", + }, + { + fileId = "140954", + value = "helm_plate_raidpaladin_c_01_huf.m2", + text = "helm_plate_raidpaladin_c_01_huf.m2", + }, + { + fileId = "140955", + value = "helm_plate_raidpaladin_c_01_hum.m2", + text = "helm_plate_raidpaladin_c_01_hum.m2", + }, + { + fileId = "140956", + value = "helm_plate_raidpaladin_c_01_nif.m2", + text = "helm_plate_raidpaladin_c_01_nif.m2", + }, + { + fileId = "140957", + value = "helm_plate_raidpaladin_c_01_nim.m2", + text = "helm_plate_raidpaladin_c_01_nim.m2", + }, + { + fileId = "140958", + value = "helm_plate_raidpaladin_c_01_orf.m2", + text = "helm_plate_raidpaladin_c_01_orf.m2", + }, + { + fileId = "140959", + value = "helm_plate_raidpaladin_c_01_orm.m2", + text = "helm_plate_raidpaladin_c_01_orm.m2", + }, + { + fileId = "140960", + value = "helm_plate_raidpaladin_c_01_scf.m2", + text = "helm_plate_raidpaladin_c_01_scf.m2", + }, + { + fileId = "140961", + value = "helm_plate_raidpaladin_c_01_scm.m2", + text = "helm_plate_raidpaladin_c_01_scm.m2", + }, + { + fileId = "140962", + value = "helm_plate_raidpaladin_c_01_taf.m2", + text = "helm_plate_raidpaladin_c_01_taf.m2", + }, + { + fileId = "140963", + value = "helm_plate_raidpaladin_c_01_tam.m2", + text = "helm_plate_raidpaladin_c_01_tam.m2", + }, + { + fileId = "140964", + value = "helm_plate_raidpaladin_c_01_trf.m2", + text = "helm_plate_raidpaladin_c_01_trf.m2", + }, + { + fileId = "140965", + value = "helm_plate_raidpaladin_c_01_trm.m2", + text = "helm_plate_raidpaladin_c_01_trm.m2", + }, + { + fileId = "140968", + value = "helm_plate_raidpaladin_d_01_bef.m2", + text = "helm_plate_raidpaladin_d_01_bef.m2", + }, + { + fileId = "140969", + value = "helm_plate_raidpaladin_d_01_bem.m2", + text = "helm_plate_raidpaladin_d_01_bem.m2", + }, + { + fileId = "140970", + value = "helm_plate_raidpaladin_d_01_drf.m2", + text = "helm_plate_raidpaladin_d_01_drf.m2", + }, + { + fileId = "140971", + value = "helm_plate_raidpaladin_d_01_drm.m2", + text = "helm_plate_raidpaladin_d_01_drm.m2", + }, + { + fileId = "140972", + value = "helm_plate_raidpaladin_d_01_dwf.m2", + text = "helm_plate_raidpaladin_d_01_dwf.m2", + }, + { + fileId = "140973", + value = "helm_plate_raidpaladin_d_01_dwm.m2", + text = "helm_plate_raidpaladin_d_01_dwm.m2", + }, + { + fileId = "140975", + value = "helm_plate_raidpaladin_d_01_gnf.m2", + text = "helm_plate_raidpaladin_d_01_gnf.m2", + }, + { + fileId = "140976", + value = "helm_plate_raidpaladin_d_01_gnm.m2", + text = "helm_plate_raidpaladin_d_01_gnm.m2", + }, + { + fileId = "140977", + value = "helm_plate_raidpaladin_d_01_gof.m2", + text = "helm_plate_raidpaladin_d_01_gof.m2", + }, + { + fileId = "140978", + value = "helm_plate_raidpaladin_d_01_gom.m2", + text = "helm_plate_raidpaladin_d_01_gom.m2", + }, + { + fileId = "140979", + value = "helm_plate_raidpaladin_d_01_huf.m2", + text = "helm_plate_raidpaladin_d_01_huf.m2", + }, + { + fileId = "140980", + value = "helm_plate_raidpaladin_d_01_hum.m2", + text = "helm_plate_raidpaladin_d_01_hum.m2", + }, + { + fileId = "140981", + value = "helm_plate_raidpaladin_d_01_nif.m2", + text = "helm_plate_raidpaladin_d_01_nif.m2", + }, + { + fileId = "140982", + value = "helm_plate_raidpaladin_d_01_nim.m2", + text = "helm_plate_raidpaladin_d_01_nim.m2", + }, + { + fileId = "140983", + value = "helm_plate_raidpaladin_d_01_orf.m2", + text = "helm_plate_raidpaladin_d_01_orf.m2", + }, + { + fileId = "140984", + value = "helm_plate_raidpaladin_d_01_orm.m2", + text = "helm_plate_raidpaladin_d_01_orm.m2", + }, + { + fileId = "140985", + value = "helm_plate_raidpaladin_d_01_scf.m2", + text = "helm_plate_raidpaladin_d_01_scf.m2", + }, + { + fileId = "140986", + value = "helm_plate_raidpaladin_d_01_scm.m2", + text = "helm_plate_raidpaladin_d_01_scm.m2", + }, + { + fileId = "140987", + value = "helm_plate_raidpaladin_d_01_taf.m2", + text = "helm_plate_raidpaladin_d_01_taf.m2", + }, + { + fileId = "140988", + value = "helm_plate_raidpaladin_d_01_tam.m2", + text = "helm_plate_raidpaladin_d_01_tam.m2", + }, + { + fileId = "140989", + value = "helm_plate_raidpaladin_d_01_trf.m2", + text = "helm_plate_raidpaladin_d_01_trf.m2", + }, + { + fileId = "140990", + value = "helm_plate_raidpaladin_d_01_trm.m2", + text = "helm_plate_raidpaladin_d_01_trm.m2", + }, + { + fileId = "140993", + value = "helm_plate_raidpaladin_e_01_bef.m2", + text = "helm_plate_raidpaladin_e_01_bef.m2", + }, + { + fileId = "140994", + value = "helm_plate_raidpaladin_e_01_bem.m2", + text = "helm_plate_raidpaladin_e_01_bem.m2", + }, + { + fileId = "140995", + value = "helm_plate_raidpaladin_e_01_drf.m2", + text = "helm_plate_raidpaladin_e_01_drf.m2", + }, + { + fileId = "140996", + value = "helm_plate_raidpaladin_e_01_drm.m2", + text = "helm_plate_raidpaladin_e_01_drm.m2", + }, + { + fileId = "140997", + value = "helm_plate_raidpaladin_e_01_dwf.m2", + text = "helm_plate_raidpaladin_e_01_dwf.m2", + }, + { + fileId = "140998", + value = "helm_plate_raidpaladin_e_01_dwm.m2", + text = "helm_plate_raidpaladin_e_01_dwm.m2", + }, + { + fileId = "140999", + value = "helm_plate_raidpaladin_e_01_gnf.m2", + text = "helm_plate_raidpaladin_e_01_gnf.m2", + }, + { + fileId = "141000", + value = "helm_plate_raidpaladin_e_01_gnm.m2", + text = "helm_plate_raidpaladin_e_01_gnm.m2", + }, + { + fileId = "141001", + value = "helm_plate_raidpaladin_e_01_huf.m2", + text = "helm_plate_raidpaladin_e_01_huf.m2", + }, + { + fileId = "141002", + value = "helm_plate_raidpaladin_e_01_hum.m2", + text = "helm_plate_raidpaladin_e_01_hum.m2", + }, + { + fileId = "141003", + value = "helm_plate_raidpaladin_e_01_nif.m2", + text = "helm_plate_raidpaladin_e_01_nif.m2", + }, + { + fileId = "141004", + value = "helm_plate_raidpaladin_e_01_nim.m2", + text = "helm_plate_raidpaladin_e_01_nim.m2", + }, + { + fileId = "141005", + value = "helm_plate_raidpaladin_e_01_orf.m2", + text = "helm_plate_raidpaladin_e_01_orf.m2", + }, + { + fileId = "141006", + value = "helm_plate_raidpaladin_e_01_orm.m2", + text = "helm_plate_raidpaladin_e_01_orm.m2", + }, + { + fileId = "141007", + value = "helm_plate_raidpaladin_e_01_scf.m2", + text = "helm_plate_raidpaladin_e_01_scf.m2", + }, + { + fileId = "141008", + value = "helm_plate_raidpaladin_e_01_scm.m2", + text = "helm_plate_raidpaladin_e_01_scm.m2", + }, + { + fileId = "141009", + value = "helm_plate_raidpaladin_e_01_taf.m2", + text = "helm_plate_raidpaladin_e_01_taf.m2", + }, + { + fileId = "141010", + value = "helm_plate_raidpaladin_e_01_tam.m2", + text = "helm_plate_raidpaladin_e_01_tam.m2", + }, + { + fileId = "141011", + value = "helm_plate_raidpaladin_e_01_trf.m2", + text = "helm_plate_raidpaladin_e_01_trf.m2", + }, + { + fileId = "141012", + value = "helm_plate_raidpaladin_e_01_trm.m2", + text = "helm_plate_raidpaladin_e_01_trm.m2", + }, + { + fileId = "141015", + value = "helm_plate_raidpaladin_f_01_bef.m2", + text = "helm_plate_raidpaladin_f_01_bef.m2", + }, + { + fileId = "141016", + value = "helm_plate_raidpaladin_f_01_bem.m2", + text = "helm_plate_raidpaladin_f_01_bem.m2", + }, + { + fileId = "141017", + value = "helm_plate_raidpaladin_f_01_drf.m2", + text = "helm_plate_raidpaladin_f_01_drf.m2", + }, + { + fileId = "141018", + value = "helm_plate_raidpaladin_f_01_drm.m2", + text = "helm_plate_raidpaladin_f_01_drm.m2", + }, + { + fileId = "141019", + value = "helm_plate_raidpaladin_f_01_dwf.m2", + text = "helm_plate_raidpaladin_f_01_dwf.m2", + }, + { + fileId = "141020", + value = "helm_plate_raidpaladin_f_01_dwm.m2", + text = "helm_plate_raidpaladin_f_01_dwm.m2", + }, + { + fileId = "141021", + value = "helm_plate_raidpaladin_f_01_gnf.m2", + text = "helm_plate_raidpaladin_f_01_gnf.m2", + }, + { + fileId = "141022", + value = "helm_plate_raidpaladin_f_01_gnm.m2", + text = "helm_plate_raidpaladin_f_01_gnm.m2", + }, + { + fileId = "141023", + value = "helm_plate_raidpaladin_f_01_gom.m2", + text = "helm_plate_raidpaladin_f_01_gom.m2", + }, + { + fileId = "141024", + value = "helm_plate_raidpaladin_f_01_huf.m2", + text = "helm_plate_raidpaladin_f_01_huf.m2", + }, + { + fileId = "141025", + value = "helm_plate_raidpaladin_f_01_hum.m2", + text = "helm_plate_raidpaladin_f_01_hum.m2", + }, + { + fileId = "141026", + value = "helm_plate_raidpaladin_f_01_nif.m2", + text = "helm_plate_raidpaladin_f_01_nif.m2", + }, + { + fileId = "141027", + value = "helm_plate_raidpaladin_f_01_nim.m2", + text = "helm_plate_raidpaladin_f_01_nim.m2", + }, + { + fileId = "141028", + value = "helm_plate_raidpaladin_f_01_orf.m2", + text = "helm_plate_raidpaladin_f_01_orf.m2", + }, + { + fileId = "141029", + value = "helm_plate_raidpaladin_f_01_orm.m2", + text = "helm_plate_raidpaladin_f_01_orm.m2", + }, + { + fileId = "141030", + value = "helm_plate_raidpaladin_f_01_scf.m2", + text = "helm_plate_raidpaladin_f_01_scf.m2", + }, + { + fileId = "141031", + value = "helm_plate_raidpaladin_f_01_scm.m2", + text = "helm_plate_raidpaladin_f_01_scm.m2", + }, + { + fileId = "141032", + value = "helm_plate_raidpaladin_f_01_taf.m2", + text = "helm_plate_raidpaladin_f_01_taf.m2", + }, + { + fileId = "141033", + value = "helm_plate_raidpaladin_f_01_tam.m2", + text = "helm_plate_raidpaladin_f_01_tam.m2", + }, + { + fileId = "141034", + value = "helm_plate_raidpaladin_f_01_trf.m2", + text = "helm_plate_raidpaladin_f_01_trf.m2", + }, + { + fileId = "141035", + value = "helm_plate_raidpaladin_f_01_trm.m2", + text = "helm_plate_raidpaladin_f_01_trm.m2", + }, + { + fileId = "141039", + value = "helm_plate_raidwarrior_a_01_bef.m2", + text = "helm_plate_raidwarrior_a_01_bef.m2", + }, + { + fileId = "141040", + value = "helm_plate_raidwarrior_a_01_bem.m2", + text = "helm_plate_raidwarrior_a_01_bem.m2", + }, + { + fileId = "141041", + value = "helm_plate_raidwarrior_a_01_drf.m2", + text = "helm_plate_raidwarrior_a_01_drf.m2", + }, + { + fileId = "141042", + value = "helm_plate_raidwarrior_a_01_drm.m2", + text = "helm_plate_raidwarrior_a_01_drm.m2", + }, + { + fileId = "141043", + value = "helm_plate_raidwarrior_a_01_dwf.m2", + text = "helm_plate_raidwarrior_a_01_dwf.m2", + }, + { + fileId = "141044", + value = "helm_plate_raidwarrior_a_01_dwm.m2", + text = "helm_plate_raidwarrior_a_01_dwm.m2", + }, + { + fileId = "141045", + value = "helm_plate_raidwarrior_a_01_gnf.m2", + text = "helm_plate_raidwarrior_a_01_gnf.m2", + }, + { + fileId = "141046", + value = "helm_plate_raidwarrior_a_01_gnm.m2", + text = "helm_plate_raidwarrior_a_01_gnm.m2", + }, + { + fileId = "141047", + value = "helm_plate_raidwarrior_a_01_gof.m2", + text = "helm_plate_raidwarrior_a_01_gof.m2", + }, + { + fileId = "141048", + value = "helm_plate_raidwarrior_a_01_gom.m2", + text = "helm_plate_raidwarrior_a_01_gom.m2", + }, + { + fileId = "141049", + value = "helm_plate_raidwarrior_a_01_huf.m2", + text = "helm_plate_raidwarrior_a_01_huf.m2", + }, + { + fileId = "141050", + value = "helm_plate_raidwarrior_a_01_hum.m2", + text = "helm_plate_raidwarrior_a_01_hum.m2", + }, + { + fileId = "141051", + value = "helm_plate_raidwarrior_a_01_nif.m2", + text = "helm_plate_raidwarrior_a_01_nif.m2", + }, + { + fileId = "141052", + value = "helm_plate_raidwarrior_a_01_nim.m2", + text = "helm_plate_raidwarrior_a_01_nim.m2", + }, + { + fileId = "141053", + value = "helm_plate_raidwarrior_a_01_orf.m2", + text = "helm_plate_raidwarrior_a_01_orf.m2", + }, + { + fileId = "141054", + value = "helm_plate_raidwarrior_a_01_orm.m2", + text = "helm_plate_raidwarrior_a_01_orm.m2", + }, + { + fileId = "141055", + value = "helm_plate_raidwarrior_a_01_scf.m2", + text = "helm_plate_raidwarrior_a_01_scf.m2", + }, + { + fileId = "141056", + value = "helm_plate_raidwarrior_a_01_scm.m2", + text = "helm_plate_raidwarrior_a_01_scm.m2", + }, + { + fileId = "141057", + value = "helm_plate_raidwarrior_a_01_taf.m2", + text = "helm_plate_raidwarrior_a_01_taf.m2", + }, + { + fileId = "141058", + value = "helm_plate_raidwarrior_a_01_tam.m2", + text = "helm_plate_raidwarrior_a_01_tam.m2", + }, + { + fileId = "141059", + value = "helm_plate_raidwarrior_a_01_trf.m2", + text = "helm_plate_raidwarrior_a_01_trf.m2", + }, + { + fileId = "141060", + value = "helm_plate_raidwarrior_a_01_trm.m2", + text = "helm_plate_raidwarrior_a_01_trm.m2", + }, + { + fileId = "141066", + value = "helm_plate_raidwarrior_b_01_bef.m2", + text = "helm_plate_raidwarrior_b_01_bef.m2", + }, + { + fileId = "141067", + value = "helm_plate_raidwarrior_b_01_bem.m2", + text = "helm_plate_raidwarrior_b_01_bem.m2", + }, + { + fileId = "141068", + value = "helm_plate_raidwarrior_b_01_drf.m2", + text = "helm_plate_raidwarrior_b_01_drf.m2", + }, + { + fileId = "141069", + value = "helm_plate_raidwarrior_b_01_drm.m2", + text = "helm_plate_raidwarrior_b_01_drm.m2", + }, + { + fileId = "141070", + value = "helm_plate_raidwarrior_b_01_dwf.m2", + text = "helm_plate_raidwarrior_b_01_dwf.m2", + }, + { + fileId = "141071", + value = "helm_plate_raidwarrior_b_01_dwm.m2", + text = "helm_plate_raidwarrior_b_01_dwm.m2", + }, + { + fileId = "141072", + value = "helm_plate_raidwarrior_b_01_gnf.m2", + text = "helm_plate_raidwarrior_b_01_gnf.m2", + }, + { + fileId = "141073", + value = "helm_plate_raidwarrior_b_01_gnm.m2", + text = "helm_plate_raidwarrior_b_01_gnm.m2", + }, + { + fileId = "141074", + value = "helm_plate_raidwarrior_b_01_gof.m2", + text = "helm_plate_raidwarrior_b_01_gof.m2", + }, + { + fileId = "141075", + value = "helm_plate_raidwarrior_b_01_gom.m2", + text = "helm_plate_raidwarrior_b_01_gom.m2", + }, + { + fileId = "141076", + value = "helm_plate_raidwarrior_b_01_huf.m2", + text = "helm_plate_raidwarrior_b_01_huf.m2", + }, + { + fileId = "141077", + value = "helm_plate_raidwarrior_b_01_hum.m2", + text = "helm_plate_raidwarrior_b_01_hum.m2", + }, + { + fileId = "141078", + value = "helm_plate_raidwarrior_b_01_nif.m2", + text = "helm_plate_raidwarrior_b_01_nif.m2", + }, + { + fileId = "141079", + value = "helm_plate_raidwarrior_b_01_nim.m2", + text = "helm_plate_raidwarrior_b_01_nim.m2", + }, + { + fileId = "141080", + value = "helm_plate_raidwarrior_b_01_orf.m2", + text = "helm_plate_raidwarrior_b_01_orf.m2", + }, + { + fileId = "141081", + value = "helm_plate_raidwarrior_b_01_orm.m2", + text = "helm_plate_raidwarrior_b_01_orm.m2", + }, + { + fileId = "141082", + value = "helm_plate_raidwarrior_b_01_scf.m2", + text = "helm_plate_raidwarrior_b_01_scf.m2", + }, + { + fileId = "141083", + value = "helm_plate_raidwarrior_b_01_scm.m2", + text = "helm_plate_raidwarrior_b_01_scm.m2", + }, + { + fileId = "141084", + value = "helm_plate_raidwarrior_b_01_taf.m2", + text = "helm_plate_raidwarrior_b_01_taf.m2", + }, + { + fileId = "141085", + value = "helm_plate_raidwarrior_b_01_tam.m2", + text = "helm_plate_raidwarrior_b_01_tam.m2", + }, + { + fileId = "141086", + value = "helm_plate_raidwarrior_b_01_trf.m2", + text = "helm_plate_raidwarrior_b_01_trf.m2", + }, + { + fileId = "141087", + value = "helm_plate_raidwarrior_b_01_trm.m2", + text = "helm_plate_raidwarrior_b_01_trm.m2", + }, + { + fileId = "141093", + value = "helm_plate_raidwarrior_c_01_bef.m2", + text = "helm_plate_raidwarrior_c_01_bef.m2", + }, + { + fileId = "141094", + value = "helm_plate_raidwarrior_c_01_bem.m2", + text = "helm_plate_raidwarrior_c_01_bem.m2", + }, + { + fileId = "141095", + value = "helm_plate_raidwarrior_c_01_drf.m2", + text = "helm_plate_raidwarrior_c_01_drf.m2", + }, + { + fileId = "141096", + value = "helm_plate_raidwarrior_c_01_drm.m2", + text = "helm_plate_raidwarrior_c_01_drm.m2", + }, + { + fileId = "141097", + value = "helm_plate_raidwarrior_c_01_dwf.m2", + text = "helm_plate_raidwarrior_c_01_dwf.m2", + }, + { + fileId = "141098", + value = "helm_plate_raidwarrior_c_01_dwm.m2", + text = "helm_plate_raidwarrior_c_01_dwm.m2", + }, + { + fileId = "141099", + value = "helm_plate_raidwarrior_c_01_gnf.m2", + text = "helm_plate_raidwarrior_c_01_gnf.m2", + }, + { + fileId = "141100", + value = "helm_plate_raidwarrior_c_01_gnm.m2", + text = "helm_plate_raidwarrior_c_01_gnm.m2", + }, + { + fileId = "141101", + value = "helm_plate_raidwarrior_c_01_gof.m2", + text = "helm_plate_raidwarrior_c_01_gof.m2", + }, + { + fileId = "141102", + value = "helm_plate_raidwarrior_c_01_gom.m2", + text = "helm_plate_raidwarrior_c_01_gom.m2", + }, + { + fileId = "141103", + value = "helm_plate_raidwarrior_c_01_huf.m2", + text = "helm_plate_raidwarrior_c_01_huf.m2", + }, + { + fileId = "141104", + value = "helm_plate_raidwarrior_c_01_hum.m2", + text = "helm_plate_raidwarrior_c_01_hum.m2", + }, + { + fileId = "141105", + value = "helm_plate_raidwarrior_c_01_nif.m2", + text = "helm_plate_raidwarrior_c_01_nif.m2", + }, + { + fileId = "141106", + value = "helm_plate_raidwarrior_c_01_nim.m2", + text = "helm_plate_raidwarrior_c_01_nim.m2", + }, + { + fileId = "141107", + value = "helm_plate_raidwarrior_c_01_orf.m2", + text = "helm_plate_raidwarrior_c_01_orf.m2", + }, + { + fileId = "141108", + value = "helm_plate_raidwarrior_c_01_orm.m2", + text = "helm_plate_raidwarrior_c_01_orm.m2", + }, + { + fileId = "141109", + value = "helm_plate_raidwarrior_c_01_scf.m2", + text = "helm_plate_raidwarrior_c_01_scf.m2", + }, + { + fileId = "141110", + value = "helm_plate_raidwarrior_c_01_scm.m2", + text = "helm_plate_raidwarrior_c_01_scm.m2", + }, + { + fileId = "141111", + value = "helm_plate_raidwarrior_c_01_taf.m2", + text = "helm_plate_raidwarrior_c_01_taf.m2", + }, + { + fileId = "141112", + value = "helm_plate_raidwarrior_c_01_tam.m2", + text = "helm_plate_raidwarrior_c_01_tam.m2", + }, + { + fileId = "141113", + value = "helm_plate_raidwarrior_c_01_trf.m2", + text = "helm_plate_raidwarrior_c_01_trf.m2", + }, + { + fileId = "141114", + value = "helm_plate_raidwarrior_c_01_trm.m2", + text = "helm_plate_raidwarrior_c_01_trm.m2", + }, + { + fileId = "141117", + value = "helm_plate_raidwarrior_d_01_bef.m2", + text = "helm_plate_raidwarrior_d_01_bef.m2", + }, + { + fileId = "141118", + value = "helm_plate_raidwarrior_d_01_bem.m2", + text = "helm_plate_raidwarrior_d_01_bem.m2", + }, + { + fileId = "141119", + value = "helm_plate_raidwarrior_d_01_drf.m2", + text = "helm_plate_raidwarrior_d_01_drf.m2", + }, + { + fileId = "141120", + value = "helm_plate_raidwarrior_d_01_drm.m2", + text = "helm_plate_raidwarrior_d_01_drm.m2", + }, + { + fileId = "141121", + value = "helm_plate_raidwarrior_d_01_dwf.m2", + text = "helm_plate_raidwarrior_d_01_dwf.m2", + }, + { + fileId = "141122", + value = "helm_plate_raidwarrior_d_01_dwm.m2", + text = "helm_plate_raidwarrior_d_01_dwm.m2", + }, + { + fileId = "141123", + value = "helm_plate_raidwarrior_d_01_gnf.m2", + text = "helm_plate_raidwarrior_d_01_gnf.m2", + }, + { + fileId = "141124", + value = "helm_plate_raidwarrior_d_01_gnm.m2", + text = "helm_plate_raidwarrior_d_01_gnm.m2", + }, + { + fileId = "141125", + value = "helm_plate_raidwarrior_d_01_gof.m2", + text = "helm_plate_raidwarrior_d_01_gof.m2", + }, + { + fileId = "141126", + value = "helm_plate_raidwarrior_d_01_gom.m2", + text = "helm_plate_raidwarrior_d_01_gom.m2", + }, + { + fileId = "141127", + value = "helm_plate_raidwarrior_d_01_huf.m2", + text = "helm_plate_raidwarrior_d_01_huf.m2", + }, + { + fileId = "141128", + value = "helm_plate_raidwarrior_d_01_hum.m2", + text = "helm_plate_raidwarrior_d_01_hum.m2", + }, + { + fileId = "141129", + value = "helm_plate_raidwarrior_d_01_nif.m2", + text = "helm_plate_raidwarrior_d_01_nif.m2", + }, + { + fileId = "141130", + value = "helm_plate_raidwarrior_d_01_nim.m2", + text = "helm_plate_raidwarrior_d_01_nim.m2", + }, + { + fileId = "141131", + value = "helm_plate_raidwarrior_d_01_orf.m2", + text = "helm_plate_raidwarrior_d_01_orf.m2", + }, + { + fileId = "141132", + value = "helm_plate_raidwarrior_d_01_orm.m2", + text = "helm_plate_raidwarrior_d_01_orm.m2", + }, + { + fileId = "141133", + value = "helm_plate_raidwarrior_d_01_scf.m2", + text = "helm_plate_raidwarrior_d_01_scf.m2", + }, + { + fileId = "141134", + value = "helm_plate_raidwarrior_d_01_scm.m2", + text = "helm_plate_raidwarrior_d_01_scm.m2", + }, + { + fileId = "141135", + value = "helm_plate_raidwarrior_d_01_taf.m2", + text = "helm_plate_raidwarrior_d_01_taf.m2", + }, + { + fileId = "141136", + value = "helm_plate_raidwarrior_d_01_tam.m2", + text = "helm_plate_raidwarrior_d_01_tam.m2", + }, + { + fileId = "141137", + value = "helm_plate_raidwarrior_d_01_trf.m2", + text = "helm_plate_raidwarrior_d_01_trf.m2", + }, + { + fileId = "141138", + value = "helm_plate_raidwarrior_d_01_trm.m2", + text = "helm_plate_raidwarrior_d_01_trm.m2", + }, + { + fileId = "141141", + value = "helm_plate_raidwarrior_e_01_bef.m2", + text = "helm_plate_raidwarrior_e_01_bef.m2", + }, + { + fileId = "141142", + value = "helm_plate_raidwarrior_e_01_bem.m2", + text = "helm_plate_raidwarrior_e_01_bem.m2", + }, + { + fileId = "141143", + value = "helm_plate_raidwarrior_e_01_drf.m2", + text = "helm_plate_raidwarrior_e_01_drf.m2", + }, + { + fileId = "141144", + value = "helm_plate_raidwarrior_e_01_drm.m2", + text = "helm_plate_raidwarrior_e_01_drm.m2", + }, + { + fileId = "141145", + value = "helm_plate_raidwarrior_e_01_dwf.m2", + text = "helm_plate_raidwarrior_e_01_dwf.m2", + }, + { + fileId = "141146", + value = "helm_plate_raidwarrior_e_01_dwm.m2", + text = "helm_plate_raidwarrior_e_01_dwm.m2", + }, + { + fileId = "141147", + value = "helm_plate_raidwarrior_e_01_gnf.m2", + text = "helm_plate_raidwarrior_e_01_gnf.m2", + }, + { + fileId = "141148", + value = "helm_plate_raidwarrior_e_01_gnm.m2", + text = "helm_plate_raidwarrior_e_01_gnm.m2", + }, + { + fileId = "141149", + value = "helm_plate_raidwarrior_e_01_gof.m2", + text = "helm_plate_raidwarrior_e_01_gof.m2", + }, + { + fileId = "141150", + value = "helm_plate_raidwarrior_e_01_gom.m2", + text = "helm_plate_raidwarrior_e_01_gom.m2", + }, + { + fileId = "141151", + value = "helm_plate_raidwarrior_e_01_huf.m2", + text = "helm_plate_raidwarrior_e_01_huf.m2", + }, + { + fileId = "141152", + value = "helm_plate_raidwarrior_e_01_hum.m2", + text = "helm_plate_raidwarrior_e_01_hum.m2", + }, + { + fileId = "141153", + value = "helm_plate_raidwarrior_e_01_nif.m2", + text = "helm_plate_raidwarrior_e_01_nif.m2", + }, + { + fileId = "141154", + value = "helm_plate_raidwarrior_e_01_nim.m2", + text = "helm_plate_raidwarrior_e_01_nim.m2", + }, + { + fileId = "141155", + value = "helm_plate_raidwarrior_e_01_orf.m2", + text = "helm_plate_raidwarrior_e_01_orf.m2", + }, + { + fileId = "141156", + value = "helm_plate_raidwarrior_e_01_orm.m2", + text = "helm_plate_raidwarrior_e_01_orm.m2", + }, + { + fileId = "141157", + value = "helm_plate_raidwarrior_e_01_scf.m2", + text = "helm_plate_raidwarrior_e_01_scf.m2", + }, + { + fileId = "141158", + value = "helm_plate_raidwarrior_e_01_scm.m2", + text = "helm_plate_raidwarrior_e_01_scm.m2", + }, + { + fileId = "141159", + value = "helm_plate_raidwarrior_e_01_taf.m2", + text = "helm_plate_raidwarrior_e_01_taf.m2", + }, + { + fileId = "141160", + value = "helm_plate_raidwarrior_e_01_tam.m2", + text = "helm_plate_raidwarrior_e_01_tam.m2", + }, + { + fileId = "141161", + value = "helm_plate_raidwarrior_e_01_trf.m2", + text = "helm_plate_raidwarrior_e_01_trf.m2", + }, + { + fileId = "141162", + value = "helm_plate_raidwarrior_e_01_trm.m2", + text = "helm_plate_raidwarrior_e_01_trm.m2", + }, + { + fileId = "141165", + value = "helm_plate_raidwarrior_f_01_bef.m2", + text = "helm_plate_raidwarrior_f_01_bef.m2", + }, + { + fileId = "141166", + value = "helm_plate_raidwarrior_f_01_bem.m2", + text = "helm_plate_raidwarrior_f_01_bem.m2", + }, + { + fileId = "141167", + value = "helm_plate_raidwarrior_f_01_drf.m2", + text = "helm_plate_raidwarrior_f_01_drf.m2", + }, + { + fileId = "141168", + value = "helm_plate_raidwarrior_f_01_drm.m2", + text = "helm_plate_raidwarrior_f_01_drm.m2", + }, + { + fileId = "141169", + value = "helm_plate_raidwarrior_f_01_dwf.m2", + text = "helm_plate_raidwarrior_f_01_dwf.m2", + }, + { + fileId = "141170", + value = "helm_plate_raidwarrior_f_01_dwm.m2", + text = "helm_plate_raidwarrior_f_01_dwm.m2", + }, + { + fileId = "141172", + value = "helm_plate_raidwarrior_f_01_gnf.m2", + text = "helm_plate_raidwarrior_f_01_gnf.m2", + }, + { + fileId = "141173", + value = "helm_plate_raidwarrior_f_01_gnm.m2", + text = "helm_plate_raidwarrior_f_01_gnm.m2", + }, + { + fileId = "141174", + value = "helm_plate_raidwarrior_f_01_gof.m2", + text = "helm_plate_raidwarrior_f_01_gof.m2", + }, + { + fileId = "141175", + value = "helm_plate_raidwarrior_f_01_gom.m2", + text = "helm_plate_raidwarrior_f_01_gom.m2", + }, + { + fileId = "141176", + value = "helm_plate_raidwarrior_f_01_huf.m2", + text = "helm_plate_raidwarrior_f_01_huf.m2", + }, + { + fileId = "141177", + value = "helm_plate_raidwarrior_f_01_hum.m2", + text = "helm_plate_raidwarrior_f_01_hum.m2", + }, + { + fileId = "141178", + value = "helm_plate_raidwarrior_f_01_nif.m2", + text = "helm_plate_raidwarrior_f_01_nif.m2", + }, + { + fileId = "141179", + value = "helm_plate_raidwarrior_f_01_nim.m2", + text = "helm_plate_raidwarrior_f_01_nim.m2", + }, + { + fileId = "141180", + value = "helm_plate_raidwarrior_f_01_orf.m2", + text = "helm_plate_raidwarrior_f_01_orf.m2", + }, + { + fileId = "141181", + value = "helm_plate_raidwarrior_f_01_orm.m2", + text = "helm_plate_raidwarrior_f_01_orm.m2", + }, + { + fileId = "141182", + value = "helm_plate_raidwarrior_f_01_scf.m2", + text = "helm_plate_raidwarrior_f_01_scf.m2", + }, + { + fileId = "141183", + value = "helm_plate_raidwarrior_f_01_scm.m2", + text = "helm_plate_raidwarrior_f_01_scm.m2", + }, + { + fileId = "141184", + value = "helm_plate_raidwarrior_f_01_taf.m2", + text = "helm_plate_raidwarrior_f_01_taf.m2", + }, + { + fileId = "141185", + value = "helm_plate_raidwarrior_f_01_tam.m2", + text = "helm_plate_raidwarrior_f_01_tam.m2", + }, + { + fileId = "141186", + value = "helm_plate_raidwarrior_f_01_trf.m2", + text = "helm_plate_raidwarrior_f_01_trf.m2", + }, + { + fileId = "141187", + value = "helm_plate_raidwarrior_f_01_trm.m2", + text = "helm_plate_raidwarrior_f_01_trm.m2", + }, + { + fileId = "141194", + value = "helm_plate_sunwell_d_01_bef.m2", + text = "helm_plate_sunwell_d_01_bef.m2", + }, + { + fileId = "141195", + value = "helm_plate_sunwell_d_01_bem.m2", + text = "helm_plate_sunwell_d_01_bem.m2", + }, + { + fileId = "141196", + value = "helm_plate_sunwell_d_01_drf.m2", + text = "helm_plate_sunwell_d_01_drf.m2", + }, + { + fileId = "141197", + value = "helm_plate_sunwell_d_01_drm.m2", + text = "helm_plate_sunwell_d_01_drm.m2", + }, + { + fileId = "141198", + value = "helm_plate_sunwell_d_01_dwf.m2", + text = "helm_plate_sunwell_d_01_dwf.m2", + }, + { + fileId = "141199", + value = "helm_plate_sunwell_d_01_dwm.m2", + text = "helm_plate_sunwell_d_01_dwm.m2", + }, + { + fileId = "141200", + value = "helm_plate_sunwell_d_01_gnf.m2", + text = "helm_plate_sunwell_d_01_gnf.m2", + }, + { + fileId = "141201", + value = "helm_plate_sunwell_d_01_gnm.m2", + text = "helm_plate_sunwell_d_01_gnm.m2", + }, + { + fileId = "141202", + value = "helm_plate_sunwell_d_01_gof.m2", + text = "helm_plate_sunwell_d_01_gof.m2", + }, + { + fileId = "141203", + value = "helm_plate_sunwell_d_01_gom.m2", + text = "helm_plate_sunwell_d_01_gom.m2", + }, + { + fileId = "141204", + value = "helm_plate_sunwell_d_01_huf.m2", + text = "helm_plate_sunwell_d_01_huf.m2", + }, + { + fileId = "141205", + value = "helm_plate_sunwell_d_01_hum.m2", + text = "helm_plate_sunwell_d_01_hum.m2", + }, + { + fileId = "141206", + value = "helm_plate_sunwell_d_01_nif.m2", + text = "helm_plate_sunwell_d_01_nif.m2", + }, + { + fileId = "141207", + value = "helm_plate_sunwell_d_01_nim.m2", + text = "helm_plate_sunwell_d_01_nim.m2", + }, + { + fileId = "141208", + value = "helm_plate_sunwell_d_01_orf.m2", + text = "helm_plate_sunwell_d_01_orf.m2", + }, + { + fileId = "141209", + value = "helm_plate_sunwell_d_01_orm.m2", + text = "helm_plate_sunwell_d_01_orm.m2", + }, + { + fileId = "141210", + value = "helm_plate_sunwell_d_01_scf.m2", + text = "helm_plate_sunwell_d_01_scf.m2", + }, + { + fileId = "141211", + value = "helm_plate_sunwell_d_01_scm.m2", + text = "helm_plate_sunwell_d_01_scm.m2", + }, + { + fileId = "141212", + value = "helm_plate_sunwell_d_01_taf.m2", + text = "helm_plate_sunwell_d_01_taf.m2", + }, + { + fileId = "141213", + value = "helm_plate_sunwell_d_01_tam.m2", + text = "helm_plate_sunwell_d_01_tam.m2", + }, + { + fileId = "141214", + value = "helm_plate_sunwell_d_01_trf.m2", + text = "helm_plate_sunwell_d_01_trf.m2", + }, + { + fileId = "141215", + value = "helm_plate_sunwell_d_01_trm.m2", + text = "helm_plate_sunwell_d_01_trm.m2", + }, + { + fileId = "141246", + value = "helm_plate_zulaman_d_01_bef.m2", + text = "helm_plate_zulaman_d_01_bef.m2", + }, + { + fileId = "141247", + value = "helm_plate_zulaman_d_01_bem.m2", + text = "helm_plate_zulaman_d_01_bem.m2", + }, + { + fileId = "141248", + value = "helm_plate_zulaman_d_01_drf.m2", + text = "helm_plate_zulaman_d_01_drf.m2", + }, + { + fileId = "141249", + value = "helm_plate_zulaman_d_01_drm.m2", + text = "helm_plate_zulaman_d_01_drm.m2", + }, + { + fileId = "141250", + value = "helm_plate_zulaman_d_01_dwf.m2", + text = "helm_plate_zulaman_d_01_dwf.m2", + }, + { + fileId = "141251", + value = "helm_plate_zulaman_d_01_dwm.m2", + text = "helm_plate_zulaman_d_01_dwm.m2", + }, + { + fileId = "141252", + value = "helm_plate_zulaman_d_01_gnf.m2", + text = "helm_plate_zulaman_d_01_gnf.m2", + }, + { + fileId = "141253", + value = "helm_plate_zulaman_d_01_gnm.m2", + text = "helm_plate_zulaman_d_01_gnm.m2", + }, + { + fileId = "141254", + value = "helm_plate_zulaman_d_01_gof.m2", + text = "helm_plate_zulaman_d_01_gof.m2", + }, + { + fileId = "141255", + value = "helm_plate_zulaman_d_01_gom.m2", + text = "helm_plate_zulaman_d_01_gom.m2", + }, + { + fileId = "141256", + value = "helm_plate_zulaman_d_01_huf.m2", + text = "helm_plate_zulaman_d_01_huf.m2", + }, + { + fileId = "141257", + value = "helm_plate_zulaman_d_01_hum.m2", + text = "helm_plate_zulaman_d_01_hum.m2", + }, + { + fileId = "141258", + value = "helm_plate_zulaman_d_01_nif.m2", + text = "helm_plate_zulaman_d_01_nif.m2", + }, + { + fileId = "141259", + value = "helm_plate_zulaman_d_01_nim.m2", + text = "helm_plate_zulaman_d_01_nim.m2", + }, + { + fileId = "141260", + value = "helm_plate_zulaman_d_01_orf.m2", + text = "helm_plate_zulaman_d_01_orf.m2", + }, + { + fileId = "141261", + value = "helm_plate_zulaman_d_01_orm.m2", + text = "helm_plate_zulaman_d_01_orm.m2", + }, + { + fileId = "141262", + value = "helm_plate_zulaman_d_01_scf.m2", + text = "helm_plate_zulaman_d_01_scf.m2", + }, + { + fileId = "141263", + value = "helm_plate_zulaman_d_01_scm.m2", + text = "helm_plate_zulaman_d_01_scm.m2", + }, + { + fileId = "141264", + value = "helm_plate_zulaman_d_01_taf.m2", + text = "helm_plate_zulaman_d_01_taf.m2", + }, + { + fileId = "141265", + value = "helm_plate_zulaman_d_01_tam.m2", + text = "helm_plate_zulaman_d_01_tam.m2", + }, + { + fileId = "141266", + value = "helm_plate_zulaman_d_01_trf.m2", + text = "helm_plate_zulaman_d_01_trf.m2", + }, + { + fileId = "141267", + value = "helm_plate_zulaman_d_01_trm.m2", + text = "helm_plate_zulaman_d_01_trm.m2", + }, + { + fileId = "141272", + value = "helm_plate_zulaman_d_02_bef.m2", + text = "helm_plate_zulaman_d_02_bef.m2", + }, + { + fileId = "141273", + value = "helm_plate_zulaman_d_02_bem.m2", + text = "helm_plate_zulaman_d_02_bem.m2", + }, + { + fileId = "141274", + value = "helm_plate_zulaman_d_02_drf.m2", + text = "helm_plate_zulaman_d_02_drf.m2", + }, + { + fileId = "141275", + value = "helm_plate_zulaman_d_02_drm.m2", + text = "helm_plate_zulaman_d_02_drm.m2", + }, + { + fileId = "141276", + value = "helm_plate_zulaman_d_02_dwf.m2", + text = "helm_plate_zulaman_d_02_dwf.m2", + }, + { + fileId = "141277", + value = "helm_plate_zulaman_d_02_dwm.m2", + text = "helm_plate_zulaman_d_02_dwm.m2", + }, + { + fileId = "141278", + value = "helm_plate_zulaman_d_02_gnf.m2", + text = "helm_plate_zulaman_d_02_gnf.m2", + }, + { + fileId = "141279", + value = "helm_plate_zulaman_d_02_gnm.m2", + text = "helm_plate_zulaman_d_02_gnm.m2", + }, + { + fileId = "141280", + value = "helm_plate_zulaman_d_02_huf.m2", + text = "helm_plate_zulaman_d_02_huf.m2", + }, + { + fileId = "141281", + value = "helm_plate_zulaman_d_02_hum.m2", + text = "helm_plate_zulaman_d_02_hum.m2", + }, + { + fileId = "141282", + value = "helm_plate_zulaman_d_02_nif.m2", + text = "helm_plate_zulaman_d_02_nif.m2", + }, + { + fileId = "141283", + value = "helm_plate_zulaman_d_02_nim.m2", + text = "helm_plate_zulaman_d_02_nim.m2", + }, + { + fileId = "141284", + value = "helm_plate_zulaman_d_02_orf.m2", + text = "helm_plate_zulaman_d_02_orf.m2", + }, + { + fileId = "141285", + value = "helm_plate_zulaman_d_02_orm.m2", + text = "helm_plate_zulaman_d_02_orm.m2", + }, + { + fileId = "141286", + value = "helm_plate_zulaman_d_02_scf.m2", + text = "helm_plate_zulaman_d_02_scf.m2", + }, + { + fileId = "141287", + value = "helm_plate_zulaman_d_02_scm.m2", + text = "helm_plate_zulaman_d_02_scm.m2", + }, + { + fileId = "141288", + value = "helm_plate_zulaman_d_02_taf.m2", + text = "helm_plate_zulaman_d_02_taf.m2", + }, + { + fileId = "141289", + value = "helm_plate_zulaman_d_02_tam.m2", + text = "helm_plate_zulaman_d_02_tam.m2", + }, + { + fileId = "141290", + value = "helm_plate_zulaman_d_02_trf.m2", + text = "helm_plate_zulaman_d_02_trf.m2", + }, + { + fileId = "141291", + value = "helm_plate_zulaman_d_02_trm.m2", + text = "helm_plate_zulaman_d_02_trm.m2", + }, + { + fileId = "141296", + value = "helm_plate_zulaman_d_03_bef.m2", + text = "helm_plate_zulaman_d_03_bef.m2", + }, + { + fileId = "141297", + value = "helm_plate_zulaman_d_03_bem.m2", + text = "helm_plate_zulaman_d_03_bem.m2", + }, + { + fileId = "141298", + value = "helm_plate_zulaman_d_03_drf.m2", + text = "helm_plate_zulaman_d_03_drf.m2", + }, + { + fileId = "141299", + value = "helm_plate_zulaman_d_03_drm.m2", + text = "helm_plate_zulaman_d_03_drm.m2", + }, + { + fileId = "141300", + value = "helm_plate_zulaman_d_03_dwf.m2", + text = "helm_plate_zulaman_d_03_dwf.m2", + }, + { + fileId = "141301", + value = "helm_plate_zulaman_d_03_dwm.m2", + text = "helm_plate_zulaman_d_03_dwm.m2", + }, + { + fileId = "141302", + value = "helm_plate_zulaman_d_03_gnf.m2", + text = "helm_plate_zulaman_d_03_gnf.m2", + }, + { + fileId = "141303", + value = "helm_plate_zulaman_d_03_gnm.m2", + text = "helm_plate_zulaman_d_03_gnm.m2", + }, + { + fileId = "141304", + value = "helm_plate_zulaman_d_03_gof.m2", + text = "helm_plate_zulaman_d_03_gof.m2", + }, + { + fileId = "141305", + value = "helm_plate_zulaman_d_03_gom.m2", + text = "helm_plate_zulaman_d_03_gom.m2", + }, + { + fileId = "141306", + value = "helm_plate_zulaman_d_03_huf.m2", + text = "helm_plate_zulaman_d_03_huf.m2", + }, + { + fileId = "141307", + value = "helm_plate_zulaman_d_03_hum.m2", + text = "helm_plate_zulaman_d_03_hum.m2", + }, + { + fileId = "141308", + value = "helm_plate_zulaman_d_03_nif.m2", + text = "helm_plate_zulaman_d_03_nif.m2", + }, + { + fileId = "141309", + value = "helm_plate_zulaman_d_03_nim.m2", + text = "helm_plate_zulaman_d_03_nim.m2", + }, + { + fileId = "141310", + value = "helm_plate_zulaman_d_03_orf.m2", + text = "helm_plate_zulaman_d_03_orf.m2", + }, + { + fileId = "141311", + value = "helm_plate_zulaman_d_03_orm.m2", + text = "helm_plate_zulaman_d_03_orm.m2", + }, + { + fileId = "141312", + value = "helm_plate_zulaman_d_03_scf.m2", + text = "helm_plate_zulaman_d_03_scf.m2", + }, + { + fileId = "141313", + value = "helm_plate_zulaman_d_03_scm.m2", + text = "helm_plate_zulaman_d_03_scm.m2", + }, + { + fileId = "141314", + value = "helm_plate_zulaman_d_03_taf.m2", + text = "helm_plate_zulaman_d_03_taf.m2", + }, + { + fileId = "141315", + value = "helm_plate_zulaman_d_03_tam.m2", + text = "helm_plate_zulaman_d_03_tam.m2", + }, + { + fileId = "141316", + value = "helm_plate_zulaman_d_03_trf.m2", + text = "helm_plate_zulaman_d_03_trf.m2", + }, + { + fileId = "141317", + value = "helm_plate_zulaman_d_03_trm.m2", + text = "helm_plate_zulaman_d_03_trm.m2", + }, + { + fileId = "141324", + value = "helm_robe_ahnqiraj_a_01_bef.m2", + text = "helm_robe_ahnqiraj_a_01_bef.m2", + }, + { + fileId = "141325", + value = "helm_robe_ahnqiraj_a_01_bem.m2", + text = "helm_robe_ahnqiraj_a_01_bem.m2", + }, + { + fileId = "141326", + value = "helm_robe_ahnqiraj_a_01_drf.m2", + text = "helm_robe_ahnqiraj_a_01_drf.m2", + }, + { + fileId = "141327", + value = "helm_robe_ahnqiraj_a_01_drm.m2", + text = "helm_robe_ahnqiraj_a_01_drm.m2", + }, + { + fileId = "141328", + value = "helm_robe_ahnqiraj_a_01_dwf.m2", + text = "helm_robe_ahnqiraj_a_01_dwf.m2", + }, + { + fileId = "141329", + value = "helm_robe_ahnqiraj_a_01_dwm.m2", + text = "helm_robe_ahnqiraj_a_01_dwm.m2", + }, + { + fileId = "141330", + value = "helm_robe_ahnqiraj_a_01_gnf.m2", + text = "helm_robe_ahnqiraj_a_01_gnf.m2", + }, + { + fileId = "141331", + value = "helm_robe_ahnqiraj_a_01_gnm.m2", + text = "helm_robe_ahnqiraj_a_01_gnm.m2", + }, + { + fileId = "141332", + value = "helm_robe_ahnqiraj_a_01_gof.m2", + text = "helm_robe_ahnqiraj_a_01_gof.m2", + }, + { + fileId = "141333", + value = "helm_robe_ahnqiraj_a_01_huf.m2", + text = "helm_robe_ahnqiraj_a_01_huf.m2", + }, + { + fileId = "141334", + value = "helm_robe_ahnqiraj_a_01_hum.m2", + text = "helm_robe_ahnqiraj_a_01_hum.m2", + }, + { + fileId = "141335", + value = "helm_robe_ahnqiraj_a_01_nif.m2", + text = "helm_robe_ahnqiraj_a_01_nif.m2", + }, + { + fileId = "141336", + value = "helm_robe_ahnqiraj_a_01_nim.m2", + text = "helm_robe_ahnqiraj_a_01_nim.m2", + }, + { + fileId = "141337", + value = "helm_robe_ahnqiraj_a_01_orf.m2", + text = "helm_robe_ahnqiraj_a_01_orf.m2", + }, + { + fileId = "141338", + value = "helm_robe_ahnqiraj_a_01_orm.m2", + text = "helm_robe_ahnqiraj_a_01_orm.m2", + }, + { + fileId = "141339", + value = "helm_robe_ahnqiraj_a_01_scf.m2", + text = "helm_robe_ahnqiraj_a_01_scf.m2", + }, + { + fileId = "141340", + value = "helm_robe_ahnqiraj_a_01_scm.m2", + text = "helm_robe_ahnqiraj_a_01_scm.m2", + }, + { + fileId = "141341", + value = "helm_robe_ahnqiraj_a_01_taf.m2", + text = "helm_robe_ahnqiraj_a_01_taf.m2", + }, + { + fileId = "141342", + value = "helm_robe_ahnqiraj_a_01_tam.m2", + text = "helm_robe_ahnqiraj_a_01_tam.m2", + }, + { + fileId = "141343", + value = "helm_robe_ahnqiraj_a_01_trf.m2", + text = "helm_robe_ahnqiraj_a_01_trf.m2", + }, + { + fileId = "141344", + value = "helm_robe_ahnqiraj_a_01_trm.m2", + text = "helm_robe_ahnqiraj_a_01_trm.m2", + }, + { + fileId = "141348", + value = "helm_robe_brewfest_a_01_bef.m2", + text = "helm_robe_brewfest_a_01_bef.m2", + }, + { + fileId = "141349", + value = "helm_robe_brewfest_a_01_bem.m2", + text = "helm_robe_brewfest_a_01_bem.m2", + }, + { + fileId = "141350", + value = "helm_robe_brewfest_a_01_drf.m2", + text = "helm_robe_brewfest_a_01_drf.m2", + }, + { + fileId = "141351", + value = "helm_robe_brewfest_a_01_drm.m2", + text = "helm_robe_brewfest_a_01_drm.m2", + }, + { + fileId = "141352", + value = "helm_robe_brewfest_a_01_dwf.m2", + text = "helm_robe_brewfest_a_01_dwf.m2", + }, + { + fileId = "141353", + value = "helm_robe_brewfest_a_01_dwm.m2", + text = "helm_robe_brewfest_a_01_dwm.m2", + }, + { + fileId = "141354", + value = "helm_robe_brewfest_a_01_gnf.m2", + text = "helm_robe_brewfest_a_01_gnf.m2", + }, + { + fileId = "141355", + value = "helm_robe_brewfest_a_01_gnm.m2", + text = "helm_robe_brewfest_a_01_gnm.m2", + }, + { + fileId = "141356", + value = "helm_robe_brewfest_a_01_gof.m2", + text = "helm_robe_brewfest_a_01_gof.m2", + }, + { + fileId = "141357", + value = "helm_robe_brewfest_a_01_gom.m2", + text = "helm_robe_brewfest_a_01_gom.m2", + }, + { + fileId = "141358", + value = "helm_robe_brewfest_a_01_huf.m2", + text = "helm_robe_brewfest_a_01_huf.m2", + }, + { + fileId = "141359", + value = "helm_robe_brewfest_a_01_hum.m2", + text = "helm_robe_brewfest_a_01_hum.m2", + }, + { + fileId = "141360", + value = "helm_robe_brewfest_a_01_nif.m2", + text = "helm_robe_brewfest_a_01_nif.m2", + }, + { + fileId = "141361", + value = "helm_robe_brewfest_a_01_nim.m2", + text = "helm_robe_brewfest_a_01_nim.m2", + }, + { + fileId = "141362", + value = "helm_robe_brewfest_a_01_orf.m2", + text = "helm_robe_brewfest_a_01_orf.m2", + }, + { + fileId = "141363", + value = "helm_robe_brewfest_a_01_orm.m2", + text = "helm_robe_brewfest_a_01_orm.m2", + }, + { + fileId = "141364", + value = "helm_robe_brewfest_a_01_scf.m2", + text = "helm_robe_brewfest_a_01_scf.m2", + }, + { + fileId = "141365", + value = "helm_robe_brewfest_a_01_scm.m2", + text = "helm_robe_brewfest_a_01_scm.m2", + }, + { + fileId = "141366", + value = "helm_robe_brewfest_a_01_taf.m2", + text = "helm_robe_brewfest_a_01_taf.m2", + }, + { + fileId = "141367", + value = "helm_robe_brewfest_a_01_tam.m2", + text = "helm_robe_brewfest_a_01_tam.m2", + }, + { + fileId = "141368", + value = "helm_robe_brewfest_a_01_trf.m2", + text = "helm_robe_brewfest_a_01_trf.m2", + }, + { + fileId = "141369", + value = "helm_robe_brewfest_a_01_trm.m2", + text = "helm_robe_brewfest_a_01_trm.m2", + }, + { + fileId = "141374", + value = "helm_robe_c_01_bef.m2", + text = "helm_robe_c_01_bef.m2", + }, + { + fileId = "141375", + value = "helm_robe_c_01_bem.m2", + text = "helm_robe_c_01_bem.m2", + }, + { + fileId = "141376", + value = "helm_robe_c_01_drf.m2", + text = "helm_robe_c_01_drf.m2", + }, + { + fileId = "141377", + value = "helm_robe_c_01_drm.m2", + text = "helm_robe_c_01_drm.m2", + }, + { + fileId = "141378", + value = "helm_robe_c_01_dwf.m2", + text = "helm_robe_c_01_dwf.m2", + }, + { + fileId = "141379", + value = "helm_robe_c_01_dwm.m2", + text = "helm_robe_c_01_dwm.m2", + }, + { + fileId = "141380", + value = "helm_robe_c_01_gnf.m2", + text = "helm_robe_c_01_gnf.m2", + }, + { + fileId = "141381", + value = "helm_robe_c_01_gnm.m2", + text = "helm_robe_c_01_gnm.m2", + }, + { + fileId = "141382", + value = "helm_robe_c_01_gof.m2", + text = "helm_robe_c_01_gof.m2", + }, + { + fileId = "141383", + value = "helm_robe_c_01_gom.m2", + text = "helm_robe_c_01_gom.m2", + }, + { + fileId = "141384", + value = "helm_robe_c_01_huf.m2", + text = "helm_robe_c_01_huf.m2", + }, + { + fileId = "141385", + value = "helm_robe_c_01_hum.m2", + text = "helm_robe_c_01_hum.m2", + }, + { + fileId = "141386", + value = "helm_robe_c_01_nif.m2", + text = "helm_robe_c_01_nif.m2", + }, + { + fileId = "141387", + value = "helm_robe_c_01_nim.m2", + text = "helm_robe_c_01_nim.m2", + }, + { + fileId = "141388", + value = "helm_robe_c_01_orf.m2", + text = "helm_robe_c_01_orf.m2", + }, + { + fileId = "141389", + value = "helm_robe_c_01_orm.m2", + text = "helm_robe_c_01_orm.m2", + }, + { + fileId = "141390", + value = "helm_robe_c_01_scf.m2", + text = "helm_robe_c_01_scf.m2", + }, + { + fileId = "141391", + value = "helm_robe_c_01_scm.m2", + text = "helm_robe_c_01_scm.m2", + }, + { + fileId = "141392", + value = "helm_robe_c_01_taf.m2", + text = "helm_robe_c_01_taf.m2", + }, + { + fileId = "141393", + value = "helm_robe_c_01_tam.m2", + text = "helm_robe_c_01_tam.m2", + }, + { + fileId = "141394", + value = "helm_robe_c_01_trf.m2", + text = "helm_robe_c_01_trf.m2", + }, + { + fileId = "141395", + value = "helm_robe_c_01_trm.m2", + text = "helm_robe_c_01_trm.m2", + }, + { + fileId = "141405", + value = "helm_robe_c_02_bef.m2", + text = "helm_robe_c_02_bef.m2", + }, + { + fileId = "141406", + value = "helm_robe_c_02_bem.m2", + text = "helm_robe_c_02_bem.m2", + }, + { + fileId = "141407", + value = "helm_robe_c_02_drf.m2", + text = "helm_robe_c_02_drf.m2", + }, + { + fileId = "141408", + value = "helm_robe_c_02_drm.m2", + text = "helm_robe_c_02_drm.m2", + }, + { + fileId = "141409", + value = "helm_robe_c_02_dwf.m2", + text = "helm_robe_c_02_dwf.m2", + }, + { + fileId = "141410", + value = "helm_robe_c_02_dwm.m2", + text = "helm_robe_c_02_dwm.m2", + }, + { + fileId = "141411", + value = "helm_robe_c_02_gnf.m2", + text = "helm_robe_c_02_gnf.m2", + }, + { + fileId = "141412", + value = "helm_robe_c_02_gnm.m2", + text = "helm_robe_c_02_gnm.m2", + }, + { + fileId = "141413", + value = "helm_robe_c_02_gof.m2", + text = "helm_robe_c_02_gof.m2", + }, + { + fileId = "141414", + value = "helm_robe_c_02_gom.m2", + text = "helm_robe_c_02_gom.m2", + }, + { + fileId = "141415", + value = "helm_robe_c_02_huf.m2", + text = "helm_robe_c_02_huf.m2", + }, + { + fileId = "141416", + value = "helm_robe_c_02_hum.m2", + text = "helm_robe_c_02_hum.m2", + }, + { + fileId = "141417", + value = "helm_robe_c_02_nif.m2", + text = "helm_robe_c_02_nif.m2", + }, + { + fileId = "141418", + value = "helm_robe_c_02_nim.m2", + text = "helm_robe_c_02_nim.m2", + }, + { + fileId = "141419", + value = "helm_robe_c_02_orf.m2", + text = "helm_robe_c_02_orf.m2", + }, + { + fileId = "141420", + value = "helm_robe_c_02_orm.m2", + text = "helm_robe_c_02_orm.m2", + }, + { + fileId = "141421", + value = "helm_robe_c_02_scf.m2", + text = "helm_robe_c_02_scf.m2", + }, + { + fileId = "141422", + value = "helm_robe_c_02_scm.m2", + text = "helm_robe_c_02_scm.m2", + }, + { + fileId = "141423", + value = "helm_robe_c_02_taf.m2", + text = "helm_robe_c_02_taf.m2", + }, + { + fileId = "141424", + value = "helm_robe_c_02_tam.m2", + text = "helm_robe_c_02_tam.m2", + }, + { + fileId = "141425", + value = "helm_robe_c_02_trf.m2", + text = "helm_robe_c_02_trf.m2", + }, + { + fileId = "141426", + value = "helm_robe_c_02_trm.m2", + text = "helm_robe_c_02_trm.m2", + }, + { + fileId = "141434", + value = "helm_robe_c_03_bef.m2", + text = "helm_robe_c_03_bef.m2", + }, + { + fileId = "141435", + value = "helm_robe_c_03_bem.m2", + text = "helm_robe_c_03_bem.m2", + }, + { + fileId = "141436", + value = "helm_robe_c_03_drf.m2", + text = "helm_robe_c_03_drf.m2", + }, + { + fileId = "141437", + value = "helm_robe_c_03_drm.m2", + text = "helm_robe_c_03_drm.m2", + }, + { + fileId = "141438", + value = "helm_robe_c_03_dwf.m2", + text = "helm_robe_c_03_dwf.m2", + }, + { + fileId = "141439", + value = "helm_robe_c_03_dwm.m2", + text = "helm_robe_c_03_dwm.m2", + }, + { + fileId = "141440", + value = "helm_robe_c_03_gnf.m2", + text = "helm_robe_c_03_gnf.m2", + }, + { + fileId = "141441", + value = "helm_robe_c_03_gnm.m2", + text = "helm_robe_c_03_gnm.m2", + }, + { + fileId = "141442", + value = "helm_robe_c_03_gof.m2", + text = "helm_robe_c_03_gof.m2", + }, + { + fileId = "141443", + value = "helm_robe_c_03_gom.m2", + text = "helm_robe_c_03_gom.m2", + }, + { + fileId = "141444", + value = "helm_robe_c_03_huf.m2", + text = "helm_robe_c_03_huf.m2", + }, + { + fileId = "141445", + value = "helm_robe_c_03_hum.m2", + text = "helm_robe_c_03_hum.m2", + }, + { + fileId = "141446", + value = "helm_robe_c_03_nif.m2", + text = "helm_robe_c_03_nif.m2", + }, + { + fileId = "141447", + value = "helm_robe_c_03_nim.m2", + text = "helm_robe_c_03_nim.m2", + }, + { + fileId = "141448", + value = "helm_robe_c_03_orf.m2", + text = "helm_robe_c_03_orf.m2", + }, + { + fileId = "141449", + value = "helm_robe_c_03_orm.m2", + text = "helm_robe_c_03_orm.m2", + }, + { + fileId = "141450", + value = "helm_robe_c_03_scf.m2", + text = "helm_robe_c_03_scf.m2", + }, + { + fileId = "141451", + value = "helm_robe_c_03_scm.m2", + text = "helm_robe_c_03_scm.m2", + }, + { + fileId = "141452", + value = "helm_robe_c_03_taf.m2", + text = "helm_robe_c_03_taf.m2", + }, + { + fileId = "141453", + value = "helm_robe_c_03_tam.m2", + text = "helm_robe_c_03_tam.m2", + }, + { + fileId = "141454", + value = "helm_robe_c_03_trf.m2", + text = "helm_robe_c_03_trf.m2", + }, + { + fileId = "141455", + value = "helm_robe_c_03_trm.m2", + text = "helm_robe_c_03_trm.m2", + }, + { + fileId = "141458", + value = "helm_robe_c_04_bef.m2", + text = "helm_robe_c_04_bef.m2", + }, + { + fileId = "141459", + value = "helm_robe_c_04_bem.m2", + text = "helm_robe_c_04_bem.m2", + }, + { + fileId = "141460", + value = "helm_robe_c_04_drf.m2", + text = "helm_robe_c_04_drf.m2", + }, + { + fileId = "141461", + value = "helm_robe_c_04_drm.m2", + text = "helm_robe_c_04_drm.m2", + }, + { + fileId = "141462", + value = "helm_robe_c_04_dwf.m2", + text = "helm_robe_c_04_dwf.m2", + }, + { + fileId = "141463", + value = "helm_robe_c_04_dwm.m2", + text = "helm_robe_c_04_dwm.m2", + }, + { + fileId = "141464", + value = "helm_robe_c_04_gnf.m2", + text = "helm_robe_c_04_gnf.m2", + }, + { + fileId = "141465", + value = "helm_robe_c_04_gnm.m2", + text = "helm_robe_c_04_gnm.m2", + }, + { + fileId = "141466", + value = "helm_robe_c_04_gof.m2", + text = "helm_robe_c_04_gof.m2", + }, + { + fileId = "141467", + value = "helm_robe_c_04_gom.m2", + text = "helm_robe_c_04_gom.m2", + }, + { + fileId = "141468", + value = "helm_robe_c_04_huf.m2", + text = "helm_robe_c_04_huf.m2", + }, + { + fileId = "141469", + value = "helm_robe_c_04_hum.m2", + text = "helm_robe_c_04_hum.m2", + }, + { + fileId = "141470", + value = "helm_robe_c_04_nif.m2", + text = "helm_robe_c_04_nif.m2", + }, + { + fileId = "141471", + value = "helm_robe_c_04_nim.m2", + text = "helm_robe_c_04_nim.m2", + }, + { + fileId = "141472", + value = "helm_robe_c_04_orf.m2", + text = "helm_robe_c_04_orf.m2", + }, + { + fileId = "141473", + value = "helm_robe_c_04_orm.m2", + text = "helm_robe_c_04_orm.m2", + }, + { + fileId = "141474", + value = "helm_robe_c_04_scf.m2", + text = "helm_robe_c_04_scf.m2", + }, + { + fileId = "141475", + value = "helm_robe_c_04_scm.m2", + text = "helm_robe_c_04_scm.m2", + }, + { + fileId = "141476", + value = "helm_robe_c_04_taf.m2", + text = "helm_robe_c_04_taf.m2", + }, + { + fileId = "141477", + value = "helm_robe_c_04_tam.m2", + text = "helm_robe_c_04_tam.m2", + }, + { + fileId = "141478", + value = "helm_robe_c_04_trf.m2", + text = "helm_robe_c_04_trf.m2", + }, + { + fileId = "141479", + value = "helm_robe_c_04_trm.m2", + text = "helm_robe_c_04_trm.m2", + }, + { + fileId = "141483", + value = "helm_robe_d_04_bef.m2", + text = "helm_robe_d_04_bef.m2", + }, + { + fileId = "141484", + value = "helm_robe_d_04_bem.m2", + text = "helm_robe_d_04_bem.m2", + }, + { + fileId = "141485", + value = "helm_robe_d_04_drf.m2", + text = "helm_robe_d_04_drf.m2", + }, + { + fileId = "141486", + value = "helm_robe_d_04_drm.m2", + text = "helm_robe_d_04_drm.m2", + }, + { + fileId = "141487", + value = "helm_robe_d_04_dwf.m2", + text = "helm_robe_d_04_dwf.m2", + }, + { + fileId = "141488", + value = "helm_robe_d_04_dwm.m2", + text = "helm_robe_d_04_dwm.m2", + }, + { + fileId = "141489", + value = "helm_robe_d_04_gnf.m2", + text = "helm_robe_d_04_gnf.m2", + }, + { + fileId = "141490", + value = "helm_robe_d_04_gnm.m2", + text = "helm_robe_d_04_gnm.m2", + }, + { + fileId = "141491", + value = "helm_robe_d_04_gof.m2", + text = "helm_robe_d_04_gof.m2", + }, + { + fileId = "141492", + value = "helm_robe_d_04_gom.m2", + text = "helm_robe_d_04_gom.m2", + }, + { + fileId = "141493", + value = "helm_robe_d_04_huf.m2", + text = "helm_robe_d_04_huf.m2", + }, + { + fileId = "141494", + value = "helm_robe_d_04_hum.m2", + text = "helm_robe_d_04_hum.m2", + }, + { + fileId = "141495", + value = "helm_robe_d_04_nif.m2", + text = "helm_robe_d_04_nif.m2", + }, + { + fileId = "141496", + value = "helm_robe_d_04_nim.m2", + text = "helm_robe_d_04_nim.m2", + }, + { + fileId = "141497", + value = "helm_robe_d_04_orf.m2", + text = "helm_robe_d_04_orf.m2", + }, + { + fileId = "141498", + value = "helm_robe_d_04_orm.m2", + text = "helm_robe_d_04_orm.m2", + }, + { + fileId = "141499", + value = "helm_robe_d_04_scf.m2", + text = "helm_robe_d_04_scf.m2", + }, + { + fileId = "141500", + value = "helm_robe_d_04_scm.m2", + text = "helm_robe_d_04_scm.m2", + }, + { + fileId = "141501", + value = "helm_robe_d_04_taf.m2", + text = "helm_robe_d_04_taf.m2", + }, + { + fileId = "141502", + value = "helm_robe_d_04_tam.m2", + text = "helm_robe_d_04_tam.m2", + }, + { + fileId = "141503", + value = "helm_robe_d_04_trf.m2", + text = "helm_robe_d_04_trf.m2", + }, + { + fileId = "141504", + value = "helm_robe_d_04_trm.m2", + text = "helm_robe_d_04_trm.m2", + }, + { + fileId = "141505", + value = "helm_robe_dungeonmage_a_01_bef.m2", + text = "helm_robe_dungeonmage_a_01_bef.m2", + }, + { + fileId = "141506", + value = "helm_robe_dungeonmage_a_01_bem.m2", + text = "helm_robe_dungeonmage_a_01_bem.m2", + }, + { + fileId = "141507", + value = "helm_robe_dungeonmage_a_01_drf.m2", + text = "helm_robe_dungeonmage_a_01_drf.m2", + }, + { + fileId = "141508", + value = "helm_robe_dungeonmage_a_01_drm.m2", + text = "helm_robe_dungeonmage_a_01_drm.m2", + }, + { + fileId = "141509", + value = "helm_robe_dungeonmage_a_01_dwf.m2", + text = "helm_robe_dungeonmage_a_01_dwf.m2", + }, + { + fileId = "141510", + value = "helm_robe_dungeonmage_a_01_dwm.m2", + text = "helm_robe_dungeonmage_a_01_dwm.m2", + }, + { + fileId = "141511", + value = "helm_robe_dungeonmage_a_01_gnf.m2", + text = "helm_robe_dungeonmage_a_01_gnf.m2", + }, + { + fileId = "141512", + value = "helm_robe_dungeonmage_a_01_gnm.m2", + text = "helm_robe_dungeonmage_a_01_gnm.m2", + }, + { + fileId = "141513", + value = "helm_robe_dungeonmage_a_01_gof.m2", + text = "helm_robe_dungeonmage_a_01_gof.m2", + }, + { + fileId = "141514", + value = "helm_robe_dungeonmage_a_01_gom.m2", + text = "helm_robe_dungeonmage_a_01_gom.m2", + }, + { + fileId = "141515", + value = "helm_robe_dungeonmage_a_01_huf.m2", + text = "helm_robe_dungeonmage_a_01_huf.m2", + }, + { + fileId = "141516", + value = "helm_robe_dungeonmage_a_01_hum.m2", + text = "helm_robe_dungeonmage_a_01_hum.m2", + }, + { + fileId = "141517", + value = "helm_robe_dungeonmage_a_01_nif.m2", + text = "helm_robe_dungeonmage_a_01_nif.m2", + }, + { + fileId = "141518", + value = "helm_robe_dungeonmage_a_01_nim.m2", + text = "helm_robe_dungeonmage_a_01_nim.m2", + }, + { + fileId = "141519", + value = "helm_robe_dungeonmage_a_01_orf.m2", + text = "helm_robe_dungeonmage_a_01_orf.m2", + }, + { + fileId = "141520", + value = "helm_robe_dungeonmage_a_01_orm.m2", + text = "helm_robe_dungeonmage_a_01_orm.m2", + }, + { + fileId = "141521", + value = "helm_robe_dungeonmage_a_01_scf.m2", + text = "helm_robe_dungeonmage_a_01_scf.m2", + }, + { + fileId = "141522", + value = "helm_robe_dungeonmage_a_01_scm.m2", + text = "helm_robe_dungeonmage_a_01_scm.m2", + }, + { + fileId = "141523", + value = "helm_robe_dungeonmage_a_01_taf.m2", + text = "helm_robe_dungeonmage_a_01_taf.m2", + }, + { + fileId = "141524", + value = "helm_robe_dungeonmage_a_01_tam.m2", + text = "helm_robe_dungeonmage_a_01_tam.m2", + }, + { + fileId = "141525", + value = "helm_robe_dungeonmage_a_01_trf.m2", + text = "helm_robe_dungeonmage_a_01_trf.m2", + }, + { + fileId = "141526", + value = "helm_robe_dungeonmage_a_01_trm.m2", + text = "helm_robe_dungeonmage_a_01_trm.m2", + }, + { + fileId = "141532", + value = "helm_robe_dungeonmage_b_01_bef.m2", + text = "helm_robe_dungeonmage_b_01_bef.m2", + }, + { + fileId = "141533", + value = "helm_robe_dungeonmage_b_01_bem.m2", + text = "helm_robe_dungeonmage_b_01_bem.m2", + }, + { + fileId = "141534", + value = "helm_robe_dungeonmage_b_01_drf.m2", + text = "helm_robe_dungeonmage_b_01_drf.m2", + }, + { + fileId = "141535", + value = "helm_robe_dungeonmage_b_01_drm.m2", + text = "helm_robe_dungeonmage_b_01_drm.m2", + }, + { + fileId = "141536", + value = "helm_robe_dungeonmage_b_01_dwf.m2", + text = "helm_robe_dungeonmage_b_01_dwf.m2", + }, + { + fileId = "141537", + value = "helm_robe_dungeonmage_b_01_dwm.m2", + text = "helm_robe_dungeonmage_b_01_dwm.m2", + }, + { + fileId = "141538", + value = "helm_robe_dungeonmage_b_01_gnf.m2", + text = "helm_robe_dungeonmage_b_01_gnf.m2", + }, + { + fileId = "141539", + value = "helm_robe_dungeonmage_b_01_gnm.m2", + text = "helm_robe_dungeonmage_b_01_gnm.m2", + }, + { + fileId = "141540", + value = "helm_robe_dungeonmage_b_01_gof.m2", + text = "helm_robe_dungeonmage_b_01_gof.m2", + }, + { + fileId = "141541", + value = "helm_robe_dungeonmage_b_01_gom.m2", + text = "helm_robe_dungeonmage_b_01_gom.m2", + }, + { + fileId = "141542", + value = "helm_robe_dungeonmage_b_01_huf.m2", + text = "helm_robe_dungeonmage_b_01_huf.m2", + }, + { + fileId = "141543", + value = "helm_robe_dungeonmage_b_01_hum.m2", + text = "helm_robe_dungeonmage_b_01_hum.m2", + }, + { + fileId = "141544", + value = "helm_robe_dungeonmage_b_01_nif.m2", + text = "helm_robe_dungeonmage_b_01_nif.m2", + }, + { + fileId = "141545", + value = "helm_robe_dungeonmage_b_01_nim.m2", + text = "helm_robe_dungeonmage_b_01_nim.m2", + }, + { + fileId = "141546", + value = "helm_robe_dungeonmage_b_01_orf.m2", + text = "helm_robe_dungeonmage_b_01_orf.m2", + }, + { + fileId = "141547", + value = "helm_robe_dungeonmage_b_01_orm.m2", + text = "helm_robe_dungeonmage_b_01_orm.m2", + }, + { + fileId = "141548", + value = "helm_robe_dungeonmage_b_01_scf.m2", + text = "helm_robe_dungeonmage_b_01_scf.m2", + }, + { + fileId = "141549", + value = "helm_robe_dungeonmage_b_01_scm.m2", + text = "helm_robe_dungeonmage_b_01_scm.m2", + }, + { + fileId = "141550", + value = "helm_robe_dungeonmage_b_01_taf.m2", + text = "helm_robe_dungeonmage_b_01_taf.m2", + }, + { + fileId = "141551", + value = "helm_robe_dungeonmage_b_01_tam.m2", + text = "helm_robe_dungeonmage_b_01_tam.m2", + }, + { + fileId = "141552", + value = "helm_robe_dungeonmage_b_01_trf.m2", + text = "helm_robe_dungeonmage_b_01_trf.m2", + }, + { + fileId = "141553", + value = "helm_robe_dungeonmage_b_01_trm.m2", + text = "helm_robe_dungeonmage_b_01_trm.m2", + }, + { + fileId = "141558", + value = "helm_robe_dungeonpriest_a_01_bef.m2", + text = "helm_robe_dungeonpriest_a_01_bef.m2", + }, + { + fileId = "141559", + value = "helm_robe_dungeonpriest_a_01_bem.m2", + text = "helm_robe_dungeonpriest_a_01_bem.m2", + }, + { + fileId = "141560", + value = "helm_robe_dungeonpriest_a_01_drf.m2", + text = "helm_robe_dungeonpriest_a_01_drf.m2", + }, + { + fileId = "141561", + value = "helm_robe_dungeonpriest_a_01_drm.m2", + text = "helm_robe_dungeonpriest_a_01_drm.m2", + }, + { + fileId = "141562", + value = "helm_robe_dungeonpriest_a_01_dwf.m2", + text = "helm_robe_dungeonpriest_a_01_dwf.m2", + }, + { + fileId = "141563", + value = "helm_robe_dungeonpriest_a_01_dwm.m2", + text = "helm_robe_dungeonpriest_a_01_dwm.m2", + }, + { + fileId = "141564", + value = "helm_robe_dungeonpriest_a_01_gnf.m2", + text = "helm_robe_dungeonpriest_a_01_gnf.m2", + }, + { + fileId = "141565", + value = "helm_robe_dungeonpriest_a_01_gnm.m2", + text = "helm_robe_dungeonpriest_a_01_gnm.m2", + }, + { + fileId = "141566", + value = "helm_robe_dungeonpriest_a_01_gof.m2", + text = "helm_robe_dungeonpriest_a_01_gof.m2", + }, + { + fileId = "141567", + value = "helm_robe_dungeonpriest_a_01_gom.m2", + text = "helm_robe_dungeonpriest_a_01_gom.m2", + }, + { + fileId = "141568", + value = "helm_robe_dungeonpriest_a_01_huf.m2", + text = "helm_robe_dungeonpriest_a_01_huf.m2", + }, + { + fileId = "141569", + value = "helm_robe_dungeonpriest_a_01_hum.m2", + text = "helm_robe_dungeonpriest_a_01_hum.m2", + }, + { + fileId = "141570", + value = "helm_robe_dungeonpriest_a_01_nif.m2", + text = "helm_robe_dungeonpriest_a_01_nif.m2", + }, + { + fileId = "141571", + value = "helm_robe_dungeonpriest_a_01_nim.m2", + text = "helm_robe_dungeonpriest_a_01_nim.m2", + }, + { + fileId = "141572", + value = "helm_robe_dungeonpriest_a_01_orf.m2", + text = "helm_robe_dungeonpriest_a_01_orf.m2", + }, + { + fileId = "141573", + value = "helm_robe_dungeonpriest_a_01_orm.m2", + text = "helm_robe_dungeonpriest_a_01_orm.m2", + }, + { + fileId = "141574", + value = "helm_robe_dungeonpriest_a_01_scf.m2", + text = "helm_robe_dungeonpriest_a_01_scf.m2", + }, + { + fileId = "141575", + value = "helm_robe_dungeonpriest_a_01_scm.m2", + text = "helm_robe_dungeonpriest_a_01_scm.m2", + }, + { + fileId = "141576", + value = "helm_robe_dungeonpriest_a_01_taf.m2", + text = "helm_robe_dungeonpriest_a_01_taf.m2", + }, + { + fileId = "141577", + value = "helm_robe_dungeonpriest_a_01_tam.m2", + text = "helm_robe_dungeonpriest_a_01_tam.m2", + }, + { + fileId = "141578", + value = "helm_robe_dungeonpriest_a_01_trf.m2", + text = "helm_robe_dungeonpriest_a_01_trf.m2", + }, + { + fileId = "141579", + value = "helm_robe_dungeonpriest_a_01_trm.m2", + text = "helm_robe_dungeonpriest_a_01_trm.m2", + }, + { + fileId = "141585", + value = "helm_robe_dungeonpriest_b_01_bef.m2", + text = "helm_robe_dungeonpriest_b_01_bef.m2", + }, + { + fileId = "141586", + value = "helm_robe_dungeonpriest_b_01_bem.m2", + text = "helm_robe_dungeonpriest_b_01_bem.m2", + }, + { + fileId = "141587", + value = "helm_robe_dungeonpriest_b_01_drf.m2", + text = "helm_robe_dungeonpriest_b_01_drf.m2", + }, + { + fileId = "141588", + value = "helm_robe_dungeonpriest_b_01_drm.m2", + text = "helm_robe_dungeonpriest_b_01_drm.m2", + }, + { + fileId = "141589", + value = "helm_robe_dungeonpriest_b_01_dwf.m2", + text = "helm_robe_dungeonpriest_b_01_dwf.m2", + }, + { + fileId = "141590", + value = "helm_robe_dungeonpriest_b_01_dwm.m2", + text = "helm_robe_dungeonpriest_b_01_dwm.m2", + }, + { + fileId = "141591", + value = "helm_robe_dungeonpriest_b_01_gnf.m2", + text = "helm_robe_dungeonpriest_b_01_gnf.m2", + }, + { + fileId = "141592", + value = "helm_robe_dungeonpriest_b_01_gnm.m2", + text = "helm_robe_dungeonpriest_b_01_gnm.m2", + }, + { + fileId = "141593", + value = "helm_robe_dungeonpriest_b_01_gof.m2", + text = "helm_robe_dungeonpriest_b_01_gof.m2", + }, + { + fileId = "141594", + value = "helm_robe_dungeonpriest_b_01_gom.m2", + text = "helm_robe_dungeonpriest_b_01_gom.m2", + }, + { + fileId = "141595", + value = "helm_robe_dungeonpriest_b_01_huf.m2", + text = "helm_robe_dungeonpriest_b_01_huf.m2", + }, + { + fileId = "141596", + value = "helm_robe_dungeonpriest_b_01_hum.m2", + text = "helm_robe_dungeonpriest_b_01_hum.m2", + }, + { + fileId = "141597", + value = "helm_robe_dungeonpriest_b_01_nif.m2", + text = "helm_robe_dungeonpriest_b_01_nif.m2", + }, + { + fileId = "141598", + value = "helm_robe_dungeonpriest_b_01_nim.m2", + text = "helm_robe_dungeonpriest_b_01_nim.m2", + }, + { + fileId = "141599", + value = "helm_robe_dungeonpriest_b_01_orf.m2", + text = "helm_robe_dungeonpriest_b_01_orf.m2", + }, + { + fileId = "141600", + value = "helm_robe_dungeonpriest_b_01_orm.m2", + text = "helm_robe_dungeonpriest_b_01_orm.m2", + }, + { + fileId = "141601", + value = "helm_robe_dungeonpriest_b_01_scf.m2", + text = "helm_robe_dungeonpriest_b_01_scf.m2", + }, + { + fileId = "141602", + value = "helm_robe_dungeonpriest_b_01_scm.m2", + text = "helm_robe_dungeonpriest_b_01_scm.m2", + }, + { + fileId = "141603", + value = "helm_robe_dungeonpriest_b_01_taf.m2", + text = "helm_robe_dungeonpriest_b_01_taf.m2", + }, + { + fileId = "141604", + value = "helm_robe_dungeonpriest_b_01_tam.m2", + text = "helm_robe_dungeonpriest_b_01_tam.m2", + }, + { + fileId = "141605", + value = "helm_robe_dungeonpriest_b_01_trf.m2", + text = "helm_robe_dungeonpriest_b_01_trf.m2", + }, + { + fileId = "141606", + value = "helm_robe_dungeonpriest_b_01_trm.m2", + text = "helm_robe_dungeonpriest_b_01_trm.m2", + }, + { + fileId = "141611", + value = "helm_robe_dungeonwarlock_a_01_bef.m2", + text = "helm_robe_dungeonwarlock_a_01_bef.m2", + }, + { + fileId = "141612", + value = "helm_robe_dungeonwarlock_a_01_bem.m2", + text = "helm_robe_dungeonwarlock_a_01_bem.m2", + }, + { + fileId = "141613", + value = "helm_robe_dungeonwarlock_a_01_drf.m2", + text = "helm_robe_dungeonwarlock_a_01_drf.m2", + }, + { + fileId = "141614", + value = "helm_robe_dungeonwarlock_a_01_drm.m2", + text = "helm_robe_dungeonwarlock_a_01_drm.m2", + }, + { + fileId = "141615", + value = "helm_robe_dungeonwarlock_a_01_dwf.m2", + text = "helm_robe_dungeonwarlock_a_01_dwf.m2", + }, + { + fileId = "141616", + value = "helm_robe_dungeonwarlock_a_01_dwm.m2", + text = "helm_robe_dungeonwarlock_a_01_dwm.m2", + }, + { + fileId = "141617", + value = "helm_robe_dungeonwarlock_a_01_gnf.m2", + text = "helm_robe_dungeonwarlock_a_01_gnf.m2", + }, + { + fileId = "141618", + value = "helm_robe_dungeonwarlock_a_01_gnm.m2", + text = "helm_robe_dungeonwarlock_a_01_gnm.m2", + }, + { + fileId = "141619", + value = "helm_robe_dungeonwarlock_a_01_gof.m2", + text = "helm_robe_dungeonwarlock_a_01_gof.m2", + }, + { + fileId = "141620", + value = "helm_robe_dungeonwarlock_a_01_gom.m2", + text = "helm_robe_dungeonwarlock_a_01_gom.m2", + }, + { + fileId = "141621", + value = "helm_robe_dungeonwarlock_a_01_huf.m2", + text = "helm_robe_dungeonwarlock_a_01_huf.m2", + }, + { + fileId = "141622", + value = "helm_robe_dungeonwarlock_a_01_hum.m2", + text = "helm_robe_dungeonwarlock_a_01_hum.m2", + }, + { + fileId = "141623", + value = "helm_robe_dungeonwarlock_a_01_nif.m2", + text = "helm_robe_dungeonwarlock_a_01_nif.m2", + }, + { + fileId = "141624", + value = "helm_robe_dungeonwarlock_a_01_nim.m2", + text = "helm_robe_dungeonwarlock_a_01_nim.m2", + }, + { + fileId = "141625", + value = "helm_robe_dungeonwarlock_a_01_orf.m2", + text = "helm_robe_dungeonwarlock_a_01_orf.m2", + }, + { + fileId = "141626", + value = "helm_robe_dungeonwarlock_a_01_orm.m2", + text = "helm_robe_dungeonwarlock_a_01_orm.m2", + }, + { + fileId = "141627", + value = "helm_robe_dungeonwarlock_a_01_scf.m2", + text = "helm_robe_dungeonwarlock_a_01_scf.m2", + }, + { + fileId = "141628", + value = "helm_robe_dungeonwarlock_a_01_scm.m2", + text = "helm_robe_dungeonwarlock_a_01_scm.m2", + }, + { + fileId = "141629", + value = "helm_robe_dungeonwarlock_a_01_taf.m2", + text = "helm_robe_dungeonwarlock_a_01_taf.m2", + }, + { + fileId = "141630", + value = "helm_robe_dungeonwarlock_a_01_tam.m2", + text = "helm_robe_dungeonwarlock_a_01_tam.m2", + }, + { + fileId = "141631", + value = "helm_robe_dungeonwarlock_a_01_trf.m2", + text = "helm_robe_dungeonwarlock_a_01_trf.m2", + }, + { + fileId = "141632", + value = "helm_robe_dungeonwarlock_a_01_trm.m2", + text = "helm_robe_dungeonwarlock_a_01_trm.m2", + }, + { + fileId = "141640", + value = "helm_robe_dungeonwarlock_b_01_bef.m2", + text = "helm_robe_dungeonwarlock_b_01_bef.m2", + }, + { + fileId = "141641", + value = "helm_robe_dungeonwarlock_b_01_bem.m2", + text = "helm_robe_dungeonwarlock_b_01_bem.m2", + }, + { + fileId = "141642", + value = "helm_robe_dungeonwarlock_b_01_drf.m2", + text = "helm_robe_dungeonwarlock_b_01_drf.m2", + }, + { + fileId = "141643", + value = "helm_robe_dungeonwarlock_b_01_drm.m2", + text = "helm_robe_dungeonwarlock_b_01_drm.m2", + }, + { + fileId = "141644", + value = "helm_robe_dungeonwarlock_b_01_dwf.m2", + text = "helm_robe_dungeonwarlock_b_01_dwf.m2", + }, + { + fileId = "141645", + value = "helm_robe_dungeonwarlock_b_01_dwm.m2", + text = "helm_robe_dungeonwarlock_b_01_dwm.m2", + }, + { + fileId = "141646", + value = "helm_robe_dungeonwarlock_b_01_gnf.m2", + text = "helm_robe_dungeonwarlock_b_01_gnf.m2", + }, + { + fileId = "141647", + value = "helm_robe_dungeonwarlock_b_01_gnm.m2", + text = "helm_robe_dungeonwarlock_b_01_gnm.m2", + }, + { + fileId = "141648", + value = "helm_robe_dungeonwarlock_b_01_gof.m2", + text = "helm_robe_dungeonwarlock_b_01_gof.m2", + }, + { + fileId = "141649", + value = "helm_robe_dungeonwarlock_b_01_gom.m2", + text = "helm_robe_dungeonwarlock_b_01_gom.m2", + }, + { + fileId = "141650", + value = "helm_robe_dungeonwarlock_b_01_huf.m2", + text = "helm_robe_dungeonwarlock_b_01_huf.m2", + }, + { + fileId = "141651", + value = "helm_robe_dungeonwarlock_b_01_hum.m2", + text = "helm_robe_dungeonwarlock_b_01_hum.m2", + }, + { + fileId = "141652", + value = "helm_robe_dungeonwarlock_b_01_nif.m2", + text = "helm_robe_dungeonwarlock_b_01_nif.m2", + }, + { + fileId = "141653", + value = "helm_robe_dungeonwarlock_b_01_nim.m2", + text = "helm_robe_dungeonwarlock_b_01_nim.m2", + }, + { + fileId = "141654", + value = "helm_robe_dungeonwarlock_b_01_orf.m2", + text = "helm_robe_dungeonwarlock_b_01_orf.m2", + }, + { + fileId = "141655", + value = "helm_robe_dungeonwarlock_b_01_orm.m2", + text = "helm_robe_dungeonwarlock_b_01_orm.m2", + }, + { + fileId = "141656", + value = "helm_robe_dungeonwarlock_b_01_scf.m2", + text = "helm_robe_dungeonwarlock_b_01_scf.m2", + }, + { + fileId = "141657", + value = "helm_robe_dungeonwarlock_b_01_scm.m2", + text = "helm_robe_dungeonwarlock_b_01_scm.m2", + }, + { + fileId = "141658", + value = "helm_robe_dungeonwarlock_b_01_taf.m2", + text = "helm_robe_dungeonwarlock_b_01_taf.m2", + }, + { + fileId = "141659", + value = "helm_robe_dungeonwarlock_b_01_tam.m2", + text = "helm_robe_dungeonwarlock_b_01_tam.m2", + }, + { + fileId = "141660", + value = "helm_robe_dungeonwarlock_b_01_trf.m2", + text = "helm_robe_dungeonwarlock_b_01_trf.m2", + }, + { + fileId = "141661", + value = "helm_robe_dungeonwarlock_b_01_trm.m2", + text = "helm_robe_dungeonwarlock_b_01_trm.m2", + }, + { + fileId = "141667", + value = "helm_robe_holiday_summerfest_a_01_bef.m2", + text = "helm_robe_holiday_summerfest_a_01_bef.m2", + }, + { + fileId = "141668", + value = "helm_robe_holiday_summerfest_a_01_bem.m2", + text = "helm_robe_holiday_summerfest_a_01_bem.m2", + }, + { + fileId = "141669", + value = "helm_robe_holiday_summerfest_a_01_drf.m2", + text = "helm_robe_holiday_summerfest_a_01_drf.m2", + }, + { + fileId = "141670", + value = "helm_robe_holiday_summerfest_a_01_drm.m2", + text = "helm_robe_holiday_summerfest_a_01_drm.m2", + }, + { + fileId = "141671", + value = "helm_robe_holiday_summerfest_a_01_dwf.m2", + text = "helm_robe_holiday_summerfest_a_01_dwf.m2", + }, + { + fileId = "141672", + value = "helm_robe_holiday_summerfest_a_01_dwm.m2", + text = "helm_robe_holiday_summerfest_a_01_dwm.m2", + }, + { + fileId = "141673", + value = "helm_robe_holiday_summerfest_a_01_gnf.m2", + text = "helm_robe_holiday_summerfest_a_01_gnf.m2", + }, + { + fileId = "141674", + value = "helm_robe_holiday_summerfest_a_01_gnm.m2", + text = "helm_robe_holiday_summerfest_a_01_gnm.m2", + }, + { + fileId = "141675", + value = "helm_robe_holiday_summerfest_a_01_gof.m2", + text = "helm_robe_holiday_summerfest_a_01_gof.m2", + }, + { + fileId = "141676", + value = "helm_robe_holiday_summerfest_a_01_gom.m2", + text = "helm_robe_holiday_summerfest_a_01_gom.m2", + }, + { + fileId = "141677", + value = "helm_robe_holiday_summerfest_a_01_huf.m2", + text = "helm_robe_holiday_summerfest_a_01_huf.m2", + }, + { + fileId = "141678", + value = "helm_robe_holiday_summerfest_a_01_hum.m2", + text = "helm_robe_holiday_summerfest_a_01_hum.m2", + }, + { + fileId = "141679", + value = "helm_robe_holiday_summerfest_a_01_nif.m2", + text = "helm_robe_holiday_summerfest_a_01_nif.m2", + }, + { + fileId = "141680", + value = "helm_robe_holiday_summerfest_a_01_nim.m2", + text = "helm_robe_holiday_summerfest_a_01_nim.m2", + }, + { + fileId = "141681", + value = "helm_robe_holiday_summerfest_a_01_orf.m2", + text = "helm_robe_holiday_summerfest_a_01_orf.m2", + }, + { + fileId = "141682", + value = "helm_robe_holiday_summerfest_a_01_orm.m2", + text = "helm_robe_holiday_summerfest_a_01_orm.m2", + }, + { + fileId = "141683", + value = "helm_robe_holiday_summerfest_a_01_scf.m2", + text = "helm_robe_holiday_summerfest_a_01_scf.m2", + }, + { + fileId = "141684", + value = "helm_robe_holiday_summerfest_a_01_scm.m2", + text = "helm_robe_holiday_summerfest_a_01_scm.m2", + }, + { + fileId = "141685", + value = "helm_robe_holiday_summerfest_a_01_taf.m2", + text = "helm_robe_holiday_summerfest_a_01_taf.m2", + }, + { + fileId = "141686", + value = "helm_robe_holiday_summerfest_a_01_tam.m2", + text = "helm_robe_holiday_summerfest_a_01_tam.m2", + }, + { + fileId = "141687", + value = "helm_robe_holiday_summerfest_a_01_trf.m2", + text = "helm_robe_holiday_summerfest_a_01_trf.m2", + }, + { + fileId = "141688", + value = "helm_robe_holiday_summerfest_a_01_trm.m2", + text = "helm_robe_holiday_summerfest_a_01_trm.m2", + }, + { + fileId = "141689", + value = "helm_robe_holiday_summerfest_a_02_bef.m2", + text = "helm_robe_holiday_summerfest_a_02_bef.m2", + }, + { + fileId = "141690", + value = "helm_robe_holiday_summerfest_a_02_bem.m2", + text = "helm_robe_holiday_summerfest_a_02_bem.m2", + }, + { + fileId = "141691", + value = "helm_robe_holiday_summerfest_a_02_dwf.m2", + text = "helm_robe_holiday_summerfest_a_02_dwf.m2", + }, + { + fileId = "141692", + value = "helm_robe_holiday_summerfest_a_02_dwm.m2", + text = "helm_robe_holiday_summerfest_a_02_dwm.m2", + }, + { + fileId = "141693", + value = "helm_robe_holiday_summerfest_a_02_gnf.m2", + text = "helm_robe_holiday_summerfest_a_02_gnf.m2", + }, + { + fileId = "141694", + value = "helm_robe_holiday_summerfest_a_02_gnm.m2", + text = "helm_robe_holiday_summerfest_a_02_gnm.m2", + }, + { + fileId = "141695", + value = "helm_robe_holiday_summerfest_a_02_gom.m2", + text = "helm_robe_holiday_summerfest_a_02_gom.m2", + }, + { + fileId = "141696", + value = "helm_robe_holiday_summerfest_a_02_huf.m2", + text = "helm_robe_holiday_summerfest_a_02_huf.m2", + }, + { + fileId = "141697", + value = "helm_robe_holiday_summerfest_a_02_hum.m2", + text = "helm_robe_holiday_summerfest_a_02_hum.m2", + }, + { + fileId = "141698", + value = "helm_robe_holiday_summerfest_a_02_nif.m2", + text = "helm_robe_holiday_summerfest_a_02_nif.m2", + }, + { + fileId = "141699", + value = "helm_robe_holiday_summerfest_a_02_nim.m2", + text = "helm_robe_holiday_summerfest_a_02_nim.m2", + }, + { + fileId = "141700", + value = "helm_robe_holiday_summerfest_a_02_orf.m2", + text = "helm_robe_holiday_summerfest_a_02_orf.m2", + }, + { + fileId = "141701", + value = "helm_robe_holiday_summerfest_a_02_orm.m2", + text = "helm_robe_holiday_summerfest_a_02_orm.m2", + }, + { + fileId = "141702", + value = "helm_robe_holiday_summerfest_a_02_scf.m2", + text = "helm_robe_holiday_summerfest_a_02_scf.m2", + }, + { + fileId = "141703", + value = "helm_robe_holiday_summerfest_a_02_scm.m2", + text = "helm_robe_holiday_summerfest_a_02_scm.m2", + }, + { + fileId = "141704", + value = "helm_robe_holiday_summerfest_a_02_taf.m2", + text = "helm_robe_holiday_summerfest_a_02_taf.m2", + }, + { + fileId = "141705", + value = "helm_robe_holiday_summerfest_a_02_tam.m2", + text = "helm_robe_holiday_summerfest_a_02_tam.m2", + }, + { + fileId = "141706", + value = "helm_robe_holiday_summerfest_a_02_trf.m2", + text = "helm_robe_holiday_summerfest_a_02_trf.m2", + }, + { + fileId = "141707", + value = "helm_robe_holiday_summerfest_a_02_trm.m2", + text = "helm_robe_holiday_summerfest_a_02_trm.m2", + }, + { + fileId = "141710", + value = "helm_robe_horde_b_03earthenring_bef.m2", + text = "helm_robe_horde_b_03earthenring_bef.m2", + }, + { + fileId = "141711", + value = "helm_robe_horde_b_03earthenring_bem.m2", + text = "helm_robe_horde_b_03earthenring_bem.m2", + }, + { + fileId = "141712", + value = "helm_robe_horde_b_03earthenring_drf.m2", + text = "helm_robe_horde_b_03earthenring_drf.m2", + }, + { + fileId = "141713", + value = "helm_robe_horde_b_03earthenring_drm.m2", + text = "helm_robe_horde_b_03earthenring_drm.m2", + }, + { + fileId = "141714", + value = "helm_robe_horde_b_03earthenring_dwf.m2", + text = "helm_robe_horde_b_03earthenring_dwf.m2", + }, + { + fileId = "141715", + value = "helm_robe_horde_b_03earthenring_dwm.m2", + text = "helm_robe_horde_b_03earthenring_dwm.m2", + }, + { + fileId = "141716", + value = "helm_robe_horde_b_03earthenring_gnf.m2", + text = "helm_robe_horde_b_03earthenring_gnf.m2", + }, + { + fileId = "141717", + value = "helm_robe_horde_b_03earthenring_gnm.m2", + text = "helm_robe_horde_b_03earthenring_gnm.m2", + }, + { + fileId = "141718", + value = "helm_robe_horde_b_03earthenring_gof.m2", + text = "helm_robe_horde_b_03earthenring_gof.m2", + }, + { + fileId = "141719", + value = "helm_robe_horde_b_03earthenring_gom.m2", + text = "helm_robe_horde_b_03earthenring_gom.m2", + }, + { + fileId = "141720", + value = "helm_robe_horde_b_03earthenring_huf.m2", + text = "helm_robe_horde_b_03earthenring_huf.m2", + }, + { + fileId = "141721", + value = "helm_robe_horde_b_03earthenring_hum.m2", + text = "helm_robe_horde_b_03earthenring_hum.m2", + }, + { + fileId = "141722", + value = "helm_robe_horde_b_03earthenring_nif.m2", + text = "helm_robe_horde_b_03earthenring_nif.m2", + }, + { + fileId = "141723", + value = "helm_robe_horde_b_03earthenring_nim.m2", + text = "helm_robe_horde_b_03earthenring_nim.m2", + }, + { + fileId = "141724", + value = "helm_robe_horde_b_03earthenring_orf.m2", + text = "helm_robe_horde_b_03earthenring_orf.m2", + }, + { + fileId = "141725", + value = "helm_robe_horde_b_03earthenring_orm.m2", + text = "helm_robe_horde_b_03earthenring_orm.m2", + }, + { + fileId = "141726", + value = "helm_robe_horde_b_03earthenring_scf.m2", + text = "helm_robe_horde_b_03earthenring_scf.m2", + }, + { + fileId = "141727", + value = "helm_robe_horde_b_03earthenring_scm.m2", + text = "helm_robe_horde_b_03earthenring_scm.m2", + }, + { + fileId = "141728", + value = "helm_robe_horde_b_03earthenring_taf.m2", + text = "helm_robe_horde_b_03earthenring_taf.m2", + }, + { + fileId = "141729", + value = "helm_robe_horde_b_03earthenring_tam.m2", + text = "helm_robe_horde_b_03earthenring_tam.m2", + }, + { + fileId = "141730", + value = "helm_robe_horde_b_03earthenring_trf.m2", + text = "helm_robe_horde_b_03earthenring_trf.m2", + }, + { + fileId = "141731", + value = "helm_robe_horde_b_03earthenring_trm.m2", + text = "helm_robe_horde_b_03earthenring_trm.m2", + }, + { + fileId = "141837", + value = "helm_robe_pvpalliance_a_01_bef.m2", + text = "helm_robe_pvpalliance_a_01_bef.m2", + }, + { + fileId = "141838", + value = "helm_robe_pvpalliance_a_01_bem.m2", + text = "helm_robe_pvpalliance_a_01_bem.m2", + }, + { + fileId = "141839", + value = "helm_robe_pvpalliance_a_01_drf.m2", + text = "helm_robe_pvpalliance_a_01_drf.m2", + }, + { + fileId = "141840", + value = "helm_robe_pvpalliance_a_01_drm.m2", + text = "helm_robe_pvpalliance_a_01_drm.m2", + }, + { + fileId = "141841", + value = "helm_robe_pvpalliance_a_01_dwf.m2", + text = "helm_robe_pvpalliance_a_01_dwf.m2", + }, + { + fileId = "141842", + value = "helm_robe_pvpalliance_a_01_dwm.m2", + text = "helm_robe_pvpalliance_a_01_dwm.m2", + }, + { + fileId = "141843", + value = "helm_robe_pvpalliance_a_01_gnf.m2", + text = "helm_robe_pvpalliance_a_01_gnf.m2", + }, + { + fileId = "141844", + value = "helm_robe_pvpalliance_a_01_gnm.m2", + text = "helm_robe_pvpalliance_a_01_gnm.m2", + }, + { + fileId = "141845", + value = "helm_robe_pvpalliance_a_01_gof.m2", + text = "helm_robe_pvpalliance_a_01_gof.m2", + }, + { + fileId = "141846", + value = "helm_robe_pvpalliance_a_01_gom.m2", + text = "helm_robe_pvpalliance_a_01_gom.m2", + }, + { + fileId = "141847", + value = "helm_robe_pvpalliance_a_01_huf.m2", + text = "helm_robe_pvpalliance_a_01_huf.m2", + }, + { + fileId = "141848", + value = "helm_robe_pvpalliance_a_01_hum.m2", + text = "helm_robe_pvpalliance_a_01_hum.m2", + }, + { + fileId = "141849", + value = "helm_robe_pvpalliance_a_01_nif.m2", + text = "helm_robe_pvpalliance_a_01_nif.m2", + }, + { + fileId = "141850", + value = "helm_robe_pvpalliance_a_01_nim.m2", + text = "helm_robe_pvpalliance_a_01_nim.m2", + }, + { + fileId = "141851", + value = "helm_robe_pvpalliance_a_01_orf.m2", + text = "helm_robe_pvpalliance_a_01_orf.m2", + }, + { + fileId = "141852", + value = "helm_robe_pvpalliance_a_01_orm.m2", + text = "helm_robe_pvpalliance_a_01_orm.m2", + }, + { + fileId = "141853", + value = "helm_robe_pvpalliance_a_01_scf.m2", + text = "helm_robe_pvpalliance_a_01_scf.m2", + }, + { + fileId = "141854", + value = "helm_robe_pvpalliance_a_01_scm.m2", + text = "helm_robe_pvpalliance_a_01_scm.m2", + }, + { + fileId = "141855", + value = "helm_robe_pvpalliance_a_01_taf.m2", + text = "helm_robe_pvpalliance_a_01_taf.m2", + }, + { + fileId = "141856", + value = "helm_robe_pvpalliance_a_01_tam.m2", + text = "helm_robe_pvpalliance_a_01_tam.m2", + }, + { + fileId = "141857", + value = "helm_robe_pvpalliance_a_01_trf.m2", + text = "helm_robe_pvpalliance_a_01_trf.m2", + }, + { + fileId = "141858", + value = "helm_robe_pvpalliance_a_01_trm.m2", + text = "helm_robe_pvpalliance_a_01_trm.m2", + }, + { + fileId = "141862", + value = "helm_robe_pvpalliance_b_01_drf.m2", + text = "helm_robe_pvpalliance_b_01_drf.m2", + }, + { + fileId = "141863", + value = "helm_robe_pvpalliance_b_01_drm.m2", + text = "helm_robe_pvpalliance_b_01_drm.m2", + }, + { + fileId = "141864", + value = "helm_robe_pvpalliance_b_01_gof.m2", + text = "helm_robe_pvpalliance_b_01_gof.m2", + }, + { + fileId = "141865", + value = "helm_robe_pvpalliance_b_01_gom.m2", + text = "helm_robe_pvpalliance_b_01_gom.m2", + }, + { + fileId = "141866", + value = "helm_robe_pvpalliance_c_01_bef.m2", + text = "helm_robe_pvpalliance_c_01_bef.m2", + }, + { + fileId = "141867", + value = "helm_robe_pvpalliance_c_01_bem.m2", + text = "helm_robe_pvpalliance_c_01_bem.m2", + }, + { + fileId = "141868", + value = "helm_robe_pvpalliance_c_01_drf.m2", + text = "helm_robe_pvpalliance_c_01_drf.m2", + }, + { + fileId = "141869", + value = "helm_robe_pvpalliance_c_01_drm.m2", + text = "helm_robe_pvpalliance_c_01_drm.m2", + }, + { + fileId = "141870", + value = "helm_robe_pvpalliance_c_01_dwf.m2", + text = "helm_robe_pvpalliance_c_01_dwf.m2", + }, + { + fileId = "141871", + value = "helm_robe_pvpalliance_c_01_dwm.m2", + text = "helm_robe_pvpalliance_c_01_dwm.m2", + }, + { + fileId = "141872", + value = "helm_robe_pvpalliance_c_01_gnf.m2", + text = "helm_robe_pvpalliance_c_01_gnf.m2", + }, + { + fileId = "141873", + value = "helm_robe_pvpalliance_c_01_gnm.m2", + text = "helm_robe_pvpalliance_c_01_gnm.m2", + }, + { + fileId = "141874", + value = "helm_robe_pvpalliance_c_01_huf.m2", + text = "helm_robe_pvpalliance_c_01_huf.m2", + }, + { + fileId = "141875", + value = "helm_robe_pvpalliance_c_01_hum.m2", + text = "helm_robe_pvpalliance_c_01_hum.m2", + }, + { + fileId = "141876", + value = "helm_robe_pvpalliance_c_01_nif.m2", + text = "helm_robe_pvpalliance_c_01_nif.m2", + }, + { + fileId = "141877", + value = "helm_robe_pvpalliance_c_01_nim.m2", + text = "helm_robe_pvpalliance_c_01_nim.m2", + }, + { + fileId = "141878", + value = "helm_robe_pvpalliance_c_01_orf.m2", + text = "helm_robe_pvpalliance_c_01_orf.m2", + }, + { + fileId = "141879", + value = "helm_robe_pvpalliance_c_01_orm.m2", + text = "helm_robe_pvpalliance_c_01_orm.m2", + }, + { + fileId = "141880", + value = "helm_robe_pvpalliance_c_01_scf.m2", + text = "helm_robe_pvpalliance_c_01_scf.m2", + }, + { + fileId = "141881", + value = "helm_robe_pvpalliance_c_01_scm.m2", + text = "helm_robe_pvpalliance_c_01_scm.m2", + }, + { + fileId = "141882", + value = "helm_robe_pvpalliance_c_01_taf.m2", + text = "helm_robe_pvpalliance_c_01_taf.m2", + }, + { + fileId = "141883", + value = "helm_robe_pvpalliance_c_01_tam.m2", + text = "helm_robe_pvpalliance_c_01_tam.m2", + }, + { + fileId = "141884", + value = "helm_robe_pvpalliance_c_01_trf.m2", + text = "helm_robe_pvpalliance_c_01_trf.m2", + }, + { + fileId = "141885", + value = "helm_robe_pvpalliance_c_01_trm.m2", + text = "helm_robe_pvpalliance_c_01_trm.m2", + }, + { + fileId = "141889", + value = "helm_robe_pvphorde_a_01_bef.m2", + text = "helm_robe_pvphorde_a_01_bef.m2", + }, + { + fileId = "141890", + value = "helm_robe_pvphorde_a_01_bem.m2", + text = "helm_robe_pvphorde_a_01_bem.m2", + }, + { + fileId = "141891", + value = "helm_robe_pvphorde_a_01_drf.m2", + text = "helm_robe_pvphorde_a_01_drf.m2", + }, + { + fileId = "141892", + value = "helm_robe_pvphorde_a_01_drm.m2", + text = "helm_robe_pvphorde_a_01_drm.m2", + }, + { + fileId = "141893", + value = "helm_robe_pvphorde_a_01_dwf.m2", + text = "helm_robe_pvphorde_a_01_dwf.m2", + }, + { + fileId = "141894", + value = "helm_robe_pvphorde_a_01_dwm.m2", + text = "helm_robe_pvphorde_a_01_dwm.m2", + }, + { + fileId = "141895", + value = "helm_robe_pvphorde_a_01_gnf.m2", + text = "helm_robe_pvphorde_a_01_gnf.m2", + }, + { + fileId = "141896", + value = "helm_robe_pvphorde_a_01_gnm.m2", + text = "helm_robe_pvphorde_a_01_gnm.m2", + }, + { + fileId = "141897", + value = "helm_robe_pvphorde_a_01_gof.m2", + text = "helm_robe_pvphorde_a_01_gof.m2", + }, + { + fileId = "141898", + value = "helm_robe_pvphorde_a_01_huf.m2", + text = "helm_robe_pvphorde_a_01_huf.m2", + }, + { + fileId = "141899", + value = "helm_robe_pvphorde_a_01_hum.m2", + text = "helm_robe_pvphorde_a_01_hum.m2", + }, + { + fileId = "141900", + value = "helm_robe_pvphorde_a_01_nif.m2", + text = "helm_robe_pvphorde_a_01_nif.m2", + }, + { + fileId = "141901", + value = "helm_robe_pvphorde_a_01_nim.m2", + text = "helm_robe_pvphorde_a_01_nim.m2", + }, + { + fileId = "141902", + value = "helm_robe_pvphorde_a_01_orf.m2", + text = "helm_robe_pvphorde_a_01_orf.m2", + }, + { + fileId = "141903", + value = "helm_robe_pvphorde_a_01_orm.m2", + text = "helm_robe_pvphorde_a_01_orm.m2", + }, + { + fileId = "141904", + value = "helm_robe_pvphorde_a_01_scf.m2", + text = "helm_robe_pvphorde_a_01_scf.m2", + }, + { + fileId = "141905", + value = "helm_robe_pvphorde_a_01_scm.m2", + text = "helm_robe_pvphorde_a_01_scm.m2", + }, + { + fileId = "141906", + value = "helm_robe_pvphorde_a_01_taf.m2", + text = "helm_robe_pvphorde_a_01_taf.m2", + }, + { + fileId = "141907", + value = "helm_robe_pvphorde_a_01_tam.m2", + text = "helm_robe_pvphorde_a_01_tam.m2", + }, + { + fileId = "141908", + value = "helm_robe_pvphorde_a_01_trf.m2", + text = "helm_robe_pvphorde_a_01_trf.m2", + }, + { + fileId = "141909", + value = "helm_robe_pvphorde_a_01_trm.m2", + text = "helm_robe_pvphorde_a_01_trm.m2", + }, + { + fileId = "141913", + value = "helm_robe_pvphorde_b_01_bef.m2", + text = "helm_robe_pvphorde_b_01_bef.m2", + }, + { + fileId = "141914", + value = "helm_robe_pvphorde_b_01_bem.m2", + text = "helm_robe_pvphorde_b_01_bem.m2", + }, + { + fileId = "141915", + value = "helm_robe_pvphorde_b_01_drf.m2", + text = "helm_robe_pvphorde_b_01_drf.m2", + }, + { + fileId = "141916", + value = "helm_robe_pvphorde_b_01_drm.m2", + text = "helm_robe_pvphorde_b_01_drm.m2", + }, + { + fileId = "141917", + value = "helm_robe_pvphorde_b_01_gof.m2", + text = "helm_robe_pvphorde_b_01_gof.m2", + }, + { + fileId = "141918", + value = "helm_robe_pvphorde_c_01_bef.m2", + text = "helm_robe_pvphorde_c_01_bef.m2", + }, + { + fileId = "141919", + value = "helm_robe_pvphorde_c_01_bem.m2", + text = "helm_robe_pvphorde_c_01_bem.m2", + }, + { + fileId = "141920", + value = "helm_robe_pvphorde_c_01_drf.m2", + text = "helm_robe_pvphorde_c_01_drf.m2", + }, + { + fileId = "141921", + value = "helm_robe_pvphorde_c_01_drm.m2", + text = "helm_robe_pvphorde_c_01_drm.m2", + }, + { + fileId = "141922", + value = "helm_robe_pvphorde_c_01_dwf.m2", + text = "helm_robe_pvphorde_c_01_dwf.m2", + }, + { + fileId = "141923", + value = "helm_robe_pvphorde_c_01_dwm.m2", + text = "helm_robe_pvphorde_c_01_dwm.m2", + }, + { + fileId = "141924", + value = "helm_robe_pvphorde_c_01_gnf.m2", + text = "helm_robe_pvphorde_c_01_gnf.m2", + }, + { + fileId = "141925", + value = "helm_robe_pvphorde_c_01_gnm.m2", + text = "helm_robe_pvphorde_c_01_gnm.m2", + }, + { + fileId = "141926", + value = "helm_robe_pvphorde_c_01_gom.m2", + text = "helm_robe_pvphorde_c_01_gom.m2", + }, + { + fileId = "141927", + value = "helm_robe_pvphorde_c_01_huf.m2", + text = "helm_robe_pvphorde_c_01_huf.m2", + }, + { + fileId = "141928", + value = "helm_robe_pvphorde_c_01_hum.m2", + text = "helm_robe_pvphorde_c_01_hum.m2", + }, + { + fileId = "141929", + value = "helm_robe_pvphorde_c_01_nif.m2", + text = "helm_robe_pvphorde_c_01_nif.m2", + }, + { + fileId = "141930", + value = "helm_robe_pvphorde_c_01_nim.m2", + text = "helm_robe_pvphorde_c_01_nim.m2", + }, + { + fileId = "141931", + value = "helm_robe_pvphorde_c_01_orf.m2", + text = "helm_robe_pvphorde_c_01_orf.m2", + }, + { + fileId = "141932", + value = "helm_robe_pvphorde_c_01_orm.m2", + text = "helm_robe_pvphorde_c_01_orm.m2", + }, + { + fileId = "141933", + value = "helm_robe_pvphorde_c_01_scf.m2", + text = "helm_robe_pvphorde_c_01_scf.m2", + }, + { + fileId = "141934", + value = "helm_robe_pvphorde_c_01_scm.m2", + text = "helm_robe_pvphorde_c_01_scm.m2", + }, + { + fileId = "141935", + value = "helm_robe_pvphorde_c_01_taf.m2", + text = "helm_robe_pvphorde_c_01_taf.m2", + }, + { + fileId = "141936", + value = "helm_robe_pvphorde_c_01_tam.m2", + text = "helm_robe_pvphorde_c_01_tam.m2", + }, + { + fileId = "141937", + value = "helm_robe_pvphorde_c_01_trf.m2", + text = "helm_robe_pvphorde_c_01_trf.m2", + }, + { + fileId = "141938", + value = "helm_robe_pvphorde_c_01_trm.m2", + text = "helm_robe_pvphorde_c_01_trm.m2", + }, + { + fileId = "141942", + value = "helm_robe_raid_a_01_bef.m2", + text = "helm_robe_raid_a_01_bef.m2", + }, + { + fileId = "141943", + value = "helm_robe_raid_a_01_bem.m2", + text = "helm_robe_raid_a_01_bem.m2", + }, + { + fileId = "141944", + value = "helm_robe_raid_a_01_drf.m2", + text = "helm_robe_raid_a_01_drf.m2", + }, + { + fileId = "141945", + value = "helm_robe_raid_a_01_drm.m2", + text = "helm_robe_raid_a_01_drm.m2", + }, + { + fileId = "141946", + value = "helm_robe_raid_a_01_gof.m2", + text = "helm_robe_raid_a_01_gof.m2", + }, + { + fileId = "141948", + value = "helm_robe_raidmage_a_01_bef.m2", + text = "helm_robe_raidmage_a_01_bef.m2", + }, + { + fileId = "141949", + value = "helm_robe_raidmage_a_01_bem.m2", + text = "helm_robe_raidmage_a_01_bem.m2", + }, + { + fileId = "141950", + value = "helm_robe_raidmage_a_01_drf.m2", + text = "helm_robe_raidmage_a_01_drf.m2", + }, + { + fileId = "141951", + value = "helm_robe_raidmage_a_01_drm.m2", + text = "helm_robe_raidmage_a_01_drm.m2", + }, + { + fileId = "141952", + value = "helm_robe_raidmage_a_01_dwf.m2", + text = "helm_robe_raidmage_a_01_dwf.m2", + }, + { + fileId = "141953", + value = "helm_robe_raidmage_a_01_dwm.m2", + text = "helm_robe_raidmage_a_01_dwm.m2", + }, + { + fileId = "141954", + value = "helm_robe_raidmage_a_01_gnf.m2", + text = "helm_robe_raidmage_a_01_gnf.m2", + }, + { + fileId = "141955", + value = "helm_robe_raidmage_a_01_gnm.m2", + text = "helm_robe_raidmage_a_01_gnm.m2", + }, + { + fileId = "141956", + value = "helm_robe_raidmage_a_01_gof.m2", + text = "helm_robe_raidmage_a_01_gof.m2", + }, + { + fileId = "141957", + value = "helm_robe_raidmage_a_01_gom.m2", + text = "helm_robe_raidmage_a_01_gom.m2", + }, + { + fileId = "141958", + value = "helm_robe_raidmage_a_01_huf.m2", + text = "helm_robe_raidmage_a_01_huf.m2", + }, + { + fileId = "141959", + value = "helm_robe_raidmage_a_01_hum.m2", + text = "helm_robe_raidmage_a_01_hum.m2", + }, + { + fileId = "141960", + value = "helm_robe_raidmage_a_01_nif.m2", + text = "helm_robe_raidmage_a_01_nif.m2", + }, + { + fileId = "141961", + value = "helm_robe_raidmage_a_01_nim.m2", + text = "helm_robe_raidmage_a_01_nim.m2", + }, + { + fileId = "141962", + value = "helm_robe_raidmage_a_01_orf.m2", + text = "helm_robe_raidmage_a_01_orf.m2", + }, + { + fileId = "141963", + value = "helm_robe_raidmage_a_01_orm.m2", + text = "helm_robe_raidmage_a_01_orm.m2", + }, + { + fileId = "141964", + value = "helm_robe_raidmage_a_01_scf.m2", + text = "helm_robe_raidmage_a_01_scf.m2", + }, + { + fileId = "141965", + value = "helm_robe_raidmage_a_01_scm.m2", + text = "helm_robe_raidmage_a_01_scm.m2", + }, + { + fileId = "141966", + value = "helm_robe_raidmage_a_01_taf.m2", + text = "helm_robe_raidmage_a_01_taf.m2", + }, + { + fileId = "141967", + value = "helm_robe_raidmage_a_01_tam.m2", + text = "helm_robe_raidmage_a_01_tam.m2", + }, + { + fileId = "141968", + value = "helm_robe_raidmage_a_01_trf.m2", + text = "helm_robe_raidmage_a_01_trf.m2", + }, + { + fileId = "141969", + value = "helm_robe_raidmage_a_01_trm.m2", + text = "helm_robe_raidmage_a_01_trm.m2", + }, + { + fileId = "141974", + value = "helm_robe_raidmage_b_01_bef.m2", + text = "helm_robe_raidmage_b_01_bef.m2", + }, + { + fileId = "141975", + value = "helm_robe_raidmage_b_01_bem.m2", + text = "helm_robe_raidmage_b_01_bem.m2", + }, + { + fileId = "141976", + value = "helm_robe_raidmage_b_01_drf.m2", + text = "helm_robe_raidmage_b_01_drf.m2", + }, + { + fileId = "141977", + value = "helm_robe_raidmage_b_01_drm.m2", + text = "helm_robe_raidmage_b_01_drm.m2", + }, + { + fileId = "141978", + value = "helm_robe_raidmage_b_01_dwf.m2", + text = "helm_robe_raidmage_b_01_dwf.m2", + }, + { + fileId = "141979", + value = "helm_robe_raidmage_b_01_dwm.m2", + text = "helm_robe_raidmage_b_01_dwm.m2", + }, + { + fileId = "141980", + value = "helm_robe_raidmage_b_01_gnf.m2", + text = "helm_robe_raidmage_b_01_gnf.m2", + }, + { + fileId = "141981", + value = "helm_robe_raidmage_b_01_gnm.m2", + text = "helm_robe_raidmage_b_01_gnm.m2", + }, + { + fileId = "141982", + value = "helm_robe_raidmage_b_01_gof.m2", + text = "helm_robe_raidmage_b_01_gof.m2", + }, + { + fileId = "141983", + value = "helm_robe_raidmage_b_01_gom.m2", + text = "helm_robe_raidmage_b_01_gom.m2", + }, + { + fileId = "141984", + value = "helm_robe_raidmage_b_01_huf.m2", + text = "helm_robe_raidmage_b_01_huf.m2", + }, + { + fileId = "141985", + value = "helm_robe_raidmage_b_01_hum.m2", + text = "helm_robe_raidmage_b_01_hum.m2", + }, + { + fileId = "141986", + value = "helm_robe_raidmage_b_01_nif.m2", + text = "helm_robe_raidmage_b_01_nif.m2", + }, + { + fileId = "141987", + value = "helm_robe_raidmage_b_01_nim.m2", + text = "helm_robe_raidmage_b_01_nim.m2", + }, + { + fileId = "141988", + value = "helm_robe_raidmage_b_01_orf.m2", + text = "helm_robe_raidmage_b_01_orf.m2", + }, + { + fileId = "141989", + value = "helm_robe_raidmage_b_01_orm.m2", + text = "helm_robe_raidmage_b_01_orm.m2", + }, + { + fileId = "141990", + value = "helm_robe_raidmage_b_01_scf.m2", + text = "helm_robe_raidmage_b_01_scf.m2", + }, + { + fileId = "141991", + value = "helm_robe_raidmage_b_01_scm.m2", + text = "helm_robe_raidmage_b_01_scm.m2", + }, + { + fileId = "141992", + value = "helm_robe_raidmage_b_01_taf.m2", + text = "helm_robe_raidmage_b_01_taf.m2", + }, + { + fileId = "141993", + value = "helm_robe_raidmage_b_01_tam.m2", + text = "helm_robe_raidmage_b_01_tam.m2", + }, + { + fileId = "141994", + value = "helm_robe_raidmage_b_01_trf.m2", + text = "helm_robe_raidmage_b_01_trf.m2", + }, + { + fileId = "141995", + value = "helm_robe_raidmage_b_01_trm.m2", + text = "helm_robe_raidmage_b_01_trm.m2", + }, + { + fileId = "142001", + value = "helm_robe_raidmage_c_01_bef.m2", + text = "helm_robe_raidmage_c_01_bef.m2", + }, + { + fileId = "142002", + value = "helm_robe_raidmage_c_01_bem.m2", + text = "helm_robe_raidmage_c_01_bem.m2", + }, + { + fileId = "142003", + value = "helm_robe_raidmage_c_01_drf.m2", + text = "helm_robe_raidmage_c_01_drf.m2", + }, + { + fileId = "142004", + value = "helm_robe_raidmage_c_01_drm.m2", + text = "helm_robe_raidmage_c_01_drm.m2", + }, + { + fileId = "142005", + value = "helm_robe_raidmage_c_01_dwf.m2", + text = "helm_robe_raidmage_c_01_dwf.m2", + }, + { + fileId = "142006", + value = "helm_robe_raidmage_c_01_dwm.m2", + text = "helm_robe_raidmage_c_01_dwm.m2", + }, + { + fileId = "142007", + value = "helm_robe_raidmage_c_01_gnf.m2", + text = "helm_robe_raidmage_c_01_gnf.m2", + }, + { + fileId = "142008", + value = "helm_robe_raidmage_c_01_gnm.m2", + text = "helm_robe_raidmage_c_01_gnm.m2", + }, + { + fileId = "142009", + value = "helm_robe_raidmage_c_01_gof.m2", + text = "helm_robe_raidmage_c_01_gof.m2", + }, + { + fileId = "142010", + value = "helm_robe_raidmage_c_01_gom.m2", + text = "helm_robe_raidmage_c_01_gom.m2", + }, + { + fileId = "142011", + value = "helm_robe_raidmage_c_01_huf.m2", + text = "helm_robe_raidmage_c_01_huf.m2", + }, + { + fileId = "142012", + value = "helm_robe_raidmage_c_01_hum.m2", + text = "helm_robe_raidmage_c_01_hum.m2", + }, + { + fileId = "142013", + value = "helm_robe_raidmage_c_01_nif.m2", + text = "helm_robe_raidmage_c_01_nif.m2", + }, + { + fileId = "142014", + value = "helm_robe_raidmage_c_01_nim.m2", + text = "helm_robe_raidmage_c_01_nim.m2", + }, + { + fileId = "142015", + value = "helm_robe_raidmage_c_01_orf.m2", + text = "helm_robe_raidmage_c_01_orf.m2", + }, + { + fileId = "142016", + value = "helm_robe_raidmage_c_01_orm.m2", + text = "helm_robe_raidmage_c_01_orm.m2", + }, + { + fileId = "142017", + value = "helm_robe_raidmage_c_01_scf.m2", + text = "helm_robe_raidmage_c_01_scf.m2", + }, + { + fileId = "142018", + value = "helm_robe_raidmage_c_01_scm.m2", + text = "helm_robe_raidmage_c_01_scm.m2", + }, + { + fileId = "142019", + value = "helm_robe_raidmage_c_01_taf.m2", + text = "helm_robe_raidmage_c_01_taf.m2", + }, + { + fileId = "142020", + value = "helm_robe_raidmage_c_01_tam.m2", + text = "helm_robe_raidmage_c_01_tam.m2", + }, + { + fileId = "142021", + value = "helm_robe_raidmage_c_01_trf.m2", + text = "helm_robe_raidmage_c_01_trf.m2", + }, + { + fileId = "142022", + value = "helm_robe_raidmage_c_01_trm.m2", + text = "helm_robe_raidmage_c_01_trm.m2", + }, + { + fileId = "142024", + value = "helm_robe_raidmage_d_01_bef.m2", + text = "helm_robe_raidmage_d_01_bef.m2", + }, + { + fileId = "142025", + value = "helm_robe_raidmage_d_01_bem.m2", + text = "helm_robe_raidmage_d_01_bem.m2", + }, + { + fileId = "142026", + value = "helm_robe_raidmage_d_01_drf.m2", + text = "helm_robe_raidmage_d_01_drf.m2", + }, + { + fileId = "142027", + value = "helm_robe_raidmage_d_01_drm.m2", + text = "helm_robe_raidmage_d_01_drm.m2", + }, + { + fileId = "142028", + value = "helm_robe_raidmage_d_01_dwf.m2", + text = "helm_robe_raidmage_d_01_dwf.m2", + }, + { + fileId = "142029", + value = "helm_robe_raidmage_d_01_dwm.m2", + text = "helm_robe_raidmage_d_01_dwm.m2", + }, + { + fileId = "142030", + value = "helm_robe_raidmage_d_01_gnf.m2", + text = "helm_robe_raidmage_d_01_gnf.m2", + }, + { + fileId = "142031", + value = "helm_robe_raidmage_d_01_gnm.m2", + text = "helm_robe_raidmage_d_01_gnm.m2", + }, + { + fileId = "142032", + value = "helm_robe_raidmage_d_01_gof.m2", + text = "helm_robe_raidmage_d_01_gof.m2", + }, + { + fileId = "142033", + value = "helm_robe_raidmage_d_01_gom.m2", + text = "helm_robe_raidmage_d_01_gom.m2", + }, + { + fileId = "142034", + value = "helm_robe_raidmage_d_01_huf.m2", + text = "helm_robe_raidmage_d_01_huf.m2", + }, + { + fileId = "142035", + value = "helm_robe_raidmage_d_01_hum.m2", + text = "helm_robe_raidmage_d_01_hum.m2", + }, + { + fileId = "142036", + value = "helm_robe_raidmage_d_01_nif.m2", + text = "helm_robe_raidmage_d_01_nif.m2", + }, + { + fileId = "142037", + value = "helm_robe_raidmage_d_01_nim.m2", + text = "helm_robe_raidmage_d_01_nim.m2", + }, + { + fileId = "142038", + value = "helm_robe_raidmage_d_01_orf.m2", + text = "helm_robe_raidmage_d_01_orf.m2", + }, + { + fileId = "142039", + value = "helm_robe_raidmage_d_01_orm.m2", + text = "helm_robe_raidmage_d_01_orm.m2", + }, + { + fileId = "142040", + value = "helm_robe_raidmage_d_01_scf.m2", + text = "helm_robe_raidmage_d_01_scf.m2", + }, + { + fileId = "142041", + value = "helm_robe_raidmage_d_01_scm.m2", + text = "helm_robe_raidmage_d_01_scm.m2", + }, + { + fileId = "142042", + value = "helm_robe_raidmage_d_01_taf.m2", + text = "helm_robe_raidmage_d_01_taf.m2", + }, + { + fileId = "142043", + value = "helm_robe_raidmage_d_01_tam.m2", + text = "helm_robe_raidmage_d_01_tam.m2", + }, + { + fileId = "142044", + value = "helm_robe_raidmage_d_01_trf.m2", + text = "helm_robe_raidmage_d_01_trf.m2", + }, + { + fileId = "142045", + value = "helm_robe_raidmage_d_01_trm.m2", + text = "helm_robe_raidmage_d_01_trm.m2", + }, + { + fileId = "142048", + value = "helm_robe_raidmage_e_01_bef.m2", + text = "helm_robe_raidmage_e_01_bef.m2", + }, + { + fileId = "142049", + value = "helm_robe_raidmage_e_01_bem.m2", + text = "helm_robe_raidmage_e_01_bem.m2", + }, + { + fileId = "142050", + value = "helm_robe_raidmage_e_01_drf.m2", + text = "helm_robe_raidmage_e_01_drf.m2", + }, + { + fileId = "142051", + value = "helm_robe_raidmage_e_01_drm.m2", + text = "helm_robe_raidmage_e_01_drm.m2", + }, + { + fileId = "142052", + value = "helm_robe_raidmage_e_01_dwf.m2", + text = "helm_robe_raidmage_e_01_dwf.m2", + }, + { + fileId = "142053", + value = "helm_robe_raidmage_e_01_dwm.m2", + text = "helm_robe_raidmage_e_01_dwm.m2", + }, + { + fileId = "142054", + value = "helm_robe_raidmage_e_01_gnf.m2", + text = "helm_robe_raidmage_e_01_gnf.m2", + }, + { + fileId = "142055", + value = "helm_robe_raidmage_e_01_gnm.m2", + text = "helm_robe_raidmage_e_01_gnm.m2", + }, + { + fileId = "142056", + value = "helm_robe_raidmage_e_01_gof.m2", + text = "helm_robe_raidmage_e_01_gof.m2", + }, + { + fileId = "142057", + value = "helm_robe_raidmage_e_01_gom.m2", + text = "helm_robe_raidmage_e_01_gom.m2", + }, + { + fileId = "142058", + value = "helm_robe_raidmage_e_01_huf.m2", + text = "helm_robe_raidmage_e_01_huf.m2", + }, + { + fileId = "142059", + value = "helm_robe_raidmage_e_01_hum.m2", + text = "helm_robe_raidmage_e_01_hum.m2", + }, + { + fileId = "142060", + value = "helm_robe_raidmage_e_01_nif.m2", + text = "helm_robe_raidmage_e_01_nif.m2", + }, + { + fileId = "142061", + value = "helm_robe_raidmage_e_01_nim.m2", + text = "helm_robe_raidmage_e_01_nim.m2", + }, + { + fileId = "142062", + value = "helm_robe_raidmage_e_01_orf.m2", + text = "helm_robe_raidmage_e_01_orf.m2", + }, + { + fileId = "142063", + value = "helm_robe_raidmage_e_01_orm.m2", + text = "helm_robe_raidmage_e_01_orm.m2", + }, + { + fileId = "142064", + value = "helm_robe_raidmage_e_01_scf.m2", + text = "helm_robe_raidmage_e_01_scf.m2", + }, + { + fileId = "142065", + value = "helm_robe_raidmage_e_01_scm.m2", + text = "helm_robe_raidmage_e_01_scm.m2", + }, + { + fileId = "142066", + value = "helm_robe_raidmage_e_01_taf.m2", + text = "helm_robe_raidmage_e_01_taf.m2", + }, + { + fileId = "142067", + value = "helm_robe_raidmage_e_01_tam.m2", + text = "helm_robe_raidmage_e_01_tam.m2", + }, + { + fileId = "142068", + value = "helm_robe_raidmage_e_01_trf.m2", + text = "helm_robe_raidmage_e_01_trf.m2", + }, + { + fileId = "142069", + value = "helm_robe_raidmage_e_01_trm.m2", + text = "helm_robe_raidmage_e_01_trm.m2", + }, + { + fileId = "142073", + value = "helm_robe_raidmage_f_01_bef.m2", + text = "helm_robe_raidmage_f_01_bef.m2", + }, + { + fileId = "142074", + value = "helm_robe_raidmage_f_01_bem.m2", + text = "helm_robe_raidmage_f_01_bem.m2", + }, + { + fileId = "142075", + value = "helm_robe_raidmage_f_01_drf.m2", + text = "helm_robe_raidmage_f_01_drf.m2", + }, + { + fileId = "142076", + value = "helm_robe_raidmage_f_01_drm.m2", + text = "helm_robe_raidmage_f_01_drm.m2", + }, + { + fileId = "142077", + value = "helm_robe_raidmage_f_01_dwf.m2", + text = "helm_robe_raidmage_f_01_dwf.m2", + }, + { + fileId = "142078", + value = "helm_robe_raidmage_f_01_dwm.m2", + text = "helm_robe_raidmage_f_01_dwm.m2", + }, + { + fileId = "142079", + value = "helm_robe_raidmage_f_01_gnf.m2", + text = "helm_robe_raidmage_f_01_gnf.m2", + }, + { + fileId = "142080", + value = "helm_robe_raidmage_f_01_gnm.m2", + text = "helm_robe_raidmage_f_01_gnm.m2", + }, + { + fileId = "142081", + value = "helm_robe_raidmage_f_01_gof.m2", + text = "helm_robe_raidmage_f_01_gof.m2", + }, + { + fileId = "142082", + value = "helm_robe_raidmage_f_01_gom.m2", + text = "helm_robe_raidmage_f_01_gom.m2", + }, + { + fileId = "142083", + value = "helm_robe_raidmage_f_01_huf.m2", + text = "helm_robe_raidmage_f_01_huf.m2", + }, + { + fileId = "142084", + value = "helm_robe_raidmage_f_01_hum.m2", + text = "helm_robe_raidmage_f_01_hum.m2", + }, + { + fileId = "142085", + value = "helm_robe_raidmage_f_01_nif.m2", + text = "helm_robe_raidmage_f_01_nif.m2", + }, + { + fileId = "142086", + value = "helm_robe_raidmage_f_01_nim.m2", + text = "helm_robe_raidmage_f_01_nim.m2", + }, + { + fileId = "142087", + value = "helm_robe_raidmage_f_01_orf.m2", + text = "helm_robe_raidmage_f_01_orf.m2", + }, + { + fileId = "142088", + value = "helm_robe_raidmage_f_01_orm.m2", + text = "helm_robe_raidmage_f_01_orm.m2", + }, + { + fileId = "142089", + value = "helm_robe_raidmage_f_01_scf.m2", + text = "helm_robe_raidmage_f_01_scf.m2", + }, + { + fileId = "142090", + value = "helm_robe_raidmage_f_01_scm.m2", + text = "helm_robe_raidmage_f_01_scm.m2", + }, + { + fileId = "142091", + value = "helm_robe_raidmage_f_01_taf.m2", + text = "helm_robe_raidmage_f_01_taf.m2", + }, + { + fileId = "142092", + value = "helm_robe_raidmage_f_01_tam.m2", + text = "helm_robe_raidmage_f_01_tam.m2", + }, + { + fileId = "142093", + value = "helm_robe_raidmage_f_01_trf.m2", + text = "helm_robe_raidmage_f_01_trf.m2", + }, + { + fileId = "142094", + value = "helm_robe_raidmage_f_01_trm.m2", + text = "helm_robe_raidmage_f_01_trm.m2", + }, + { + fileId = "142126", + value = "helm_robe_raidpriest_a_01_bef.m2", + text = "helm_robe_raidpriest_a_01_bef.m2", + }, + { + fileId = "142127", + value = "helm_robe_raidpriest_a_01_bem.m2", + text = "helm_robe_raidpriest_a_01_bem.m2", + }, + { + fileId = "142128", + value = "helm_robe_raidpriest_a_01_drf.m2", + text = "helm_robe_raidpriest_a_01_drf.m2", + }, + { + fileId = "142129", + value = "helm_robe_raidpriest_a_01_drm.m2", + text = "helm_robe_raidpriest_a_01_drm.m2", + }, + { + fileId = "142130", + value = "helm_robe_raidpriest_a_01_dwf.m2", + text = "helm_robe_raidpriest_a_01_dwf.m2", + }, + { + fileId = "142131", + value = "helm_robe_raidpriest_a_01_dwm.m2", + text = "helm_robe_raidpriest_a_01_dwm.m2", + }, + { + fileId = "142132", + value = "helm_robe_raidpriest_a_01_gnf.m2", + text = "helm_robe_raidpriest_a_01_gnf.m2", + }, + { + fileId = "142133", + value = "helm_robe_raidpriest_a_01_gnm.m2", + text = "helm_robe_raidpriest_a_01_gnm.m2", + }, + { + fileId = "142134", + value = "helm_robe_raidpriest_a_01_gof.m2", + text = "helm_robe_raidpriest_a_01_gof.m2", + }, + { + fileId = "142135", + value = "helm_robe_raidpriest_a_01_gom.m2", + text = "helm_robe_raidpriest_a_01_gom.m2", + }, + { + fileId = "142136", + value = "helm_robe_raidpriest_a_01_huf.m2", + text = "helm_robe_raidpriest_a_01_huf.m2", + }, + { + fileId = "142137", + value = "helm_robe_raidpriest_a_01_hum.m2", + text = "helm_robe_raidpriest_a_01_hum.m2", + }, + { + fileId = "142138", + value = "helm_robe_raidpriest_a_01_nif.m2", + text = "helm_robe_raidpriest_a_01_nif.m2", + }, + { + fileId = "142139", + value = "helm_robe_raidpriest_a_01_nim.m2", + text = "helm_robe_raidpriest_a_01_nim.m2", + }, + { + fileId = "142140", + value = "helm_robe_raidpriest_a_01_orf.m2", + text = "helm_robe_raidpriest_a_01_orf.m2", + }, + { + fileId = "142141", + value = "helm_robe_raidpriest_a_01_orm.m2", + text = "helm_robe_raidpriest_a_01_orm.m2", + }, + { + fileId = "142142", + value = "helm_robe_raidpriest_a_01_scf.m2", + text = "helm_robe_raidpriest_a_01_scf.m2", + }, + { + fileId = "142143", + value = "helm_robe_raidpriest_a_01_scm.m2", + text = "helm_robe_raidpriest_a_01_scm.m2", + }, + { + fileId = "142144", + value = "helm_robe_raidpriest_a_01_taf.m2", + text = "helm_robe_raidpriest_a_01_taf.m2", + }, + { + fileId = "142145", + value = "helm_robe_raidpriest_a_01_tam.m2", + text = "helm_robe_raidpriest_a_01_tam.m2", + }, + { + fileId = "142146", + value = "helm_robe_raidpriest_a_01_trf.m2", + text = "helm_robe_raidpriest_a_01_trf.m2", + }, + { + fileId = "142147", + value = "helm_robe_raidpriest_a_01_trm.m2", + text = "helm_robe_raidpriest_a_01_trm.m2", + }, + { + fileId = "142153", + value = "helm_robe_raidpriest_b_01_bef.m2", + text = "helm_robe_raidpriest_b_01_bef.m2", + }, + { + fileId = "142154", + value = "helm_robe_raidpriest_b_01_bem.m2", + text = "helm_robe_raidpriest_b_01_bem.m2", + }, + { + fileId = "142155", + value = "helm_robe_raidpriest_b_01_drf.m2", + text = "helm_robe_raidpriest_b_01_drf.m2", + }, + { + fileId = "142156", + value = "helm_robe_raidpriest_b_01_drm.m2", + text = "helm_robe_raidpriest_b_01_drm.m2", + }, + { + fileId = "142157", + value = "helm_robe_raidpriest_b_01_dwf.m2", + text = "helm_robe_raidpriest_b_01_dwf.m2", + }, + { + fileId = "142158", + value = "helm_robe_raidpriest_b_01_dwm.m2", + text = "helm_robe_raidpriest_b_01_dwm.m2", + }, + { + fileId = "142159", + value = "helm_robe_raidpriest_b_01_gnf.m2", + text = "helm_robe_raidpriest_b_01_gnf.m2", + }, + { + fileId = "142160", + value = "helm_robe_raidpriest_b_01_gnm.m2", + text = "helm_robe_raidpriest_b_01_gnm.m2", + }, + { + fileId = "142161", + value = "helm_robe_raidpriest_b_01_gof.m2", + text = "helm_robe_raidpriest_b_01_gof.m2", + }, + { + fileId = "142162", + value = "helm_robe_raidpriest_b_01_gom.m2", + text = "helm_robe_raidpriest_b_01_gom.m2", + }, + { + fileId = "142163", + value = "helm_robe_raidpriest_b_01_huf.m2", + text = "helm_robe_raidpriest_b_01_huf.m2", + }, + { + fileId = "142164", + value = "helm_robe_raidpriest_b_01_hum.m2", + text = "helm_robe_raidpriest_b_01_hum.m2", + }, + { + fileId = "142165", + value = "helm_robe_raidpriest_b_01_nif.m2", + text = "helm_robe_raidpriest_b_01_nif.m2", + }, + { + fileId = "142166", + value = "helm_robe_raidpriest_b_01_nim.m2", + text = "helm_robe_raidpriest_b_01_nim.m2", + }, + { + fileId = "142167", + value = "helm_robe_raidpriest_b_01_orf.m2", + text = "helm_robe_raidpriest_b_01_orf.m2", + }, + { + fileId = "142168", + value = "helm_robe_raidpriest_b_01_orm.m2", + text = "helm_robe_raidpriest_b_01_orm.m2", + }, + { + fileId = "142169", + value = "helm_robe_raidpriest_b_01_scf.m2", + text = "helm_robe_raidpriest_b_01_scf.m2", + }, + { + fileId = "142170", + value = "helm_robe_raidpriest_b_01_scm.m2", + text = "helm_robe_raidpriest_b_01_scm.m2", + }, + { + fileId = "142171", + value = "helm_robe_raidpriest_b_01_taf.m2", + text = "helm_robe_raidpriest_b_01_taf.m2", + }, + { + fileId = "142172", + value = "helm_robe_raidpriest_b_01_tam.m2", + text = "helm_robe_raidpriest_b_01_tam.m2", + }, + { + fileId = "142173", + value = "helm_robe_raidpriest_b_01_trf.m2", + text = "helm_robe_raidpriest_b_01_trf.m2", + }, + { + fileId = "142174", + value = "helm_robe_raidpriest_b_01_trm.m2", + text = "helm_robe_raidpriest_b_01_trm.m2", + }, + { + fileId = "142178", + value = "helm_robe_raidpriest_c_01_bef.m2", + text = "helm_robe_raidpriest_c_01_bef.m2", + }, + { + fileId = "142179", + value = "helm_robe_raidpriest_c_01_bem.m2", + text = "helm_robe_raidpriest_c_01_bem.m2", + }, + { + fileId = "142180", + value = "helm_robe_raidpriest_c_01_drf.m2", + text = "helm_robe_raidpriest_c_01_drf.m2", + }, + { + fileId = "142181", + value = "helm_robe_raidpriest_c_01_drm.m2", + text = "helm_robe_raidpriest_c_01_drm.m2", + }, + { + fileId = "142182", + value = "helm_robe_raidpriest_c_01_dwf.m2", + text = "helm_robe_raidpriest_c_01_dwf.m2", + }, + { + fileId = "142183", + value = "helm_robe_raidpriest_c_01_dwm.m2", + text = "helm_robe_raidpriest_c_01_dwm.m2", + }, + { + fileId = "142184", + value = "helm_robe_raidpriest_c_01_gnf.m2", + text = "helm_robe_raidpriest_c_01_gnf.m2", + }, + { + fileId = "142185", + value = "helm_robe_raidpriest_c_01_gnm.m2", + text = "helm_robe_raidpriest_c_01_gnm.m2", + }, + { + fileId = "142186", + value = "helm_robe_raidpriest_c_01_gof.m2", + text = "helm_robe_raidpriest_c_01_gof.m2", + }, + { + fileId = "142187", + value = "helm_robe_raidpriest_c_01_gom.m2", + text = "helm_robe_raidpriest_c_01_gom.m2", + }, + { + fileId = "142188", + value = "helm_robe_raidpriest_c_01_huf.m2", + text = "helm_robe_raidpriest_c_01_huf.m2", + }, + { + fileId = "142189", + value = "helm_robe_raidpriest_c_01_hum.m2", + text = "helm_robe_raidpriest_c_01_hum.m2", + }, + { + fileId = "142190", + value = "helm_robe_raidpriest_c_01_nif.m2", + text = "helm_robe_raidpriest_c_01_nif.m2", + }, + { + fileId = "142191", + value = "helm_robe_raidpriest_c_01_nim.m2", + text = "helm_robe_raidpriest_c_01_nim.m2", + }, + { + fileId = "142192", + value = "helm_robe_raidpriest_c_01_orf.m2", + text = "helm_robe_raidpriest_c_01_orf.m2", + }, + { + fileId = "142193", + value = "helm_robe_raidpriest_c_01_orm.m2", + text = "helm_robe_raidpriest_c_01_orm.m2", + }, + { + fileId = "142194", + value = "helm_robe_raidpriest_c_01_scf.m2", + text = "helm_robe_raidpriest_c_01_scf.m2", + }, + { + fileId = "142195", + value = "helm_robe_raidpriest_c_01_scm.m2", + text = "helm_robe_raidpriest_c_01_scm.m2", + }, + { + fileId = "142196", + value = "helm_robe_raidpriest_c_01_taf.m2", + text = "helm_robe_raidpriest_c_01_taf.m2", + }, + { + fileId = "142197", + value = "helm_robe_raidpriest_c_01_tam.m2", + text = "helm_robe_raidpriest_c_01_tam.m2", + }, + { + fileId = "142198", + value = "helm_robe_raidpriest_c_01_trf.m2", + text = "helm_robe_raidpriest_c_01_trf.m2", + }, + { + fileId = "142199", + value = "helm_robe_raidpriest_c_01_trm.m2", + text = "helm_robe_raidpriest_c_01_trm.m2", + }, + { + fileId = "142201", + value = "helm_robe_raidpriest_d_01_bef.m2", + text = "helm_robe_raidpriest_d_01_bef.m2", + }, + { + fileId = "142202", + value = "helm_robe_raidpriest_d_01_bem.m2", + text = "helm_robe_raidpriest_d_01_bem.m2", + }, + { + fileId = "142203", + value = "helm_robe_raidpriest_d_01_drf.m2", + text = "helm_robe_raidpriest_d_01_drf.m2", + }, + { + fileId = "142204", + value = "helm_robe_raidpriest_d_01_drm.m2", + text = "helm_robe_raidpriest_d_01_drm.m2", + }, + { + fileId = "142205", + value = "helm_robe_raidpriest_d_01_dwf.m2", + text = "helm_robe_raidpriest_d_01_dwf.m2", + }, + { + fileId = "142206", + value = "helm_robe_raidpriest_d_01_dwm.m2", + text = "helm_robe_raidpriest_d_01_dwm.m2", + }, + { + fileId = "142207", + value = "helm_robe_raidpriest_d_01_gnf.m2", + text = "helm_robe_raidpriest_d_01_gnf.m2", + }, + { + fileId = "142208", + value = "helm_robe_raidpriest_d_01_gnm.m2", + text = "helm_robe_raidpriest_d_01_gnm.m2", + }, + { + fileId = "142209", + value = "helm_robe_raidpriest_d_01_gof.m2", + text = "helm_robe_raidpriest_d_01_gof.m2", + }, + { + fileId = "142210", + value = "helm_robe_raidpriest_d_01_gom.m2", + text = "helm_robe_raidpriest_d_01_gom.m2", + }, + { + fileId = "142211", + value = "helm_robe_raidpriest_d_01_huf.m2", + text = "helm_robe_raidpriest_d_01_huf.m2", + }, + { + fileId = "142212", + value = "helm_robe_raidpriest_d_01_hum.m2", + text = "helm_robe_raidpriest_d_01_hum.m2", + }, + { + fileId = "142213", + value = "helm_robe_raidpriest_d_01_nif.m2", + text = "helm_robe_raidpriest_d_01_nif.m2", + }, + { + fileId = "142214", + value = "helm_robe_raidpriest_d_01_nim.m2", + text = "helm_robe_raidpriest_d_01_nim.m2", + }, + { + fileId = "142215", + value = "helm_robe_raidpriest_d_01_orf.m2", + text = "helm_robe_raidpriest_d_01_orf.m2", + }, + { + fileId = "142216", + value = "helm_robe_raidpriest_d_01_orm.m2", + text = "helm_robe_raidpriest_d_01_orm.m2", + }, + { + fileId = "142217", + value = "helm_robe_raidpriest_d_01_scf.m2", + text = "helm_robe_raidpriest_d_01_scf.m2", + }, + { + fileId = "142218", + value = "helm_robe_raidpriest_d_01_scm.m2", + text = "helm_robe_raidpriest_d_01_scm.m2", + }, + { + fileId = "142219", + value = "helm_robe_raidpriest_d_01_taf.m2", + text = "helm_robe_raidpriest_d_01_taf.m2", + }, + { + fileId = "142220", + value = "helm_robe_raidpriest_d_01_tam.m2", + text = "helm_robe_raidpriest_d_01_tam.m2", + }, + { + fileId = "142221", + value = "helm_robe_raidpriest_d_01_trf.m2", + text = "helm_robe_raidpriest_d_01_trf.m2", + }, + { + fileId = "142222", + value = "helm_robe_raidpriest_d_01_trm.m2", + text = "helm_robe_raidpriest_d_01_trm.m2", + }, + { + fileId = "142224", + value = "helm_robe_raidpriest_e_01_bef.m2", + text = "helm_robe_raidpriest_e_01_bef.m2", + }, + { + fileId = "142225", + value = "helm_robe_raidpriest_e_01_bem.m2", + text = "helm_robe_raidpriest_e_01_bem.m2", + }, + { + fileId = "142226", + value = "helm_robe_raidpriest_e_01_drf.m2", + text = "helm_robe_raidpriest_e_01_drf.m2", + }, + { + fileId = "142227", + value = "helm_robe_raidpriest_e_01_drm.m2", + text = "helm_robe_raidpriest_e_01_drm.m2", + }, + { + fileId = "142228", + value = "helm_robe_raidpriest_e_01_dwf.m2", + text = "helm_robe_raidpriest_e_01_dwf.m2", + }, + { + fileId = "142229", + value = "helm_robe_raidpriest_e_01_dwm.m2", + text = "helm_robe_raidpriest_e_01_dwm.m2", + }, + { + fileId = "142230", + value = "helm_robe_raidpriest_e_01_gnf.m2", + text = "helm_robe_raidpriest_e_01_gnf.m2", + }, + { + fileId = "142231", + value = "helm_robe_raidpriest_e_01_gnm.m2", + text = "helm_robe_raidpriest_e_01_gnm.m2", + }, + { + fileId = "142232", + value = "helm_robe_raidpriest_e_01_huf.m2", + text = "helm_robe_raidpriest_e_01_huf.m2", + }, + { + fileId = "142233", + value = "helm_robe_raidpriest_e_01_hum.m2", + text = "helm_robe_raidpriest_e_01_hum.m2", + }, + { + fileId = "142234", + value = "helm_robe_raidpriest_e_01_nif.m2", + text = "helm_robe_raidpriest_e_01_nif.m2", + }, + { + fileId = "142235", + value = "helm_robe_raidpriest_e_01_nim.m2", + text = "helm_robe_raidpriest_e_01_nim.m2", + }, + { + fileId = "142236", + value = "helm_robe_raidpriest_e_01_orf.m2", + text = "helm_robe_raidpriest_e_01_orf.m2", + }, + { + fileId = "142237", + value = "helm_robe_raidpriest_e_01_orm.m2", + text = "helm_robe_raidpriest_e_01_orm.m2", + }, + { + fileId = "142238", + value = "helm_robe_raidpriest_e_01_scf.m2", + text = "helm_robe_raidpriest_e_01_scf.m2", + }, + { + fileId = "142239", + value = "helm_robe_raidpriest_e_01_scm.m2", + text = "helm_robe_raidpriest_e_01_scm.m2", + }, + { + fileId = "142240", + value = "helm_robe_raidpriest_e_01_taf.m2", + text = "helm_robe_raidpriest_e_01_taf.m2", + }, + { + fileId = "142241", + value = "helm_robe_raidpriest_e_01_tam.m2", + text = "helm_robe_raidpriest_e_01_tam.m2", + }, + { + fileId = "142242", + value = "helm_robe_raidpriest_e_01_trf.m2", + text = "helm_robe_raidpriest_e_01_trf.m2", + }, + { + fileId = "142243", + value = "helm_robe_raidpriest_e_01_trm.m2", + text = "helm_robe_raidpriest_e_01_trm.m2", + }, + { + fileId = "142246", + value = "helm_robe_raidpriest_f_01_bef.m2", + text = "helm_robe_raidpriest_f_01_bef.m2", + }, + { + fileId = "142247", + value = "helm_robe_raidpriest_f_01_bem.m2", + text = "helm_robe_raidpriest_f_01_bem.m2", + }, + { + fileId = "142248", + value = "helm_robe_raidpriest_f_01_drf.m2", + text = "helm_robe_raidpriest_f_01_drf.m2", + }, + { + fileId = "142249", + value = "helm_robe_raidpriest_f_01_drm.m2", + text = "helm_robe_raidpriest_f_01_drm.m2", + }, + { + fileId = "142250", + value = "helm_robe_raidpriest_f_01_dwf.m2", + text = "helm_robe_raidpriest_f_01_dwf.m2", + }, + { + fileId = "142251", + value = "helm_robe_raidpriest_f_01_dwm.m2", + text = "helm_robe_raidpriest_f_01_dwm.m2", + }, + { + fileId = "142252", + value = "helm_robe_raidpriest_f_01_gnf.m2", + text = "helm_robe_raidpriest_f_01_gnf.m2", + }, + { + fileId = "142253", + value = "helm_robe_raidpriest_f_01_gnm.m2", + text = "helm_robe_raidpriest_f_01_gnm.m2", + }, + { + fileId = "142254", + value = "helm_robe_raidpriest_f_01_gom.m2", + text = "helm_robe_raidpriest_f_01_gom.m2", + }, + { + fileId = "142255", + value = "helm_robe_raidpriest_f_01_huf.m2", + text = "helm_robe_raidpriest_f_01_huf.m2", + }, + { + fileId = "142256", + value = "helm_robe_raidpriest_f_01_hum.m2", + text = "helm_robe_raidpriest_f_01_hum.m2", + }, + { + fileId = "142257", + value = "helm_robe_raidpriest_f_01_nif.m2", + text = "helm_robe_raidpriest_f_01_nif.m2", + }, + { + fileId = "142258", + value = "helm_robe_raidpriest_f_01_nim.m2", + text = "helm_robe_raidpriest_f_01_nim.m2", + }, + { + fileId = "142259", + value = "helm_robe_raidpriest_f_01_orf.m2", + text = "helm_robe_raidpriest_f_01_orf.m2", + }, + { + fileId = "142260", + value = "helm_robe_raidpriest_f_01_orm.m2", + text = "helm_robe_raidpriest_f_01_orm.m2", + }, + { + fileId = "142261", + value = "helm_robe_raidpriest_f_01_scf.m2", + text = "helm_robe_raidpriest_f_01_scf.m2", + }, + { + fileId = "142262", + value = "helm_robe_raidpriest_f_01_scm.m2", + text = "helm_robe_raidpriest_f_01_scm.m2", + }, + { + fileId = "142263", + value = "helm_robe_raidpriest_f_01_taf.m2", + text = "helm_robe_raidpriest_f_01_taf.m2", + }, + { + fileId = "142264", + value = "helm_robe_raidpriest_f_01_tam.m2", + text = "helm_robe_raidpriest_f_01_tam.m2", + }, + { + fileId = "142265", + value = "helm_robe_raidpriest_f_01_trf.m2", + text = "helm_robe_raidpriest_f_01_trf.m2", + }, + { + fileId = "142266", + value = "helm_robe_raidpriest_f_01_trm.m2", + text = "helm_robe_raidpriest_f_01_trm.m2", + }, + { + fileId = "142300", + value = "helm_robe_raidshaman_c_01_bef.m2", + text = "helm_robe_raidshaman_c_01_bef.m2", + }, + { + fileId = "142301", + value = "helm_robe_raidshaman_c_01_bem.m2", + text = "helm_robe_raidshaman_c_01_bem.m2", + }, + { + fileId = "142302", + value = "helm_robe_raidshaman_c_01_drf.m2", + text = "helm_robe_raidshaman_c_01_drf.m2", + }, + { + fileId = "142303", + value = "helm_robe_raidshaman_c_01_drm.m2", + text = "helm_robe_raidshaman_c_01_drm.m2", + }, + { + fileId = "142304", + value = "helm_robe_raidshaman_c_01_dwf.m2", + text = "helm_robe_raidshaman_c_01_dwf.m2", + }, + { + fileId = "142305", + value = "helm_robe_raidshaman_c_01_dwm.m2", + text = "helm_robe_raidshaman_c_01_dwm.m2", + }, + { + fileId = "142306", + value = "helm_robe_raidshaman_c_01_gnf.m2", + text = "helm_robe_raidshaman_c_01_gnf.m2", + }, + { + fileId = "142307", + value = "helm_robe_raidshaman_c_01_gnm.m2", + text = "helm_robe_raidshaman_c_01_gnm.m2", + }, + { + fileId = "142308", + value = "helm_robe_raidshaman_c_01_gof.m2", + text = "helm_robe_raidshaman_c_01_gof.m2", + }, + { + fileId = "142309", + value = "helm_robe_raidshaman_c_01_gom.m2", + text = "helm_robe_raidshaman_c_01_gom.m2", + }, + { + fileId = "142310", + value = "helm_robe_raidshaman_c_01_huf.m2", + text = "helm_robe_raidshaman_c_01_huf.m2", + }, + { + fileId = "142311", + value = "helm_robe_raidshaman_c_01_hum.m2", + text = "helm_robe_raidshaman_c_01_hum.m2", + }, + { + fileId = "142312", + value = "helm_robe_raidshaman_c_01_nif.m2", + text = "helm_robe_raidshaman_c_01_nif.m2", + }, + { + fileId = "142313", + value = "helm_robe_raidshaman_c_01_nim.m2", + text = "helm_robe_raidshaman_c_01_nim.m2", + }, + { + fileId = "142314", + value = "helm_robe_raidshaman_c_01_orf.m2", + text = "helm_robe_raidshaman_c_01_orf.m2", + }, + { + fileId = "142315", + value = "helm_robe_raidshaman_c_01_orm.m2", + text = "helm_robe_raidshaman_c_01_orm.m2", + }, + { + fileId = "142316", + value = "helm_robe_raidshaman_c_01_scf.m2", + text = "helm_robe_raidshaman_c_01_scf.m2", + }, + { + fileId = "142317", + value = "helm_robe_raidshaman_c_01_scm.m2", + text = "helm_robe_raidshaman_c_01_scm.m2", + }, + { + fileId = "142318", + value = "helm_robe_raidshaman_c_01_taf.m2", + text = "helm_robe_raidshaman_c_01_taf.m2", + }, + { + fileId = "142319", + value = "helm_robe_raidshaman_c_01_tam.m2", + text = "helm_robe_raidshaman_c_01_tam.m2", + }, + { + fileId = "142320", + value = "helm_robe_raidshaman_c_01_trf.m2", + text = "helm_robe_raidshaman_c_01_trf.m2", + }, + { + fileId = "142321", + value = "helm_robe_raidshaman_c_01_trm.m2", + text = "helm_robe_raidshaman_c_01_trm.m2", + }, + { + fileId = "142322", + value = "helm_robe_raidwarlock_a_01_bef.m2", + text = "helm_robe_raidwarlock_a_01_bef.m2", + }, + { + fileId = "142323", + value = "helm_robe_raidwarlock_a_01_bem.m2", + text = "helm_robe_raidwarlock_a_01_bem.m2", + }, + { + fileId = "142324", + value = "helm_robe_raidwarlock_a_01_drf.m2", + text = "helm_robe_raidwarlock_a_01_drf.m2", + }, + { + fileId = "142325", + value = "helm_robe_raidwarlock_a_01_drm.m2", + text = "helm_robe_raidwarlock_a_01_drm.m2", + }, + { + fileId = "142326", + value = "helm_robe_raidwarlock_a_01_dwf.m2", + text = "helm_robe_raidwarlock_a_01_dwf.m2", + }, + { + fileId = "142327", + value = "helm_robe_raidwarlock_a_01_dwm.m2", + text = "helm_robe_raidwarlock_a_01_dwm.m2", + }, + { + fileId = "142328", + value = "helm_robe_raidwarlock_a_01_gnf.m2", + text = "helm_robe_raidwarlock_a_01_gnf.m2", + }, + { + fileId = "142329", + value = "helm_robe_raidwarlock_a_01_gnm.m2", + text = "helm_robe_raidwarlock_a_01_gnm.m2", + }, + { + fileId = "142330", + value = "helm_robe_raidwarlock_a_01_gof.m2", + text = "helm_robe_raidwarlock_a_01_gof.m2", + }, + { + fileId = "142331", + value = "helm_robe_raidwarlock_a_01_gom.m2", + text = "helm_robe_raidwarlock_a_01_gom.m2", + }, + { + fileId = "142332", + value = "helm_robe_raidwarlock_a_01_huf.m2", + text = "helm_robe_raidwarlock_a_01_huf.m2", + }, + { + fileId = "142333", + value = "helm_robe_raidwarlock_a_01_hum.m2", + text = "helm_robe_raidwarlock_a_01_hum.m2", + }, + { + fileId = "142334", + value = "helm_robe_raidwarlock_a_01_nif.m2", + text = "helm_robe_raidwarlock_a_01_nif.m2", + }, + { + fileId = "142335", + value = "helm_robe_raidwarlock_a_01_nim.m2", + text = "helm_robe_raidwarlock_a_01_nim.m2", + }, + { + fileId = "142336", + value = "helm_robe_raidwarlock_a_01_orf.m2", + text = "helm_robe_raidwarlock_a_01_orf.m2", + }, + { + fileId = "142337", + value = "helm_robe_raidwarlock_a_01_orm.m2", + text = "helm_robe_raidwarlock_a_01_orm.m2", + }, + { + fileId = "142338", + value = "helm_robe_raidwarlock_a_01_scf.m2", + text = "helm_robe_raidwarlock_a_01_scf.m2", + }, + { + fileId = "142339", + value = "helm_robe_raidwarlock_a_01_scm.m2", + text = "helm_robe_raidwarlock_a_01_scm.m2", + }, + { + fileId = "142340", + value = "helm_robe_raidwarlock_a_01_taf.m2", + text = "helm_robe_raidwarlock_a_01_taf.m2", + }, + { + fileId = "142341", + value = "helm_robe_raidwarlock_a_01_tam.m2", + text = "helm_robe_raidwarlock_a_01_tam.m2", + }, + { + fileId = "142342", + value = "helm_robe_raidwarlock_a_01_trf.m2", + text = "helm_robe_raidwarlock_a_01_trf.m2", + }, + { + fileId = "142343", + value = "helm_robe_raidwarlock_a_01_trm.m2", + text = "helm_robe_raidwarlock_a_01_trm.m2", + }, + { + fileId = "142349", + value = "helm_robe_raidwarlock_b_01_bef.m2", + text = "helm_robe_raidwarlock_b_01_bef.m2", + }, + { + fileId = "142350", + value = "helm_robe_raidwarlock_b_01_bem.m2", + text = "helm_robe_raidwarlock_b_01_bem.m2", + }, + { + fileId = "142351", + value = "helm_robe_raidwarlock_b_01_drf.m2", + text = "helm_robe_raidwarlock_b_01_drf.m2", + }, + { + fileId = "142352", + value = "helm_robe_raidwarlock_b_01_drm.m2", + text = "helm_robe_raidwarlock_b_01_drm.m2", + }, + { + fileId = "142353", + value = "helm_robe_raidwarlock_b_01_dwf.m2", + text = "helm_robe_raidwarlock_b_01_dwf.m2", + }, + { + fileId = "142354", + value = "helm_robe_raidwarlock_b_01_dwm.m2", + text = "helm_robe_raidwarlock_b_01_dwm.m2", + }, + { + fileId = "142355", + value = "helm_robe_raidwarlock_b_01_gnf.m2", + text = "helm_robe_raidwarlock_b_01_gnf.m2", + }, + { + fileId = "142356", + value = "helm_robe_raidwarlock_b_01_gnm.m2", + text = "helm_robe_raidwarlock_b_01_gnm.m2", + }, + { + fileId = "142357", + value = "helm_robe_raidwarlock_b_01_gof.m2", + text = "helm_robe_raidwarlock_b_01_gof.m2", + }, + { + fileId = "142358", + value = "helm_robe_raidwarlock_b_01_gom.m2", + text = "helm_robe_raidwarlock_b_01_gom.m2", + }, + { + fileId = "142359", + value = "helm_robe_raidwarlock_b_01_huf.m2", + text = "helm_robe_raidwarlock_b_01_huf.m2", + }, + { + fileId = "142360", + value = "helm_robe_raidwarlock_b_01_hum.m2", + text = "helm_robe_raidwarlock_b_01_hum.m2", + }, + { + fileId = "142361", + value = "helm_robe_raidwarlock_b_01_nif.m2", + text = "helm_robe_raidwarlock_b_01_nif.m2", + }, + { + fileId = "142362", + value = "helm_robe_raidwarlock_b_01_nim.m2", + text = "helm_robe_raidwarlock_b_01_nim.m2", + }, + { + fileId = "142363", + value = "helm_robe_raidwarlock_b_01_orf.m2", + text = "helm_robe_raidwarlock_b_01_orf.m2", + }, + { + fileId = "142364", + value = "helm_robe_raidwarlock_b_01_orm.m2", + text = "helm_robe_raidwarlock_b_01_orm.m2", + }, + { + fileId = "142365", + value = "helm_robe_raidwarlock_b_01_scf.m2", + text = "helm_robe_raidwarlock_b_01_scf.m2", + }, + { + fileId = "142366", + value = "helm_robe_raidwarlock_b_01_scm.m2", + text = "helm_robe_raidwarlock_b_01_scm.m2", + }, + { + fileId = "142367", + value = "helm_robe_raidwarlock_b_01_taf.m2", + text = "helm_robe_raidwarlock_b_01_taf.m2", + }, + { + fileId = "142368", + value = "helm_robe_raidwarlock_b_01_tam.m2", + text = "helm_robe_raidwarlock_b_01_tam.m2", + }, + { + fileId = "142369", + value = "helm_robe_raidwarlock_b_01_trf.m2", + text = "helm_robe_raidwarlock_b_01_trf.m2", + }, + { + fileId = "142370", + value = "helm_robe_raidwarlock_b_01_trm.m2", + text = "helm_robe_raidwarlock_b_01_trm.m2", + }, + { + fileId = "142375", + value = "helm_robe_raidwarlock_c_01_bef.m2", + text = "helm_robe_raidwarlock_c_01_bef.m2", + }, + { + fileId = "142376", + value = "helm_robe_raidwarlock_c_01_bem.m2", + text = "helm_robe_raidwarlock_c_01_bem.m2", + }, + { + fileId = "142377", + value = "helm_robe_raidwarlock_c_01_drf.m2", + text = "helm_robe_raidwarlock_c_01_drf.m2", + }, + { + fileId = "142378", + value = "helm_robe_raidwarlock_c_01_drm.m2", + text = "helm_robe_raidwarlock_c_01_drm.m2", + }, + { + fileId = "142379", + value = "helm_robe_raidwarlock_c_01_dwf.m2", + text = "helm_robe_raidwarlock_c_01_dwf.m2", + }, + { + fileId = "142380", + value = "helm_robe_raidwarlock_c_01_dwm.m2", + text = "helm_robe_raidwarlock_c_01_dwm.m2", + }, + { + fileId = "142381", + value = "helm_robe_raidwarlock_c_01_gnf.m2", + text = "helm_robe_raidwarlock_c_01_gnf.m2", + }, + { + fileId = "142382", + value = "helm_robe_raidwarlock_c_01_gnm.m2", + text = "helm_robe_raidwarlock_c_01_gnm.m2", + }, + { + fileId = "142383", + value = "helm_robe_raidwarlock_c_01_gof.m2", + text = "helm_robe_raidwarlock_c_01_gof.m2", + }, + { + fileId = "142384", + value = "helm_robe_raidwarlock_c_01_gom.m2", + text = "helm_robe_raidwarlock_c_01_gom.m2", + }, + { + fileId = "142385", + value = "helm_robe_raidwarlock_c_01_huf.m2", + text = "helm_robe_raidwarlock_c_01_huf.m2", + }, + { + fileId = "142386", + value = "helm_robe_raidwarlock_c_01_hum.m2", + text = "helm_robe_raidwarlock_c_01_hum.m2", + }, + { + fileId = "142387", + value = "helm_robe_raidwarlock_c_01_nif.m2", + text = "helm_robe_raidwarlock_c_01_nif.m2", + }, + { + fileId = "142388", + value = "helm_robe_raidwarlock_c_01_nim.m2", + text = "helm_robe_raidwarlock_c_01_nim.m2", + }, + { + fileId = "142389", + value = "helm_robe_raidwarlock_c_01_orf.m2", + text = "helm_robe_raidwarlock_c_01_orf.m2", + }, + { + fileId = "142390", + value = "helm_robe_raidwarlock_c_01_orm.m2", + text = "helm_robe_raidwarlock_c_01_orm.m2", + }, + { + fileId = "142391", + value = "helm_robe_raidwarlock_c_01_scf.m2", + text = "helm_robe_raidwarlock_c_01_scf.m2", + }, + { + fileId = "142392", + value = "helm_robe_raidwarlock_c_01_scm.m2", + text = "helm_robe_raidwarlock_c_01_scm.m2", + }, + { + fileId = "142393", + value = "helm_robe_raidwarlock_c_01_taf.m2", + text = "helm_robe_raidwarlock_c_01_taf.m2", + }, + { + fileId = "142394", + value = "helm_robe_raidwarlock_c_01_tam.m2", + text = "helm_robe_raidwarlock_c_01_tam.m2", + }, + { + fileId = "142395", + value = "helm_robe_raidwarlock_c_01_trf.m2", + text = "helm_robe_raidwarlock_c_01_trf.m2", + }, + { + fileId = "142396", + value = "helm_robe_raidwarlock_c_01_trm.m2", + text = "helm_robe_raidwarlock_c_01_trm.m2", + }, + { + fileId = "142398", + value = "helm_robe_raidwarlock_d_01_bef.m2", + text = "helm_robe_raidwarlock_d_01_bef.m2", + }, + { + fileId = "142399", + value = "helm_robe_raidwarlock_d_01_bem.m2", + text = "helm_robe_raidwarlock_d_01_bem.m2", + }, + { + fileId = "142400", + value = "helm_robe_raidwarlock_d_01_drf.m2", + text = "helm_robe_raidwarlock_d_01_drf.m2", + }, + { + fileId = "142401", + value = "helm_robe_raidwarlock_d_01_drm.m2", + text = "helm_robe_raidwarlock_d_01_drm.m2", + }, + { + fileId = "142402", + value = "helm_robe_raidwarlock_d_01_dwf.m2", + text = "helm_robe_raidwarlock_d_01_dwf.m2", + }, + { + fileId = "142403", + value = "helm_robe_raidwarlock_d_01_dwm.m2", + text = "helm_robe_raidwarlock_d_01_dwm.m2", + }, + { + fileId = "142404", + value = "helm_robe_raidwarlock_d_01_gnf.m2", + text = "helm_robe_raidwarlock_d_01_gnf.m2", + }, + { + fileId = "142405", + value = "helm_robe_raidwarlock_d_01_gnm.m2", + text = "helm_robe_raidwarlock_d_01_gnm.m2", + }, + { + fileId = "142406", + value = "helm_robe_raidwarlock_d_01_gof.m2", + text = "helm_robe_raidwarlock_d_01_gof.m2", + }, + { + fileId = "142407", + value = "helm_robe_raidwarlock_d_01_gom.m2", + text = "helm_robe_raidwarlock_d_01_gom.m2", + }, + { + fileId = "142408", + value = "helm_robe_raidwarlock_d_01_huf.m2", + text = "helm_robe_raidwarlock_d_01_huf.m2", + }, + { + fileId = "142409", + value = "helm_robe_raidwarlock_d_01_hum.m2", + text = "helm_robe_raidwarlock_d_01_hum.m2", + }, + { + fileId = "142410", + value = "helm_robe_raidwarlock_d_01_nif.m2", + text = "helm_robe_raidwarlock_d_01_nif.m2", + }, + { + fileId = "142411", + value = "helm_robe_raidwarlock_d_01_nim.m2", + text = "helm_robe_raidwarlock_d_01_nim.m2", + }, + { + fileId = "142412", + value = "helm_robe_raidwarlock_d_01_orf.m2", + text = "helm_robe_raidwarlock_d_01_orf.m2", + }, + { + fileId = "142413", + value = "helm_robe_raidwarlock_d_01_orm.m2", + text = "helm_robe_raidwarlock_d_01_orm.m2", + }, + { + fileId = "142414", + value = "helm_robe_raidwarlock_d_01_scf.m2", + text = "helm_robe_raidwarlock_d_01_scf.m2", + }, + { + fileId = "142415", + value = "helm_robe_raidwarlock_d_01_scm.m2", + text = "helm_robe_raidwarlock_d_01_scm.m2", + }, + { + fileId = "142416", + value = "helm_robe_raidwarlock_d_01_taf.m2", + text = "helm_robe_raidwarlock_d_01_taf.m2", + }, + { + fileId = "142417", + value = "helm_robe_raidwarlock_d_01_tam.m2", + text = "helm_robe_raidwarlock_d_01_tam.m2", + }, + { + fileId = "142418", + value = "helm_robe_raidwarlock_d_01_trf.m2", + text = "helm_robe_raidwarlock_d_01_trf.m2", + }, + { + fileId = "142419", + value = "helm_robe_raidwarlock_d_01_trm.m2", + text = "helm_robe_raidwarlock_d_01_trm.m2", + }, + { + fileId = "142422", + value = "helm_robe_raidwarlock_e_01_bef.m2", + text = "helm_robe_raidwarlock_e_01_bef.m2", + }, + { + fileId = "142423", + value = "helm_robe_raidwarlock_e_01_bem.m2", + text = "helm_robe_raidwarlock_e_01_bem.m2", + }, + { + fileId = "142424", + value = "helm_robe_raidwarlock_e_01_drf.m2", + text = "helm_robe_raidwarlock_e_01_drf.m2", + }, + { + fileId = "142425", + value = "helm_robe_raidwarlock_e_01_drm.m2", + text = "helm_robe_raidwarlock_e_01_drm.m2", + }, + { + fileId = "142426", + value = "helm_robe_raidwarlock_e_01_dwf.m2", + text = "helm_robe_raidwarlock_e_01_dwf.m2", + }, + { + fileId = "142427", + value = "helm_robe_raidwarlock_e_01_dwm.m2", + text = "helm_robe_raidwarlock_e_01_dwm.m2", + }, + { + fileId = "142428", + value = "helm_robe_raidwarlock_e_01_gnf.m2", + text = "helm_robe_raidwarlock_e_01_gnf.m2", + }, + { + fileId = "142429", + value = "helm_robe_raidwarlock_e_01_gnm.m2", + text = "helm_robe_raidwarlock_e_01_gnm.m2", + }, + { + fileId = "142430", + value = "helm_robe_raidwarlock_e_01_gof.m2", + text = "helm_robe_raidwarlock_e_01_gof.m2", + }, + { + fileId = "142431", + value = "helm_robe_raidwarlock_e_01_gom.m2", + text = "helm_robe_raidwarlock_e_01_gom.m2", + }, + { + fileId = "142432", + value = "helm_robe_raidwarlock_e_01_huf.m2", + text = "helm_robe_raidwarlock_e_01_huf.m2", + }, + { + fileId = "142433", + value = "helm_robe_raidwarlock_e_01_hum.m2", + text = "helm_robe_raidwarlock_e_01_hum.m2", + }, + { + fileId = "142434", + value = "helm_robe_raidwarlock_e_01_nif.m2", + text = "helm_robe_raidwarlock_e_01_nif.m2", + }, + { + fileId = "142435", + value = "helm_robe_raidwarlock_e_01_nim.m2", + text = "helm_robe_raidwarlock_e_01_nim.m2", + }, + { + fileId = "142436", + value = "helm_robe_raidwarlock_e_01_orf.m2", + text = "helm_robe_raidwarlock_e_01_orf.m2", + }, + { + fileId = "142437", + value = "helm_robe_raidwarlock_e_01_orm.m2", + text = "helm_robe_raidwarlock_e_01_orm.m2", + }, + { + fileId = "142438", + value = "helm_robe_raidwarlock_e_01_scf.m2", + text = "helm_robe_raidwarlock_e_01_scf.m2", + }, + { + fileId = "142439", + value = "helm_robe_raidwarlock_e_01_scm.m2", + text = "helm_robe_raidwarlock_e_01_scm.m2", + }, + { + fileId = "142440", + value = "helm_robe_raidwarlock_e_01_taf.m2", + text = "helm_robe_raidwarlock_e_01_taf.m2", + }, + { + fileId = "142441", + value = "helm_robe_raidwarlock_e_01_tam.m2", + text = "helm_robe_raidwarlock_e_01_tam.m2", + }, + { + fileId = "142442", + value = "helm_robe_raidwarlock_e_01_trf.m2", + text = "helm_robe_raidwarlock_e_01_trf.m2", + }, + { + fileId = "142443", + value = "helm_robe_raidwarlock_e_01_trm.m2", + text = "helm_robe_raidwarlock_e_01_trm.m2", + }, + { + fileId = "142447", + value = "helm_robe_raidwarlock_f_01_bef.m2", + text = "helm_robe_raidwarlock_f_01_bef.m2", + }, + { + fileId = "142448", + value = "helm_robe_raidwarlock_f_01_bem.m2", + text = "helm_robe_raidwarlock_f_01_bem.m2", + }, + { + fileId = "142449", + value = "helm_robe_raidwarlock_f_01_drf.m2", + text = "helm_robe_raidwarlock_f_01_drf.m2", + }, + { + fileId = "142450", + value = "helm_robe_raidwarlock_f_01_drm.m2", + text = "helm_robe_raidwarlock_f_01_drm.m2", + }, + { + fileId = "142451", + value = "helm_robe_raidwarlock_f_01_dwf.m2", + text = "helm_robe_raidwarlock_f_01_dwf.m2", + }, + { + fileId = "142452", + value = "helm_robe_raidwarlock_f_01_dwm.m2", + text = "helm_robe_raidwarlock_f_01_dwm.m2", + }, + { + fileId = "142453", + value = "helm_robe_raidwarlock_f_01_gnf.m2", + text = "helm_robe_raidwarlock_f_01_gnf.m2", + }, + { + fileId = "142454", + value = "helm_robe_raidwarlock_f_01_gnm.m2", + text = "helm_robe_raidwarlock_f_01_gnm.m2", + }, + { + fileId = "142455", + value = "helm_robe_raidwarlock_f_01_huf.m2", + text = "helm_robe_raidwarlock_f_01_huf.m2", + }, + { + fileId = "142456", + value = "helm_robe_raidwarlock_f_01_hum.m2", + text = "helm_robe_raidwarlock_f_01_hum.m2", + }, + { + fileId = "142457", + value = "helm_robe_raidwarlock_f_01_nif.m2", + text = "helm_robe_raidwarlock_f_01_nif.m2", + }, + { + fileId = "142458", + value = "helm_robe_raidwarlock_f_01_nim.m2", + text = "helm_robe_raidwarlock_f_01_nim.m2", + }, + { + fileId = "142459", + value = "helm_robe_raidwarlock_f_01_orf.m2", + text = "helm_robe_raidwarlock_f_01_orf.m2", + }, + { + fileId = "142460", + value = "helm_robe_raidwarlock_f_01_orm.m2", + text = "helm_robe_raidwarlock_f_01_orm.m2", + }, + { + fileId = "142461", + value = "helm_robe_raidwarlock_f_01_scf.m2", + text = "helm_robe_raidwarlock_f_01_scf.m2", + }, + { + fileId = "142462", + value = "helm_robe_raidwarlock_f_01_scm.m2", + text = "helm_robe_raidwarlock_f_01_scm.m2", + }, + { + fileId = "142463", + value = "helm_robe_raidwarlock_f_01_taf.m2", + text = "helm_robe_raidwarlock_f_01_taf.m2", + }, + { + fileId = "142464", + value = "helm_robe_raidwarlock_f_01_tam.m2", + text = "helm_robe_raidwarlock_f_01_tam.m2", + }, + { + fileId = "142465", + value = "helm_robe_raidwarlock_f_01_trf.m2", + text = "helm_robe_raidwarlock_f_01_trf.m2", + }, + { + fileId = "142466", + value = "helm_robe_raidwarlock_f_01_trm.m2", + text = "helm_robe_raidwarlock_f_01_trm.m2", + }, + { + fileId = "142497", + value = "helm_robe_sunwell_d_01_bef.m2", + text = "helm_robe_sunwell_d_01_bef.m2", + }, + { + fileId = "142498", + value = "helm_robe_sunwell_d_01_bem.m2", + text = "helm_robe_sunwell_d_01_bem.m2", + }, + { + fileId = "142499", + value = "helm_robe_sunwell_d_01_drf.m2", + text = "helm_robe_sunwell_d_01_drf.m2", + }, + { + fileId = "142500", + value = "helm_robe_sunwell_d_01_drm.m2", + text = "helm_robe_sunwell_d_01_drm.m2", + }, + { + fileId = "142501", + value = "helm_robe_sunwell_d_01_dwf.m2", + text = "helm_robe_sunwell_d_01_dwf.m2", + }, + { + fileId = "142502", + value = "helm_robe_sunwell_d_01_dwm.m2", + text = "helm_robe_sunwell_d_01_dwm.m2", + }, + { + fileId = "142503", + value = "helm_robe_sunwell_d_01_gnf.m2", + text = "helm_robe_sunwell_d_01_gnf.m2", + }, + { + fileId = "142504", + value = "helm_robe_sunwell_d_01_gnm.m2", + text = "helm_robe_sunwell_d_01_gnm.m2", + }, + { + fileId = "142505", + value = "helm_robe_sunwell_d_01_gof.m2", + text = "helm_robe_sunwell_d_01_gof.m2", + }, + { + fileId = "142506", + value = "helm_robe_sunwell_d_01_gom.m2", + text = "helm_robe_sunwell_d_01_gom.m2", + }, + { + fileId = "142507", + value = "helm_robe_sunwell_d_01_huf.m2", + text = "helm_robe_sunwell_d_01_huf.m2", + }, + { + fileId = "142508", + value = "helm_robe_sunwell_d_01_hum.m2", + text = "helm_robe_sunwell_d_01_hum.m2", + }, + { + fileId = "142509", + value = "helm_robe_sunwell_d_01_nif.m2", + text = "helm_robe_sunwell_d_01_nif.m2", + }, + { + fileId = "142510", + value = "helm_robe_sunwell_d_01_nim.m2", + text = "helm_robe_sunwell_d_01_nim.m2", + }, + { + fileId = "142511", + value = "helm_robe_sunwell_d_01_orf.m2", + text = "helm_robe_sunwell_d_01_orf.m2", + }, + { + fileId = "142512", + value = "helm_robe_sunwell_d_01_orm.m2", + text = "helm_robe_sunwell_d_01_orm.m2", + }, + { + fileId = "142513", + value = "helm_robe_sunwell_d_01_scf.m2", + text = "helm_robe_sunwell_d_01_scf.m2", + }, + { + fileId = "142514", + value = "helm_robe_sunwell_d_01_scm.m2", + text = "helm_robe_sunwell_d_01_scm.m2", + }, + { + fileId = "142515", + value = "helm_robe_sunwell_d_01_taf.m2", + text = "helm_robe_sunwell_d_01_taf.m2", + }, + { + fileId = "142516", + value = "helm_robe_sunwell_d_01_tam.m2", + text = "helm_robe_sunwell_d_01_tam.m2", + }, + { + fileId = "142517", + value = "helm_robe_sunwell_d_01_trf.m2", + text = "helm_robe_sunwell_d_01_trf.m2", + }, + { + fileId = "142518", + value = "helm_robe_sunwell_d_01_trm.m2", + text = "helm_robe_sunwell_d_01_trm.m2", + }, + { + fileId = "142527", + value = "helm_robe_zulaman_d_01_bef.m2", + text = "helm_robe_zulaman_d_01_bef.m2", + }, + { + fileId = "142528", + value = "helm_robe_zulaman_d_01_bem.m2", + text = "helm_robe_zulaman_d_01_bem.m2", + }, + { + fileId = "142529", + value = "helm_robe_zulaman_d_01_drf.m2", + text = "helm_robe_zulaman_d_01_drf.m2", + }, + { + fileId = "142530", + value = "helm_robe_zulaman_d_01_drm.m2", + text = "helm_robe_zulaman_d_01_drm.m2", + }, + { + fileId = "142531", + value = "helm_robe_zulaman_d_01_dwf.m2", + text = "helm_robe_zulaman_d_01_dwf.m2", + }, + { + fileId = "142532", + value = "helm_robe_zulaman_d_01_dwm.m2", + text = "helm_robe_zulaman_d_01_dwm.m2", + }, + { + fileId = "142533", + value = "helm_robe_zulaman_d_01_gnf.m2", + text = "helm_robe_zulaman_d_01_gnf.m2", + }, + { + fileId = "142534", + value = "helm_robe_zulaman_d_01_gnm.m2", + text = "helm_robe_zulaman_d_01_gnm.m2", + }, + { + fileId = "142535", + value = "helm_robe_zulaman_d_01_gof.m2", + text = "helm_robe_zulaman_d_01_gof.m2", + }, + { + fileId = "142536", + value = "helm_robe_zulaman_d_01_gom.m2", + text = "helm_robe_zulaman_d_01_gom.m2", + }, + { + fileId = "142537", + value = "helm_robe_zulaman_d_01_huf.m2", + text = "helm_robe_zulaman_d_01_huf.m2", + }, + { + fileId = "142538", + value = "helm_robe_zulaman_d_01_hum.m2", + text = "helm_robe_zulaman_d_01_hum.m2", + }, + { + fileId = "142539", + value = "helm_robe_zulaman_d_01_nif.m2", + text = "helm_robe_zulaman_d_01_nif.m2", + }, + { + fileId = "142540", + value = "helm_robe_zulaman_d_01_nim.m2", + text = "helm_robe_zulaman_d_01_nim.m2", + }, + { + fileId = "142541", + value = "helm_robe_zulaman_d_01_orf.m2", + text = "helm_robe_zulaman_d_01_orf.m2", + }, + { + fileId = "142542", + value = "helm_robe_zulaman_d_01_orm.m2", + text = "helm_robe_zulaman_d_01_orm.m2", + }, + { + fileId = "142543", + value = "helm_robe_zulaman_d_01_scf.m2", + text = "helm_robe_zulaman_d_01_scf.m2", + }, + { + fileId = "142544", + value = "helm_robe_zulaman_d_01_scm.m2", + text = "helm_robe_zulaman_d_01_scm.m2", + }, + { + fileId = "142545", + value = "helm_robe_zulaman_d_01_taf.m2", + text = "helm_robe_zulaman_d_01_taf.m2", + }, + { + fileId = "142546", + value = "helm_robe_zulaman_d_01_tam.m2", + text = "helm_robe_zulaman_d_01_tam.m2", + }, + { + fileId = "142547", + value = "helm_robe_zulaman_d_01_trf.m2", + text = "helm_robe_zulaman_d_01_trf.m2", + }, + { + fileId = "142548", + value = "helm_robe_zulaman_d_01_trm.m2", + text = "helm_robe_zulaman_d_01_trm.m2", + }, + { + fileId = "142552", + value = "helmet_robe_d_04_dwf.m2", + text = "helmet_robe_d_04_dwf.m2", + }, + { + fileId = "142553", + value = "helmet_robe_d_04_dwm.m2", + text = "helmet_robe_d_04_dwm.m2", + }, + { + fileId = "142554", + value = "helmet_robe_d_04_gnf.m2", + text = "helmet_robe_d_04_gnf.m2", + }, + { + fileId = "142555", + value = "helmet_robe_d_04_gnm.m2", + text = "helmet_robe_d_04_gnm.m2", + }, + { + fileId = "142556", + value = "helmet_robe_d_04_huf.m2", + text = "helmet_robe_d_04_huf.m2", + }, + { + fileId = "142557", + value = "helmet_robe_d_04_hum.m2", + text = "helmet_robe_d_04_hum.m2", + }, + { + fileId = "142558", + value = "helmet_robe_d_04_nif.m2", + text = "helmet_robe_d_04_nif.m2", + }, + { + fileId = "142559", + value = "helmet_robe_d_04_nim.m2", + text = "helmet_robe_d_04_nim.m2", + }, + { + fileId = "142560", + value = "helmet_robe_d_04_orf.m2", + text = "helmet_robe_d_04_orf.m2", + }, + { + fileId = "142561", + value = "helmet_robe_d_04_orm.m2", + text = "helmet_robe_d_04_orm.m2", + }, + { + fileId = "142562", + value = "helmet_robe_d_04_scf.m2", + text = "helmet_robe_d_04_scf.m2", + }, + { + fileId = "142563", + value = "helmet_robe_d_04_scm.m2", + text = "helmet_robe_d_04_scm.m2", + }, + { + fileId = "142564", + value = "helmet_robe_d_04_taf.m2", + text = "helmet_robe_d_04_taf.m2", + }, + { + fileId = "142565", + value = "helmet_robe_d_04_tam.m2", + text = "helmet_robe_d_04_tam.m2", + }, + { + fileId = "142566", + value = "helmet_robe_d_04_trf.m2", + text = "helmet_robe_d_04_trf.m2", + }, + { + fileId = "142567", + value = "helmet_robe_d_04_trm.m2", + text = "helmet_robe_d_04_trm.m2", + }, + }, + value = "head", + text = "head", + }, + { + children = { + { + fileId = "2351788", + value = "pouch_alliance_a_01.m2", + text = "pouch_alliance_a_01.m2", + }, + { + fileId = "2351697", + value = "pouch_alliance_a_02.m2", + text = "pouch_alliance_a_02.m2", + }, + { + fileId = "2351743", + value = "pouch_horde_a_01.m2", + text = "pouch_horde_a_01.m2", + }, + { + fileId = "2351703", + value = "pouch_horde_a_02.m2", + text = "pouch_horde_a_02.m2", + }, + }, + value = "pouch", + text = "pouch", + }, + { + children = { + { + fileId = "142631", + value = "quiver_a.m2", + text = "quiver_a.m2", + }, + { + fileId = "142667", + value = "quiver_bolt_a_01.m2", + text = "quiver_bolt_a_01.m2", + }, + { + fileId = "142693", + value = "quiver_horde_a_01.m2", + text = "quiver_horde_a_01.m2", + }, + }, + value = "quiver", + text = "quiver", + }, + { + children = { + { + fileId = "142733", + value = "buckler_damaged_a_01.m2", + text = "buckler_damaged_a_01.m2", + }, + { + fileId = "142737", + value = "buckler_damaged_a_02.m2", + text = "buckler_damaged_a_02.m2", + }, + { + fileId = "142741", + value = "buckler_oval_a_01.m2", + text = "buckler_oval_a_01.m2", + }, + { + fileId = "142745", + value = "buckler_round_a_01.m2", + text = "buckler_round_a_01.m2", + }, + { + fileId = "142754", + value = "shield_2h_outlandraid_d_01.m2", + text = "shield_2h_outlandraid_d_01.m2", + }, + { + fileId = "142756", + value = "shield_2h_outlandraid_d_02.m2", + text = "shield_2h_outlandraid_d_02.m2", + }, + { + fileId = "142758", + value = "shield_2h_outlandraid_d_03.m2", + text = "shield_2h_outlandraid_d_03.m2", + }, + { + fileId = "142760", + value = "shield_2h_outlandraid_d_04.m2", + text = "shield_2h_outlandraid_d_04.m2", + }, + { + fileId = "142762", + value = "shield_2h_outlandraid_d_05.m2", + text = "shield_2h_outlandraid_d_05.m2", + }, + { + fileId = "142765", + value = "shield_2h_outlandraid_d_06.m2", + text = "shield_2h_outlandraid_d_06.m2", + }, + { + fileId = "142767", + value = "shield_2h_outlandraid_d_07.m2", + text = "shield_2h_outlandraid_d_07.m2", + }, + { + fileId = "142772", + value = "shield_2h_outlandraid_d_08.m2", + text = "shield_2h_outlandraid_d_08.m2", + }, + { + fileId = "142779", + value = "shield_ahnqiraj_d_01.m2", + text = "shield_ahnqiraj_d_01.m2", + }, + { + fileId = "142781", + value = "shield_ahnqiraj_d_02.m2", + text = "shield_ahnqiraj_d_02.m2", + }, + { + fileId = "142783", + value = "shield_ahnqiraj_d_03.m2", + text = "shield_ahnqiraj_d_03.m2", + }, + { + fileId = "142785", + value = "shield_blackwing_drakeadon.m2", + text = "shield_blackwing_drakeadon.m2", + }, + { + fileId = "142787", + value = "shield_blackwing_reddragon.m2", + text = "shield_blackwing_reddragon.m2", + }, + { + fileId = "142789", + value = "shield_blood_a_01.m2", + text = "shield_blood_a_01.m2", + }, + { + fileId = "142791", + value = "shield_blood_a_02.m2", + text = "shield_blood_a_02.m2", + }, + { + fileId = "142793", + value = "shield_blood_a_03.m2", + text = "shield_blood_a_03.m2", + }, + { + fileId = "142795", + value = "shield_bloodknight_b_01.m2", + text = "shield_bloodknight_b_01.m2", + }, + { + fileId = "142797", + value = "shield_bloodknight_d_01.m2", + text = "shield_bloodknight_d_01.m2", + }, + { + fileId = "142804", + value = "shield_crest_a_01.m2", + text = "shield_crest_a_01.m2", + }, + { + fileId = "142809", + value = "shield_crest_a_02.m2", + text = "shield_crest_a_02.m2", + }, + { + fileId = "142813", + value = "shield_crest_b_01.m2", + text = "shield_crest_b_01.m2", + }, + { + fileId = "142816", + value = "shield_crest_b_02.m2", + text = "shield_crest_b_02.m2", + }, + { + fileId = "142826", + value = "shield_crest_b_03.m2", + text = "shield_crest_b_03.m2", + }, + { + fileId = "142849", + value = "shield_draenei_a_01.m2", + text = "shield_draenei_a_01.m2", + }, + { + fileId = "142855", + value = "shield_draenei_a_02.m2", + text = "shield_draenei_a_02.m2", + }, + { + fileId = "142867", + value = "shield_engineer_a_01.m2", + text = "shield_engineer_a_01.m2", + }, + { + fileId = "142869", + value = "shield_engineer_b_01.m2", + text = "shield_engineer_b_01.m2", + }, + { + fileId = "142871", + value = "shield_engineer_c_01.m2", + text = "shield_engineer_c_01.m2", + }, + { + fileId = "142873", + value = "shield_epic_a_01.m2", + text = "shield_epic_a_01.m2", + }, + { + fileId = "142875", + value = "shield_epic_a_02.m2", + text = "shield_epic_a_02.m2", + }, + { + fileId = "142876", + value = "shield_epic_b_01.m2", + text = "shield_epic_b_01.m2", + }, + { + fileId = "142878", + value = "shield_horde_a_01.m2", + text = "shield_horde_a_01.m2", + }, + { + fileId = "142885", + value = "shield_horde_a_02.m2", + text = "shield_horde_a_02.m2", + }, + { + fileId = "142893", + value = "shield_horde_a_03.m2", + text = "shield_horde_a_03.m2", + }, + { + fileId = "142900", + value = "shield_horde_a_04.m2", + text = "shield_horde_a_04.m2", + }, + { + fileId = "142907", + value = "shield_horde_b_01.m2", + text = "shield_horde_b_01.m2", + }, + { + fileId = "142909", + value = "shield_horde_b_02.m2", + text = "shield_horde_b_02.m2", + }, + { + fileId = "142911", + value = "shield_horde_b_03.m2", + text = "shield_horde_b_03.m2", + }, + { + fileId = "142914", + value = "shield_horde_b_04.m2", + text = "shield_horde_b_04.m2", + }, + { + fileId = "142916", + value = "shield_horde_c_02.m2", + text = "shield_horde_c_02.m2", + }, + { + fileId = "142918", + value = "shield_horde_c_03.m2", + text = "shield_horde_c_03.m2", + }, + { + fileId = "142920", + value = "shield_hyjal_d_01.m2", + text = "shield_hyjal_d_01.m2", + }, + { + fileId = "142924", + value = "shield_hyjal_d_02.m2", + text = "shield_hyjal_d_02.m2", + }, + { + fileId = "142930", + value = "shield_hyjal_d_03.m2", + text = "shield_hyjal_d_03.m2", + }, + { + fileId = "142934", + value = "shield_illidan_d_01.m2", + text = "shield_illidan_d_01.m2", + }, + { + fileId = "142939", + value = "shield_lion_a_01.m2", + text = "shield_lion_a_01.m2", + }, + { + fileId = "142940", + value = "shield_militia_a_01.m2", + text = "shield_militia_a_01.m2", + }, + { + fileId = "142946", + value = "shield_naxxramas_d_01.m2", + text = "shield_naxxramas_d_01.m2", + }, + { + fileId = "142948", + value = "shield_naxxramas_d_02.m2", + text = "shield_naxxramas_d_02.m2", + }, + { + fileId = "142950", + value = "shield_naxxramas_d_03.m2", + text = "shield_naxxramas_d_03.m2", + }, + { + fileId = "142979", + value = "shield_northrend_d_01.m2", + text = "shield_northrend_d_01.m2", + }, + { + fileId = "142984", + value = "shield_oval_a_01.m2", + text = "shield_oval_a_01.m2", + }, + { + fileId = "142989", + value = "shield_pvpalliance_a_01.m2", + text = "shield_pvpalliance_a_01.m2", + }, + { + fileId = "142991", + value = "shield_pvphorde_a_01.m2", + text = "shield_pvphorde_a_01.m2", + }, + { + fileId = "142992", + value = "shield_rectangle_a_01.m2", + text = "shield_rectangle_a_01.m2", + }, + { + fileId = "142997", + value = "shield_rectangle_b_01.m2", + text = "shield_rectangle_b_01.m2", + }, + { + fileId = "143001", + value = "shield_round_a_01.m2", + text = "shield_round_a_01.m2", + }, + { + fileId = "143005", + value = "shield_round_b_01.m2", + text = "shield_round_b_01.m2", + }, + { + fileId = "143029", + value = "shield_stratholme_d_01.m2", + text = "shield_stratholme_d_01.m2", + }, + { + fileId = "143031", + value = "shield_stratholme_d_02.m2", + text = "shield_stratholme_d_02.m2", + }, + { + fileId = "143032", + value = "shield_sunshatter_d_01.m2", + text = "shield_sunshatter_d_01.m2", + }, + { + fileId = "143038", + value = "shield_sunwell_d_01.m2", + text = "shield_sunwell_d_01.m2", + }, + { + fileId = "143043", + value = "shield_sunwell_d_02.m2", + text = "shield_sunwell_d_02.m2", + }, + { + fileId = "143047", + value = "shield_sunwell_d_03.m2", + text = "shield_sunwell_d_03.m2", + }, + { + fileId = "143063", + value = "shield_wheel_b_01.m2", + text = "shield_wheel_b_01.m2", + }, + { + fileId = "143065", + value = "shield_zulaman_d_01.m2", + text = "shield_zulaman_d_01.m2", + }, + { + fileId = "143069", + value = "shield_zulaman_d_02.m2", + text = "shield_zulaman_d_02.m2", + }, + { + fileId = "143075", + value = "shield_zulgurub_d_01.m2", + text = "shield_zulgurub_d_01.m2", + }, + { + fileId = "143077", + value = "shield_zulgurub_d_02.m2", + text = "shield_zulgurub_d_02.m2", + }, + }, + value = "shield", + text = "shield", + }, + { + children = { + { + fileId = "143132", + value = "lshoulder_leather_a_01.m2", + text = "lshoulder_leather_a_01.m2", + }, + { + fileId = "143133", + value = "lshoulder_leather_a_02.m2", + text = "lshoulder_leather_a_02.m2", + }, + { + fileId = "143134", + value = "lshoulder_leather_a_03.m2", + text = "lshoulder_leather_a_03.m2", + }, + { + fileId = "143135", + value = "lshoulder_leather_a_03defias.m2", + text = "lshoulder_leather_a_03defias.m2", + }, + { + fileId = "143136", + value = "lshoulder_leather_a_04.m2", + text = "lshoulder_leather_a_04.m2", + }, + { + fileId = "143137", + value = "lshoulder_leather_a_05.m2", + text = "lshoulder_leather_a_05.m2", + }, + { + fileId = "143138", + value = "lshoulder_leather_ahnqiraj_a_01.m2", + text = "lshoulder_leather_ahnqiraj_a_01.m2", + }, + { + fileId = "143139", + value = "lshoulder_leather_b_01.m2", + text = "lshoulder_leather_b_01.m2", + }, + { + fileId = "143140", + value = "lshoulder_leather_b_02.m2", + text = "lshoulder_leather_b_02.m2", + }, + { + fileId = "143141", + value = "lshoulder_leather_b_03.m2", + text = "lshoulder_leather_b_03.m2", + }, + { + fileId = "143142", + value = "lshoulder_leather_b_04.m2", + text = "lshoulder_leather_b_04.m2", + }, + { + fileId = "143143", + value = "lshoulder_leather_blood_b_01.m2", + text = "lshoulder_leather_blood_b_01.m2", + }, + { + fileId = "143144", + value = "lshoulder_leather_c_01.m2", + text = "lshoulder_leather_c_01.m2", + }, + { + fileId = "143145", + value = "lshoulder_leather_c_02.m2", + text = "lshoulder_leather_c_02.m2", + }, + { + fileId = "143146", + value = "lshoulder_leather_c_03.m2", + text = "lshoulder_leather_c_03.m2", + }, + { + fileId = "143147", + value = "lshoulder_leather_d_01.m2", + text = "lshoulder_leather_d_01.m2", + }, + { + fileId = "143148", + value = "lshoulder_leather_d_02.m2", + text = "lshoulder_leather_d_02.m2", + }, + { + fileId = "143149", + value = "lshoulder_leather_d_03.m2", + text = "lshoulder_leather_d_03.m2", + }, + { + fileId = "143150", + value = "lshoulder_leather_draenei_b_01.m2", + text = "lshoulder_leather_draenei_b_01.m2", + }, + { + fileId = "143151", + value = "lshoulder_leather_draenei_b_02.m2", + text = "lshoulder_leather_draenei_b_02.m2", + }, + { + fileId = "143152", + value = "lshoulder_leather_dungeondruid_a_01.m2", + text = "lshoulder_leather_dungeondruid_a_01.m2", + }, + { + fileId = "143153", + value = "lshoulder_leather_dungeondruid_b_01.m2", + text = "lshoulder_leather_dungeondruid_b_01.m2", + }, + { + fileId = "2199316", + value = "lshoulder_leather_dungeonhunter_a_01.m2", + text = "lshoulder_leather_dungeonhunter_a_01.m2", + }, + { + fileId = "143155", + value = "lshoulder_leather_dungeonrogue_b_01.m2", + text = "lshoulder_leather_dungeonrogue_b_01.m2", + }, + { + fileId = "143156", + value = "lshoulder_leather_horde_a_05.m2", + text = "lshoulder_leather_horde_a_05.m2", + }, + { + fileId = "143157", + value = "lshoulder_leather_horde_b_03.m2", + text = "lshoulder_leather_horde_b_03.m2", + }, + { + fileId = "143164", + value = "lshoulder_leather_pvpalliance_a_01.m2", + text = "lshoulder_leather_pvpalliance_a_01.m2", + }, + { + fileId = "143165", + value = "lshoulder_leather_pvphorde_a_01.m2", + text = "lshoulder_leather_pvphorde_a_01.m2", + }, + { + fileId = "143166", + value = "lshoulder_leather_pvphorde_c_01.m2", + text = "lshoulder_leather_pvphorde_c_01.m2", + }, + { + fileId = "143167", + value = "lshoulder_leather_raiddruid_a_01.m2", + text = "lshoulder_leather_raiddruid_a_01.m2", + }, + { + fileId = "143168", + value = "lshoulder_leather_raiddruid_b_01.m2", + text = "lshoulder_leather_raiddruid_b_01.m2", + }, + { + fileId = "143169", + value = "lshoulder_leather_raiddruid_c_01.m2", + text = "lshoulder_leather_raiddruid_c_01.m2", + }, + { + fileId = "143170", + value = "lshoulder_leather_raiddruid_d_01.m2", + text = "lshoulder_leather_raiddruid_d_01.m2", + }, + { + fileId = "143171", + value = "lshoulder_leather_raiddruid_e_01.m2", + text = "lshoulder_leather_raiddruid_e_01.m2", + }, + { + fileId = "143172", + value = "lshoulder_leather_raiddruid_f_01.m2", + text = "lshoulder_leather_raiddruid_f_01.m2", + }, + { + fileId = "143173", + value = "lshoulder_leather_raidrogue_a_01.m2", + text = "lshoulder_leather_raidrogue_a_01.m2", + }, + { + fileId = "143174", + value = "lshoulder_leather_raidrogue_b_01.m2", + text = "lshoulder_leather_raidrogue_b_01.m2", + }, + { + fileId = "143175", + value = "lshoulder_leather_raidrogue_c_01.m2", + text = "lshoulder_leather_raidrogue_c_01.m2", + }, + { + fileId = "143176", + value = "lshoulder_leather_raidrogue_d_01.m2", + text = "lshoulder_leather_raidrogue_d_01.m2", + }, + { + fileId = "143177", + value = "lshoulder_leather_raidrogue_e_01.m2", + text = "lshoulder_leather_raidrogue_e_01.m2", + }, + { + fileId = "143178", + value = "lshoulder_leather_raidrogue_f_01.m2", + text = "lshoulder_leather_raidrogue_f_01.m2", + }, + { + fileId = "143180", + value = "lshoulder_leather_sunwell_d_01.m2", + text = "lshoulder_leather_sunwell_d_01.m2", + }, + { + fileId = "143181", + value = "lshoulder_leather_zulaman_d_01.m2", + text = "lshoulder_leather_zulaman_d_01.m2", + }, + { + fileId = "143182", + value = "lshoulder_leather_zulaman_d_03.m2", + text = "lshoulder_leather_zulaman_d_03.m2", + }, + { + fileId = "143183", + value = "lshoulder_mail_a_01.m2", + text = "lshoulder_mail_a_01.m2", + }, + { + fileId = "143184", + value = "lshoulder_mail_a_02.m2", + text = "lshoulder_mail_a_02.m2", + }, + { + fileId = "143185", + value = "lshoulder_mail_a_03.m2", + text = "lshoulder_mail_a_03.m2", + }, + { + fileId = "143186", + value = "lshoulder_mail_ahnqiraj_a_01.m2", + text = "lshoulder_mail_ahnqiraj_a_01.m2", + }, + { + fileId = "143187", + value = "lshoulder_mail_b_01.m2", + text = "lshoulder_mail_b_01.m2", + }, + { + fileId = "143188", + value = "lshoulder_mail_b_02.m2", + text = "lshoulder_mail_b_02.m2", + }, + { + fileId = "143189", + value = "lshoulder_mail_b_03.m2", + text = "lshoulder_mail_b_03.m2", + }, + { + fileId = "143190", + value = "lshoulder_mail_b_05.m2", + text = "lshoulder_mail_b_05.m2", + }, + { + fileId = "143191", + value = "lshoulder_mail_blood_b_01.m2", + text = "lshoulder_mail_blood_b_01.m2", + }, + { + fileId = "143192", + value = "lshoulder_mail_c_01.m2", + text = "lshoulder_mail_c_01.m2", + }, + { + fileId = "143193", + value = "lshoulder_mail_c_02.m2", + text = "lshoulder_mail_c_02.m2", + }, + { + fileId = "143194", + value = "lshoulder_mail_c_03.m2", + text = "lshoulder_mail_c_03.m2", + }, + { + fileId = "143195", + value = "lshoulder_mail_c_04.m2", + text = "lshoulder_mail_c_04.m2", + }, + { + fileId = "143196", + value = "lshoulder_mail_d_01.m2", + text = "lshoulder_mail_d_01.m2", + }, + { + fileId = "143197", + value = "lshoulder_mail_d_02.m2", + text = "lshoulder_mail_d_02.m2", + }, + { + fileId = "143198", + value = "lshoulder_mail_draenei_b_01.m2", + text = "lshoulder_mail_draenei_b_01.m2", + }, + { + fileId = "143199", + value = "lshoulder_mail_draenei_b_02.m2", + text = "lshoulder_mail_draenei_b_02.m2", + }, + { + fileId = "143200", + value = "lshoulder_mail_dungeonhunter_a_01.m2", + text = "lshoulder_mail_dungeonhunter_a_01.m2", + }, + { + fileId = "143201", + value = "lshoulder_mail_dungeonhunter_b_02.m2", + text = "lshoulder_mail_dungeonhunter_b_02.m2", + }, + { + fileId = "143202", + value = "lshoulder_mail_dungeonshaman_a_01.m2", + text = "lshoulder_mail_dungeonshaman_a_01.m2", + }, + { + fileId = "143203", + value = "lshoulder_mail_dungeonshaman_b_01.m2", + text = "lshoulder_mail_dungeonshaman_b_01.m2", + }, + { + fileId = "143209", + value = "lshoulder_mail_pvpalliance_a_01.m2", + text = "lshoulder_mail_pvpalliance_a_01.m2", + }, + { + fileId = "143210", + value = "lshoulder_mail_pvpalliance_c_01.m2", + text = "lshoulder_mail_pvpalliance_c_01.m2", + }, + { + fileId = "143211", + value = "lshoulder_mail_pvphorde_a_01.m2", + text = "lshoulder_mail_pvphorde_a_01.m2", + }, + { + fileId = "143212", + value = "lshoulder_mail_pvphorde_c_01.m2", + text = "lshoulder_mail_pvphorde_c_01.m2", + }, + { + fileId = "143213", + value = "lshoulder_mail_raidhunter_a_01.m2", + text = "lshoulder_mail_raidhunter_a_01.m2", + }, + { + fileId = "143214", + value = "lshoulder_mail_raidhunter_b_01.m2", + text = "lshoulder_mail_raidhunter_b_01.m2", + }, + { + fileId = "143215", + value = "lshoulder_mail_raidhunter_c_01.m2", + text = "lshoulder_mail_raidhunter_c_01.m2", + }, + { + fileId = "143216", + value = "lshoulder_mail_raidhunter_d_01.m2", + text = "lshoulder_mail_raidhunter_d_01.m2", + }, + { + fileId = "143217", + value = "lshoulder_mail_raidhunter_e_01.m2", + text = "lshoulder_mail_raidhunter_e_01.m2", + }, + { + fileId = "143218", + value = "lshoulder_mail_raidhunter_f_01.m2", + text = "lshoulder_mail_raidhunter_f_01.m2", + }, + { + fileId = "143220", + value = "lshoulder_mail_raidshaman_a_01.m2", + text = "lshoulder_mail_raidshaman_a_01.m2", + }, + { + fileId = "143221", + value = "lshoulder_mail_raidshaman_b_01.m2", + text = "lshoulder_mail_raidshaman_b_01.m2", + }, + { + fileId = "143222", + value = "lshoulder_mail_raidshaman_d_01.m2", + text = "lshoulder_mail_raidshaman_d_01.m2", + }, + { + fileId = "143223", + value = "lshoulder_mail_raidshaman_e_01.m2", + text = "lshoulder_mail_raidshaman_e_01.m2", + }, + { + fileId = "143224", + value = "lshoulder_mail_raidshaman_f_01.m2", + text = "lshoulder_mail_raidshaman_f_01.m2", + }, + { + fileId = "143225", + value = "lshoulder_mail_sunwell_d_01.m2", + text = "lshoulder_mail_sunwell_d_01.m2", + }, + { + fileId = "143226", + value = "lshoulder_mail_zulaman_d_01.m2", + text = "lshoulder_mail_zulaman_d_01.m2", + }, + { + fileId = "143227", + value = "lshoulder_mail_zulaman_d_03.m2", + text = "lshoulder_mail_zulaman_d_03.m2", + }, + { + fileId = "143228", + value = "lshoulder_plate_a_01.m2", + text = "lshoulder_plate_a_01.m2", + }, + { + fileId = "143229", + value = "lshoulder_plate_a_02.m2", + text = "lshoulder_plate_a_02.m2", + }, + { + fileId = "143230", + value = "lshoulder_plate_a_02ironforgeguard.m2", + text = "lshoulder_plate_a_02ironforgeguard.m2", + }, + { + fileId = "143231", + value = "lshoulder_plate_a_03.m2", + text = "lshoulder_plate_a_03.m2", + }, + { + fileId = "143232", + value = "lshoulder_plate_a_04.m2", + text = "lshoulder_plate_a_04.m2", + }, + { + fileId = "143233", + value = "lshoulder_plate_a_05.m2", + text = "lshoulder_plate_a_05.m2", + }, + { + fileId = "143234", + value = "lshoulder_plate_ahnqiraj_a_01.m2", + text = "lshoulder_plate_ahnqiraj_a_01.m2", + }, + { + fileId = "143235", + value = "lshoulder_plate_b_01.m2", + text = "lshoulder_plate_b_01.m2", + }, + { + fileId = "143236", + value = "lshoulder_plate_b_02.m2", + text = "lshoulder_plate_b_02.m2", + }, + { + fileId = "143237", + value = "lshoulder_plate_b_03.m2", + text = "lshoulder_plate_b_03.m2", + }, + { + fileId = "143238", + value = "lshoulder_plate_b_04.m2", + text = "lshoulder_plate_b_04.m2", + }, + { + fileId = "143239", + value = "lshoulder_plate_b_05.m2", + text = "lshoulder_plate_b_05.m2", + }, + { + fileId = "143240", + value = "lshoulder_plate_bloodknight_d_02.m2", + text = "lshoulder_plate_bloodknight_d_02.m2", + }, + { + fileId = "143241", + value = "lshoulder_plate_c_01.m2", + text = "lshoulder_plate_c_01.m2", + }, + { + fileId = "143242", + value = "lshoulder_plate_c_03.m2", + text = "lshoulder_plate_c_03.m2", + }, + { + fileId = "143243", + value = "lshoulder_plate_c_04.m2", + text = "lshoulder_plate_c_04.m2", + }, + { + fileId = "143244", + value = "lshoulder_plate_c_05.m2", + text = "lshoulder_plate_c_05.m2", + }, + { + fileId = "143245", + value = "lshoulder_plate_d_01.m2", + text = "lshoulder_plate_d_01.m2", + }, + { + fileId = "143246", + value = "lshoulder_plate_d_02.m2", + text = "lshoulder_plate_d_02.m2", + }, + { + fileId = "143247", + value = "lshoulder_plate_d_03.m2", + text = "lshoulder_plate_d_03.m2", + }, + { + fileId = "143248", + value = "lshoulder_plate_d_04.m2", + text = "lshoulder_plate_d_04.m2", + }, + { + fileId = "143249", + value = "lshoulder_plate_d_05.m2", + text = "lshoulder_plate_d_05.m2", + }, + { + fileId = "143250", + value = "lshoulder_plate_d_06.m2", + text = "lshoulder_plate_d_06.m2", + }, + { + fileId = "143251", + value = "lshoulder_plate_draeneiguard_a_01.m2", + text = "lshoulder_plate_draeneiguard_a_01.m2", + }, + { + fileId = "143252", + value = "lshoulder_plate_draeneiguard_b_01.m2", + text = "lshoulder_plate_draeneiguard_b_01.m2", + }, + { + fileId = "143253", + value = "lshoulder_plate_dungeonpaladin_a_01.m2", + text = "lshoulder_plate_dungeonpaladin_a_01.m2", + }, + { + fileId = "143254", + value = "lshoulder_plate_dungeonpaladin_b_01.m2", + text = "lshoulder_plate_dungeonpaladin_b_01.m2", + }, + { + fileId = "143256", + value = "lshoulder_plate_dungeonwarrior_a_01.m2", + text = "lshoulder_plate_dungeonwarrior_a_01.m2", + }, + { + fileId = "143257", + value = "lshoulder_plate_dungeonwarrior_b_01.m2", + text = "lshoulder_plate_dungeonwarrior_b_01.m2", + }, + { + fileId = "143258", + value = "lshoulder_plate_haremmatron_d_01.m2", + text = "lshoulder_plate_haremmatron_d_01.m2", + }, + { + fileId = "143259", + value = "lshoulder_plate_horde_c_05.m2", + text = "lshoulder_plate_horde_c_05.m2", + }, + { + fileId = "143260", + value = "lshoulder_plate_horde_d_02.m2", + text = "lshoulder_plate_horde_d_02.m2", + }, + { + fileId = "143262", + value = "lshoulder_plate_hyjal_d_04.m2", + text = "lshoulder_plate_hyjal_d_04.m2", + }, + { + fileId = "143265", + value = "lshoulder_plate_hyjal_d_05.m2", + text = "lshoulder_plate_hyjal_d_05.m2", + }, + { + fileId = "143271", + value = "lshoulder_plate_pvpalliance_a_01.m2", + text = "lshoulder_plate_pvpalliance_a_01.m2", + }, + { + fileId = "143272", + value = "lshoulder_plate_pvphorde_a_01.m2", + text = "lshoulder_plate_pvphorde_a_01.m2", + }, + { + fileId = "143274", + value = "lshoulder_plate_raidpaladin_a_01.m2", + text = "lshoulder_plate_raidpaladin_a_01.m2", + }, + { + fileId = "143275", + value = "lshoulder_plate_raidpaladin_b_01.m2", + text = "lshoulder_plate_raidpaladin_b_01.m2", + }, + { + fileId = "143276", + value = "lshoulder_plate_raidpaladin_c_01.m2", + text = "lshoulder_plate_raidpaladin_c_01.m2", + }, + { + fileId = "143277", + value = "lshoulder_plate_raidpaladin_d_01.m2", + text = "lshoulder_plate_raidpaladin_d_01.m2", + }, + { + fileId = "143278", + value = "lshoulder_plate_raidpaladin_e_01.m2", + text = "lshoulder_plate_raidpaladin_e_01.m2", + }, + { + fileId = "143279", + value = "lshoulder_plate_raidpaladin_f_01.m2", + text = "lshoulder_plate_raidpaladin_f_01.m2", + }, + { + fileId = "143284", + value = "lshoulder_plate_raidwarrior_a_01.m2", + text = "lshoulder_plate_raidwarrior_a_01.m2", + }, + { + fileId = "143285", + value = "lshoulder_plate_raidwarrior_b_01.m2", + text = "lshoulder_plate_raidwarrior_b_01.m2", + }, + { + fileId = "143286", + value = "lshoulder_plate_raidwarrior_c_01.m2", + text = "lshoulder_plate_raidwarrior_c_01.m2", + }, + { + fileId = "143287", + value = "lshoulder_plate_raidwarrior_d_01.m2", + text = "lshoulder_plate_raidwarrior_d_01.m2", + }, + { + fileId = "143288", + value = "lshoulder_plate_raidwarrior_e_01.m2", + text = "lshoulder_plate_raidwarrior_e_01.m2", + }, + { + fileId = "143289", + value = "lshoulder_plate_raidwarrior_f_01.m2", + text = "lshoulder_plate_raidwarrior_f_01.m2", + }, + { + fileId = "143290", + value = "lshoulder_plate_sunwell_c_01.m2", + text = "lshoulder_plate_sunwell_c_01.m2", + }, + { + fileId = "143291", + value = "lshoulder_plate_sunwell_d_01.m2", + text = "lshoulder_plate_sunwell_d_01.m2", + }, + { + fileId = "143292", + value = "lshoulder_plate_zulaman_d_01.m2", + text = "lshoulder_plate_zulaman_d_01.m2", + }, + { + fileId = "143293", + value = "lshoulder_plate_zulaman_d_03.m2", + text = "lshoulder_plate_zulaman_d_03.m2", + }, + { + fileId = "143294", + value = "lshoulder_raiddruid_b_01.m2", + text = "lshoulder_raiddruid_b_01.m2", + }, + { + fileId = "143295", + value = "lshoulder_robe_a_01.m2", + text = "lshoulder_robe_a_01.m2", + }, + { + fileId = "143296", + value = "lshoulder_robe_a_02.m2", + text = "lshoulder_robe_a_02.m2", + }, + { + fileId = "143297", + value = "lshoulder_robe_a_03.m2", + text = "lshoulder_robe_a_03.m2", + }, + { + fileId = "143298", + value = "lshoulder_robe_ahnqiraj_a_01.m2", + text = "lshoulder_robe_ahnqiraj_a_01.m2", + }, + { + fileId = "143299", + value = "lshoulder_robe_b_01.m2", + text = "lshoulder_robe_b_01.m2", + }, + { + fileId = "143300", + value = "lshoulder_robe_b_02.m2", + text = "lshoulder_robe_b_02.m2", + }, + { + fileId = "143301", + value = "lshoulder_robe_b_03.m2", + text = "lshoulder_robe_b_03.m2", + }, + { + fileId = "143302", + value = "lshoulder_robe_b_04.m2", + text = "lshoulder_robe_b_04.m2", + }, + { + fileId = "143303", + value = "lshoulder_robe_c_01.m2", + text = "lshoulder_robe_c_01.m2", + }, + { + fileId = "143304", + value = "lshoulder_robe_c_02.m2", + text = "lshoulder_robe_c_02.m2", + }, + { + fileId = "143305", + value = "lshoulder_robe_c_03.m2", + text = "lshoulder_robe_c_03.m2", + }, + { + fileId = "143306", + value = "lshoulder_robe_d_01.m2", + text = "lshoulder_robe_d_01.m2", + }, + { + fileId = "143307", + value = "lshoulder_robe_d_04.m2", + text = "lshoulder_robe_d_04.m2", + }, + { + fileId = "143308", + value = "lshoulder_robe_dungeonmage_a_01.m2", + text = "lshoulder_robe_dungeonmage_a_01.m2", + }, + { + fileId = "143309", + value = "lshoulder_robe_dungeonmage_b_01.m2", + text = "lshoulder_robe_dungeonmage_b_01.m2", + }, + { + fileId = "143310", + value = "lshoulder_robe_dungeonpriest_a_01.m2", + text = "lshoulder_robe_dungeonpriest_a_01.m2", + }, + { + fileId = "143311", + value = "lshoulder_robe_dungeonpriest_b_01.m2", + text = "lshoulder_robe_dungeonpriest_b_01.m2", + }, + { + fileId = "143312", + value = "lshoulder_robe_dungeonwarlock_a_01.m2", + text = "lshoulder_robe_dungeonwarlock_a_01.m2", + }, + { + fileId = "143313", + value = "lshoulder_robe_dungeonwarlock_b_01.m2", + text = "lshoulder_robe_dungeonwarlock_b_01.m2", + }, + { + fileId = "143314", + value = "lshoulder_robe_holiday_summerfest_a_01.m2", + text = "lshoulder_robe_holiday_summerfest_a_01.m2", + }, + { + fileId = "143315", + value = "lshoulder_robe_horde_a_03.m2", + text = "lshoulder_robe_horde_a_03.m2", + }, + { + fileId = "143316", + value = "lshoulder_robe_horde_d_01.m2", + text = "lshoulder_robe_horde_d_01.m2", + }, + { + fileId = "143317", + value = "lshoulder_robe_hyjal_d_04.m2", + text = "lshoulder_robe_hyjal_d_04.m2", + }, + { + fileId = "143321", + value = "lshoulder_robe_pvpalliance_a_01.m2", + text = "lshoulder_robe_pvpalliance_a_01.m2", + }, + { + fileId = "143322", + value = "lshoulder_robe_pvpalliance_c_01.m2", + text = "lshoulder_robe_pvpalliance_c_01.m2", + }, + { + fileId = "143323", + value = "lshoulder_robe_pvphorde_a_01.m2", + text = "lshoulder_robe_pvphorde_a_01.m2", + }, + { + fileId = "143324", + value = "lshoulder_robe_pvphorde_c_01.m2", + text = "lshoulder_robe_pvphorde_c_01.m2", + }, + { + fileId = "143325", + value = "lshoulder_robe_raid_a_01.m2", + text = "lshoulder_robe_raid_a_01.m2", + }, + { + fileId = "143326", + value = "lshoulder_robe_raidmage_a_01.m2", + text = "lshoulder_robe_raidmage_a_01.m2", + }, + { + fileId = "143327", + value = "lshoulder_robe_raidmage_b_01.m2", + text = "lshoulder_robe_raidmage_b_01.m2", + }, + { + fileId = "143328", + value = "lshoulder_robe_raidmage_c_01.m2", + text = "lshoulder_robe_raidmage_c_01.m2", + }, + { + fileId = "143329", + value = "lshoulder_robe_raidmage_d_01.m2", + text = "lshoulder_robe_raidmage_d_01.m2", + }, + { + fileId = "143330", + value = "lshoulder_robe_raidmage_e_01.m2", + text = "lshoulder_robe_raidmage_e_01.m2", + }, + { + fileId = "143331", + value = "lshoulder_robe_raidmage_f_01.m2", + text = "lshoulder_robe_raidmage_f_01.m2", + }, + { + fileId = "143333", + value = "lshoulder_robe_raidpriest_a_01.m2", + text = "lshoulder_robe_raidpriest_a_01.m2", + }, + { + fileId = "143334", + value = "lshoulder_robe_raidpriest_b_01.m2", + text = "lshoulder_robe_raidpriest_b_01.m2", + }, + { + fileId = "143335", + value = "lshoulder_robe_raidpriest_c_01.m2", + text = "lshoulder_robe_raidpriest_c_01.m2", + }, + { + fileId = "143336", + value = "lshoulder_robe_raidpriest_d_01.m2", + text = "lshoulder_robe_raidpriest_d_01.m2", + }, + { + fileId = "143337", + value = "lshoulder_robe_raidpriest_e_01.m2", + text = "lshoulder_robe_raidpriest_e_01.m2", + }, + { + fileId = "143338", + value = "lshoulder_robe_raidpriest_f_01.m2", + text = "lshoulder_robe_raidpriest_f_01.m2", + }, + { + fileId = "143340", + value = "lshoulder_robe_raidshaman_c_01.m2", + text = "lshoulder_robe_raidshaman_c_01.m2", + }, + { + fileId = "143341", + value = "lshoulder_robe_raidwarlock_a_01.m2", + text = "lshoulder_robe_raidwarlock_a_01.m2", + }, + { + fileId = "143342", + value = "lshoulder_robe_raidwarlock_b_01.m2", + text = "lshoulder_robe_raidwarlock_b_01.m2", + }, + { + fileId = "143343", + value = "lshoulder_robe_raidwarlock_c_01.m2", + text = "lshoulder_robe_raidwarlock_c_01.m2", + }, + { + fileId = "143344", + value = "lshoulder_robe_raidwarlock_d_01.m2", + text = "lshoulder_robe_raidwarlock_d_01.m2", + }, + { + fileId = "143345", + value = "lshoulder_robe_raidwarlock_e_01.m2", + text = "lshoulder_robe_raidwarlock_e_01.m2", + }, + { + fileId = "143346", + value = "lshoulder_robe_raidwarlock_f_01.m2", + text = "lshoulder_robe_raidwarlock_f_01.m2", + }, + { + fileId = "143348", + value = "lshoulder_robe_sunwell_d_01.m2", + text = "lshoulder_robe_sunwell_d_01.m2", + }, + { + fileId = "143349", + value = "lshoulder_robe_zulaman_d_01.m2", + text = "lshoulder_robe_zulaman_d_01.m2", + }, + { + fileId = "143350", + value = "lshoulder_robe_zulaman_d_03.m2", + text = "lshoulder_robe_zulaman_d_03.m2", + }, + { + fileId = "143436", + value = "rshoulder_leather_a_01.m2", + text = "rshoulder_leather_a_01.m2", + }, + { + fileId = "143437", + value = "rshoulder_leather_a_02.m2", + text = "rshoulder_leather_a_02.m2", + }, + { + fileId = "143438", + value = "rshoulder_leather_a_03.m2", + text = "rshoulder_leather_a_03.m2", + }, + { + fileId = "143439", + value = "rshoulder_leather_a_03defias.m2", + text = "rshoulder_leather_a_03defias.m2", + }, + { + fileId = "143440", + value = "rshoulder_leather_a_04.m2", + text = "rshoulder_leather_a_04.m2", + }, + { + fileId = "143441", + value = "rshoulder_leather_a_05.m2", + text = "rshoulder_leather_a_05.m2", + }, + { + fileId = "143442", + value = "rshoulder_leather_ahnqiraj_a_01.m2", + text = "rshoulder_leather_ahnqiraj_a_01.m2", + }, + { + fileId = "143443", + value = "rshoulder_leather_b_01.m2", + text = "rshoulder_leather_b_01.m2", + }, + { + fileId = "143444", + value = "rshoulder_leather_b_02.m2", + text = "rshoulder_leather_b_02.m2", + }, + { + fileId = "143445", + value = "rshoulder_leather_b_03.m2", + text = "rshoulder_leather_b_03.m2", + }, + { + fileId = "143446", + value = "rshoulder_leather_b_04.m2", + text = "rshoulder_leather_b_04.m2", + }, + { + fileId = "143447", + value = "rshoulder_leather_blood_b_01.m2", + text = "rshoulder_leather_blood_b_01.m2", + }, + { + fileId = "143448", + value = "rshoulder_leather_c_01.m2", + text = "rshoulder_leather_c_01.m2", + }, + { + fileId = "143449", + value = "rshoulder_leather_c_02.m2", + text = "rshoulder_leather_c_02.m2", + }, + { + fileId = "143450", + value = "rshoulder_leather_c_03.m2", + text = "rshoulder_leather_c_03.m2", + }, + { + fileId = "143451", + value = "rshoulder_leather_d_01.m2", + text = "rshoulder_leather_d_01.m2", + }, + { + fileId = "143452", + value = "rshoulder_leather_d_02.m2", + text = "rshoulder_leather_d_02.m2", + }, + { + fileId = "143453", + value = "rshoulder_leather_d_03.m2", + text = "rshoulder_leather_d_03.m2", + }, + { + fileId = "143454", + value = "rshoulder_leather_draenei_b_01.m2", + text = "rshoulder_leather_draenei_b_01.m2", + }, + { + fileId = "143455", + value = "rshoulder_leather_draenei_b_02.m2", + text = "rshoulder_leather_draenei_b_02.m2", + }, + { + fileId = "143456", + value = "rshoulder_leather_dungeondruid_a_01.m2", + text = "rshoulder_leather_dungeondruid_a_01.m2", + }, + { + fileId = "143457", + value = "rshoulder_leather_dungeondruid_b_01.m2", + text = "rshoulder_leather_dungeondruid_b_01.m2", + }, + { + fileId = "143458", + value = "rshoulder_leather_dungeonrogue_b_01.m2", + text = "rshoulder_leather_dungeonrogue_b_01.m2", + }, + { + fileId = "143459", + value = "rshoulder_leather_horde_a_05.m2", + text = "rshoulder_leather_horde_a_05.m2", + }, + { + fileId = "143460", + value = "rshoulder_leather_horde_b_03.m2", + text = "rshoulder_leather_horde_b_03.m2", + }, + { + fileId = "143467", + value = "rshoulder_leather_pvpalliance_a_01.m2", + text = "rshoulder_leather_pvpalliance_a_01.m2", + }, + { + fileId = "143468", + value = "rshoulder_leather_pvphorde_a_01.m2", + text = "rshoulder_leather_pvphorde_a_01.m2", + }, + { + fileId = "143469", + value = "rshoulder_leather_pvphorde_c_01.m2", + text = "rshoulder_leather_pvphorde_c_01.m2", + }, + { + fileId = "143470", + value = "rshoulder_leather_raiddruid_a_01.m2", + text = "rshoulder_leather_raiddruid_a_01.m2", + }, + { + fileId = "143471", + value = "rshoulder_leather_raiddruid_b_01.m2", + text = "rshoulder_leather_raiddruid_b_01.m2", + }, + { + fileId = "143472", + value = "rshoulder_leather_raiddruid_c_01.m2", + text = "rshoulder_leather_raiddruid_c_01.m2", + }, + { + fileId = "143473", + value = "rshoulder_leather_raiddruid_d_01.m2", + text = "rshoulder_leather_raiddruid_d_01.m2", + }, + { + fileId = "143474", + value = "rshoulder_leather_raiddruid_e_01.m2", + text = "rshoulder_leather_raiddruid_e_01.m2", + }, + { + fileId = "143475", + value = "rshoulder_leather_raiddruid_f_01.m2", + text = "rshoulder_leather_raiddruid_f_01.m2", + }, + { + fileId = "143476", + value = "rshoulder_leather_raidrogue_a_01.m2", + text = "rshoulder_leather_raidrogue_a_01.m2", + }, + { + fileId = "143477", + value = "rshoulder_leather_raidrogue_b_01.m2", + text = "rshoulder_leather_raidrogue_b_01.m2", + }, + { + fileId = "143478", + value = "rshoulder_leather_raidrogue_c_01.m2", + text = "rshoulder_leather_raidrogue_c_01.m2", + }, + { + fileId = "143479", + value = "rshoulder_leather_raidrogue_d_01.m2", + text = "rshoulder_leather_raidrogue_d_01.m2", + }, + { + fileId = "143480", + value = "rshoulder_leather_raidrogue_e_01.m2", + text = "rshoulder_leather_raidrogue_e_01.m2", + }, + { + fileId = "143481", + value = "rshoulder_leather_raidrogue_f_01.m2", + text = "rshoulder_leather_raidrogue_f_01.m2", + }, + { + fileId = "143483", + value = "rshoulder_leather_sunwell_d_01.m2", + text = "rshoulder_leather_sunwell_d_01.m2", + }, + { + fileId = "143484", + value = "rshoulder_leather_zulaman_d_01.m2", + text = "rshoulder_leather_zulaman_d_01.m2", + }, + { + fileId = "143485", + value = "rshoulder_leather_zulaman_d_03.m2", + text = "rshoulder_leather_zulaman_d_03.m2", + }, + { + fileId = "143486", + value = "rshoulder_mail_a_01.m2", + text = "rshoulder_mail_a_01.m2", + }, + { + fileId = "143487", + value = "rshoulder_mail_a_02.m2", + text = "rshoulder_mail_a_02.m2", + }, + { + fileId = "143488", + value = "rshoulder_mail_a_03.m2", + text = "rshoulder_mail_a_03.m2", + }, + { + fileId = "143489", + value = "rshoulder_mail_ahnqiraj_a_01.m2", + text = "rshoulder_mail_ahnqiraj_a_01.m2", + }, + { + fileId = "143490", + value = "rshoulder_mail_b_01.m2", + text = "rshoulder_mail_b_01.m2", + }, + { + fileId = "143491", + value = "rshoulder_mail_b_02.m2", + text = "rshoulder_mail_b_02.m2", + }, + { + fileId = "143492", + value = "rshoulder_mail_b_03.m2", + text = "rshoulder_mail_b_03.m2", + }, + { + fileId = "143493", + value = "rshoulder_mail_b_05.m2", + text = "rshoulder_mail_b_05.m2", + }, + { + fileId = "143494", + value = "rshoulder_mail_blood_b_01.m2", + text = "rshoulder_mail_blood_b_01.m2", + }, + { + fileId = "143495", + value = "rshoulder_mail_c_01.m2", + text = "rshoulder_mail_c_01.m2", + }, + { + fileId = "143496", + value = "rshoulder_mail_c_02.m2", + text = "rshoulder_mail_c_02.m2", + }, + { + fileId = "143497", + value = "rshoulder_mail_c_03.m2", + text = "rshoulder_mail_c_03.m2", + }, + { + fileId = "143498", + value = "rshoulder_mail_c_04.m2", + text = "rshoulder_mail_c_04.m2", + }, + { + fileId = "143499", + value = "rshoulder_mail_d_01.m2", + text = "rshoulder_mail_d_01.m2", + }, + { + fileId = "143500", + value = "rshoulder_mail_d_02.m2", + text = "rshoulder_mail_d_02.m2", + }, + { + fileId = "143501", + value = "rshoulder_mail_draenei_b_01.m2", + text = "rshoulder_mail_draenei_b_01.m2", + }, + { + fileId = "143502", + value = "rshoulder_mail_draenei_b_02.m2", + text = "rshoulder_mail_draenei_b_02.m2", + }, + { + fileId = "143503", + value = "rshoulder_mail_dungeonhunter_a_01.m2", + text = "rshoulder_mail_dungeonhunter_a_01.m2", + }, + { + fileId = "143504", + value = "rshoulder_mail_dungeonhunter_b_02.m2", + text = "rshoulder_mail_dungeonhunter_b_02.m2", + }, + { + fileId = "143505", + value = "rshoulder_mail_dungeonshaman_a_01.m2", + text = "rshoulder_mail_dungeonshaman_a_01.m2", + }, + { + fileId = "143506", + value = "rshoulder_mail_dungeonshaman_b_01.m2", + text = "rshoulder_mail_dungeonshaman_b_01.m2", + }, + { + fileId = "143512", + value = "rshoulder_mail_pvpalliance_a_01.m2", + text = "rshoulder_mail_pvpalliance_a_01.m2", + }, + { + fileId = "143513", + value = "rshoulder_mail_pvpalliance_c_01.m2", + text = "rshoulder_mail_pvpalliance_c_01.m2", + }, + { + fileId = "143514", + value = "rshoulder_mail_pvphorde_a_01.m2", + text = "rshoulder_mail_pvphorde_a_01.m2", + }, + { + fileId = "143515", + value = "rshoulder_mail_pvphorde_c_01.m2", + text = "rshoulder_mail_pvphorde_c_01.m2", + }, + { + fileId = "143516", + value = "rshoulder_mail_raidhunter_a_01.m2", + text = "rshoulder_mail_raidhunter_a_01.m2", + }, + { + fileId = "143517", + value = "rshoulder_mail_raidhunter_b_01.m2", + text = "rshoulder_mail_raidhunter_b_01.m2", + }, + { + fileId = "143518", + value = "rshoulder_mail_raidhunter_c_01.m2", + text = "rshoulder_mail_raidhunter_c_01.m2", + }, + { + fileId = "143519", + value = "rshoulder_mail_raidhunter_d_01.m2", + text = "rshoulder_mail_raidhunter_d_01.m2", + }, + { + fileId = "143520", + value = "rshoulder_mail_raidhunter_e_01.m2", + text = "rshoulder_mail_raidhunter_e_01.m2", + }, + { + fileId = "143521", + value = "rshoulder_mail_raidhunter_f_01.m2", + text = "rshoulder_mail_raidhunter_f_01.m2", + }, + { + fileId = "143523", + value = "rshoulder_mail_raidshaman_a_01.m2", + text = "rshoulder_mail_raidshaman_a_01.m2", + }, + { + fileId = "143524", + value = "rshoulder_mail_raidshaman_b_01.m2", + text = "rshoulder_mail_raidshaman_b_01.m2", + }, + { + fileId = "143525", + value = "rshoulder_mail_raidshaman_d_01.m2", + text = "rshoulder_mail_raidshaman_d_01.m2", + }, + { + fileId = "143526", + value = "rshoulder_mail_raidshaman_e_01.m2", + text = "rshoulder_mail_raidshaman_e_01.m2", + }, + { + fileId = "143527", + value = "rshoulder_mail_raidshaman_f_01.m2", + text = "rshoulder_mail_raidshaman_f_01.m2", + }, + { + fileId = "143528", + value = "rshoulder_mail_sunwell_d_01.m2", + text = "rshoulder_mail_sunwell_d_01.m2", + }, + { + fileId = "143529", + value = "rshoulder_mail_zulaman_d_01.m2", + text = "rshoulder_mail_zulaman_d_01.m2", + }, + { + fileId = "143530", + value = "rshoulder_mail_zulaman_d_03.m2", + text = "rshoulder_mail_zulaman_d_03.m2", + }, + { + fileId = "143531", + value = "rshoulder_plate_a_01.m2", + text = "rshoulder_plate_a_01.m2", + }, + { + fileId = "143532", + value = "rshoulder_plate_a_02.m2", + text = "rshoulder_plate_a_02.m2", + }, + { + fileId = "143533", + value = "rshoulder_plate_a_02ironforgeguard.m2", + text = "rshoulder_plate_a_02ironforgeguard.m2", + }, + { + fileId = "143534", + value = "rshoulder_plate_a_03.m2", + text = "rshoulder_plate_a_03.m2", + }, + { + fileId = "143535", + value = "rshoulder_plate_a_04.m2", + text = "rshoulder_plate_a_04.m2", + }, + { + fileId = "143536", + value = "rshoulder_plate_ahnqiraj_a_01.m2", + text = "rshoulder_plate_ahnqiraj_a_01.m2", + }, + { + fileId = "143537", + value = "rshoulder_plate_b_01.m2", + text = "rshoulder_plate_b_01.m2", + }, + { + fileId = "143538", + value = "rshoulder_plate_b_02.m2", + text = "rshoulder_plate_b_02.m2", + }, + { + fileId = "143539", + value = "rshoulder_plate_b_03.m2", + text = "rshoulder_plate_b_03.m2", + }, + { + fileId = "143540", + value = "rshoulder_plate_b_04.m2", + text = "rshoulder_plate_b_04.m2", + }, + { + fileId = "143541", + value = "rshoulder_plate_b_05.m2", + text = "rshoulder_plate_b_05.m2", + }, + { + fileId = "143542", + value = "rshoulder_plate_bloodknight_d_02.m2", + text = "rshoulder_plate_bloodknight_d_02.m2", + }, + { + fileId = "143543", + value = "rshoulder_plate_c_01.m2", + text = "rshoulder_plate_c_01.m2", + }, + { + fileId = "143544", + value = "rshoulder_plate_c_03.m2", + text = "rshoulder_plate_c_03.m2", + }, + { + fileId = "143545", + value = "rshoulder_plate_c_04.m2", + text = "rshoulder_plate_c_04.m2", + }, + { + fileId = "143546", + value = "rshoulder_plate_c_05.m2", + text = "rshoulder_plate_c_05.m2", + }, + { + fileId = "143547", + value = "rshoulder_plate_d_01.m2", + text = "rshoulder_plate_d_01.m2", + }, + { + fileId = "143548", + value = "rshoulder_plate_d_02.m2", + text = "rshoulder_plate_d_02.m2", + }, + { + fileId = "143549", + value = "rshoulder_plate_d_03.m2", + text = "rshoulder_plate_d_03.m2", + }, + { + fileId = "143550", + value = "rshoulder_plate_d_04.m2", + text = "rshoulder_plate_d_04.m2", + }, + { + fileId = "143551", + value = "rshoulder_plate_d_05.m2", + text = "rshoulder_plate_d_05.m2", + }, + { + fileId = "143552", + value = "rshoulder_plate_d_06.m2", + text = "rshoulder_plate_d_06.m2", + }, + { + fileId = "143553", + value = "rshoulder_plate_draeneiguard_a_01.m2", + text = "rshoulder_plate_draeneiguard_a_01.m2", + }, + { + fileId = "143554", + value = "rshoulder_plate_draeneiguard_b_01.m2", + text = "rshoulder_plate_draeneiguard_b_01.m2", + }, + { + fileId = "143555", + value = "rshoulder_plate_dungeonpaladin_a_01.m2", + text = "rshoulder_plate_dungeonpaladin_a_01.m2", + }, + { + fileId = "143556", + value = "rshoulder_plate_dungeonpaladin_b_01.m2", + text = "rshoulder_plate_dungeonpaladin_b_01.m2", + }, + { + fileId = "143558", + value = "rshoulder_plate_dungeonwarrior_a_01.m2", + text = "rshoulder_plate_dungeonwarrior_a_01.m2", + }, + { + fileId = "143559", + value = "rshoulder_plate_dungeonwarrior_b_01.m2", + text = "rshoulder_plate_dungeonwarrior_b_01.m2", + }, + { + fileId = "143560", + value = "rshoulder_plate_haremmatron_d_01.m2", + text = "rshoulder_plate_haremmatron_d_01.m2", + }, + { + fileId = "143561", + value = "rshoulder_plate_horde_c_05.m2", + text = "rshoulder_plate_horde_c_05.m2", + }, + { + fileId = "143562", + value = "rshoulder_plate_horde_d_02.m2", + text = "rshoulder_plate_horde_d_02.m2", + }, + { + fileId = "143563", + value = "rshoulder_plate_hyjal_d_04.m2", + text = "rshoulder_plate_hyjal_d_04.m2", + }, + { + fileId = "143564", + value = "rshoulder_plate_hyjal_d_05.m2", + text = "rshoulder_plate_hyjal_d_05.m2", + }, + { + fileId = "143570", + value = "rshoulder_plate_pvpalliance_a_01.m2", + text = "rshoulder_plate_pvpalliance_a_01.m2", + }, + { + fileId = "143571", + value = "rshoulder_plate_pvphorde_a_01.m2", + text = "rshoulder_plate_pvphorde_a_01.m2", + }, + { + fileId = "143573", + value = "rshoulder_plate_raidpaladin_a_01.m2", + text = "rshoulder_plate_raidpaladin_a_01.m2", + }, + { + fileId = "143574", + value = "rshoulder_plate_raidpaladin_b_01.m2", + text = "rshoulder_plate_raidpaladin_b_01.m2", + }, + { + fileId = "143575", + value = "rshoulder_plate_raidpaladin_c_01.m2", + text = "rshoulder_plate_raidpaladin_c_01.m2", + }, + { + fileId = "143576", + value = "rshoulder_plate_raidpaladin_d_01.m2", + text = "rshoulder_plate_raidpaladin_d_01.m2", + }, + { + fileId = "143577", + value = "rshoulder_plate_raidpaladin_e_01.m2", + text = "rshoulder_plate_raidpaladin_e_01.m2", + }, + { + fileId = "143578", + value = "rshoulder_plate_raidpaladin_f_01.m2", + text = "rshoulder_plate_raidpaladin_f_01.m2", + }, + { + fileId = "143583", + value = "rshoulder_plate_raidwarrior_a_01.m2", + text = "rshoulder_plate_raidwarrior_a_01.m2", + }, + { + fileId = "143584", + value = "rshoulder_plate_raidwarrior_b_01.m2", + text = "rshoulder_plate_raidwarrior_b_01.m2", + }, + { + fileId = "143585", + value = "rshoulder_plate_raidwarrior_c_01.m2", + text = "rshoulder_plate_raidwarrior_c_01.m2", + }, + { + fileId = "143586", + value = "rshoulder_plate_raidwarrior_d_01.m2", + text = "rshoulder_plate_raidwarrior_d_01.m2", + }, + { + fileId = "143587", + value = "rshoulder_plate_raidwarrior_e_01.m2", + text = "rshoulder_plate_raidwarrior_e_01.m2", + }, + { + fileId = "143588", + value = "rshoulder_plate_raidwarrior_f_01.m2", + text = "rshoulder_plate_raidwarrior_f_01.m2", + }, + { + fileId = "143589", + value = "rshoulder_plate_sunwell_c_01.m2", + text = "rshoulder_plate_sunwell_c_01.m2", + }, + { + fileId = "143590", + value = "rshoulder_plate_sunwell_d_01.m2", + text = "rshoulder_plate_sunwell_d_01.m2", + }, + { + fileId = "143591", + value = "rshoulder_plate_zulaman_d_01.m2", + text = "rshoulder_plate_zulaman_d_01.m2", + }, + { + fileId = "143592", + value = "rshoulder_plate_zulaman_d_03.m2", + text = "rshoulder_plate_zulaman_d_03.m2", + }, + { + fileId = "143593", + value = "rshoulder_raiddruid_b_01.m2", + text = "rshoulder_raiddruid_b_01.m2", + }, + { + fileId = "143594", + value = "rshoulder_robe_a_01.m2", + text = "rshoulder_robe_a_01.m2", + }, + { + fileId = "143595", + value = "rshoulder_robe_a_02.m2", + text = "rshoulder_robe_a_02.m2", + }, + { + fileId = "143596", + value = "rshoulder_robe_a_03.m2", + text = "rshoulder_robe_a_03.m2", + }, + { + fileId = "143597", + value = "rshoulder_robe_ahnqiraj_a_01.m2", + text = "rshoulder_robe_ahnqiraj_a_01.m2", + }, + { + fileId = "143598", + value = "rshoulder_robe_b_01.m2", + text = "rshoulder_robe_b_01.m2", + }, + { + fileId = "143599", + value = "rshoulder_robe_b_02.m2", + text = "rshoulder_robe_b_02.m2", + }, + { + fileId = "143600", + value = "rshoulder_robe_b_03.m2", + text = "rshoulder_robe_b_03.m2", + }, + { + fileId = "143601", + value = "rshoulder_robe_b_04.m2", + text = "rshoulder_robe_b_04.m2", + }, + { + fileId = "143602", + value = "rshoulder_robe_c_01.m2", + text = "rshoulder_robe_c_01.m2", + }, + { + fileId = "143603", + value = "rshoulder_robe_c_02.m2", + text = "rshoulder_robe_c_02.m2", + }, + { + fileId = "143604", + value = "rshoulder_robe_c_03.m2", + text = "rshoulder_robe_c_03.m2", + }, + { + fileId = "143605", + value = "rshoulder_robe_d_01.m2", + text = "rshoulder_robe_d_01.m2", + }, + { + fileId = "143606", + value = "rshoulder_robe_d_04.m2", + text = "rshoulder_robe_d_04.m2", + }, + { + fileId = "143607", + value = "rshoulder_robe_dungeonmage_a_01.m2", + text = "rshoulder_robe_dungeonmage_a_01.m2", + }, + { + fileId = "143608", + value = "rshoulder_robe_dungeonmage_b_01.m2", + text = "rshoulder_robe_dungeonmage_b_01.m2", + }, + { + fileId = "143609", + value = "rshoulder_robe_dungeonpriest_a_01.m2", + text = "rshoulder_robe_dungeonpriest_a_01.m2", + }, + { + fileId = "143610", + value = "rshoulder_robe_dungeonpriest_b_01.m2", + text = "rshoulder_robe_dungeonpriest_b_01.m2", + }, + { + fileId = "143611", + value = "rshoulder_robe_dungeonwarlock_a_01.m2", + text = "rshoulder_robe_dungeonwarlock_a_01.m2", + }, + { + fileId = "143612", + value = "rshoulder_robe_dungeonwarlock_b_01.m2", + text = "rshoulder_robe_dungeonwarlock_b_01.m2", + }, + { + fileId = "143613", + value = "rshoulder_robe_holiday_summerfest_a_01.m2", + text = "rshoulder_robe_holiday_summerfest_a_01.m2", + }, + { + fileId = "143614", + value = "rshoulder_robe_horde_a_03.m2", + text = "rshoulder_robe_horde_a_03.m2", + }, + { + fileId = "143615", + value = "rshoulder_robe_horde_d_01.m2", + text = "rshoulder_robe_horde_d_01.m2", + }, + { + fileId = "143616", + value = "rshoulder_robe_hyjal_d_04.m2", + text = "rshoulder_robe_hyjal_d_04.m2", + }, + { + fileId = "143620", + value = "rshoulder_robe_pvpalliance_a_01.m2", + text = "rshoulder_robe_pvpalliance_a_01.m2", + }, + { + fileId = "143621", + value = "rshoulder_robe_pvpalliance_c_01.m2", + text = "rshoulder_robe_pvpalliance_c_01.m2", + }, + { + fileId = "143622", + value = "rshoulder_robe_pvphorde_a_01.m2", + text = "rshoulder_robe_pvphorde_a_01.m2", + }, + { + fileId = "143623", + value = "rshoulder_robe_pvphorde_c_01.m2", + text = "rshoulder_robe_pvphorde_c_01.m2", + }, + { + fileId = "143624", + value = "rshoulder_robe_raid_a_01.m2", + text = "rshoulder_robe_raid_a_01.m2", + }, + { + fileId = "143625", + value = "rshoulder_robe_raidmage_a_01.m2", + text = "rshoulder_robe_raidmage_a_01.m2", + }, + { + fileId = "143626", + value = "rshoulder_robe_raidmage_b_01.m2", + text = "rshoulder_robe_raidmage_b_01.m2", + }, + { + fileId = "143627", + value = "rshoulder_robe_raidmage_c_01.m2", + text = "rshoulder_robe_raidmage_c_01.m2", + }, + { + fileId = "143628", + value = "rshoulder_robe_raidmage_d_01.m2", + text = "rshoulder_robe_raidmage_d_01.m2", + }, + { + fileId = "143629", + value = "rshoulder_robe_raidmage_e_01.m2", + text = "rshoulder_robe_raidmage_e_01.m2", + }, + { + fileId = "143630", + value = "rshoulder_robe_raidmage_f_01.m2", + text = "rshoulder_robe_raidmage_f_01.m2", + }, + { + fileId = "143632", + value = "rshoulder_robe_raidpriest_a_01.m2", + text = "rshoulder_robe_raidpriest_a_01.m2", + }, + { + fileId = "143633", + value = "rshoulder_robe_raidpriest_b_01.m2", + text = "rshoulder_robe_raidpriest_b_01.m2", + }, + { + fileId = "143634", + value = "rshoulder_robe_raidpriest_c_01.m2", + text = "rshoulder_robe_raidpriest_c_01.m2", + }, + { + fileId = "143635", + value = "rshoulder_robe_raidpriest_d_01.m2", + text = "rshoulder_robe_raidpriest_d_01.m2", + }, + { + fileId = "143636", + value = "rshoulder_robe_raidpriest_e_01.m2", + text = "rshoulder_robe_raidpriest_e_01.m2", + }, + { + fileId = "143637", + value = "rshoulder_robe_raidpriest_f_01.m2", + text = "rshoulder_robe_raidpriest_f_01.m2", + }, + { + fileId = "143639", + value = "rshoulder_robe_raidshaman_c_01.m2", + text = "rshoulder_robe_raidshaman_c_01.m2", + }, + { + fileId = "143640", + value = "rshoulder_robe_raidwarlock_a_01.m2", + text = "rshoulder_robe_raidwarlock_a_01.m2", + }, + { + fileId = "143641", + value = "rshoulder_robe_raidwarlock_b_01.m2", + text = "rshoulder_robe_raidwarlock_b_01.m2", + }, + { + fileId = "143642", + value = "rshoulder_robe_raidwarlock_c_01.m2", + text = "rshoulder_robe_raidwarlock_c_01.m2", + }, + { + fileId = "143643", + value = "rshoulder_robe_raidwarlock_d_01.m2", + text = "rshoulder_robe_raidwarlock_d_01.m2", + }, + { + fileId = "143644", + value = "rshoulder_robe_raidwarlock_e_01.m2", + text = "rshoulder_robe_raidwarlock_e_01.m2", + }, + { + fileId = "143645", + value = "rshoulder_robe_raidwarlock_f_01.m2", + text = "rshoulder_robe_raidwarlock_f_01.m2", + }, + { + fileId = "143647", + value = "rshoulder_robe_sunwell_d_01.m2", + text = "rshoulder_robe_sunwell_d_01.m2", + }, + { + fileId = "143648", + value = "rshoulder_robe_zulaman_d_01.m2", + text = "rshoulder_robe_zulaman_d_01.m2", + }, + { + fileId = "143649", + value = "rshoulder_robe_zulaman_d_03.m2", + text = "rshoulder_robe_zulaman_d_03.m2", + }, + }, + value = "shoulder", + text = "shoulder", + }, + { + children = { + { + fileId = "144326", + value = "1htrollspear01.m2", + text = "1htrollspear01.m2", + }, + { + fileId = "144340", + value = "ashbringer02.m2", + text = "ashbringer02.m2", + }, + { + fileId = "144344", + value = "axe_1h_ahnqiraj_d_01.m2", + text = "axe_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "144345", + value = "axe_1h_ahnqiraj_d_02.m2", + text = "axe_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "144347", + value = "axe_1h_blacksmithing_d_01.m2", + text = "axe_1h_blacksmithing_d_01.m2", + }, + { + fileId = "144349", + value = "axe_1h_blacksmithing_d_02.m2", + text = "axe_1h_blacksmithing_d_02.m2", + }, + { + fileId = "144351", + value = "axe_1h_blacksmithing_d_03.m2", + text = "axe_1h_blacksmithing_d_03.m2", + }, + { + fileId = "144353", + value = "axe_1h_blackwing_a_01.m2", + text = "axe_1h_blackwing_a_01.m2", + }, + { + fileId = "144355", + value = "axe_1h_blackwing_a_02.m2", + text = "axe_1h_blackwing_a_02.m2", + }, + { + fileId = "144357", + value = "axe_1h_blood_a_01.m2", + text = "axe_1h_blood_a_01.m2", + }, + { + fileId = "144361", + value = "axe_1h_blood_a_02.m2", + text = "axe_1h_blood_a_02.m2", + }, + { + fileId = "144367", + value = "axe_1h_blood_a_03.m2", + text = "axe_1h_blood_a_03.m2", + }, + { + fileId = "144388", + value = "axe_1h_draenei_a_01.m2", + text = "axe_1h_draenei_a_01.m2", + }, + { + fileId = "144393", + value = "axe_1h_draenei_b_01.m2", + text = "axe_1h_draenei_b_01.m2", + }, + { + fileId = "144398", + value = "axe_1h_draenei_c_01.m2", + text = "axe_1h_draenei_c_01.m2", + }, + { + fileId = "144403", + value = "axe_1h_draenei_d_01.m2", + text = "axe_1h_draenei_d_01.m2", + }, + { + fileId = "144412", + value = "axe_1h_flint_a_01.m2", + text = "axe_1h_flint_a_01.m2", + }, + { + fileId = "144416", + value = "axe_1h_hatchet_a_01.m2", + text = "axe_1h_hatchet_a_01.m2", + }, + { + fileId = "144420", + value = "axe_1h_hatchet_a_02.m2", + text = "axe_1h_hatchet_a_02.m2", + }, + { + fileId = "144424", + value = "axe_1h_hatchet_a_03.m2", + text = "axe_1h_hatchet_a_03.m2", + }, + { + fileId = "144428", + value = "axe_1h_hatchet_b_01.m2", + text = "axe_1h_hatchet_b_01.m2", + }, + { + fileId = "144432", + value = "axe_1h_hatchet_b_02.m2", + text = "axe_1h_hatchet_b_02.m2", + }, + { + fileId = "144436", + value = "axe_1h_hatchet_b_03.m2", + text = "axe_1h_hatchet_b_03.m2", + }, + { + fileId = "144441", + value = "axe_1h_hatchet_b_04holy.m2", + text = "axe_1h_hatchet_b_04holy.m2", + }, + { + fileId = "144442", + value = "axe_1h_hatchet_c_01.m2", + text = "axe_1h_hatchet_c_01.m2", + }, + { + fileId = "144446", + value = "axe_1h_hatchet_c_02.m2", + text = "axe_1h_hatchet_c_02.m2", + }, + { + fileId = "144450", + value = "axe_1h_hatchet_c_03.m2", + text = "axe_1h_hatchet_c_03.m2", + }, + { + fileId = "144455", + value = "axe_1h_hatchet_d_01.m2", + text = "axe_1h_hatchet_d_01.m2", + }, + { + fileId = "144456", + value = "axe_1h_horde_a_01.m2", + text = "axe_1h_horde_a_01.m2", + }, + { + fileId = "144462", + value = "axe_1h_horde_a_02.m2", + text = "axe_1h_horde_a_02.m2", + }, + { + fileId = "144464", + value = "axe_1h_horde_a_03.m2", + text = "axe_1h_horde_a_03.m2", + }, + { + fileId = "144470", + value = "axe_1h_horde_a_04.m2", + text = "axe_1h_horde_a_04.m2", + }, + { + fileId = "144475", + value = "axe_1h_horde_b_01.m2", + text = "axe_1h_horde_b_01.m2", + }, + { + fileId = "144478", + value = "axe_1h_horde_b_02.m2", + text = "axe_1h_horde_b_02.m2", + }, + { + fileId = "144483", + value = "axe_1h_horde_b_03.m2", + text = "axe_1h_horde_b_03.m2", + }, + { + fileId = "144488", + value = "axe_1h_horde_c_01.m2", + text = "axe_1h_horde_c_01.m2", + }, + { + fileId = "144494", + value = "axe_1h_horde_c_02.m2", + text = "axe_1h_horde_c_02.m2", + }, + { + fileId = "144500", + value = "axe_1h_horde_c_03.m2", + text = "axe_1h_horde_c_03.m2", + }, + { + fileId = "144505", + value = "axe_1h_horde_c_04.m2", + text = "axe_1h_horde_c_04.m2", + }, + { + fileId = "144513", + value = "axe_1h_horde_d_01.m2", + text = "axe_1h_horde_d_01.m2", + }, + { + fileId = "144523", + value = "axe_1h_horde_d_02.m2", + text = "axe_1h_horde_d_02.m2", + }, + { + fileId = "144536", + value = "axe_1h_horde_d_03.m2", + text = "axe_1h_horde_d_03.m2", + }, + { + fileId = "144593", + value = "axe_1h_outlandraid_d_01.m2", + text = "axe_1h_outlandraid_d_01.m2", + }, + { + fileId = "144595", + value = "axe_1h_outlandraid_d_02.m2", + text = "axe_1h_outlandraid_d_02.m2", + }, + { + fileId = "144597", + value = "axe_1h_outlandraid_d_03.m2", + text = "axe_1h_outlandraid_d_03.m2", + }, + { + fileId = "144599", + value = "axe_1h_outlandraid_d_04.m2", + text = "axe_1h_outlandraid_d_04.m2", + }, + { + fileId = "144604", + value = "axe_1h_outlandraid_d_05.m2", + text = "axe_1h_outlandraid_d_05.m2", + }, + { + fileId = "144606", + value = "axe_1h_outlandraid_d_06.m2", + text = "axe_1h_outlandraid_d_06.m2", + }, + { + fileId = "144607", + value = "axe_1h_pick_a_01.m2", + text = "axe_1h_pick_a_01.m2", + }, + { + fileId = "144612", + value = "axe_1h_pvpalliance_a_01.m2", + text = "axe_1h_pvpalliance_a_01.m2", + }, + { + fileId = "144615", + value = "axe_1h_pvphorde_a_01.m2", + text = "axe_1h_pvphorde_a_01.m2", + }, + { + fileId = "144618", + value = "axe_1h_raid_d_01.m2", + text = "axe_1h_raid_d_01.m2", + }, + { + fileId = "144620", + value = "axe_1h_raid_d_02.m2", + text = "axe_1h_raid_d_02.m2", + }, + { + fileId = "144622", + value = "axe_1h_raid_d_03.m2", + text = "axe_1h_raid_d_03.m2", + }, + { + fileId = "144624", + value = "axe_1h_raid_d_04.m2", + text = "axe_1h_raid_d_04.m2", + }, + { + fileId = "144626", + value = "axe_1h_raid_d_05.m2", + text = "axe_1h_raid_d_05.m2", + }, + { + fileId = "144628", + value = "axe_1h_raid_d_06.m2", + text = "axe_1h_raid_d_06.m2", + }, + { + fileId = "144629", + value = "axe_1h_stratholme_d_01.m2", + text = "axe_1h_stratholme_d_01.m2", + }, + { + fileId = "144631", + value = "axe_1h_troll_b_01.m2", + text = "axe_1h_troll_b_01.m2", + }, + { + fileId = "144639", + value = "axe_1h_zulaman_d_01.m2", + text = "axe_1h_zulaman_d_01.m2", + }, + { + fileId = "144645", + value = "axe_1h_zulgurub_d_01.m2", + text = "axe_1h_zulgurub_d_01.m2", + }, + { + fileId = "144647", + value = "axe_2h_ahnqiraj_d_01.m2", + text = "axe_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "144648", + value = "axe_2h_alliance_c_01.m2", + text = "axe_2h_alliance_c_01.m2", + }, + { + fileId = "144654", + value = "axe_2h_alliance_c_02.m2", + text = "axe_2h_alliance_c_02.m2", + }, + { + fileId = "144660", + value = "axe_2h_alliance_c_03.m2", + text = "axe_2h_alliance_c_03.m2", + }, + { + fileId = "144666", + value = "axe_2h_alliance_d_01.m2", + text = "axe_2h_alliance_d_01.m2", + }, + { + fileId = "144672", + value = "axe_2h_alliance_d_02.m2", + text = "axe_2h_alliance_d_02.m2", + }, + { + fileId = "144678", + value = "axe_2h_battle_a_01.m2", + text = "axe_2h_battle_a_01.m2", + }, + { + fileId = "144682", + value = "axe_2h_battle_a_02.m2", + text = "axe_2h_battle_a_02.m2", + }, + { + fileId = "144686", + value = "axe_2h_battle_a_03.m2", + text = "axe_2h_battle_a_03.m2", + }, + { + fileId = "144692", + value = "axe_2h_battle_b_01.m2", + text = "axe_2h_battle_b_01.m2", + }, + { + fileId = "144693", + value = "axe_2h_battle_b_02holy.m2", + text = "axe_2h_battle_b_02holy.m2", + }, + { + fileId = "144695", + value = "axe_2h_blacksmithing_d_01.m2", + text = "axe_2h_blacksmithing_d_01.m2", + }, + { + fileId = "144697", + value = "axe_2h_blacksmithing_d_02.m2", + text = "axe_2h_blacksmithing_d_02.m2", + }, + { + fileId = "144699", + value = "axe_2h_blacksmithing_d_03.m2", + text = "axe_2h_blacksmithing_d_03.m2", + }, + { + fileId = "144700", + value = "axe_2h_blacktemple_d_01.m2", + text = "axe_2h_blacktemple_d_01.m2", + }, + { + fileId = "144704", + value = "axe_2h_blackwing_a_01.m2", + text = "axe_2h_blackwing_a_01.m2", + }, + { + fileId = "144706", + value = "axe_2h_blackwing_a_02.m2", + text = "axe_2h_blackwing_a_02.m2", + }, + { + fileId = "144708", + value = "axe_2h_blood_a_01.m2", + text = "axe_2h_blood_a_01.m2", + }, + { + fileId = "144713", + value = "axe_2h_blood_a_02.m2", + text = "axe_2h_blood_a_02.m2", + }, + { + fileId = "144725", + value = "axe_2h_draenei_a_01.m2", + text = "axe_2h_draenei_a_01.m2", + }, + { + fileId = "144730", + value = "axe_2h_draenei_b_01.m2", + text = "axe_2h_draenei_b_01.m2", + }, + { + fileId = "144736", + value = "axe_2h_draenei_c_01.m2", + text = "axe_2h_draenei_c_01.m2", + }, + { + fileId = "144742", + value = "axe_2h_draenei_d_01.m2", + text = "axe_2h_draenei_d_01.m2", + }, + { + fileId = "144748", + value = "axe_2h_draenei_d_02.m2", + text = "axe_2h_draenei_d_02.m2", + }, + { + fileId = "144759", + value = "axe_2h_gorehowl_c_01.m2", + text = "axe_2h_gorehowl_c_01.m2", + }, + { + fileId = "144760", + value = "axe_2h_gorehowl_d_01.m2", + text = "axe_2h_gorehowl_d_01.m2", + }, + { + fileId = "144762", + value = "axe_2h_hellfire_d_01.m2", + text = "axe_2h_hellfire_d_01.m2", + }, + { + fileId = "144763", + value = "axe_2h_horde_a_01.m2", + text = "axe_2h_horde_a_01.m2", + }, + { + fileId = "144770", + value = "axe_2h_horde_a_02.m2", + text = "axe_2h_horde_a_02.m2", + }, + { + fileId = "144776", + value = "axe_2h_horde_a_03.m2", + text = "axe_2h_horde_a_03.m2", + }, + { + fileId = "144782", + value = "axe_2h_horde_a_04.m2", + text = "axe_2h_horde_a_04.m2", + }, + { + fileId = "144788", + value = "axe_2h_horde_b_01.m2", + text = "axe_2h_horde_b_01.m2", + }, + { + fileId = "144791", + value = "axe_2h_horde_c_01.m2", + text = "axe_2h_horde_c_01.m2", + }, + { + fileId = "144798", + value = "axe_2h_horde_c_02.m2", + text = "axe_2h_horde_c_02.m2", + }, + { + fileId = "144804", + value = "axe_2h_horde_d_01.m2", + text = "axe_2h_horde_d_01.m2", + }, + { + fileId = "144810", + value = "axe_2h_horde_d_02.m2", + text = "axe_2h_horde_d_02.m2", + }, + { + fileId = "144813", + value = "axe_2h_horde_d_03.m2", + text = "axe_2h_horde_d_03.m2", + }, + { + fileId = "144817", + value = "axe_2h_horde_d_04.m2", + text = "axe_2h_horde_d_04.m2", + }, + { + fileId = "144860", + value = "axe_2h_outlandraid_d_01.m2", + text = "axe_2h_outlandraid_d_01.m2", + }, + { + fileId = "144862", + value = "axe_2h_outlandraid_d_02.m2", + text = "axe_2h_outlandraid_d_02.m2", + }, + { + fileId = "144864", + value = "axe_2h_outlandraid_d_02_green.m2", + text = "axe_2h_outlandraid_d_02_green.m2", + }, + { + fileId = "144865", + value = "axe_2h_outlandraid_d_02_red.m2", + text = "axe_2h_outlandraid_d_02_red.m2", + }, + { + fileId = "144867", + value = "axe_2h_outlandraid_d_03.m2", + text = "axe_2h_outlandraid_d_03.m2", + }, + { + fileId = "144869", + value = "axe_2h_outlandraid_d_04.m2", + text = "axe_2h_outlandraid_d_04.m2", + }, + { + fileId = "144871", + value = "axe_2h_outlandraid_d_05.m2", + text = "axe_2h_outlandraid_d_05.m2", + }, + { + fileId = "144873", + value = "axe_2h_outlandraid_d_06.m2", + text = "axe_2h_outlandraid_d_06.m2", + }, + { + fileId = "144875", + value = "axe_2h_outlandraid_d_07.m2", + text = "axe_2h_outlandraid_d_07.m2", + }, + { + fileId = "144880", + value = "axe_2h_pvpalliance_a_01.m2", + text = "axe_2h_pvpalliance_a_01.m2", + }, + { + fileId = "144883", + value = "axe_2h_pvphorde_a_01.m2", + text = "axe_2h_pvphorde_a_01.m2", + }, + { + fileId = "144886", + value = "axe_2h_stratholme_d_01.m2", + text = "axe_2h_stratholme_d_01.m2", + }, + { + fileId = "144888", + value = "axe_2h_sunwell_c_01.m2", + text = "axe_2h_sunwell_c_01.m2", + }, + { + fileId = "144906", + value = "axe_2h_war_a_01.m2", + text = "axe_2h_war_a_01.m2", + }, + { + fileId = "144910", + value = "axe_2h_war_a_02.m2", + text = "axe_2h_war_a_02.m2", + }, + { + fileId = "144914", + value = "axe_2h_war_a_03.m2", + text = "axe_2h_war_a_03.m2", + }, + { + fileId = "144918", + value = "axe_2h_war_b_01.m2", + text = "axe_2h_war_b_01.m2", + }, + { + fileId = "144922", + value = "axe_2h_war_b_02.m2", + text = "axe_2h_war_b_02.m2", + }, + { + fileId = "144926", + value = "axe_2h_war_b_03.m2", + text = "axe_2h_war_b_03.m2", + }, + { + fileId = "144930", + value = "axe_2h_war_c_01.m2", + text = "axe_2h_war_c_01.m2", + }, + { + fileId = "144934", + value = "axe_2h_war_d_01.m2", + text = "axe_2h_war_d_01.m2", + }, + { + fileId = "144936", + value = "axe_2h_zulaman_d_01.m2", + text = "axe_2h_zulaman_d_01.m2", + }, + { + fileId = "144941", + value = "axe_2h_zulgurub_d_01.m2", + text = "axe_2h_zulgurub_d_01.m2", + }, + { + fileId = "144952", + value = "bow_1h_advanced_a_01.m2", + text = "bow_1h_advanced_a_01.m2", + }, + { + fileId = "144953", + value = "bow_1h_advanced_a_02.m2", + text = "bow_1h_advanced_a_02.m2", + }, + { + fileId = "144954", + value = "bow_1h_advanced_b_01.m2", + text = "bow_1h_advanced_b_01.m2", + }, + { + fileId = "144955", + value = "bow_1h_advanced_c_01.m2", + text = "bow_1h_advanced_c_01.m2", + }, + { + fileId = "144956", + value = "bow_1h_advanced_c_02.m2", + text = "bow_1h_advanced_c_02.m2", + }, + { + fileId = "144957", + value = "bow_1h_advanced_d_01.m2", + text = "bow_1h_advanced_d_01.m2", + }, + { + fileId = "144958", + value = "bow_1h_advanced_d_02.m2", + text = "bow_1h_advanced_d_02.m2", + }, + { + fileId = "144961", + value = "bow_1h_ahnqiraj_d_01.m2", + text = "bow_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "144962", + value = "bow_1h_ahnqiraj_d_02.m2", + text = "bow_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "144963", + value = "bow_1h_auchindoun_d_01.m2", + text = "bow_1h_auchindoun_d_01.m2", + }, + { + fileId = "144965", + value = "bow_1h_blacktemple_d_01.m2", + text = "bow_1h_blacktemple_d_01.m2", + }, + { + fileId = "144971", + value = "bow_1h_blackwing_a_01.m2", + text = "bow_1h_blackwing_a_01.m2", + }, + { + fileId = "144972", + value = "bow_1h_blood_a_01.m2", + text = "bow_1h_blood_a_01.m2", + }, + { + fileId = "144978", + value = "bow_1h_blood_a_02.m2", + text = "bow_1h_blood_a_02.m2", + }, + { + fileId = "144979", + value = "bow_1h_blood_b_01.m2", + text = "bow_1h_blood_b_01.m2", + }, + { + fileId = "144986", + value = "bow_1h_blood_c_01.m2", + text = "bow_1h_blood_c_01.m2", + }, + { + fileId = "144992", + value = "bow_1h_blood_d_01.m2", + text = "bow_1h_blood_d_01.m2", + }, + { + fileId = "144998", + value = "bow_1h_crossbow_a_01.m2", + text = "bow_1h_crossbow_a_01.m2", + }, + { + fileId = "145011", + value = "bow_1h_horde_a_01.m2", + text = "bow_1h_horde_a_01.m2", + }, + { + fileId = "145013", + value = "bow_1h_horde_b_01.m2", + text = "bow_1h_horde_b_01.m2", + }, + { + fileId = "145015", + value = "bow_1h_horde_c_01.m2", + text = "bow_1h_horde_c_01.m2", + }, + { + fileId = "145018", + value = "bow_1h_hunter_d_01.m2", + text = "bow_1h_hunter_d_01.m2", + }, + { + fileId = "145019", + value = "bow_1h_hunterepic.m2", + text = "bow_1h_hunterepic.m2", + }, + { + fileId = "145021", + value = "bow_1h_hyjal_d_01.m2", + text = "bow_1h_hyjal_d_01.m2", + }, + { + fileId = "145077", + value = "bow_1h_outlandraid_d_01.m2", + text = "bow_1h_outlandraid_d_01.m2", + }, + { + fileId = "145079", + value = "bow_1h_outlandraid_d_02.m2", + text = "bow_1h_outlandraid_d_02.m2", + }, + { + fileId = "145081", + value = "bow_1h_outlandraid_d_03.m2", + text = "bow_1h_outlandraid_d_03.m2", + }, + { + fileId = "145083", + value = "bow_1h_outlandraid_d_03_green.m2", + text = "bow_1h_outlandraid_d_03_green.m2", + }, + { + fileId = "145085", + value = "bow_1h_outlandraid_d_04.m2", + text = "bow_1h_outlandraid_d_04.m2", + }, + { + fileId = "145087", + value = "bow_1h_outlandraid_d_05.m2", + text = "bow_1h_outlandraid_d_05.m2", + }, + { + fileId = "145089", + value = "bow_1h_outlandraid_d_06.m2", + text = "bow_1h_outlandraid_d_06.m2", + }, + { + fileId = "145090", + value = "bow_1h_outlandraid_d_06_blue.m2", + text = "bow_1h_outlandraid_d_06_blue.m2", + }, + { + fileId = "145092", + value = "bow_1h_pvpalliance_a_01.m2", + text = "bow_1h_pvpalliance_a_01.m2", + }, + { + fileId = "145094", + value = "bow_1h_pvphorde_a_01.m2", + text = "bow_1h_pvphorde_a_01.m2", + }, + { + fileId = "145095", + value = "bow_1h_short_a_01.m2", + text = "bow_1h_short_a_01.m2", + }, + { + fileId = "145097", + value = "bow_1h_standard_a_01.m2", + text = "bow_1h_standard_a_01.m2", + }, + { + fileId = "145101", + value = "bow_1h_standard_a_02.m2", + text = "bow_1h_standard_a_02.m2", + }, + { + fileId = "145105", + value = "bow_1h_standard_b_01.m2", + text = "bow_1h_standard_b_01.m2", + }, + { + fileId = "145109", + value = "bow_1h_standard_b_02.m2", + text = "bow_1h_standard_b_02.m2", + }, + { + fileId = "145113", + value = "bow_1h_standard_c_01.m2", + text = "bow_1h_standard_c_01.m2", + }, + { + fileId = "145117", + value = "bow_1h_standard_c_02.m2", + text = "bow_1h_standard_c_02.m2", + }, + { + fileId = "145122", + value = "bow_1h_stratholme_d_01.m2", + text = "bow_1h_stratholme_d_01.m2", + }, + { + fileId = "145133", + value = "bow_1h_sunwell_d_01.m2", + text = "bow_1h_sunwell_d_01.m2", + }, + { + fileId = "145142", + value = "bow_1h_sunwell_d_02.m2", + text = "bow_1h_sunwell_d_02.m2", + }, + { + fileId = "145145", + value = "bow_1h_sunwell_d_03.m2", + text = "bow_1h_sunwell_d_03.m2", + }, + { + fileId = "145162", + value = "bow_1h_zulaman_d_01.m2", + text = "bow_1h_zulaman_d_01.m2", + }, + { + fileId = "145167", + value = "bow_1h_zulgurub_d_01.m2", + text = "bow_1h_zulgurub_d_01.m2", + }, + { + fileId = "145169", + value = "bow_1h_zulgurub_d_02.m2", + text = "bow_1h_zulgurub_d_02.m2", + }, + { + fileId = "145170", + value = "bow_2h_crossbow_a_01.m2", + text = "bow_2h_crossbow_a_01.m2", + }, + { + fileId = "145173", + value = "bow_2h_crossbow_b_01.m2", + text = "bow_2h_crossbow_b_01.m2", + }, + { + fileId = "145176", + value = "bow_2h_crossbow_blacktemple_d_01.m2", + text = "bow_2h_crossbow_blacktemple_d_01.m2", + }, + { + fileId = "145183", + value = "bow_2h_crossbow_blackwing_a_01.m2", + text = "bow_2h_crossbow_blackwing_a_01.m2", + }, + { + fileId = "145184", + value = "bow_2h_crossbow_c_01.m2", + text = "bow_2h_crossbow_c_01.m2", + }, + { + fileId = "145196", + value = "bow_2h_crossbow_draenei_a_01.m2", + text = "bow_2h_crossbow_draenei_a_01.m2", + }, + { + fileId = "145201", + value = "bow_2h_crossbow_draenei_a_02.m2", + text = "bow_2h_crossbow_draenei_a_02.m2", + }, + { + fileId = "145243", + value = "bow_2h_crossbow_outlandpvp_d_01.m2", + text = "bow_2h_crossbow_outlandpvp_d_01.m2", + }, + { + fileId = "145250", + value = "bow_2h_crossbow_outlandraid_d_01.m2", + text = "bow_2h_crossbow_outlandraid_d_01.m2", + }, + { + fileId = "145252", + value = "bow_2h_crossbow_outlandraid_d_04.m2", + text = "bow_2h_crossbow_outlandraid_d_04.m2", + }, + { + fileId = "145254", + value = "bow_2h_crossbow_outlandraid_d_05.m2", + text = "bow_2h_crossbow_outlandraid_d_05.m2", + }, + { + fileId = "145256", + value = "bow_2h_crossbow_outlandraid_d_06.m2", + text = "bow_2h_crossbow_outlandraid_d_06.m2", + }, + { + fileId = "145258", + value = "bow_2h_crossbow_pvpalliance_a_01.m2", + text = "bow_2h_crossbow_pvpalliance_a_01.m2", + }, + { + fileId = "145261", + value = "bow_2h_crossbow_pvphorde_a_01.m2", + text = "bow_2h_crossbow_pvphorde_a_01.m2", + }, + { + fileId = "145264", + value = "bow_2h_crossbow_stratholme_d_01.m2", + text = "bow_2h_crossbow_stratholme_d_01.m2", + }, + { + fileId = "145265", + value = "bow_2h_crossbow_sunwell_c_01.m2", + text = "bow_2h_crossbow_sunwell_c_01.m2", + }, + { + fileId = "145283", + value = "bow_2h_crossbow_zulgurub_d_01.m2", + text = "bow_2h_crossbow_zulgurub_d_01.m2", + }, + { + fileId = "145298", + value = "club_1h_cane_a_01.m2", + text = "club_1h_cane_a_01.m2", + }, + { + fileId = "145300", + value = "club_1h_exotic_a_01.m2", + text = "club_1h_exotic_a_01.m2", + }, + { + fileId = "145301", + value = "club_1h_spiked_a_01.m2", + text = "club_1h_spiked_a_01.m2", + }, + { + fileId = "145304", + value = "club_1h_torch_a_01.m2", + text = "club_1h_torch_a_01.m2", + }, + { + fileId = "145306", + value = "club_1h_torch_a_02.m2", + text = "club_1h_torch_a_02.m2", + }, + { + fileId = "145319", + value = "firearm_2h_rifle_a_01.m2", + text = "firearm_2h_rifle_a_01.m2", + }, + { + fileId = "145323", + value = "firearm_2h_rifle_a_02.m2", + text = "firearm_2h_rifle_a_02.m2", + }, + { + fileId = "145328", + value = "firearm_2h_rifle_a_03.m2", + text = "firearm_2h_rifle_a_03.m2", + }, + { + fileId = "145329", + value = "firearm_2h_rifle_a_03scope.m2", + text = "firearm_2h_rifle_a_03scope.m2", + }, + { + fileId = "145333", + value = "firearm_2h_rifle_a_04.m2", + text = "firearm_2h_rifle_a_04.m2", + }, + { + fileId = "145334", + value = "firearm_2h_rifle_a_04scopesniper.m2", + text = "firearm_2h_rifle_a_04scopesniper.m2", + }, + { + fileId = "145335", + value = "firearm_2h_rifle_a_05.m2", + text = "firearm_2h_rifle_a_05.m2", + }, + { + fileId = "145346", + value = "firearm_2h_rifle_a_06.m2", + text = "firearm_2h_rifle_a_06.m2", + }, + { + fileId = "145348", + value = "firearm_2h_rifle_ahnqiraj_d_01.m2", + text = "firearm_2h_rifle_ahnqiraj_d_01.m2", + }, + { + fileId = "145350", + value = "firearm_2h_rifle_ahnqiraj_d_02.m2", + text = "firearm_2h_rifle_ahnqiraj_d_02.m2", + }, + { + fileId = "145356", + value = "firearm_2h_rifle_b_01.m2", + text = "firearm_2h_rifle_b_01.m2", + }, + { + fileId = "145360", + value = "firearm_2h_rifle_b_02.m2", + text = "firearm_2h_rifle_b_02.m2", + }, + { + fileId = "145366", + value = "firearm_2h_rifle_b_03.m2", + text = "firearm_2h_rifle_b_03.m2", + }, + { + fileId = "145372", + value = "firearm_2h_rifle_blood_a_01.m2", + text = "firearm_2h_rifle_blood_a_01.m2", + }, + { + fileId = "145377", + value = "firearm_2h_rifle_blood_b_01.m2", + text = "firearm_2h_rifle_blood_b_01.m2", + }, + { + fileId = "145383", + value = "firearm_2h_rifle_blood_c_01.m2", + text = "firearm_2h_rifle_blood_c_01.m2", + }, + { + fileId = "145389", + value = "firearm_2h_rifle_blood_d_01.m2", + text = "firearm_2h_rifle_blood_d_01.m2", + }, + { + fileId = "145401", + value = "firearm_2h_rifle_draenei_a_01.m2", + text = "firearm_2h_rifle_draenei_a_01.m2", + }, + { + fileId = "145407", + value = "firearm_2h_rifle_engineering_d_01.m2", + text = "firearm_2h_rifle_engineering_d_01.m2", + }, + { + fileId = "145409", + value = "firearm_2h_rifle_hellfire_c_01.m2", + text = "firearm_2h_rifle_hellfire_c_01.m2", + }, + { + fileId = "145411", + value = "firearm_2h_rifle_hellfire_d_01.m2", + text = "firearm_2h_rifle_hellfire_d_01.m2", + }, + { + fileId = "145415", + value = "firearm_2h_rifle_hunteralliancelvl20.m2", + text = "firearm_2h_rifle_hunteralliancelvl20.m2", + }, + { + fileId = "145416", + value = "firearm_2h_rifle_hunteralliancelvl50.m2", + text = "firearm_2h_rifle_hunteralliancelvl50.m2", + }, + { + fileId = "145417", + value = "firearm_2h_rifle_hunterhordelvl20.m2", + text = "firearm_2h_rifle_hunterhordelvl20.m2", + }, + { + fileId = "145419", + value = "firearm_2h_rifle_hunterhordelvl50.m2", + text = "firearm_2h_rifle_hunterhordelvl50.m2", + }, + { + fileId = "145447", + value = "firearm_2h_rifle_outlandraid_d_01.m2", + text = "firearm_2h_rifle_outlandraid_d_01.m2", + }, + { + fileId = "145449", + value = "firearm_2h_rifle_outlandraid_d_02.m2", + text = "firearm_2h_rifle_outlandraid_d_02.m2", + }, + { + fileId = "145451", + value = "firearm_2h_rifle_outlandraid_d_03.m2", + text = "firearm_2h_rifle_outlandraid_d_03.m2", + }, + { + fileId = "145453", + value = "firearm_2h_rifle_outlandraid_d_04.m2", + text = "firearm_2h_rifle_outlandraid_d_04.m2", + }, + { + fileId = "145460", + value = "firearm_2h_rifle_outlandraid_d_05.m2", + text = "firearm_2h_rifle_outlandraid_d_05.m2", + }, + { + fileId = "145467", + value = "firearm_2h_rifle_outlandraid_d_06.m2", + text = "firearm_2h_rifle_outlandraid_d_06.m2", + }, + { + fileId = "145475", + value = "firearm_2h_rifle_pvpalliance_a_01.m2", + text = "firearm_2h_rifle_pvpalliance_a_01.m2", + }, + { + fileId = "145477", + value = "firearm_2h_rifle_pvphorde_a_01.m2", + text = "firearm_2h_rifle_pvphorde_a_01.m2", + }, + { + fileId = "145479", + value = "firearm_2h_rifle_raid_moltencore.m2", + text = "firearm_2h_rifle_raid_moltencore.m2", + }, + { + fileId = "145482", + value = "firearm_2h_rifle_stratholme_d_01.m2", + text = "firearm_2h_rifle_stratholme_d_01.m2", + }, + { + fileId = "145484", + value = "firearm_2h_rifle_sunwell_d_01.m2", + text = "firearm_2h_rifle_sunwell_d_01.m2", + }, + { + fileId = "145502", + value = "firearm_2h_rifle_zulaman_d_01.m2", + text = "firearm_2h_rifle_zulaman_d_01.m2", + }, + { + fileId = "145507", + value = "firearm_2h_rifle_zulgurub_d_01.m2", + text = "firearm_2h_rifle_zulgurub_d_01.m2", + }, + { + fileId = "145508", + value = "firearm_2h_shotgun_b_01.m2", + text = "firearm_2h_shotgun_b_01.m2", + }, + { + fileId = "145521", + value = "glave_1h_blood_c_01.m2", + text = "glave_1h_blood_c_01.m2", + }, + { + fileId = "145523", + value = "glave_1h_dualblade_a_01.m2", + text = "glave_1h_dualblade_a_01.m2", + }, + { + fileId = "145527", + value = "glave_1h_dualblade_a_02.m2", + text = "glave_1h_dualblade_a_02.m2", + }, + { + fileId = "145531", + value = "glave_1h_dualblade_a_03.m2", + text = "glave_1h_dualblade_a_03.m2", + }, + { + fileId = "145535", + value = "glave_1h_dualblade_b_01.m2", + text = "glave_1h_dualblade_b_01.m2", + }, + { + fileId = "145539", + value = "glave_1h_dualblade_b_02.m2", + text = "glave_1h_dualblade_b_02.m2", + }, + { + fileId = "145545", + value = "glave_1h_dualblade_b_03.m2", + text = "glave_1h_dualblade_b_03.m2", + }, + { + fileId = "145550", + value = "glave_1h_dualblade_c_01.m2", + text = "glave_1h_dualblade_c_01.m2", + }, + { + fileId = "145554", + value = "glave_1h_dualblade_d_01.m2", + text = "glave_1h_dualblade_d_01.m2", + }, + { + fileId = "145558", + value = "glave_1h_dualblade_d_01left.m2", + text = "glave_1h_dualblade_d_01left.m2", + }, + { + fileId = "145562", + value = "glave_1h_dualblade_d_02.m2", + text = "glave_1h_dualblade_d_02.m2", + }, + { + fileId = "145564", + value = "glave_1h_dualblade_d_02left.m2", + text = "glave_1h_dualblade_d_02left.m2", + }, + { + fileId = "145566", + value = "glave_1h_magtheridon_d_01.m2", + text = "glave_1h_magtheridon_d_01.m2", + }, + { + fileId = "145568", + value = "glave_1h_short_a_01.m2", + text = "glave_1h_short_a_01.m2", + }, + { + fileId = "145573", + value = "glave_1h_short_a_02.m2", + text = "glave_1h_short_a_02.m2", + }, + { + fileId = "145578", + value = "glave_1h_short_a_03.m2", + text = "glave_1h_short_a_03.m2", + }, + { + fileId = "145583", + value = "glave_1h_short_b_01.m2", + text = "glave_1h_short_b_01.m2", + }, + { + fileId = "145588", + value = "glave_1h_short_c_01.m2", + text = "glave_1h_short_c_01.m2", + }, + { + fileId = "145592", + value = "glave_1h_short_c_02.m2", + text = "glave_1h_short_c_02.m2", + }, + { + fileId = "145602", + value = "hammer_1h_epic_d_01.m2", + text = "hammer_1h_epic_d_01.m2", + }, + { + fileId = "145603", + value = "hammer_1h_horde_a_01.m2", + text = "hammer_1h_horde_a_01.m2", + }, + { + fileId = "145607", + value = "hammer_1h_horde_a_02.m2", + text = "hammer_1h_horde_a_02.m2", + }, + { + fileId = "145612", + value = "hammer_1h_horde_a_03.m2", + text = "hammer_1h_horde_a_03.m2", + }, + { + fileId = "145615", + value = "hammer_1h_horde_a_04.m2", + text = "hammer_1h_horde_a_04.m2", + }, + { + fileId = "145621", + value = "hammer_1h_horde_b_01.m2", + text = "hammer_1h_horde_b_01.m2", + }, + { + fileId = "145626", + value = "hammer_1h_horde_b_02.m2", + text = "hammer_1h_horde_b_02.m2", + }, + { + fileId = "145632", + value = "hammer_1h_horde_d_02.m2", + text = "hammer_1h_horde_d_02.m2", + }, + { + fileId = "145634", + value = "hammer_1h_maul_a_01.m2", + text = "hammer_1h_maul_a_01.m2", + }, + { + fileId = "145638", + value = "hammer_1h_maul_a_02.m2", + text = "hammer_1h_maul_a_02.m2", + }, + { + fileId = "145642", + value = "hammer_1h_maul_a_03.m2", + text = "hammer_1h_maul_a_03.m2", + }, + { + fileId = "145646", + value = "hammer_1h_maul_b_01.m2", + text = "hammer_1h_maul_b_01.m2", + }, + { + fileId = "145650", + value = "hammer_1h_maul_b_02.m2", + text = "hammer_1h_maul_b_02.m2", + }, + { + fileId = "145654", + value = "hammer_1h_maul_b_03.m2", + text = "hammer_1h_maul_b_03.m2", + }, + { + fileId = "145659", + value = "hammer_1h_pvpalliance_a_01.m2", + text = "hammer_1h_pvpalliance_a_01.m2", + }, + { + fileId = "145663", + value = "hammer_1h_pvphorde_a_01.m2", + text = "hammer_1h_pvphorde_a_01.m2", + }, + { + fileId = "145666", + value = "hammer_1h_standard_a_01.m2", + text = "hammer_1h_standard_a_01.m2", + }, + { + fileId = "145670", + value = "hammer_1h_standard_a_02.m2", + text = "hammer_1h_standard_a_02.m2", + }, + { + fileId = "145674", + value = "hammer_1h_standard_a_03.m2", + text = "hammer_1h_standard_a_03.m2", + }, + { + fileId = "145678", + value = "hammer_1h_standard_b_01.m2", + text = "hammer_1h_standard_b_01.m2", + }, + { + fileId = "145682", + value = "hammer_1h_standard_b_02.m2", + text = "hammer_1h_standard_b_02.m2", + }, + { + fileId = "145686", + value = "hammer_1h_standard_b_03.m2", + text = "hammer_1h_standard_b_03.m2", + }, + { + fileId = "145690", + value = "hammer_1h_standard_c_01.m2", + text = "hammer_1h_standard_c_01.m2", + }, + { + fileId = "145695", + value = "hammer_1h_standard_c_03thaurissan.m2", + text = "hammer_1h_standard_c_03thaurissan.m2", + }, + { + fileId = "145697", + value = "hammer_1h_standard_e_01.m2", + text = "hammer_1h_standard_e_01.m2", + }, + { + fileId = "145699", + value = "hammer_1h_war_b_01holy.m2", + text = "hammer_1h_war_b_01holy.m2", + }, + { + fileId = "145700", + value = "hammer_1h_war_d_01.m2", + text = "hammer_1h_war_d_01.m2", + }, + { + fileId = "145702", + value = "hammer_2h_crystal_c_01.m2", + text = "hammer_2h_crystal_c_01.m2", + }, + { + fileId = "145707", + value = "hammer_2h_crystal_c_02.m2", + text = "hammer_2h_crystal_c_02.m2", + }, + { + fileId = "145712", + value = "hammer_2h_crystal_c_03.m2", + text = "hammer_2h_crystal_c_03.m2", + }, + { + fileId = "145718", + value = "hammer_2h_horde_a_01.m2", + text = "hammer_2h_horde_a_01.m2", + }, + { + fileId = "145723", + value = "hammer_2h_horde_a_02.m2", + text = "hammer_2h_horde_a_02.m2", + }, + { + fileId = "145725", + value = "hammer_2h_horde_a_03.m2", + text = "hammer_2h_horde_a_03.m2", + }, + { + fileId = "145730", + value = "hammer_2h_horde_a_04.m2", + text = "hammer_2h_horde_a_04.m2", + }, + { + fileId = "145732", + value = "hammer_2h_horde_b_01.m2", + text = "hammer_2h_horde_b_01.m2", + }, + { + fileId = "145737", + value = "hammer_2h_horde_b_02.m2", + text = "hammer_2h_horde_b_02.m2", + }, + { + fileId = "145742", + value = "hammer_2h_horde_b_03.m2", + text = "hammer_2h_horde_b_03.m2", + }, + { + fileId = "145743", + value = "hammer_2h_horde_b_04.m2", + text = "hammer_2h_horde_b_04.m2", + }, + { + fileId = "145745", + value = "hammer_2h_horde_c_01.m2", + text = "hammer_2h_horde_c_01.m2", + }, + { + fileId = "145752", + value = "hammer_2h_horde_c_02.m2", + text = "hammer_2h_horde_c_02.m2", + }, + { + fileId = "145758", + value = "hammer_2h_horde_c_03.m2", + text = "hammer_2h_horde_c_03.m2", + }, + { + fileId = "145760", + value = "hammer_2h_horde_c_04.m2", + text = "hammer_2h_horde_c_04.m2", + }, + { + fileId = "145764", + value = "hammer_2h_maul_a_01.m2", + text = "hammer_2h_maul_a_01.m2", + }, + { + fileId = "145768", + value = "hammer_2h_maul_a_02.m2", + text = "hammer_2h_maul_a_02.m2", + }, + { + fileId = "145772", + value = "hammer_2h_maul_a_03.m2", + text = "hammer_2h_maul_a_03.m2", + }, + { + fileId = "145776", + value = "hammer_2h_maul_b_01.m2", + text = "hammer_2h_maul_b_01.m2", + }, + { + fileId = "145780", + value = "hammer_2h_maul_b_02.m2", + text = "hammer_2h_maul_b_02.m2", + }, + { + fileId = "145785", + value = "hammer_2h_maul_b_03.m2", + text = "hammer_2h_maul_b_03.m2", + }, + { + fileId = "145790", + value = "hammer_2h_pvpalliance_a_01.m2", + text = "hammer_2h_pvpalliance_a_01.m2", + }, + { + fileId = "145794", + value = "hammer_2h_pvphorde_a_01.m2", + text = "hammer_2h_pvphorde_a_01.m2", + }, + { + fileId = "145797", + value = "hammer_2h_standard_d_01.m2", + text = "hammer_2h_standard_d_01.m2", + }, + { + fileId = "145801", + value = "hammer_2h_standard_d_02.m2", + text = "hammer_2h_standard_d_02.m2", + }, + { + fileId = "145802", + value = "hammer_2h_standard_d_03.m2", + text = "hammer_2h_standard_d_03.m2", + }, + { + fileId = "145809", + value = "hammer_2h_standard_e_01.m2", + text = "hammer_2h_standard_e_01.m2", + }, + { + fileId = "145810", + value = "hammer_2h_war_a_01.m2", + text = "hammer_2h_war_a_01.m2", + }, + { + fileId = "145815", + value = "hammer_2h_war_b_01holy.m2", + text = "hammer_2h_war_b_01holy.m2", + }, + { + fileId = "145817", + value = "hand_1h_ahnqiraj_d_01.m2", + text = "hand_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "145819", + value = "hand_1h_ahnqiraj_d_02.m2", + text = "hand_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "145821", + value = "hand_1h_ahnqiraj_d_03.m2", + text = "hand_1h_ahnqiraj_d_03.m2", + }, + { + fileId = "145824", + value = "hand_1h_auchindoun_d_01left.m2", + text = "hand_1h_auchindoun_d_01left.m2", + }, + { + fileId = "145825", + value = "hand_1h_auchindoun_d_01right.m2", + text = "hand_1h_auchindoun_d_01right.m2", + }, + { + fileId = "145827", + value = "hand_1h_blackwing_a_01.m2", + text = "hand_1h_blackwing_a_01.m2", + }, + { + fileId = "145828", + value = "hand_1h_blackwing_a_01left.m2", + text = "hand_1h_blackwing_a_01left.m2", + }, + { + fileId = "145830", + value = "hand_1h_blackwing_a_02.m2", + text = "hand_1h_blackwing_a_02.m2", + }, + { + fileId = "145831", + value = "hand_1h_blackwing_a_02left.m2", + text = "hand_1h_blackwing_a_02left.m2", + }, + { + fileId = "145832", + value = "hand_1h_claw_a_01.m2", + text = "hand_1h_claw_a_01.m2", + }, + { + fileId = "145834", + value = "hand_1h_claw_a_01left.m2", + text = "hand_1h_claw_a_01left.m2", + }, + { + fileId = "145837", + value = "hand_1h_claw_a_02.m2", + text = "hand_1h_claw_a_02.m2", + }, + { + fileId = "145840", + value = "hand_1h_claw_a_02left.m2", + text = "hand_1h_claw_a_02left.m2", + }, + { + fileId = "145842", + value = "hand_1h_claw_b_01.m2", + text = "hand_1h_claw_b_01.m2", + }, + { + fileId = "145844", + value = "hand_1h_claw_b_01left.m2", + text = "hand_1h_claw_b_01left.m2", + }, + { + fileId = "145850", + value = "hand_1h_kargath_d_01left.m2", + text = "hand_1h_kargath_d_01left.m2", + }, + { + fileId = "145853", + value = "hand_1h_kargath_d_01right.m2", + text = "hand_1h_kargath_d_01right.m2", + }, + { + fileId = "145855", + value = "hand_1h_knuckle_a_01.m2", + text = "hand_1h_knuckle_a_01.m2", + }, + { + fileId = "145859", + value = "hand_1h_knuckle_b_01.m2", + text = "hand_1h_knuckle_b_01.m2", + }, + { + fileId = "145864", + value = "hand_1h_naxxramas_d_01.m2", + text = "hand_1h_naxxramas_d_01.m2", + }, + { + fileId = "145873", + value = "hand_1h_outlandpvp_d_01left.m2", + text = "hand_1h_outlandpvp_d_01left.m2", + }, + { + fileId = "145877", + value = "hand_1h_outlandpvp_d_01right.m2", + text = "hand_1h_outlandpvp_d_01right.m2", + }, + { + fileId = "145882", + value = "hand_1h_outlandraid_d_01left.m2", + text = "hand_1h_outlandraid_d_01left.m2", + }, + { + fileId = "145883", + value = "hand_1h_outlandraid_d_01right.m2", + text = "hand_1h_outlandraid_d_01right.m2", + }, + { + fileId = "145885", + value = "hand_1h_outlandraid_d_02left.m2", + text = "hand_1h_outlandraid_d_02left.m2", + }, + { + fileId = "145889", + value = "hand_1h_outlandraid_d_02right.m2", + text = "hand_1h_outlandraid_d_02right.m2", + }, + { + fileId = "145894", + value = "hand_1h_outlandraid_d_03left.m2", + text = "hand_1h_outlandraid_d_03left.m2", + }, + { + fileId = "145896", + value = "hand_1h_outlandraid_d_03right.m2", + text = "hand_1h_outlandraid_d_03right.m2", + }, + { + fileId = "145901", + value = "hand_1h_outlandraid_d_04left.m2", + text = "hand_1h_outlandraid_d_04left.m2", + }, + { + fileId = "145902", + value = "hand_1h_outlandraid_d_04right.m2", + text = "hand_1h_outlandraid_d_04right.m2", + }, + { + fileId = "145904", + value = "hand_1h_outlandraid_d_05left.m2", + text = "hand_1h_outlandraid_d_05left.m2", + }, + { + fileId = "145905", + value = "hand_1h_outlandraid_d_05right.m2", + text = "hand_1h_outlandraid_d_05right.m2", + }, + { + fileId = "145907", + value = "hand_1h_pvpalliance_a_01.m2", + text = "hand_1h_pvpalliance_a_01.m2", + }, + { + fileId = "145908", + value = "hand_1h_pvpalliance_a_01left.m2", + text = "hand_1h_pvpalliance_a_01left.m2", + }, + { + fileId = "145916", + value = "hand_1h_raid_d_01left.m2", + text = "hand_1h_raid_d_01left.m2", + }, + { + fileId = "145917", + value = "hand_1h_raid_d_01right.m2", + text = "hand_1h_raid_d_01right.m2", + }, + { + fileId = "145924", + value = "hand_1h_raid_d_02left.m2", + text = "hand_1h_raid_d_02left.m2", + }, + { + fileId = "145925", + value = "hand_1h_raid_d_02right.m2", + text = "hand_1h_raid_d_02right.m2", + }, + { + fileId = "145931", + value = "hand_1h_raid_d_03left.m2", + text = "hand_1h_raid_d_03left.m2", + }, + { + fileId = "145932", + value = "hand_1h_raid_d_03right.m2", + text = "hand_1h_raid_d_03right.m2", + }, + { + fileId = "145936", + value = "hand_1h_shaman_d_01left.m2", + text = "hand_1h_shaman_d_01left.m2", + }, + { + fileId = "145938", + value = "hand_1h_shaman_d_01right.m2", + text = "hand_1h_shaman_d_01right.m2", + }, + { + fileId = "145939", + value = "hand_1h_sunwell_c_01.m2", + text = "hand_1h_sunwell_c_01.m2", + }, + { + fileId = "145941", + value = "hand_1h_sunwell_c_01left.m2", + text = "hand_1h_sunwell_c_01left.m2", + }, + { + fileId = "145944", + value = "hand_1h_sunwell_c_01right.m2", + text = "hand_1h_sunwell_c_01right.m2", + }, + { + fileId = "145950", + value = "hand_1h_sunwell_d_01left.m2", + text = "hand_1h_sunwell_d_01left.m2", + }, + { + fileId = "145951", + value = "hand_1h_sunwell_d_01right.m2", + text = "hand_1h_sunwell_d_01right.m2", + }, + { + fileId = "145957", + value = "hand_1h_sunwell_d_02left.m2", + text = "hand_1h_sunwell_d_02left.m2", + }, + { + fileId = "145958", + value = "hand_1h_sunwell_d_02right.m2", + text = "hand_1h_sunwell_d_02right.m2", + }, + { + fileId = "145966", + value = "hand_1h_zulaman_d_01left.m2", + text = "hand_1h_zulaman_d_01left.m2", + }, + { + fileId = "145968", + value = "hand_1h_zulaman_d_01right.m2", + text = "hand_1h_zulaman_d_01right.m2", + }, + { + fileId = "145971", + value = "hand_1h_zulaman_d_02left.m2", + text = "hand_1h_zulaman_d_02left.m2", + }, + { + fileId = "145974", + value = "hand_1h_zulaman_d_02right.m2", + text = "hand_1h_zulaman_d_02right.m2", + }, + { + fileId = "145976", + value = "hand_1h_zulgurub_d_01.m2", + text = "hand_1h_zulgurub_d_01.m2", + }, + { + fileId = "145977", + value = "hand_1h_zulgurub_d_01left.m2", + text = "hand_1h_zulgurub_d_01left.m2", + }, + { + fileId = "145978", + value = "hand_1h_zulgurub_d_02.m2", + text = "hand_1h_zulgurub_d_02.m2", + }, + { + fileId = "145980", + value = "hand_1h_zulgurub_d_02left.m2", + text = "hand_1h_zulgurub_d_02left.m2", + }, + { + fileId = "145982", + value = "hand_lh_pvphorde_a_01.m2", + text = "hand_lh_pvphorde_a_01.m2", + }, + { + fileId = "145983", + value = "hand_rh_pvphorde_a_01.m2", + text = "hand_rh_pvphorde_a_01.m2", + }, + { + fileId = "145994", + value = "knife_1h_ahnqiraj_d_01.m2", + text = "knife_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "145995", + value = "knife_1h_ahnqiraj_d_02.m2", + text = "knife_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "145996", + value = "knife_1h_ahnqiraj_d_03.m2", + text = "knife_1h_ahnqiraj_d_03.m2", + }, + { + fileId = "145997", + value = "knife_1h_ahnqiraj_d_04.m2", + text = "knife_1h_ahnqiraj_d_04.m2", + }, + { + fileId = "145998", + value = "knife_1h_blacktemple_d_01.m2", + text = "knife_1h_blacktemple_d_01.m2", + }, + { + fileId = "146003", + value = "knife_1h_blacktemple_d_02.m2", + text = "knife_1h_blacktemple_d_02.m2", + }, + { + fileId = "146007", + value = "knife_1h_blacktemple_d_03.m2", + text = "knife_1h_blacktemple_d_03.m2", + }, + { + fileId = "146009", + value = "knife_1h_blackwing_a_01.m2", + text = "knife_1h_blackwing_a_01.m2", + }, + { + fileId = "146011", + value = "knife_1h_blackwing_a_02.m2", + text = "knife_1h_blackwing_a_02.m2", + }, + { + fileId = "146013", + value = "knife_1h_blood_a_01.m2", + text = "knife_1h_blood_a_01.m2", + }, + { + fileId = "146018", + value = "knife_1h_blood_a_02.m2", + text = "knife_1h_blood_a_02.m2", + }, + { + fileId = "146021", + value = "knife_1h_blood_a_03.m2", + text = "knife_1h_blood_a_03.m2", + }, + { + fileId = "146025", + value = "knife_1h_blood_a_04.m2", + text = "knife_1h_blood_a_04.m2", + }, + { + fileId = "146029", + value = "knife_1h_blood_a_05.m2", + text = "knife_1h_blood_a_05.m2", + }, + { + fileId = "146033", + value = "knife_1h_blood_b_01.m2", + text = "knife_1h_blood_b_01.m2", + }, + { + fileId = "146037", + value = "knife_1h_blood_b_02.m2", + text = "knife_1h_blood_b_02.m2", + }, + { + fileId = "146042", + value = "knife_1h_caverns_d_01.m2", + text = "knife_1h_caverns_d_01.m2", + }, + { + fileId = "146043", + value = "knife_1h_cleaver_a_01.m2", + text = "knife_1h_cleaver_a_01.m2", + }, + { + fileId = "146046", + value = "knife_1h_coilfang_d_01.m2", + text = "knife_1h_coilfang_d_01.m2", + }, + { + fileId = "146052", + value = "knife_1h_coilfang_d_02.m2", + text = "knife_1h_coilfang_d_02.m2", + }, + { + fileId = "146068", + value = "knife_1h_dagger_a_01.m2", + text = "knife_1h_dagger_a_01.m2", + }, + { + fileId = "146072", + value = "knife_1h_dagger_a_02.m2", + text = "knife_1h_dagger_a_02.m2", + }, + { + fileId = "146076", + value = "knife_1h_dagger_a_03.m2", + text = "knife_1h_dagger_a_03.m2", + }, + { + fileId = "146081", + value = "knife_1h_dagger_a_04.m2", + text = "knife_1h_dagger_a_04.m2", + }, + { + fileId = "146086", + value = "knife_1h_dagger_b_01.m2", + text = "knife_1h_dagger_b_01.m2", + }, + { + fileId = "146090", + value = "knife_1h_dagger_b_02.m2", + text = "knife_1h_dagger_b_02.m2", + }, + { + fileId = "146094", + value = "knife_1h_dagger_b_03.m2", + text = "knife_1h_dagger_b_03.m2", + }, + { + fileId = "146101", + value = "knife_1h_dagger_b_04.m2", + text = "knife_1h_dagger_b_04.m2", + }, + { + fileId = "146107", + value = "knife_1h_dagger_b_05.m2", + text = "knife_1h_dagger_b_05.m2", + }, + { + fileId = "146112", + value = "knife_1h_dagger_b_06.m2", + text = "knife_1h_dagger_b_06.m2", + }, + { + fileId = "146122", + value = "knife_1h_draenei_a_01.m2", + text = "knife_1h_draenei_a_01.m2", + }, + { + fileId = "146128", + value = "knife_1h_draenei_a_02.m2", + text = "knife_1h_draenei_a_02.m2", + }, + { + fileId = "146134", + value = "knife_1h_draenei_a_03.m2", + text = "knife_1h_draenei_a_03.m2", + }, + { + fileId = "146143", + value = "knife_1h_epic_a_03.m2", + text = "knife_1h_epic_a_03.m2", + }, + { + fileId = "146144", + value = "knife_1h_epic_a_04.m2", + text = "knife_1h_epic_a_04.m2", + }, + { + fileId = "146146", + value = "knife_1h_epic_a_05.m2", + text = "knife_1h_epic_a_05.m2", + }, + { + fileId = "146148", + value = "knife_1h_exotic_a_01.m2", + text = "knife_1h_exotic_a_01.m2", + }, + { + fileId = "146152", + value = "knife_1h_exotic_a_02.m2", + text = "knife_1h_exotic_a_02.m2", + }, + { + fileId = "146156", + value = "knife_1h_exotic_b_01.m2", + text = "knife_1h_exotic_b_01.m2", + }, + { + fileId = "146160", + value = "knife_1h_exotic_b_02.m2", + text = "knife_1h_exotic_b_02.m2", + }, + { + fileId = "146164", + value = "knife_1h_hellfire_c_01.m2", + text = "knife_1h_hellfire_c_01.m2", + }, + { + fileId = "146170", + value = "knife_1h_horde_a_01.m2", + text = "knife_1h_horde_a_01.m2", + }, + { + fileId = "146174", + value = "knife_1h_hotpoker_a_01.m2", + text = "knife_1h_hotpoker_a_01.m2", + }, + { + fileId = "146176", + value = "knife_1h_hunting_a_01.m2", + text = "knife_1h_hunting_a_01.m2", + }, + { + fileId = "146180", + value = "knife_1h_hunting_a_02.m2", + text = "knife_1h_hunting_a_02.m2", + }, + { + fileId = "146184", + value = "knife_1h_hunting_b_01.m2", + text = "knife_1h_hunting_b_01.m2", + }, + { + fileId = "146188", + value = "knife_1h_hunting_b_02.m2", + text = "knife_1h_hunting_b_02.m2", + }, + { + fileId = "146192", + value = "knife_1h_hyjal_d_01.m2", + text = "knife_1h_hyjal_d_01.m2", + }, + { + fileId = "146197", + value = "knife_1h_hyjal_d_02.m2", + text = "knife_1h_hyjal_d_02.m2", + }, + { + fileId = "146203", + value = "knife_1h_katana_a_01.m2", + text = "knife_1h_katana_a_01.m2", + }, + { + fileId = "146207", + value = "knife_1h_katana_b_01.m2", + text = "knife_1h_katana_b_01.m2", + }, + { + fileId = "146211", + value = "knife_1h_korean_a_01.m2", + text = "knife_1h_korean_a_01.m2", + }, + { + fileId = "146216", + value = "knife_1h_mage_d_01.m2", + text = "knife_1h_mage_d_01.m2", + }, + { + fileId = "146221", + value = "knife_1h_naxxramas_d_01.m2", + text = "knife_1h_naxxramas_d_01.m2", + }, + { + fileId = "146273", + value = "knife_1h_outlandraid_d_01.m2", + text = "knife_1h_outlandraid_d_01.m2", + }, + { + fileId = "146279", + value = "knife_1h_pvpalliance_a_01.m2", + text = "knife_1h_pvpalliance_a_01.m2", + }, + { + fileId = "146284", + value = "knife_1h_pvphorde_a_01.m2", + text = "knife_1h_pvphorde_a_01.m2", + }, + { + fileId = "146291", + value = "knife_1h_raid_d_01.m2", + text = "knife_1h_raid_d_01.m2", + }, + { + fileId = "146293", + value = "knife_1h_raid_d_02.m2", + text = "knife_1h_raid_d_02.m2", + }, + { + fileId = "146295", + value = "knife_1h_raid_d_03.m2", + text = "knife_1h_raid_d_03.m2", + }, + { + fileId = "146297", + value = "knife_1h_raid_d_04.m2", + text = "knife_1h_raid_d_04.m2", + }, + { + fileId = "146299", + value = "knife_1h_raid_d_05.m2", + text = "knife_1h_raid_d_05.m2", + }, + { + fileId = "146301", + value = "knife_1h_rogue_d_01.m2", + text = "knife_1h_rogue_d_01.m2", + }, + { + fileId = "146306", + value = "knife_1h_standard_a_01.m2", + text = "knife_1h_standard_a_01.m2", + }, + { + fileId = "146309", + value = "knife_1h_stratholme_d_01.m2", + text = "knife_1h_stratholme_d_01.m2", + }, + { + fileId = "146311", + value = "knife_1h_stratholme_d_02.m2", + text = "knife_1h_stratholme_d_02.m2", + }, + { + fileId = "146313", + value = "knife_1h_stratholme_d_03.m2", + text = "knife_1h_stratholme_d_03.m2", + }, + { + fileId = "146315", + value = "knife_1h_sunwell_c_01.m2", + text = "knife_1h_sunwell_c_01.m2", + }, + { + fileId = "146319", + value = "knife_1h_sunwell_c_02.m2", + text = "knife_1h_sunwell_c_02.m2", + }, + { + fileId = "146324", + value = "knife_1h_sunwell_d_01.m2", + text = "knife_1h_sunwell_d_01.m2", + }, + { + fileId = "146330", + value = "knife_1h_sunwell_d_02.m2", + text = "knife_1h_sunwell_d_02.m2", + }, + { + fileId = "146335", + value = "knife_1h_sunwell_d_03.m2", + text = "knife_1h_sunwell_d_03.m2", + }, + { + fileId = "146340", + value = "knife_1h_sunwell_d_04.m2", + text = "knife_1h_sunwell_d_04.m2", + }, + { + fileId = "146345", + value = "knife_1h_tarantula_b_01.m2", + text = "knife_1h_tarantula_b_01.m2", + }, + { + fileId = "146369", + value = "knife_1h_vulture_a_01.m2", + text = "knife_1h_vulture_a_01.m2", + }, + { + fileId = "146376", + value = "knife_1h_zulaman_d_01.m2", + text = "knife_1h_zulaman_d_01.m2", + }, + { + fileId = "146381", + value = "knife_1h_zulaman_d_02.m2", + text = "knife_1h_zulaman_d_02.m2", + }, + { + fileId = "146386", + value = "knife_1h_zulaman_d_03.m2", + text = "knife_1h_zulaman_d_03.m2", + }, + { + fileId = "146392", + value = "knife_1h_zulaman_d_04.m2", + text = "knife_1h_zulaman_d_04.m2", + }, + { + fileId = "146398", + value = "knife_1h_zulgurub_d_01.m2", + text = "knife_1h_zulgurub_d_01.m2", + }, + { + fileId = "146404", + value = "knife_1h_zulgurub_d_02.m2", + text = "knife_1h_zulgurub_d_02.m2", + }, + { + fileId = "146409", + value = "knife_outlandraid_d_02.m2", + text = "knife_outlandraid_d_02.m2", + }, + { + fileId = "146415", + value = "knife_outlandraid_d_03.m2", + text = "knife_outlandraid_d_03.m2", + }, + { + fileId = "146421", + value = "knife_outlandraid_d_04.m2", + text = "knife_outlandraid_d_04.m2", + }, + { + fileId = "146429", + value = "knife_outlandraid_d_05.m2", + text = "knife_outlandraid_d_05.m2", + }, + { + fileId = "146436", + value = "knife_outlandraid_d_06.m2", + text = "knife_outlandraid_d_06.m2", + }, + { + fileId = "146442", + value = "knife_outlandraid_d_07.m2", + text = "knife_outlandraid_d_07.m2", + }, + { + fileId = "146448", + value = "knife_outlandraid_d_08.m2", + text = "knife_outlandraid_d_08.m2", + }, + { + fileId = "146464", + value = "mace_1h_ahnqiraj_d_01.m2", + text = "mace_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "146466", + value = "mace_1h_ahnqiraj_d_02.m2", + text = "mace_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "146468", + value = "mace_1h_ahnqiraj_d_03.m2", + text = "mace_1h_ahnqiraj_d_03.m2", + }, + { + fileId = "146470", + value = "mace_1h_auchindoun_d_01.m2", + text = "mace_1h_auchindoun_d_01.m2", + }, + { + fileId = "146472", + value = "mace_1h_blacksmithing_d_01.m2", + text = "mace_1h_blacksmithing_d_01.m2", + }, + { + fileId = "146477", + value = "mace_1h_blacksmithing_d_02.m2", + text = "mace_1h_blacksmithing_d_02.m2", + }, + { + fileId = "146482", + value = "mace_1h_blacksmithing_d_03.m2", + text = "mace_1h_blacksmithing_d_03.m2", + }, + { + fileId = "146486", + value = "mace_1h_blacktemple_d_01.m2", + text = "mace_1h_blacktemple_d_01.m2", + }, + { + fileId = "146491", + value = "mace_1h_blacktemple_d_02.m2", + text = "mace_1h_blacktemple_d_02.m2", + }, + { + fileId = "146494", + value = "mace_1h_blackwing_a_01.m2", + text = "mace_1h_blackwing_a_01.m2", + }, + { + fileId = "146497", + value = "mace_1h_blackwing_a_02.m2", + text = "mace_1h_blackwing_a_02.m2", + }, + { + fileId = "146499", + value = "mace_1h_blood_a_01.m2", + text = "mace_1h_blood_a_01.m2", + }, + { + fileId = "146501", + value = "mace_1h_blood_a_02.m2", + text = "mace_1h_blood_a_02.m2", + }, + { + fileId = "146504", + value = "mace_1h_coilfang_d_01.m2", + text = "mace_1h_coilfang_d_01.m2", + }, + { + fileId = "146516", + value = "mace_1h_doomhammer_d_01.m2", + text = "mace_1h_doomhammer_d_01.m2", + }, + { + fileId = "146519", + value = "mace_1h_draenei_a_01.m2", + text = "mace_1h_draenei_a_01.m2", + }, + { + fileId = "146525", + value = "mace_1h_draenei_a_02.m2", + text = "mace_1h_draenei_a_02.m2", + }, + { + fileId = "146531", + value = "mace_1h_flanged_a_01.m2", + text = "mace_1h_flanged_a_01.m2", + }, + { + fileId = "146533", + value = "mace_1h_flanged_a_02.m2", + text = "mace_1h_flanged_a_02.m2", + }, + { + fileId = "146537", + value = "mace_1h_flanged_a_03.m2", + text = "mace_1h_flanged_a_03.m2", + }, + { + fileId = "146541", + value = "mace_1h_flanged_b_01.m2", + text = "mace_1h_flanged_b_01.m2", + }, + { + fileId = "146543", + value = "mace_1h_flanged_b_02.m2", + text = "mace_1h_flanged_b_02.m2", + }, + { + fileId = "146546", + value = "mace_1h_flanged_d_01.m2", + text = "mace_1h_flanged_d_01.m2", + }, + { + fileId = "146549", + value = "mace_1h_hellfire_d_01.m2", + text = "mace_1h_hellfire_d_01.m2", + }, + { + fileId = "146550", + value = "mace_1h_hyjal_d_01.m2", + text = "mace_1h_hyjal_d_01.m2", + }, + { + fileId = "146557", + value = "mace_1h_naxxramas_d_01.m2", + text = "mace_1h_naxxramas_d_01.m2", + }, + { + fileId = "146559", + value = "mace_1h_naxxramas_d_02.m2", + text = "mace_1h_naxxramas_d_02.m2", + }, + { + fileId = "146561", + value = "mace_1h_naxxramas_d_03.m2", + text = "mace_1h_naxxramas_d_03.m2", + }, + { + fileId = "146608", + value = "mace_1h_outlandpvp_d_01.m2", + text = "mace_1h_outlandpvp_d_01.m2", + }, + { + fileId = "146615", + value = "mace_1h_outlandraid_d_01.m2", + text = "mace_1h_outlandraid_d_01.m2", + }, + { + fileId = "146617", + value = "mace_1h_outlandraid_d_02.m2", + text = "mace_1h_outlandraid_d_02.m2", + }, + { + fileId = "146619", + value = "mace_1h_outlandraid_d_03.m2", + text = "mace_1h_outlandraid_d_03.m2", + }, + { + fileId = "146621", + value = "mace_1h_outlandraid_d_04.m2", + text = "mace_1h_outlandraid_d_04.m2", + }, + { + fileId = "146622", + value = "mace_1h_outlandraid_d_05.m2", + text = "mace_1h_outlandraid_d_05.m2", + }, + { + fileId = "146624", + value = "mace_1h_outlandraid_d_06.m2", + text = "mace_1h_outlandraid_d_06.m2", + }, + { + fileId = "146625", + value = "mace_1h_outlandraid_d_07.m2", + text = "mace_1h_outlandraid_d_07.m2", + }, + { + fileId = "146630", + value = "mace_1h_outlandraid_d_08.m2", + text = "mace_1h_outlandraid_d_08.m2", + }, + { + fileId = "146636", + value = "mace_1h_outlandraid_d_09.m2", + text = "mace_1h_outlandraid_d_09.m2", + }, + { + fileId = "146637", + value = "mace_1h_outlandraid_d_10.m2", + text = "mace_1h_outlandraid_d_10.m2", + }, + { + fileId = "146639", + value = "mace_1h_paladin_d_01.m2", + text = "mace_1h_paladin_d_01.m2", + }, + { + fileId = "146643", + value = "mace_1h_spiked_a_01.m2", + text = "mace_1h_spiked_a_01.m2", + }, + { + fileId = "146645", + value = "mace_1h_spiked_a_02.m2", + text = "mace_1h_spiked_a_02.m2", + }, + { + fileId = "146649", + value = "mace_1h_spiked_a_03.m2", + text = "mace_1h_spiked_a_03.m2", + }, + { + fileId = "146654", + value = "mace_1h_spiked_b_01.m2", + text = "mace_1h_spiked_b_01.m2", + }, + { + fileId = "146657", + value = "mace_1h_spiked_b_02.m2", + text = "mace_1h_spiked_b_02.m2", + }, + { + fileId = "146659", + value = "mace_1h_standard_a_01.m2", + text = "mace_1h_standard_a_01.m2", + }, + { + fileId = "146661", + value = "mace_1h_standard_a_02.m2", + text = "mace_1h_standard_a_02.m2", + }, + { + fileId = "146662", + value = "mace_1h_standard_b_01.m2", + text = "mace_1h_standard_b_01.m2", + }, + { + fileId = "146665", + value = "mace_1h_stratholme_d_01.m2", + text = "mace_1h_stratholme_d_01.m2", + }, + { + fileId = "146667", + value = "mace_1h_stratholme_d_02.m2", + text = "mace_1h_stratholme_d_02.m2", + }, + { + fileId = "146669", + value = "mace_1h_sunwell_c_01.m2", + text = "mace_1h_sunwell_c_01.m2", + }, + { + fileId = "146674", + value = "mace_1h_sunwell_c_02.m2", + text = "mace_1h_sunwell_c_02.m2", + }, + { + fileId = "146678", + value = "mace_1h_sunwell_d_01.m2", + text = "mace_1h_sunwell_d_01.m2", + }, + { + fileId = "146683", + value = "mace_1h_sunwell_d_02.m2", + text = "mace_1h_sunwell_d_02.m2", + }, + { + fileId = "146688", + value = "mace_1h_sunwell_d_03.m2", + text = "mace_1h_sunwell_d_03.m2", + }, + { + fileId = "146694", + value = "mace_1h_tauren_b_01.m2", + text = "mace_1h_tauren_b_01.m2", + }, + { + fileId = "146696", + value = "mace_1h_tauren_b_02.m2", + text = "mace_1h_tauren_b_02.m2", + }, + { + fileId = "146714", + value = "mace_1h_zulaman_d_01.m2", + text = "mace_1h_zulaman_d_01.m2", + }, + { + fileId = "146719", + value = "mace_1h_zulaman_d_02.m2", + text = "mace_1h_zulaman_d_02.m2", + }, + { + fileId = "146725", + value = "mace_1h_zulgurub_d_01.m2", + text = "mace_1h_zulgurub_d_01.m2", + }, + { + fileId = "146727", + value = "mace_1h_zulgurub_d_02.m2", + text = "mace_1h_zulgurub_d_02.m2", + }, + { + fileId = "146729", + value = "mace_2h_ahnqiraj_d_01.m2", + text = "mace_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "146735", + value = "mace_2h_auchindoun_d_01.m2", + text = "mace_2h_auchindoun_d_01.m2", + }, + { + fileId = "146737", + value = "mace_2h_blacksmithing_d_01.m2", + text = "mace_2h_blacksmithing_d_01.m2", + }, + { + fileId = "146742", + value = "mace_2h_blacksmithing_d_02.m2", + text = "mace_2h_blacksmithing_d_02.m2", + }, + { + fileId = "146747", + value = "mace_2h_blacksmithing_d_03.m2", + text = "mace_2h_blacksmithing_d_03.m2", + }, + { + fileId = "146752", + value = "mace_2h_blackwing_a_01.m2", + text = "mace_2h_blackwing_a_01.m2", + }, + { + fileId = "146754", + value = "mace_2h_blackwing_a_02.m2", + text = "mace_2h_blackwing_a_02.m2", + }, + { + fileId = "146756", + value = "mace_2h_blood_a_01.m2", + text = "mace_2h_blood_a_01.m2", + }, + { + fileId = "146762", + value = "mace_2h_blood_a_02.m2", + text = "mace_2h_blood_a_02.m2", + }, + { + fileId = "146779", + value = "mace_2h_draenei_a_01.m2", + text = "mace_2h_draenei_a_01.m2", + }, + { + fileId = "146785", + value = "mace_2h_draenei_a_02.m2", + text = "mace_2h_draenei_a_02.m2", + }, + { + fileId = "146790", + value = "mace_2h_flanged_a_01.m2", + text = "mace_2h_flanged_a_01.m2", + }, + { + fileId = "146794", + value = "mace_2h_flanged_a_02.m2", + text = "mace_2h_flanged_a_02.m2", + }, + { + fileId = "146798", + value = "mace_2h_flanged_c_01.m2", + text = "mace_2h_flanged_c_01.m2", + }, + { + fileId = "146800", + value = "mace_2h_flanged_c_02.m2", + text = "mace_2h_flanged_c_02.m2", + }, + { + fileId = "146802", + value = "mace_2h_hellfire_c_01.m2", + text = "mace_2h_hellfire_c_01.m2", + }, + { + fileId = "146808", + value = "mace_2h_hellfire_d_01.m2", + text = "mace_2h_hellfire_d_01.m2", + }, + { + fileId = "146809", + value = "mace_2h_horde_a_01.m2", + text = "mace_2h_horde_a_01.m2", + }, + { + fileId = "146810", + value = "mace_2h_horde_b_01.m2", + text = "mace_2h_horde_b_01.m2", + }, + { + fileId = "146811", + value = "mace_2h_horde_c_02.m2", + text = "mace_2h_horde_c_02.m2", + }, + { + fileId = "146861", + value = "mace_2h_outlandraid_d_01.m2", + text = "mace_2h_outlandraid_d_01.m2", + }, + { + fileId = "146863", + value = "mace_2h_outlandraid_d_02.m2", + text = "mace_2h_outlandraid_d_02.m2", + }, + { + fileId = "146865", + value = "mace_2h_outlandraid_d_03.m2", + text = "mace_2h_outlandraid_d_03.m2", + }, + { + fileId = "146867", + value = "mace_2h_outlandraid_d_04.m2", + text = "mace_2h_outlandraid_d_04.m2", + }, + { + fileId = "146870", + value = "mace_2h_outlandraid_d_05.m2", + text = "mace_2h_outlandraid_d_05.m2", + }, + { + fileId = "146872", + value = "mace_2h_outlandraid_d_06.m2", + text = "mace_2h_outlandraid_d_06.m2", + }, + { + fileId = "146873", + value = "mace_2h_outlandraid_d_07.m2", + text = "mace_2h_outlandraid_d_07.m2", + }, + { + fileId = "146880", + value = "mace_2h_paladin_d_01.m2", + text = "mace_2h_paladin_d_01.m2", + }, + { + fileId = "146881", + value = "mace_2h_spiked_a_01.m2", + text = "mace_2h_spiked_a_01.m2", + }, + { + fileId = "146883", + value = "mace_2h_spiked_a_02.m2", + text = "mace_2h_spiked_a_02.m2", + }, + { + fileId = "146887", + value = "mace_2h_spiked_a_03.m2", + text = "mace_2h_spiked_a_03.m2", + }, + { + fileId = "146891", + value = "mace_2h_spiked_b_01.m2", + text = "mace_2h_spiked_b_01.m2", + }, + { + fileId = "146893", + value = "mace_2h_spiked_b_02.m2", + text = "mace_2h_spiked_b_02.m2", + }, + { + fileId = "146897", + value = "mace_2h_standard_a_01.m2", + text = "mace_2h_standard_a_01.m2", + }, + { + fileId = "146899", + value = "mace_2h_standard_a_02.m2", + text = "mace_2h_standard_a_02.m2", + }, + { + fileId = "146903", + value = "mace_2h_standard_a_03.m2", + text = "mace_2h_standard_a_03.m2", + }, + { + fileId = "146907", + value = "mace_2h_stratholme_d_01.m2", + text = "mace_2h_stratholme_d_01.m2", + }, + { + fileId = "146909", + value = "mace_2h_stratholme_d_02.m2", + text = "mace_2h_stratholme_d_02.m2", + }, + { + fileId = "146916", + value = "mace_2h_zulgurub_d_01.m2", + text = "mace_2h_zulgurub_d_01.m2", + }, + { + fileId = "146919", + value = "misc_1h_bag_a_01.m2", + text = "misc_1h_bag_a_01.m2", + }, + { + fileId = "146926", + value = "misc_1h_bone_a_01.m2", + text = "misc_1h_bone_a_01.m2", + }, + { + fileId = "146930", + value = "misc_1h_book_a_01.m2", + text = "misc_1h_book_a_01.m2", + }, + { + fileId = "146934", + value = "misc_1h_book_b_01.m2", + text = "misc_1h_book_b_01.m2", + }, + { + fileId = "146940", + value = "misc_1h_book_b_02.m2", + text = "misc_1h_book_b_02.m2", + }, + { + fileId = "146943", + value = "misc_1h_book_c_01.m2", + text = "misc_1h_book_c_01.m2", + }, + { + fileId = "146947", + value = "misc_1h_book_c_02.m2", + text = "misc_1h_book_c_02.m2", + }, + { + fileId = "146950", + value = "misc_1h_bottle_a_01.m2", + text = "misc_1h_bottle_a_01.m2", + }, + { + fileId = "146955", + value = "misc_1h_bottle_a_02.m2", + text = "misc_1h_bottle_a_02.m2", + }, + { + fileId = "146956", + value = "misc_1h_bread_a_01.m2", + text = "misc_1h_bread_a_01.m2", + }, + { + fileId = "146960", + value = "misc_1h_bread_a_02.m2", + text = "misc_1h_bread_a_02.m2", + }, + { + fileId = "146961", + value = "misc_1h_bucket_a_01.m2", + text = "misc_1h_bucket_a_01.m2", + }, + { + fileId = "146965", + value = "misc_1h_fish_a_01.m2", + text = "misc_1h_fish_a_01.m2", + }, + { + fileId = "146970", + value = "misc_1h_flower_a_01.m2", + text = "misc_1h_flower_a_01.m2", + }, + { + fileId = "146974", + value = "misc_1h_flower_a_02.m2", + text = "misc_1h_flower_a_02.m2", + }, + { + fileId = "146978", + value = "misc_1h_flower_a_03.m2", + text = "misc_1h_flower_a_03.m2", + }, + { + fileId = "146982", + value = "misc_1h_flower_a_04.m2", + text = "misc_1h_flower_a_04.m2", + }, + { + fileId = "146986", + value = "misc_1h_flower_b_01.m2", + text = "misc_1h_flower_b_01.m2", + }, + { + fileId = "146990", + value = "misc_1h_flower_b_02.m2", + text = "misc_1h_flower_b_02.m2", + }, + { + fileId = "146991", + value = "misc_1h_gizmo_a_01.m2", + text = "misc_1h_gizmo_a_01.m2", + }, + { + fileId = "146995", + value = "misc_1h_glass_a_01.m2", + text = "misc_1h_glass_a_01.m2", + }, + { + fileId = "146998", + value = "misc_1h_glass_a_02.m2", + text = "misc_1h_glass_a_02.m2", + }, + { + fileId = "147000", + value = "misc_1h_holysymbol_a_01.m2", + text = "misc_1h_holysymbol_a_01.m2", + }, + { + fileId = "147001", + value = "misc_1h_lantern_a_01.m2", + text = "misc_1h_lantern_a_01.m2", + }, + { + fileId = "147003", + value = "misc_1h_lantern_b_01.m2", + text = "misc_1h_lantern_b_01.m2", + }, + { + fileId = "147005", + value = "misc_1h_mutton_a_01.m2", + text = "misc_1h_mutton_a_01.m2", + }, + { + fileId = "147008", + value = "misc_1h_mutton_a_02.m2", + text = "misc_1h_mutton_a_02.m2", + }, + { + fileId = "147009", + value = "misc_1h_mutton_b_01.m2", + text = "misc_1h_mutton_b_01.m2", + }, + { + fileId = "147011", + value = "misc_1h_mutton_b_02.m2", + text = "misc_1h_mutton_b_02.m2", + }, + { + fileId = "147013", + value = "misc_1h_orb_a_01.m2", + text = "misc_1h_orb_a_01.m2", + }, + { + fileId = "147020", + value = "misc_1h_orb_a_02.m2", + text = "misc_1h_orb_a_02.m2", + }, + { + fileId = "147027", + value = "misc_1h_orb_c_01.m2", + text = "misc_1h_orb_c_01.m2", + }, + { + fileId = "147029", + value = "misc_1h_potion_a_01.m2", + text = "misc_1h_potion_a_01.m2", + }, + { + fileId = "147035", + value = "misc_1h_potion_b_01.m2", + text = "misc_1h_potion_b_01.m2", + }, + { + fileId = "147039", + value = "misc_1h_rollingpin_a_01.m2", + text = "misc_1h_rollingpin_a_01.m2", + }, + { + fileId = "147042", + value = "misc_1h_seal_a_01.m2", + text = "misc_1h_seal_a_01.m2", + }, + { + fileId = "147043", + value = "misc_1h_seal_b_01.m2", + text = "misc_1h_seal_b_01.m2", + }, + { + fileId = "147046", + value = "misc_1h_seal_c_01.m2", + text = "misc_1h_seal_c_01.m2", + }, + { + fileId = "147051", + value = "misc_1h_skull_b_01.m2", + text = "misc_1h_skull_b_01.m2", + }, + { + fileId = "147057", + value = "misc_1h_sparkler_a_01blue.m2", + text = "misc_1h_sparkler_a_01blue.m2", + }, + { + fileId = "147058", + value = "misc_1h_sparkler_a_01red.m2", + text = "misc_1h_sparkler_a_01red.m2", + }, + { + fileId = "147059", + value = "misc_1h_sparkler_a_01white.m2", + text = "misc_1h_sparkler_a_01white.m2", + }, + { + fileId = "147060", + value = "misc_1h_tankard_a_01.m2", + text = "misc_1h_tankard_a_01.m2", + }, + { + fileId = "147066", + value = "misc_1h_waterwand_a_01.m2", + text = "misc_1h_waterwand_a_01.m2", + }, + { + fileId = "147068", + value = "misc_1h_wrench_a_01.m2", + text = "misc_1h_wrench_a_01.m2", + }, + { + fileId = "147069", + value = "misc_1h_zulgurub_d_01.m2", + text = "misc_1h_zulgurub_d_01.m2", + }, + { + fileId = "147073", + value = "misc_1h_zulgurub_d_02.m2", + text = "misc_1h_zulgurub_d_02.m2", + }, + { + fileId = "147074", + value = "misc_2h_brewfest_a_01.m2", + text = "misc_2h_brewfest_a_01.m2", + }, + { + fileId = "147080", + value = "misc_2h_broom_a_01.m2", + text = "misc_2h_broom_a_01.m2", + }, + { + fileId = "147082", + value = "misc_2h_broom_a_02.m2", + text = "misc_2h_broom_a_02.m2", + }, + { + fileId = "147084", + value = "misc_2h_fishingpole_a_01.m2", + text = "misc_2h_fishingpole_a_01.m2", + }, + { + fileId = "147087", + value = "misc_2h_harpoon_b_01.m2", + text = "misc_2h_harpoon_b_01.m2", + }, + { + fileId = "147089", + value = "misc_2h_pitchfork_a_01.m2", + text = "misc_2h_pitchfork_a_01.m2", + }, + { + fileId = "147091", + value = "misc_2h_shovel_a_01.m2", + text = "misc_2h_shovel_a_01.m2", + }, + { + fileId = "147104", + value = "offhand_blackwing_a_01.m2", + text = "offhand_blackwing_a_01.m2", + }, + { + fileId = "147105", + value = "offhand_blood_a_01.m2", + text = "offhand_blood_a_01.m2", + }, + { + fileId = "147110", + value = "offhand_blood_a_02.m2", + text = "offhand_blood_a_02.m2", + }, + { + fileId = "147116", + value = "offhand_draenei_a_01.m2", + text = "offhand_draenei_a_01.m2", + }, + { + fileId = "147122", + value = "offhand_draenei_a_02.m2", + text = "offhand_draenei_a_02.m2", + }, + { + fileId = "147128", + value = "offhand_hyjal_d_01.m2", + text = "offhand_hyjal_d_01.m2", + }, + { + fileId = "147133", + value = "offhand_naxxramas_d_01.m2", + text = "offhand_naxxramas_d_01.m2", + }, + { + fileId = "147135", + value = "offhand_naxxramas_d_02.m2", + text = "offhand_naxxramas_d_02.m2", + }, + { + fileId = "147137", + value = "offhand_naxxramas_d_03.m2", + text = "offhand_naxxramas_d_03.m2", + }, + { + fileId = "147139", + value = "offhand_naxxramas_d_04.m2", + text = "offhand_naxxramas_d_04.m2", + }, + { + fileId = "147141", + value = "offhand_outlandraid_d_01.m2", + text = "offhand_outlandraid_d_01.m2", + }, + { + fileId = "147143", + value = "offhand_outlandraid_d_02.m2", + text = "offhand_outlandraid_d_02.m2", + }, + { + fileId = "147145", + value = "offhand_outlandraid_d_03blue.m2", + text = "offhand_outlandraid_d_03blue.m2", + }, + { + fileId = "147147", + value = "offhand_outlandraid_d_03orange.m2", + text = "offhand_outlandraid_d_03orange.m2", + }, + { + fileId = "147149", + value = "offhand_outlandraid_d_03white.m2", + text = "offhand_outlandraid_d_03white.m2", + }, + { + fileId = "147150", + value = "offhand_rose_a_01.m2", + text = "offhand_rose_a_01.m2", + }, + { + fileId = "147151", + value = "offhand_rosebouquet_a_01.m2", + text = "offhand_rosebouquet_a_01.m2", + }, + { + fileId = "147153", + value = "offhand_stratholme_a_01.m2", + text = "offhand_stratholme_a_01.m2", + }, + { + fileId = "147155", + value = "offhand_stratholme_a_02.m2", + text = "offhand_stratholme_a_02.m2", + }, + { + fileId = "147157", + value = "offhand_sunwell_d_01.m2", + text = "offhand_sunwell_d_01.m2", + }, + { + fileId = "147162", + value = "offhand_sunwell_d_02.m2", + text = "offhand_sunwell_d_02.m2", + }, + { + fileId = "147173", + value = "offhand_zulaman_d_01.m2", + text = "offhand_zulaman_d_01.m2", + }, + { + fileId = "147178", + value = "offhand_zulaman_d_02.m2", + text = "offhand_zulaman_d_02.m2", + }, + { + fileId = "147186", + value = "polearm_2h_ahnqiraj_d_01.m2", + text = "polearm_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "147202", + value = "polearm_2h_blacktemple_d_01.m2", + text = "polearm_2h_blacktemple_d_01.m2", + }, + { + fileId = "147208", + value = "polearm_2h_bladed_a_01.m2", + text = "polearm_2h_bladed_a_01.m2", + }, + { + fileId = "147211", + value = "polearm_2h_bladed_a_02.m2", + text = "polearm_2h_bladed_a_02.m2", + }, + { + fileId = "147216", + value = "polearm_2h_bladed_b_01.m2", + text = "polearm_2h_bladed_b_01.m2", + }, + { + fileId = "147219", + value = "polearm_2h_bladed_b_02.m2", + text = "polearm_2h_bladed_b_02.m2", + }, + { + fileId = "147224", + value = "polearm_2h_bladed_c_01.m2", + text = "polearm_2h_bladed_c_01.m2", + }, + { + fileId = "147227", + value = "polearm_2h_bladed_d_01.m2", + text = "polearm_2h_bladed_d_01.m2", + }, + { + fileId = "147228", + value = "polearm_2h_bladed_d_03.m2", + text = "polearm_2h_bladed_d_03.m2", + }, + { + fileId = "147230", + value = "polearm_2h_blood_elf_d_01.m2", + text = "polearm_2h_blood_elf_d_01.m2", + }, + { + fileId = "147239", + value = "polearm_2h_epic_d_01.m2", + text = "polearm_2h_epic_d_01.m2", + }, + { + fileId = "147241", + value = "polearm_2h_epic_d_02.m2", + text = "polearm_2h_epic_d_02.m2", + }, + { + fileId = "147243", + value = "polearm_2h_epic_d_03.m2", + text = "polearm_2h_epic_d_03.m2", + }, + { + fileId = "147245", + value = "polearm_2h_epic_d_04.m2", + text = "polearm_2h_epic_d_04.m2", + }, + { + fileId = "147247", + value = "polearm_2h_epic_d_05.m2", + text = "polearm_2h_epic_d_05.m2", + }, + { + fileId = "147249", + value = "polearm_2h_epic_d_06.m2", + text = "polearm_2h_epic_d_06.m2", + }, + { + fileId = "147251", + value = "polearm_2h_hellfire_d_01.m2", + text = "polearm_2h_hellfire_d_01.m2", + }, + { + fileId = "147257", + value = "polearm_2h_hellfire_d_01green.m2", + text = "polearm_2h_hellfire_d_01green.m2", + }, + { + fileId = "147316", + value = "polearm_2h_northrend_d_03.m2", + text = "polearm_2h_northrend_d_03.m2", + }, + { + fileId = "147317", + value = "polearm_2h_pvpalliance_a_01.m2", + text = "polearm_2h_pvpalliance_a_01.m2", + }, + { + fileId = "147320", + value = "polearm_2h_pvphorde_a_01.m2", + text = "polearm_2h_pvphorde_a_01.m2", + }, + { + fileId = "147323", + value = "polearm_2h_stratholme_d_01.m2", + text = "polearm_2h_stratholme_d_01.m2", + }, + { + fileId = "147325", + value = "polearm_2h_sunwell_d_01.m2", + text = "polearm_2h_sunwell_d_01.m2", + }, + { + fileId = "147330", + value = "polearm_2h_trident_a_01.m2", + text = "polearm_2h_trident_a_01.m2", + }, + { + fileId = "147334", + value = "polearm_2h_trident_a_02.m2", + text = "polearm_2h_trident_a_02.m2", + }, + { + fileId = "147339", + value = "polearm_2h_trident_b_01.m2", + text = "polearm_2h_trident_b_01.m2", + }, + { + fileId = "147344", + value = "polearm_2h_trident_b_02.m2", + text = "polearm_2h_trident_b_02.m2", + }, + { + fileId = "147345", + value = "polearm_2h_trident_c_01.m2", + text = "polearm_2h_trident_c_01.m2", + }, + { + fileId = "147363", + value = "polearm_2h_zulgurub_d_01.m2", + text = "polearm_2h_zulgurub_d_01.m2", + }, + { + fileId = "147382", + value = "stave_2h_ahnqiraj_d_01.m2", + text = "stave_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "147384", + value = "stave_2h_ahnqiraj_d_02.m2", + text = "stave_2h_ahnqiraj_d_02.m2", + }, + { + fileId = "147386", + value = "stave_2h_ahnqiraj_d_03.m2", + text = "stave_2h_ahnqiraj_d_03.m2", + }, + { + fileId = "147387", + value = "stave_2h_ahnqiraj_d_04.m2", + text = "stave_2h_ahnqiraj_d_04.m2", + }, + { + fileId = "147390", + value = "stave_2h_auchindoun_d_01.m2", + text = "stave_2h_auchindoun_d_01.m2", + }, + { + fileId = "147392", + value = "stave_2h_auchindoun_d_02.m2", + text = "stave_2h_auchindoun_d_02.m2", + }, + { + fileId = "147393", + value = "stave_2h_blacktemple_d_01.m2", + text = "stave_2h_blacktemple_d_01.m2", + }, + { + fileId = "147399", + value = "stave_2h_blackwing_a_01.m2", + text = "stave_2h_blackwing_a_01.m2", + }, + { + fileId = "147402", + value = "stave_2h_blackwing_a_02.m2", + text = "stave_2h_blackwing_a_02.m2", + }, + { + fileId = "147405", + value = "stave_2h_blood_a_01.m2", + text = "stave_2h_blood_a_01.m2", + }, + { + fileId = "147409", + value = "stave_2h_blood_a_02.m2", + text = "stave_2h_blood_a_02.m2", + }, + { + fileId = "147431", + value = "stave_2h_draenei_a_01.m2", + text = "stave_2h_draenei_a_01.m2", + }, + { + fileId = "147437", + value = "stave_2h_draenei_a_02.m2", + text = "stave_2h_draenei_a_02.m2", + }, + { + fileId = "147444", + value = "stave_2h_draenei_a_03.m2", + text = "stave_2h_draenei_a_03.m2", + }, + { + fileId = "147458", + value = "stave_2h_druid_d_01.m2", + text = "stave_2h_druid_d_01.m2", + }, + { + fileId = "147464", + value = "stave_2h_epic_a_01.m2", + text = "stave_2h_epic_a_01.m2", + }, + { + fileId = "147466", + value = "stave_2h_etherial_a_01.m2", + text = "stave_2h_etherial_a_01.m2", + }, + { + fileId = "147473", + value = "stave_2h_feral_d_01.m2", + text = "stave_2h_feral_d_01.m2", + }, + { + fileId = "147480", + value = "stave_2h_feral_d_02.m2", + text = "stave_2h_feral_d_02.m2", + }, + { + fileId = "147486", + value = "stave_2h_feral_d_03.m2", + text = "stave_2h_feral_d_03.m2", + }, + { + fileId = "147491", + value = "stave_2h_flaming_d_01.m2", + text = "stave_2h_flaming_d_01.m2", + }, + { + fileId = "147492", + value = "stave_2h_hellfire_c_01.m2", + text = "stave_2h_hellfire_c_01.m2", + }, + { + fileId = "147498", + value = "stave_2h_hellfire_d_01.m2", + text = "stave_2h_hellfire_d_01.m2", + }, + { + fileId = "147502", + value = "stave_2h_hellfire_d_02.m2", + text = "stave_2h_hellfire_d_02.m2", + }, + { + fileId = "147504", + value = "stave_2h_hunterepic_d_01.m2", + text = "stave_2h_hunterepic_d_01.m2", + }, + { + fileId = "147505", + value = "stave_2h_jeweled_a_01.m2", + text = "stave_2h_jeweled_a_01.m2", + }, + { + fileId = "147509", + value = "stave_2h_jeweled_a_02.m2", + text = "stave_2h_jeweled_a_02.m2", + }, + { + fileId = "147513", + value = "stave_2h_jeweled_a_03.m2", + text = "stave_2h_jeweled_a_03.m2", + }, + { + fileId = "147517", + value = "stave_2h_jeweled_b_01.m2", + text = "stave_2h_jeweled_b_01.m2", + }, + { + fileId = "147521", + value = "stave_2h_jeweled_b_02.m2", + text = "stave_2h_jeweled_b_02.m2", + }, + { + fileId = "147525", + value = "stave_2h_jeweled_c_01.m2", + text = "stave_2h_jeweled_c_01.m2", + }, + { + fileId = "147527", + value = "stave_2h_jeweled_d_01.m2", + text = "stave_2h_jeweled_d_01.m2", + }, + { + fileId = "147530", + value = "stave_2h_long_a_01.m2", + text = "stave_2h_long_a_01.m2", + }, + { + fileId = "147534", + value = "stave_2h_long_a_02.m2", + text = "stave_2h_long_a_02.m2", + }, + { + fileId = "147538", + value = "stave_2h_long_a_03.m2", + text = "stave_2h_long_a_03.m2", + }, + { + fileId = "147542", + value = "stave_2h_long_a_04.m2", + text = "stave_2h_long_a_04.m2", + }, + { + fileId = "147547", + value = "stave_2h_long_b_01.m2", + text = "stave_2h_long_b_01.m2", + }, + { + fileId = "147552", + value = "stave_2h_long_b_02holy.m2", + text = "stave_2h_long_b_02holy.m2", + }, + { + fileId = "147553", + value = "stave_2h_long_b_03.m2", + text = "stave_2h_long_b_03.m2", + }, + { + fileId = "147557", + value = "stave_2h_long_b_04.m2", + text = "stave_2h_long_b_04.m2", + }, + { + fileId = "147563", + value = "stave_2h_long_c_01.m2", + text = "stave_2h_long_c_01.m2", + }, + { + fileId = "147565", + value = "stave_2h_long_c_02.m2", + text = "stave_2h_long_c_02.m2", + }, + { + fileId = "147567", + value = "stave_2h_long_d_01.m2", + text = "stave_2h_long_d_01.m2", + }, + { + fileId = "147574", + value = "stave_2h_long_d_04.m2", + text = "stave_2h_long_d_04.m2", + }, + { + fileId = "147576", + value = "stave_2h_long_d_05.m2", + text = "stave_2h_long_d_05.m2", + }, + { + fileId = "147578", + value = "stave_2h_long_epicpriest01.m2", + text = "stave_2h_long_epicpriest01.m2", + }, + { + fileId = "147579", + value = "stave_2h_long_epicpriest02.m2", + text = "stave_2h_long_epicpriest02.m2", + }, + { + fileId = "147581", + value = "stave_2h_medivh_d_01.m2", + text = "stave_2h_medivh_d_01.m2", + }, + { + fileId = "147585", + value = "stave_2h_naga_d_01.m2", + text = "stave_2h_naga_d_01.m2", + }, + { + fileId = "147637", + value = "stave_2h_other_a_01.m2", + text = "stave_2h_other_a_01.m2", + }, + { + fileId = "147641", + value = "stave_2h_other_b_01.m2", + text = "stave_2h_other_b_01.m2", + }, + { + fileId = "147645", + value = "stave_2h_other_c_01.m2", + text = "stave_2h_other_c_01.m2", + }, + { + fileId = "147652", + value = "stave_2h_other_c_02.m2", + text = "stave_2h_other_c_02.m2", + }, + { + fileId = "147654", + value = "stave_2h_other_c_03.m2", + text = "stave_2h_other_c_03.m2", + }, + { + fileId = "147656", + value = "stave_2h_other_d_01.m2", + text = "stave_2h_other_d_01.m2", + }, + { + fileId = "147659", + value = "stave_2h_outlandraid_d_01.m2", + text = "stave_2h_outlandraid_d_01.m2", + }, + { + fileId = "147660", + value = "stave_2h_outlandraid_d_01_blue.m2", + text = "stave_2h_outlandraid_d_01_blue.m2", + }, + { + fileId = "147661", + value = "stave_2h_outlandraid_d_01_red.m2", + text = "stave_2h_outlandraid_d_01_red.m2", + }, + { + fileId = "147663", + value = "stave_2h_outlandraid_d_02_blue.m2", + text = "stave_2h_outlandraid_d_02_blue.m2", + }, + { + fileId = "147664", + value = "stave_2h_outlandraid_d_02_red.m2", + text = "stave_2h_outlandraid_d_02_red.m2", + }, + { + fileId = "147666", + value = "stave_2h_outlandraid_d_03.m2", + text = "stave_2h_outlandraid_d_03.m2", + }, + { + fileId = "147667", + value = "stave_2h_outlandraid_d_03_blue.m2", + text = "stave_2h_outlandraid_d_03_blue.m2", + }, + { + fileId = "147668", + value = "stave_2h_outlandraid_d_03_red.m2", + text = "stave_2h_outlandraid_d_03_red.m2", + }, + { + fileId = "147670", + value = "stave_2h_outlandraid_d_04.m2", + text = "stave_2h_outlandraid_d_04.m2", + }, + { + fileId = "147674", + value = "stave_2h_outlandraid_d_05.m2", + text = "stave_2h_outlandraid_d_05.m2", + }, + { + fileId = "147680", + value = "stave_2h_outlandraid_d_06.m2", + text = "stave_2h_outlandraid_d_06.m2", + }, + { + fileId = "147682", + value = "stave_2h_outlandraid_d_06_blue.m2", + text = "stave_2h_outlandraid_d_06_blue.m2", + }, + { + fileId = "147684", + value = "stave_2h_priest_d_01.m2", + text = "stave_2h_priest_d_01.m2", + }, + { + fileId = "147688", + value = "stave_2h_pvpalliance_a_01.m2", + text = "stave_2h_pvpalliance_a_01.m2", + }, + { + fileId = "147692", + value = "stave_2h_pvphorde_a_01.m2", + text = "stave_2h_pvphorde_a_01.m2", + }, + { + fileId = "147697", + value = "stave_2h_scythe_c_03.m2", + text = "stave_2h_scythe_c_03.m2", + }, + { + fileId = "147699", + value = "stave_2h_stratholme_d_01.m2", + text = "stave_2h_stratholme_d_01.m2", + }, + { + fileId = "147701", + value = "stave_2h_stratholme_d_02.m2", + text = "stave_2h_stratholme_d_02.m2", + }, + { + fileId = "147703", + value = "stave_2h_stratholme_d_03.m2", + text = "stave_2h_stratholme_d_03.m2", + }, + { + fileId = "147704", + value = "stave_2h_sunwell_c_01.m2", + text = "stave_2h_sunwell_c_01.m2", + }, + { + fileId = "147710", + value = "stave_2h_sunwell_d_01.m2", + text = "stave_2h_sunwell_d_01.m2", + }, + { + fileId = "147715", + value = "stave_2h_sunwell_d_02.m2", + text = "stave_2h_sunwell_d_02.m2", + }, + { + fileId = "147720", + value = "stave_2h_sunwell_d_03.m2", + text = "stave_2h_sunwell_d_03.m2", + }, + { + fileId = "147737", + value = "stave_2h_warlock_d_01.m2", + text = "stave_2h_warlock_d_01.m2", + }, + { + fileId = "147741", + value = "stave_2h_zulaman_d_01.m2", + text = "stave_2h_zulaman_d_01.m2", + }, + { + fileId = "147746", + value = "stave_2h_zulaman_d_02.m2", + text = "stave_2h_zulaman_d_02.m2", + }, + { + fileId = "147751", + value = "stave_2h_zulaman_d_03.m2", + text = "stave_2h_zulaman_d_03.m2", + }, + { + fileId = "147757", + value = "stave_2h_zulgurub_d_01.m2", + text = "stave_2h_zulgurub_d_01.m2", + }, + { + fileId = "147759", + value = "stave_2h_zulgurub_d_02.m2", + text = "stave_2h_zulgurub_d_02.m2", + }, + { + fileId = "147761", + value = "stave_2h_zulgurub_d_03.m2", + text = "stave_2h_zulgurub_d_03.m2", + }, + { + fileId = "147764", + value = "sword_1h_ahnqiraj_d_01.m2", + text = "sword_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "147767", + value = "sword_1h_ahnqiraj_d_02.m2", + text = "sword_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "147770", + value = "sword_1h_ahnqiraj_d_03.m2", + text = "sword_1h_ahnqiraj_d_03.m2", + }, + { + fileId = "147772", + value = "sword_1h_akama_d_01.m2", + text = "sword_1h_akama_d_01.m2", + }, + { + fileId = "147775", + value = "sword_1h_auchindoun_d_01.m2", + text = "sword_1h_auchindoun_d_01.m2", + }, + { + fileId = "147777", + value = "sword_1h_blacksmithing_d_01.m2", + text = "sword_1h_blacksmithing_d_01.m2", + }, + { + fileId = "147779", + value = "sword_1h_blacksmithing_d_02.m2", + text = "sword_1h_blacksmithing_d_02.m2", + }, + { + fileId = "147781", + value = "sword_1h_blacksmithing_d_03.m2", + text = "sword_1h_blacksmithing_d_03.m2", + }, + { + fileId = "147783", + value = "sword_1h_blackwing_a_01.m2", + text = "sword_1h_blackwing_a_01.m2", + }, + { + fileId = "147785", + value = "sword_1h_blackwing_a_02.m2", + text = "sword_1h_blackwing_a_02.m2", + }, + { + fileId = "147787", + value = "sword_1h_blood_a_01.m2", + text = "sword_1h_blood_a_01.m2", + }, + { + fileId = "147790", + value = "sword_1h_blood_a_02.m2", + text = "sword_1h_blood_a_02.m2", + }, + { + fileId = "147793", + value = "sword_1h_blood_a_03.m2", + text = "sword_1h_blood_a_03.m2", + }, + { + fileId = "147800", + value = "sword_1h_caverns_d_01.m2", + text = "sword_1h_caverns_d_01.m2", + }, + { + fileId = "147806", + value = "sword_1h_crystal_c_01.m2", + text = "sword_1h_crystal_c_01.m2", + }, + { + fileId = "147812", + value = "sword_1h_crystal_c_02.m2", + text = "sword_1h_crystal_c_02.m2", + }, + { + fileId = "147818", + value = "sword_1h_crystal_c_03.m2", + text = "sword_1h_crystal_c_03.m2", + }, + { + fileId = "147824", + value = "sword_1h_draenei_a_01.m2", + text = "sword_1h_draenei_a_01.m2", + }, + { + fileId = "147830", + value = "sword_1h_draenei_a_02.m2", + text = "sword_1h_draenei_a_02.m2", + }, + { + fileId = "147836", + value = "sword_1h_draenei_a_03.m2", + text = "sword_1h_draenei_a_03.m2", + }, + { + fileId = "147842", + value = "sword_1h_draenei_b_01.m2", + text = "sword_1h_draenei_b_01.m2", + }, + { + fileId = "147849", + value = "sword_1h_draenei_c_01.m2", + text = "sword_1h_draenei_c_01.m2", + }, + { + fileId = "147856", + value = "sword_1h_draenei_d_01.m2", + text = "sword_1h_draenei_d_01.m2", + }, + { + fileId = "147860", + value = "sword_1h_fire_a_01.m2", + text = "sword_1h_fire_a_01.m2", + }, + { + fileId = "147862", + value = "sword_1h_haremmatron_d_01.m2", + text = "sword_1h_haremmatron_d_01.m2", + }, + { + fileId = "147864", + value = "sword_1h_hellfire_d_01.m2", + text = "sword_1h_hellfire_d_01.m2", + }, + { + fileId = "147867", + value = "sword_1h_horde_a_01.m2", + text = "sword_1h_horde_a_01.m2", + }, + { + fileId = "147872", + value = "sword_1h_horde_a_02.m2", + text = "sword_1h_horde_a_02.m2", + }, + { + fileId = "147877", + value = "sword_1h_horde_a_03.m2", + text = "sword_1h_horde_a_03.m2", + }, + { + fileId = "147878", + value = "sword_1h_horde_a_04.m2", + text = "sword_1h_horde_a_04.m2", + }, + { + fileId = "147879", + value = "sword_1h_horde_b_01.m2", + text = "sword_1h_horde_b_01.m2", + }, + { + fileId = "147885", + value = "sword_1h_horde_b_02.m2", + text = "sword_1h_horde_b_02.m2", + }, + { + fileId = "147891", + value = "sword_1h_horde_b_03.m2", + text = "sword_1h_horde_b_03.m2", + }, + { + fileId = "147897", + value = "sword_1h_horde_b_04.m2", + text = "sword_1h_horde_b_04.m2", + }, + { + fileId = "147903", + value = "sword_1h_horde_b_05.m2", + text = "sword_1h_horde_b_05.m2", + }, + { + fileId = "147909", + value = "sword_1h_horde_c_01.m2", + text = "sword_1h_horde_c_01.m2", + }, + { + fileId = "147915", + value = "sword_1h_horde_c_02.m2", + text = "sword_1h_horde_c_02.m2", + }, + { + fileId = "147922", + value = "sword_1h_hyjal_d_01.m2", + text = "sword_1h_hyjal_d_01.m2", + }, + { + fileId = "147927", + value = "sword_1h_hyjal_d_02.m2", + text = "sword_1h_hyjal_d_02.m2", + }, + { + fileId = "147932", + value = "sword_1h_hyjal_d_03.m2", + text = "sword_1h_hyjal_d_03.m2", + }, + { + fileId = "147937", + value = "sword_1h_katana_a_01.m2", + text = "sword_1h_katana_a_01.m2", + }, + { + fileId = "147941", + value = "sword_1h_katana_a_02.m2", + text = "sword_1h_katana_a_02.m2", + }, + { + fileId = "147945", + value = "sword_1h_katana_b_01.m2", + text = "sword_1h_katana_b_01.m2", + }, + { + fileId = "147949", + value = "sword_1h_katana_b_02.m2", + text = "sword_1h_katana_b_02.m2", + }, + { + fileId = "147953", + value = "sword_1h_long_a_01.m2", + text = "sword_1h_long_a_01.m2", + }, + { + fileId = "147955", + value = "sword_1h_long_a_02.m2", + text = "sword_1h_long_a_02.m2", + }, + { + fileId = "147959", + value = "sword_1h_long_a_03.m2", + text = "sword_1h_long_a_03.m2", + }, + { + fileId = "147963", + value = "sword_1h_long_b_01.m2", + text = "sword_1h_long_b_01.m2", + }, + { + fileId = "147965", + value = "sword_1h_long_b_02.m2", + text = "sword_1h_long_b_02.m2", + }, + { + fileId = "147969", + value = "sword_1h_long_b_03.m2", + text = "sword_1h_long_b_03.m2", + }, + { + fileId = "147973", + value = "sword_1h_long_c_01.m2", + text = "sword_1h_long_c_01.m2", + }, + { + fileId = "147975", + value = "sword_1h_long_d_01.m2", + text = "sword_1h_long_d_01.m2", + }, + { + fileId = "147977", + value = "sword_1h_long_d_02.m2", + text = "sword_1h_long_d_02.m2", + }, + { + fileId = "147984", + value = "sword_1h_long_d_03.m2", + text = "sword_1h_long_d_03.m2", + }, + { + fileId = "147986", + value = "sword_1h_machete_a_01.m2", + text = "sword_1h_machete_a_01.m2", + }, + { + fileId = "147988", + value = "sword_1h_machete_b_01.m2", + text = "sword_1h_machete_b_01.m2", + }, + { + fileId = "147990", + value = "sword_1h_machete_c_01.m2", + text = "sword_1h_machete_c_01.m2", + }, + { + fileId = "147992", + value = "sword_1h_machete_d_01.m2", + text = "sword_1h_machete_d_01.m2", + }, + { + fileId = "147994", + value = "sword_1h_mage_d_01.m2", + text = "sword_1h_mage_d_01.m2", + }, + { + fileId = "147996", + value = "sword_1h_miev_d_01.m2", + text = "sword_1h_miev_d_01.m2", + }, + { + fileId = "147998", + value = "sword_1h_naxxramas_d_01.m2", + text = "sword_1h_naxxramas_d_01.m2", + }, + { + fileId = "148038", + value = "sword_1h_northrend_c_01.m2", + text = "sword_1h_northrend_c_01.m2", + }, + { + fileId = "148055", + value = "sword_1h_northrend_d_01.m2", + text = "sword_1h_northrend_d_01.m2", + }, + { + fileId = "148070", + value = "sword_1h_pvpalliance_a_01.m2", + text = "sword_1h_pvpalliance_a_01.m2", + }, + { + fileId = "148075", + value = "sword_1h_pvphorde_a_01.m2", + text = "sword_1h_pvphorde_a_01.m2", + }, + { + fileId = "148079", + value = "sword_1h_raid_d_01.m2", + text = "sword_1h_raid_d_01.m2", + }, + { + fileId = "148081", + value = "sword_1h_raid_d_02.m2", + text = "sword_1h_raid_d_02.m2", + }, + { + fileId = "148083", + value = "sword_1h_raid_d_03.m2", + text = "sword_1h_raid_d_03.m2", + }, + { + fileId = "148085", + value = "sword_1h_raid_d_04.m2", + text = "sword_1h_raid_d_04.m2", + }, + { + fileId = "148087", + value = "sword_1h_raid_d_05.m2", + text = "sword_1h_raid_d_05.m2", + }, + { + fileId = "148089", + value = "sword_1h_raid_d_06.m2", + text = "sword_1h_raid_d_06.m2", + }, + { + fileId = "148090", + value = "sword_1h_rapier_a_01.m2", + text = "sword_1h_rapier_a_01.m2", + }, + { + fileId = "148095", + value = "sword_1h_sabre_a_01.m2", + text = "sword_1h_sabre_a_01.m2", + }, + { + fileId = "148099", + value = "sword_1h_sabre_a_02.m2", + text = "sword_1h_sabre_a_02.m2", + }, + { + fileId = "148103", + value = "sword_1h_sabre_a_03.m2", + text = "sword_1h_sabre_a_03.m2", + }, + { + fileId = "148107", + value = "sword_1h_sabre_b_01.m2", + text = "sword_1h_sabre_b_01.m2", + }, + { + fileId = "148111", + value = "sword_1h_sabre_b_02.m2", + text = "sword_1h_sabre_b_02.m2", + }, + { + fileId = "148115", + value = "sword_1h_sabre_b_03.m2", + text = "sword_1h_sabre_b_03.m2", + }, + { + fileId = "148119", + value = "sword_1h_sabre_c_01.m2", + text = "sword_1h_sabre_c_01.m2", + }, + { + fileId = "148120", + value = "sword_1h_scimitar_a_02.m2", + text = "sword_1h_scimitar_a_02.m2", + }, + { + fileId = "148127", + value = "sword_1h_shivan_d_01.m2", + text = "sword_1h_shivan_d_01.m2", + }, + { + fileId = "148128", + value = "sword_1h_short_a_01.m2", + text = "sword_1h_short_a_01.m2", + }, + { + fileId = "148132", + value = "sword_1h_short_a_02.m2", + text = "sword_1h_short_a_02.m2", + }, + { + fileId = "148136", + value = "sword_1h_short_a_03.m2", + text = "sword_1h_short_a_03.m2", + }, + { + fileId = "148140", + value = "sword_1h_short_b_01.m2", + text = "sword_1h_short_b_01.m2", + }, + { + fileId = "148144", + value = "sword_1h_short_b_02.m2", + text = "sword_1h_short_b_02.m2", + }, + { + fileId = "148148", + value = "sword_1h_short_b_03.m2", + text = "sword_1h_short_b_03.m2", + }, + { + fileId = "148152", + value = "sword_1h_short_c_01.m2", + text = "sword_1h_short_c_01.m2", + }, + { + fileId = "148154", + value = "sword_1h_short_c_02.m2", + text = "sword_1h_short_c_02.m2", + }, + { + fileId = "148156", + value = "sword_1h_stratholme_d_01.m2", + text = "sword_1h_stratholme_d_01.m2", + }, + { + fileId = "148157", + value = "sword_1h_stratholme_d_02.m2", + text = "sword_1h_stratholme_d_02.m2", + }, + { + fileId = "148158", + value = "sword_1h_stratholme_d_03.m2", + text = "sword_1h_stratholme_d_03.m2", + }, + { + fileId = "148160", + value = "sword_1h_sunwell_d_01.m2", + text = "sword_1h_sunwell_d_01.m2", + }, + { + fileId = "148165", + value = "sword_1h_sunwell_d_02.m2", + text = "sword_1h_sunwell_d_02.m2", + }, + { + fileId = "148169", + value = "sword_1h_thunderblade_a_01.m2", + text = "sword_1h_thunderblade_a_01.m2", + }, + { + fileId = "148171", + value = "sword_1h_troll_b_01.m2", + text = "sword_1h_troll_b_01.m2", + }, + { + fileId = "148198", + value = "sword_1h_warlock_d_01.m2", + text = "sword_1h_warlock_d_01.m2", + }, + { + fileId = "148203", + value = "sword_1h_warrior_d_01.m2", + text = "sword_1h_warrior_d_01.m2", + }, + { + fileId = "148209", + value = "sword_1h_zulaman_d_01.m2", + text = "sword_1h_zulaman_d_01.m2", + }, + { + fileId = "148213", + value = "sword_1h_zulaman_d_02.m2", + text = "sword_1h_zulaman_d_02.m2", + }, + { + fileId = "148218", + value = "sword_1h_zulaman_d_03.m2", + text = "sword_1h_zulaman_d_03.m2", + }, + { + fileId = "148224", + value = "sword_1h_zulgurub_d_01.m2", + text = "sword_1h_zulgurub_d_01.m2", + }, + { + fileId = "148226", + value = "sword_1h_zulgurub_d_02.m2", + text = "sword_1h_zulgurub_d_02.m2", + }, + { + fileId = "148228", + value = "sword_2h_ahnqiraj_d_01.m2", + text = "sword_2h_ahnqiraj_d_01.m2", + }, + { + fileId = "148231", + value = "sword_2h_ahnqiraj_d_02.m2", + text = "sword_2h_ahnqiraj_d_02.m2", + }, + { + fileId = "148233", + value = "sword_2h_ashbringer.m2", + text = "sword_2h_ashbringer.m2", + }, + { + fileId = "148234", + value = "sword_2h_ashbringer02.m2", + text = "sword_2h_ashbringer02.m2", + }, + { + fileId = "148235", + value = "sword_2h_ashbringer_a_01.m2", + text = "sword_2h_ashbringer_a_01.m2", + }, + { + fileId = "148238", + value = "sword_2h_ashbringercorrupt.m2", + text = "sword_2h_ashbringercorrupt.m2", + }, + { + fileId = "148240", + value = "sword_2h_auchindoun_d_01.m2", + text = "sword_2h_auchindoun_d_01.m2", + }, + { + fileId = "148241", + value = "sword_2h_bastard_d_01.m2", + text = "sword_2h_bastard_d_01.m2", + }, + { + fileId = "148244", + value = "sword_2h_blacksmithing_d_01.m2", + text = "sword_2h_blacksmithing_d_01.m2", + }, + { + fileId = "148246", + value = "sword_2h_blacksmithing_d_02.m2", + text = "sword_2h_blacksmithing_d_02.m2", + }, + { + fileId = "148248", + value = "sword_2h_blacksmithing_d_03.m2", + text = "sword_2h_blacksmithing_d_03.m2", + }, + { + fileId = "148250", + value = "sword_2h_blackwing_a_01.m2", + text = "sword_2h_blackwing_a_01.m2", + }, + { + fileId = "148252", + value = "sword_2h_blackwing_a_02.m2", + text = "sword_2h_blackwing_a_02.m2", + }, + { + fileId = "148254", + value = "sword_2h_blood_a_01.m2", + text = "sword_2h_blood_a_01.m2", + }, + { + fileId = "148259", + value = "sword_2h_blood_a_02.m2", + text = "sword_2h_blood_a_02.m2", + }, + { + fileId = "148263", + value = "sword_2h_blood_b_01.m2", + text = "sword_2h_blood_b_01.m2", + }, + { + fileId = "148268", + value = "sword_2h_blood_b_02.m2", + text = "sword_2h_blood_b_02.m2", + }, + { + fileId = "148272", + value = "sword_2h_blood_c_01.m2", + text = "sword_2h_blood_c_01.m2", + }, + { + fileId = "148277", + value = "sword_2h_blood_c_02.m2", + text = "sword_2h_blood_c_02.m2", + }, + { + fileId = "148281", + value = "sword_2h_blood_c_03.m2", + text = "sword_2h_blood_c_03.m2", + }, + { + fileId = "148286", + value = "sword_2h_broadsword_a_01.m2", + text = "sword_2h_broadsword_a_01.m2", + }, + { + fileId = "148287", + value = "sword_2h_broadsword_a_02.m2", + text = "sword_2h_broadsword_a_02.m2", + }, + { + fileId = "148291", + value = "sword_2h_broadsword_a_03.m2", + text = "sword_2h_broadsword_a_03.m2", + }, + { + fileId = "148295", + value = "sword_2h_broadsword_b_01.m2", + text = "sword_2h_broadsword_b_01.m2", + }, + { + fileId = "148296", + value = "sword_2h_claymore_a_01.m2", + text = "sword_2h_claymore_a_01.m2", + }, + { + fileId = "148302", + value = "sword_2h_claymore_a_02.m2", + text = "sword_2h_claymore_a_02.m2", + }, + { + fileId = "148307", + value = "sword_2h_claymore_b_01.m2", + text = "sword_2h_claymore_b_01.m2", + }, + { + fileId = "148311", + value = "sword_2h_claymore_b_02.m2", + text = "sword_2h_claymore_b_02.m2", + }, + { + fileId = "148315", + value = "sword_2h_claymore_c_01.m2", + text = "sword_2h_claymore_c_01.m2", + }, + { + fileId = "148322", + value = "sword_2h_crystal_c_01.m2", + text = "sword_2h_crystal_c_01.m2", + }, + { + fileId = "148327", + value = "sword_2h_crystal_c_02.m2", + text = "sword_2h_crystal_c_02.m2", + }, + { + fileId = "148332", + value = "sword_2h_crystal_c_03.m2", + text = "sword_2h_crystal_c_03.m2", + }, + { + fileId = "148345", + value = "sword_2h_demonblade_d_01.m2", + text = "sword_2h_demonblade_d_01.m2", + }, + { + fileId = "148347", + value = "sword_2h_draenei_a_01.m2", + text = "sword_2h_draenei_a_01.m2", + }, + { + fileId = "148353", + value = "sword_2h_draenei_a_02.m2", + text = "sword_2h_draenei_a_02.m2", + }, + { + fileId = "148360", + value = "sword_2h_epic_a_03.m2", + text = "sword_2h_epic_a_03.m2", + }, + { + fileId = "148364", + value = "sword_2h_horde_a_01.m2", + text = "sword_2h_horde_a_01.m2", + }, + { + fileId = "148365", + value = "sword_2h_horde_a_02.m2", + text = "sword_2h_horde_a_02.m2", + }, + { + fileId = "148367", + value = "sword_2h_horde_b_03.m2", + text = "sword_2h_horde_b_03.m2", + }, + { + fileId = "148373", + value = "sword_2h_horde_c_01.m2", + text = "sword_2h_horde_c_01.m2", + }, + { + fileId = "148379", + value = "sword_2h_horde_c_02.m2", + text = "sword_2h_horde_c_02.m2", + }, + { + fileId = "148385", + value = "sword_2h_horde_c_03.m2", + text = "sword_2h_horde_c_03.m2", + }, + { + fileId = "148393", + value = "sword_2h_horde_d_01.m2", + text = "sword_2h_horde_d_01.m2", + }, + { + fileId = "148397", + value = "sword_2h_horde_d_02.m2", + text = "sword_2h_horde_d_02.m2", + }, + { + fileId = "148401", + value = "sword_2h_hyjal_d_01.m2", + text = "sword_2h_hyjal_d_01.m2", + }, + { + fileId = "148406", + value = "sword_2h_katana_a_01.m2", + text = "sword_2h_katana_a_01.m2", + }, + { + fileId = "148410", + value = "sword_2h_katana_b_01.m2", + text = "sword_2h_katana_b_01.m2", + }, + { + fileId = "148414", + value = "sword_2h_katana_b_02.m2", + text = "sword_2h_katana_b_02.m2", + }, + { + fileId = "148418", + value = "sword_2h_korean_a_01.m2", + text = "sword_2h_korean_a_01.m2", + }, + { + fileId = "148420", + value = "sword_2h_korean_c_01.m2", + text = "sword_2h_korean_c_01.m2", + }, + { + fileId = "148485", + value = "sword_2h_pvpalliance_a_01.m2", + text = "sword_2h_pvpalliance_a_01.m2", + }, + { + fileId = "148487", + value = "sword_2h_pvphorde_a_01.m2", + text = "sword_2h_pvphorde_a_01.m2", + }, + { + fileId = "148490", + value = "sword_2h_raid_d_01.m2", + text = "sword_2h_raid_d_01.m2", + }, + { + fileId = "148492", + value = "sword_2h_raid_d_02.m2", + text = "sword_2h_raid_d_02.m2", + }, + { + fileId = "148494", + value = "sword_2h_raid_d_03.m2", + text = "sword_2h_raid_d_03.m2", + }, + { + fileId = "148496", + value = "sword_2h_raid_d_04.m2", + text = "sword_2h_raid_d_04.m2", + }, + { + fileId = "148498", + value = "sword_2h_raid_d_05.m2", + text = "sword_2h_raid_d_05.m2", + }, + { + fileId = "148500", + value = "sword_2h_raid_d_06.m2", + text = "sword_2h_raid_d_06.m2", + }, + { + fileId = "148502", + value = "sword_2h_stratholme_d_01.m2", + text = "sword_2h_stratholme_d_01.m2", + }, + { + fileId = "148504", + value = "sword_2h_stratholme_d_02.m2", + text = "sword_2h_stratholme_d_02.m2", + }, + { + fileId = "148507", + value = "sword_2h_sunwell_d_01.m2", + text = "sword_2h_sunwell_d_01.m2", + }, + { + fileId = "148513", + value = "sword_2h_tauren_b_01.m2", + text = "sword_2h_tauren_b_01.m2", + }, + { + fileId = "148525", + value = "sword_2h_zulaman_d_01.m2", + text = "sword_2h_zulaman_d_01.m2", + }, + { + fileId = "148530", + value = "sword_2h_zulgurub_d_01.m2", + text = "sword_2h_zulgurub_d_01.m2", + }, + { + fileId = "148534", + value = "thrown_1h_axe_a_01.m2", + text = "thrown_1h_axe_a_01.m2", + }, + { + fileId = "148538", + value = "thrown_1h_axe_a_02.m2", + text = "thrown_1h_axe_a_02.m2", + }, + { + fileId = "148542", + value = "thrown_1h_axe_b_01.m2", + text = "thrown_1h_axe_b_01.m2", + }, + { + fileId = "148546", + value = "thrown_1h_boomerang_a_01.m2", + text = "thrown_1h_boomerang_a_01.m2", + }, + { + fileId = "148553", + value = "thrown_1h_coilfang_dagger_d_01.m2", + text = "thrown_1h_coilfang_dagger_d_01.m2", + }, + { + fileId = "148554", + value = "thrown_1h_dagger_a_01.m2", + text = "thrown_1h_dagger_a_01.m2", + }, + { + fileId = "148558", + value = "thrown_1h_dagger_a_02.m2", + text = "thrown_1h_dagger_a_02.m2", + }, + { + fileId = "148562", + value = "thrown_1h_dagger_b_01.m2", + text = "thrown_1h_dagger_b_01.m2", + }, + { + fileId = "148566", + value = "thrown_1h_dynamite_a_01.m2", + text = "thrown_1h_dynamite_a_01.m2", + }, + { + fileId = "148568", + value = "thrown_1h_dynamite_a_02.m2", + text = "thrown_1h_dynamite_a_02.m2", + }, + { + fileId = "148569", + value = "thrown_1h_fan_a_01.m2", + text = "thrown_1h_fan_a_01.m2", + }, + { + fileId = "148570", + value = "thrown_1h_hammer_c_01.m2", + text = "thrown_1h_hammer_c_01.m2", + }, + { + fileId = "148574", + value = "thrown_1h_molotov_a_01.m2", + text = "thrown_1h_molotov_a_01.m2", + }, + { + fileId = "148575", + value = "thrown_1h_shuriken_a_01.m2", + text = "thrown_1h_shuriken_a_01.m2", + }, + { + fileId = "148579", + value = "thrown_1h_shuriken_a_02.m2", + text = "thrown_1h_shuriken_a_02.m2", + }, + { + fileId = "148583", + value = "thrown_1h_shuriken_b_01.m2", + text = "thrown_1h_shuriken_b_01.m2", + }, + { + fileId = "148587", + value = "thrown_1h_sunwell_d_01.m2", + text = "thrown_1h_sunwell_d_01.m2", + }, + { + fileId = "148593", + value = "totem_2h_carved_b_01.m2", + text = "totem_2h_carved_b_01.m2", + }, + { + fileId = "148595", + value = "totem_2h_carved_d_01.m2", + text = "totem_2h_carved_d_01.m2", + }, + { + fileId = "148598", + value = "wand_1h_ahnqiraj_d_01.m2", + text = "wand_1h_ahnqiraj_d_01.m2", + }, + { + fileId = "148603", + value = "wand_1h_ahnqiraj_d_02.m2", + text = "wand_1h_ahnqiraj_d_02.m2", + }, + { + fileId = "148608", + value = "wand_1h_auchindoun_d_01.m2", + text = "wand_1h_auchindoun_d_01.m2", + }, + { + fileId = "148610", + value = "wand_1h_blackwing_a_01.m2", + text = "wand_1h_blackwing_a_01.m2", + }, + { + fileId = "148611", + value = "wand_1h_blood_a_01.m2", + text = "wand_1h_blood_a_01.m2", + }, + { + fileId = "148617", + value = "wand_1h_draenei_a_01.m2", + text = "wand_1h_draenei_a_01.m2", + }, + { + fileId = "148623", + value = "wand_1h_horde_a_01.m2", + text = "wand_1h_horde_a_01.m2", + }, + { + fileId = "148628", + value = "wand_1h_horde_a_02.m2", + text = "wand_1h_horde_a_02.m2", + }, + { + fileId = "148634", + value = "wand_1h_horde_a_03.m2", + text = "wand_1h_horde_a_03.m2", + }, + { + fileId = "148640", + value = "wand_1h_horde_b_01.m2", + text = "wand_1h_horde_b_01.m2", + }, + { + fileId = "148646", + value = "wand_1h_horde_b_02.m2", + text = "wand_1h_horde_b_02.m2", + }, + { + fileId = "148652", + value = "wand_1h_jeweled_b_01.m2", + text = "wand_1h_jeweled_b_01.m2", + }, + { + fileId = "148657", + value = "wand_1h_jeweled_b_02.m2", + text = "wand_1h_jeweled_b_02.m2", + }, + { + fileId = "148663", + value = "wand_1h_outlandraid_d_01.m2", + text = "wand_1h_outlandraid_d_01.m2", + }, + { + fileId = "148669", + value = "wand_1h_outlandraid_d_02.m2", + text = "wand_1h_outlandraid_d_02.m2", + }, + { + fileId = "148674", + value = "wand_1h_outlandraid_d_03.m2", + text = "wand_1h_outlandraid_d_03.m2", + }, + { + fileId = "148680", + value = "wand_1h_outlandraid_d_04.m2", + text = "wand_1h_outlandraid_d_04.m2", + }, + { + fileId = "148685", + value = "wand_1h_outlandraid_d_05.m2", + text = "wand_1h_outlandraid_d_05.m2", + }, + { + fileId = "148689", + value = "wand_1h_outlandraid_d_06.m2", + text = "wand_1h_outlandraid_d_06.m2", + }, + { + fileId = "148694", + value = "wand_1h_romancandle_a_01.m2", + text = "wand_1h_romancandle_a_01.m2", + }, + { + fileId = "148695", + value = "wand_1h_standard_a_01.m2", + text = "wand_1h_standard_a_01.m2", + }, + { + fileId = "148699", + value = "wand_1h_standard_a_02.m2", + text = "wand_1h_standard_a_02.m2", + }, + { + fileId = "148706", + value = "wand_1h_stratholme_d_01.m2", + text = "wand_1h_stratholme_d_01.m2", + }, + { + fileId = "148708", + value = "wand_1h_stratholme_d_02.m2", + text = "wand_1h_stratholme_d_02.m2", + }, + { + fileId = "148709", + value = "wand_1h_sunwell_d_01.m2", + text = "wand_1h_sunwell_d_01.m2", + }, + { + fileId = "148714", + value = "wand_1h_sunwell_d_02.m2", + text = "wand_1h_sunwell_d_02.m2", + }, + { + fileId = "148725", + value = "wand_1h_zulaman_d_01.m2", + text = "wand_1h_zulaman_d_01.m2", + }, + { + fileId = "148730", + value = "wand_1h_zulaman_d_02.m2", + text = "wand_1h_zulaman_d_02.m2", + }, + { + fileId = "148734", + value = "wand_1h_zulgurub_d_01.m2", + text = "wand_1h_zulgurub_d_01.m2", + }, + { + fileId = "148735", + value = "wand_1h_zulgurub_d_02.m2", + text = "wand_1h_zulgurub_d_02.m2", + }, + { + fileId = "148736", + value = "wand_1h_zulgurub_d_03.m2", + text = "wand_1h_zulgurub_d_03.m2", + }, + }, + value = "weapon", + text = "weapon", + }, + }, + value = "objectcomponents", + text = "objectcomponents", + }, + }, + value = "item", + text = "item", + }, + { + children = { + { + children = { + { + fileId = "165398", + value = "bloodspurt.m2", + text = "bloodspurt.m2", + }, + { + fileId = "165399", + value = "bloodspurtblack.m2", + text = "bloodspurtblack.m2", + }, + { + fileId = "165400", + value = "bloodspurtblacklarge.m2", + text = "bloodspurtblacklarge.m2", + }, + { + fileId = "165401", + value = "bloodspurtblue.m2", + text = "bloodspurtblue.m2", + }, + { + fileId = "165402", + value = "bloodspurtbluelarge.m2", + text = "bloodspurtbluelarge.m2", + }, + { + fileId = "165404", + value = "bloodspurtgreen.m2", + text = "bloodspurtgreen.m2", + }, + { + fileId = "165405", + value = "bloodspurtgreenlarge.m2", + text = "bloodspurtgreenlarge.m2", + }, + { + fileId = "165407", + value = "bloodspurtlarge.m2", + text = "bloodspurtlarge.m2", + }, + }, + value = "bloodspurts", + text = "bloodspurts", + }, + { + fileId = "165411", + value = "bubbles.m2", + text = "bubbles.m2", + }, + { + fileId = "165412", + value = "coldbreath.m2", + text = "coldbreath.m2", + }, + { + fileId = "165415", + value = "ember_trail.m2", + text = "ember_trail.m2", + }, + { + fileId = "165417", + value = "footstepspraydirt.m2", + text = "footstepspraydirt.m2", + }, + { + fileId = "165418", + value = "footstepspraydirtwalk.m2", + text = "footstepspraydirtwalk.m2", + }, + { + fileId = "165419", + value = "footstepspraysnow.m2", + text = "footstepspraysnow.m2", + }, + { + fileId = "165420", + value = "footstepspraysnowwalk.m2", + text = "footstepspraysnowwalk.m2", + }, + { + fileId = "165421", + value = "footstepspraywater.m2", + text = "footstepspraywater.m2", + }, + { + fileId = "165422", + value = "footstepspraywaterwalk.m2", + text = "footstepspraywaterwalk.m2", + }, + { + fileId = "165427", + value = "greenleaves.m2", + text = "greenleaves.m2", + }, + { + fileId = "165433", + value = "loginfx.m2", + text = "loginfx.m2", + }, + { + fileId = "165434", + value = "lootfx.m2", + text = "lootfx.m2", + }, + { + fileId = "2198654", + value = "moltenblast_missile.m2", + text = "moltenblast_missile.m2", + }, + { + fileId = "165436", + value = "morphfx.m2", + text = "morphfx.m2", + }, + { + fileId = "165437", + value = "pick_spellobject.m2", + text = "pick_spellobject.m2", + }, + { + fileId = "2198578", + value = "stunswirl_state_head.m2", + text = "stunswirl_state_head.m2", + }, + }, + value = "particles", + text = "particles", + }, + { + children = { + { + fileId = "165528", + value = "sonicboom_impactdd_uber_chest.m2", + text = "sonicboom_impactdd_uber_chest.m2", + }, + }, + value = "spell", + text = "spell", + }, + { + children = { + { + fileId = "165529", + value = "abolishmagic_base.m2", + text = "abolishmagic_base.m2", + }, + { + fileId = "165530", + value = "abyssal_ball.m2", + text = "abyssal_ball.m2", + }, + { + fileId = "165531", + value = "abyssal_impact_base.m2", + text = "abyssal_impact_base.m2", + }, + { + fileId = "165532", + value = "acidbreath.m2", + text = "acidbreath.m2", + }, + { + fileId = "165533", + value = "acidburn.m2", + text = "acidburn.m2", + }, + { + fileId = "165534", + value = "acidburn_black.m2", + text = "acidburn_black.m2", + }, + { + fileId = "165535", + value = "acidburn_blue.m2", + text = "acidburn_blue.m2", + }, + { + fileId = "165536", + value = "acidburn_lightblue.m2", + text = "acidburn_lightblue.m2", + }, + { + fileId = "165537", + value = "acidburn_orange.m2", + text = "acidburn_orange.m2", + }, + { + fileId = "165538", + value = "acidburn_purple.m2", + text = "acidburn_purple.m2", + }, + { + fileId = "165539", + value = "acidburn_red.m2", + text = "acidburn_red.m2", + }, + { + fileId = "165540", + value = "acidburn_small.m2", + text = "acidburn_small.m2", + }, + { + fileId = "165541", + value = "acidburn_small_black.m2", + text = "acidburn_small_black.m2", + }, + { + fileId = "165542", + value = "acidburn_small_blue.m2", + text = "acidburn_small_blue.m2", + }, + { + fileId = "165543", + value = "acidburn_small_lightblue.m2", + text = "acidburn_small_lightblue.m2", + }, + { + fileId = "165544", + value = "acidburn_small_orange.m2", + text = "acidburn_small_orange.m2", + }, + { + fileId = "165545", + value = "acidburn_small_purple.m2", + text = "acidburn_small_purple.m2", + }, + { + fileId = "165546", + value = "acidburn_small_red.m2", + text = "acidburn_small_red.m2", + }, + { + fileId = "165547", + value = "acidburn_small_yellow.m2", + text = "acidburn_small_yellow.m2", + }, + { + fileId = "165548", + value = "acidburn_yellow.m2", + text = "acidburn_yellow.m2", + }, + { + fileId = "165549", + value = "acidcloudbreath.m2", + text = "acidcloudbreath.m2", + }, + { + fileId = "165550", + value = "acidcloudbreath_fast.m2", + text = "acidcloudbreath_fast.m2", + }, + { + fileId = "165551", + value = "acidcloudbreath_groundsmoke.m2", + text = "acidcloudbreath_groundsmoke.m2", + }, + { + fileId = "165552", + value = "acidliquidbreath.m2", + text = "acidliquidbreath.m2", + }, + { + fileId = "165554", + value = "adrenalinerush_cast_base.m2", + text = "adrenalinerush_cast_base.m2", + }, + { + fileId = "165556", + value = "aegis.m2", + text = "aegis.m2", + }, + { + fileId = "165559", + value = "aimedshot_impact_chest.m2", + text = "aimedshot_impact_chest.m2", + }, + { + fileId = "165560", + value = "alliancectfflag_spell.m2", + text = "alliancectfflag_spell.m2", + }, + { + fileId = "165562", + value = "amplifymagic_impact_base.m2", + text = "amplifymagic_impact_base.m2", + }, + { + fileId = "165563", + value = "antimagic_precast_hand.m2", + text = "antimagic_precast_hand.m2", + }, + { + fileId = "165564", + value = "antimagic_state_base.m2", + text = "antimagic_state_base.m2", + }, + { + fileId = "165565", + value = "antimagic_state_blue.m2", + text = "antimagic_state_blue.m2", + }, + { + fileId = "165566", + value = "antimagic_state_red.m2", + text = "antimagic_state_red.m2", + }, + { + fileId = "165567", + value = "arcane_fire_weapon_effect.m2", + text = "arcane_fire_weapon_effect.m2", + }, + { + fileId = "165568", + value = "arcane_form_precast.m2", + text = "arcane_form_precast.m2", + }, + { + fileId = "165569", + value = "arcane_missile.m2", + text = "arcane_missile.m2", + }, + { + fileId = "165570", + value = "arcane_missile_lvl1.m2", + text = "arcane_missile_lvl1.m2", + }, + { + fileId = "165571", + value = "arcane_missile_lvl2.m2", + text = "arcane_missile_lvl2.m2", + }, + { + fileId = "165572", + value = "arcane_missile_lvl3.m2", + text = "arcane_missile_lvl3.m2", + }, + { + fileId = "165573", + value = "arcane_missile_lvl4.m2", + text = "arcane_missile_lvl4.m2", + }, + { + fileId = "165574", + value = "arcanebomb_missle.m2", + text = "arcanebomb_missle.m2", + }, + { + fileId = "165575", + value = "arcanebreath.m2", + text = "arcanebreath.m2", + }, + { + fileId = "165576", + value = "arcaneexplosion_base.m2", + text = "arcaneexplosion_base.m2", + }, + { + fileId = "165577", + value = "arcaneexplosion_boss_base.m2", + text = "arcaneexplosion_boss_base.m2", + }, + { + fileId = "165578", + value = "arcaneexplosion_impact_chest.m2", + text = "arcaneexplosion_impact_chest.m2", + }, + { + fileId = "165579", + value = "arcaneforceshield_blue.m2", + text = "arcaneforceshield_blue.m2", + }, + { + fileId = "165580", + value = "arcaneforceshield_dark.m2", + text = "arcaneforceshield_dark.m2", + }, + { + fileId = "165581", + value = "arcaneforceshield_green.m2", + text = "arcaneforceshield_green.m2", + }, + { + fileId = "165582", + value = "arcaneforceshield_purple.m2", + text = "arcaneforceshield_purple.m2", + }, + { + fileId = "165583", + value = "arcaneforceshield_red.m2", + text = "arcaneforceshield_red.m2", + }, + { + fileId = "165584", + value = "arcaneforceshield_yellow.m2", + text = "arcaneforceshield_yellow.m2", + }, + { + fileId = "165585", + value = "arcaneintellect_impact_base.m2", + text = "arcaneintellect_impact_base.m2", + }, + { + fileId = "165586", + value = "arcanelightning.m2", + text = "arcanelightning.m2", + }, + { + fileId = "165587", + value = "arcanelightning01.m2", + text = "arcanelightning01.m2", + }, + { + fileId = "165588", + value = "arcanelightning02.m2", + text = "arcanelightning02.m2", + }, + { + fileId = "165589", + value = "arcanepower_state_chest.m2", + text = "arcanepower_state_chest.m2", + }, + { + fileId = "165590", + value = "arcanereflect_state_chest.m2", + text = "arcanereflect_state_chest.m2", + }, + { + fileId = "165591", + value = "arcaneshot_area.m2", + text = "arcaneshot_area.m2", + }, + { + fileId = "165592", + value = "arcaneshot_missile.m2", + text = "arcaneshot_missile.m2", + }, + { + fileId = "165593", + value = "arcaneshot_missile2.m2", + text = "arcaneshot_missile2.m2", + }, + { + fileId = "165594", + value = "arcanespirit_impact_base.m2", + text = "arcanespirit_impact_base.m2", + }, + { + fileId = "165595", + value = "arcanetorrent.m2", + text = "arcanetorrent.m2", + }, + { + fileId = "165596", + value = "arcanevolley_missile.m2", + text = "arcanevolley_missile.m2", + }, + { + fileId = "165597", + value = "arcaneward_impact_chest.m2", + text = "arcaneward_impact_chest.m2", + }, + { + fileId = "165598", + value = "archimonde_blue_fire.m2", + text = "archimonde_blue_fire.m2", + }, + { + fileId = "165599", + value = "archimonde_fire.m2", + text = "archimonde_fire.m2", + }, + { + fileId = "165613", + value = "aspectbeast_impact_head.m2", + text = "aspectbeast_impact_head.m2", + }, + { + fileId = "165614", + value = "aspectcheetah_impact_head.m2", + text = "aspectcheetah_impact_head.m2", + }, + { + fileId = "165615", + value = "aspecthawk_impact_head.m2", + text = "aspecthawk_impact_head.m2", + }, + { + fileId = "165616", + value = "aspectmonkey_impact_head.m2", + text = "aspectmonkey_impact_head.m2", + }, + { + fileId = "165617", + value = "aspectsnake_impact_head.m2", + text = "aspectsnake_impact_head.m2", + }, + { + fileId = "165618", + value = "aspectwild_impact_head.m2", + text = "aspectwild_impact_head.m2", + }, + { + fileId = "165619", + value = "aspectwolf_impact_head.m2", + text = "aspectwolf_impact_head.m2", + }, + { + fileId = "165622", + value = "astral_recall_impact_base.m2", + text = "astral_recall_impact_base.m2", + }, + { + fileId = "165643", + value = "avengingwrath_impact_base.m2", + text = "avengingwrath_impact_base.m2", + }, + { + fileId = "165644", + value = "avengingwrath_state_chest.m2", + text = "avengingwrath_state_chest.m2", + }, + { + fileId = "165645", + value = "backstab_cast_base.m2", + text = "backstab_cast_base.m2", + }, + { + fileId = "165646", + value = "backstab_impact_chest.m2", + text = "backstab_impact_chest.m2", + }, + { + fileId = "165647", + value = "balanceofnature_impact_base.m2", + text = "balanceofnature_impact_base.m2", + }, + { + fileId = "165648", + value = "banish_chest.m2", + text = "banish_chest.m2", + }, + { + fileId = "165649", + value = "banish_chest_blue.m2", + text = "banish_chest_blue.m2", + }, + { + fileId = "165650", + value = "banish_chest_dark.m2", + text = "banish_chest_dark.m2", + }, + { + fileId = "165651", + value = "banish_chest_purple.m2", + text = "banish_chest_purple.m2", + }, + { + fileId = "165652", + value = "banish_chest_white.m2", + text = "banish_chest_white.m2", + }, + { + fileId = "165653", + value = "banish_chest_yellow.m2", + text = "banish_chest_yellow.m2", + }, + { + fileId = "165654", + value = "barkshield_state_base.m2", + text = "barkshield_state_base.m2", + }, + { + fileId = "165655", + value = "barkskin_state_base.m2", + text = "barkskin_state_base.m2", + }, + { + fileId = "165656", + value = "baseflagcapred_impact_base.m2", + text = "baseflagcapred_impact_base.m2", + }, + { + fileId = "165657", + value = "basicstrike.m2", + text = "basicstrike.m2", + }, + { + fileId = "165658", + value = "battleshout_cast_base.m2", + text = "battleshout_cast_base.m2", + }, + { + fileId = "165659", + value = "battlestance_impact_head.m2", + text = "battlestance_impact_head.m2", + }, + { + fileId = "165664", + value = "bearfrenzy.m2", + text = "bearfrenzy.m2", + }, + { + fileId = "165665", + value = "bearfrenzyimpact.m2", + text = "bearfrenzyimpact.m2", + }, + { + fileId = "165668", + value = "beastcall_impact_head.m2", + text = "beastcall_impact_head.m2", + }, + { + fileId = "165669", + value = "beastlore_impact_base.m2", + text = "beastlore_impact_base.m2", + }, + { + fileId = "165670", + value = "beastlore_impact_head.m2", + text = "beastlore_impact_head.m2", + }, + { + fileId = "165672", + value = "beastragecaster.m2", + text = "beastragecaster.m2", + }, + { + fileId = "165673", + value = "beastragestate.m2", + text = "beastragestate.m2", + }, + { + fileId = "165674", + value = "beastsoothe_impact_head.m2", + text = "beastsoothe_impact_head.m2", + }, + { + fileId = "165675", + value = "beastsoothe_state_head.m2", + text = "beastsoothe_state_head.m2", + }, + { + fileId = "165676", + value = "beastwithin_state_base.m2", + text = "beastwithin_state_base.m2", + }, + { + fileId = "165678", + value = "berzerkerstance_impact_head.m2", + text = "berzerkerstance_impact_head.m2", + }, + { + fileId = "165679", + value = "bestowdisease_impact_chest.m2", + text = "bestowdisease_impact_chest.m2", + }, + { + fileId = "165680", + value = "bind2_impact_base.m2", + text = "bind2_impact_base.m2", + }, + { + fileId = "165681", + value = "bind_impact_base.m2", + text = "bind_impact_base.m2", + }, + { + fileId = "165685", + value = "blackmagic_precast_base.m2", + text = "blackmagic_precast_base.m2", + }, + { + fileId = "165686", + value = "blackradiationfog.m2", + text = "blackradiationfog.m2", + }, + { + fileId = "165687", + value = "blackshot_missile.m2", + text = "blackshot_missile.m2", + }, + { + fileId = "165690", + value = "blessingofagility_base.m2", + text = "blessingofagility_base.m2", + }, + { + fileId = "165692", + value = "blessingoffreedom_impact.m2", + text = "blessingoffreedom_impact.m2", + }, + { + fileId = "165693", + value = "blessingoffreedom_state.m2", + text = "blessingoffreedom_state.m2", + }, + { + fileId = "165694", + value = "blessingofkings_base.m2", + text = "blessingofkings_base.m2", + }, + { + fileId = "165696", + value = "blessingoflight_impact.m2", + text = "blessingoflight_impact.m2", + }, + { + fileId = "165698", + value = "blessingofmight_base.m2", + text = "blessingofmight_base.m2", + }, + { + fileId = "165700", + value = "blessingofprotection_base.m2", + text = "blessingofprotection_base.m2", + }, + { + fileId = "165701", + value = "blessingofprotection_chest.m2", + text = "blessingofprotection_chest.m2", + }, + { + fileId = "165702", + value = "blessingofprotection_impact.m2", + text = "blessingofprotection_impact.m2", + }, + { + fileId = "165703", + value = "blessingofprotection_state_classic.m2", + text = "blessingofprotection_state_classic.m2", + }, + { + fileId = "165705", + value = "blessingofsacrifice_impact.m2", + text = "blessingofsacrifice_impact.m2", + }, + { + fileId = "165707", + value = "blessingofsalvation_impact.m2", + text = "blessingofsalvation_impact.m2", + }, + { + fileId = "165708", + value = "blessingofsanctuary.m2", + text = "blessingofsanctuary.m2", + }, + { + fileId = "165709", + value = "blessingofspellprotection_base.m2", + text = "blessingofspellprotection_base.m2", + }, + { + fileId = "165710", + value = "blessingofstamina_base.m2", + text = "blessingofstamina_base.m2", + }, + { + fileId = "165711", + value = "blessingofstrength_base.m2", + text = "blessingofstrength_base.m2", + }, + { + fileId = "165712", + value = "blessingofwisdom_base.m2", + text = "blessingofwisdom_base.m2", + }, + { + fileId = "165713", + value = "blindingshot_impact.m2", + text = "blindingshot_impact.m2", + }, + { + fileId = "165714", + value = "blindingshot_missile.m2", + text = "blindingshot_missile.m2", + }, + { + fileId = "165715", + value = "blink_impact_chest.m2", + text = "blink_impact_chest.m2", + }, + { + fileId = "165716", + value = "blizzard_impact_base.m2", + text = "blizzard_impact_base.m2", + }, + { + fileId = "165722", + value = "bloodboil_impact_chest.m2", + text = "bloodboil_impact_chest.m2", + }, + { + fileId = "165723", + value = "bloodbolt_chest.m2", + text = "bloodbolt_chest.m2", + }, + { + fileId = "165724", + value = "bloodbolt_missile_low.m2", + text = "bloodbolt_missile_low.m2", + }, + { + fileId = "165725", + value = "bloodlust_cast_hand.m2", + text = "bloodlust_cast_hand.m2", + }, + { + fileId = "165726", + value = "bloodlust_player_cast_head.m2", + text = "bloodlust_player_cast_head.m2", + }, + { + fileId = "165727", + value = "bloodlust_player_state_head.m2", + text = "bloodlust_player_state_head.m2", + }, + { + fileId = "165728", + value = "bloodlust_state_hand.m2", + text = "bloodlust_state_hand.m2", + }, + { + fileId = "165737", + value = "bloodyexplosion.m2", + text = "bloodyexplosion.m2", + }, + { + fileId = "165738", + value = "bloodyexplosiongreen.m2", + text = "bloodyexplosiongreen.m2", + }, + { + fileId = "165743", + value = "blueradiationfog.m2", + text = "blueradiationfog.m2", + }, + { + fileId = "165744", + value = "bomb_explosiona.m2", + text = "bomb_explosiona.m2", + }, + { + fileId = "165749", + value = "bonearmor_head.m2", + text = "bonearmor_head.m2", + }, + { + fileId = "165750", + value = "bonearmor_recursive.m2", + text = "bonearmor_recursive.m2", + }, + { + fileId = "165751", + value = "bonearmor_state_chest.m2", + text = "bonearmor_state_chest.m2", + }, + { + fileId = "165752", + value = "boneworm_attackeffects.m2", + text = "boneworm_attackeffects.m2", + }, + { + fileId = "165756", + value = "boulder_missile.m2", + text = "boulder_missile.m2", + }, + { + fileId = "165757", + value = "bouldergiant_missile.m2", + text = "bouldergiant_missile.m2", + }, + { + fileId = "165759", + value = "brillianceaura.m2", + text = "brillianceaura.m2", + }, + { + fileId = "165760", + value = "bubble_drunk.m2", + text = "bubble_drunk.m2", + }, + { + fileId = "165761", + value = "burningintellect_impact_base.m2", + text = "burningintellect_impact_base.m2", + }, + { + fileId = "165762", + value = "burningspirit_impact_base.m2", + text = "burningspirit_impact_base.m2", + }, + { + fileId = "165763", + value = "burningspirit_impact_head.m2", + text = "burningspirit_impact_head.m2", + }, + { + fileId = "165764", + value = "burrowearth_bonewaste_missile.m2", + text = "burrowearth_bonewaste_missile.m2", + }, + { + fileId = "165765", + value = "burrowearth_brown_missile.m2", + text = "burrowearth_brown_missile.m2", + }, + { + fileId = "165766", + value = "burrowearth_hellfire_missile.m2", + text = "burrowearth_hellfire_missile.m2", + }, + { + fileId = "165768", + value = "calllightning_impact.m2", + text = "calllightning_impact.m2", + }, + { + fileId = "165778", + value = "catmark.m2", + text = "catmark.m2", + }, + { + fileId = "1375559", + value = "cfx_paladin_shieldofvengeance_castchest.m2", + text = "cfx_paladin_shieldofvengeance_castchest.m2", + }, + { + fileId = "165779", + value = "chainlightning_fel_impact_chest.m2", + text = "chainlightning_fel_impact_chest.m2", + }, + { + fileId = "165780", + value = "chainlightning_impact_chest.m2", + text = "chainlightning_impact_chest.m2", + }, + { + fileId = "165782", + value = "chainsofice_low_base.m2", + text = "chainsofice_low_base.m2", + }, + { + fileId = "165783", + value = "challengingshout_cast_base.m2", + text = "challengingshout_cast_base.m2", + }, + { + fileId = "165784", + value = "chargetrail.m2", + text = "chargetrail.m2", + }, + { + fileId = "165785", + value = "cheapshot_cast_base.m2", + text = "cheapshot_cast_base.m2", + }, + { + fileId = "165786", + value = "cheapshot_impact_chest.m2", + text = "cheapshot_impact_chest.m2", + }, + { + fileId = "165787", + value = "cheapshot_state_head.m2", + text = "cheapshot_state_head.m2", + }, + { + fileId = "165788", + value = "cheat_death.m2", + text = "cheat_death.m2", + }, + { + fileId = "165792", + value = "christmassnowrain.m2", + text = "christmassnowrain.m2", + }, + { + fileId = "1083712", + value = "cinematic_omni_light.m2", + text = "cinematic_omni_light.m2", + }, + { + fileId = "165794", + value = "circle_of_renewal_impact.m2", + text = "circle_of_renewal_impact.m2", + }, + { + fileId = "165795", + value = "clearcasting_impact_chest.m2", + text = "clearcasting_impact_chest.m2", + }, + { + fileId = "165796", + value = "cleave_cast_base.m2", + text = "cleave_cast_base.m2", + }, + { + fileId = "165797", + value = "cleave_cast_base_purple.m2", + text = "cleave_cast_base_purple.m2", + }, + { + fileId = "165798", + value = "cleave_impact_chest.m2", + text = "cleave_impact_chest.m2", + }, + { + fileId = "165799", + value = "clense_base.m2", + text = "clense_base.m2", + }, + { + fileId = "165810", + value = "coneofcold_geo.m2", + text = "coneofcold_geo.m2", + }, + { + fileId = "165811", + value = "coneofcold_hand.m2", + text = "coneofcold_hand.m2", + }, + { + fileId = "165812", + value = "coneoffire_hand.m2", + text = "coneoffire_hand.m2", + }, + { + fileId = "165813", + value = "conflagrate_impact_chest.m2", + text = "conflagrate_impact_chest.m2", + }, + { + fileId = "165815", + value = "confused_state_head.m2", + text = "confused_state_head.m2", + }, + { + fileId = "165816", + value = "conjureitem.m2", + text = "conjureitem.m2", + }, + { + fileId = "165817", + value = "conjureitemcast.m2", + text = "conjureitemcast.m2", + }, + { + fileId = "165818", + value = "consecration_impact_base.m2", + text = "consecration_impact_base.m2", + }, + { + fileId = "165819", + value = "consume_magic_impact.m2", + text = "consume_magic_impact.m2", + }, + { + fileId = "165820", + value = "corrosivesandbreath.m2", + text = "corrosivesandbreath.m2", + }, + { + fileId = "165821", + value = "corruption_impactdot_med_base.m2", + text = "corruption_impactdot_med_base.m2", + }, + { + fileId = "165822", + value = "counterspell_impact_chest.m2", + text = "counterspell_impact_chest.m2", + }, + { + fileId = "165824", + value = "createsoulstone_cast.m2", + text = "createsoulstone_cast.m2", + }, + { + fileId = "165825", + value = "creature_scourgerunecirclecrystal.m2", + text = "creature_scourgerunecirclecrystal.m2", + }, + { + fileId = "165826", + value = "creature_spellportal_blue.m2", + text = "creature_spellportal_blue.m2", + }, + { + fileId = "165827", + value = "creature_spellportal_green.m2", + text = "creature_spellportal_green.m2", + }, + { + fileId = "165828", + value = "creature_spellportal_largeshadow.m2", + text = "creature_spellportal_largeshadow.m2", + }, + { + fileId = "165829", + value = "creature_spellportal_purple.m2", + text = "creature_spellportal_purple.m2", + }, + { + fileId = "165830", + value = "creature_spellportal_white.m2", + text = "creature_spellportal_white.m2", + }, + { + fileId = "165831", + value = "creature_spellportal_yellow.m2", + text = "creature_spellportal_yellow.m2", + }, + { + fileId = "165832", + value = "creature_spellportallarge_blue.m2", + text = "creature_spellportallarge_blue.m2", + }, + { + fileId = "165833", + value = "creature_spellportallarge_green.m2", + text = "creature_spellportallarge_green.m2", + }, + { + fileId = "165834", + value = "creature_spellportallarge_purple.m2", + text = "creature_spellportallarge_purple.m2", + }, + { + fileId = "165835", + value = "creature_spellportallarge_red.m2", + text = "creature_spellportallarge_red.m2", + }, + { + fileId = "165836", + value = "creature_spellportallarge_yellow.m2", + text = "creature_spellportallarge_yellow.m2", + }, + { + fileId = "165837", + value = "cripple_impact_base.m2", + text = "cripple_impact_base.m2", + }, + { + fileId = "165838", + value = "cripple_state_base.m2", + text = "cripple_state_base.m2", + }, + { + fileId = "165839", + value = "cripple_state_chest.m2", + text = "cripple_state_chest.m2", + }, + { + fileId = "165840", + value = "crow_baked.m2", + text = "crow_baked.m2", + }, + { + fileId = "165850", + value = "cthuneeyeattack.m2", + text = "cthuneeyeattack.m2", + }, + { + fileId = "165851", + value = "curseelements_impact_head.m2", + text = "curseelements_impact_head.m2", + }, + { + fileId = "165852", + value = "curseofagony_head.m2", + text = "curseofagony_head.m2", + }, + { + fileId = "165853", + value = "curseoffrailty_head.m2", + text = "curseoffrailty_head.m2", + }, + { + fileId = "165854", + value = "curseofmannoroth_head.m2", + text = "curseofmannoroth_head.m2", + }, + { + fileId = "165855", + value = "curseofrecklessness_impact_chest.m2", + text = "curseofrecklessness_impact_chest.m2", + }, + { + fileId = "165856", + value = "curseoftongues_impact.m2", + text = "curseoftongues_impact.m2", + }, + { + fileId = "165857", + value = "curseoftongues_state_chest.m2", + text = "curseoftongues_state_chest.m2", + }, + { + fileId = "165858", + value = "curseofweakness_head.m2", + text = "curseofweakness_head.m2", + }, + { + fileId = "165861", + value = "cyclone_caster_state.m2", + text = "cyclone_caster_state.m2", + }, + { + fileId = "165862", + value = "cyclone_state.m2", + text = "cyclone_state.m2", + }, + { + fileId = "165863", + value = "cycloneearth_state.m2", + text = "cycloneearth_state.m2", + }, + { + fileId = "165864", + value = "cyclonefire_state.m2", + text = "cyclonefire_state.m2", + }, + { + fileId = "165865", + value = "cyclonegeo.m2", + text = "cyclonegeo.m2", + }, + { + fileId = "165866", + value = "cyclonegeo2.m2", + text = "cyclonegeo2.m2", + }, + { + fileId = "165867", + value = "cyclonegeo2_additive.m2", + text = "cyclonegeo2_additive.m2", + }, + { + fileId = "165868", + value = "cyclonegeo3.m2", + text = "cyclonegeo3.m2", + }, + { + fileId = "165869", + value = "cyclonegeo3_additive.m2", + text = "cyclonegeo3_additive.m2", + }, + { + fileId = "165870", + value = "cyclonegeo_additive.m2", + text = "cyclonegeo_additive.m2", + }, + { + fileId = "165871", + value = "cyclonerock1.m2", + text = "cyclonerock1.m2", + }, + { + fileId = "165872", + value = "cyclonerock2.m2", + text = "cyclonerock2.m2", + }, + { + fileId = "165873", + value = "cyclonewater_state.m2", + text = "cyclonewater_state.m2", + }, + { + fileId = "165874", + value = "dampenmagic_impact_base.m2", + text = "dampenmagic_impact_base.m2", + }, + { + fileId = "165877", + value = "darkmoonvengeance_impact_chest.m2", + text = "darkmoonvengeance_impact_chest.m2", + }, + { + fileId = "165878", + value = "darkmoonvengeance_impact_head.m2", + text = "darkmoonvengeance_impact_head.m2", + }, + { + fileId = "165879", + value = "darkritual_precast_base.m2", + text = "darkritual_precast_base.m2", + }, + { + fileId = "165880", + value = "darkshade.m2", + text = "darkshade.m2", + }, + { + fileId = "165883", + value = "deadly_throw_impact_chest.m2", + text = "deadly_throw_impact_chest.m2", + }, + { + fileId = "165887", + value = "deathanddecay_area_base.m2", + text = "deathanddecay_area_base.m2", + }, + { + fileId = "165889", + value = "deathbolt_missile_low.m2", + text = "deathbolt_missile_low.m2", + }, + { + fileId = "165890", + value = "deathcoil_impact_chest.m2", + text = "deathcoil_impact_chest.m2", + }, + { + fileId = "165891", + value = "deathcoil_missile.m2", + text = "deathcoil_missile.m2", + }, + { + fileId = "165908", + value = "deathwish_state_hand.m2", + text = "deathwish_state_hand.m2", + }, + { + fileId = "165913", + value = "decisivestrike_impact_chest.m2", + text = "decisivestrike_impact_chest.m2", + }, + { + fileId = "165914", + value = "defensivestance_impact_chest.m2", + text = "defensivestance_impact_chest.m2", + }, + { + fileId = "165915", + value = "defensivestance_impact_head.m2", + text = "defensivestance_impact_head.m2", + }, + { + fileId = "165918", + value = "demonarmor_impact_head.m2", + text = "demonarmor_impact_head.m2", + }, + { + fileId = "165919", + value = "demonbreath_impact_head.m2", + text = "demonbreath_impact_head.m2", + }, + { + fileId = "165923", + value = "demonicsacrifice_felhunter_chest.m2", + text = "demonicsacrifice_felhunter_chest.m2", + }, + { + fileId = "165924", + value = "demonicsacrifice_imp_chest.m2", + text = "demonicsacrifice_imp_chest.m2", + }, + { + fileId = "165925", + value = "demonicsacrifice_succubus_chest.m2", + text = "demonicsacrifice_succubus_chest.m2", + }, + { + fileId = "165926", + value = "demonicsacrifice_voidwalker_chest.m2", + text = "demonicsacrifice_voidwalker_chest.m2", + }, + { + fileId = "165930", + value = "demoralizingshout_cast_base.m2", + text = "demoralizingshout_cast_base.m2", + }, + { + fileId = "165931", + value = "demoralizingshout_impact_head.m2", + text = "demoralizingshout_impact_head.m2", + }, + { + fileId = "165940", + value = "detectinvis_impact_base.m2", + text = "detectinvis_impact_base.m2", + }, + { + fileId = "165941", + value = "detectinvis_impact_head.m2", + text = "detectinvis_impact_head.m2", + }, + { + fileId = "165942", + value = "detectmagic_base.m2", + text = "detectmagic_base.m2", + }, + { + fileId = "165943", + value = "detectmagic_recursive.m2", + text = "detectmagic_recursive.m2", + }, + { + fileId = "165944", + value = "detectsealth_state_base.m2", + text = "detectsealth_state_base.m2", + }, + { + fileId = "165945", + value = "detectstealth_state_head.m2", + text = "detectstealth_state_head.m2", + }, + { + fileId = "165947", + value = "deterrence_state_base.m2", + text = "deterrence_state_base.m2", + }, + { + fileId = "165948", + value = "devotionaura_base.m2", + text = "devotionaura_base.m2", + }, + { + fileId = "165949", + value = "disarm_impact_chest.m2", + text = "disarm_impact_chest.m2", + }, + { + fileId = "165952", + value = "disembowel_impact.m2", + text = "disembowel_impact.m2", + }, + { + fileId = "165953", + value = "disenchant_cast_hand.m2", + text = "disenchant_cast_hand.m2", + }, + { + fileId = "165954", + value = "disenchant_precast_hand.m2", + text = "disenchant_precast_hand.m2", + }, + { + fileId = "165955", + value = "dispel_low_base.m2", + text = "dispel_low_base.m2", + }, + { + fileId = "165956", + value = "dispel_low_recursive.m2", + text = "dispel_low_recursive.m2", + }, + { + fileId = "165957", + value = "distract_impact_base.m2", + text = "distract_impact_base.m2", + }, + { + fileId = "165958", + value = "distract_impact_chest.m2", + text = "distract_impact_chest.m2", + }, + { + fileId = "165959", + value = "divinebubble_low_base.m2", + text = "divinebubble_low_base.m2", + }, + { + fileId = "165960", + value = "divineillumination_base.m2", + text = "divineillumination_base.m2", + }, + { + fileId = "165961", + value = "divineshield_low_base.m2", + text = "divineshield_low_base.m2", + }, + { + fileId = "165962", + value = "divineshield_low_chest.m2", + text = "divineshield_low_chest.m2", + }, + { + fileId = "165964", + value = "dragonflamebreath.m2", + text = "dragonflamebreath.m2", + }, + { + fileId = "165965", + value = "dragonflamebreath180.m2", + text = "dragonflamebreath180.m2", + }, + { + fileId = "165967", + value = "dreadlord_carrion_impact.m2", + text = "dreadlord_carrion_impact.m2", + }, + { + fileId = "165968", + value = "dreadlord_carrion_swarm_cast.m2", + text = "dreadlord_carrion_swarm_cast.m2", + }, + { + fileId = "165969", + value = "druidmorph_aqua_impact_base.m2", + text = "druidmorph_aqua_impact_base.m2", + }, + { + fileId = "165970", + value = "druidmorph_impact_base.m2", + text = "druidmorph_impact_base.m2", + }, + { + fileId = "165976", + value = "dustcloud_land.m2", + text = "dustcloud_land.m2", + }, + { + fileId = "165977", + value = "dustnova_cast_base.m2", + text = "dustnova_cast_base.m2", + }, + { + fileId = "165980", + value = "dynamitea_missile.m2", + text = "dynamitea_missile.m2", + }, + { + fileId = "165981", + value = "dynamitea_spellobject.m2", + text = "dynamitea_spellobject.m2", + }, + { + fileId = "165983", + value = "eagleeye_impact_head.m2", + text = "eagleeye_impact_head.m2", + }, + { + fileId = "165984", + value = "earthshield_impact_base.m2", + text = "earthshield_impact_base.m2", + }, + { + fileId = "165986", + value = "earthshield_state_base.m2", + text = "earthshield_state_base.m2", + }, + { + fileId = "165987", + value = "earthshock_impact_chest.m2", + text = "earthshock_impact_chest.m2", + }, + { + fileId = "165988", + value = "enchant_cast_hand.m2", + text = "enchant_cast_hand.m2", + }, + { + fileId = "165989", + value = "enchant_precast_hand.m2", + text = "enchant_precast_hand.m2", + }, + { + children = { + { + fileId = "165990", + value = "battlemasterglow_high.m2", + text = "battlemasterglow_high.m2", + }, + { + fileId = "165991", + value = "blackflame_low.m2", + text = "blackflame_low.m2", + }, + { + fileId = "165992", + value = "blackglow_high.m2", + text = "blackglow_high.m2", + }, + { + fileId = "165993", + value = "blackglow_low.m2", + text = "blackglow_low.m2", + }, + { + fileId = "165994", + value = "blueflame_high.m2", + text = "blueflame_high.m2", + }, + { + fileId = "165995", + value = "blueflame_low.m2", + text = "blueflame_low.m2", + }, + { + fileId = "165996", + value = "blueglow_high.m2", + text = "blueglow_high.m2", + }, + { + fileId = "165997", + value = "blueglow_low.m2", + text = "blueglow_low.m2", + }, + { + fileId = "165998", + value = "blueglow_med.m2", + text = "blueglow_med.m2", + }, + { + fileId = "166000", + value = "disintigrateglow_high.m2", + text = "disintigrateglow_high.m2", + }, + { + fileId = "166001", + value = "executionerglow_high.m2", + text = "executionerglow_high.m2", + }, + { + fileId = "166003", + value = "greenflame_low.m2", + text = "greenflame_low.m2", + }, + { + fileId = "166004", + value = "greenglow_high.m2", + text = "greenglow_high.m2", + }, + { + fileId = "166005", + value = "greenglow_low.m2", + text = "greenglow_low.m2", + }, + { + fileId = "166006", + value = "mongooseglow_high.m2", + text = "mongooseglow_high.m2", + }, + { + fileId = "166007", + value = "poisondrip.m2", + text = "poisondrip.m2", + }, + { + fileId = "166008", + value = "purpleflame_low.m2", + text = "purpleflame_low.m2", + }, + { + fileId = "166009", + value = "purpleglow_high.m2", + text = "purpleglow_high.m2", + }, + { + fileId = "166010", + value = "purpleglow_low.m2", + text = "purpleglow_low.m2", + }, + { + fileId = "166011", + value = "redflame_low.m2", + text = "redflame_low.m2", + }, + { + fileId = "166012", + value = "redglow_high.m2", + text = "redglow_high.m2", + }, + { + fileId = "166013", + value = "redglow_low.m2", + text = "redglow_low.m2", + }, + { + fileId = "166014", + value = "rune_intellect.m2", + text = "rune_intellect.m2", + }, + { + fileId = "166015", + value = "savageryglow_high.m2", + text = "savageryglow_high.m2", + }, + { + fileId = "166016", + value = "shaman_fire.m2", + text = "shaman_fire.m2", + }, + { + fileId = "166017", + value = "shaman_frost.m2", + text = "shaman_frost.m2", + }, + { + fileId = "166018", + value = "shaman_green.m2", + text = "shaman_green.m2", + }, + { + fileId = "166019", + value = "shaman_purple.m2", + text = "shaman_purple.m2", + }, + { + fileId = "166020", + value = "shaman_red.m2", + text = "shaman_red.m2", + }, + { + fileId = "166021", + value = "shaman_rock.m2", + text = "shaman_rock.m2", + }, + { + fileId = "166022", + value = "shaman_wind.m2", + text = "shaman_wind.m2", + }, + { + fileId = "166023", + value = "shaman_yellow.m2", + text = "shaman_yellow.m2", + }, + { + fileId = "166024", + value = "skullballs.m2", + text = "skullballs.m2", + }, + { + fileId = "166026", + value = "soulfrostglow_high.m2", + text = "soulfrostglow_high.m2", + }, + { + fileId = "166027", + value = "sparkle_a.m2", + text = "sparkle_a.m2", + }, + { + fileId = "166028", + value = "spellsurgeglow_high.m2", + text = "spellsurgeglow_high.m2", + }, + { + fileId = "166029", + value = "sunfireglow_high.m2", + text = "sunfireglow_high.m2", + }, + { + fileId = "166030", + value = "whiteflame_low.m2", + text = "whiteflame_low.m2", + }, + { + fileId = "166031", + value = "whiteglow_high.m2", + text = "whiteglow_high.m2", + }, + { + fileId = "166032", + value = "whiteglow_low.m2", + text = "whiteglow_low.m2", + }, + { + fileId = "166033", + value = "yellowflame_low.m2", + text = "yellowflame_low.m2", + }, + { + fileId = "166034", + value = "yellowglow_high.m2", + text = "yellowglow_high.m2", + }, + { + fileId = "166035", + value = "yellowglow_low.m2", + text = "yellowglow_low.m2", + }, + }, + value = "enchantments", + text = "enchantments", + }, + { + fileId = "166037", + value = "endlessrage_impact_head.m2", + text = "endlessrage_impact_head.m2", + }, + { + fileId = "166038", + value = "endlessrage_state_head.m2", + text = "endlessrage_state_head.m2", + }, + { + fileId = "166039", + value = "enslavedemon_impact_base.m2", + text = "enslavedemon_impact_base.m2", + }, + { + fileId = "166040", + value = "enslavedemon_impact_chest.m2", + text = "enslavedemon_impact_chest.m2", + }, + { + fileId = "166041", + value = "enslavedemon_impact_head.m2", + text = "enslavedemon_impact_head.m2", + }, + { + fileId = "166042", + value = "entanglingroots_state.m2", + text = "entanglingroots_state.m2", + }, + { + fileId = "166043", + value = "envenom_cast.m2", + text = "envenom_cast.m2", + }, + { + fileId = "166044", + value = "envenom_impact_chest.m2", + text = "envenom_impact_chest.m2", + }, + { + fileId = "166046", + value = "errorcube.m2", + text = "errorcube.m2", + }, + { + fileId = "166047", + value = "eviscerate_cast_hands.m2", + text = "eviscerate_cast_hands.m2", + }, + { + fileId = "166048", + value = "eviscerate_impact_chest.m2", + text = "eviscerate_impact_chest.m2", + }, + { + fileId = "166049", + value = "exorcism_impact_chest.m2", + text = "exorcism_impact_chest.m2", + }, + { + fileId = "166051", + value = "explodertrail.m2", + text = "explodertrail.m2", + }, + { + fileId = "166052", + value = "exploding_stone_impact.m2", + text = "exploding_stone_impact.m2", + }, + { + fileId = "166054", + value = "explosivetrap_recursive.m2", + text = "explosivetrap_recursive.m2", + }, + { + fileId = "166055", + value = "exposearmor_head.m2", + text = "exposearmor_head.m2", + }, + { + fileId = "166059", + value = "eyesofbeast_impact_head.m2", + text = "eyesofbeast_impact_head.m2", + }, + { + fileId = "166060", + value = "faeriefire.m2", + text = "faeriefire.m2", + }, + { + fileId = "166061", + value = "faeriefire_impact.m2", + text = "faeriefire_impact.m2", + }, + { + fileId = "166064", + value = "farsight_impact_base.m2", + text = "farsight_impact_base.m2", + }, + { + fileId = "166065", + value = "fear_impact_chest.m2", + text = "fear_impact_chest.m2", + }, + { + fileId = "166066", + value = "fear_state_base.m2", + text = "fear_state_base.m2", + }, + { + fileId = "166067", + value = "fear_state_head.m2", + text = "fear_state_head.m2", + }, + { + fileId = "166068", + value = "feint_impact_chest.m2", + text = "feint_impact_chest.m2", + }, + { + fileId = "166069", + value = "fel_archimonde_fire.m2", + text = "fel_archimonde_fire.m2", + }, + { + fileId = "166070", + value = "fel_fire_impactdd_high_chest.m2", + text = "fel_fire_impactdd_high_chest.m2", + }, + { + fileId = "166071", + value = "fel_fire_precast_hand.m2", + text = "fel_fire_precast_hand.m2", + }, + { + fileId = "166072", + value = "fel_fire_precast_high_hand.m2", + text = "fel_fire_precast_high_hand.m2", + }, + { + fileId = "166073", + value = "fel_fire_precast_uber_hand.m2", + text = "fel_fire_precast_uber_hand.m2", + }, + { + fileId = "166074", + value = "fel_fireball_missile_high.m2", + text = "fel_fireball_missile_high.m2", + }, + { + fileId = "166075", + value = "fel_fireblast_impact_chest.m2", + text = "fel_fireblast_impact_chest.m2", + }, + { + fileId = "166076", + value = "fel_firebolt_missile_low.m2", + text = "fel_firebolt_missile_low.m2", + }, + { + fileId = "166077", + value = "fel_firenova_area.m2", + text = "fel_firenova_area.m2", + }, + { + fileId = "166078", + value = "fel_firenova_state.m2", + text = "fel_firenova_state.m2", + }, + { + fileId = "166079", + value = "fel_fireshieldfinal_impact_head.m2", + text = "fel_fireshieldfinal_impact_head.m2", + }, + { + fileId = "166080", + value = "fel_fireward_impact_chest.m2", + text = "fel_fireward_impact_chest.m2", + }, + { + fileId = "166081", + value = "fel_flamebreath.m2", + text = "fel_flamebreath.m2", + }, + { + fileId = "166082", + value = "fel_flamebreath180.m2", + text = "fel_flamebreath180.m2", + }, + { + fileId = "166083", + value = "fel_flamecircleeffect.m2", + text = "fel_flamecircleeffect.m2", + }, + { + fileId = "166084", + value = "fel_flameshock_impact_chest.m2", + text = "fel_flameshock_impact_chest.m2", + }, + { + fileId = "166085", + value = "fel_flamestrike_impact_base.m2", + text = "fel_flamestrike_impact_base.m2", + }, + { + fileId = "166086", + value = "fel_flamestrikesmall_impact_base.m2", + text = "fel_flamestrikesmall_impact_base.m2", + }, + { + fileId = "166087", + value = "fel_hellfire_area_base.m2", + text = "fel_hellfire_area_base.m2", + }, + { + fileId = "166088", + value = "fel_hellfire_firepuff_caster_base.m2", + text = "fel_hellfire_firepuff_caster_base.m2", + }, + { + fileId = "166089", + value = "fel_hellfire_impact_base.m2", + text = "fel_hellfire_impact_base.m2", + }, + { + fileId = "166090", + value = "fel_hellfire_impact_caster_base.m2", + text = "fel_hellfire_impact_caster_base.m2", + }, + { + fileId = "166091", + value = "fel_immolate_impact_chest.m2", + text = "fel_immolate_impact_chest.m2", + }, + { + fileId = "166092", + value = "fel_immolate_state_base.m2", + text = "fel_immolate_state_base.m2", + }, + { + fileId = "166093", + value = "fel_lowpolyfireanim.m2", + text = "fel_lowpolyfireanim.m2", + }, + { + fileId = "166094", + value = "fel_pyroblast_missile.m2", + text = "fel_pyroblast_missile.m2", + }, + { + fileId = "166095", + value = "fel_rainoffire_impact_base.m2", + text = "fel_rainoffire_impact_base.m2", + }, + { + fileId = "166096", + value = "fel_rainoffire_missile.m2", + text = "fel_rainoffire_missile.m2", + }, + { + fileId = "166098", + value = "felarmor_impact_head.m2", + text = "felarmor_impact_head.m2", + }, + { + fileId = "166106", + value = "fire_blue_impactdd_high_chest.m2", + text = "fire_blue_impactdd_high_chest.m2", + }, + { + fileId = "166107", + value = "fire_blue_precast_hand.m2", + text = "fire_blue_precast_hand.m2", + }, + { + fileId = "166108", + value = "fire_blue_precast_high_hand.m2", + text = "fire_blue_precast_high_hand.m2", + }, + { + fileId = "166109", + value = "fire_blue_precast_uber_hand.m2", + text = "fire_blue_precast_uber_hand.m2", + }, + { + fileId = "166110", + value = "fire_cast_hand.m2", + text = "fire_cast_hand.m2", + }, + { + fileId = "166111", + value = "fire_dot_state_chest.m2", + text = "fire_dot_state_chest.m2", + }, + { + fileId = "166112", + value = "fire_form_precast.m2", + text = "fire_form_precast.m2", + }, + { + fileId = "166113", + value = "fire_impactdd_chest.m2", + text = "fire_impactdd_chest.m2", + }, + { + fileId = "166114", + value = "fire_impactdd_high_base.m2", + text = "fire_impactdd_high_base.m2", + }, + { + fileId = "166115", + value = "fire_impactdd_high_chest.m2", + text = "fire_impactdd_high_chest.m2", + }, + { + fileId = "166116", + value = "fire_impactdd_low_chest.m2", + text = "fire_impactdd_low_chest.m2", + }, + { + fileId = "166117", + value = "fire_impactdd_med_chest.m2", + text = "fire_impactdd_med_chest.m2", + }, + { + fileId = "166118", + value = "fire_impactdd_uber_base.m2", + text = "fire_impactdd_uber_base.m2", + }, + { + fileId = "166119", + value = "fire_impactdd_uber_chest.m2", + text = "fire_impactdd_uber_chest.m2", + }, + { + fileId = "166120", + value = "fire_precast_hand.m2", + text = "fire_precast_hand.m2", + }, + { + fileId = "166121", + value = "fire_precast_high_hand.m2", + text = "fire_precast_high_hand.m2", + }, + { + fileId = "166122", + value = "fire_precast_low_hand.m2", + text = "fire_precast_low_hand.m2", + }, + { + fileId = "166123", + value = "fire_precast_med_hand.m2", + text = "fire_precast_med_hand.m2", + }, + { + fileId = "166124", + value = "fire_precast_uber_hand.m2", + text = "fire_precast_uber_hand.m2", + }, + { + fileId = "166126", + value = "fire_smoketrail.m2", + text = "fire_smoketrail.m2", + }, + { + fileId = "166127", + value = "fireball_blue_missile_high.m2", + text = "fireball_blue_missile_high.m2", + }, + { + fileId = "166128", + value = "fireball_missile_high.m2", + text = "fireball_missile_high.m2", + }, + { + fileId = "166129", + value = "fireball_missile_low.m2", + text = "fireball_missile_low.m2", + }, + { + fileId = "166130", + value = "fireblast_blue_impact_chest.m2", + text = "fireblast_blue_impact_chest.m2", + }, + { + fileId = "166131", + value = "fireblast_impact_chest.m2", + text = "fireblast_impact_chest.m2", + }, + { + fileId = "166132", + value = "firebolt_blue_impactdd_med_chest.m2", + text = "firebolt_blue_impactdd_med_chest.m2", + }, + { + fileId = "166133", + value = "firebolt_blue_missile_low.m2", + text = "firebolt_blue_missile_low.m2", + }, + { + fileId = "166134", + value = "firebolt_impactdd_med_chest.m2", + text = "firebolt_impactdd_med_chest.m2", + }, + { + fileId = "166135", + value = "firebolt_missile_low.m2", + text = "firebolt_missile_low.m2", + }, + { + fileId = "166137", + value = "firecrackers_thrown.m2", + text = "firecrackers_thrown.m2", + }, + { + fileId = "166138", + value = "fireforceshield_blue.m2", + text = "fireforceshield_blue.m2", + }, + { + fileId = "166139", + value = "fireforceshield_dark.m2", + text = "fireforceshield_dark.m2", + }, + { + fileId = "166140", + value = "fireforceshield_green.m2", + text = "fireforceshield_green.m2", + }, + { + fileId = "166141", + value = "fireforceshield_purple.m2", + text = "fireforceshield_purple.m2", + }, + { + fileId = "166142", + value = "fireforceshield_red.m2", + text = "fireforceshield_red.m2", + }, + { + fileId = "166143", + value = "fireforceshield_yellow.m2", + text = "fireforceshield_yellow.m2", + }, + { + fileId = "166144", + value = "firenova_area.m2", + text = "firenova_area.m2", + }, + { + fileId = "166145", + value = "firenova_blue_area.m2", + text = "firenova_blue_area.m2", + }, + { + fileId = "166146", + value = "firenova_blue_state.m2", + text = "firenova_blue_state.m2", + }, + { + fileId = "166147", + value = "firenova_state.m2", + text = "firenova_state.m2", + }, + { + fileId = "166149", + value = "firereflect_state_chest.m2", + text = "firereflect_state_chest.m2", + }, + { + fileId = "166150", + value = "fireresistance_impact_base.m2", + text = "fireresistance_impact_base.m2", + }, + { + fileId = "166156", + value = "fireshield_impact_head.m2", + text = "fireshield_impact_head.m2", + }, + { + fileId = "166157", + value = "fireshieldfinal_impact_head.m2", + text = "fireshieldfinal_impact_head.m2", + }, + { + fileId = "166158", + value = "fireshot_missile.m2", + text = "fireshot_missile.m2", + }, + { + fileId = "166159", + value = "firestrike_missile_low.m2", + text = "firestrike_missile_low.m2", + }, + { + fileId = "166162", + value = "fireward_impact_chest.m2", + text = "fireward_impact_chest.m2", + }, + { + fileId = "166163", + value = "firework_romancandle_impact_chest_01.m2", + text = "firework_romancandle_impact_chest_01.m2", + }, + { + fileId = "166164", + value = "firework_romancandle_missle_01.m2", + text = "firework_romancandle_missle_01.m2", + }, + { + fileId = "166165", + value = "fireworks_blue_01.m2", + text = "fireworks_blue_01.m2", + }, + { + fileId = "166166", + value = "fireworks_green_01.m2", + text = "fireworks_green_01.m2", + }, + { + fileId = "166167", + value = "fireworks_red_01.m2", + text = "fireworks_red_01.m2", + }, + { + fileId = "166168", + value = "fireworks_redstreaks_01.m2", + text = "fireworks_redstreaks_01.m2", + }, + { + fileId = "166169", + value = "fireworks_rwb_01.m2", + text = "fireworks_rwb_01.m2", + }, + { + fileId = "166170", + value = "fireworks_yellowrose.m2", + text = "fireworks_yellowrose.m2", + }, + { + fileId = "166171", + value = "fireyseductress.m2", + text = "fireyseductress.m2", + }, + { + fileId = "166172", + value = "firstaid__impact_base.m2", + text = "firstaid__impact_base.m2", + }, + { + fileId = "166173", + value = "firstaid_hand.m2", + text = "firstaid_hand.m2", + }, + { + fileId = "166174", + value = "fistofjustice_cast_base.m2", + text = "fistofjustice_cast_base.m2", + }, + { + fileId = "166175", + value = "fistofjustice_impact_chest.m2", + text = "fistofjustice_impact_chest.m2", + }, + { + fileId = "166176", + value = "flamebreath.m2", + text = "flamebreath.m2", + }, + { + fileId = "166177", + value = "flamebreath180.m2", + text = "flamebreath180.m2", + }, + { + fileId = "166178", + value = "flamebreath180_blue.m2", + text = "flamebreath180_blue.m2", + }, + { + fileId = "166179", + value = "flamebreath_blue.m2", + text = "flamebreath_blue.m2", + }, + { + fileId = "166180", + value = "flamebreathmff.m2", + text = "flamebreathmff.m2", + }, + { + fileId = "166181", + value = "flamecircleeffect.m2", + text = "flamecircleeffect.m2", + }, + { + fileId = "166182", + value = "flamecircleeffect_blue.m2", + text = "flamecircleeffect_blue.m2", + }, + { + fileId = "166185", + value = "flameshock_blue_impact_chest.m2", + text = "flameshock_blue_impact_chest.m2", + }, + { + fileId = "166186", + value = "flameshock_impact_chest.m2", + text = "flameshock_impact_chest.m2", + }, + { + fileId = "166187", + value = "flamestrike_area.m2", + text = "flamestrike_area.m2", + }, + { + fileId = "166188", + value = "flamestrike_blue_impact_base.m2", + text = "flamestrike_blue_impact_base.m2", + }, + { + fileId = "166189", + value = "flamestrike_impact.m2", + text = "flamestrike_impact.m2", + }, + { + fileId = "166190", + value = "flamestrike_impact_base.m2", + text = "flamestrike_impact_base.m2", + }, + { + fileId = "166191", + value = "flamestrike_impactdd_med_base.m2", + text = "flamestrike_impactdd_med_base.m2", + }, + { + fileId = "166192", + value = "flamestrikesmall_blue_impact_base.m2", + text = "flamestrikesmall_blue_impact_base.m2", + }, + { + fileId = "166193", + value = "flamestrikesmall_impact_base.m2", + text = "flamestrikesmall_impact_base.m2", + }, + { + fileId = "166195", + value = "flare_cast_base.m2", + text = "flare_cast_base.m2", + }, + { + fileId = "166196", + value = "flare_state_base.m2", + text = "flare_state_base.m2", + }, + { + fileId = "166197", + value = "flashheal_base.m2", + text = "flashheal_base.m2", + }, + { + fileId = "166199", + value = "floatingmine.m2", + text = "floatingmine.m2", + }, + { + fileId = "166200", + value = "floatingminepulse.m2", + text = "floatingminepulse.m2", + }, + { + fileId = "166203", + value = "focusedcasting_state_chest.m2", + text = "focusedcasting_state_chest.m2", + }, + { + fileId = "166204", + value = "food_healeffect_base.m2", + text = "food_healeffect_base.m2", + }, + { + fileId = "166205", + value = "forceofnature_impact.m2", + text = "forceofnature_impact.m2", + }, + { + fileId = "166206", + value = "forceshield_andxplosion.m2", + text = "forceshield_andxplosion.m2", + }, + { + fileId = "166209", + value = "frost_form_precast.m2", + text = "frost_form_precast.m2", + }, + { + fileId = "166210", + value = "frost_nova_area.m2", + text = "frost_nova_area.m2", + }, + { + fileId = "166211", + value = "frost_nova_state.m2", + text = "frost_nova_state.m2", + }, + { + fileId = "166212", + value = "frostarmor_low_head.m2", + text = "frostarmor_low_head.m2", + }, + { + fileId = "166213", + value = "frostarmoreffect_impact_chest.m2", + text = "frostarmoreffect_impact_chest.m2", + }, + { + fileId = "166214", + value = "frostbolt.m2", + text = "frostbolt.m2", + }, + { + fileId = "166215", + value = "frostbreath.m2", + text = "frostbreath.m2", + }, + { + fileId = "166216", + value = "frostreflect_state_chest.m2", + text = "frostreflect_state_chest.m2", + }, + { + fileId = "166217", + value = "frostshot_missile.m2", + text = "frostshot_missile.m2", + }, + { + fileId = "166218", + value = "frostslash_base_cast.m2", + text = "frostslash_base_cast.m2", + }, + { + fileId = "166219", + value = "frosttrap_aura.m2", + text = "frosttrap_aura.m2", + }, + { + fileId = "166220", + value = "frosttrap_aura_nomist.m2", + text = "frosttrap_aura_nomist.m2", + }, + { + fileId = "166221", + value = "frostward_impact_chest.m2", + text = "frostward_impact_chest.m2", + }, + { + fileId = "166222", + value = "gaseousform.m2", + text = "gaseousform.m2", + }, + { + fileId = "166237", + value = "ghost_state.m2", + text = "ghost_state.m2", + }, + { + fileId = "166238", + value = "ghost_state2.m2", + text = "ghost_state2.m2", + }, + { + fileId = "166239", + value = "ghostlystrike_impact_chest.m2", + text = "ghostlystrike_impact_chest.m2", + }, + { + fileId = "166240", + value = "giantinsectswarm_state_chest.m2", + text = "giantinsectswarm_state_chest.m2", + }, + { + fileId = "166241", + value = "giantinsectswarm_state_ground.m2", + text = "giantinsectswarm_state_ground.m2", + }, + { + fileId = "166243", + value = "giftofnaaru.m2", + text = "giftofnaaru.m2", + }, + { + fileId = "166244", + value = "giftwaterspirit_impact_base.m2", + text = "giftwaterspirit_impact_base.m2", + }, + { + fileId = "166247", + value = "goblin_weather_machine_cloudy.m2", + text = "goblin_weather_machine_cloudy.m2", + }, + { + fileId = "166248", + value = "goblin_weather_machine_lightning.m2", + text = "goblin_weather_machine_lightning.m2", + }, + { + fileId = "166249", + value = "goblin_weather_machine_rain.m2", + text = "goblin_weather_machine_rain.m2", + }, + { + fileId = "166250", + value = "goblin_weather_machine_snow.m2", + text = "goblin_weather_machine_snow.m2", + }, + { + fileId = "166251", + value = "goblin_weather_machine_sunny.m2", + text = "goblin_weather_machine_sunny.m2", + }, + { + fileId = "166252", + value = "goldarenaflag_spell.m2", + text = "goldarenaflag_spell.m2", + }, + { + fileId = "166253", + value = "goldhordeflag_spell.m2", + text = "goldhordeflag_spell.m2", + }, + { + fileId = "166254", + value = "goobolt_missile_low.m2", + text = "goobolt_missile_low.m2", + }, + { + fileId = "166255", + value = "gouge_precast_state_hand.m2", + text = "gouge_precast_state_hand.m2", + }, + { + fileId = "166273", + value = "greaterheal_low_base.m2", + text = "greaterheal_low_base.m2", + }, + { + fileId = "166277", + value = "greenarenaflag_spell.m2", + text = "greenarenaflag_spell.m2", + }, + { + fileId = "166278", + value = "greenghost_state.m2", + text = "greenghost_state.m2", + }, + { + fileId = "166279", + value = "greenhordeflag_spell.m2", + text = "greenhordeflag_spell.m2", + }, + { + fileId = "166280", + value = "greenradiationfog.m2", + text = "greenradiationfog.m2", + }, + { + fileId = "166285", + value = "grounddust.m2", + text = "grounddust.m2", + }, + { + fileId = "166286", + value = "groundingtotem_impact.m2", + text = "groundingtotem_impact.m2", + }, + { + fileId = "166288", + value = "harmundeadaura_base.m2", + text = "harmundeadaura_base.m2", + }, + { + fileId = "166290", + value = "headlesshorsemanhelmet.m2", + text = "headlesshorsemanhelmet.m2", + }, + { + fileId = "166291", + value = "headsplitter_impact_chest.m2", + text = "headsplitter_impact_chest.m2", + }, + { + fileId = "166292", + value = "heal_low_base.m2", + text = "heal_low_base.m2", + }, + { + fileId = "166293", + value = "healingaura_base.m2", + text = "healingaura_base.m2", + }, + { + fileId = "166294", + value = "healrag_state_chest.m2", + text = "healrag_state_chest.m2", + }, + { + fileId = "166297", + value = "hellfire_area_base.m2", + text = "hellfire_area_base.m2", + }, + { + fileId = "166298", + value = "hellfire_blue_firepuff_caster_base.m2", + text = "hellfire_blue_firepuff_caster_base.m2", + }, + { + fileId = "166299", + value = "hellfire_blue_impact_base.m2", + text = "hellfire_blue_impact_base.m2", + }, + { + fileId = "166300", + value = "hellfire_blue_impact_caster_base.m2", + text = "hellfire_blue_impact_caster_base.m2", + }, + { + fileId = "166301", + value = "hellfire_channel_base.m2", + text = "hellfire_channel_base.m2", + }, + { + fileId = "166302", + value = "hellfire_firepuff_caster_base.m2", + text = "hellfire_firepuff_caster_base.m2", + }, + { + fileId = "166303", + value = "hellfire_impact_base.m2", + text = "hellfire_impact_base.m2", + }, + { + fileId = "166304", + value = "hellfire_impact_caster_base.m2", + text = "hellfire_impact_caster_base.m2", + }, + { + fileId = "166305", + value = "hellfire_impact_head.m2", + text = "hellfire_impact_head.m2", + }, + { + fileId = "166306", + value = "hellfireraid_dust_impact_base.m2", + text = "hellfireraid_dust_impact_base.m2", + }, + { + fileId = "166307", + value = "heroism_cast.m2", + text = "heroism_cast.m2", + }, + { + fileId = "166308", + value = "heroism_state.m2", + text = "heroism_state.m2", + }, + { + fileId = "166309", + value = "hitsplatfire.m2", + text = "hitsplatfire.m2", + }, + { + children = { + { + fileId = "166313", + value = "valentines_brokenheart.m2", + text = "valentines_brokenheart.m2", + }, + { + fileId = "166314", + value = "valentines_cupidsarrow_impact_chest.m2", + text = "valentines_cupidsarrow_impact_chest.m2", + }, + { + fileId = "166315", + value = "valentines_cupidsarrow_missle.m2", + text = "valentines_cupidsarrow_missle.m2", + }, + { + fileId = "166316", + value = "valentines_lookingforloveheart.m2", + text = "valentines_lookingforloveheart.m2", + }, + { + fileId = "166317", + value = "valentines_roseshower_impact_base.m2", + text = "valentines_roseshower_impact_base.m2", + }, + { + fileId = "166318", + value = "valentines_spellobject_cupidsbow.m2", + text = "valentines_spellobject_cupidsbow.m2", + }, + }, + value = "holidays", + text = "holidays", + }, + { + fileId = "166322", + value = "holy_form_precast.m2", + text = "holy_form_precast.m2", + }, + { + fileId = "166323", + value = "holy_hammer_missile.m2", + text = "holy_hammer_missile.m2", + }, + { + fileId = "166324", + value = "holy_impactdd_high_base.m2", + text = "holy_impactdd_high_base.m2", + }, + { + fileId = "166325", + value = "holy_impactdd_high_chest.m2", + text = "holy_impactdd_high_chest.m2", + }, + { + fileId = "166326", + value = "holy_impactdd_low_chest.m2", + text = "holy_impactdd_low_chest.m2", + }, + { + fileId = "166327", + value = "holy_impactdd_med_chest.m2", + text = "holy_impactdd_med_chest.m2", + }, + { + fileId = "166328", + value = "holy_impactdd_uber_base.m2", + text = "holy_impactdd_uber_base.m2", + }, + { + fileId = "166329", + value = "holy_impactdd_uber_chest.m2", + text = "holy_impactdd_uber_chest.m2", + }, + { + fileId = "166330", + value = "holy_missile_high.m2", + text = "holy_missile_high.m2", + }, + { + fileId = "166331", + value = "holy_missile_low.m2", + text = "holy_missile_low.m2", + }, + { + fileId = "166332", + value = "holy_missile_med.m2", + text = "holy_missile_med.m2", + }, + { + fileId = "166333", + value = "holy_missile_uber.m2", + text = "holy_missile_uber.m2", + }, + { + fileId = "166334", + value = "holy_precast_high_base.m2", + text = "holy_precast_high_base.m2", + }, + { + fileId = "166335", + value = "holy_precast_high_hand.m2", + text = "holy_precast_high_hand.m2", + }, + { + fileId = "166336", + value = "holy_precast_low_hand.m2", + text = "holy_precast_low_hand.m2", + }, + { + fileId = "166337", + value = "holy_precast_med_hand.m2", + text = "holy_precast_med_hand.m2", + }, + { + fileId = "166338", + value = "holy_precast_uber_base.m2", + text = "holy_precast_uber_base.m2", + }, + { + fileId = "166339", + value = "holy_precast_uber_hand.m2", + text = "holy_precast_uber_hand.m2", + }, + { + fileId = "166342", + value = "holydivineshield_state_base.m2", + text = "holydivineshield_state_base.m2", + }, + { + fileId = "166343", + value = "holydivineshieldblue_state_base.m2", + text = "holydivineshieldblue_state_base.m2", + }, + { + fileId = "166344", + value = "holydivineshielddark_state_base.m2", + text = "holydivineshielddark_state_base.m2", + }, + { + fileId = "166345", + value = "holydivineshieldgreen_state_base.m2", + text = "holydivineshieldgreen_state_base.m2", + }, + { + fileId = "166346", + value = "holydivineshieldpurple_state_base.m2", + text = "holydivineshieldpurple_state_base.m2", + }, + { + fileId = "166347", + value = "holydivineshieldred_state_base.m2", + text = "holydivineshieldred_state_base.m2", + }, + { + fileId = "166348", + value = "holylight_impact_head.m2", + text = "holylight_impact_head.m2", + }, + { + fileId = "166349", + value = "holylight_low_head.m2", + text = "holylight_low_head.m2", + }, + { + fileId = "166350", + value = "holynova_impact_base.m2", + text = "holynova_impact_base.m2", + }, + { + fileId = "166351", + value = "holyprotection_chest.m2", + text = "holyprotection_chest.m2", + }, + { + fileId = "166352", + value = "holyreflect_state_chest.m2", + text = "holyreflect_state_chest.m2", + }, + { + fileId = "166353", + value = "holyshield_state.m2", + text = "holyshield_state.m2", + }, + { + fileId = "166354", + value = "holysmite_low_chest.m2", + text = "holysmite_low_chest.m2", + }, + { + fileId = "166355", + value = "holyward_impact_chest.m2", + text = "holyward_impact_chest.m2", + }, + { + fileId = "166356", + value = "holyword_fortitude_impact_base.m2", + text = "holyword_fortitude_impact_base.m2", + }, + { + fileId = "166357", + value = "holywordheal_base.m2", + text = "holywordheal_base.m2", + }, + { + fileId = "166358", + value = "holywordshield_base.m2", + text = "holywordshield_base.m2", + }, + { + fileId = "166359", + value = "holywordshield_state_base.m2", + text = "holywordshield_state_base.m2", + }, + { + fileId = "166360", + value = "holywordshield_state_chest.m2", + text = "holywordshield_state_chest.m2", + }, + { + fileId = "166361", + value = "hordectfflag_spell.m2", + text = "hordectfflag_spell.m2", + }, + { + fileId = "166362", + value = "huntersmark_impact_chest.m2", + text = "huntersmark_impact_chest.m2", + }, + { + fileId = "166363", + value = "huntersmark_impact_head.m2", + text = "huntersmark_impact_head.m2", + }, + { + fileId = "166364", + value = "huntersmark_impact_head_hold.m2", + text = "huntersmark_impact_head_hold.m2", + }, + { + fileId = "166366", + value = "ice_barrier_state_chest.m2", + text = "ice_barrier_state_chest.m2", + }, + { + fileId = "166367", + value = "ice_cast_low_hand.m2", + text = "ice_cast_low_hand.m2", + }, + { + fileId = "166368", + value = "ice_impactdd_high_chest.m2", + text = "ice_impactdd_high_chest.m2", + }, + { + fileId = "166369", + value = "ice_impactdd_low_chest.m2", + text = "ice_impactdd_low_chest.m2", + }, + { + fileId = "166370", + value = "ice_impactdd_med_chest.m2", + text = "ice_impactdd_med_chest.m2", + }, + { + fileId = "166371", + value = "ice_impactdd_uber_chest.m2", + text = "ice_impactdd_uber_chest.m2", + }, + { + fileId = "166372", + value = "ice_lance_impact.m2", + text = "ice_lance_impact.m2", + }, + { + fileId = "166373", + value = "ice_lance_missile.m2", + text = "ice_lance_missile.m2", + }, + { + fileId = "166374", + value = "ice_missile_high.m2", + text = "ice_missile_high.m2", + }, + { + fileId = "166375", + value = "ice_missile_low.m2", + text = "ice_missile_low.m2", + }, + { + fileId = "166376", + value = "ice_missile_med.m2", + text = "ice_missile_med.m2", + }, + { + fileId = "166377", + value = "ice_missile_uber.m2", + text = "ice_missile_uber.m2", + }, + { + fileId = "166378", + value = "ice_precast_high_base.m2", + text = "ice_precast_high_base.m2", + }, + { + fileId = "166379", + value = "ice_precast_high_hand.m2", + text = "ice_precast_high_hand.m2", + }, + { + fileId = "166380", + value = "ice_precast_high_head.m2", + text = "ice_precast_high_head.m2", + }, + { + fileId = "166381", + value = "ice_precast_low_hand.m2", + text = "ice_precast_low_hand.m2", + }, + { + fileId = "166382", + value = "ice_precast_med_hand.m2", + text = "ice_precast_med_hand.m2", + }, + { + fileId = "166383", + value = "ice_precast_uber_base.m2", + text = "ice_precast_uber_base.m2", + }, + { + fileId = "166384", + value = "ice_precast_uber_hand.m2", + text = "ice_precast_uber_hand.m2", + }, + { + fileId = "166385", + value = "ice_precast_uber_head.m2", + text = "ice_precast_uber_head.m2", + }, + { + fileId = "166387", + value = "icearmor_low_head.m2", + text = "icearmor_low_head.m2", + }, + { + fileId = "166388", + value = "icebarrier_state.m2", + text = "icebarrier_state.m2", + }, + { + fileId = "166389", + value = "icenuke_base_impact.m2", + text = "icenuke_base_impact.m2", + }, + { + fileId = "166390", + value = "icenuke_missile.m2", + text = "icenuke_missile.m2", + }, + { + fileId = "166391", + value = "iceprison_base.m2", + text = "iceprison_base.m2", + }, + { + fileId = "166392", + value = "iceshield_state.m2", + text = "iceshield_state.m2", + }, + { + fileId = "166394", + value = "icespike_impact_base.m2", + text = "icespike_impact_base.m2", + }, + { + fileId = "166396", + value = "icyenchant_high.m2", + text = "icyenchant_high.m2", + }, + { + fileId = "166397", + value = "icyveins_fx.m2", + text = "icyveins_fx.m2", + }, + { + fileId = "166398", + value = "illidan_glave_missile.m2", + text = "illidan_glave_missile.m2", + }, + { + fileId = "166399", + value = "immolate_blue_impact_chest.m2", + text = "immolate_blue_impact_chest.m2", + }, + { + fileId = "166400", + value = "immolate_blue_state_base.m2", + text = "immolate_blue_state_base.m2", + }, + { + fileId = "166401", + value = "immolate_impact_chest.m2", + text = "immolate_impact_chest.m2", + }, + { + fileId = "166402", + value = "immolate_state.m2", + text = "immolate_state.m2", + }, + { + fileId = "166403", + value = "immolate_state_base.m2", + text = "immolate_state_base.m2", + }, + { + fileId = "166404", + value = "immolationtrap_recursive.m2", + text = "immolationtrap_recursive.m2", + }, + { + fileId = "166405", + value = "incinerate_impact_base.m2", + text = "incinerate_impact_base.m2", + }, + { + fileId = "166406", + value = "incinerate_low_base.m2", + text = "incinerate_low_base.m2", + }, + { + fileId = "166407", + value = "incinerate_low_base_bossaoe.m2", + text = "incinerate_low_base_bossaoe.m2", + }, + { + fileId = "166408", + value = "incinerateblue_impact_base.m2", + text = "incinerateblue_impact_base.m2", + }, + { + fileId = "166409", + value = "incinerateblue_low_base.m2", + text = "incinerateblue_low_base.m2", + }, + { + fileId = "166410", + value = "infernal_ball.m2", + text = "infernal_ball.m2", + }, + { + fileId = "166411", + value = "infernal_flare_rec.m2", + text = "infernal_flare_rec.m2", + }, + { + fileId = "166412", + value = "infernal_geo.m2", + text = "infernal_geo.m2", + }, + { + fileId = "166413", + value = "infernal_impact.m2", + text = "infernal_impact.m2", + }, + { + fileId = "166414", + value = "infernal_impact_base.m2", + text = "infernal_impact_base.m2", + }, + { + fileId = "166415", + value = "infernal_smoke_rec.m2", + text = "infernal_smoke_rec.m2", + }, + { + fileId = "166417", + value = "innerfire_base.m2", + text = "innerfire_base.m2", + }, + { + fileId = "166419", + value = "innerfocus_impact_chest.m2", + text = "innerfocus_impact_chest.m2", + }, + { + fileId = "166420", + value = "innerrage_impact_chest.m2", + text = "innerrage_impact_chest.m2", + }, + { + fileId = "166421", + value = "insectswarm_state_chest.m2", + text = "insectswarm_state_chest.m2", + }, + { + fileId = "166425", + value = "intervene_impact_chest.m2", + text = "intervene_impact_chest.m2", + }, + { + fileId = "166426", + value = "intervenetrail.m2", + text = "intervenetrail.m2", + }, + { + fileId = "166427", + value = "intimidatingshout_cast_base.m2", + text = "intimidatingshout_cast_base.m2", + }, + { + fileId = "166428", + value = "intimidatingshout_impact_head.m2", + text = "intimidatingshout_impact_head.m2", + }, + { + fileId = "166429", + value = "invisibility.m2", + text = "invisibility.m2", + }, + { + fileId = "166430", + value = "invisibility_impact_base.m2", + text = "invisibility_impact_base.m2", + }, + { + fileId = "166431", + value = "invisibility_impact_chest.m2", + text = "invisibility_impact_chest.m2", + }, + { + fileId = "166432", + value = "invisible.m2", + text = "invisible.m2", + }, + { + fileId = "166434", + value = "item_bread.m2", + text = "item_bread.m2", + }, + { + fileId = "166435", + value = "judgement_impact_chest.m2", + text = "judgement_impact_chest.m2", + }, + { + fileId = "166437", + value = "kick_chest_impact.m2", + text = "kick_chest_impact.m2", + }, + { + fileId = "166438", + value = "kidneyshot_base_cast.m2", + text = "kidneyshot_base_cast.m2", + }, + { + fileId = "166439", + value = "killcommand_impact_head.m2", + text = "killcommand_impact_head.m2", + }, + { + fileId = "166440", + value = "lacerate_impact.m2", + text = "lacerate_impact.m2", + }, + { + fileId = "166441", + value = "largebluegreenradiationfog.m2", + text = "largebluegreenradiationfog.m2", + }, + { + fileId = "166442", + value = "largegreenradiationfog.m2", + text = "largegreenradiationfog.m2", + }, + { + fileId = "166443", + value = "lash_cast_base.m2", + text = "lash_cast_base.m2", + }, + { + fileId = "166452", + value = "layonhands_low_chest.m2", + text = "layonhands_low_chest.m2", + }, + { + fileId = "166453", + value = "layonhands_low_head.m2", + text = "layonhands_low_head.m2", + }, + { + fileId = "166457", + value = "learn_impact_base.m2", + text = "learn_impact_base.m2", + }, + { + fileId = "166463", + value = "lesserheal_base.m2", + text = "lesserheal_base.m2", + }, + { + children = { + { + fileId = "166464", + value = "levelup.m2", + text = "levelup.m2", + }, + }, + value = "levelup", + text = "levelup", + }, + { + children = { + { + fileId = "166465", + value = "levelupspell.m2", + text = "levelupspell.m2", + }, + }, + value = "levelupspell", + text = "levelupspell", + }, + { + fileId = "166466", + value = "levitate_impact_base.m2", + text = "levitate_impact_base.m2", + }, + { + fileId = "166467", + value = "lifebloom_impact.m2", + text = "lifebloom_impact.m2", + }, + { + fileId = "166468", + value = "lifebloom_state.m2", + text = "lifebloom_state.m2", + }, + { + fileId = "166469", + value = "lifedrain_missile.m2", + text = "lifedrain_missile.m2", + }, + { + fileId = "166470", + value = "lifetap.m2", + text = "lifetap.m2", + }, + { + fileId = "166471", + value = "lifetap_state_chest.m2", + text = "lifetap_state_chest.m2", + }, + { + fileId = "166488", + value = "lightning_cast_hand.m2", + text = "lightning_cast_hand.m2", + }, + { + fileId = "166490", + value = "lightning_fel_cast_hand.m2", + text = "lightning_fel_cast_hand.m2", + }, + { + fileId = "166491", + value = "lightning_fel_precast_low_hand.m2", + text = "lightning_fel_precast_low_hand.m2", + }, + { + fileId = "166492", + value = "lightning_precast_low_hand.m2", + text = "lightning_precast_low_hand.m2", + }, + { + fileId = "166496", + value = "lightningbolt_impact_chest.m2", + text = "lightningbolt_impact_chest.m2", + }, + { + fileId = "166497", + value = "lightningbolt_missile.m2", + text = "lightningbolt_missile.m2", + }, + { + fileId = "166498", + value = "lightningboltivus_missile.m2", + text = "lightningboltivus_missile.m2", + }, + { + fileId = "166499", + value = "lightningshield_impact_base.m2", + text = "lightningshield_impact_base.m2", + }, + { + fileId = "166500", + value = "lightningshield_state_base.m2", + text = "lightningshield_state_base.m2", + }, + { + fileId = "166502", + value = "lightningstorm_cloud_state.m2", + text = "lightningstorm_cloud_state.m2", + }, + { + fileId = "166503", + value = "lightningstorm_cloudlow_state.m2", + text = "lightningstorm_cloudlow_state.m2", + }, + { + fileId = "166504", + value = "lightningstreak_missile.m2", + text = "lightningstreak_missile.m2", + }, + { + fileId = "166505", + value = "lighttest.m2", + text = "lighttest.m2", + }, + { + fileId = "166507", + value = "lowpolyfireanim_blue.m2", + text = "lowpolyfireanim_blue.m2", + }, + { + fileId = "166508", + value = "loyaltydown_impact_base.m2", + text = "loyaltydown_impact_base.m2", + }, + { + fileId = "166509", + value = "loyaltydown_impact_head.m2", + text = "loyaltydown_impact_head.m2", + }, + { + fileId = "166510", + value = "loyaltyup_impact_base.m2", + text = "loyaltyup_impact_base.m2", + }, + { + fileId = "166511", + value = "loyaltyup_impact_head.m2", + text = "loyaltyup_impact_head.m2", + }, + { + fileId = "166515", + value = "mage_dragons_breath.m2", + text = "mage_dragons_breath.m2", + }, + { + fileId = "166522", + value = "magearmor_impact_head.m2", + text = "magearmor_impact_head.m2", + }, + { + fileId = "166523", + value = "mageportal_blank.m2", + text = "mageportal_blank.m2", + }, + { + fileId = "166524", + value = "magic_cast_hand.m2", + text = "magic_cast_hand.m2", + }, + { + fileId = "166525", + value = "magic_impact_chest.m2", + text = "magic_impact_chest.m2", + }, + { + fileId = "166526", + value = "magic_precast_hand.m2", + text = "magic_precast_hand.m2", + }, + { + fileId = "166527", + value = "magicnet_missile.m2", + text = "magicnet_missile.m2", + }, + { + fileId = "166528", + value = "magicnet_state.m2", + text = "magicnet_state.m2", + }, + { + fileId = "166529", + value = "magicstonehelmet_green.m2", + text = "magicstonehelmet_green.m2", + }, + { + fileId = "166530", + value = "magicstonehelmet_red.m2", + text = "magicstonehelmet_red.m2", + }, + { + fileId = "166531", + value = "magicunlock.m2", + text = "magicunlock.m2", + }, + { + fileId = "166532", + value = "magtheradonceilingchunk.m2", + text = "magtheradonceilingchunk.m2", + }, + { + fileId = "166534", + value = "maim_impact_chest.m2", + text = "maim_impact_chest.m2", + }, + { + fileId = "166535", + value = "mame_impact.m2", + text = "mame_impact.m2", + }, + { + fileId = "166536", + value = "mana_impactdot_chest.m2", + text = "mana_impactdot_chest.m2", + }, + { + fileId = "166537", + value = "manaburn_chest.m2", + text = "manaburn_chest.m2", + }, + { + fileId = "166538", + value = "manafunnel_impact_chest.m2", + text = "manafunnel_impact_chest.m2", + }, + { + fileId = "166539", + value = "manainfuse_base.m2", + text = "manainfuse_base.m2", + }, + { + fileId = "166540", + value = "manashield_state_base.m2", + text = "manashield_state_base.m2", + }, + { + fileId = "166541", + value = "manashield_state_chest.m2", + text = "manashield_state_chest.m2", + }, + { + fileId = "166542", + value = "manashot_missile.m2", + text = "manashot_missile.m2", + }, + { + fileId = "166543", + value = "manatideinfuse_base.m2", + text = "manatideinfuse_base.m2", + }, + { + fileId = "166544", + value = "mangle_impact.m2", + text = "mangle_impact.m2", + }, + { + fileId = "166545", + value = "markofbeast_impact_head.m2", + text = "markofbeast_impact_head.m2", + }, + { + fileId = "166546", + value = "markofwild_impact_head.m2", + text = "markofwild_impact_head.m2", + }, + { + fileId = "166547", + value = "mass_dispell_impact.m2", + text = "mass_dispell_impact.m2", + }, + { + fileId = "166549", + value = "maul.m2", + text = "maul.m2", + }, + { + fileId = "166550", + value = "maulcasterbase.m2", + text = "maulcasterbase.m2", + }, + { + fileId = "166551", + value = "maulimpact.m2", + text = "maulimpact.m2", + }, + { + fileId = "166553", + value = "meteor_ball_missile.m2", + text = "meteor_ball_missile.m2", + }, + { + fileId = "166554", + value = "meteor_impact_base.m2", + text = "meteor_impact_base.m2", + }, + { + fileId = "166555", + value = "meteor_impact_base_red.m2", + text = "meteor_impact_base_red.m2", + }, + { + fileId = "166557", + value = "mightaura_impact_base.m2", + text = "mightaura_impact_base.m2", + }, + { + fileId = "166558", + value = "mindblast_head.m2", + text = "mindblast_head.m2", + }, + { + fileId = "166559", + value = "mindrot_head.m2", + text = "mindrot_head.m2", + }, + { + fileId = "166560", + value = "miningpick_spellobject.m2", + text = "miningpick_spellobject.m2", + }, + { + fileId = "166561", + value = "misdirection_impact_head.m2", + text = "misdirection_impact_head.m2", + }, + { + fileId = "166562", + value = "missile_axe_1houtlandraidd06.m2", + text = "missile_axe_1houtlandraidd06.m2", + }, + { + fileId = "166563", + value = "missile_axe_copper.m2", + text = "missile_axe_copper.m2", + }, + { + fileId = "166564", + value = "missile_bomb.m2", + text = "missile_bomb.m2", + }, + { + fileId = "166565", + value = "missile_boomerang.m2", + text = "missile_boomerang.m2", + }, + { + fileId = "166566", + value = "missile_flare.m2", + text = "missile_flare.m2", + }, + { + fileId = "166567", + value = "missile_hammer.m2", + text = "missile_hammer.m2", + }, + { + fileId = "166568", + value = "missile_leatherball.m2", + text = "missile_leatherball.m2", + }, + { + fileId = "166569", + value = "missile_sawblade.m2", + text = "missile_sawblade.m2", + }, + { + fileId = "166570", + value = "missile_snowball.m2", + text = "missile_snowball.m2", + }, + { + fileId = "166571", + value = "missile_thorns.m2", + text = "missile_thorns.m2", + }, + { + fileId = "166572", + value = "missile_wave_arcane.m2", + text = "missile_wave_arcane.m2", + }, + { + fileId = "166573", + value = "missile_wave_fire.m2", + text = "missile_wave_fire.m2", + }, + { + fileId = "166574", + value = "missile_wave_holy.m2", + text = "missile_wave_holy.m2", + }, + { + fileId = "166575", + value = "missile_wave_nature.m2", + text = "missile_wave_nature.m2", + }, + { + fileId = "166576", + value = "missile_wave_shadow.m2", + text = "missile_wave_shadow.m2", + }, + { + fileId = "166577", + value = "missile_wave_water.m2", + text = "missile_wave_water.m2", + }, + { + fileId = "166578", + value = "missile_wave_watergreen.m2", + text = "missile_wave_watergreen.m2", + }, + { + fileId = "166579", + value = "missile_wrench.m2", + text = "missile_wrench.m2", + }, + { + fileId = "166580", + value = "missle_rocket.m2", + text = "missle_rocket.m2", + }, + { + fileId = "166582", + value = "molten_armor_head.m2", + text = "molten_armor_head.m2", + }, + { + fileId = "166583", + value = "moltenblast_impact_chest.m2", + text = "moltenblast_impact_chest.m2", + }, + { + fileId = "166584", + value = "moltenblast_missile.m2", + text = "moltenblast_missile.m2", + }, + { + fileId = "166585", + value = "moltenblast_missile_lvl2.m2", + text = "moltenblast_missile_lvl2.m2", + }, + { + fileId = "166586", + value = "moltenblast_missile_lvl3.m2", + text = "moltenblast_missile_lvl3.m2", + }, + { + fileId = "166590", + value = "moonbeam_impact_base.m2", + text = "moonbeam_impact_base.m2", + }, + { + fileId = "166591", + value = "moonbeamblue_impact_base.m2", + text = "moonbeamblue_impact_base.m2", + }, + { + fileId = "166592", + value = "moonbeamred_impact_base.m2", + text = "moonbeamred_impact_base.m2", + }, + { + fileId = "166593", + value = "moonfire_impact_base.m2", + text = "moonfire_impact_base.m2", + }, + { + fileId = "166594", + value = "movementimmunity_base.m2", + text = "movementimmunity_base.m2", + }, + { + fileId = "166595", + value = "mug_missile.m2", + text = "mug_missile.m2", + }, + { + fileId = "166596", + value = "mug_missile_hitbounce.m2", + text = "mug_missile_hitbounce.m2", + }, + { + fileId = "166597", + value = "multishot_impact.m2", + text = "multishot_impact.m2", + }, + { + fileId = "166598", + value = "multishot_missile.m2", + text = "multishot_missile.m2", + }, + { + fileId = "166599", + value = "mutilate_impact_chest.m2", + text = "mutilate_impact_chest.m2", + }, + { + fileId = "166600", + value = "nagalordshell_impact.m2", + text = "nagalordshell_impact.m2", + }, + { + fileId = "166601", + value = "nagalordshell_missile.m2", + text = "nagalordshell_missile.m2", + }, + { + fileId = "166602", + value = "nature_cast_hand.m2", + text = "nature_cast_hand.m2", + }, + { + fileId = "166603", + value = "nature_form_precast.m2", + text = "nature_form_precast.m2", + }, + { + fileId = "166604", + value = "nature_precast_chest.m2", + text = "nature_precast_chest.m2", + }, + { + fileId = "166605", + value = "nature_precast_low_hand.m2", + text = "nature_precast_low_hand.m2", + }, + { + fileId = "166607", + value = "naturereflect_state_chest.m2", + text = "naturereflect_state_chest.m2", + }, + { + fileId = "166608", + value = "natureresistance_impact_base.m2", + text = "natureresistance_impact_base.m2", + }, + { + fileId = "166609", + value = "natureward_impact_chest.m2", + text = "natureward_impact_chest.m2", + }, + { + fileId = "166610", + value = "naxxramasstrike_impactdd_med_base.m2", + text = "naxxramasstrike_impactdd_med_base.m2", + }, + { + fileId = "166611", + value = "nefarian_impact_base.m2", + text = "nefarian_impact_base.m2", + }, + { + fileId = "166612", + value = "nefarian_state_base.m2", + text = "nefarian_state_base.m2", + }, + { + fileId = "166613", + value = "nefarianflamebreath.m2", + text = "nefarianflamebreath.m2", + }, + { + fileId = "166614", + value = "nefarianflamebreath_impact.m2", + text = "nefarianflamebreath_impact.m2", + }, + { + fileId = "166615", + value = "net_missile.m2", + text = "net_missile.m2", + }, + { + fileId = "166616", + value = "net_state.m2", + text = "net_state.m2", + }, + { + fileId = "166617", + value = "neutralctfflag_spell.m2", + text = "neutralctfflag_spell.m2", + }, + { + fileId = "166618", + value = "nightbane_area_base.m2", + text = "nightbane_area_base.m2", + }, + { + fileId = "166619", + value = "nightbane_bone_missile.m2", + text = "nightbane_bone_missile.m2", + }, + { + fileId = "166620", + value = "nightbane_bone_spurs.m2", + text = "nightbane_bone_spurs.m2", + }, + { + fileId = "166621", + value = "nightbane_breath.m2", + text = "nightbane_breath.m2", + }, + { + fileId = "166622", + value = "nightbane_fire_missile.m2", + text = "nightbane_fire_missile.m2", + }, + { + fileId = "166623", + value = "nightmare_impact_base.m2", + text = "nightmare_impact_base.m2", + }, + { + fileId = "166624", + value = "noname_area.m2", + text = "noname_area.m2", + }, + { + fileId = "166625", + value = "nullifydisease_base.m2", + text = "nullifydisease_base.m2", + }, + { + fileId = "166626", + value = "nullifypoison_base.m2", + text = "nullifypoison_base.m2", + }, + { + fileId = "166629", + value = "onyxia_impact_base.m2", + text = "onyxia_impact_base.m2", + }, + { + fileId = "166630", + value = "orangeradiationfog.m2", + text = "orangeradiationfog.m2", + }, + { + fileId = "166631", + value = "painsuppression_state.m2", + text = "painsuppression_state.m2", + }, + { + fileId = "166633", + value = "parachute.m2", + text = "parachute.m2", + }, + { + fileId = "166634", + value = "parachute_wings_head.m2", + text = "parachute_wings_head.m2", + }, + { + fileId = "166636", + value = "pathfind_cast_head.m2", + text = "pathfind_cast_head.m2", + }, + { + fileId = "166637", + value = "pestilence_impact_chest.m2", + text = "pestilence_impact_chest.m2", + }, + { + fileId = "166638", + value = "piercinghowl_impact_head.m2", + text = "piercinghowl_impact_head.m2", + }, + { + fileId = "166639", + value = "piercingstrike.m2", + text = "piercingstrike.m2", + }, + { + fileId = "166640", + value = "piercingstrike_cast_hand.m2", + text = "piercingstrike_cast_hand.m2", + }, + { + fileId = "166642", + value = "poison_cloud_grobbulus.m2", + text = "poison_cloud_grobbulus.m2", + }, + { + fileId = "166643", + value = "poison_impact_chest.m2", + text = "poison_impact_chest.m2", + }, + { + fileId = "166644", + value = "poison_impactdot_med_base.m2", + text = "poison_impactdot_med_base.m2", + }, + { + fileId = "166645", + value = "poison_impactdot_med_chest.m2", + text = "poison_impactdot_med_chest.m2", + }, + { + fileId = "166646", + value = "poisonelemental_impact_base.m2", + text = "poisonelemental_impact_base.m2", + }, + { + fileId = "166647", + value = "poisonshield_state_base.m2", + text = "poisonshield_state_base.m2", + }, + { + fileId = "166648", + value = "poisonshot_missile.m2", + text = "poisonshot_missile.m2", + }, + { + fileId = "166649", + value = "polymorph_impact.m2", + text = "polymorph_impact.m2", + }, + { + fileId = "166650", + value = "polymorph_impact_base.m2", + text = "polymorph_impact_base.m2", + }, + { + fileId = "166654", + value = "potiona_spellobject.m2", + text = "potiona_spellobject.m2", + }, + { + fileId = "166655", + value = "potionb_spellobject.m2", + text = "potionb_spellobject.m2", + }, + { + fileId = "166656", + value = "prayerofhealing_chest.m2", + text = "prayerofhealing_chest.m2", + }, + { + fileId = "166657", + value = "prayerofmending_impact_head.m2", + text = "prayerofmending_impact_head.m2", + }, + { + fileId = "166658", + value = "presenceofmind_cast_base.m2", + text = "presenceofmind_cast_base.m2", + }, + { + fileId = "166663", + value = "protectionfromfire_chest.m2", + text = "protectionfromfire_chest.m2", + }, + { + fileId = "166664", + value = "protectionfromnature_chest.m2", + text = "protectionfromnature_chest.m2", + }, + { + fileId = "166665", + value = "purge_impact_chest.m2", + text = "purge_impact_chest.m2", + }, + { + fileId = "166666", + value = "purge_new_impact_chest.m2", + text = "purge_new_impact_chest.m2", + }, + { + fileId = "166667", + value = "purify_base.m2", + text = "purify_base.m2", + }, + { + fileId = "4058678", + value = "purplearenaflag_spell.m2", + text = "purplearenaflag_spell.m2", + }, + { + fileId = "166672", + value = "purpleghost_state.m2", + text = "purpleghost_state.m2", + }, + { + fileId = "4058677", + value = "purplehordeflag_spell.m2", + text = "purplehordeflag_spell.m2", + }, + { + fileId = "166673", + value = "pyroblast_blue_missile.m2", + text = "pyroblast_blue_missile.m2", + }, + { + fileId = "166674", + value = "pyroblast_missile.m2", + text = "pyroblast_missile.m2", + }, + { + fileId = "166675", + value = "rag_firenova_area.m2", + text = "rag_firenova_area.m2", + }, + { + fileId = "166676", + value = "rainofcandys_impact_base.m2", + text = "rainofcandys_impact_base.m2", + }, + { + fileId = "166677", + value = "rainoffire_impact_base.m2", + text = "rainoffire_impact_base.m2", + }, + { + fileId = "166678", + value = "rainoffire_missile.m2", + text = "rainoffire_missile.m2", + }, + { + fileId = "166679", + value = "rake.m2", + text = "rake.m2", + }, + { + fileId = "166681", + value = "rampage_state_head.m2", + text = "rampage_state_head.m2", + }, + { + fileId = "166682", + value = "rapidfire_base.m2", + text = "rapidfire_base.m2", + }, + { + fileId = "166684", + value = "readiness_impact_chest.m2", + text = "readiness_impact_chest.m2", + }, + { + fileId = "166685", + value = "recklessness_impact_chest.m2", + text = "recklessness_impact_chest.m2", + }, + { + fileId = "166690", + value = "reddustcloud.m2", + text = "reddustcloud.m2", + }, + { + fileId = "166691", + value = "redemption_base.m2", + text = "redemption_base.m2", + }, + { + fileId = "166692", + value = "redghost_state.m2", + text = "redghost_state.m2", + }, + { + fileId = "166693", + value = "redradiationfog.m2", + text = "redradiationfog.m2", + }, + { + fileId = "166694", + value = "rejuvenation_impact_base.m2", + text = "rejuvenation_impact_base.m2", + }, + { + fileId = "166695", + value = "removecurse_base.m2", + text = "removecurse_base.m2", + }, + { + fileId = "166696", + value = "renew_base.m2", + text = "renew_base.m2", + }, + { + fileId = "166697", + value = "renew_chest.m2", + text = "renew_chest.m2", + }, + { + fileId = "166698", + value = "reputationlevelup.m2", + text = "reputationlevelup.m2", + }, + { + fileId = "166699", + value = "resfx.m2", + text = "resfx.m2", + }, + { + fileId = "166700", + value = "resist_immune_effect.m2", + text = "resist_immune_effect.m2", + }, + { + fileId = "166701", + value = "resistanceaura_base.m2", + text = "resistanceaura_base.m2", + }, + { + fileId = "166702", + value = "resistfrost_chest.m2", + text = "resistfrost_chest.m2", + }, + { + fileId = "166703", + value = "restoration_impact_base.m2", + text = "restoration_impact_base.m2", + }, + { + fileId = "166704", + value = "resurrection_low_base.m2", + text = "resurrection_low_base.m2", + }, + { + fileId = "166705", + value = "retaliation_state_chest.m2", + text = "retaliation_state_chest.m2", + }, + { + fileId = "166707", + value = "retributionaura_base.m2", + text = "retributionaura_base.m2", + }, + { + fileId = "166708", + value = "retributionaurared_base.m2", + text = "retributionaurared_base.m2", + }, + { + fileId = "166709", + value = "revivepet_impact_base.m2", + text = "revivepet_impact_base.m2", + }, + { + fileId = "166731", + value = "ribbontrail.m2", + text = "ribbontrail.m2", + }, + { + fileId = "166732", + value = "righteousfury_chest.m2", + text = "righteousfury_chest.m2", + }, + { + fileId = "166733", + value = "righteousnessaura_base.m2", + text = "righteousnessaura_base.m2", + }, + { + fileId = "166734", + value = "ritual_arcane_precast_base.m2", + text = "ritual_arcane_precast_base.m2", + }, + { + fileId = "166735", + value = "ritual_fire_precast_base.m2", + text = "ritual_fire_precast_base.m2", + }, + { + fileId = "166736", + value = "ritual_frost_precast_base.m2", + text = "ritual_frost_precast_base.m2", + }, + { + fileId = "166737", + value = "ritualsummoning_precast_base.m2", + text = "ritualsummoning_precast_base.m2", + }, + { + fileId = "166739", + value = "rocketblast.m2", + text = "rocketblast.m2", + }, + { + fileId = "166740", + value = "rocketlauncher_cast.m2", + text = "rocketlauncher_cast.m2", + }, + { + fileId = "166741", + value = "rocketlauncher_precast.m2", + text = "rocketlauncher_precast.m2", + }, + { + fileId = "166743", + value = "rockyfrost_nova_state.m2", + text = "rockyfrost_nova_state.m2", + }, + { + fileId = "166744", + value = "romancandle_a_01.m2", + text = "romancandle_a_01.m2", + }, + { + fileId = "166759", + value = "sandvortex_state_base.m2", + text = "sandvortex_state_base.m2", + }, + { + fileId = "166760", + value = "sandworm_attackeffects.m2", + text = "sandworm_attackeffects.m2", + }, + { + fileId = "166761", + value = "sap_cast_base.m2", + text = "sap_cast_base.m2", + }, + { + fileId = "166762", + value = "sap_impact_chest.m2", + text = "sap_impact_chest.m2", + }, + { + fileId = "166763", + value = "sap_state_head.m2", + text = "sap_state_head.m2", + }, + { + fileId = "166764", + value = "savageblow_impact_chest.m2", + text = "savageblow_impact_chest.m2", + }, + { + fileId = "166766", + value = "scorch_low_chest.m2", + text = "scorch_low_chest.m2", + }, + { + fileId = "166767", + value = "scorpidshot_missile.m2", + text = "scorpidshot_missile.m2", + }, + { + fileId = "166768", + value = "scorpidsting_impact_base.m2", + text = "scorpidsting_impact_base.m2", + }, + { + fileId = "166769", + value = "sealofblood_impact_base.m2", + text = "sealofblood_impact_base.m2", + }, + { + fileId = "166770", + value = "sealofcommand_impact_base.m2", + text = "sealofcommand_impact_base.m2", + }, + { + fileId = "166771", + value = "sealofcrusader_impact.m2", + text = "sealofcrusader_impact.m2", + }, + { + fileId = "166772", + value = "sealoffury_impact_base.m2", + text = "sealoffury_impact_base.m2", + }, + { + fileId = "166773", + value = "sealoflight_impact_base.m2", + text = "sealoflight_impact_base.m2", + }, + { + fileId = "166774", + value = "sealofmight_impact_base.m2", + text = "sealofmight_impact_base.m2", + }, + { + fileId = "166775", + value = "sealofmight_low_base.m2", + text = "sealofmight_low_base.m2", + }, + { + fileId = "166776", + value = "sealofprotection_impact_base.m2", + text = "sealofprotection_impact_base.m2", + }, + { + fileId = "166777", + value = "sealofrighteous_impact_base.m2", + text = "sealofrighteous_impact_base.m2", + }, + { + fileId = "166778", + value = "sealofsacrifice_impact_base.m2", + text = "sealofsacrifice_impact_base.m2", + }, + { + fileId = "166779", + value = "sealofsalvation_impact_base.m2", + text = "sealofsalvation_impact_base.m2", + }, + { + fileId = "166780", + value = "sealofvengeance_impact_base.m2", + text = "sealofvengeance_impact_base.m2", + }, + { + fileId = "166781", + value = "sealofwisdom_impact_base.m2", + text = "sealofwisdom_impact_base.m2", + }, + { + fileId = "166782", + value = "sealofwrath_impact_base.m2", + text = "sealofwrath_impact_base.m2", + }, + { + fileId = "166783", + value = "seduction_state_head.m2", + text = "seduction_state_head.m2", + }, + { + fileId = "166784", + value = "seedofcorruption_state.m2", + text = "seedofcorruption_state.m2", + }, + { + fileId = "166785", + value = "seepinggaseous_fel_nova.m2", + text = "seepinggaseous_fel_nova.m2", + }, + { + fileId = "166786", + value = "seepinggaseous_nova.m2", + text = "seepinggaseous_nova.m2", + }, + { + fileId = "166788", + value = "sensedemons_impact_head.m2", + text = "sensedemons_impact_head.m2", + }, + { + fileId = "166789", + value = "shadesofdarkness_cast.m2", + text = "shadesofdarkness_cast.m2", + }, + { + fileId = "166790", + value = "shadow_dotparticle.m2", + text = "shadow_dotparticle.m2", + }, + { + fileId = "166791", + value = "shadow_fissure_base.m2", + text = "shadow_fissure_base.m2", + }, + { + fileId = "166792", + value = "shadow_form_precast.m2", + text = "shadow_form_precast.m2", + }, + { + fileId = "166793", + value = "shadow_frost_weapon_effect.m2", + text = "shadow_frost_weapon_effect.m2", + }, + { + fileId = "166794", + value = "shadow_impactbuff_base.m2", + text = "shadow_impactbuff_base.m2", + }, + { + fileId = "166795", + value = "shadow_impactdd_high_chest.m2", + text = "shadow_impactdd_high_chest.m2", + }, + { + fileId = "166796", + value = "shadow_impactdd_low_chest.m2", + text = "shadow_impactdd_low_chest.m2", + }, + { + fileId = "166797", + value = "shadow_impactdd_med_base.m2", + text = "shadow_impactdd_med_base.m2", + }, + { + fileId = "166798", + value = "shadow_impactdd_med_chest.m2", + text = "shadow_impactdd_med_chest.m2", + }, + { + fileId = "166799", + value = "shadow_impactdd_uber_chest.m2", + text = "shadow_impactdd_uber_chest.m2", + }, + { + fileId = "166800", + value = "shadow_impactdot_med_chest.m2", + text = "shadow_impactdot_med_chest.m2", + }, + { + fileId = "166801", + value = "shadow_impactdot_med_head.m2", + text = "shadow_impactdot_med_head.m2", + }, + { + fileId = "166802", + value = "shadow_mend_impact.m2", + text = "shadow_mend_impact.m2", + }, + { + fileId = "166803", + value = "shadow_nova_area.m2", + text = "shadow_nova_area.m2", + }, + { + fileId = "166804", + value = "shadow_nova_area_noprojection.m2", + text = "shadow_nova_area_noprojection.m2", + }, + { + fileId = "166805", + value = "shadow_precast_high_base.m2", + text = "shadow_precast_high_base.m2", + }, + { + fileId = "166806", + value = "shadow_precast_high_hand.m2", + text = "shadow_precast_high_hand.m2", + }, + { + fileId = "166807", + value = "shadow_precast_low_hand.m2", + text = "shadow_precast_low_hand.m2", + }, + { + fileId = "166808", + value = "shadow_precast_med_base.m2", + text = "shadow_precast_med_base.m2", + }, + { + fileId = "166809", + value = "shadow_precast_med_hand.m2", + text = "shadow_precast_med_hand.m2", + }, + { + fileId = "166810", + value = "shadow_precast_uber_base.m2", + text = "shadow_precast_uber_base.m2", + }, + { + fileId = "166811", + value = "shadow_precast_uber_hand.m2", + text = "shadow_precast_uber_hand.m2", + }, + { + fileId = "166812", + value = "shadow_snare_high_base.m2", + text = "shadow_snare_high_base.m2", + }, + { + fileId = "166813", + value = "shadow_strikes_state_hand.m2", + text = "shadow_strikes_state_hand.m2", + }, + { + fileId = "166814", + value = "shadowbolt_chest_impact.m2", + text = "shadowbolt_chest_impact.m2", + }, + { + fileId = "166815", + value = "shadowbolt_missile.m2", + text = "shadowbolt_missile.m2", + }, + { + fileId = "166816", + value = "shadowbolt_missile_noribbon.m2", + text = "shadowbolt_missile_noribbon.m2", + }, + { + fileId = "166821", + value = "shadowfury_impact_base.m2", + text = "shadowfury_impact_base.m2", + }, + { + fileId = "166822", + value = "shadowmissile.m2", + text = "shadowmissile.m2", + }, + { + fileId = "166823", + value = "shadowprotection_chest.m2", + text = "shadowprotection_chest.m2", + }, + { + fileId = "166824", + value = "shadowreflect_state_chest.m2", + text = "shadowreflect_state_chest.m2", + }, + { + fileId = "166826", + value = "shadowshield_impact.m2", + text = "shadowshield_impact.m2", + }, + { + fileId = "166827", + value = "shadowshield_state_base.m2", + text = "shadowshield_state_base.m2", + }, + { + fileId = "166828", + value = "shadowsteps_fx.m2", + text = "shadowsteps_fx.m2", + }, + { + fileId = "166829", + value = "shadowstrike_impact_chest.m2", + text = "shadowstrike_impact_chest.m2", + }, + { + fileId = "166830", + value = "shadowward_impact_chest.m2", + text = "shadowward_impact_chest.m2", + }, + { + fileId = "166831", + value = "shadowword_death_impact.m2", + text = "shadowword_death_impact.m2", + }, + { + fileId = "166832", + value = "shadowwordbefuddle_head.m2", + text = "shadowwordbefuddle_head.m2", + }, + { + fileId = "166833", + value = "shadowworddominate_chest.m2", + text = "shadowworddominate_chest.m2", + }, + { + fileId = "166834", + value = "shadowwordfumble_head.m2", + text = "shadowwordfumble_head.m2", + }, + { + fileId = "166835", + value = "shadowwordpain_chest.m2", + text = "shadowwordpain_chest.m2", + }, + { + fileId = "166836", + value = "shadowwordsilence_breath.m2", + text = "shadowwordsilence_breath.m2", + }, + { + fileId = "166837", + value = "shamanisticrage_cast_hand.m2", + text = "shamanisticrage_cast_hand.m2", + }, + { + fileId = "166838", + value = "shamanisticrage_state_hand.m2", + text = "shamanisticrage_state_hand.m2", + }, + { + fileId = "166840", + value = "shellshield_state_base.m2", + text = "shellshield_state_base.m2", + }, + { + fileId = "166841", + value = "shieldbash_impact_chest.m2", + text = "shieldbash_impact_chest.m2", + }, + { + fileId = "166842", + value = "shieldwall_impact_base.m2", + text = "shieldwall_impact_base.m2", + }, + { + fileId = "166843", + value = "shieldwallwar_impact_base.m2", + text = "shieldwallwar_impact_base.m2", + }, + { + fileId = "166844", + value = "shock_impact_chest.m2", + text = "shock_impact_chest.m2", + }, + { + fileId = "166845", + value = "shock_missile.m2", + text = "shock_missile.m2", + }, + { + fileId = "166875", + value = "shout_cast.m2", + text = "shout_cast.m2", + }, + { + fileId = "166877", + value = "sinisterstrike_base_cast.m2", + text = "sinisterstrike_base_cast.m2", + }, + { + fileId = "166878", + value = "sinisterstrike_impact_chest.m2", + text = "sinisterstrike_impact_chest.m2", + }, + { + fileId = "166881", + value = "skull.m2", + text = "skull.m2", + }, + { + fileId = "166882", + value = "skull180.m2", + text = "skull180.m2", + }, + { + fileId = "166890", + value = "slam_impact_chest.m2", + text = "slam_impact_chest.m2", + }, + { + fileId = "166891", + value = "sleep_state_head.m2", + text = "sleep_state_head.m2", + }, + { + fileId = "166892", + value = "slicedice_chest.m2", + text = "slicedice_chest.m2", + }, + { + fileId = "166893", + value = "slicedice_impact_chest.m2", + text = "slicedice_impact_chest.m2", + }, + { + fileId = "166896", + value = "slimelesser_missile.m2", + text = "slimelesser_missile.m2", + }, + { + fileId = "166897", + value = "slimelesserexplode_missile.m2", + text = "slimelesserexplode_missile.m2", + }, + { + fileId = "166898", + value = "slow_impact_base.m2", + text = "slow_impact_base.m2", + }, + { + fileId = "166899", + value = "slowingstrike_cast_hand.m2", + text = "slowingstrike_cast_hand.m2", + }, + { + fileId = "166900", + value = "slowingstrike_impact_base.m2", + text = "slowingstrike_impact_base.m2", + }, + { + fileId = "166901", + value = "slowingstrike_impact_chest.m2", + text = "slowingstrike_impact_chest.m2", + }, + { + fileId = "166902", + value = "smash_impact_chest.m2", + text = "smash_impact_chest.m2", + }, + { + fileId = "166905", + value = "smokeflare_blue.m2", + text = "smokeflare_blue.m2", + }, + { + fileId = "166906", + value = "smokeflare_green.m2", + text = "smokeflare_green.m2", + }, + { + fileId = "166907", + value = "smokeflare_purple.m2", + text = "smokeflare_purple.m2", + }, + { + fileId = "166908", + value = "smokeflare_red.m2", + text = "smokeflare_red.m2", + }, + { + fileId = "166909", + value = "smokeflare_white.m2", + text = "smokeflare_white.m2", + }, + { + fileId = "166912", + value = "snowball_impact_chest.m2", + text = "snowball_impact_chest.m2", + }, + { + fileId = "166913", + value = "snowballpowdery_impact_base.m2", + text = "snowballpowdery_impact_base.m2", + }, + { + fileId = "166918", + value = "sonicboom_missile_high.m2", + text = "sonicboom_missile_high.m2", + }, + { + fileId = "166919", + value = "sonicwave_cast.m2", + text = "sonicwave_cast.m2", + }, + { + fileId = "166920", + value = "sonicwave_cast_down.m2", + text = "sonicwave_cast_down.m2", + }, + { + fileId = "166921", + value = "sonicwave_missile.m2", + text = "sonicwave_missile.m2", + }, + { + fileId = "166922", + value = "soothingkiss_impact_head.m2", + text = "soothingkiss_impact_head.m2", + }, + { + fileId = "166923", + value = "soulfunnel_impact_chest.m2", + text = "soulfunnel_impact_chest.m2", + }, + { + fileId = "166924", + value = "soulshatter_cast.m2", + text = "soulshatter_cast.m2", + }, + { + fileId = "166925", + value = "soulshatter_impact.m2", + text = "soulshatter_impact.m2", + }, + { + fileId = "166926", + value = "soulshatter_missile.m2", + text = "soulshatter_missile.m2", + }, + { + fileId = "166927", + value = "soulstoneresurrection_base.m2", + text = "soulstoneresurrection_base.m2", + }, + { + fileId = "166930", + value = "sparktrail.m2", + text = "sparktrail.m2", + }, + { + fileId = "166931", + value = "spawn_impact_base.m2", + text = "spawn_impact_base.m2", + }, + { + fileId = "166932", + value = "spellbreak_cast_base.m2", + text = "spellbreak_cast_base.m2", + }, + { + fileId = "166934", + value = "spelllevelup.m2", + text = "spelllevelup.m2", + }, + { + fileId = "166935", + value = "spellobject_bomb.m2", + text = "spellobject_bomb.m2", + }, + { + fileId = "166936", + value = "spellobject_boomerang.m2", + text = "spellobject_boomerang.m2", + }, + { + fileId = "2199509", + value = "spellobject_invisibletrap.m2", + text = "spellobject_invisibletrap.m2", + }, + { + fileId = "166938", + value = "spellobject_smithinghammer.m2", + text = "spellobject_smithinghammer.m2", + }, + { + fileId = "166939", + value = "spellobject_wrench.m2", + text = "spellobject_wrench.m2", + }, + { + fileId = "166940", + value = "spellreflection_state_shield.m2", + text = "spellreflection_state_shield.m2", + }, + { + fileId = "166941", + value = "spellsteal_impact_chest.m2", + text = "spellsteal_impact_chest.m2", + }, + { + fileId = "166942", + value = "spellsteal_missile.m2", + text = "spellsteal_missile.m2", + }, + { + fileId = "166944", + value = "spike_impact_base.m2", + text = "spike_impact_base.m2", + }, + { + fileId = "166945", + value = "spike_low_base.m2", + text = "spike_low_base.m2", + }, + { + fileId = "166950", + value = "spiritarmor_impact_head.m2", + text = "spiritarmor_impact_head.m2", + }, + { + fileId = "166951", + value = "sprint_cast_base.m2", + text = "sprint_cast_base.m2", + }, + { + fileId = "166952", + value = "sprint_impact_chest.m2", + text = "sprint_impact_chest.m2", + }, + { + fileId = "166973", + value = "starfire_area.m2", + text = "starfire_area.m2", + }, + { + fileId = "166980", + value = "starshards_impact_base.m2", + text = "starshards_impact_base.m2", + }, + { + fileId = "166981", + value = "steam.m2", + text = "steam.m2", + }, + { + fileId = "166982", + value = "stoneform_state_base.m2", + text = "stoneform_state_base.m2", + }, + { + fileId = "166985", + value = "strike_cast_chest.m2", + text = "strike_cast_chest.m2", + }, + { + fileId = "166986", + value = "strike_impact_chest.m2", + text = "strike_impact_chest.m2", + }, + { + fileId = "166988", + value = "stunswirl_state_head.m2", + text = "stunswirl_state_head.m2", + }, + { + fileId = "166990", + value = "summerfest_roseshower_impact_base.m2", + text = "summerfest_roseshower_impact_base.m2", + }, + { + fileId = "166991", + value = "summon_precast_hand.m2", + text = "summon_precast_hand.m2", + }, + { + fileId = "166993", + value = "summonpet_cast_impact_base.m2", + text = "summonpet_cast_impact_base.m2", + }, + { + fileId = "166994", + value = "summonpet_impact_base.m2", + text = "summonpet_impact_base.m2", + }, + { + fileId = "166995", + value = "summonwarhorse_impact_base.m2", + text = "summonwarhorse_impact_base.m2", + }, + { + fileId = "166996", + value = "sunder_impact_chest.m2", + text = "sunder_impact_chest.m2", + }, + { + fileId = "166997", + value = "sunwell_beamfx.m2", + text = "sunwell_beamfx.m2", + }, + { + fileId = "166998", + value = "sunwell_fel_portal.m2", + text = "sunwell_fel_portal.m2", + }, + { + fileId = "166999", + value = "sunwell_fire_barrier.m2", + text = "sunwell_fire_barrier.m2", + }, + { + fileId = "167000", + value = "sunwell_fire_barrier_ext.m2", + text = "sunwell_fire_barrier_ext.m2", + }, + { + fileId = "167001", + value = "sunwell_groundfx.m2", + text = "sunwell_groundfx.m2", + }, + { + fileId = "167002", + value = "sunwell_wallfx.m2", + text = "sunwell_wallfx.m2", + }, + { + fileId = "167003", + value = "sweepingstrike_impact_chest.m2", + text = "sweepingstrike_impact_chest.m2", + }, + { + fileId = "167004", + value = "swipecaster.m2", + text = "swipecaster.m2", + }, + { + fileId = "167005", + value = "swipeimpact.m2", + text = "swipeimpact.m2", + }, + { + fileId = "167006", + value = "symbolofhope_impact_base.m2", + text = "symbolofhope_impact_base.m2", + }, + { + fileId = "167090", + value = "tankarda_spellobject.m2", + text = "tankarda_spellobject.m2", + }, + { + fileId = "241094", + value = "tankardb_spellobject.m2", + text = "tankardb_spellobject.m2", + }, + { + fileId = "167092", + value = "taunt_cast.m2", + text = "taunt_cast.m2", + }, + { + fileId = "167093", + value = "taunt_head.m2", + text = "taunt_head.m2", + }, + { + fileId = "167094", + value = "teleport.m2", + text = "teleport.m2", + }, + { + fileId = "167112", + value = "thorns_base.m2", + text = "thorns_base.m2", + }, + { + fileId = "167113", + value = "thorns_damage_base.m2", + text = "thorns_damage_base.m2", + }, + { + fileId = "167114", + value = "thorns_low_chest.m2", + text = "thorns_low_chest.m2", + }, + { + fileId = "167115", + value = "thorns_state_base.m2", + text = "thorns_state_base.m2", + }, + { + fileId = "167117", + value = "threatreduce_impact_head.m2", + text = "threatreduce_impact_head.m2", + }, + { + fileId = "167118", + value = "throatshot_impact_chest.m2", + text = "throatshot_impact_chest.m2", + }, + { + fileId = "167120", + value = "thunderclap_cast_base.m2", + text = "thunderclap_cast_base.m2", + }, + { + fileId = "167128", + value = "torch_missile.m2", + text = "torch_missile.m2", + }, + { + fileId = "167129", + value = "torchlit.m2", + text = "torchlit.m2", + }, + { + fileId = "167130", + value = "torchspell.m2", + text = "torchspell.m2", + }, + { + fileId = "167132", + value = "totemb_spellobject.m2", + text = "totemb_spellobject.m2", + }, + { + fileId = "167134", + value = "tranquility_area.m2", + text = "tranquility_area.m2", + }, + { + fileId = "167135", + value = "tranquility_impact_base.m2", + text = "tranquility_impact_base.m2", + }, + { + fileId = "167139", + value = "trickortreat_treat_head.m2", + text = "trickortreat_treat_head.m2", + }, + { + fileId = "167140", + value = "trickortreat_trick_head.m2", + text = "trickortreat_trick_head.m2", + }, + { + fileId = "167141", + value = "turnundead_impact.m2", + text = "turnundead_impact.m2", + }, + { + fileId = "167143", + value = "undying_strength_impact_chest.m2", + text = "undying_strength_impact_chest.m2", + }, + { + fileId = "167144", + value = "unholyshackles_state_base.m2", + text = "unholyshackles_state_base.m2", + }, + { + fileId = "167145", + value = "unitcube.m2", + text = "unitcube.m2", + }, + { + fileId = "167146", + value = "unstableaffliction_impact_chest.m2", + text = "unstableaffliction_impact_chest.m2", + }, + { + fileId = "167147", + value = "unyielding_will_impact_chest.m2", + text = "unyielding_will_impact_chest.m2", + }, + { + fileId = "167148", + value = "valentinefirework.m2", + text = "valentinefirework.m2", + }, + { + fileId = "167150", + value = "vampiricembrace_state_base.m2", + text = "vampiricembrace_state_base.m2", + }, + { + fileId = "167151", + value = "vanish_cast_base.m2", + text = "vanish_cast_base.m2", + }, + { + fileId = "167152", + value = "vengeance_state_hand.m2", + text = "vengeance_state_hand.m2", + }, + { + fileId = "167153", + value = "victory_rush_impact.m2", + text = "victory_rush_impact.m2", + }, + { + fileId = "167174", + value = "waterbolt_missile_low.m2", + text = "waterbolt_missile_low.m2", + }, + { + fileId = "167175", + value = "waterbreathing_impact_base.m2", + text = "waterbreathing_impact_base.m2", + }, + { + fileId = "167177", + value = "waterbubble.m2", + text = "waterbubble.m2", + }, + { + fileId = "167178", + value = "waterelemental_impact_base.m2", + text = "waterelemental_impact_base.m2", + }, + { + fileId = "167179", + value = "waterelementallow_impact_base.m2", + text = "waterelementallow_impact_base.m2", + }, + { + fileId = "167182", + value = "waterliquidbreath.m2", + text = "waterliquidbreath.m2", + }, + { + fileId = "167183", + value = "watershield_impact_base.m2", + text = "watershield_impact_base.m2", + }, + { + fileId = "167184", + value = "watershield_state_base.m2", + text = "watershield_state_base.m2", + }, + { + fileId = "167186", + value = "watersteam_impact.m2", + text = "watersteam_impact.m2", + }, + { + fileId = "167189", + value = "waterwalking_impact_head.m2", + text = "waterwalking_impact_head.m2", + }, + { + fileId = "167191", + value = "wave_water.m2", + text = "wave_water.m2", + }, + { + fileId = "167194", + value = "web_missile.m2", + text = "web_missile.m2", + }, + { + fileId = "167195", + value = "web_state.m2", + text = "web_state.m2", + }, + { + fileId = "167196", + value = "webspin.m2", + text = "webspin.m2", + }, + { + fileId = "167198", + value = "wellofsouls_base.m2", + text = "wellofsouls_base.m2", + }, + { + fileId = "167199", + value = "whirlwind_state_base.m2", + text = "whirlwind_state_base.m2", + }, + { + fileId = "167200", + value = "whirlwindgeo1.m2", + text = "whirlwindgeo1.m2", + }, + { + fileId = "167201", + value = "whirlwindgeo2.m2", + text = "whirlwindgeo2.m2", + }, + { + fileId = "167202", + value = "whirlwindgeowhite.m2", + text = "whirlwindgeowhite.m2", + }, + { + fileId = "167206", + value = "whiteradiationfog.m2", + text = "whiteradiationfog.m2", + }, + { + fileId = "167211", + value = "wisdomaura_impact_base.m2", + text = "wisdomaura_impact_base.m2", + }, + { + fileId = "167212", + value = "wrath_impact_chest.m2", + text = "wrath_impact_chest.m2", + }, + { + fileId = "167213", + value = "wrath_missile.m2", + text = "wrath_missile.m2", + }, + { + fileId = "167214", + value = "wrath_precast_hand.m2", + text = "wrath_precast_hand.m2", + }, + { + fileId = "167224", + value = "zangarmarsh_arcane_impact.m2", + text = "zangarmarsh_arcane_impact.m2", + }, + { + fileId = "167225", + value = "zangarmarsh_arcane_missile.m2", + text = "zangarmarsh_arcane_missile.m2", + }, + { + fileId = "167229", + value = "zig_missile.m2", + text = "zig_missile.m2", + }, + }, + value = "spells", + text = "spells", + }, + { + children = { + { + children = { + { + fileId = "2353357", + value = "boartest.m2", + text = "boartest.m2", + }, + }, + value = "boartest", + text = "boartest", + }, + }, + value = "test", + text = "test", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189077", + value = "xyz.m2", + text = "xyz.m2", + }, + }, + value = "boxtest", + text = "boxtest", + }, + }, + value = "arttest", + text = "arttest", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "189079", + value = "bootybayentrance_02.m2", + text = "bootybayentrance_02.m2", + }, + }, + value = "bootyentrance", + text = "bootyentrance", + }, + { + children = { + { + fileId = "189085", + value = "fishdeadblue.m2", + text = "fishdeadblue.m2", + }, + { + fileId = "189086", + value = "fishdeadgreen.m2", + text = "fishdeadgreen.m2", + }, + { + fileId = "189087", + value = "fishdeadorange.m2", + text = "fishdeadorange.m2", + }, + { + fileId = "189088", + value = "fishdeadpurple.m2", + text = "fishdeadpurple.m2", + }, + { + fileId = "189089", + value = "fishfrenzyblue.m2", + text = "fishfrenzyblue.m2", + }, + { + fileId = "189090", + value = "fishfrenzygreen.m2", + text = "fishfrenzygreen.m2", + }, + { + fileId = "189091", + value = "fishrack.m2", + text = "fishrack.m2", + }, + }, + value = "deadfish", + text = "deadfish", + }, + { + children = { + { + fileId = "189092", + value = "fishingbox.m2", + text = "fishingbox.m2", + }, + }, + value = "fishingbox", + text = "fishingbox", + }, + { + children = { + { + fileId = "189093", + value = "fishingpole01.m2", + text = "fishingpole01.m2", + }, + { + fileId = "189094", + value = "fishingpole02.m2", + text = "fishingpole02.m2", + }, + }, + value = "fishingpoles", + text = "fishingpoles", + }, + { + children = { + { + fileId = "189095", + value = "goblinstatuebooty.m2", + text = "goblinstatuebooty.m2", + }, + }, + value = "goblinstatue", + text = "goblinstatue", + }, + { + children = { + { + fileId = "189097", + value = "harpoon01.m2", + text = "harpoon01.m2", + }, + }, + value = "harpoons", + text = "harpoons", + }, + { + children = { + { + fileId = "189099", + value = "sharkmodel01.m2", + text = "sharkmodel01.m2", + }, + }, + value = "sharkmodels", + text = "sharkmodels", + }, + }, + value = "passivedoodad", + text = "passivedoodad", + }, + }, + value = "bootybay", + text = "bootybay", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189103", + value = "darkironnode.m2", + text = "darkironnode.m2", + }, + { + fileId = "189104", + value = "darkironnodeparticlerock.m2", + text = "darkironnodeparticlerock.m2", + }, + }, + value = "darkironnode", + text = "darkironnode", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "189105", + value = "deadheadboar.m2", + text = "deadheadboar.m2", + }, + { + fileId = "189106", + value = "deadheaddeer.m2", + text = "deadheaddeer.m2", + }, + }, + value = "animalheads", + text = "animalheads", + }, + { + children = { + { + fileId = "189110", + value = "ashpeople01.m2", + text = "ashpeople01.m2", + }, + { + fileId = "189112", + value = "ashpeople02.m2", + text = "ashpeople02.m2", + }, + { + fileId = "189113", + value = "ashpeople03.m2", + text = "ashpeople03.m2", + }, + { + fileId = "189114", + value = "ashpeople04.m2", + text = "ashpeople04.m2", + }, + { + fileId = "189115", + value = "ashpeople05.m2", + text = "ashpeople05.m2", + }, + }, + value = "ashpeople", + text = "ashpeople", + }, + { + children = { + { + fileId = "189118", + value = "orcbonfire.m2", + text = "orcbonfire.m2", + }, + { + fileId = "189119", + value = "orcbonfire_blue.m2", + text = "orcbonfire_blue.m2", + }, + { + fileId = "189120", + value = "orcbonfireoff.m2", + text = "orcbonfireoff.m2", + }, + }, + value = "bonfire", + text = "bonfire", + }, + { + children = { + { + fileId = "189124", + value = "burningropebridge.m2", + text = "burningropebridge.m2", + }, + }, + value = "bridges", + text = "bridges", + }, + { + children = { + { + fileId = "189126", + value = "burninggiantwheel.m2", + text = "burninggiantwheel.m2", + }, + }, + value = "burninggiantwheel", + text = "burninggiantwheel", + }, + { + children = { + { + fileId = "189127", + value = "burningsteppscliffrock01.m2", + text = "burningsteppscliffrock01.m2", + }, + { + fileId = "189128", + value = "burningsteppscliffrock02.m2", + text = "burningsteppscliffrock02.m2", + }, + { + fileId = "189129", + value = "burningsteppscliffrock03.m2", + text = "burningsteppscliffrock03.m2", + }, + { + fileId = "189130", + value = "burningsteppscliffrock04.m2", + text = "burningsteppscliffrock04.m2", + }, + { + fileId = "189131", + value = "burningsteppscliffrock05.m2", + text = "burningsteppscliffrock05.m2", + }, + { + fileId = "189132", + value = "burningsteppscliffrock06.m2", + text = "burningsteppscliffrock06.m2", + }, + }, + value = "cliffrocks", + text = "cliffrocks", + }, + { + children = { + { + fileId = "189134", + value = "fallingembers.m2", + text = "fallingembers.m2", + }, + }, + value = "fallingembers", + text = "fallingembers", + }, + { + children = { + { + fileId = "189135", + value = "burningsteppesfence.m2", + text = "burningsteppesfence.m2", + }, + { + fileId = "189136", + value = "burningsteppesfencechain.m2", + text = "burningsteppesfencechain.m2", + }, + { + fileId = "189137", + value = "burningsteppesfencepost.m2", + text = "burningsteppesfencepost.m2", + }, + }, + value = "fences", + text = "fences", + }, + { + children = { + { + fileId = "189141", + value = "lavaaltar.m2", + text = "lavaaltar.m2", + }, + }, + value = "lavaaltar", + text = "lavaaltar", + }, + { + children = { + { + fileId = "189147", + value = "lavabridge.m2", + text = "lavabridge.m2", + }, + }, + value = "lavabridge", + text = "lavabridge", + }, + { + children = { + { + fileId = "189151", + value = "lavafallsblackrock01.m2", + text = "lavafallsblackrock01.m2", + }, + { + fileId = "189152", + value = "lavafallsblackrock02.m2", + text = "lavafallsblackrock02.m2", + }, + { + fileId = "189153", + value = "lavafallsblackrock03.m2", + text = "lavafallsblackrock03.m2", + }, + { + fileId = "189154", + value = "lavafallsblackrock04.m2", + text = "lavafallsblackrock04.m2", + }, + }, + value = "lavafalls", + text = "lavafalls", + }, + { + children = { + { + fileId = "189158", + value = "lavapillar01.m2", + text = "lavapillar01.m2", + }, + { + fileId = "189159", + value = "lavapillar02.m2", + text = "lavapillar02.m2", + }, + { + fileId = "189160", + value = "lavapillar03.m2", + text = "lavapillar03.m2", + }, + { + fileId = "189161", + value = "lavapillar04.m2", + text = "lavapillar04.m2", + }, + }, + value = "lavapillar", + text = "lavapillar", + }, + { + children = { + { + fileId = "189165", + value = "lavaplug01.m2", + text = "lavaplug01.m2", + }, + { + fileId = "189166", + value = "lavaplug02.m2", + text = "lavaplug02.m2", + }, + }, + value = "lavaplugs", + text = "lavaplugs", + }, + { + children = { + { + fileId = "189170", + value = "lavashrine01.m2", + text = "lavashrine01.m2", + }, + { + fileId = "189171", + value = "lavashrine02.m2", + text = "lavashrine02.m2", + }, + { + fileId = "189172", + value = "lavashrine03.m2", + text = "lavashrine03.m2", + }, + { + fileId = "189173", + value = "lavashrine04.m2", + text = "lavashrine04.m2", + }, + { + fileId = "189178", + value = "searinggorgelavashrine.m2", + text = "searinggorgelavashrine.m2", + }, + }, + value = "lavashrine", + text = "lavashrine", + }, + { + children = { + { + fileId = "189179", + value = "lotharstatue.m2", + text = "lotharstatue.m2", + }, + }, + value = "lotharstatue", + text = "lotharstatue", + }, + { + children = { + { + fileId = "189180", + value = "ogreheadpike.m2", + text = "ogreheadpike.m2", + }, + }, + value = "ogreheadpike", + text = "ogreheadpike", + }, + { + children = { + { + fileId = "189186", + value = "orcanvilstoneburningsteppes.m2", + text = "orcanvilstoneburningsteppes.m2", + }, + }, + value = "orcanvilstoneburningsteppes", + text = "orcanvilstoneburningsteppes", + }, + { + children = { + { + fileId = "189187", + value = "orcstoneburialpyre.m2", + text = "orcstoneburialpyre.m2", + }, + { + fileId = "189188", + value = "orcstoneburialpyrebody.m2", + text = "orcstoneburialpyrebody.m2", + }, + }, + value = "orcburialpyres", + text = "orcburialpyres", + }, + { + children = { + { + fileId = "189193", + value = "orcsmallfoundrypit.m2", + text = "orcsmallfoundrypit.m2", + }, + }, + value = "orcfoundrypit", + text = "orcfoundrypit", + }, + { + children = { + { + fileId = "189196", + value = "orcsleepmat01.m2", + text = "orcsleepmat01.m2", + }, + { + fileId = "189197", + value = "orcsleepmat02.m2", + text = "orcsleepmat02.m2", + }, + { + fileId = "189198", + value = "orcsleepmat03.m2", + text = "orcsleepmat03.m2", + }, + }, + value = "orcsleepmats", + text = "orcsleepmats", + }, + { + children = { + { + fileId = "189200", + value = "orctent.m2", + text = "orctent.m2", + }, + }, + value = "orctents", + text = "orctents", + }, + { + children = { + { + fileId = "189204", + value = "orctoolrackburningsteppes.m2", + text = "orctoolrackburningsteppes.m2", + }, + }, + value = "orctoolrackburningsteppes", + text = "orctoolrackburningsteppes", + }, + { + children = { + { + fileId = "189208", + value = "pentagramdirt.m2", + text = "pentagramdirt.m2", + }, + }, + value = "pentagramdirt", + text = "pentagramdirt", + }, + { + children = { + { + fileId = "189212", + value = "burningsteppesboulders01.m2", + text = "burningsteppesboulders01.m2", + }, + { + fileId = "189213", + value = "burningsteppesboulders02.m2", + text = "burningsteppesboulders02.m2", + }, + { + fileId = "189214", + value = "burningsteppesboulders03.m2", + text = "burningsteppesboulders03.m2", + }, + { + fileId = "189215", + value = "burningsteppesboulders04.m2", + text = "burningsteppesboulders04.m2", + }, + { + fileId = "189216", + value = "burningsteppesboulders05.m2", + text = "burningsteppesboulders05.m2", + }, + { + fileId = "189217", + value = "burningsteppesboulders06.m2", + text = "burningsteppesboulders06.m2", + }, + { + fileId = "189218", + value = "lavarock01.m2", + text = "lavarock01.m2", + }, + { + fileId = "189219", + value = "lavarock02.m2", + text = "lavarock02.m2", + }, + { + fileId = "189220", + value = "lavarock03.m2", + text = "lavarock03.m2", + }, + { + fileId = "189221", + value = "lavarock04.m2", + text = "lavarock04.m2", + }, + { + fileId = "189222", + value = "lavarock05.m2", + text = "lavarock05.m2", + }, + { + fileId = "189223", + value = "lavarock06.m2", + text = "lavarock06.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "189226", + value = "burnedbeam.m2", + text = "burnedbeam.m2", + }, + }, + value = "ruins", + text = "ruins", + }, + { + children = { + { + fileId = "189229", + value = "smeltingcauldron.m2", + text = "smeltingcauldron.m2", + }, + }, + value = "smeltingcauldron", + text = "smeltingcauldron", + }, + { + children = { + { + fileId = "189232", + value = "smeltingweapons.m2", + text = "smeltingweapons.m2", + }, + }, + value = "smeltingweapons", + text = "smeltingweapons", + }, + { + children = { + { + fileId = "189233", + value = "ashtreesmoke01.m2", + text = "ashtreesmoke01.m2", + }, + }, + value = "smoke", + text = "smoke", + }, + { + children = { + { + fileId = "189236", + value = "stoneblock01.m2", + text = "stoneblock01.m2", + }, + { + fileId = "189237", + value = "stonebracket01.m2", + text = "stonebracket01.m2", + }, + { + fileId = "189238", + value = "stonebracket02.m2", + text = "stonebracket02.m2", + }, + { + fileId = "189239", + value = "stonebracket03.m2", + text = "stonebracket03.m2", + }, + }, + value = "stonebrackets", + text = "stonebrackets", + }, + { + children = { + { + fileId = "189240", + value = "stonegolemstatue1-9.m2", + text = "stonegolemstatue1-9.m2", + }, + { + fileId = "189241", + value = "stonegolemstatue2-9.m2", + text = "stonegolemstatue2-9.m2", + }, + { + fileId = "189242", + value = "stonegolemstatue3-9.m2", + text = "stonegolemstatue3-9.m2", + }, + { + fileId = "189243", + value = "stonegolemstatue4-9.m2", + text = "stonegolemstatue4-9.m2", + }, + { + fileId = "189244", + value = "stonegolemstatue5-9.m2", + text = "stonegolemstatue5-9.m2", + }, + { + fileId = "189245", + value = "stonegolemstatue6-9.m2", + text = "stonegolemstatue6-9.m2", + }, + { + fileId = "189246", + value = "stonegolemstatue7-9.m2", + text = "stonegolemstatue7-9.m2", + }, + { + fileId = "189247", + value = "stonegolemstatue8-9.m2", + text = "stonegolemstatue8-9.m2", + }, + { + fileId = "189248", + value = "stonegolemstatue9-9.m2", + text = "stonegolemstatue9-9.m2", + }, + }, + value = "stonegolemstatue", + text = "stonegolemstatue", + }, + { + children = { + { + fileId = "189253", + value = "ashtree01.m2", + text = "ashtree01.m2", + }, + { + fileId = "189254", + value = "ashtree02.m2", + text = "ashtree02.m2", + }, + { + fileId = "189255", + value = "ashtree03.m2", + text = "ashtree03.m2", + }, + { + fileId = "189258", + value = "burningmidtree01.m2", + text = "burningmidtree01.m2", + }, + { + fileId = "189260", + value = "burningmidtree02.m2", + text = "burningmidtree02.m2", + }, + { + fileId = "189262", + value = "burningmidtree03.m2", + text = "burningmidtree03.m2", + }, + { + fileId = "189263", + value = "burningmidtree04.m2", + text = "burningmidtree04.m2", + }, + { + fileId = "189264", + value = "burningsteppestree01.m2", + text = "burningsteppestree01.m2", + }, + { + fileId = "189265", + value = "burningsteppestree02.m2", + text = "burningsteppestree02.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "189270", + value = "volcanicventlarge01.m2", + text = "volcanicventlarge01.m2", + }, + { + fileId = "189271", + value = "volcanicventlargeoff01.m2", + text = "volcanicventlargeoff01.m2", + }, + { + fileId = "189272", + value = "volcanicventmed01.m2", + text = "volcanicventmed01.m2", + }, + { + fileId = "189273", + value = "volcanicventmedoff01.m2", + text = "volcanicventmedoff01.m2", + }, + { + fileId = "189274", + value = "volcanicventsmall01.m2", + text = "volcanicventsmall01.m2", + }, + { + fileId = "189275", + value = "volcanicventsmalloff01.m2", + text = "volcanicventsmalloff01.m2", + }, + }, + value = "volcanicvents", + text = "volcanicvents", + }, + { + children = { + { + fileId = "189280", + value = "warlockshrine.m2", + text = "warlockshrine.m2", + }, + }, + value = "warlockshrine", + text = "warlockshrine", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "burningsteppes", + text = "burningsteppes", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189282", + value = "goblinmeltingpot.m2", + text = "goblinmeltingpot.m2", + }, + }, + value = "goblinmeltingpot", + text = "goblinmeltingpot", + }, + { + fileId = "189287", + value = "lavasink.m2", + text = "lavasink.m2", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "deadmines", + text = "deadmines", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189288", + value = "abandonedhumanguardtower.m2", + text = "abandonedhumanguardtower.m2", + }, + }, + value = "abandonedguardtower", + text = "abandonedguardtower", + }, + { + children = { + { + fileId = "189292", + value = "deadwindrockbridge.m2", + text = "deadwindrockbridge.m2", + }, + }, + value = "rockbridge", + text = "rockbridge", + }, + }, + value = "buildings", + text = "buildings", + }, + { + children = { + { + children = { + { + fileId = "189294", + value = "deadwindtotem01.m2", + text = "deadwindtotem01.m2", + }, + { + fileId = "189295", + value = "deadwindtotem02.m2", + text = "deadwindtotem02.m2", + }, + { + fileId = "189296", + value = "deadwindtotem03.m2", + text = "deadwindtotem03.m2", + }, + { + fileId = "189297", + value = "deadwindtotem04.m2", + text = "deadwindtotem04.m2", + }, + }, + value = "deadwindtotems", + text = "deadwindtotems", + }, + { + children = { + { + fileId = "189299", + value = "deadwindhangingbody01.m2", + text = "deadwindhangingbody01.m2", + }, + { + fileId = "189300", + value = "deadwindhangingbody02.m2", + text = "deadwindhangingbody02.m2", + }, + }, + value = "hangingbodies", + text = "hangingbodies", + }, + { + children = { + { + fileId = "189304", + value = "deadwindhangingtree.m2", + text = "deadwindhangingtree.m2", + }, + }, + value = "hangingtree", + text = "hangingtree", + }, + { + children = { + { + fileId = "189307", + value = "kharazan_brick.m2", + text = "kharazan_brick.m2", + }, + }, + value = "kharazan_brick", + text = "kharazan_brick", + }, + { + children = { + { + fileId = "189308", + value = "deadwindpasscliffrock01dnr.m2", + text = "deadwindpasscliffrock01dnr.m2", + }, + { + fileId = "189309", + value = "deadwindpasscliffrock02dnr.m2", + text = "deadwindpasscliffrock02dnr.m2", + }, + { + fileId = "189310", + value = "deadwindpasscliffrock03dnr.m2", + text = "deadwindpasscliffrock03dnr.m2", + }, + { + fileId = "189311", + value = "deadwindpasscliffrock04dnr.m2", + text = "deadwindpasscliffrock04dnr.m2", + }, + { + fileId = "189312", + value = "deadwindpasscliffrock05dnr.m2", + text = "deadwindpasscliffrock05dnr.m2", + }, + { + fileId = "189313", + value = "deadwindpassgroundrock01dnr.m2", + text = "deadwindpassgroundrock01dnr.m2", + }, + { + fileId = "189314", + value = "deadwindpassgroundrock02dnr.m2", + text = "deadwindpassgroundrock02dnr.m2", + }, + { + fileId = "189315", + value = "deadwindpassgroundrock03dnr.m2", + text = "deadwindpassgroundrock03dnr.m2", + }, + { + fileId = "189316", + value = "rockarch01dnr.m2", + text = "rockarch01dnr.m2", + }, + { + fileId = "189317", + value = "rockarch02dnr.m2", + text = "rockarch02dnr.m2", + }, + { + fileId = "189318", + value = "rockarch03dnr.m2", + text = "rockarch03dnr.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "189319", + value = "deadwindpassrocktree01.m2", + text = "deadwindpassrocktree01.m2", + }, + { + fileId = "189322", + value = "deadwindpassrocktree02.m2", + text = "deadwindpassrocktree02.m2", + }, + { + fileId = "189324", + value = "deadwindpassrocktree03.m2", + text = "deadwindpassrocktree03.m2", + }, + { + fileId = "189325", + value = "deadwindpassrocktree04.m2", + text = "deadwindpassrocktree04.m2", + }, + { + fileId = "189326", + value = "deadwindpassrocktree05.m2", + text = "deadwindpassrocktree05.m2", + }, + { + fileId = "189327", + value = "deadwindpassrocktree06.m2", + text = "deadwindpassrocktree06.m2", + }, + { + fileId = "189328", + value = "deadwindpassrocktreebroken01.m2", + text = "deadwindpassrocktreebroken01.m2", + }, + { + fileId = "189329", + value = "deadwindpassrocktreebroken02.m2", + text = "deadwindpassrocktreebroken02.m2", + }, + { + fileId = "189330", + value = "deadwindpassrocktreebroken03.m2", + text = "deadwindpassrocktreebroken03.m2", + }, + }, + value = "rocktrees", + text = "rocktrees", + }, + { + children = { + { + fileId = "189335", + value = "deadwindpassroot01.m2", + text = "deadwindpassroot01.m2", + }, + }, + value = "roots", + text = "roots", + }, + { + children = { + { + fileId = "189336", + value = "deadwindpassmidtree01.m2", + text = "deadwindpassmidtree01.m2", + }, + { + fileId = "189337", + value = "deadwindpassmidtree02.m2", + text = "deadwindpassmidtree02.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "189344", + value = "deadwindhangingweedsgroup01.m2", + text = "deadwindhangingweedsgroup01.m2", + }, + { + fileId = "189345", + value = "deadwindhangingweedsgroup02.m2", + text = "deadwindhangingweedsgroup02.m2", + }, + { + fileId = "189346", + value = "deadwindhangingweedsgroup03.m2", + text = "deadwindhangingweedsgroup03.m2", + }, + { + fileId = "189347", + value = "deadwindhangingweedslarge01.m2", + text = "deadwindhangingweedslarge01.m2", + }, + { + fileId = "189348", + value = "deadwindhangingweedslarge02.m2", + text = "deadwindhangingweedslarge02.m2", + }, + { + fileId = "189349", + value = "deadwindhangingweedssmall01.m2", + text = "deadwindhangingweedssmall01.m2", + }, + { + fileId = "189350", + value = "deadwindhangingweedssmall02.m2", + text = "deadwindhangingweedssmall02.m2", + }, + { + fileId = "189351", + value = "deadwindhangingweedssmall03.m2", + text = "deadwindhangingweedssmall03.m2", + }, + { + fileId = "189352", + value = "deadwindhangingweedssmall04.m2", + text = "deadwindhangingweedssmall04.m2", + }, + }, + value = "weeds", + text = "weeds", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "deadwindpass", + text = "deadwindpass", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189359", + value = "gnolltent02.m2", + text = "gnolltent02.m2", + }, + { + fileId = "189361", + value = "gnolltent03.m2", + text = "gnolltent03.m2", + }, + }, + value = "gnolltent", + text = "gnolltent", + }, + { + children = { + { + fileId = "189375", + value = "gypsywagon.m2", + text = "gypsywagon.m2", + }, + }, + value = "gypsywagon", + text = "gypsywagon", + }, + { + children = { + { + fileId = "189386", + value = "ogremound.m2", + text = "ogremound.m2", + }, + }, + value = "ogremound", + text = "ogremound", + }, + }, + value = "buildings", + text = "buildings", + }, + { + children = { + { + children = { + { + fileId = "189395", + value = "duskwoodbush01.m2", + text = "duskwoodbush01.m2", + }, + { + fileId = "189396", + value = "duskwoodbush02.m2", + text = "duskwoodbush02.m2", + }, + { + fileId = "189397", + value = "duskwoodbush03.m2", + text = "duskwoodbush03.m2", + }, + { + fileId = "189398", + value = "duskwoodbush04.m2", + text = "duskwoodbush04.m2", + }, + { + fileId = "189399", + value = "duskwoodbush05.m2", + text = "duskwoodbush05.m2", + }, + { + fileId = "189400", + value = "duskwoodbush06.m2", + text = "duskwoodbush06.m2", + }, + { + fileId = "189402", + value = "duskwoodbush07.m2", + text = "duskwoodbush07.m2", + }, + { + fileId = "189405", + value = "duskwoodspookybush01.m2", + text = "duskwoodspookybush01.m2", + }, + { + fileId = "189406", + value = "duskwoodspookybush02.m2", + text = "duskwoodspookybush02.m2", + }, + { + fileId = "189407", + value = "duskwoodspookybush03.m2", + text = "duskwoodspookybush03.m2", + }, + { + fileId = "189408", + value = "duskwoodspookybush04.m2", + text = "duskwoodspookybush04.m2", + }, + { + fileId = "189409", + value = "pumpkin01.m2", + text = "pumpkin01.m2", + }, + { + fileId = "189410", + value = "pumpkinpatch01.m2", + text = "pumpkinpatch01.m2", + }, + }, + value = "bush", + text = "bush", + }, + { + children = { + { + fileId = "189411", + value = "duskwoodchasmbridge.m2", + text = "duskwoodchasmbridge.m2", + }, + }, + value = "chasmbridge", + text = "chasmbridge", + }, + { + children = { + { + fileId = "189415", + value = "coffin.m2", + text = "coffin.m2", + }, + }, + value = "coffin", + text = "coffin", + }, + { + children = { + { + fileId = "189416", + value = "coffinlid.m2", + text = "coffinlid.m2", + }, + }, + value = "coffinlid", + text = "coffinlid", + }, + { + children = { + { + fileId = "189417", + value = "duskwoodcoveredbridge.m2", + text = "duskwoodcoveredbridge.m2", + }, + }, + value = "coveredbridge", + text = "coveredbridge", + }, + { + children = { + { + fileId = "189423", + value = "darkshireentrance01.m2", + text = "darkshireentrance01.m2", + }, + }, + value = "darkshireentrance", + text = "darkshireentrance", + }, + { + children = { + { + children = { + { + fileId = "189426", + value = "duskwoodcatails01.m2", + text = "duskwoodcatails01.m2", + }, + }, + value = "duskwoodcatails01", + text = "duskwoodcatails01", + }, + { + children = { + { + fileId = "189427", + value = "duskwoodgrass01.m2", + text = "duskwoodgrass01.m2", + }, + }, + value = "duskwoodgrass01", + text = "duskwoodgrass01", + }, + { + children = { + { + fileId = "189429", + value = "duskwoodlillypad01.m2", + text = "duskwoodlillypad01.m2", + }, + }, + value = "duskwoodlillypad01", + text = "duskwoodlillypad01", + }, + { + children = { + { + fileId = "189432", + value = "duskwoodmushroom01.m2", + text = "duskwoodmushroom01.m2", + }, + }, + value = "duskwoodmushroom01", + text = "duskwoodmushroom01", + }, + { + children = { + { + fileId = "189434", + value = "duskwoodseaweed01.m2", + text = "duskwoodseaweed01.m2", + }, + }, + value = "duskwoodseaweed01", + text = "duskwoodseaweed01", + }, + { + children = { + { + fileId = "189437", + value = "duskwoodthornbush01.m2", + text = "duskwoodthornbush01.m2", + }, + }, + value = "duskwoodthornbush01", + text = "duskwoodthornbush01", + }, + { + children = { + { + fileId = "189438", + value = "duskwoodthornbush02.m2", + text = "duskwoodthornbush02.m2", + }, + }, + value = "duskwoodthornbush02", + text = "duskwoodthornbush02", + }, + { + children = { + { + fileId = "189440", + value = "duskwoodvine01.m2", + text = "duskwoodvine01.m2", + }, + }, + value = "duskwoodvine01", + text = "duskwoodvine01", + }, + { + children = { + { + fileId = "189442", + value = "duskwoodvine02.m2", + text = "duskwoodvine02.m2", + }, + }, + value = "duskwoodvine02", + text = "duskwoodvine02", + }, + }, + value = "detail", + text = "detail", + }, + { + children = { + { + fileId = "189445", + value = "barnduskwood.m2", + text = "barnduskwood.m2", + }, + }, + value = "duskwoodbarn", + text = "duskwoodbarn", + }, + { + children = { + { + fileId = "189452", + value = "duskwoodhaystack.m2", + text = "duskwoodhaystack.m2", + }, + }, + value = "duskwoodhaystack", + text = "duskwoodhaystack", + }, + { + children = { + { + fileId = "189455", + value = "duskwoodhaywagon.m2", + text = "duskwoodhaywagon.m2", + }, + }, + value = "duskwoodhaywagon", + text = "duskwoodhaywagon", + }, + { + children = { + { + fileId = "189457", + value = "duskwoodhearse.m2", + text = "duskwoodhearse.m2", + }, + }, + value = "duskwoodhearse", + text = "duskwoodhearse", + }, + { + children = { + { + fileId = "189458", + value = "duskscarecrow.m2", + text = "duskscarecrow.m2", + }, + }, + value = "duskwoodscarecrow", + text = "duskwoodscarecrow", + }, + { + children = { + { + fileId = "189461", + value = "duskwoodstraw.m2", + text = "duskwoodstraw.m2", + }, + }, + value = "duskwoodstraw", + text = "duskwoodstraw", + }, + { + children = { + { + fileId = "189462", + value = "duskwoodwheat.m2", + text = "duskwoodwheat.m2", + }, + }, + value = "duskwoodwheat", + text = "duskwoodwheat", + }, + { + children = { + { + fileId = "189464", + value = "duskwoodfencebottom.m2", + text = "duskwoodfencebottom.m2", + }, + { + fileId = "189465", + value = "duskwoodfencebottombroken.m2", + text = "duskwoodfencebottombroken.m2", + }, + { + fileId = "189466", + value = "duskwoodfencebrokensegment.m2", + text = "duskwoodfencebrokensegment.m2", + }, + { + fileId = "189467", + value = "duskwoodfencepost.m2", + text = "duskwoodfencepost.m2", + }, + { + fileId = "189468", + value = "duskwoodfencerail.m2", + text = "duskwoodfencerail.m2", + }, + { + fileId = "189469", + value = "duskwoodfencesegment.m2", + text = "duskwoodfencesegment.m2", + }, + { + fileId = "189470", + value = "duskwoodfencesegment02.m2", + text = "duskwoodfencesegment02.m2", + }, + { + fileId = "189471", + value = "duskwoodfencetop.m2", + text = "duskwoodfencetop.m2", + }, + { + fileId = "189472", + value = "duskwoodfencetopbroken.m2", + text = "duskwoodfencetopbroken.m2", + }, + { + fileId = "189477", + value = "rockwallend.m2", + text = "rockwallend.m2", + }, + { + fileId = "189478", + value = "rockwallrubble.m2", + text = "rockwallrubble.m2", + }, + }, + value = "fence", + text = "fence", + }, + { + children = { + { + fileId = "189480", + value = "duskwoodgate01.m2", + text = "duskwoodgate01.m2", + }, + { + fileId = "189481", + value = "duskwoodtallcemetarygate.m2", + text = "duskwoodtallcemetarygate.m2", + }, + }, + value = "gates", + text = "gates", + }, + { + children = { + { + fileId = "189485", + value = "duskwoodgraveframe.m2", + text = "duskwoodgraveframe.m2", + }, + }, + value = "graveframe", + text = "graveframe", + }, + { + children = { + { + fileId = "189488", + value = "cemetarygate01.m2", + text = "cemetarygate01.m2", + }, + { + fileId = "189491", + value = "gatepost.m2", + text = "gatepost.m2", + }, + { + fileId = "189492", + value = "gatesegment01.m2", + text = "gatesegment01.m2", + }, + { + fileId = "189493", + value = "gatesegment02.m2", + text = "gatesegment02.m2", + }, + { + fileId = "189494", + value = "gatesegment03.m2", + text = "gatesegment03.m2", + }, + }, + value = "irongate", + text = "irongate", + }, + { + children = { + { + fileId = "189496", + value = "duskwoodmausoleum.m2", + text = "duskwoodmausoleum.m2", + }, + { + fileId = "189498", + value = "mausoleumactivedoors.m2", + text = "mausoleumactivedoors.m2", + }, + }, + value = "mausoleum", + text = "mausoleum", + }, + { + children = { + { + fileId = "189499", + value = "duskwoodboulder01.m2", + text = "duskwoodboulder01.m2", + }, + { + fileId = "189500", + value = "duskwoodboulder02.m2", + text = "duskwoodboulder02.m2", + }, + { + fileId = "189501", + value = "duskwoodboulder03.m2", + text = "duskwoodboulder03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "189505", + value = "duskwoodchimney01.m2", + text = "duskwoodchimney01.m2", + }, + { + fileId = "189506", + value = "duskwoodruins01.m2", + text = "duskwoodruins01.m2", + }, + { + fileId = "189507", + value = "duskwoodruins02.m2", + text = "duskwoodruins02.m2", + }, + { + fileId = "189508", + value = "duskwoodruins03.m2", + text = "duskwoodruins03.m2", + }, + { + fileId = "189509", + value = "duskwoodruins04.m2", + text = "duskwoodruins04.m2", + }, + { + fileId = "189510", + value = "duskwoodruinsbeam.m2", + text = "duskwoodruinsbeam.m2", + }, + { + fileId = "189511", + value = "duskwoodruinsbrick.m2", + text = "duskwoodruinsbrick.m2", + }, + { + fileId = "189512", + value = "duskwoodruinsfoundation01.m2", + text = "duskwoodruinsfoundation01.m2", + }, + { + fileId = "189513", + value = "duskwoodruinsfoundation02.m2", + text = "duskwoodruinsfoundation02.m2", + }, + }, + value = "ruins", + text = "ruins", + }, + { + children = { + { + fileId = "189516", + value = "duskwoodcs01.m2", + text = "duskwoodcs01.m2", + }, + { + fileId = "189517", + value = "duskwoodcs02.m2", + text = "duskwoodcs02.m2", + }, + { + fileId = "189521", + value = "duskwoodtreespookless01.m2", + text = "duskwoodtreespookless01.m2", + }, + { + fileId = "189522", + value = "duskwoodtreespookless02.m2", + text = "duskwoodtreespookless02.m2", + }, + }, + value = "spooklesstrees", + text = "spooklesstrees", + }, + { + children = { + { + fileId = "189523", + value = "duskwoodstoneframecorner.m2", + text = "duskwoodstoneframecorner.m2", + }, + { + fileId = "189524", + value = "duskwoodstoneframelong.m2", + text = "duskwoodstoneframelong.m2", + }, + { + fileId = "189525", + value = "duskwoodstoneframeshort.m2", + text = "duskwoodstoneframeshort.m2", + }, + }, + value = "stoneframes", + text = "stoneframes", + }, + { + children = { + { + fileId = "189527", + value = "duskwoodstraw02.m2", + text = "duskwoodstraw02.m2", + }, + }, + value = "straw", + text = "straw", + }, + { + children = { + { + fileId = "189528", + value = "dirtmound01.m2", + text = "dirtmound01.m2", + }, + { + fileId = "189530", + value = "tombstone05.m2", + text = "tombstone05.m2", + }, + { + fileId = "189532", + value = "tombstone06.m2", + text = "tombstone06.m2", + }, + { + fileId = "189534", + value = "tombstone07.m2", + text = "tombstone07.m2", + }, + { + fileId = "189535", + value = "tombstone08.m2", + text = "tombstone08.m2", + }, + { + fileId = "189536", + value = "tombstonemonument01.m2", + text = "tombstonemonument01.m2", + }, + { + fileId = "189538", + value = "tombstonemonument02.m2", + text = "tombstonemonument02.m2", + }, + { + fileId = "189540", + value = "woodcross01.m2", + text = "woodcross01.m2", + }, + { + fileId = "189541", + value = "woodcross02.m2", + text = "woodcross02.m2", + }, + }, + value = "tombs", + text = "tombs", + }, + { + children = { + { + fileId = "189544", + value = "duskwoodbrowntree.m2", + text = "duskwoodbrowntree.m2", + }, + { + fileId = "189545", + value = "duskwoodfallentree.m2", + text = "duskwoodfallentree.m2", + }, + { + fileId = "189546", + value = "duskwoodfallentree02.m2", + text = "duskwoodfallentree02.m2", + }, + { + fileId = "189547", + value = "duskwoodspookytree01.m2", + text = "duskwoodspookytree01.m2", + }, + { + fileId = "189551", + value = "duskwoodspookytree02.m2", + text = "duskwoodspookytree02.m2", + }, + { + fileId = "189552", + value = "duskwoodspookytree03.m2", + text = "duskwoodspookytree03.m2", + }, + { + fileId = "189557", + value = "duskwoodtree05.m2", + text = "duskwoodtree05.m2", + }, + { + fileId = "189558", + value = "duskwoodtree06.m2", + text = "duskwoodtree06.m2", + }, + { + fileId = "189559", + value = "duskwoodtree07.m2", + text = "duskwoodtree07.m2", + }, + { + fileId = "189560", + value = "duskwoodtreecanopy01.m2", + text = "duskwoodtreecanopy01.m2", + }, + { + fileId = "189561", + value = "duskwoodtreecanopy02.m2", + text = "duskwoodtreecanopy02.m2", + }, + { + fileId = "189562", + value = "duskwoodtreecanopy03.m2", + text = "duskwoodtreecanopy03.m2", + }, + { + fileId = "189566", + value = "duskwoodtreestump01.m2", + text = "duskwoodtreestump01.m2", + }, + { + fileId = "189567", + value = "duskwoodtreestump02.m2", + text = "duskwoodtreestump02.m2", + }, + { + fileId = "189571", + value = "duskwoodwhitetree.m2", + text = "duskwoodwhitetree.m2", + }, + { + fileId = "189575", + value = "newduskwoodtreehuge.m2", + text = "newduskwoodtreehuge.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "189580", + value = "duskwoodrockwall.m2", + text = "duskwoodrockwall.m2", + }, + }, + value = "walls", + text = "walls", + }, + { + children = { + { + fileId = "189581", + value = "warningtree.m2", + text = "warningtree.m2", + }, + }, + value = "warningtree", + text = "warningtree", + }, + { + children = { + { + fileId = "189589", + value = "duskwoodwarpgate.m2", + text = "duskwoodwarpgate.m2", + }, + }, + value = "warpgate", + text = "warpgate", + }, + { + children = { + { + fileId = "189595", + value = "webdangle01.m2", + text = "webdangle01.m2", + }, + { + fileId = "189596", + value = "webdangle02.m2", + text = "webdangle02.m2", + }, + { + fileId = "189597", + value = "webstretch01.m2", + text = "webstretch01.m2", + }, + }, + value = "webs", + text = "webs", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "duskwood", + text = "duskwood", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "189599", + value = "nsabbeybell.m2", + text = "nsabbeybell.m2", + }, + }, + value = "abbeybell", + text = "abbeybell", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "189601", + value = "blacksmith.m2", + text = "blacksmith.m2", + }, + }, + value = "blacksmith", + text = "blacksmith", + }, + { + children = { + { + fileId = "189610", + value = "elwynnfootbridge.m2", + text = "elwynnfootbridge.m2", + }, + }, + value = "bridges", + text = "bridges", + }, + { + children = { + { + fileId = "189611", + value = "distillery.m2", + text = "distillery.m2", + }, + }, + value = "distillery", + text = "distillery", + }, + { + children = { + { + fileId = "189620", + value = "goldmine.m2", + text = "goldmine.m2", + }, + { + fileId = "189621", + value = "goldminetrackcurve.m2", + text = "goldminetrackcurve.m2", + }, + { + fileId = "189622", + value = "goldminetracks.m2", + text = "goldminetracks.m2", + }, + }, + value = "goldmine", + text = "goldmine", + }, + { + children = { + { + fileId = "189629", + value = "humanguardtower.m2", + text = "humanguardtower.m2", + }, + }, + value = "humanguardtower", + text = "humanguardtower", + }, + { + children = { + { + fileId = "189632", + value = "humanwatchtower.m2", + text = "humanwatchtower.m2", + }, + }, + value = "humanwatchtower", + text = "humanwatchtower", + }, + { + children = { + { + fileId = "189641", + value = "stormwindgate.m2", + text = "stormwindgate.m2", + }, + }, + value = "stormwindentrance", + text = "stormwindentrance", + }, + }, + value = "buildings", + text = "buildings", + }, + { + children = { + { + children = { + { + fileId = "189642", + value = "anvil.m2", + text = "anvil.m2", + }, + }, + value = "anvil", + text = "anvil", + }, + { + children = { + { + fileId = "189652", + value = "ballista.m2", + text = "ballista.m2", + }, + }, + value = "ballista", + text = "ballista", + }, + { + children = { + { + fileId = "189657", + value = "ballistaruined.m2", + text = "ballistaruined.m2", + }, + }, + value = "ballistaruined", + text = "ballistaruined", + }, + { + children = { + { + fileId = "189666", + value = "battlegladebanner1.m2", + text = "battlegladebanner1.m2", + }, + }, + value = "battlegladebanner1", + text = "battlegladebanner1", + }, + { + children = { + { + fileId = "189670", + value = "battlegladebanner2.m2", + text = "battlegladebanner2.m2", + }, + }, + value = "battlegladebanner2", + text = "battlegladebanner2", + }, + { + children = { + { + fileId = "189674", + value = "battlegladepolearmskull.m2", + text = "battlegladepolearmskull.m2", + }, + }, + value = "battlegladepolearmskull", + text = "battlegladepolearmskull", + }, + { + children = { + { + fileId = "189676", + value = "battlegladeshield1.m2", + text = "battlegladeshield1.m2", + }, + }, + value = "battlegladeshield1", + text = "battlegladeshield1", + }, + { + children = { + { + fileId = "189678", + value = "battlegladeshield2.m2", + text = "battlegladeshield2.m2", + }, + }, + value = "battlegladeshield2", + text = "battlegladeshield2", + }, + { + children = { + { + fileId = "189680", + value = "battlegladeshield3.m2", + text = "battlegladeshield3.m2", + }, + }, + value = "battlegladeshield3", + text = "battlegladeshield3", + }, + { + children = { + { + fileId = "189682", + value = "battlegladeskullhuman1.m2", + text = "battlegladeskullhuman1.m2", + }, + }, + value = "battlegladeskullhuman1", + text = "battlegladeskullhuman1", + }, + { + children = { + { + fileId = "189684", + value = "battlegladeskullhuman2.m2", + text = "battlegladeskullhuman2.m2", + }, + }, + value = "battlegladeskullhuman2", + text = "battlegladeskullhuman2", + }, + { + children = { + { + fileId = "189685", + value = "battlegladeskullorc1.m2", + text = "battlegladeskullorc1.m2", + }, + }, + value = "battlegladeskullorc1", + text = "battlegladeskullorc1", + }, + { + children = { + { + fileId = "189686", + value = "battlegladeskullorc2.m2", + text = "battlegladeskullorc2.m2", + }, + }, + value = "battlegladeskullorc2", + text = "battlegladeskullorc2", + }, + { + children = { + { + fileId = "189687", + value = "battlegladesword.m2", + text = "battlegladesword.m2", + }, + }, + value = "battlegladesword", + text = "battlegladesword", + }, + { + children = { + { + fileId = "189689", + value = "battlegladeswordskull.m2", + text = "battlegladeswordskull.m2", + }, + }, + value = "battlegladeswordskull", + text = "battlegladeswordskull", + }, + { + children = { + { + fileId = "189690", + value = "battlegladewoodspikes.m2", + text = "battlegladewoodspikes.m2", + }, + }, + value = "battlegladewoodspikes", + text = "battlegladewoodspikes", + }, + { + children = { + { + fileId = "189691", + value = "bellow.m2", + text = "bellow.m2", + }, + }, + value = "bellow", + text = "bellow", + }, + { + children = { + { + fileId = "189692", + value = "elwynnbush01.m2", + text = "elwynnbush01.m2", + }, + { + fileId = "189693", + value = "elwynnbush02.m2", + text = "elwynnbush02.m2", + }, + { + fileId = "189694", + value = "elwynnbush03.m2", + text = "elwynnbush03.m2", + }, + { + fileId = "189695", + value = "elwynnbush04.m2", + text = "elwynnbush04.m2", + }, + { + fileId = "189696", + value = "elwynnbush05.m2", + text = "elwynnbush05.m2", + }, + { + fileId = "189697", + value = "elwynnbush06.m2", + text = "elwynnbush06.m2", + }, + { + fileId = "189698", + value = "elwynnbush07.m2", + text = "elwynnbush07.m2", + }, + { + fileId = "189699", + value = "elwynnbush08.m2", + text = "elwynnbush08.m2", + }, + { + fileId = "189700", + value = "elwynnbush09.m2", + text = "elwynnbush09.m2", + }, + }, + value = "bush", + text = "bush", + }, + { + children = { + { + fileId = "189705", + value = "elwynncampfire.m2", + text = "elwynncampfire.m2", + }, + { + fileId = "189706", + value = "elwynncampfire_blue.m2", + text = "elwynncampfire_blue.m2", + }, + }, + value = "campfire", + text = "campfire", + }, + { + children = { + { + fileId = "189709", + value = "catapult.m2", + text = "catapult.m2", + }, + }, + value = "catapult", + text = "catapult", + }, + { + children = { + { + fileId = "189715", + value = "elwynncliffrock01.m2", + text = "elwynncliffrock01.m2", + }, + { + fileId = "189716", + value = "elwynncliffrock02.m2", + text = "elwynncliffrock02.m2", + }, + { + fileId = "189717", + value = "elwynncliffrock03.m2", + text = "elwynncliffrock03.m2", + }, + { + fileId = "189718", + value = "elwynncliffrock04.m2", + text = "elwynncliffrock04.m2", + }, + { + fileId = "189719", + value = "elwynncliffrock05.m2", + text = "elwynncliffrock05.m2", + }, + }, + value = "cliffrocks", + text = "cliffrocks", + }, + { + children = { + { + fileId = "189723", + value = "corn.m2", + text = "corn.m2", + }, + { + fileId = "189725", + value = "corncrop1.m2", + text = "corncrop1.m2", + }, + { + fileId = "189727", + value = "corncrop2.m2", + text = "corncrop2.m2", + }, + { + fileId = "189728", + value = "corncrop3.m2", + text = "corncrop3.m2", + }, + { + fileId = "189730", + value = "corncropdead.m2", + text = "corncropdead.m2", + }, + { + fileId = "189731", + value = "corncroplowpoly.m2", + text = "corncroplowpoly.m2", + }, + { + fileId = "189732", + value = "corncroprow.m2", + text = "corncroprow.m2", + }, + { + fileId = "189733", + value = "corncroprowlowpoly01.m2", + text = "corncroprowlowpoly01.m2", + }, + { + fileId = "189734", + value = "corncroprowlowpoly02.m2", + text = "corncroprowlowpoly02.m2", + }, + }, + value = "corncrop", + text = "corncrop", + }, + { + children = { + { + children = { + { + fileId = "189739", + value = "elwynncatails01.m2", + text = "elwynncatails01.m2", + }, + }, + value = "elwynncatails01", + text = "elwynncatails01", + }, + { + children = { + { + fileId = "189740", + value = "elwynncatails02.m2", + text = "elwynncatails02.m2", + }, + }, + value = "elwynncatails02", + text = "elwynncatails02", + }, + { + children = { + { + fileId = "189742", + value = "elwynndetailflowers01.m2", + text = "elwynndetailflowers01.m2", + }, + { + fileId = "189743", + value = "elwynndetailflowers02.m2", + text = "elwynndetailflowers02.m2", + }, + }, + value = "elwynndetailflowers", + text = "elwynndetailflowers", + }, + { + children = { + { + fileId = "189744", + value = "elwynndetailgrass01.m2", + text = "elwynndetailgrass01.m2", + }, + { + fileId = "189745", + value = "elwynndetailgrass02.m2", + text = "elwynndetailgrass02.m2", + }, + { + fileId = "189746", + value = "elwynndetailgrass03.m2", + text = "elwynndetailgrass03.m2", + }, + { + fileId = "189747", + value = "elwynndetailgrass04.m2", + text = "elwynndetailgrass04.m2", + }, + }, + value = "elwynndetailgrass", + text = "elwynndetailgrass", + }, + { + children = { + { + fileId = "189749", + value = "elwynndetailrock01.m2", + text = "elwynndetailrock01.m2", + }, + { + fileId = "189750", + value = "elwynndetailrock02.m2", + text = "elwynndetailrock02.m2", + }, + }, + value = "elwynndetailrocks", + text = "elwynndetailrocks", + }, + { + fileId = "189751", + value = "elwynnflower01.m2", + text = "elwynnflower01.m2", + }, + { + fileId = "189752", + value = "elwynnflower02.m2", + text = "elwynnflower02.m2", + }, + { + fileId = "189754", + value = "elwynngrass01.m2", + text = "elwynngrass01.m2", + }, + { + children = { + { + fileId = "189755", + value = "elwynngrass02.m2", + text = "elwynngrass02.m2", + }, + }, + value = "elwynngrass02", + text = "elwynngrass02", + }, + { + children = { + { + fileId = "189757", + value = "elwynngrass1.m2", + text = "elwynngrass1.m2", + }, + }, + value = "elwynngrass1", + text = "elwynngrass1", + }, + { + children = { + { + fileId = "189759", + value = "elwynnlillypad01.m2", + text = "elwynnlillypad01.m2", + }, + }, + value = "elwynnlillypad01", + text = "elwynnlillypad01", + }, + { + fileId = "189760", + value = "elwynnmelon01.m2", + text = "elwynnmelon01.m2", + }, + { + children = { + { + fileId = "189761", + value = "elwynnmushroom01.m2", + text = "elwynnmushroom01.m2", + }, + }, + value = "elwynnmushroom01", + text = "elwynnmushroom01", + }, + { + children = { + { + fileId = "189763", + value = "elwynnpoppy1.m2", + text = "elwynnpoppy1.m2", + }, + }, + value = "elwynnpoppy1", + text = "elwynnpoppy1", + }, + { + children = { + { + fileId = "189765", + value = "elwynnpoppy2.m2", + text = "elwynnpoppy2.m2", + }, + }, + value = "elwynnpoppy2", + text = "elwynnpoppy2", + }, + { + children = { + { + fileId = "189767", + value = "elwynnreeds01.m2", + text = "elwynnreeds01.m2", + }, + }, + value = "elwynnreeds01", + text = "elwynnreeds01", + }, + { + children = { + { + fileId = "189768", + value = "elwynnrock1.m2", + text = "elwynnrock1.m2", + }, + }, + value = "elwynnrock1", + text = "elwynnrock1", + }, + { + children = { + { + fileId = "189770", + value = "elwynnrock2.m2", + text = "elwynnrock2.m2", + }, + }, + value = "elwynnrock2", + text = "elwynnrock2", + }, + { + children = { + { + fileId = "189772", + value = "elwynnseaweed01.m2", + text = "elwynnseaweed01.m2", + }, + }, + value = "elwynnseaweed01", + text = "elwynnseaweed01", + }, + { + children = { + { + fileId = "189774", + value = "elwynnshrub1.m2", + text = "elwynnshrub1.m2", + }, + }, + value = "elwynnshrub1", + text = "elwynnshrub1", + }, + { + children = { + { + fileId = "189777", + value = "elwynnthornbush01.m2", + text = "elwynnthornbush01.m2", + }, + }, + value = "elwynnthornbush01", + text = "elwynnthornbush01", + }, + { + children = { + { + fileId = "189778", + value = "elwynnthornbush02.m2", + text = "elwynnthornbush02.m2", + }, + }, + value = "elwynnthornbush02", + text = "elwynnthornbush02", + }, + { + children = { + { + fileId = "189779", + value = "elwynnvines01.m2", + text = "elwynnvines01.m2", + }, + }, + value = "elwynnvines01", + text = "elwynnvines01", + }, + { + children = { + { + fileId = "189781", + value = "elwynnvines02.m2", + text = "elwynnvines02.m2", + }, + }, + value = "elwynnvines02", + text = "elwynnvines02", + }, + { + children = { + { + fileId = "189784", + value = "elwynnvineyard01.m2", + text = "elwynnvineyard01.m2", + }, + }, + value = "elwynnvineyard", + text = "elwynnvineyard", + }, + { + children = { + { + fileId = "189788", + value = "elwynnwheat01.m2", + text = "elwynnwheat01.m2", + }, + }, + value = "elwynnwheat", + text = "elwynnwheat", + }, + }, + value = "detail", + text = "detail", + }, + { + children = { + { + fileId = "189790", + value = "elwynnfencesimple.m2", + text = "elwynnfencesimple.m2", + }, + { + fileId = "189791", + value = "elwynnfencesimplepost.m2", + text = "elwynnfencesimplepost.m2", + }, + { + fileId = "189792", + value = "elwynnfencetop.m2", + text = "elwynnfencetop.m2", + }, + { + fileId = "189793", + value = "elwynnstonefence.m2", + text = "elwynnstonefence.m2", + }, + { + fileId = "189794", + value = "elwynnstonefencepost.m2", + text = "elwynnstonefencepost.m2", + }, + { + fileId = "189795", + value = "elwynnwoodfence01.m2", + text = "elwynnwoodfence01.m2", + }, + { + fileId = "189796", + value = "elwynnwoodpost01.m2", + text = "elwynnwoodpost01.m2", + }, + }, + value = "elwynnfences", + text = "elwynnfences", + }, + { + children = { + { + fileId = "189802", + value = "eyeofazora.m2", + text = "eyeofazora.m2", + }, + }, + value = "eyeofazora", + text = "eyeofazora", + }, + { + children = { + { + fileId = "189805", + value = "grapebucket01.m2", + text = "grapebucket01.m2", + }, + { + fileId = "189806", + value = "grapebucket02.m2", + text = "grapebucket02.m2", + }, + }, + value = "grapebuckets", + text = "grapebuckets", + }, + { + children = { + { + fileId = "189810", + value = "haystack01.m2", + text = "haystack01.m2", + }, + { + fileId = "189811", + value = "haystack02.m2", + text = "haystack02.m2", + }, + }, + value = "haystacks", + text = "haystacks", + }, + { + children = { + { + fileId = "189815", + value = "jar01.m2", + text = "jar01.m2", + }, + { + fileId = "189816", + value = "jar02.m2", + text = "jar02.m2", + }, + { + fileId = "189817", + value = "jar03.m2", + text = "jar03.m2", + }, + }, + value = "jars", + text = "jars", + }, + { + children = { + { + fileId = "189820", + value = "jug01.m2", + text = "jug01.m2", + }, + { + fileId = "189821", + value = "jug02.m2", + text = "jug02.m2", + }, + }, + value = "jugs", + text = "jugs", + }, + { + children = { + { + fileId = "189825", + value = "lamppost.m2", + text = "lamppost.m2", + }, + }, + value = "lamppost", + text = "lamppost", + }, + { + children = { + { + fileId = "189827", + value = "elwynnminecart.m2", + text = "elwynnminecart.m2", + }, + }, + value = "minecart", + text = "minecart", + }, + { + children = { + { + fileId = "189830", + value = "monumentrock.m2", + text = "monumentrock.m2", + }, + }, + value = "monumentrock", + text = "monumentrock", + }, + { + children = { + { + fileId = "189834", + value = "pick.m2", + text = "pick.m2", + }, + }, + value = "pick", + text = "pick", + }, + { + children = { + { + fileId = "189840", + value = "ruinedcatapult.m2", + text = "ruinedcatapult.m2", + }, + }, + value = "ruinedcatapult", + text = "ruinedcatapult", + }, + { + children = { + { + fileId = "189852", + value = "ruinedfountain.m2", + text = "ruinedfountain.m2", + }, + }, + value = "ruinedfountain", + text = "ruinedfountain", + }, + { + children = { + { + fileId = "189854", + value = "shovel.m2", + text = "shovel.m2", + }, + }, + value = "shovel", + text = "shovel", + }, + { + children = { + { + children = { + { + fileId = "189855", + value = "duskwooddirectionalsign.m2", + text = "duskwooddirectionalsign.m2", + }, + { + fileId = "189857", + value = "goldshiredirectionalsign.m2", + text = "goldshiredirectionalsign.m2", + }, + { + fileId = "189859", + value = "northshiredirectionalsign.m2", + text = "northshiredirectionalsign.m2", + }, + { + fileId = "189862", + value = "runestonedirectionalsign.m2", + text = "runestonedirectionalsign.m2", + }, + { + fileId = "189863", + value = "stormwinddirectionalsign.m2", + text = "stormwinddirectionalsign.m2", + }, + { + fileId = "189866", + value = "westfalldirectionalsign.m2", + text = "westfalldirectionalsign.m2", + }, + }, + value = "directional", + text = "directional", + }, + { + children = { + { + fileId = "189868", + value = "genericsmallsignpost01.m2", + text = "genericsmallsignpost01.m2", + }, + }, + value = "genericposts", + text = "genericposts", + }, + { + children = { + { + fileId = "189878", + value = "humanalchemistsign.m2", + text = "humanalchemistsign.m2", + }, + { + fileId = "189879", + value = "humanbaitandtacklesign.m2", + text = "humanbaitandtacklesign.m2", + }, + { + fileId = "189880", + value = "humanbanksign.m2", + text = "humanbanksign.m2", + }, + { + fileId = "189881", + value = "humanblacksmithsign.m2", + text = "humanblacksmithsign.m2", + }, + { + fileId = "189882", + value = "humanboathousesign.m2", + text = "humanboathousesign.m2", + }, + { + fileId = "189883", + value = "humaninnsign.m2", + text = "humaninnsign.m2", + }, + { + fileId = "189884", + value = "humaninnsignpost.m2", + text = "humaninnsignpost.m2", + }, + { + fileId = "189885", + value = "humanmagicshopsign.m2", + text = "humanmagicshopsign.m2", + }, + { + fileId = "189886", + value = "humantannersign.m2", + text = "humantannersign.m2", + }, + }, + value = "shop", + text = "shop", + }, + }, + value = "signs", + text = "signs", + }, + { + children = { + { + fileId = "189893", + value = "battlegladeboneshumandark.m2", + text = "battlegladeboneshumandark.m2", + }, + { + fileId = "189894", + value = "battlegladebskeletonhumandark.m2", + text = "battlegladebskeletonhumandark.m2", + }, + { + fileId = "189896", + value = "battlegladeskullhumandark.m2", + text = "battlegladeskullhumandark.m2", + }, + { + fileId = "189898", + value = "battlegladespinehumandark.m2", + text = "battlegladespinehumandark.m2", + }, + }, + value = "skeleton", + text = "skeleton", + }, + { + children = { + { + fileId = "189904", + value = "smalldock.m2", + text = "smalldock.m2", + }, + }, + value = "smalldock", + text = "smalldock", + }, + { + children = { + { + fileId = "189906", + value = "spike.m2", + text = "spike.m2", + }, + }, + value = "spike", + text = "spike", + }, + { + children = { + { + fileId = "189908", + value = "lionstatue.m2", + text = "lionstatue.m2", + }, + }, + value = "statue", + text = "statue", + }, + { + children = { + { + fileId = "189910", + value = "stonepyre.m2", + text = "stonepyre.m2", + }, + }, + value = "stonepyre", + text = "stonepyre", + }, + { + children = { + { + children = { + { + fileId = "189914", + value = "roundtable.m2", + text = "roundtable.m2", + }, + }, + value = "roundtable", + text = "roundtable", + }, + }, + value = "tables", + text = "tables", + }, + { + children = { + { + fileId = "189915", + value = "elwynnlog01.m2", + text = "elwynnlog01.m2", + }, + { + fileId = "189916", + value = "elwynnlog02.m2", + text = "elwynnlog02.m2", + }, + }, + value = "tree", + text = "tree", + }, + { + children = { + { + fileId = "189919", + value = "canopylesstree01.m2", + text = "canopylesstree01.m2", + }, + { + fileId = "189920", + value = "canopylesstree02.m2", + text = "canopylesstree02.m2", + }, + { + fileId = "189921", + value = "canopylesstree03.m2", + text = "canopylesstree03.m2", + }, + { + fileId = "189922", + value = "canopylesstree04.m2", + text = "canopylesstree04.m2", + }, + { + fileId = "189923", + value = "elwynnfirtree01.m2", + text = "elwynnfirtree01.m2", + }, + { + children = { + { + fileId = "189924", + value = "elwynnpine01.m2", + text = "elwynnpine01.m2", + }, + { + fileId = "189925", + value = "elwynnpine02.m2", + text = "elwynnpine02.m2", + }, + }, + value = "elwynntree01", + text = "elwynntree01", + }, + { + fileId = "189927", + value = "elwynntreecanopy01.m2", + text = "elwynntreecanopy01.m2", + }, + { + fileId = "189928", + value = "elwynntreecanopy02.m2", + text = "elwynntreecanopy02.m2", + }, + { + fileId = "189929", + value = "elwynntreecanopy03.m2", + text = "elwynntreecanopy03.m2", + }, + { + fileId = "189930", + value = "elwynntreecanopy04.m2", + text = "elwynntreecanopy04.m2", + }, + { + fileId = "189932", + value = "elwynntreemid01.m2", + text = "elwynntreemid01.m2", + }, + { + children = { + { + fileId = "189939", + value = "elwynntreestump01.m2", + text = "elwynntreestump01.m2", + }, + { + fileId = "189940", + value = "elwynntreestump02.m2", + text = "elwynntreestump02.m2", + }, + }, + value = "stumps", + text = "stumps", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "189948", + value = "vineyard.m2", + text = "vineyard.m2", + }, + { + fileId = "189949", + value = "vineyardcube01.m2", + text = "vineyardcube01.m2", + }, + { + fileId = "189950", + value = "vineyardcube02.m2", + text = "vineyardcube02.m2", + }, + { + fileId = "189951", + value = "vineyardlowpoly.m2", + text = "vineyardlowpoly.m2", + }, + { + fileId = "189953", + value = "vineyardwired.m2", + text = "vineyardwired.m2", + }, + }, + value = "vineyard", + text = "vineyard", + }, + { + children = { + { + fileId = "189956", + value = "waterbasin.m2", + text = "waterbasin.m2", + }, + }, + value = "waterbasin", + text = "waterbasin", + }, + { + children = { + { + fileId = "189958", + value = "elwynnmediumwaterfall01.m2", + text = "elwynnmediumwaterfall01.m2", + }, + { + fileId = "189959", + value = "elwynntallwaterfall01.m2", + text = "elwynntallwaterfall01.m2", + }, + }, + value = "waterfall", + text = "waterfall", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "elwynn", + text = "elwynn", + }, + { + children = { + { + children = { + { + fileId = "189960", + value = "karazahn_bridgedoors.m2", + text = "karazahn_bridgedoors.m2", + }, + { + fileId = "189961", + value = "karazahn_chessroomdoors.m2", + text = "karazahn_chessroomdoors.m2", + }, + { + fileId = "189962", + value = "karazahn_cptnqrtzdoors.m2", + text = "karazahn_cptnqrtzdoors.m2", + }, + { + fileId = "189963", + value = "karazahn_diningdoors.m2", + text = "karazahn_diningdoors.m2", + }, + { + fileId = "189964", + value = "karazahn_diningruindoor.m2", + text = "karazahn_diningruindoor.m2", + }, + { + fileId = "189965", + value = "karazahn_gatedoors.m2", + text = "karazahn_gatedoors.m2", + }, + { + fileId = "189966", + value = "karazahn_secretdoor.m2", + text = "karazahn_secretdoor.m2", + }, + { + fileId = "189967", + value = "karazahn_secretdoor01.m2", + text = "karazahn_secretdoor01.m2", + }, + { + fileId = "189968", + value = "karazahn_secretroomdoor.m2", + text = "karazahn_secretroomdoor.m2", + }, + { + fileId = "189969", + value = "karazahn_silverrmdoor01.m2", + text = "karazahn_silverrmdoor01.m2", + }, + { + fileId = "189970", + value = "karazahn_silverrmdoor02.m2", + text = "karazahn_silverrmdoor02.m2", + }, + { + fileId = "189971", + value = "karazahn_stagedoor.m2", + text = "karazahn_stagedoor.m2", + }, + { + fileId = "189972", + value = "karazahnportcullis.m2", + text = "karazahnportcullis.m2", + }, + { + fileId = "189973", + value = "karazhan_observe_door.m2", + text = "karazhan_observe_door.m2", + }, + { + fileId = "189974", + value = "karazhan_red_curtain.m2", + text = "karazhan_red_curtain.m2", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "189980", + value = "karazahnbarrel01.m2", + text = "karazahnbarrel01.m2", + }, + { + fileId = "189981", + value = "karazahnbarrel02.m2", + text = "karazahnbarrel02.m2", + }, + }, + value = "barrel", + text = "barrel", + }, + { + children = { + { + fileId = "189983", + value = "karazahnbonfire01.m2", + text = "karazahnbonfire01.m2", + }, + { + fileId = "189984", + value = "karazahnbonfire02.m2", + text = "karazahnbonfire02.m2", + }, + }, + value = "bonfire", + text = "bonfire", + }, + { + children = { + { + fileId = "189992", + value = "karazahnbookshelflarge.m2", + text = "karazahnbookshelflarge.m2", + }, + { + fileId = "189993", + value = "karazahnbookshelfsmall.m2", + text = "karazahnbookshelfsmall.m2", + }, + { + fileId = "189994", + value = "karazahnbookshelfxtralarge.m2", + text = "karazahnbookshelfxtralarge.m2", + }, + }, + value = "bookshelves", + text = "bookshelves", + }, + { + children = { + { + fileId = "189997", + value = "kn_brokencart.m2", + text = "kn_brokencart.m2", + }, + { + fileId = "189998", + value = "kn_brokencart02.m2", + text = "kn_brokencart02.m2", + }, + }, + value = "brokencart", + text = "brokencart", + }, + { + children = { + { + fileId = "190000", + value = "booksonfire.m2", + text = "booksonfire.m2", + }, + }, + value = "burningbooks", + text = "burningbooks", + }, + { + children = { + { + fileId = "190006", + value = "karazanchandelier_01.m2", + text = "karazanchandelier_01.m2", + }, + { + fileId = "190007", + value = "karazanchandelier_02.m2", + text = "karazanchandelier_02.m2", + }, + { + fileId = "190008", + value = "karazanchandelier_03.m2", + text = "karazanchandelier_03.m2", + }, + { + fileId = "190009", + value = "karazanchandelier_03_broken.m2", + text = "karazanchandelier_03_broken.m2", + }, + }, + value = "chandeliers", + text = "chandeliers", + }, + { + children = { + { + fileId = "190012", + value = "karazahncrate01.m2", + text = "karazahncrate01.m2", + }, + { + fileId = "190013", + value = "karazahncrate02.m2", + text = "karazahncrate02.m2", + }, + }, + value = "crates", + text = "crates", + }, + { + children = { + { + fileId = "190015", + value = "kn_grainsack01.m2", + text = "kn_grainsack01.m2", + }, + { + fileId = "190016", + value = "kn_grainsack02.m2", + text = "kn_grainsack02.m2", + }, + { + fileId = "190017", + value = "kn_grainsack03.m2", + text = "kn_grainsack03.m2", + }, + { + fileId = "190018", + value = "kn_spilledsack01.m2", + text = "kn_spilledsack01.m2", + }, + }, + value = "grainsacks", + text = "grainsacks", + }, + { + children = { + { + fileId = "190019", + value = "karazahnweb01.m2", + text = "karazahnweb01.m2", + }, + { + fileId = "190020", + value = "karazahnweb02.m2", + text = "karazahnweb02.m2", + }, + { + fileId = "190021", + value = "karazahnweb03.m2", + text = "karazahnweb03.m2", + }, + }, + value = "karazahnwebs", + text = "karazahnwebs", + }, + { + children = { + { + fileId = "190022", + value = "karazahn_owlstatue.m2", + text = "karazahn_owlstatue.m2", + }, + }, + value = "owlstatue", + text = "owlstatue", + }, + { + children = { + { + fileId = "190024", + value = "karazahnpedestals01.m2", + text = "karazahnpedestals01.m2", + }, + { + fileId = "190025", + value = "karazahnpedestals02.m2", + text = "karazahnpedestals02.m2", + }, + }, + value = "pedestals", + text = "pedestals", + }, + { + children = { + { + fileId = "190026", + value = "karazahn_rubble_floating.m2", + text = "karazahn_rubble_floating.m2", + }, + { + fileId = "190027", + value = "karazahnrockrubble01.m2", + text = "karazahnrockrubble01.m2", + }, + { + fileId = "190028", + value = "karazahnrockrubble02.m2", + text = "karazahnrockrubble02.m2", + }, + }, + value = "rubble", + text = "rubble", + }, + { + children = { + { + fileId = "190030", + value = "karazahnsconce01.m2", + text = "karazahnsconce01.m2", + }, + { + fileId = "190031", + value = "karazahnsconce02.m2", + text = "karazahnsconce02.m2", + }, + { + fileId = "190032", + value = "karazahnsconce03.m2", + text = "karazahnsconce03.m2", + }, + { + fileId = "190033", + value = "karazahnsconce04.m2", + text = "karazahnsconce04.m2", + }, + { + fileId = "190034", + value = "karazahnsconce05.m2", + text = "karazahnsconce05.m2", + }, + { + fileId = "190035", + value = "karazahnsconce06.m2", + text = "karazahnsconce06.m2", + }, + { + fileId = "190036", + value = "karazahnsconce07.m2", + text = "karazahnsconce07.m2", + }, + }, + value = "sconces", + text = "sconces", + }, + { + children = { + { + fileId = "190039", + value = "karazahnstarlab.m2", + text = "karazahnstarlab.m2", + }, + }, + value = "starlab", + text = "starlab", + }, + { + children = { + { + fileId = "190041", + value = "karazahntablebig.m2", + text = "karazahntablebig.m2", + }, + { + fileId = "190043", + value = "karazahntablesmall.m2", + text = "karazahntablesmall.m2", + }, + }, + value = "tables", + text = "tables", + }, + { + children = { + { + fileId = "190044", + value = "karazantapestry01.m2", + text = "karazantapestry01.m2", + }, + { + fileId = "190045", + value = "karazantapestry02.m2", + text = "karazantapestry02.m2", + }, + }, + value = "tapestries", + text = "tapestries", + }, + { + children = { + { + fileId = "190056", + value = "karazahn_rj_balcony.m2", + text = "karazahn_rj_balcony.m2", + }, + { + fileId = "190057", + value = "karazahn_rj_moon.m2", + text = "karazahn_rj_moon.m2", + }, + { + fileId = "190058", + value = "karazahn_rj_stars.m2", + text = "karazahn_rj_stars.m2", + }, + { + fileId = "190059", + value = "karazahn_rrh_forest.m2", + text = "karazahn_rrh_forest.m2", + }, + { + fileId = "190060", + value = "karazahn_rrh_house.m2", + text = "karazahn_rrh_house.m2", + }, + { + fileId = "190061", + value = "karazahn_rrh_tree.m2", + text = "karazahn_rrh_tree.m2", + }, + { + fileId = "190062", + value = "karazahn_wo_hay.m2", + text = "karazahn_wo_hay.m2", + }, + { + fileId = "190063", + value = "karazan_wo_brickroad.m2", + text = "karazan_wo_brickroad.m2", + }, + }, + value = "theater", + text = "theater", + }, + { + children = { + { + fileId = "190064", + value = "karazahnthrone01.m2", + text = "karazahnthrone01.m2", + }, + }, + value = "throne", + text = "throne", + }, + { + children = { + { + fileId = "2198647", + value = "karazahndiningrays.m2", + text = "karazahndiningrays.m2", + }, + }, + value = "volumetriclights", + text = "volumetriclights", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "karazahn", + text = "karazahn", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190069", + value = "pvp_bridge_parts01.m2", + text = "pvp_bridge_parts01.m2", + }, + { + fileId = "190070", + value = "pvp_bridge_parts02.m2", + text = "pvp_bridge_parts02.m2", + }, + { + fileId = "190071", + value = "pvp_bridge_parts03.m2", + text = "pvp_bridge_parts03.m2", + }, + { + fileId = "190072", + value = "pvp_bridge_parts04.m2", + text = "pvp_bridge_parts04.m2", + }, + { + fileId = "190073", + value = "pvp_bridge_parts05.m2", + text = "pvp_bridge_parts05.m2", + }, + }, + value = "bridgeruins", + text = "bridgeruins", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "pvp", + text = "pvp", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190076", + value = "redridgebridgebrick01.m2", + text = "redridgebridgebrick01.m2", + }, + { + fileId = "190077", + value = "redridgebridgebrick02.m2", + text = "redridgebridgebrick02.m2", + }, + { + fileId = "190078", + value = "redridgebridgebrick03.m2", + text = "redridgebridgebrick03.m2", + }, + }, + value = "bricks", + text = "bricks", + }, + { + children = { + { + fileId = "190080", + value = "redridgebush01.m2", + text = "redridgebush01.m2", + }, + { + fileId = "190081", + value = "redridgebush02.m2", + text = "redridgebush02.m2", + }, + { + fileId = "190082", + value = "redridgebush03.m2", + text = "redridgebush03.m2", + }, + }, + value = "bush", + text = "bush", + }, + { + children = { + { + children = { + { + fileId = "190084", + value = "catailpatch01.m2", + text = "catailpatch01.m2", + }, + }, + value = "catailpatch", + text = "catailpatch", + }, + }, + value = "detail", + text = "detail", + }, + { + children = { + { + fileId = "190087", + value = "redridgedocksbeam01.m2", + text = "redridgedocksbeam01.m2", + }, + { + fileId = "190088", + value = "redridgedocksboardwalk01.m2", + text = "redridgedocksboardwalk01.m2", + }, + { + fileId = "190089", + value = "redridgedocksboardwalk02.m2", + text = "redridgedocksboardwalk02.m2", + }, + { + fileId = "190090", + value = "redridgedocksboardwalk03.m2", + text = "redridgedocksboardwalk03.m2", + }, + { + fileId = "190091", + value = "redridgedocksplank01.m2", + text = "redridgedocksplank01.m2", + }, + { + fileId = "190093", + value = "redridgedockspylon01.m2", + text = "redridgedockspylon01.m2", + }, + }, + value = "dockpieces", + text = "dockpieces", + }, + { + children = { + { + fileId = "190095", + value = "redridgedocks01.m2", + text = "redridgedocks01.m2", + }, + { + fileId = "190096", + value = "redridgedocks03.m2", + text = "redridgedocks03.m2", + }, + }, + value = "docks", + text = "docks", + }, + { + children = { + { + fileId = "190097", + value = "insectmound.m2", + text = "insectmound.m2", + }, + }, + value = "misc", + text = "misc", + }, + { + children = { + { + fileId = "190101", + value = "redridgerock01.m2", + text = "redridgerock01.m2", + }, + { + fileId = "190102", + value = "redridgerock02.m2", + text = "redridgerock02.m2", + }, + { + fileId = "190103", + value = "redridgerock03.m2", + text = "redridgerock03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "190104", + value = "rowboat01.m2", + text = "rowboat01.m2", + }, + }, + value = "rowboat", + text = "rowboat", + }, + { + children = { + { + fileId = "190106", + value = "battlegladewoodspikeslongrow.m2", + text = "battlegladewoodspikeslongrow.m2", + }, + { + fileId = "190107", + value = "battlegladewoodspikesshortrow.m2", + text = "battlegladewoodspikesshortrow.m2", + }, + }, + value = "spikewall", + text = "spikewall", + }, + { + children = { + { + fileId = "190108", + value = "redridgestump02.m2", + text = "redridgestump02.m2", + }, + }, + value = "stumps", + text = "stumps", + }, + { + children = { + { + fileId = "190114", + value = "redridgefallentree01.m2", + text = "redridgefallentree01.m2", + }, + { + fileId = "190115", + value = "redridgefallentree01moss.m2", + text = "redridgefallentree01moss.m2", + }, + { + fileId = "190116", + value = "redridgefallentree02.m2", + text = "redridgefallentree02.m2", + }, + { + fileId = "190117", + value = "redridgefallentree02moss.m2", + text = "redridgefallentree02moss.m2", + }, + { + fileId = "190118", + value = "redridgefallentree03.m2", + text = "redridgefallentree03.m2", + }, + { + fileId = "190119", + value = "redridgetree01.m2", + text = "redridgetree01.m2", + }, + { + fileId = "190120", + value = "redridgetree02.m2", + text = "redridgetree02.m2", + }, + { + fileId = "190121", + value = "redridgetreecanopy01.m2", + text = "redridgetreecanopy01.m2", + }, + { + fileId = "190122", + value = "redridgetreecanopy02.m2", + text = "redridgetreecanopy02.m2", + }, + { + fileId = "190123", + value = "redridgetreecanopy03.m2", + text = "redridgetreecanopy03.m2", + }, + { + fileId = "190124", + value = "redridgetreecanopy04.m2", + text = "redridgetreecanopy04.m2", + }, + { + fileId = "190126", + value = "redridgetreemid01.m2", + text = "redridgetreemid01.m2", + }, + { + fileId = "190128", + value = "redridgetreestump01.m2", + text = "redridgetreestump01.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "redridge", + text = "redridge", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190141", + value = "cage01.m2", + text = "cage01.m2", + }, + { + fileId = "190142", + value = "cage02.m2", + text = "cage02.m2", + }, + { + fileId = "190143", + value = "cage03.m2", + text = "cage03.m2", + }, + }, + value = "cages", + text = "cages", + }, + { + children = { + { + fileId = "190153", + value = "holdingpen.m2", + text = "holdingpen.m2", + }, + }, + value = "holdingpen", + text = "holdingpen", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "190160", + value = "crashzeppelin.m2", + text = "crashzeppelin.m2", + }, + }, + value = "crashzeppelin", + text = "crashzeppelin", + }, + { + children = { + { + fileId = "190165", + value = "oilrig.m2", + text = "oilrig.m2", + }, + }, + value = "oilrig", + text = "oilrig", + }, + { + children = { + { + fileId = "190169", + value = "runestonemoss_01.m2", + text = "runestonemoss_01.m2", + }, + }, + value = "runestonemoss_01", + text = "runestonemoss_01", + }, + { + children = { + { + fileId = "190175", + value = "trollwatchtower.m2", + text = "trollwatchtower.m2", + }, + }, + value = "trollwatchtower", + text = "trollwatchtower", + }, + }, + value = "buildings", + text = "buildings", + }, + { + children = { + { + children = { + { + fileId = "190178", + value = "aquaductstone_corner1.m2", + text = "aquaductstone_corner1.m2", + }, + { + fileId = "190179", + value = "aquaductstone_corner2.m2", + text = "aquaductstone_corner2.m2", + }, + { + fileId = "190180", + value = "aquaductstone_longpillar.m2", + text = "aquaductstone_longpillar.m2", + }, + { + fileId = "190181", + value = "aquaductstone_pillar1.m2", + text = "aquaductstone_pillar1.m2", + }, + { + fileId = "190182", + value = "aquaductstone_pillar2.m2", + text = "aquaductstone_pillar2.m2", + }, + { + fileId = "190183", + value = "aquaductstone_pillar3.m2", + text = "aquaductstone_pillar3.m2", + }, + { + fileId = "190184", + value = "aquaductstone_short.m2", + text = "aquaductstone_short.m2", + }, + { + fileId = "190185", + value = "aquaductstone_straight.m2", + text = "aquaductstone_straight.m2", + }, + { + fileId = "190186", + value = "aquaductstone_straight6.m2", + text = "aquaductstone_straight6.m2", + }, + }, + value = "aquaduct", + text = "aquaduct", + }, + { + children = { + { + fileId = "190192", + value = "jaguarstatue.m2", + text = "jaguarstatue.m2", + }, + { + fileId = "190193", + value = "ropebridge.m2", + text = "ropebridge.m2", + }, + { + fileId = "190194", + value = "stonebridgelong.m2", + text = "stonebridgelong.m2", + }, + { + fileId = "190195", + value = "stonebridgeshort.m2", + text = "stonebridgeshort.m2", + }, + { + fileId = "190196", + value = "stranglechasmbridge.m2", + text = "stranglechasmbridge.m2", + }, + }, + value = "bridge", + text = "bridge", + }, + { + children = { + { + fileId = "190202", + value = "crystallizedhuman01.m2", + text = "crystallizedhuman01.m2", + }, + { + fileId = "190203", + value = "crystallizedhuman02.m2", + text = "crystallizedhuman02.m2", + }, + { + fileId = "190204", + value = "crystallizedhuman03.m2", + text = "crystallizedhuman03.m2", + }, + { + fileId = "190205", + value = "crystallizedtroll01.m2", + text = "crystallizedtroll01.m2", + }, + { + fileId = "190206", + value = "crystallizedtroll02.m2", + text = "crystallizedtroll02.m2", + }, + { + fileId = "190207", + value = "crystallizedtroll03.m2", + text = "crystallizedtroll03.m2", + }, + }, + value = "crystalcreatures", + text = "crystalcreatures", + }, + { + children = { + { + fileId = "190223", + value = "strangleplant06.m2", + text = "strangleplant06.m2", + }, + { + fileId = "190224", + value = "strangleplant07.m2", + text = "strangleplant07.m2", + }, + { + fileId = "190225", + value = "strangleplant08.m2", + text = "strangleplant08.m2", + }, + { + fileId = "190226", + value = "strangleplant09.m2", + text = "strangleplant09.m2", + }, + { + fileId = "190227", + value = "strangleplant10.m2", + text = "strangleplant10.m2", + }, + { + fileId = "190228", + value = "stranglethornfern01.m2", + text = "stranglethornfern01.m2", + }, + { + fileId = "190229", + value = "stranglethornfern02.m2", + text = "stranglethornfern02.m2", + }, + { + fileId = "190230", + value = "stranglethornfern03.m2", + text = "stranglethornfern03.m2", + }, + { + fileId = "190231", + value = "stranglethornfern04.m2", + text = "stranglethornfern04.m2", + }, + { + fileId = "190232", + value = "stranglethornfern05.m2", + text = "stranglethornfern05.m2", + }, + { + fileId = "190233", + value = "stranglethornfern06.m2", + text = "stranglethornfern06.m2", + }, + { + fileId = "190235", + value = "stranglethornplant01.m2", + text = "stranglethornplant01.m2", + }, + { + fileId = "190237", + value = "stranglethornplant02.m2", + text = "stranglethornplant02.m2", + }, + { + fileId = "190238", + value = "stranglethornplant03.m2", + text = "stranglethornplant03.m2", + }, + { + fileId = "190239", + value = "stranglethornplant04.m2", + text = "stranglethornplant04.m2", + }, + { + fileId = "190241", + value = "stranglethornplant05.m2", + text = "stranglethornplant05.m2", + }, + }, + value = "detail", + text = "detail", + }, + { + children = { + { + fileId = "190246", + value = "diamondminewalllantern.m2", + text = "diamondminewalllantern.m2", + }, + }, + value = "diamondminewalllantern", + text = "diamondminewalllantern", + }, + { + children = { + { + fileId = "190252", + value = "gemminecar01.m2", + text = "gemminecar01.m2", + }, + }, + value = "gemminecar01", + text = "gemminecar01", + }, + { + children = { + { + fileId = "190256", + value = "gemminecar02.m2", + text = "gemminecar02.m2", + }, + }, + value = "gemminecar02", + text = "gemminecar02", + }, + { + children = { + { + fileId = "190260", + value = "holyspringwell.m2", + text = "holyspringwell.m2", + }, + }, + value = "holyspringwell", + text = "holyspringwell", + }, + { + children = { + { + fileId = "190262", + value = "overgrowth02.m2", + text = "overgrowth02.m2", + }, + }, + value = "overgrowth02", + text = "overgrowth02", + }, + { + children = { + { + fileId = "190263", + value = "bootybaypost.m2", + text = "bootybaypost.m2", + }, + }, + value = "post", + text = "post", + }, + { + children = { + { + fileId = "190264", + value = "stranglethorncliffrock01.m2", + text = "stranglethorncliffrock01.m2", + }, + { + fileId = "190266", + value = "stranglethorncliffrock02.m2", + text = "stranglethorncliffrock02.m2", + }, + { + fileId = "190267", + value = "stranglethorncliffrock03.m2", + text = "stranglethorncliffrock03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "190271", + value = "stranglethornruins01.m2", + text = "stranglethornruins01.m2", + }, + { + fileId = "190272", + value = "stranglethornruins02.m2", + text = "stranglethornruins02.m2", + }, + { + fileId = "190273", + value = "stranglethornruins03.m2", + text = "stranglethornruins03.m2", + }, + { + fileId = "190274", + value = "stranglethornruins04.m2", + text = "stranglethornruins04.m2", + }, + { + fileId = "190275", + value = "stranglethornruins05.m2", + text = "stranglethornruins05.m2", + }, + { + fileId = "190276", + value = "stranglethornruins06.m2", + text = "stranglethornruins06.m2", + }, + { + fileId = "190277", + value = "stranglethornruins07.m2", + text = "stranglethornruins07.m2", + }, + { + fileId = "190278", + value = "stranglethornruins08.m2", + text = "stranglethornruins08.m2", + }, + { + fileId = "190279", + value = "stranglethornruins09.m2", + text = "stranglethornruins09.m2", + }, + { + fileId = "190280", + value = "stranglethornruins10.m2", + text = "stranglethornruins10.m2", + }, + { + fileId = "190281", + value = "stranglethornruins11.m2", + text = "stranglethornruins11.m2", + }, + { + fileId = "190282", + value = "stranglethornruins12.m2", + text = "stranglethornruins12.m2", + }, + { + fileId = "190283", + value = "stranglethornruins13.m2", + text = "stranglethornruins13.m2", + }, + { + fileId = "190284", + value = "stranglethornruins14.m2", + text = "stranglethornruins14.m2", + }, + { + fileId = "190285", + value = "stranglethornruins15.m2", + text = "stranglethornruins15.m2", + }, + { + fileId = "190286", + value = "stranglethornruins16.m2", + text = "stranglethornruins16.m2", + }, + { + fileId = "190287", + value = "stranglethornruins17.m2", + text = "stranglethornruins17.m2", + }, + { + fileId = "190288", + value = "stranglethornruins18.m2", + text = "stranglethornruins18.m2", + }, + { + fileId = "190289", + value = "stranglethornruins19.m2", + text = "stranglethornruins19.m2", + }, + { + fileId = "190290", + value = "stranglethornruins20.m2", + text = "stranglethornruins20.m2", + }, + { + fileId = "190291", + value = "stranglethornruins21.m2", + text = "stranglethornruins21.m2", + }, + { + fileId = "190292", + value = "stranglethornruins_pylon.m2", + text = "stranglethornruins_pylon.m2", + }, + }, + value = "ruins", + text = "ruins", + }, + { + children = { + { + fileId = "190300", + value = "sack01_01.m2", + text = "sack01_01.m2", + }, + }, + value = "sack01_01", + text = "sack01_01", + }, + { + children = { + { + fileId = "190304", + value = "serpentstatue02.m2", + text = "serpentstatue02.m2", + }, + }, + value = "serpentstatue02", + text = "serpentstatue02", + }, + { + children = { + { + fileId = "190308", + value = "strangledeadtree01.m2", + text = "strangledeadtree01.m2", + }, + }, + value = "strangledeadtrees", + text = "strangledeadtrees", + }, + { + children = { + { + fileId = "190311", + value = "bootybaytree01.m2", + text = "bootybaytree01.m2", + }, + { + fileId = "190312", + value = "strangledeadtreenovine.m2", + text = "strangledeadtreenovine.m2", + }, + { + fileId = "190313", + value = "stranglethornroot01.m2", + text = "stranglethornroot01.m2", + }, + { + fileId = "190314", + value = "stranglethornroot02.m2", + text = "stranglethornroot02.m2", + }, + { + fileId = "190315", + value = "stranglethornroot03.m2", + text = "stranglethornroot03.m2", + }, + { + children = { + { + fileId = "190316", + value = "stranglethorntree01.m2", + text = "stranglethorntree01.m2", + }, + }, + value = "stranglethorntree01", + text = "stranglethorntree01", + }, + { + children = { + { + fileId = "190319", + value = "stranglethorntree02.m2", + text = "stranglethorntree02.m2", + }, + }, + value = "stranglethorntree02", + text = "stranglethorntree02", + }, + { + children = { + { + fileId = "190322", + value = "stranglethorntree04.m2", + text = "stranglethorntree04.m2", + }, + }, + value = "stranglethorntree04", + text = "stranglethorntree04", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "190331", + value = "trolldrumsoundobj.m2", + text = "trolldrumsoundobj.m2", + }, + { + fileId = "190332", + value = "trolldungeondrum03.m2", + text = "trolldungeondrum03.m2", + }, + { + fileId = "190333", + value = "trollruinsdrum01.m2", + text = "trollruinsdrum01.m2", + }, + }, + value = "trolldrum", + text = "trolldrum", + }, + { + children = { + { + fileId = "190335", + value = "trolldungeonbasinwall.m2", + text = "trolldungeonbasinwall.m2", + }, + }, + value = "trolldungeonbasin wall", + text = "trolldungeonbasin wall", + }, + { + children = { + { + fileId = "190337", + value = "trolldungeonfountain.m2", + text = "trolldungeonfountain.m2", + }, + }, + value = "trolldungeonfountain", + text = "trolldungeonfountain", + }, + { + children = { + { + fileId = "190341", + value = "trolldungeonpottery01.m2", + text = "trolldungeonpottery01.m2", + }, + { + fileId = "190342", + value = "trolldungeonpottery02.m2", + text = "trolldungeonpottery02.m2", + }, + { + fileId = "190343", + value = "trolldungeonpottery03.m2", + text = "trolldungeonpottery03.m2", + }, + }, + value = "trolldungeonpottery", + text = "trolldungeonpottery", + }, + { + children = { + { + fileId = "190345", + value = "trolldungeonring.m2", + text = "trolldungeonring.m2", + }, + }, + value = "trolldungeonring", + text = "trolldungeonring", + }, + { + fileId = "2198507", + value = "trolldungeonring.m2", + text = "trolldungeonring.m2", + }, + { + children = { + { + fileId = "190347", + value = "trolldungeonsacks.m2", + text = "trolldungeonsacks.m2", + }, + }, + value = "trolldungeonsacks", + text = "trolldungeonsacks", + }, + { + children = { + { + fileId = "190348", + value = "trolldungeonserpentstatue.m2", + text = "trolldungeonserpentstatue.m2", + }, + }, + value = "trolldungeonserpentstatue", + text = "trolldungeonserpentstatue", + }, + { + children = { + { + fileId = "190353", + value = "trollruinsgong03.m2", + text = "trollruinsgong03.m2", + }, + }, + value = "trollruinsgong", + text = "trollruinsgong", + }, + { + children = { + { + fileId = "190354", + value = "stranglethorntikihead.m2", + text = "stranglethorntikihead.m2", + }, + { + fileId = "190358", + value = "trollshrine.m2", + text = "trollshrine.m2", + }, + }, + value = "trollshrine", + text = "trollshrine", + }, + { + children = { + { + fileId = "190361", + value = "stranglethornwaterfall01.m2", + text = "stranglethornwaterfall01.m2", + }, + }, + value = "waterfall", + text = "waterfall", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "stranglethorn", + text = "stranglethorn", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190363", + value = "serpentaltar.m2", + text = "serpentaltar.m2", + }, + }, + value = "serpentaltar", + text = "serpentaltar", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "sunkentemple", + text = "sunkentemple", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190364", + value = "runestonecrud_01.m2", + text = "runestonecrud_01.m2", + }, + }, + value = "runestonecrud_01", + text = "runestonecrud_01", + }, + }, + value = "buildings", + text = "buildings", + }, + { + children = { + { + children = { + { + fileId = "190375", + value = "swampofsorrowlilypad01.m2", + text = "swampofsorrowlilypad01.m2", + }, + { + fileId = "190376", + value = "swampofsorrowlilypad02.m2", + text = "swampofsorrowlilypad02.m2", + }, + { + fileId = "190377", + value = "swampplant03.m2", + text = "swampplant03.m2", + }, + { + fileId = "190378", + value = "swampplant04.m2", + text = "swampplant04.m2", + }, + { + fileId = "190379", + value = "swampplant05.m2", + text = "swampplant05.m2", + }, + { + fileId = "190380", + value = "swampsorrowplant01.m2", + text = "swampsorrowplant01.m2", + }, + { + fileId = "190381", + value = "swampsorrowplant02.m2", + text = "swampsorrowplant02.m2", + }, + { + fileId = "190382", + value = "swampsorrowroot01.m2", + text = "swampsorrowroot01.m2", + }, + { + fileId = "190383", + value = "swampsorrowroot02.m2", + text = "swampsorrowroot02.m2", + }, + { + fileId = "190384", + value = "swampsorrowroot03.m2", + text = "swampsorrowroot03.m2", + }, + }, + value = "plants", + text = "plants", + }, + { + children = { + { + fileId = "190388", + value = "swampsorrowrock01.m2", + text = "swampsorrowrock01.m2", + }, + { + fileId = "190389", + value = "swampsorrowrock02.m2", + text = "swampsorrowrock02.m2", + }, + { + fileId = "190390", + value = "swampsorrowrock03.m2", + text = "swampsorrowrock03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "190393", + value = "swampbeastbone01.m2", + text = "swampbeastbone01.m2", + }, + }, + value = "swampbeastbones", + text = "swampbeastbones", + }, + { + children = { + { + fileId = "190398", + value = "swampboat01.m2", + text = "swampboat01.m2", + }, + }, + value = "swampboats", + text = "swampboats", + }, + { + children = { + { + fileId = "190400", + value = "swampskulls01.m2", + text = "swampskulls01.m2", + }, + { + fileId = "190401", + value = "swampskulls02.m2", + text = "swampskulls02.m2", + }, + }, + value = "swampskulls", + text = "swampskulls", + }, + { + children = { + { + fileId = "190404", + value = "swampsnakestatue01.m2", + text = "swampsnakestatue01.m2", + }, + }, + value = "swampsnakestatue", + text = "swampsnakestatue", + }, + { + children = { + { + fileId = "190405", + value = "swampwagon01.m2", + text = "swampwagon01.m2", + }, + }, + value = "swampwagon", + text = "swampwagon", + }, + { + children = { + { + fileId = "190408", + value = "losttreehuts01.m2", + text = "losttreehuts01.m2", + }, + { + fileId = "190409", + value = "losttreehuts02.m2", + text = "losttreehuts02.m2", + }, + { + fileId = "190410", + value = "losttreehuts03.m2", + text = "losttreehuts03.m2", + }, + }, + value = "treehuts", + text = "treehuts", + }, + { + children = { + { + fileId = "190411", + value = "swamptreelog01.m2", + text = "swamptreelog01.m2", + }, + { + fileId = "190412", + value = "swamptreelog02.m2", + text = "swamptreelog02.m2", + }, + { + fileId = "190413", + value = "swamptreelog03.m2", + text = "swamptreelog03.m2", + }, + { + fileId = "190414", + value = "swamptreelog04.m2", + text = "swamptreelog04.m2", + }, + }, + value = "treelogs", + text = "treelogs", + }, + { + children = { + { + fileId = "190418", + value = "swampsorrowcanopytree01.m2", + text = "swampsorrowcanopytree01.m2", + }, + { + fileId = "190419", + value = "swampsorrowcanopytree02.m2", + text = "swampsorrowcanopytree02.m2", + }, + { + fileId = "190420", + value = "swampsorrowcanopytree03.m2", + text = "swampsorrowcanopytree03.m2", + }, + { + fileId = "190421", + value = "swampsorrowcanopytree04.m2", + text = "swampsorrowcanopytree04.m2", + }, + { + fileId = "190422", + value = "swampsorrowcanopytree05.m2", + text = "swampsorrowcanopytree05.m2", + }, + { + fileId = "190423", + value = "swampsorrowcanopytree06.m2", + text = "swampsorrowcanopytree06.m2", + }, + { + fileId = "190424", + value = "swampsorrowtree01.m2", + text = "swampsorrowtree01.m2", + }, + { + fileId = "190425", + value = "swampsorrowtree02.m2", + text = "swampsorrowtree02.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "190428", + value = "swamphangingvines01.m2", + text = "swamphangingvines01.m2", + }, + { + fileId = "190429", + value = "swamphangingvines02.m2", + text = "swamphangingvines02.m2", + }, + }, + value = "vines", + text = "vines", + }, + { + children = { + { + fileId = "190430", + value = "waterhut01.m2", + text = "waterhut01.m2", + }, + { + fileId = "190431", + value = "waterhut02.m2", + text = "waterhut02.m2", + }, + }, + value = "waterhuts", + text = "waterhuts", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "swamposorrow", + text = "swamposorrow", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190434", + value = "blastedlandsblastedcow.m2", + text = "blastedlandsblastedcow.m2", + }, + { + fileId = "190435", + value = "blastedlandsblastedmule.m2", + text = "blastedlandsblastedmule.m2", + }, + { + fileId = "190436", + value = "blastedlandsbone01.m2", + text = "blastedlandsbone01.m2", + }, + { + fileId = "190437", + value = "blastedlandsbonepile02.m2", + text = "blastedlandsbonepile02.m2", + }, + { + fileId = "190438", + value = "blastedlandsbonepile03.m2", + text = "blastedlandsbonepile03.m2", + }, + { + fileId = "190439", + value = "blastedlandsskull01.m2", + text = "blastedlandsskull01.m2", + }, + { + fileId = "190440", + value = "blastedlandsskull02.m2", + text = "blastedlandsskull02.m2", + }, + { + fileId = "190441", + value = "blastedlandsspine01.m2", + text = "blastedlandsspine01.m2", + }, + }, + value = "bones", + text = "bones", + }, + { + children = { + { + fileId = "190444", + value = "blastedlandsbrokencolumn01.m2", + text = "blastedlandsbrokencolumn01.m2", + }, + { + fileId = "190445", + value = "blastedlandsbrokencolumn02.m2", + text = "blastedlandsbrokencolumn02.m2", + }, + }, + value = "column", + text = "column", + }, + { + children = { + { + fileId = "190447", + value = "blastedlandsrock01.m2", + text = "blastedlandsrock01.m2", + }, + }, + value = "detail", + text = "detail", + }, + { + children = { + { + fileId = "190450", + value = "blastedlandsportalrock01.m2", + text = "blastedlandsportalrock01.m2", + }, + { + fileId = "190451", + value = "blastedlandsportalrock02.m2", + text = "blastedlandsportalrock02.m2", + }, + { + fileId = "190452", + value = "blastedlandsportalrock03.m2", + text = "blastedlandsportalrock03.m2", + }, + { + fileId = "190453", + value = "blastedlandsrock02.m2", + text = "blastedlandsrock02.m2", + }, + { + fileId = "190454", + value = "blastedlandsrock03.m2", + text = "blastedlandsrock03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "190456", + value = "blastedlandsroot01.m2", + text = "blastedlandsroot01.m2", + }, + { + fileId = "190457", + value = "blastedlandsroot03.m2", + text = "blastedlandsroot03.m2", + }, + }, + value = "roots", + text = "roots", + }, + { + children = { + { + fileId = "190462", + value = "blastedlandsportalruins01.m2", + text = "blastedlandsportalruins01.m2", + }, + { + fileId = "190463", + value = "blastedlandsportalruins02.m2", + text = "blastedlandsportalruins02.m2", + }, + { + fileId = "190464", + value = "blastedlandsportalruins03.m2", + text = "blastedlandsportalruins03.m2", + }, + { + fileId = "190466", + value = "blastedlandsruins01.m2", + text = "blastedlandsruins01.m2", + }, + { + fileId = "190467", + value = "blastedlandsruins02.m2", + text = "blastedlandsruins02.m2", + }, + { + fileId = "190468", + value = "blastedlandsruins03.m2", + text = "blastedlandsruins03.m2", + }, + { + fileId = "190469", + value = "blastedlandsruinstusk.m2", + text = "blastedlandsruinstusk.m2", + }, + { + fileId = "190470", + value = "brokengatearch.m2", + text = "brokengatearch.m2", + }, + { + fileId = "190471", + value = "brokengatechain01.m2", + text = "brokengatechain01.m2", + }, + { + fileId = "190472", + value = "brokengatechain02.m2", + text = "brokengatechain02.m2", + }, + { + fileId = "190474", + value = "brokengateside01.m2", + text = "brokengateside01.m2", + }, + { + fileId = "190475", + value = "brokengateside02.m2", + text = "brokengateside02.m2", + }, + { + fileId = "190476", + value = "brokengatewall.m2", + text = "brokengatewall.m2", + }, + { + fileId = "190477", + value = "brokengatewood01.m2", + text = "brokengatewood01.m2", + }, + { + fileId = "190478", + value = "brokengatewood02.m2", + text = "brokengatewood02.m2", + }, + { + fileId = "190479", + value = "brokengatewood03.m2", + text = "brokengatewood03.m2", + }, + }, + value = "ruins", + text = "ruins", + }, + { + children = { + { + fileId = "190484", + value = "blastedlandsashtree02.m2", + text = "blastedlandsashtree02.m2", + }, + { + fileId = "190485", + value = "blastedlandsashtree03.m2", + text = "blastedlandsashtree03.m2", + }, + { + fileId = "190486", + value = "blastedlandsblastedtree01.m2", + text = "blastedlandsblastedtree01.m2", + }, + { + fileId = "190487", + value = "blastedlandsblastedtree03.m2", + text = "blastedlandsblastedtree03.m2", + }, + { + fileId = "190488", + value = "blastedlandsblastedtree04.m2", + text = "blastedlandsblastedtree04.m2", + }, + { + fileId = "190489", + value = "blastedlandstree01.m2", + text = "blastedlandstree01.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "theblastedlands", + text = "theblastedlands", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190505", + value = "westfallchurch.m2", + text = "westfallchurch.m2", + }, + }, + value = "church", + text = "church", + }, + { + children = { + { + fileId = "190508", + value = "westfallgrainsilo01.m2", + text = "westfallgrainsilo01.m2", + }, + }, + value = "grainsilo", + text = "grainsilo", + }, + { + children = { + { + fileId = "190515", + value = "westfalllighthouse.m2", + text = "westfalllighthouse.m2", + }, + }, + value = "lighthouse", + text = "lighthouse", + }, + { + children = { + { + fileId = "190517", + value = "westfallshed.m2", + text = "westfallshed.m2", + }, + }, + value = "shed", + text = "shed", + }, + { + children = { + { + fileId = "190519", + value = "westfallwindmill.m2", + text = "westfallwindmill.m2", + }, + }, + value = "windmill", + text = "windmill", + }, + }, + value = "buildings", + text = "buildings", + }, + { + children = { + { + children = { + { + fileId = "190520", + value = "aquaduct_corner1.m2", + text = "aquaduct_corner1.m2", + }, + { + fileId = "190521", + value = "aquaduct_corner2.m2", + text = "aquaduct_corner2.m2", + }, + { + fileId = "190522", + value = "aquaduct_longpillar.m2", + text = "aquaduct_longpillar.m2", + }, + { + fileId = "190523", + value = "aquaduct_pillar1.m2", + text = "aquaduct_pillar1.m2", + }, + { + fileId = "190524", + value = "aquaduct_pillar2.m2", + text = "aquaduct_pillar2.m2", + }, + { + fileId = "190525", + value = "aquaduct_pillar3.m2", + text = "aquaduct_pillar3.m2", + }, + { + fileId = "190526", + value = "aquaduct_short.m2", + text = "aquaduct_short.m2", + }, + { + fileId = "190527", + value = "aquaduct_straight.m2", + text = "aquaduct_straight.m2", + }, + { + fileId = "190528", + value = "aquaduct_straight6.m2", + text = "aquaduct_straight6.m2", + }, + { + fileId = "190529", + value = "aquaduct_xsupport.m2", + text = "aquaduct_xsupport.m2", + }, + }, + value = "aquaduct", + text = "aquaduct", + }, + { + children = { + { + fileId = "190535", + value = "westfallbarrel01.m2", + text = "westfallbarrel01.m2", + }, + }, + value = "barrel", + text = "barrel", + }, + { + children = { + { + fileId = "190536", + value = "brokencart.m2", + text = "brokencart.m2", + }, + }, + value = "brokencart", + text = "brokencart", + }, + { + children = { + { + fileId = "190537", + value = "butterchurner.m2", + text = "butterchurner.m2", + }, + }, + value = "butterchurner", + text = "butterchurner", + }, + { + children = { + { + fileId = "190541", + value = "hangingcage01.m2", + text = "hangingcage01.m2", + }, + { + fileId = "190542", + value = "hangingcage02.m2", + text = "hangingcage02.m2", + }, + }, + value = "cages", + text = "cages", + }, + { + children = { + { + fileId = "190543", + value = "westfallcrate.m2", + text = "westfallcrate.m2", + }, + }, + value = "crate", + text = "crate", + }, + { + children = { + { + fileId = "190545", + value = "deadcow.m2", + text = "deadcow.m2", + }, + }, + value = "deadcow", + text = "deadcow", + }, + { + children = { + { + fileId = "190546", + value = "deadmule.m2", + text = "deadmule.m2", + }, + }, + value = "deadmule", + text = "deadmule", + }, + { + children = { + { + fileId = "190548", + value = "deadseamonster.m2", + text = "deadseamonster.m2", + }, + { + fileId = "190549", + value = "seamonsterchunk.m2", + text = "seamonsterchunk.m2", + }, + }, + value = "deadseamonster", + text = "deadseamonster", + }, + { + children = { + { + fileId = "190564", + value = "westfallberrybush.m2", + text = "westfallberrybush.m2", + }, + { + fileId = "190566", + value = "westfallbush01.m2", + text = "westfallbush01.m2", + }, + { + fileId = "190567", + value = "westfallcabbage.m2", + text = "westfallcabbage.m2", + }, + { + fileId = "190568", + value = "westfallcatails.m2", + text = "westfallcatails.m2", + }, + { + fileId = "190571", + value = "westfallcornfield.m2", + text = "westfallcornfield.m2", + }, + { + fileId = "190572", + value = "westfallcotton.m2", + text = "westfallcotton.m2", + }, + { + fileId = "190573", + value = "westfalldandilion.m2", + text = "westfalldandilion.m2", + }, + { + fileId = "190574", + value = "westfalldriftwood.m2", + text = "westfalldriftwood.m2", + }, + { + fileId = "190576", + value = "westfallmandrake.m2", + text = "westfallmandrake.m2", + }, + { + fileId = "190577", + value = "westfallreeds01.m2", + text = "westfallreeds01.m2", + }, + { + fileId = "190578", + value = "westfalltobbaco.m2", + text = "westfalltobbaco.m2", + }, + { + fileId = "190579", + value = "westfallwheat01.m2", + text = "westfallwheat01.m2", + }, + { + fileId = "190580", + value = "westfallwheat02.m2", + text = "westfallwheat02.m2", + }, + { + fileId = "190581", + value = "westfallwheat03.m2", + text = "westfallwheat03.m2", + }, + }, + value = "detail", + text = "detail", + }, + { + children = { + { + fileId = "190586", + value = "westfallbed01.m2", + text = "westfallbed01.m2", + }, + }, + value = "furniture", + text = "furniture", + }, + { + children = { + { + fileId = "190587", + value = "grindstone.m2", + text = "grindstone.m2", + }, + }, + value = "grindstone", + text = "grindstone", + }, + { + children = { + { + fileId = "190592", + value = "harempillow01.m2", + text = "harempillow01.m2", + }, + }, + value = "harempillow01", + text = "harempillow01", + }, + { + children = { + { + fileId = "190595", + value = "harempillow02.m2", + text = "harempillow02.m2", + }, + }, + value = "harempillow02", + text = "harempillow02", + }, + { + children = { + { + fileId = "190596", + value = "harness.m2", + text = "harness.m2", + }, + }, + value = "harness", + text = "harness", + }, + { + children = { + { + fileId = "190597", + value = "westfallhaystack01.m2", + text = "westfallhaystack01.m2", + }, + { + fileId = "190598", + value = "westfallhaystack02.m2", + text = "westfallhaystack02.m2", + }, + }, + value = "haystack", + text = "haystack", + }, + { + children = { + { + fileId = "190599", + value = "westfallhaywagon.m2", + text = "westfallhaywagon.m2", + }, + }, + value = "haywagon", + text = "haywagon", + }, + { + children = { + { + fileId = "190608", + value = "lampdeadmines.m2", + text = "lampdeadmines.m2", + }, + }, + value = "lampdeadmines", + text = "lampdeadmines", + }, + { + children = { + { + fileId = "190612", + value = "westfalllamppost.m2", + text = "westfalllamppost.m2", + }, + { + fileId = "190613", + value = "westfalllamppost01.m2", + text = "westfalllamppost01.m2", + }, + { + fileId = "190614", + value = "westfalllamppost02.m2", + text = "westfalllamppost02.m2", + }, + }, + value = "lamppost", + text = "lamppost", + }, + { + children = { + { + fileId = "190615", + value = "lighthouseeffect.m2", + text = "lighthouseeffect.m2", + }, + }, + value = "lighthousebeam", + text = "lighthousebeam", + }, + { + children = { + { + fileId = "190617", + value = "outhouse.m2", + text = "outhouse.m2", + }, + }, + value = "outhouse", + text = "outhouse", + }, + { + children = { + { + fileId = "190619", + value = "plow.m2", + text = "plow.m2", + }, + }, + value = "plow", + text = "plow", + }, + { + children = { + { + fileId = "190620", + value = "rakecart.m2", + text = "rakecart.m2", + }, + }, + value = "rakecart", + text = "rakecart", + }, + { + children = { + { + fileId = "190623", + value = "westfallboulder01.m2", + text = "westfallboulder01.m2", + }, + { + fileId = "190624", + value = "westfallboulder02.m2", + text = "westfallboulder02.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "190626", + value = "rugrack01.m2", + text = "rugrack01.m2", + }, + { + fileId = "190627", + value = "rugrack02.m2", + text = "rugrack02.m2", + }, + }, + value = "rugracks", + text = "rugracks", + }, + { + children = { + { + fileId = "190629", + value = "westfallscarecrow.m2", + text = "westfallscarecrow.m2", + }, + }, + value = "scarecrow", + text = "scarecrow", + }, + { + children = { + { + fileId = "190632", + value = "sunkenanchor.m2", + text = "sunkenanchor.m2", + }, + }, + value = "sunkenanchor", + text = "sunkenanchor", + }, + { + children = { + { + fileId = "190633", + value = "tombstone01.m2", + text = "tombstone01.m2", + }, + { + fileId = "190634", + value = "tombstone02.m2", + text = "tombstone02.m2", + }, + { + fileId = "190635", + value = "tombstone03.m2", + text = "tombstone03.m2", + }, + { + fileId = "190636", + value = "tombstone04.m2", + text = "tombstone04.m2", + }, + }, + value = "tombstones", + text = "tombstones", + }, + { + children = { + { + fileId = "190638", + value = "westfalltree01.m2", + text = "westfalltree01.m2", + }, + { + fileId = "190639", + value = "westfalltree02.m2", + text = "westfalltree02.m2", + }, + { + fileId = "190640", + value = "westfalltree03.m2", + text = "westfalltree03.m2", + }, + { + fileId = "190641", + value = "westfalltree04.m2", + text = "westfalltree04.m2", + }, + { + fileId = "190642", + value = "westfalltreecanopy01.m2", + text = "westfalltreecanopy01.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "190647", + value = "westfalltreestump01.m2", + text = "westfalltreestump01.m2", + }, + { + fileId = "190648", + value = "westfalltreestump02.m2", + text = "westfalltreestump02.m2", + }, + }, + value = "treestumps", + text = "treestumps", + }, + { + children = { + { + fileId = "190650", + value = "bowl.m2", + text = "bowl.m2", + }, + { + fileId = "190653", + value = "plate.m2", + text = "plate.m2", + }, + { + fileId = "190654", + value = "stein.m2", + text = "stein.m2", + }, + }, + value = "utensils", + text = "utensils", + }, + { + children = { + { + fileId = "190655", + value = "westfallstable01.m2", + text = "westfallstable01.m2", + }, + }, + value = "westfall stable", + text = "westfall stable", + }, + { + children = { + { + fileId = "190657", + value = "westfallwagon01.m2", + text = "westfallwagon01.m2", + }, + }, + value = "westfall wagon", + text = "westfall wagon", + }, + { + children = { + { + fileId = "190658", + value = "westfallchair.m2", + text = "westfallchair.m2", + }, + }, + value = "westfallchair", + text = "westfallchair", + }, + { + children = { + { + fileId = "190659", + value = "westfallfence.m2", + text = "westfallfence.m2", + }, + { + fileId = "190660", + value = "westfallfenceend.m2", + text = "westfallfenceend.m2", + }, + { + fileId = "190661", + value = "westfallfencepost.m2", + text = "westfallfencepost.m2", + }, + }, + value = "westfallfence", + text = "westfallfence", + }, + { + children = { + { + fileId = "190662", + value = "westfallfountain.m2", + text = "westfallfountain.m2", + }, + }, + value = "westfallfountain", + text = "westfallfountain", + }, + { + children = { + { + fileId = "190666", + value = "westfallruins01.m2", + text = "westfallruins01.m2", + }, + { + fileId = "190667", + value = "westfallruins02.m2", + text = "westfallruins02.m2", + }, + { + fileId = "190668", + value = "westfallruins03.m2", + text = "westfallruins03.m2", + }, + { + fileId = "190669", + value = "westfallruins04.m2", + text = "westfallruins04.m2", + }, + }, + value = "westfallruins", + text = "westfallruins", + }, + { + children = { + { + fileId = "190671", + value = "westfallskeleton.m2", + text = "westfallskeleton.m2", + }, + }, + value = "westfallskeleton", + text = "westfallskeleton", + }, + { + children = { + { + fileId = "190673", + value = "westfalltable.m2", + text = "westfalltable.m2", + }, + }, + value = "westfalltable", + text = "westfalltable", + }, + { + children = { + { + fileId = "190675", + value = "westfallvineyard01.m2", + text = "westfallvineyard01.m2", + }, + }, + value = "westfallvineyards", + text = "westfallvineyards", + }, + { + children = { + { + fileId = "190677", + value = "wreckedrowboat.m2", + text = "wreckedrowboat.m2", + }, + }, + value = "wreckedrowboat", + text = "wreckedrowboat", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "westfall", + text = "westfall", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190678", + value = "collisionwallpendoor01.m2", + text = "collisionwallpendoor01.m2", + }, + { + fileId = "190680", + value = "zulgurubforcefield.m2", + text = "zulgurubforcefield.m2", + }, + { + fileId = "190681", + value = "zulgurubpendoor.m2", + text = "zulgurubpendoor.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "190683", + value = "zulgurubmaindoor.m2", + text = "zulgurubmaindoor.m2", + }, + }, + value = "maindoor", + text = "maindoor", + }, + { + children = { + { + fileId = "190685", + value = "nastyspideregg.m2", + text = "nastyspideregg.m2", + }, + }, + value = "spiderarea", + text = "spiderarea", + }, + { + children = { + { + fileId = "190688", + value = "voodoopile01.m2", + text = "voodoopile01.m2", + }, + }, + value = "voodoopile", + text = "voodoopile", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "190690", + value = "trollbattotem.m2", + text = "trollbattotem.m2", + }, + }, + value = "battotem", + text = "battotem", + }, + { + children = { + { + fileId = "190693", + value = "heartofhakkar.m2", + text = "heartofhakkar.m2", + }, + }, + value = "heart", + text = "heart", + }, + { + children = { + { + fileId = "190694", + value = "zulgurublightningmadness.m2", + text = "zulgurublightningmadness.m2", + }, + }, + value = "lightning", + text = "lightning", + }, + { + children = { + { + fileId = "190695", + value = "zulgurubruins04.m2", + text = "zulgurubruins04.m2", + }, + { + fileId = "190696", + value = "zulgurubruins05.m2", + text = "zulgurubruins05.m2", + }, + { + fileId = "190697", + value = "zulgurubruins06.m2", + text = "zulgurubruins06.m2", + }, + { + fileId = "190698", + value = "zulgurubruins07.m2", + text = "zulgurubruins07.m2", + }, + }, + value = "ruins", + text = "ruins", + }, + { + children = { + { + fileId = "190699", + value = "nastyspiderweb01.m2", + text = "nastyspiderweb01.m2", + }, + { + fileId = "190700", + value = "nastyspiderweb02.m2", + text = "nastyspiderweb02.m2", + }, + { + fileId = "190701", + value = "nastyspiderweb03.m2", + text = "nastyspiderweb03.m2", + }, + { + fileId = "190706", + value = "spiderpod01.m2", + text = "spiderpod01.m2", + }, + { + fileId = "190707", + value = "spiderpod02.m2", + text = "spiderpod02.m2", + }, + }, + value = "spiderarea", + text = "spiderarea", + }, + { + children = { + { + fileId = "190711", + value = "zulgurubtree01.m2", + text = "zulgurubtree01.m2", + }, + { + fileId = "190712", + value = "zulgurubtree02.m2", + text = "zulgurubtree02.m2", + }, + { + fileId = "190713", + value = "zulgurubtree03.m2", + text = "zulgurubtree03.m2", + }, + { + fileId = "190714", + value = "zulgurubtree04.m2", + text = "zulgurubtree04.m2", + }, + { + fileId = "190715", + value = "zulgurubtree05.m2", + text = "zulgurubtree05.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "zulgurub", + text = "zulgurub", + }, + }, + value = "azeroth", + text = "azeroth", + }, + { + children = { + { + children = { + { + fileId = "190716", + value = "bat01.m2", + text = "bat01.m2", + }, + { + fileId = "190717", + value = "bat02.m2", + text = "bat02.m2", + }, + }, + value = "bats", + text = "bats", + }, + { + children = { + { + fileId = "190719", + value = "bird01.m2", + text = "bird01.m2", + }, + { + fileId = "190720", + value = "bird02.m2", + text = "bird02.m2", + }, + { + fileId = "190723", + value = "wasp01.m2", + text = "wasp01.m2", + }, + { + fileId = "190724", + value = "wasp02.m2", + text = "wasp02.m2", + }, + }, + value = "birds", + text = "birds", + }, + { + children = { + { + fileId = "190725", + value = "butterflyorange01.m2", + text = "butterflyorange01.m2", + }, + { + fileId = "190726", + value = "butterflypurple01.m2", + text = "butterflypurple01.m2", + }, + { + fileId = "190727", + value = "butterflywhite01.m2", + text = "butterflywhite01.m2", + }, + }, + value = "butterflies", + text = "butterflies", + }, + { + children = { + { + fileId = "190731", + value = "fireflies01.m2", + text = "fireflies01.m2", + }, + }, + value = "fireflies", + text = "fireflies", + }, + { + children = { + { + fileId = "190733", + value = "fish01.m2", + text = "fish01.m2", + }, + }, + value = "fish", + text = "fish", + }, + { + children = { + { + fileId = "190739", + value = "flies01.m2", + text = "flies01.m2", + }, + }, + value = "flies", + text = "flies", + }, + }, + value = "critter", + text = "critter", + }, + { + children = { + { + fileId = "2198651", + value = "drkbus01.m2", + text = "drkbus01.m2", + }, + { + fileId = "2198569", + value = "drkbus02.m2", + text = "drkbus02.m2", + }, + { + fileId = "2198633", + value = "drkbus03.m2", + text = "drkbus03.m2", + }, + { + fileId = "2198552", + value = "drkbus04.m2", + text = "drkbus04.m2", + }, + { + fileId = "2198589", + value = "drkbus05.m2", + text = "drkbus05.m2", + }, + { + fileId = "2198528", + value = "drkbus06.m2", + text = "drkbus06.m2", + }, + { + fileId = "2199417", + value = "drkbus07.m2", + text = "drkbus07.m2", + }, + { + fileId = "2198572", + value = "drkgra01.m2", + text = "drkgra01.m2", + }, + { + fileId = "2198494", + value = "drkgra02.m2", + text = "drkgra02.m2", + }, + { + fileId = "2198594", + value = "drkgra03.m2", + text = "drkgra03.m2", + }, + { + fileId = "2198627", + value = "drkgra04.m2", + text = "drkgra04.m2", + }, + { + fileId = "2198545", + value = "drkgra05.m2", + text = "drkgra05.m2", + }, + { + fileId = "2198584", + value = "drkgra06.m2", + text = "drkgra06.m2", + }, + }, + value = "detail", + text = "detail", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190755", + value = "emeralddreamcatcher01.m2", + text = "emeralddreamcatcher01.m2", + }, + { + fileId = "190756", + value = "emeralddreamcatcher02.m2", + text = "emeralddreamcatcher02.m2", + }, + { + fileId = "190757", + value = "emeralddreamcatcher03.m2", + text = "emeralddreamcatcher03.m2", + }, + { + fileId = "190758", + value = "emeralddreamcatcher04.m2", + text = "emeralddreamcatcher04.m2", + }, + }, + value = "dreamcatchers", + text = "dreamcatchers", + }, + { + children = { + { + fileId = "190760", + value = "emeralddreamgiant01.m2", + text = "emeralddreamgiant01.m2", + }, + }, + value = "emeralddreamgiant", + text = "emeralddreamgiant", + }, + { + children = { + { + fileId = "190763", + value = "dnrdreambellflower01.m2", + text = "dnrdreambellflower01.m2", + }, + { + fileId = "190764", + value = "dnrdreambellflower02.m2", + text = "dnrdreambellflower02.m2", + }, + { + fileId = "190765", + value = "dnrdreambellflower03.m2", + text = "dnrdreambellflower03.m2", + }, + { + fileId = "190766", + value = "dnrdreamdrippingflower01.m2", + text = "dnrdreamdrippingflower01.m2", + }, + { + fileId = "190767", + value = "dnrdreamdrippingflower02.m2", + text = "dnrdreamdrippingflower02.m2", + }, + { + fileId = "190768", + value = "dnrdreamdroopingflower01.m2", + text = "dnrdreamdroopingflower01.m2", + }, + { + fileId = "190769", + value = "dnrdreamdroopingflower02.m2", + text = "dnrdreamdroopingflower02.m2", + }, + { + fileId = "190770", + value = "dnrdreamorangeflower01.m2", + text = "dnrdreamorangeflower01.m2", + }, + { + fileId = "190771", + value = "dnrdreamorangeflower02.m2", + text = "dnrdreamorangeflower02.m2", + }, + { + fileId = "190772", + value = "dnrdreampurpleflower01.m2", + text = "dnrdreampurpleflower01.m2", + }, + { + fileId = "190773", + value = "dnrdreampurpleflower02.m2", + text = "dnrdreampurpleflower02.m2", + }, + { + fileId = "190774", + value = "dnrdreampurpleflower03.m2", + text = "dnrdreampurpleflower03.m2", + }, + { + fileId = "190775", + value = "dnrdreamspinningflower01.m2", + text = "dnrdreamspinningflower01.m2", + }, + }, + value = "flowers", + text = "flowers", + }, + { + children = { + { + fileId = "190793", + value = "emeralddreamfountaintree01.m2", + text = "emeralddreamfountaintree01.m2", + }, + { + fileId = "190794", + value = "emeralddreamfountaintree02.m2", + text = "emeralddreamfountaintree02.m2", + }, + { + fileId = "190795", + value = "emeralddreamfountaintree03.m2", + text = "emeralddreamfountaintree03.m2", + }, + { + fileId = "190796", + value = "emeralddreamfountaintree04.m2", + text = "emeralddreamfountaintree04.m2", + }, + { + fileId = "190797", + value = "emeralddreamfountaintree05.m2", + text = "emeralddreamfountaintree05.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "dreaming", + text = "dreaming", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "190803", + value = "basiliskcrystal02.m2", + text = "basiliskcrystal02.m2", + }, + { + fileId = "190804", + value = "caveminecrystalformation01.m2", + text = "caveminecrystalformation01.m2", + }, + { + fileId = "190805", + value = "caveminecrystalformation02.m2", + text = "caveminecrystalformation02.m2", + }, + { + fileId = "190806", + value = "caveminecrystalformation03.m2", + text = "caveminecrystalformation03.m2", + }, + { + fileId = "190807", + value = "caveminecrystalformation04.m2", + text = "caveminecrystalformation04.m2", + }, + { + fileId = "190808", + value = "caveminecrystalformation05.m2", + text = "caveminecrystalformation05.m2", + }, + { + fileId = "190809", + value = "caveminecrystalformation06.m2", + text = "caveminecrystalformation06.m2", + }, + { + fileId = "190810", + value = "caveminecrystalformation07.m2", + text = "caveminecrystalformation07.m2", + }, + { + fileId = "190811", + value = "caveminecrystalformation08.m2", + text = "caveminecrystalformation08.m2", + }, + }, + value = "crystals", + text = "crystals", + }, + { + children = { + { + fileId = "190813", + value = "caveicicle1.m2", + text = "caveicicle1.m2", + }, + { + fileId = "190814", + value = "caveicicle2.m2", + text = "caveicicle2.m2", + }, + }, + value = "icicles", + text = "icicles", + }, + { + children = { + { + fileId = "190815", + value = "stalagmite01.m2", + text = "stalagmite01.m2", + }, + }, + value = "stalagmite", + text = "stalagmite", + }, + { + children = { + { + fileId = "190816", + value = "deadminesstalagtite01.m2", + text = "deadminesstalagtite01.m2", + }, + { + fileId = "190817", + value = "deadminesstalagtite02.m2", + text = "deadminesstalagtite02.m2", + }, + { + fileId = "190819", + value = "stalagtite01.m2", + text = "stalagtite01.m2", + }, + { + fileId = "190820", + value = "stalagtite02.m2", + text = "stalagtite02.m2", + }, + }, + value = "stalagtite", + text = "stalagtite", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "cave", + text = "cave", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190822", + value = "caverndoor.m2", + text = "caverndoor.m2", + }, + }, + value = "cavernsoftimedoor", + text = "cavernsoftimedoor", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "190823", + value = "cot_portalparticles.m2", + text = "cot_portalparticles.m2", + }, + { + fileId = "190824", + value = "cot_standingstone01.m2", + text = "cot_standingstone01.m2", + }, + { + fileId = "190825", + value = "cot_standingstone02.m2", + text = "cot_standingstone02.m2", + }, + }, + value = "darkportal", + text = "darkportal", + }, + { + children = { + { + fileId = "190828", + value = "energytrail01.m2", + text = "energytrail01.m2", + }, + { + fileId = "190829", + value = "energytrail01b.m2", + text = "energytrail01b.m2", + }, + { + fileId = "190830", + value = "energytrail01c.m2", + text = "energytrail01c.m2", + }, + { + fileId = "190831", + value = "energytrail02.m2", + text = "energytrail02.m2", + }, + { + fileId = "190832", + value = "energytrail02b.m2", + text = "energytrail02b.m2", + }, + { + fileId = "190833", + value = "energytrail03.m2", + text = "energytrail03.m2", + }, + { + fileId = "190834", + value = "energytrail03b.m2", + text = "energytrail03b.m2", + }, + { + fileId = "190835", + value = "energytrail04.m2", + text = "energytrail04.m2", + }, + { + fileId = "190836", + value = "energytrail04b.m2", + text = "energytrail04b.m2", + }, + { + fileId = "190837", + value = "energytrail05.m2", + text = "energytrail05.m2", + }, + { + fileId = "190838", + value = "energytrail05b.m2", + text = "energytrail05b.m2", + }, + { + fileId = "190839", + value = "energytrail05c.m2", + text = "energytrail05c.m2", + }, + { + fileId = "190840", + value = "energytrailhourglass.m2", + text = "energytrailhourglass.m2", + }, + { + fileId = "190841", + value = "energytrailhourglassb.m2", + text = "energytrailhourglassb.m2", + }, + { + fileId = "190842", + value = "energytrailhourglassblue.m2", + text = "energytrailhourglassblue.m2", + }, + { + fileId = "190843", + value = "energytrailhourglasspink.m2", + text = "energytrailhourglasspink.m2", + }, + { + fileId = "190844", + value = "energytrailhourglassred.m2", + text = "energytrailhourglassred.m2", + }, + }, + value = "energytrails", + text = "energytrails", + }, + { + children = { + { + fileId = "190849", + value = "cot_hourglass.m2", + text = "cot_hourglass.m2", + }, + { + fileId = "190850", + value = "cot_hourglass_redo.m2", + text = "cot_hourglass_redo.m2", + }, + }, + value = "hourglass", + text = "hourglass", + }, + { + children = { + { + fileId = "190858", + value = "cot_portal01.m2", + text = "cot_portal01.m2", + }, + { + fileId = "190859", + value = "cot_portalfx.m2", + text = "cot_portalfx.m2", + }, + }, + value = "portal", + text = "portal", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "cavernsoftime", + text = "cavernsoftime", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190869", + value = "caveminelantern01.m2", + text = "caveminelantern01.m2", + }, + { + fileId = "190870", + value = "caveminelantern02.m2", + text = "caveminelantern02.m2", + }, + { + fileId = "190871", + value = "caveminelantern03.m2", + text = "caveminelantern03.m2", + }, + }, + value = "cavelanterns", + text = "cavelanterns", + }, + { + children = { + { + fileId = "190872", + value = "caveminekobold01.m2", + text = "caveminekobold01.m2", + }, + { + fileId = "190873", + value = "caveminekobold02.m2", + text = "caveminekobold02.m2", + }, + { + fileId = "190874", + value = "caveminekobold04.m2", + text = "caveminekobold04.m2", + }, + { + fileId = "190875", + value = "caveminekobold05.m2", + text = "caveminekobold05.m2", + }, + { + fileId = "190876", + value = "caveminekobold06.m2", + text = "caveminekobold06.m2", + }, + }, + value = "caveminekobolds", + text = "caveminekobolds", + }, + { + children = { + { + fileId = "190880", + value = "caveminespiderpillar01.m2", + text = "caveminespiderpillar01.m2", + }, + }, + value = "caveminespiderpillar01", + text = "caveminespiderpillar01", + }, + { + children = { + { + fileId = "190882", + value = "cavespiderweb01.m2", + text = "cavespiderweb01.m2", + }, + { + fileId = "190883", + value = "cavespiderweb02.m2", + text = "cavespiderweb02.m2", + }, + }, + value = "cavespiderwebs", + text = "cavespiderwebs", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "goldmine", + text = "goldmine", + }, + { + children = { + { + children = { + { + fileId = "190885", + value = "innbarrel.m2", + text = "innbarrel.m2", + }, + }, + value = "innbarrel", + text = "innbarrel", + }, + { + children = { + { + fileId = "190886", + value = "innbed.m2", + text = "innbed.m2", + }, + }, + value = "innbed", + text = "innbed", + }, + { + children = { + { + fileId = "190887", + value = "innbedcanopy.m2", + text = "innbedcanopy.m2", + }, + }, + value = "innbedcanopy", + text = "innbedcanopy", + }, + { + children = { + { + fileId = "190890", + value = "innchandelier.m2", + text = "innchandelier.m2", + }, + }, + value = "innchandelier", + text = "innchandelier", + }, + { + children = { + { + fileId = "190893", + value = "innlantern.m2", + text = "innlantern.m2", + }, + }, + value = "innlantern", + text = "innlantern", + }, + { + children = { + { + fileId = "190895", + value = "innpillow.m2", + text = "innpillow.m2", + }, + }, + value = "innpillow", + text = "innpillow", + }, + }, + value = "goldshireinn", + text = "goldshireinn", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "190898", + value = "fishfountain.m2", + text = "fishfountain.m2", + }, + { + fileId = "190900", + value = "monasteryfalls.m2", + text = "monasteryfalls.m2", + }, + }, + value = "fountains", + text = "fountains", + }, + { + children = { + { + fileId = "190914", + value = "statuedmmountainking.m2", + text = "statuedmmountainking.m2", + }, + { + fileId = "190915", + value = "statuefountain.m2", + text = "statuefountain.m2", + }, + { + fileId = "190916", + value = "statuehefranger.m2", + text = "statuehefranger.m2", + }, + { + fileId = "190917", + value = "statuehemmage.m2", + text = "statuehemmage.m2", + }, + { + fileId = "190918", + value = "statuehfspear.m2", + text = "statuehfspear.m2", + }, + { + fileId = "190919", + value = "statuehfsunshield.m2", + text = "statuehfsunshield.m2", + }, + { + fileId = "190920", + value = "statuehfsunshieldclean.m2", + text = "statuehfsunshieldclean.m2", + }, + { + fileId = "190921", + value = "statuehftwinblades.m2", + text = "statuehftwinblades.m2", + }, + { + fileId = "190922", + value = "statuehmcaptain.m2", + text = "statuehmcaptain.m2", + }, + { + fileId = "190923", + value = "statuehmcaptainclean.m2", + text = "statuehmcaptainclean.m2", + }, + { + fileId = "190924", + value = "statuehmcrusader.m2", + text = "statuehmcrusader.m2", + }, + { + fileId = "190925", + value = "statuehmcrusaderclean.m2", + text = "statuehmcrusaderclean.m2", + }, + { + fileId = "190926", + value = "statuehmcrusadersoldier.m2", + text = "statuehmcrusadersoldier.m2", + }, + { + fileId = "190927", + value = "statuehmonearm.m2", + text = "statuehmonearm.m2", + }, + { + fileId = "190928", + value = "statuehmpaladin.m2", + text = "statuehmpaladin.m2", + }, + { + fileId = "190929", + value = "statuehmpriest.m2", + text = "statuehmpriest.m2", + }, + }, + value = "statues", + text = "statues", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "scarletmonastery", + text = "scarletmonastery", + }, + { + children = { + { + fileId = "190933", + value = "sunwell_bushes.m2", + text = "sunwell_bushes.m2", + }, + { + fileId = "190934", + value = "sunwell_lamps.m2", + text = "sunwell_lamps.m2", + }, + { + fileId = "190935", + value = "sunwell_trees.m2", + text = "sunwell_trees.m2", + }, + }, + value = "sunwell", + text = "sunwell", + }, + }, + value = "dungeon", + text = "dungeon", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "190963", + value = "hive_fireflies_01.m2", + text = "hive_fireflies_01.m2", + }, + { + fileId = "190964", + value = "hive_fireflies_large.m2", + text = "hive_fireflies_large.m2", + }, + }, + value = "fireflies", + text = "fireflies", + }, + { + children = { + { + fileId = "190967", + value = "hive_lightshaft01.m2", + text = "hive_lightshaft01.m2", + }, + { + fileId = "190968", + value = "hive_lightshaft02.m2", + text = "hive_lightshaft02.m2", + }, + }, + value = "lightshaft", + text = "lightshaft", + }, + { + children = { + { + fileId = "190970", + value = "hive_sand.m2", + text = "hive_sand.m2", + }, + { + fileId = "190971", + value = "hive_sandwaterfall.m2", + text = "hive_sandwaterfall.m2", + }, + }, + value = "sandwaterfall", + text = "sandwaterfall", + }, + { + children = { + { + fileId = "190974", + value = "hivesteam.m2", + text = "hivesteam.m2", + }, + }, + value = "steam", + text = "steam", + }, + }, + value = "anquiraj", + text = "anquiraj", + }, + { + children = { + { + fileId = "191009", + value = "animaltrainer.m2", + text = "animaltrainer.m2", + }, + { + fileId = "191016", + value = "carni_cannon.m2", + text = "carni_cannon.m2", + }, + { + fileId = "191018", + value = "carni_cannontarget.m2", + text = "carni_cannontarget.m2", + }, + { + fileId = "191019", + value = "carni_wagon01.m2", + text = "carni_wagon01.m2", + }, + { + fileId = "191020", + value = "carni_wagon_empty01.m2", + text = "carni_wagon_empty01.m2", + }, + { + fileId = "191021", + value = "carnie_merchant01.m2", + text = "carnie_merchant01.m2", + }, + { + fileId = "191022", + value = "carnietent_small01.m2", + text = "carnietent_small01.m2", + }, + { + fileId = "191023", + value = "carnival_banner01.m2", + text = "carnival_banner01.m2", + }, + { + fileId = "191024", + value = "carnival_banner02.m2", + text = "carnival_banner02.m2", + }, + { + fileId = "191025", + value = "carnivalrailing.m2", + text = "carnivalrailing.m2", + }, + { + fileId = "191026", + value = "coketent.m2", + text = "coketent.m2", + }, + { + fileId = "191029", + value = "darkmoonfaireposter.m2", + text = "darkmoonfaireposter.m2", + }, + { + fileId = "191031", + value = "foodvendor.m2", + text = "foodvendor.m2", + }, + { + fileId = "191032", + value = "fortuneteller.m2", + text = "fortuneteller.m2", + }, + { + fileId = "191033", + value = "haybail01.m2", + text = "haybail01.m2", + }, + { + fileId = "191034", + value = "haybail02.m2", + text = "haybail02.m2", + }, + { + fileId = "191037", + value = "shoutbox.m2", + text = "shoutbox.m2", + }, + { + fileId = "191038", + value = "souvenireshop.m2", + text = "souvenireshop.m2", + }, + { + fileId = "191039", + value = "targetpractice.m2", + text = "targetpractice.m2", + }, + { + fileId = "191040", + value = "ticketmaster.m2", + text = "ticketmaster.m2", + }, + }, + value = "carnival", + text = "carnival", + }, + { + children = { + { + children = { + { + fileId = "2198606", + value = "centaur_arch01.m2", + text = "centaur_arch01.m2", + }, + { + fileId = "2198556", + value = "centaur_brokearch01.m2", + text = "centaur_brokearch01.m2", + }, + { + fileId = "2198540", + value = "centaur_brokearch02.m2", + text = "centaur_brokearch02.m2", + }, + { + fileId = "2198616", + value = "centaur_brokepillar01.m2", + text = "centaur_brokepillar01.m2", + }, + { + fileId = "2198523", + value = "centaur_pillar01.m2", + text = "centaur_pillar01.m2", + }, + { + fileId = "2198845", + value = "centaur_wall01.m2", + text = "centaur_wall01.m2", + }, + { + fileId = "2198518", + value = "centaur_wall_ruin01.m2", + text = "centaur_wall_ruin01.m2", + }, + }, + value = "centaurruins", + text = "centaurruins", + }, + }, + value = "desolace", + text = "desolace", + }, + { + children = { + { + children = { + { + fileId = "191084", + value = "altartidalmastery01.m2", + text = "altartidalmastery01.m2", + }, + }, + value = "altaroftidalmastery", + text = "altaroftidalmastery", + }, + { + children = { + { + fileId = "191085", + value = "airrift.m2", + text = "airrift.m2", + }, + { + fileId = "191087", + value = "earthrift.m2", + text = "earthrift.m2", + }, + { + fileId = "191088", + value = "firerift.m2", + text = "firerift.m2", + }, + { + fileId = "191093", + value = "waterrift.m2", + text = "waterrift.m2", + }, + }, + value = "elementalrifts", + text = "elementalrifts", + }, + { + children = { + { + fileId = "191094", + value = "helpwantedposter.m2", + text = "helpwantedposter.m2", + }, + }, + value = "helpwantedposter", + text = "helpwantedposter", + }, + { + children = { + { + fileId = "191096", + value = "ne_lanternblue01.m2", + text = "ne_lanternblue01.m2", + }, + }, + value = "nightelflanternblue", + text = "nightelflanternblue", + }, + { + children = { + { + fileId = "191098", + value = "ne_glaive01.m2", + text = "ne_glaive01.m2", + }, + { + fileId = "191099", + value = "ne_glaive02.m2", + text = "ne_glaive02.m2", + }, + { + fileId = "191100", + value = "ne_glaive03.m2", + text = "ne_glaive03.m2", + }, + { + fileId = "191101", + value = "ne_glaive04.m2", + text = "ne_glaive04.m2", + }, + }, + value = "nightelfweapons", + text = "nightelfweapons", + }, + { + children = { + { + fileId = "191103", + value = "novagrave1.m2", + text = "novagrave1.m2", + }, + }, + value = "novagrave", + text = "novagrave", + }, + { + children = { + { + fileId = "191107", + value = "horde_package01.m2", + text = "horde_package01.m2", + }, + }, + value = "package", + text = "package", + }, + { + children = { + { + fileId = "191109", + value = "paladinshrine.m2", + text = "paladinshrine.m2", + }, + }, + value = "paladinshrine", + text = "paladinshrine", + }, + }, + value = "generaldoodads", + text = "generaldoodads", + }, + { + children = { + { + fileId = "191177", + value = "icyrune01.m2", + text = "icyrune01.m2", + }, + }, + value = "naxxramas", + text = "naxxramas", + }, + { + children = { + { + children = { + { + fileId = "191217", + value = "plaguecauldronactive.m2", + text = "plaguecauldronactive.m2", + }, + { + fileId = "191218", + value = "plaguecauldronactivebase.m2", + text = "plaguecauldronactivebase.m2", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + }, + value = "plaguelands", + text = "plaguelands", + }, + { + children = { + { + children = { + { + fileId = "191347", + value = "cracked_ice01.m2", + text = "cracked_ice01.m2", + }, + }, + value = "crackedice", + text = "crackedice", + }, + }, + value = "winterspringgrove", + text = "winterspringgrove", + }, + }, + value = "doodad", + text = "doodad", + }, + }, + value = "environment", + text = "environment", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "191370", + value = "arakkoahouse_interiorglow.m2", + text = "arakkoahouse_interiorglow.m2", + }, + { + fileId = "191371", + value = "arakkoahut_interiorglow.m2", + text = "arakkoahut_interiorglow.m2", + }, + { + fileId = "191372", + value = "arakkoashack_insideglow.m2", + text = "arakkoashack_insideglow.m2", + }, + }, + value = "arakkoa_hut_glow", + text = "arakkoa_hut_glow", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "arakkoa", + text = "arakkoa", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "191379", + value = "auchindoun_bridge_fx.m2", + text = "auchindoun_bridge_fx.m2", + }, + { + fileId = "191380", + value = "auchindoun_bridge_spirits_floating.m2", + text = "auchindoun_bridge_spirits_floating.m2", + }, + { + fileId = "191381", + value = "auchindoun_bridge_spirits_flying.m2", + text = "auchindoun_bridge_spirits_flying.m2", + }, + { + fileId = "191382", + value = "auchindoun_bridge_spirits_simple.m2", + text = "auchindoun_bridge_spirits_simple.m2", + }, + { + fileId = "191383", + value = "auchindoun_bridge_swirl_filler.m2", + text = "auchindoun_bridge_swirl_filler.m2", + }, + { + fileId = "191384", + value = "auchindoun_bridge_volumelight.m2", + text = "auchindoun_bridge_volumelight.m2", + }, + }, + value = "bridge_fx", + text = "bridge_fx", + }, + { + children = { + { + fileId = "191395", + value = "ancient_d_coffin.m2", + text = "ancient_d_coffin.m2", + }, + }, + value = "coffin", + text = "coffin", + }, + { + children = { + { + fileId = "191398", + value = "auchindoun_door_swinging.m2", + text = "auchindoun_door_swinging.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "191399", + value = "auchindoun_ethereal_ribbon_type1.m2", + text = "auchindoun_ethereal_ribbon_type1.m2", + }, + { + fileId = "191400", + value = "auchindoun_ethereal_ribbon_type2.m2", + text = "auchindoun_ethereal_ribbon_type2.m2", + }, + { + fileId = "191401", + value = "auchindoun_ethereal_ribbon_type3.m2", + text = "auchindoun_ethereal_ribbon_type3.m2", + }, + { + fileId = "191402", + value = "auchindoun_ethereal_ribbon_type4.m2", + text = "auchindoun_ethereal_ribbon_type4.m2", + }, + { + fileId = "191403", + value = "auchindoun_ethereal_ribbon_type5.m2", + text = "auchindoun_ethereal_ribbon_type5.m2", + }, + }, + value = "ethereal_ribbons", + text = "ethereal_ribbons", + }, + { + children = { + { + fileId = "191408", + value = "auch_etherreal_ribbon_type1_part_a.m2", + text = "auch_etherreal_ribbon_type1_part_a.m2", + }, + { + fileId = "191409", + value = "auch_etherreal_ribbon_type1_part_b.m2", + text = "auch_etherreal_ribbon_type1_part_b.m2", + }, + { + fileId = "191410", + value = "auch_etherreal_ribbon_type1_part_c.m2", + text = "auch_etherreal_ribbon_type1_part_c.m2", + }, + { + fileId = "191411", + value = "auch_etherreal_ribbon_type2_part_a.m2", + text = "auch_etherreal_ribbon_type2_part_a.m2", + }, + { + fileId = "191412", + value = "auch_etherreal_ribbon_type2_part_b.m2", + text = "auch_etherreal_ribbon_type2_part_b.m2", + }, + { + fileId = "191413", + value = "auch_etherreal_ribbon_type2_part_c.m2", + text = "auch_etherreal_ribbon_type2_part_c.m2", + }, + { + fileId = "191414", + value = "auch_etherreal_ribbon_type3_part_a.m2", + text = "auch_etherreal_ribbon_type3_part_a.m2", + }, + { + fileId = "191415", + value = "auch_etherreal_ribbon_type3_part_b.m2", + text = "auch_etherreal_ribbon_type3_part_b.m2", + }, + { + fileId = "191416", + value = "auch_etherreal_ribbon_type3_part_c.m2", + text = "auch_etherreal_ribbon_type3_part_c.m2", + }, + { + fileId = "191417", + value = "auch_etherreal_ribbon_type4_part_a.m2", + text = "auch_etherreal_ribbon_type4_part_a.m2", + }, + { + fileId = "191418", + value = "auch_etherreal_ribbon_type4_part_b.m2", + text = "auch_etherreal_ribbon_type4_part_b.m2", + }, + { + fileId = "191419", + value = "auch_etherreal_ribbon_type4_part_c.m2", + text = "auch_etherreal_ribbon_type4_part_c.m2", + }, + { + fileId = "191420", + value = "auch_etherreal_ribbon_type5_part_a.m2", + text = "auch_etherreal_ribbon_type5_part_a.m2", + }, + { + fileId = "191421", + value = "auch_etherreal_ribbon_type5_part_b.m2", + text = "auch_etherreal_ribbon_type5_part_b.m2", + }, + { + fileId = "191422", + value = "auch_etherreal_ribbon_type5_part_c.m2", + text = "auch_etherreal_ribbon_type5_part_c.m2", + }, + }, + value = "ethereal_ribbons_individual", + text = "ethereal_ribbons_individual", + }, + { + children = { + { + fileId = "191425", + value = "draenei_spirit_head.m2", + text = "draenei_spirit_head.m2", + }, + { + fileId = "191426", + value = "draenei_spirit_red.m2", + text = "draenei_spirit_red.m2", + }, + }, + value = "spirit_fx", + text = "spirit_fx", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "auchindoun", + text = "auchindoun", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "191427", + value = "blacktemple_gen_door.m2", + text = "blacktemple_gen_door.m2", + }, + { + fileId = "191428", + value = "bt_commondoor.m2", + text = "bt_commondoor.m2", + }, + { + fileId = "191430", + value = "bt_gate.m2", + text = "bt_gate.m2", + }, + { + fileId = "191433", + value = "bt_gate_solid.m2", + text = "bt_gate_solid.m2", + }, + { + fileId = "191436", + value = "bt_illidan_door.m2", + text = "bt_illidan_door.m2", + }, + { + fileId = "191437", + value = "bt_illidan_door_left.m2", + text = "bt_illidan_door_left.m2", + }, + { + fileId = "191438", + value = "bt_illidan_door_right.m2", + text = "bt_illidan_door_right.m2", + }, + { + fileId = "191439", + value = "bt_maindoor.m2", + text = "bt_maindoor.m2", + }, + }, + value = "doors", + text = "doors", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "191444", + value = "blacktemple_waterfall_type1.m2", + text = "blacktemple_waterfall_type1.m2", + }, + }, + value = "blueenergy", + text = "blueenergy", + }, + { + children = { + { + fileId = "191447", + value = "bt_brazier.m2", + text = "bt_brazier.m2", + }, + { + fileId = "191448", + value = "bt_brazier_blue.m2", + text = "bt_brazier_blue.m2", + }, + { + fileId = "191449", + value = "bt_brazier_broken.m2", + text = "bt_brazier_broken.m2", + }, + { + fileId = "191450", + value = "bt_brazier_green.m2", + text = "bt_brazier_green.m2", + }, + { + fileId = "191451", + value = "bt_brazier_red.m2", + text = "bt_brazier_red.m2", + }, + { + fileId = "191452", + value = "bt_brazier_violet.m2", + text = "bt_brazier_violet.m2", + }, + { + fileId = "191453", + value = "bt_brazier_yellow.m2", + text = "bt_brazier_yellow.m2", + }, + }, + value = "brazier", + text = "brazier", + }, + { + children = { + { + fileId = "191454", + value = "bt_drapes.m2", + text = "bt_drapes.m2", + }, + }, + value = "drapes", + text = "drapes", + }, + { + children = { + { + fileId = "191467", + value = "bt_sewerfall.m2", + text = "bt_sewerfall.m2", + }, + { + fileId = "191468", + value = "bt_sewergutter_hall.m2", + text = "bt_sewergutter_hall.m2", + }, + { + fileId = "191469", + value = "bt_sewergutter_section2.m2", + text = "bt_sewergutter_section2.m2", + }, + { + fileId = "191470", + value = "bt_sewerramp.m2", + text = "bt_sewerramp.m2", + }, + { + fileId = "191471", + value = "bt_sewerwater_bossroom.m2", + text = "bt_sewerwater_bossroom.m2", + }, + { + fileId = "191472", + value = "bt_sewerwater_section1.m2", + text = "bt_sewerwater_section1.m2", + }, + }, + value = "sewerwater", + text = "sewerwater", + }, + { + children = { + { + fileId = "191473", + value = "bt_statueeyes.m2", + text = "bt_statueeyes.m2", + }, + { + fileId = "191474", + value = "bt_statueeyes_green.m2", + text = "bt_statueeyes_green.m2", + }, + }, + value = "statue", + text = "statue", + }, + { + children = { + { + fileId = "191476", + value = "bt_vines01.m2", + text = "bt_vines01.m2", + }, + { + fileId = "191477", + value = "bt_vines02.m2", + text = "bt_vines02.m2", + }, + }, + value = "vines", + text = "vines", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "blacktemple", + text = "blacktemple", + }, + { + children = { + { + children = { + { + fileId = "191478", + value = "bladesedgebush01.m2", + text = "bladesedgebush01.m2", + }, + { + fileId = "191479", + value = "bladesedgebush02.m2", + text = "bladesedgebush02.m2", + }, + }, + value = "bush", + text = "bush", + }, + { + children = { + { + fileId = "191482", + value = "darkportal_bladesedge_particles.m2", + text = "darkportal_bladesedge_particles.m2", + }, + }, + value = "darkportal", + text = "darkportal", + }, + { + children = { + { + fileId = "191483", + value = "bem_dragon_01.m2", + text = "bem_dragon_01.m2", + }, + { + fileId = "191484", + value = "bem_dragon_02.m2", + text = "bem_dragon_02.m2", + }, + { + fileId = "191485", + value = "bem_dragon_03.m2", + text = "bem_dragon_03.m2", + }, + { + fileId = "191486", + value = "bem_dragon_04.m2", + text = "bem_dragon_04.m2", + }, + { + fileId = "191487", + value = "bem_dragon_05.m2", + text = "bem_dragon_05.m2", + }, + }, + value = "dragon", + text = "dragon", + }, + { + children = { + { + children = { + { + fileId = "191488", + value = "ogrila_crystal01.m2", + text = "ogrila_crystal01.m2", + }, + { + fileId = "191489", + value = "ogrila_crystal02.m2", + text = "ogrila_crystal02.m2", + }, + { + fileId = "191490", + value = "ogrila_crystal03.m2", + text = "ogrila_crystal03.m2", + }, + }, + value = "ogrilacrystals", + text = "ogrilacrystals", + }, + { + children = { + { + fileId = "191491", + value = "ogrila_banner.m2", + text = "ogrila_banner.m2", + }, + { + fileId = "191492", + value = "ogrila_hut.m2", + text = "ogrila_hut.m2", + }, + }, + value = "ogrilahut", + text = "ogrilahut", + }, + }, + value = "ogrila", + text = "ogrila", + }, + { + children = { + { + fileId = "191497", + value = "bladesedge_floatingsmall01.m2", + text = "bladesedge_floatingsmall01.m2", + }, + { + fileId = "191498", + value = "bladesedge_floatingsmall02.m2", + text = "bladesedge_floatingsmall02.m2", + }, + { + fileId = "191499", + value = "bladesedge_overhangrock_large_01.m2", + text = "bladesedge_overhangrock_large_01.m2", + }, + { + fileId = "191500", + value = "bladesedge_overhangrock_large_02.m2", + text = "bladesedge_overhangrock_large_02.m2", + }, + { + fileId = "191501", + value = "bladesedge_overhangrock_small_01.m2", + text = "bladesedge_overhangrock_small_01.m2", + }, + { + fileId = "191502", + value = "bladesedge_overhangrock_small_02.m2", + text = "bladesedge_overhangrock_small_02.m2", + }, + { + fileId = "191503", + value = "bladesedge_overhangrock_small_03.m2", + text = "bladesedge_overhangrock_small_03.m2", + }, + { + fileId = "191504", + value = "bladesedgecliffrock01.m2", + text = "bladesedgecliffrock01.m2", + }, + { + fileId = "191505", + value = "bladesedgecliffrock02.m2", + text = "bladesedgecliffrock02.m2", + }, + { + fileId = "191506", + value = "bladesedgecliffrock03.m2", + text = "bladesedgecliffrock03.m2", + }, + { + fileId = "191507", + value = "bladesedgegroundrock01.m2", + text = "bladesedgegroundrock01.m2", + }, + { + fileId = "191508", + value = "bladesedgegroundrock02.m2", + text = "bladesedgegroundrock02.m2", + }, + { + fileId = "191509", + value = "bladesedgegroundrock03.m2", + text = "bladesedgegroundrock03.m2", + }, + { + fileId = "191510", + value = "bladesedgerock_finger01.m2", + text = "bladesedgerock_finger01.m2", + }, + { + fileId = "191511", + value = "bladesedgerock_finger02.m2", + text = "bladesedgerock_finger02.m2", + }, + { + fileId = "191512", + value = "bladesedgerock_finger03.m2", + text = "bladesedgerock_finger03.m2", + }, + { + fileId = "191514", + value = "bladesedgerockarch01.m2", + text = "bladesedgerockarch01.m2", + }, + { + fileId = "191515", + value = "bladesedgerockarch02.m2", + text = "bladesedgerockarch02.m2", + }, + { + fileId = "191516", + value = "bladesedgerockbridge01.m2", + text = "bladesedgerockbridge01.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "191535", + value = "simongame_floatingcrystal.m2", + text = "simongame_floatingcrystal.m2", + }, + { + fileId = "191536", + value = "simongame_largebase.m2", + text = "simongame_largebase.m2", + }, + { + fileId = "191537", + value = "simongame_largebluetree.m2", + text = "simongame_largebluetree.m2", + }, + { + fileId = "191538", + value = "simongame_largegreentree.m2", + text = "simongame_largegreentree.m2", + }, + { + fileId = "191539", + value = "simongame_largeredtree.m2", + text = "simongame_largeredtree.m2", + }, + { + fileId = "191540", + value = "simongame_largeyellowtree.m2", + text = "simongame_largeyellowtree.m2", + }, + { + fileId = "191541", + value = "simongame_smallbluebase.m2", + text = "simongame_smallbluebase.m2", + }, + { + fileId = "191542", + value = "simongame_smallbluetree.m2", + text = "simongame_smallbluetree.m2", + }, + { + fileId = "191543", + value = "simongame_smallgreenbase.m2", + text = "simongame_smallgreenbase.m2", + }, + { + fileId = "191544", + value = "simongame_smallgreentree.m2", + text = "simongame_smallgreentree.m2", + }, + { + fileId = "191545", + value = "simongame_smallredbase.m2", + text = "simongame_smallredbase.m2", + }, + { + fileId = "191546", + value = "simongame_smallredtree.m2", + text = "simongame_smallredtree.m2", + }, + { + fileId = "191547", + value = "simongame_smallyellowbase.m2", + text = "simongame_smallyellowbase.m2", + }, + { + fileId = "191548", + value = "simongame_smallyellowtree.m2", + text = "simongame_smallyellowtree.m2", + }, + }, + value = "simon", + text = "simon", + }, + { + children = { + { + fileId = "191550", + value = "bladesedgecrater01.m2", + text = "bladesedgecrater01.m2", + }, + { + fileId = "191551", + value = "bladesedgetree01.m2", + text = "bladesedgetree01.m2", + }, + { + fileId = "191552", + value = "bladesedgetree02.m2", + text = "bladesedgetree02.m2", + }, + { + fileId = "191553", + value = "bladesedgetree03.m2", + text = "bladesedgetree03.m2", + }, + { + fileId = "191554", + value = "bladesedgetree04.m2", + text = "bladesedgetree04.m2", + }, + { + fileId = "191555", + value = "bladesedgetree05.m2", + text = "bladesedgetree05.m2", + }, + { + fileId = "191556", + value = "bladesedgetree06.m2", + text = "bladesedgetree06.m2", + }, + { + fileId = "191557", + value = "bladesedgetree07.m2", + text = "bladesedgetree07.m2", + }, + { + fileId = "191558", + value = "bladesedgetree08.m2", + text = "bladesedgetree08.m2", + }, + { + fileId = "191559", + value = "bladesedgetreestump.m2", + text = "bladesedgetreestump.m2", + }, + { + fileId = "191561", + value = "bladesterokkarbush01.m2", + text = "bladesterokkarbush01.m2", + }, + { + fileId = "191562", + value = "bladesterokkarfallentree.m2", + text = "bladesterokkarfallentree.m2", + }, + { + fileId = "191563", + value = "bladesterokkartreelarge.m2", + text = "bladesterokkartreelarge.m2", + }, + { + fileId = "191564", + value = "bladesterokkartreemedium.m2", + text = "bladesterokkartreemedium.m2", + }, + { + fileId = "191565", + value = "bladesterokkartreenoleaves01.m2", + text = "bladesterokkartreenoleaves01.m2", + }, + { + fileId = "191566", + value = "bladesterokkartreenoleaves02.m2", + text = "bladesterokkartreenoleaves02.m2", + }, + { + fileId = "191567", + value = "bladesterokkartreesapling.m2", + text = "bladesterokkartreesapling.m2", + }, + { + fileId = "191568", + value = "bladesterokkartreesmall.m2", + text = "bladesterokkartreesmall.m2", + }, + { + fileId = "191569", + value = "bladesterokkartreestump.m2", + text = "bladesterokkartreestump.m2", + }, + { + fileId = "191570", + value = "bladesterokkartreestump02.m2", + text = "bladesterokkartreestump02.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "bladesedge", + text = "bladesedge", + }, + { + children = { + { + children = { + { + fileId = "191576", + value = "bloodmyst_be_portal.m2", + text = "bloodmyst_be_portal.m2", + }, + }, + value = "be_portal", + text = "be_portal", + }, + { + children = { + { + fileId = "191579", + value = "bloodmystcrystal01.m2", + text = "bloodmystcrystal01.m2", + }, + { + fileId = "191580", + value = "bloodmystcrystal02.m2", + text = "bloodmystcrystal02.m2", + }, + { + fileId = "191581", + value = "bloodmystcrystal03.m2", + text = "bloodmystcrystal03.m2", + }, + { + fileId = "191583", + value = "bloodmystcrystalaparatus01.m2", + text = "bloodmystcrystalaparatus01.m2", + }, + { + fileId = "191584", + value = "bloodmystcrystalbig01_corrupted.m2", + text = "bloodmystcrystalbig01_corrupted.m2", + }, + { + fileId = "191585", + value = "bloodmystcrystalbig02_corrupted.m2", + text = "bloodmystcrystalbig02_corrupted.m2", + }, + { + fileId = "191586", + value = "bloodmystcrystalbig03_corrupted.m2", + text = "bloodmystcrystalbig03_corrupted.m2", + }, + { + fileId = "191588", + value = "bloodmystcrystalfloating01.m2", + text = "bloodmystcrystalfloating01.m2", + }, + { + fileId = "191589", + value = "bloodmystcrystalsmall01_corrupted.m2", + text = "bloodmystcrystalsmall01_corrupted.m2", + }, + { + fileId = "191590", + value = "bloodmystcrystalsmall02_corrupted.m2", + text = "bloodmystcrystalsmall02_corrupted.m2", + }, + { + fileId = "191591", + value = "bloodmystcrystalsmall03_corrupted.m2", + text = "bloodmystcrystalsmall03_corrupted.m2", + }, + }, + value = "crystals", + text = "crystals", + }, + { + children = { + { + fileId = "191594", + value = "bloodmyst_powercore.m2", + text = "bloodmyst_powercore.m2", + }, + { + fileId = "191614", + value = "powercore_coil_fx.m2", + text = "powercore_coil_fx.m2", + }, + }, + value = "powercore", + text = "powercore", + }, + { + children = { + { + fileId = "191616", + value = "bloodmystrockrune01.m2", + text = "bloodmystrockrune01.m2", + }, + { + fileId = "191618", + value = "bloodmystrockrune02.m2", + text = "bloodmystrockrune02.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "191627", + value = "bloodmystbush01.m2", + text = "bloodmystbush01.m2", + }, + { + fileId = "191628", + value = "bloodmystbush02.m2", + text = "bloodmystbush02.m2", + }, + { + fileId = "191629", + value = "bloodmystbush03.m2", + text = "bloodmystbush03.m2", + }, + { + fileId = "191631", + value = "bloodmystredwaterfall.m2", + text = "bloodmystredwaterfall.m2", + }, + { + fileId = "191632", + value = "bloodmysttree01.m2", + text = "bloodmysttree01.m2", + }, + { + fileId = "191633", + value = "bloodmysttree01_web.m2", + text = "bloodmysttree01_web.m2", + }, + { + fileId = "191634", + value = "bloodmysttree02.m2", + text = "bloodmysttree02.m2", + }, + { + fileId = "191635", + value = "bloodmysttree02_web.m2", + text = "bloodmysttree02_web.m2", + }, + { + fileId = "191636", + value = "bloodmysttree03_web.m2", + text = "bloodmysttree03_web.m2", + }, + { + fileId = "191637", + value = "bloodmysttree07_web.m2", + text = "bloodmysttree07_web.m2", + }, + { + fileId = "191638", + value = "bloodmysttreecrystal01.m2", + text = "bloodmysttreecrystal01.m2", + }, + { + fileId = "191639", + value = "bloodmysttreecrystal02.m2", + text = "bloodmysttreecrystal02.m2", + }, + { + fileId = "191640", + value = "bloodmysttreefallen.m2", + text = "bloodmysttreefallen.m2", + }, + { + fileId = "191641", + value = "bloodmysttreerunes01.m2", + text = "bloodmysttreerunes01.m2", + }, + { + fileId = "191642", + value = "bloodmysttreerunes02.m2", + text = "bloodmysttreerunes02.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "191644", + value = "cocoon_yellow.m2", + text = "cocoon_yellow.m2", + }, + { + fileId = "191645", + value = "cocoontrap_yellow.m2", + text = "cocoontrap_yellow.m2", + }, + { + fileId = "191648", + value = "nastyspiderweb_yellow.m2", + text = "nastyspiderweb_yellow.m2", + }, + { + fileId = "191651", + value = "spidereggsack_yellow.m2", + text = "spidereggsack_yellow.m2", + }, + { + fileId = "191652", + value = "spidereggsground_yellow.m2", + text = "spidereggsground_yellow.m2", + }, + { + fileId = "191656", + value = "webdangle_yellow.m2", + text = "webdangle_yellow.m2", + }, + }, + value = "webs", + text = "webs", + }, + }, + value = "bloodmyst", + text = "bloodmyst", + }, + { + children = { + { + children = { + { + fileId = "191658", + value = "bonewastesboneshrine01.m2", + text = "bonewastesboneshrine01.m2", + }, + }, + value = "boneshrine", + text = "boneshrine", + }, + { + children = { + { + fileId = "191661", + value = "bonewastestreetrunk01.m2", + text = "bonewastestreetrunk01.m2", + }, + { + fileId = "191663", + value = "bonewastestreetrunk02.m2", + text = "bonewastestreetrunk02.m2", + }, + { + fileId = "191664", + value = "bonewastestreetrunk03.m2", + text = "bonewastestreetrunk03.m2", + }, + { + fileId = "191665", + value = "bonewastestreetrunk04.m2", + text = "bonewastestreetrunk04.m2", + }, + { + fileId = "191666", + value = "bonewastestreetrunk05.m2", + text = "bonewastestreetrunk05.m2", + }, + { + fileId = "191667", + value = "bonewastestreetrunk06.m2", + text = "bonewastestreetrunk06.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "bonewastes", + text = "bonewastes", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "191668", + value = "cf_elevatorplatform.m2", + text = "cf_elevatorplatform.m2", + }, + { + fileId = "191669", + value = "cf_elevatorplatform_small.m2", + text = "cf_elevatorplatform_small.m2", + }, + }, + value = "elevator", + text = "elevator", + }, + { + children = { + { + fileId = "191671", + value = "coilfang towers e_particle.m2", + text = "coilfang towers e_particle.m2", + }, + }, + value = "energytower", + text = "energytower", + }, + { + children = { + { + fileId = "191683", + value = "coilfang_pumpingdoor.m2", + text = "coilfang_pumpingdoor.m2", + }, + }, + value = "pumpingdoor", + text = "pumpingdoor", + }, + { + children = { + { + fileId = "191688", + value = "coilfang_raid_bridge_part1.m2", + text = "coilfang_raid_bridge_part1.m2", + }, + { + fileId = "191689", + value = "coilfang_raid_bridge_part2.m2", + text = "coilfang_raid_bridge_part2.m2", + }, + { + fileId = "191690", + value = "coilfang_raid_bridge_part3.m2", + text = "coilfang_raid_bridge_part3.m2", + }, + }, + value = "raid_bridge", + text = "raid_bridge", + }, + { + children = { + { + fileId = "191705", + value = "coilfang_raid_bridge_controls.m2", + text = "coilfang_raid_bridge_controls.m2", + }, + { + fileId = "191706", + value = "coilfang_raid_console.m2", + text = "coilfang_raid_console.m2", + }, + { + fileId = "191707", + value = "coilfang_raid_gate.m2", + text = "coilfang_raid_gate.m2", + }, + }, + value = "raid_bridge_control", + text = "raid_bridge_control", + }, + { + children = { + { + fileId = "191715", + value = "coilfang_raid_door.m2", + text = "coilfang_raid_door.m2", + }, + }, + value = "raid_door", + text = "raid_door", + }, + { + children = { + { + fileId = "191724", + value = "coilfang_steam_off_on.m2", + text = "coilfang_steam_off_on.m2", + }, + }, + value = "steam", + text = "steam", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "191725", + value = "coilfang_blue_energy.m2", + text = "coilfang_blue_energy.m2", + }, + }, + value = "blueenergy", + text = "blueenergy", + }, + { + children = { + { + fileId = "191727", + value = "cf_groundcage.m2", + text = "cf_groundcage.m2", + }, + { + fileId = "191728", + value = "cf_hangingcage.m2", + text = "cf_hangingcage.m2", + }, + }, + value = "cages", + text = "cages", + }, + { + children = { + { + fileId = "191729", + value = "coilfang_circularlightwindow_blue.m2", + text = "coilfang_circularlightwindow_blue.m2", + }, + { + fileId = "191730", + value = "coilfang_floor_light.m2", + text = "coilfang_floor_light.m2", + }, + { + fileId = "191731", + value = "coilfang_orb.m2", + text = "coilfang_orb.m2", + }, + { + fileId = "191732", + value = "coilfang_orb_orange.m2", + text = "coilfang_orb_orange.m2", + }, + { + fileId = "191733", + value = "coilfang_wall_light.m2", + text = "coilfang_wall_light.m2", + }, + }, + value = "lights", + text = "lights", + }, + { + children = { + { + fileId = "191745", + value = "zangarmushroom06_blueglow.m2", + text = "zangarmushroom06_blueglow.m2", + }, + { + fileId = "191746", + value = "zangarmushroom07_blueglow.m2", + text = "zangarmushroom07_blueglow.m2", + }, + }, + value = "mushrooms", + text = "mushrooms", + }, + { + children = { + { + fileId = "191747", + value = "cf_pipea.m2", + text = "cf_pipea.m2", + }, + { + fileId = "191748", + value = "cf_pipeb.m2", + text = "cf_pipeb.m2", + }, + { + fileId = "191749", + value = "cf_pipec.m2", + text = "cf_pipec.m2", + }, + }, + value = "pipepieces", + text = "pipepieces", + }, + { + children = { + { + fileId = "191752", + value = "coilfang_pump.m2", + text = "coilfang_pump.m2", + }, + { + fileId = "191753", + value = "coilfang_pump_raidwater.m2", + text = "coilfang_pump_raidwater.m2", + }, + }, + value = "pump", + text = "pump", + }, + { + children = { + { + fileId = "191756", + value = "cf_raid_giantpump.m2", + text = "cf_raid_giantpump.m2", + }, + }, + value = "raid", + text = "raid", + }, + { + children = { + { + fileId = "191760", + value = "cf_railing.m2", + text = "cf_railing.m2", + }, + }, + value = "railing", + text = "railing", + }, + { + children = { + { + fileId = "191762", + value = "coilfang_steam.m2", + text = "coilfang_steam.m2", + }, + { + fileId = "191763", + value = "coilfang_steam_choppy.m2", + text = "coilfang_steam_choppy.m2", + }, + }, + value = "steam", + text = "steam", + }, + { + children = { + { + fileId = "191766", + value = "coilfang_marsh_waterfall.m2", + text = "coilfang_marsh_waterfall.m2", + }, + { + fileId = "191767", + value = "coilfang_waterfall_type1.m2", + text = "coilfang_waterfall_type1.m2", + }, + { + fileId = "191768", + value = "coilfang_waterfall_type2.m2", + text = "coilfang_waterfall_type2.m2", + }, + { + fileId = "191769", + value = "coilfang_waterfall_type3.m2", + text = "coilfang_waterfall_type3.m2", + }, + }, + value = "waterfalls", + text = "waterfalls", + }, + { + children = { + { + fileId = "191770", + value = "giantglasswindow01.m2", + text = "giantglasswindow01.m2", + }, + }, + value = "windows", + text = "windows", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "coilfang", + text = "coilfang", + }, + { + children = { + { + children = { + { + fileId = "191771", + value = "be_fence_eversong01.m2", + text = "be_fence_eversong01.m2", + }, + { + fileId = "191772", + value = "be_fence_eversong02.m2", + text = "be_fence_eversong02.m2", + }, + { + fileId = "191773", + value = "be_fence_eversong03.m2", + text = "be_fence_eversong03.m2", + }, + }, + value = "fence", + text = "fence", + }, + { + children = { + { + fileId = "191775", + value = "be_lamppost_eversong01-optimized.m2", + text = "be_lamppost_eversong01-optimized.m2", + }, + { + fileId = "191776", + value = "be_lamppost_eversong01.m2", + text = "be_lamppost_eversong01.m2", + }, + }, + value = "lamppost", + text = "lamppost", + }, + { + children = { + { + fileId = "191777", + value = "be_signpost_eversong.m2", + text = "be_signpost_eversong.m2", + }, + { + fileId = "191778", + value = "be_signpost_sign_eversong.m2", + text = "be_signpost_sign_eversong.m2", + }, + }, + value = "signpost", + text = "signpost", + }, + }, + value = "eversong", + text = "eversong", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "191780", + value = "ao_banner01.m2", + text = "ao_banner01.m2", + }, + { + fileId = "191781", + value = "ao_banner02.m2", + text = "ao_banner02.m2", + }, + { + fileId = "191783", + value = "ao_wall_hanging_01.m2", + text = "ao_wall_hanging_01.m2", + }, + { + fileId = "191784", + value = "ao_wall_hanging_02.m2", + text = "ao_wall_hanging_02.m2", + }, + { + fileId = "191785", + value = "ao_wall_hanging_03.m2", + text = "ao_wall_hanging_03.m2", + }, + { + fileId = "191786", + value = "ao_wall_hanging_04.m2", + text = "ao_wall_hanging_04.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "191787", + value = "ao_barrel01.m2", + text = "ao_barrel01.m2", + }, + }, + value = "barrel", + text = "barrel", + }, + { + children = { + { + fileId = "191790", + value = "ao_boardwalk01.m2", + text = "ao_boardwalk01.m2", + }, + { + fileId = "191791", + value = "ao_boardwalk02.m2", + text = "ao_boardwalk02.m2", + }, + { + fileId = "191792", + value = "ao_boardwalk03.m2", + text = "ao_boardwalk03.m2", + }, + { + fileId = "191793", + value = "ao_boardwalk04.m2", + text = "ao_boardwalk04.m2", + }, + { + fileId = "191794", + value = "ao_boardwalk05.m2", + text = "ao_boardwalk05.m2", + }, + { + fileId = "191795", + value = "ao_boardwalk_corner.m2", + text = "ao_boardwalk_corner.m2", + }, + }, + value = "boardwalk", + text = "boardwalk", + }, + { + children = { + { + fileId = "191796", + value = "ao_bridgelong01.m2", + text = "ao_bridgelong01.m2", + }, + { + fileId = "191797", + value = "ao_bridgelong02.m2", + text = "ao_bridgelong02.m2", + }, + { + fileId = "191798", + value = "ao_bridgerock01.m2", + text = "ao_bridgerock01.m2", + }, + { + fileId = "191801", + value = "ao_bridgetree01.m2", + text = "ao_bridgetree01.m2", + }, + }, + value = "bridgepieces", + text = "bridgepieces", + }, + { + children = { + { + fileId = "191802", + value = "ao_orccrate01.m2", + text = "ao_orccrate01.m2", + }, + { + fileId = "191803", + value = "ao_orccrate02.m2", + text = "ao_orccrate02.m2", + }, + { + fileId = "191804", + value = "ao_orccrate03.m2", + text = "ao_orccrate03.m2", + }, + }, + value = "crates", + text = "crates", + }, + { + children = { + { + fileId = "191807", + value = "ao_lamppost01.m2", + text = "ao_lamppost01.m2", + }, + { + fileId = "191808", + value = "ao_lamppost02.m2", + text = "ao_lamppost02.m2", + }, + }, + value = "lampost", + text = "lampost", + }, + { + children = { + { + fileId = "191809", + value = "ao_outpostwall01.m2", + text = "ao_outpostwall01.m2", + }, + { + fileId = "191810", + value = "ao_outpostwall02.m2", + text = "ao_outpostwall02.m2", + }, + { + fileId = "191811", + value = "ao_outpostwall03.m2", + text = "ao_outpostwall03.m2", + }, + { + fileId = "191812", + value = "ao_outpostwall04.m2", + text = "ao_outpostwall04.m2", + }, + { + fileId = "191813", + value = "ao_outpostwall05.m2", + text = "ao_outpostwall05.m2", + }, + { + fileId = "191814", + value = "ao_outpostwall06.m2", + text = "ao_outpostwall06.m2", + }, + { + fileId = "191815", + value = "ao_outpostwall07.m2", + text = "ao_outpostwall07.m2", + }, + }, + value = "outpostwalls", + text = "outpostwalls", + }, + { + children = { + { + fileId = "191817", + value = "ao_pyre01.m2", + text = "ao_pyre01.m2", + }, + { + fileId = "191818", + value = "ao_pyre02.m2", + text = "ao_pyre02.m2", + }, + }, + value = "pyres", + text = "pyres", + }, + { + children = { + { + fileId = "191820", + value = "ao_signpost01.m2", + text = "ao_signpost01.m2", + }, + { + fileId = "191821", + value = "ao_signpostpointer01.m2", + text = "ao_signpostpointer01.m2", + }, + }, + value = "signposts", + text = "signposts", + }, + { + children = { + { + fileId = "191822", + value = "ao_sticks_01.m2", + text = "ao_sticks_01.m2", + }, + }, + value = "sticks", + text = "sticks", + }, + { + children = { + { + fileId = "191823", + value = "ao_totem01.m2", + text = "ao_totem01.m2", + }, + }, + value = "totem", + text = "totem", + }, + { + children = { + { + fileId = "191824", + value = "ao_windmill.m2", + text = "ao_windmill.m2", + }, + }, + value = "windmill", + text = "windmill", + }, + }, + value = "ancientorc", + text = "ancientorc", + }, + { + children = { + { + fileId = "191825", + value = "ak_alchemybottle01.m2", + text = "ak_alchemybottle01.m2", + }, + { + fileId = "191826", + value = "ak_alchemybottle02.m2", + text = "ak_alchemybottle02.m2", + }, + { + fileId = "191827", + value = "ak_alchemybottle03.m2", + text = "ak_alchemybottle03.m2", + }, + { + children = { + { + fileId = "191829", + value = "ak_banner01.m2", + text = "ak_banner01.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "191830", + value = "ak_crystalball01.m2", + text = "ak_crystalball01.m2", + }, + { + fileId = "191831", + value = "ak_crystalball02.m2", + text = "ak_crystalball02.m2", + }, + }, + value = "crystalball", + text = "crystalball", + }, + { + children = { + { + fileId = "191832", + value = "ak_egg01.m2", + text = "ak_egg01.m2", + }, + { + fileId = "191833", + value = "ak_egg02.m2", + text = "ak_egg02.m2", + }, + { + fileId = "191834", + value = "ak_nest01.m2", + text = "ak_nest01.m2", + }, + { + fileId = "191835", + value = "ak_nestdebris01.m2", + text = "ak_nestdebris01.m2", + }, + }, + value = "nest", + text = "nest", + }, + { + children = { + { + fileId = "191839", + value = "ak_scarecrow01.m2", + text = "ak_scarecrow01.m2", + }, + }, + value = "scarecrow", + text = "scarecrow", + }, + { + children = { + { + fileId = "191841", + value = "ak_shelter01.m2", + text = "ak_shelter01.m2", + }, + { + fileId = "191842", + value = "ak_shelter02.m2", + text = "ak_shelter02.m2", + }, + { + fileId = "191843", + value = "ak_shelter03.m2", + text = "ak_shelter03.m2", + }, + }, + value = "shelters", + text = "shelters", + }, + { + children = { + { + fileId = "191858", + value = "ak_torch01.m2", + text = "ak_torch01.m2", + }, + }, + value = "torch", + text = "torch", + }, + { + children = { + { + fileId = "191859", + value = "ak_totem01.m2", + text = "ak_totem01.m2", + }, + { + fileId = "191860", + value = "ak_totem02.m2", + text = "ak_totem02.m2", + }, + }, + value = "totem", + text = "totem", + }, + { + children = { + { + fileId = "191863", + value = "ak_alchemyset01.m2", + text = "ak_alchemyset01.m2", + }, + { + fileId = "191864", + value = "ak_blacksmithset01.m2", + text = "ak_blacksmithset01.m2", + }, + }, + value = "tradeskill", + text = "tradeskill", + }, + }, + value = "arakkoa", + text = "arakkoa", + }, + { + children = { + { + children = { + { + fileId = "191874", + value = "be_ballista01.m2", + text = "be_ballista01.m2", + }, + { + fileId = "191875", + value = "be_ballistaarm.m2", + text = "be_ballistaarm.m2", + }, + { + fileId = "191876", + value = "be_ballistarail.m2", + text = "be_ballistarail.m2", + }, + { + fileId = "191877", + value = "be_ballistashield.m2", + text = "be_ballistashield.m2", + }, + { + fileId = "191878", + value = "be_ballistaslide.m2", + text = "be_ballistaslide.m2", + }, + { + fileId = "191879", + value = "be_ballistawheel.m2", + text = "be_ballistawheel.m2", + }, + { + fileId = "191880", + value = "be_ballistawinch.m2", + text = "be_ballistawinch.m2", + }, + { + fileId = "191882", + value = "be_ballistawrecked01.m2", + text = "be_ballistawrecked01.m2", + }, + { + fileId = "191885", + value = "be_statueghostlands01.m2", + text = "be_statueghostlands01.m2", + }, + }, + value = "ballista", + text = "ballista", + }, + { + children = { + { + fileId = "191887", + value = "be_banner01.m2", + text = "be_banner01.m2", + }, + { + fileId = "191889", + value = "be_banner02.m2", + text = "be_banner02.m2", + }, + { + fileId = "191891", + value = "be_banner03.m2", + text = "be_banner03.m2", + }, + { + fileId = "191893", + value = "be_banner04.m2", + text = "be_banner04.m2", + }, + { + fileId = "191894", + value = "be_banner_kael_01.m2", + text = "be_banner_kael_01.m2", + }, + { + fileId = "191896", + value = "be_banner_kael_02.m2", + text = "be_banner_kael_02.m2", + }, + { + fileId = "191898", + value = "be_banner_kael_03.m2", + text = "be_banner_kael_03.m2", + }, + { + fileId = "191901", + value = "be_banner_shatariskyguard.m2", + text = "be_banner_shatariskyguard.m2", + }, + { + fileId = "191903", + value = "be_banner_tallblack.m2", + text = "be_banner_tallblack.m2", + }, + { + fileId = "191905", + value = "be_banner_tallblue.m2", + text = "be_banner_tallblue.m2", + }, + { + fileId = "191907", + value = "be_banner_tallpurple.m2", + text = "be_banner_tallpurple.m2", + }, + { + fileId = "191909", + value = "be_banner_tallred.m2", + text = "be_banner_tallred.m2", + }, + { + fileId = "191911", + value = "be_banner_wide_black.m2", + text = "be_banner_wide_black.m2", + }, + { + fileId = "191912", + value = "be_banner_wide_blue.m2", + text = "be_banner_wide_blue.m2", + }, + { + fileId = "191913", + value = "be_banner_wide_purple.m2", + text = "be_banner_wide_purple.m2", + }, + { + fileId = "191914", + value = "be_banner_wide_red.m2", + text = "be_banner_wide_red.m2", + }, + { + fileId = "191915", + value = "be_banner_wide_red_anim.m2", + text = "be_banner_wide_red_anim.m2", + }, + { + fileId = "191916", + value = "be_banner_wide_red_anim02.m2", + text = "be_banner_wide_red_anim02.m2", + }, + { + fileId = "191917", + value = "be_banner_wide_red_anim03.m2", + text = "be_banner_wide_red_anim03.m2", + }, + { + fileId = "191918", + value = "be_banner_wide_red_torn01.m2", + text = "be_banner_wide_red_torn01.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "191919", + value = "be_bannister.m2", + text = "be_bannister.m2", + }, + }, + value = "bannister", + text = "bannister", + }, + { + children = { + { + fileId = "191921", + value = "be_barrel_01.m2", + text = "be_barrel_01.m2", + }, + { + fileId = "191922", + value = "be_barrel_broken_01.m2", + text = "be_barrel_broken_01.m2", + }, + { + fileId = "191923", + value = "be_barrel_broken_02.m2", + text = "be_barrel_broken_02.m2", + }, + { + fileId = "191924", + value = "be_barrel_fruit01.m2", + text = "be_barrel_fruit01.m2", + }, + }, + value = "barrel", + text = "barrel", + }, + { + children = { + { + fileId = "191927", + value = "be_barrierspikes01.m2", + text = "be_barrierspikes01.m2", + }, + { + fileId = "191928", + value = "be_barrierspikes02.m2", + text = "be_barrierspikes02.m2", + }, + { + fileId = "191929", + value = "be_barrierspikes03.m2", + text = "be_barrierspikes03.m2", + }, + }, + value = "barrierspikes", + text = "barrierspikes", + }, + { + children = { + { + fileId = "191931", + value = "be_bed_01.m2", + text = "be_bed_01.m2", + }, + { + fileId = "191933", + value = "be_bed_02.m2", + text = "be_bed_02.m2", + }, + { + fileId = "191934", + value = "be_bed_wrecked_01.m2", + text = "be_bed_wrecked_01.m2", + }, + }, + value = "beds", + text = "beds", + }, + { + children = { + { + fileId = "191936", + value = "be_bench01.m2", + text = "be_bench01.m2", + }, + { + fileId = "191938", + value = "be_bench_garden01.m2", + text = "be_bench_garden01.m2", + }, + { + fileId = "191939", + value = "be_bench_wrecked_01.m2", + text = "be_bench_wrecked_01.m2", + }, + }, + value = "benches", + text = "benches", + }, + { + children = { + { + fileId = "191942", + value = "be_book_large01.m2", + text = "be_book_large01.m2", + }, + { + fileId = "191943", + value = "be_book_large02.m2", + text = "be_book_large02.m2", + }, + { + fileId = "191945", + value = "be_book_large05.m2", + text = "be_book_large05.m2", + }, + { + fileId = "191946", + value = "be_book_medium01.m2", + text = "be_book_medium01.m2", + }, + { + fileId = "191947", + value = "be_book_medium02.m2", + text = "be_book_medium02.m2", + }, + { + fileId = "191948", + value = "be_book_small01.m2", + text = "be_book_small01.m2", + }, + { + fileId = "191949", + value = "be_book_small02.m2", + text = "be_book_small02.m2", + }, + }, + value = "books", + text = "books", + }, + { + children = { + { + fileId = "191954", + value = "be_bookshelf_wrecked_01.m2", + text = "be_bookshelf_wrecked_01.m2", + }, + { + fileId = "191955", + value = "be_bookshelf_wrecked_02.m2", + text = "be_bookshelf_wrecked_02.m2", + }, + { + fileId = "191956", + value = "be_bookshelfempty_01.m2", + text = "be_bookshelfempty_01.m2", + }, + { + fileId = "191957", + value = "be_bookshelfempty_02.m2", + text = "be_bookshelfempty_02.m2", + }, + { + fileId = "191958", + value = "be_bookshelffilled_01.m2", + text = "be_bookshelffilled_01.m2", + }, + { + fileId = "191959", + value = "be_bookshelffilled_02.m2", + text = "be_bookshelffilled_02.m2", + }, + { + fileId = "191960", + value = "be_bookshelfshort.m2", + text = "be_bookshelfshort.m2", + }, + { + fileId = "191961", + value = "be_bookshelfspiral.m2", + text = "be_bookshelfspiral.m2", + }, + { + fileId = "191962", + value = "be_bookshelftall.m2", + text = "be_bookshelftall.m2", + }, + }, + value = "bookshelf", + text = "bookshelf", + }, + { + children = { + { + fileId = "191963", + value = "be_bottle01.m2", + text = "be_bottle01.m2", + }, + { + fileId = "191964", + value = "be_bottle02.m2", + text = "be_bottle02.m2", + }, + { + fileId = "191965", + value = "be_bottle03.m2", + text = "be_bottle03.m2", + }, + { + fileId = "191966", + value = "be_bottle04.m2", + text = "be_bottle04.m2", + }, + }, + value = "bottles", + text = "bottles", + }, + { + children = { + { + fileId = "191969", + value = "be_mop01.m2", + text = "be_mop01.m2", + }, + }, + value = "broom", + text = "broom", + }, + { + children = { + { + fileId = "191971", + value = "be_campfire01.m2", + text = "be_campfire01.m2", + }, + { + fileId = "191973", + value = "be_campfire02.m2", + text = "be_campfire02.m2", + }, + }, + value = "campfire", + text = "campfire", + }, + { + children = { + { + fileId = "191978", + value = "be_candle_01.m2", + text = "be_candle_01.m2", + }, + { + fileId = "191979", + value = "be_candle_02.m2", + text = "be_candle_02.m2", + }, + { + fileId = "191980", + value = "be_candleabra01.m2", + text = "be_candleabra01.m2", + }, + }, + value = "candles", + text = "candles", + }, + { + children = { + { + fileId = "191981", + value = "be_chair01.m2", + text = "be_chair01.m2", + }, + { + fileId = "191982", + value = "be_chair02.m2", + text = "be_chair02.m2", + }, + { + fileId = "191983", + value = "be_chair03.m2", + text = "be_chair03.m2", + }, + { + fileId = "191984", + value = "be_chair04.m2", + text = "be_chair04.m2", + }, + { + fileId = "191985", + value = "be_chair_wrecked_01.m2", + text = "be_chair_wrecked_01.m2", + }, + { + fileId = "191986", + value = "be_chair_wrecked_02.m2", + text = "be_chair_wrecked_02.m2", + }, + { + fileId = "191992", + value = "be_throne_01.m2", + text = "be_throne_01.m2", + }, + }, + value = "chairs", + text = "chairs", + }, + { + children = { + { + fileId = "191994", + value = "be_chandelier01.m2", + text = "be_chandelier01.m2", + }, + }, + value = "chandelier", + text = "chandelier", + }, + { + children = { + { + fileId = "191999", + value = "be_cookpot01.m2", + text = "be_cookpot01.m2", + }, + }, + value = "cookpot", + text = "cookpot", + }, + { + children = { + { + fileId = "192001", + value = "be_couch01.m2", + text = "be_couch01.m2", + }, + }, + value = "couch", + text = "couch", + }, + { + children = { + { + fileId = "192002", + value = "be_crate01.m2", + text = "be_crate01.m2", + }, + }, + value = "crate", + text = "crate", + }, + { + children = { + { + fileId = "192003", + value = "be_cup01.m2", + text = "be_cup01.m2", + }, + { + fileId = "192004", + value = "be_cup02.m2", + text = "be_cup02.m2", + }, + { + fileId = "192008", + value = "be_mug01.m2", + text = "be_mug01.m2", + }, + }, + value = "cups", + text = "cups", + }, + { + children = { + { + fileId = "192010", + value = "be_demoncrystal_01.m2", + text = "be_demoncrystal_01.m2", + }, + { + fileId = "192011", + value = "be_demoncrystal_02.m2", + text = "be_demoncrystal_02.m2", + }, + }, + value = "demoncrystals", + text = "demoncrystals", + }, + { + children = { + { + fileId = "192014", + value = "be_demonenergycollector01.m2", + text = "be_demonenergycollector01.m2", + }, + }, + value = "demonenergycollectors", + text = "demonenergycollectors", + }, + { + children = { + { + fileId = "192017", + value = "be_drapery_01.m2", + text = "be_drapery_01.m2", + }, + { + fileId = "192018", + value = "be_drapery_02.m2", + text = "be_drapery_02.m2", + }, + { + fileId = "192019", + value = "be_drapery_03.m2", + text = "be_drapery_03.m2", + }, + { + fileId = "192020", + value = "be_drapery_04.m2", + text = "be_drapery_04.m2", + }, + { + fileId = "192021", + value = "be_drapery_05.m2", + text = "be_drapery_05.m2", + }, + { + fileId = "192022", + value = "be_drapery_06.m2", + text = "be_drapery_06.m2", + }, + }, + value = "drapery", + text = "drapery", + }, + { + children = { + { + fileId = "192026", + value = "be_fish01.m2", + text = "be_fish01.m2", + }, + { + fileId = "192028", + value = "be_meat01.m2", + text = "be_meat01.m2", + }, + }, + value = "food", + text = "food", + }, + { + children = { + { + fileId = "192030", + value = "be_forge.m2", + text = "be_forge.m2", + }, + { + fileId = "192031", + value = "be_forge01.m2", + text = "be_forge01.m2", + }, + }, + value = "forge", + text = "forge", + }, + { + children = { + { + fileId = "192034", + value = "be_fountain01.m2", + text = "be_fountain01.m2", + }, + { + fileId = "192035", + value = "be_fountain01_base.m2", + text = "be_fountain01_base.m2", + }, + { + fileId = "192045", + value = "be_fountaininnardssilvermoon.m2", + text = "be_fountaininnardssilvermoon.m2", + }, + }, + value = "fountains", + text = "fountains", + }, + { + children = { + { + fileId = "192049", + value = "be_gravestone01.m2", + text = "be_gravestone01.m2", + }, + { + fileId = "192050", + value = "be_gravestone02.m2", + text = "be_gravestone02.m2", + }, + { + fileId = "192051", + value = "be_gravestone03.m2", + text = "be_gravestone03.m2", + }, + { + fileId = "192054", + value = "be_tomb01.m2", + text = "be_tomb01.m2", + }, + }, + value = "graveyard", + text = "graveyard", + }, + { + children = { + { + fileId = "192055", + value = "be_hedge_hanging01.m2", + text = "be_hedge_hanging01.m2", + }, + { + fileId = "192056", + value = "be_hedge_hanging02.m2", + text = "be_hedge_hanging02.m2", + }, + { + fileId = "192057", + value = "be_hedge_hanging03.m2", + text = "be_hedge_hanging03.m2", + }, + { + fileId = "192058", + value = "be_hedge_hanging04.m2", + text = "be_hedge_hanging04.m2", + }, + { + fileId = "192059", + value = "be_hedge_hanging05.m2", + text = "be_hedge_hanging05.m2", + }, + { + fileId = "192060", + value = "be_hedge_hanging06.m2", + text = "be_hedge_hanging06.m2", + }, + { + fileId = "192061", + value = "be_hedge_hanging07.m2", + text = "be_hedge_hanging07.m2", + }, + { + fileId = "192062", + value = "be_hedge_hanging08.m2", + text = "be_hedge_hanging08.m2", + }, + { + fileId = "192063", + value = "be_hedge_hanging09.m2", + text = "be_hedge_hanging09.m2", + }, + { + fileId = "192064", + value = "be_hedge_hanging10.m2", + text = "be_hedge_hanging10.m2", + }, + { + fileId = "192065", + value = "be_hedge_hanging11.m2", + text = "be_hedge_hanging11.m2", + }, + { + fileId = "192066", + value = "be_hedge_hanging12.m2", + text = "be_hedge_hanging12.m2", + }, + { + fileId = "192071", + value = "silvermoonhedge01.m2", + text = "silvermoonhedge01.m2", + }, + }, + value = "hedge", + text = "hedge", + }, + { + children = { + { + fileId = "192073", + value = "be_hookah_01.m2", + text = "be_hookah_01.m2", + }, + { + fileId = "192074", + value = "be_hookah_02.m2", + text = "be_hookah_02.m2", + }, + }, + value = "hookah", + text = "hookah", + }, + { + children = { + { + fileId = "192076", + value = "be_incense_01.m2", + text = "be_incense_01.m2", + }, + }, + value = "incense", + text = "incense", + }, + { + children = { + { + fileId = "192078", + value = "be_harp01.m2", + text = "be_harp01.m2", + }, + { + fileId = "192080", + value = "be_lute01.m2", + text = "be_lute01.m2", + }, + }, + value = "instruments", + text = "instruments", + }, + { + children = { + { + fileId = "192082", + value = "be_jar_03.m2", + text = "be_jar_03.m2", + }, + { + fileId = "192083", + value = "be_jar_04.m2", + text = "be_jar_04.m2", + }, + }, + value = "jars", + text = "jars", + }, + { + children = { + { + fileId = "192085", + value = "be_magicalknickknack02.m2", + text = "be_magicalknickknack02.m2", + }, + { + fileId = "192087", + value = "be_magicalknickknack03.m2", + text = "be_magicalknickknack03.m2", + }, + { + fileId = "192089", + value = "be_magicalknickknack04.m2", + text = "be_magicalknickknack04.m2", + }, + }, + value = "knickknacks", + text = "knickknacks", + }, + { + children = { + { + fileId = "192091", + value = "be_lamp01.m2", + text = "be_lamp01.m2", + }, + }, + value = "lamp", + text = "lamp", + }, + { + children = { + { + fileId = "192093", + value = "be_lantern01.m2", + text = "be_lantern01.m2", + }, + }, + value = "lantern", + text = "lantern", + }, + { + children = { + { + fileId = "192094", + value = "be_lavapool.m2", + text = "be_lavapool.m2", + }, + }, + value = "lava", + text = "lava", + }, + { + children = { + { + fileId = "192095", + value = "be_loom_01.m2", + text = "be_loom_01.m2", + }, + }, + value = "loom", + text = "loom", + }, + { + children = { + { + fileId = "192098", + value = "be_merchantstand01.m2", + text = "be_merchantstand01.m2", + }, + { + fileId = "192099", + value = "be_merchantstand02.m2", + text = "be_merchantstand02.m2", + }, + { + fileId = "192100", + value = "be_merchantstand03.m2", + text = "be_merchantstand03.m2", + }, + }, + value = "merchantstand", + text = "merchantstand", + }, + { + children = { + { + fileId = "192103", + value = "be_roadpillar01.m2", + text = "be_roadpillar01.m2", + }, + }, + value = "pillar", + text = "pillar", + }, + { + children = { + { + fileId = "192105", + value = "be_pillow_01.m2", + text = "be_pillow_01.m2", + }, + { + fileId = "192106", + value = "be_pillow_02.m2", + text = "be_pillow_02.m2", + }, + { + fileId = "192107", + value = "be_pillow_03.m2", + text = "be_pillow_03.m2", + }, + { + fileId = "192108", + value = "be_pillow_04.m2", + text = "be_pillow_04.m2", + }, + }, + value = "pillows", + text = "pillows", + }, + { + children = { + { + fileId = "192113", + value = "be_planetarium.m2", + text = "be_planetarium.m2", + }, + { + fileId = "192114", + value = "be_planetarium_active.m2", + text = "be_planetarium_active.m2", + }, + { + fileId = "192115", + value = "be_planetariumdestroyed01.m2", + text = "be_planetariumdestroyed01.m2", + }, + { + fileId = "192116", + value = "be_planetariumdestroyed02.m2", + text = "be_planetariumdestroyed02.m2", + }, + { + fileId = "192117", + value = "be_planetariumdestroyed03.m2", + text = "be_planetariumdestroyed03.m2", + }, + { + fileId = "192118", + value = "be_planetariumdestroyed04.m2", + text = "be_planetariumdestroyed04.m2", + }, + }, + value = "planetarium", + text = "planetarium", + }, + { + children = { + { + fileId = "192120", + value = "be_planter_flowers_01.m2", + text = "be_planter_flowers_01.m2", + }, + { + fileId = "192121", + value = "be_planter_long_01.m2", + text = "be_planter_long_01.m2", + }, + { + fileId = "192122", + value = "be_planter_long_02.m2", + text = "be_planter_long_02.m2", + }, + { + fileId = "192123", + value = "be_planter_long_03.m2", + text = "be_planter_long_03.m2", + }, + { + fileId = "192124", + value = "be_planter_medium_01.m2", + text = "be_planter_medium_01.m2", + }, + { + fileId = "192125", + value = "be_planter_medium_02.m2", + text = "be_planter_medium_02.m2", + }, + { + fileId = "192126", + value = "be_planter_medium_03.m2", + text = "be_planter_medium_03.m2", + }, + { + fileId = "192127", + value = "be_planter_short_01.m2", + text = "be_planter_short_01.m2", + }, + { + fileId = "192128", + value = "be_planter_short_02.m2", + text = "be_planter_short_02.m2", + }, + { + fileId = "192129", + value = "be_planter_short_03.m2", + text = "be_planter_short_03.m2", + }, + }, + value = "planters", + text = "planters", + }, + { + children = { + { + fileId = "192131", + value = "be_podium01.m2", + text = "be_podium01.m2", + }, + }, + value = "podium", + text = "podium", + }, + { + children = { + { + fileId = "192133", + value = "be_signs_wanted.m2", + text = "be_signs_wanted.m2", + }, + }, + value = "posters", + text = "posters", + }, + { + children = { + { + fileId = "192134", + value = "bloodelf_powerorb_green.m2", + text = "bloodelf_powerorb_green.m2", + }, + { + fileId = "192135", + value = "bloodelf_powerorb_red.m2", + text = "bloodelf_powerorb_red.m2", + }, + }, + value = "powerorb", + text = "powerorb", + }, + { + children = { + { + fileId = "192149", + value = "be_roadsign_sign01.m2", + text = "be_roadsign_sign01.m2", + }, + }, + value = "roadsign", + text = "roadsign", + }, + { + children = { + { + fileId = "192151", + value = "be_rowboat.m2", + text = "be_rowboat.m2", + }, + { + fileId = "192153", + value = "be_rowboatwrecked.m2", + text = "be_rowboatwrecked.m2", + }, + }, + value = "rowboat", + text = "rowboat", + }, + { + children = { + { + fileId = "192154", + value = "be_rug_large01.m2", + text = "be_rug_large01.m2", + }, + { + fileId = "192155", + value = "be_rug_large02.m2", + text = "be_rug_large02.m2", + }, + { + fileId = "192156", + value = "be_rug_largeruined01.m2", + text = "be_rug_largeruined01.m2", + }, + { + fileId = "192157", + value = "be_rug_largeruined02.m2", + text = "be_rug_largeruined02.m2", + }, + { + fileId = "192159", + value = "be_rug_medium01.m2", + text = "be_rug_medium01.m2", + }, + { + fileId = "192160", + value = "be_rug_medium02.m2", + text = "be_rug_medium02.m2", + }, + { + fileId = "192161", + value = "be_rug_mediumruined01.m2", + text = "be_rug_mediumruined01.m2", + }, + { + fileId = "192162", + value = "be_rug_mediumruined02.m2", + text = "be_rug_mediumruined02.m2", + }, + { + fileId = "192163", + value = "be_rug_small01.m2", + text = "be_rug_small01.m2", + }, + { + fileId = "192164", + value = "be_rug_small02.m2", + text = "be_rug_small02.m2", + }, + { + fileId = "192165", + value = "be_rug_smallruined01.m2", + text = "be_rug_smallruined01.m2", + }, + { + fileId = "192166", + value = "be_rug_smallruined02.m2", + text = "be_rug_smallruined02.m2", + }, + }, + value = "rugs", + text = "rugs", + }, + { + children = { + { + fileId = "192173", + value = "be_runestone01.m2", + text = "be_runestone01.m2", + }, + }, + value = "runestone", + text = "runestone", + }, + { + children = { + { + fileId = "192175", + value = "be_sconce01.m2", + text = "be_sconce01.m2", + }, + { + fileId = "192176", + value = "be_sconce02.m2", + text = "be_sconce02.m2", + }, + }, + value = "sconce", + text = "sconce", + }, + { + children = { + { + fileId = "192179", + value = "be_scryingorb.m2", + text = "be_scryingorb.m2", + }, + { + fileId = "192180", + value = "be_scryingorb_epic.m2", + text = "be_scryingorb_epic.m2", + }, + }, + value = "scryingorb", + text = "scryingorb", + }, + { + children = { + { + fileId = "192181", + value = "be_shield01.m2", + text = "be_shield01.m2", + }, + { + fileId = "192182", + value = "be_shield02.m2", + text = "be_shield02.m2", + }, + { + fileId = "192183", + value = "be_shield03.m2", + text = "be_shield03.m2", + }, + }, + value = "shield", + text = "shield", + }, + { + children = { + { + fileId = "192184", + value = "be_signs_alchemy.m2", + text = "be_signs_alchemy.m2", + }, + { + fileId = "192186", + value = "be_signs_axe.m2", + text = "be_signs_axe.m2", + }, + { + fileId = "192188", + value = "be_signs_bank.m2", + text = "be_signs_bank.m2", + }, + { + fileId = "192190", + value = "be_signs_book.m2", + text = "be_signs_book.m2", + }, + { + fileId = "192192", + value = "be_signs_bow.m2", + text = "be_signs_bow.m2", + }, + { + fileId = "192194", + value = "be_signs_bread.m2", + text = "be_signs_bread.m2", + }, + { + fileId = "192196", + value = "be_signs_cheese.m2", + text = "be_signs_cheese.m2", + }, + { + fileId = "192198", + value = "be_signs_cooking.m2", + text = "be_signs_cooking.m2", + }, + { + fileId = "192200", + value = "be_signs_drink.m2", + text = "be_signs_drink.m2", + }, + { + fileId = "192202", + value = "be_signs_engineering.m2", + text = "be_signs_engineering.m2", + }, + { + fileId = "192204", + value = "be_signs_generalshop.m2", + text = "be_signs_generalshop.m2", + }, + { + fileId = "192206", + value = "be_signs_helm.m2", + text = "be_signs_helm.m2", + }, + { + fileId = "192208", + value = "be_signs_herbalism.m2", + text = "be_signs_herbalism.m2", + }, + { + fileId = "192210", + value = "be_signs_meat.m2", + text = "be_signs_meat.m2", + }, + { + fileId = "192212", + value = "be_signs_poison.m2", + text = "be_signs_poison.m2", + }, + { + fileId = "192214", + value = "be_signs_shield.m2", + text = "be_signs_shield.m2", + }, + { + fileId = "192216", + value = "be_signs_staff.m2", + text = "be_signs_staff.m2", + }, + { + fileId = "192218", + value = "be_signs_sword.m2", + text = "be_signs_sword.m2", + }, + { + fileId = "192220", + value = "be_signs_tailor.m2", + text = "be_signs_tailor.m2", + }, + { + fileId = "192222", + value = "be_signs_tavern.m2", + text = "be_signs_tavern.m2", + }, + }, + value = "shopsigns", + text = "shopsigns", + }, + { + children = { + { + fileId = "192224", + value = "ghostlandsshroom01.m2", + text = "ghostlandsshroom01.m2", + }, + { + fileId = "192228", + value = "ghostlandssporemound01.m2", + text = "ghostlandssporemound01.m2", + }, + }, + value = "shrooms", + text = "shrooms", + }, + { + children = { + { + fileId = "192229", + value = "be_statue01.m2", + text = "be_statue01.m2", + }, + { + fileId = "192230", + value = "be_statue02.m2", + text = "be_statue02.m2", + }, + { + fileId = "192232", + value = "be_statuebig.m2", + text = "be_statuebig.m2", + }, + { + fileId = "192234", + value = "be_statuemale.m2", + text = "be_statuemale.m2", + }, + { + fileId = "192236", + value = "be_statueranger.m2", + text = "be_statueranger.m2", + }, + }, + value = "statues", + text = "statues", + }, + { + children = { + { + fileId = "192242", + value = "be_table_large01.m2", + text = "be_table_large01.m2", + }, + { + fileId = "192243", + value = "be_table_large02.m2", + text = "be_table_large02.m2", + }, + { + fileId = "192244", + value = "be_table_large03.m2", + text = "be_table_large03.m2", + }, + { + fileId = "192245", + value = "be_table_small01.m2", + text = "be_table_small01.m2", + }, + { + fileId = "192247", + value = "be_table_wrecked_01.m2", + text = "be_table_wrecked_01.m2", + }, + { + fileId = "192248", + value = "be_table_wrecked_02.m2", + text = "be_table_wrecked_02.m2", + }, + }, + value = "tables", + text = "tables", + }, + { + children = { + { + fileId = "192250", + value = "be_teleporter_01.m2", + text = "be_teleporter_01.m2", + }, + }, + value = "teleporter", + text = "teleporter", + }, + { + children = { + { + fileId = "192252", + value = "be_tent01.m2", + text = "be_tent01.m2", + }, + { + fileId = "192253", + value = "be_tent02.m2", + text = "be_tent02.m2", + }, + { + fileId = "192254", + value = "be_tent03.m2", + text = "be_tent03.m2", + }, + { + fileId = "192255", + value = "be_tent04.m2", + text = "be_tent04.m2", + }, + { + fileId = "192257", + value = "be_tentwrecked01.m2", + text = "be_tentwrecked01.m2", + }, + { + fileId = "192258", + value = "be_tentwrecked02.m2", + text = "be_tentwrecked02.m2", + }, + }, + value = "tents", + text = "tents", + }, + { + children = { + { + fileId = "192262", + value = "be_translocator.m2", + text = "be_translocator.m2", + }, + { + fileId = "192266", + value = "be_translocator_minor.m2", + text = "be_translocator_minor.m2", + }, + }, + value = "translocator", + text = "translocator", + }, + { + children = { + { + fileId = "192279", + value = "ghostlandssmalltree01.m2", + text = "ghostlandssmalltree01.m2", + }, + { + fileId = "192280", + value = "ghostlandssmalltree02.m2", + text = "ghostlandssmalltree02.m2", + }, + { + fileId = "192281", + value = "ghostlandssmalltree03.m2", + text = "ghostlandssmalltree03.m2", + }, + { + fileId = "192282", + value = "ghostlandstree01.m2", + text = "ghostlandstree01.m2", + }, + { + fileId = "192283", + value = "ghostlandstree02.m2", + text = "ghostlandstree02.m2", + }, + { + fileId = "192284", + value = "ghostlandstree03.m2", + text = "ghostlandstree03.m2", + }, + { + fileId = "192285", + value = "ghostlandstree04.m2", + text = "ghostlandstree04.m2", + }, + { + fileId = "192286", + value = "ghostlandstree05.m2", + text = "ghostlandstree05.m2", + }, + { + fileId = "192287", + value = "silvermoonbush01.m2", + text = "silvermoonbush01.m2", + }, + { + fileId = "192289", + value = "silvermoonbush02.m2", + text = "silvermoonbush02.m2", + }, + { + fileId = "192291", + value = "silvermoonbush03.m2", + text = "silvermoonbush03.m2", + }, + { + fileId = "192292", + value = "silvermoonbush04.m2", + text = "silvermoonbush04.m2", + }, + { + fileId = "192293", + value = "silvermoontree09.m2", + text = "silvermoontree09.m2", + }, + { + fileId = "192294", + value = "silvermoontree10.m2", + text = "silvermoontree10.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "192299", + value = "be_wagon.m2", + text = "be_wagon.m2", + }, + { + fileId = "192300", + value = "be_wagon02.m2", + text = "be_wagon02.m2", + }, + { + fileId = "192303", + value = "be_wagon_wrecked.m2", + text = "be_wagon_wrecked.m2", + }, + }, + value = "wagon", + text = "wagon", + }, + { + children = { + { + fileId = "192306", + value = "be_weaponrack_01.m2", + text = "be_weaponrack_01.m2", + }, + { + fileId = "192307", + value = "be_weaponrack_02.m2", + text = "be_weaponrack_02.m2", + }, + }, + value = "weaponracks", + text = "weaponracks", + }, + { + children = { + { + fileId = "192309", + value = "be_knife01.m2", + text = "be_knife01.m2", + }, + { + fileId = "192310", + value = "be_knife02.m2", + text = "be_knife02.m2", + }, + { + fileId = "192311", + value = "be_knife03.m2", + text = "be_knife03.m2", + }, + { + fileId = "192312", + value = "be_stave01.m2", + text = "be_stave01.m2", + }, + { + fileId = "192313", + value = "be_stave02.m2", + text = "be_stave02.m2", + }, + { + fileId = "192314", + value = "be_sword01.m2", + text = "be_sword01.m2", + }, + { + fileId = "192315", + value = "be_sword02.m2", + text = "be_sword02.m2", + }, + { + fileId = "192316", + value = "be_sword03.m2", + text = "be_sword03.m2", + }, + }, + value = "weapons", + text = "weapons", + }, + }, + value = "bloodelf", + text = "bloodelf", + }, + { + children = { + { + children = { + { + fileId = "192317", + value = "bu_banner_01.m2", + text = "bu_banner_01.m2", + }, + { + fileId = "192318", + value = "bu_banner_02.m2", + text = "bu_banner_02.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "192324", + value = "bu_brazier_01.m2", + text = "bu_brazier_01.m2", + }, + }, + value = "braziers", + text = "braziers", + }, + { + children = { + { + fileId = "192327", + value = "bu_cannon_01.m2", + text = "bu_cannon_01.m2", + }, + { + fileId = "192328", + value = "bu_cannon_base.m2", + text = "bu_cannon_base.m2", + }, + { + fileId = "192329", + value = "bu_cannon_base_02.m2", + text = "bu_cannon_base_02.m2", + }, + }, + value = "cannon", + text = "cannon", + }, + { + children = { + { + fileId = "192331", + value = "bu_crystalforge.m2", + text = "bu_crystalforge.m2", + }, + { + fileId = "192332", + value = "bu_crystalforgecontroller.m2", + text = "bu_crystalforgecontroller.m2", + }, + }, + value = "crystalforge", + text = "crystalforge", + }, + { + children = { + { + fileId = "192333", + value = "felcannonballs01.m2", + text = "felcannonballs01.m2", + }, + { + fileId = "192334", + value = "felcannonballs02.m2", + text = "felcannonballs02.m2", + }, + }, + value = "felcannonballs", + text = "felcannonballs", + }, + { + children = { + { + fileId = "192335", + value = "bu_felreaver_01.m2", + text = "bu_felreaver_01.m2", + }, + { + fileId = "192336", + value = "bu_felreaver_02.m2", + text = "bu_felreaver_02.m2", + }, + { + fileId = "192337", + value = "bu_felreaver_03.m2", + text = "bu_felreaver_03.m2", + }, + { + fileId = "192338", + value = "bu_felreaver_04.m2", + text = "bu_felreaver_04.m2", + }, + { + fileId = "192339", + value = "bu_felreaver_05.m2", + text = "bu_felreaver_05.m2", + }, + { + fileId = "192340", + value = "bu_felreaver_06.m2", + text = "bu_felreaver_06.m2", + }, + }, + value = "felreaver", + text = "felreaver", + }, + { + children = { + { + fileId = "192342", + value = "bu_generator_01.m2", + text = "bu_generator_01.m2", + }, + }, + value = "generator", + text = "generator", + }, + { + children = { + { + fileId = "192343", + value = "bu_junk_01.m2", + text = "bu_junk_01.m2", + }, + { + fileId = "192344", + value = "bu_junk_02.m2", + text = "bu_junk_02.m2", + }, + { + fileId = "192346", + value = "bu_oblisk_01.m2", + text = "bu_oblisk_01.m2", + }, + { + fileId = "192347", + value = "bu_smoke_stack_01.m2", + text = "bu_smoke_stack_01.m2", + }, + }, + value = "ruins", + text = "ruins", + }, + { + children = { + { + fileId = "192349", + value = "bu_teleporter_01.m2", + text = "bu_teleporter_01.m2", + }, + { + fileId = "192350", + value = "bu_teleporter_02.m2", + text = "bu_teleporter_02.m2", + }, + }, + value = "teleporter", + text = "teleporter", + }, + { + children = { + { + fileId = "192354", + value = "bu_forge_01.m2", + text = "bu_forge_01.m2", + }, + }, + value = "tradeskill", + text = "tradeskill", + }, + }, + value = "burninglegion", + text = "burninglegion", + }, + { + children = { + { + children = { + { + fileId = "192356", + value = "dr_banner01.m2", + text = "dr_banner01.m2", + }, + }, + value = "banner", + text = "banner", + }, + { + children = { + { + fileId = "192358", + value = "draenei_bed01.m2", + text = "draenei_bed01.m2", + }, + }, + value = "bed", + text = "bed", + }, + { + children = { + { + fileId = "192359", + value = "dr_bench_01.m2", + text = "dr_bench_01.m2", + }, + }, + value = "bench", + text = "bench", + }, + { + children = { + { + fileId = "192362", + value = "dr_anvil_01.m2", + text = "dr_anvil_01.m2", + }, + { + fileId = "192363", + value = "dr_forge_01.m2", + text = "dr_forge_01.m2", + }, + }, + value = "blacksmith", + text = "blacksmith", + }, + { + children = { + { + fileId = "192364", + value = "dr_bottle_01.m2", + text = "dr_bottle_01.m2", + }, + { + fileId = "192365", + value = "dr_bottle_02.m2", + text = "dr_bottle_02.m2", + }, + }, + value = "bottles", + text = "bottles", + }, + { + children = { + { + fileId = "192367", + value = "dr_bowl_01.m2", + text = "dr_bowl_01.m2", + }, + { + fileId = "192368", + value = "dr_bowl_02.m2", + text = "dr_bowl_02.m2", + }, + }, + value = "bowls", + text = "bowls", + }, + { + children = { + { + fileId = "192371", + value = "dr_brazier_01.m2", + text = "dr_brazier_01.m2", + }, + { + fileId = "192373", + value = "dr_brazier_02.m2", + text = "dr_brazier_02.m2", + }, + { + fileId = "192374", + value = "dr_brazier_03.m2", + text = "dr_brazier_03.m2", + }, + }, + value = "brazier", + text = "brazier", + }, + { + children = { + { + fileId = "192375", + value = "dr_cable_medium.m2", + text = "dr_cable_medium.m2", + }, + { + fileId = "192376", + value = "dr_cable_thin.m2", + text = "dr_cable_thin.m2", + }, + { + fileId = "192377", + value = "dr_cable_wide.m2", + text = "dr_cable_wide.m2", + }, + }, + value = "cables", + text = "cables", + }, + { + children = { + { + fileId = "192379", + value = "dr_chandelier_01.m2", + text = "dr_chandelier_01.m2", + }, + }, + value = "chandelier", + text = "chandelier", + }, + { + children = { + { + fileId = "192381", + value = "dr_cookpot_01.m2", + text = "dr_cookpot_01.m2", + }, + }, + value = "cookpots", + text = "cookpots", + }, + { + children = { + { + fileId = "192382", + value = "dr_crashplate01.m2", + text = "dr_crashplate01.m2", + }, + { + fileId = "192383", + value = "dr_crashplate02.m2", + text = "dr_crashplate02.m2", + }, + }, + value = "crashplate", + text = "crashplate", + }, + { + children = { + { + fileId = "192387", + value = "dr_crate_01.m2", + text = "dr_crate_01.m2", + }, + { + fileId = "192388", + value = "dr_crate_02.m2", + text = "dr_crate_02.m2", + }, + }, + value = "crates", + text = "crates", + }, + { + children = { + { + fileId = "192390", + value = "dr_cryopod_bottom.m2", + text = "dr_cryopod_bottom.m2", + }, + { + fileId = "192391", + value = "dr_cryopod_intact.m2", + text = "dr_cryopod_intact.m2", + }, + { + fileId = "192392", + value = "dr_cryopod_top.m2", + text = "dr_cryopod_top.m2", + }, + { + fileId = "192393", + value = "dr_cryopod_wrecked.m2", + text = "dr_cryopod_wrecked.m2", + }, + }, + value = "cryopods", + text = "cryopods", + }, + { + children = { + { + fileId = "192397", + value = "hellfirecrystalformation_01_pink.m2", + text = "hellfirecrystalformation_01_pink.m2", + }, + }, + value = "crystals", + text = "crystals", + }, + { + children = { + { + fileId = "192398", + value = "dr_cup_01.m2", + text = "dr_cup_01.m2", + }, + { + fileId = "192399", + value = "dr_cup_02.m2", + text = "dr_cup_02.m2", + }, + }, + value = "cups", + text = "cups", + }, + { + children = { + { + fileId = "192401", + value = "tech_arch01.m2", + text = "tech_arch01.m2", + }, + { + fileId = "192402", + value = "tech_arch02.m2", + text = "tech_arch02.m2", + }, + }, + value = "draenei_arches", + text = "draenei_arches", + }, + { + children = { + { + fileId = "192403", + value = "draenei_wreckage_claw.m2", + text = "draenei_wreckage_claw.m2", + }, + { + fileId = "192404", + value = "draenei_wreckage_frame.m2", + text = "draenei_wreckage_frame.m2", + }, + { + fileId = "192405", + value = "draenei_wreckage_smallwindow.m2", + text = "draenei_wreckage_smallwindow.m2", + }, + }, + value = "draenei_wreckage", + text = "draenei_wreckage", + }, + { + children = { + { + fileId = "192406", + value = "exodarbridge01.m2", + text = "exodarbridge01.m2", + }, + { + fileId = "192407", + value = "exodarbridge02.m2", + text = "exodarbridge02.m2", + }, + { + fileId = "192408", + value = "exodarbridge03.m2", + text = "exodarbridge03.m2", + }, + { + fileId = "192409", + value = "exodarplatform01.m2", + text = "exodarplatform01.m2", + }, + }, + value = "exodar", + text = "exodar", + }, + { + children = { + { + fileId = "192410", + value = "dr_exodarwall01.m2", + text = "dr_exodarwall01.m2", + }, + { + fileId = "192411", + value = "dr_exodarwall02.m2", + text = "dr_exodarwall02.m2", + }, + }, + value = "exxodarwalls", + text = "exxodarwalls", + }, + { + children = { + { + fileId = "192412", + value = "glowywaterstream01.m2", + text = "glowywaterstream01.m2", + }, + }, + value = "fountain", + text = "fountain", + }, + { + children = { + { + fileId = "192413", + value = "dr_fountian.m2", + text = "dr_fountian.m2", + }, + { + fileId = "192414", + value = "dr_fountian_ruined.m2", + text = "dr_fountian_ruined.m2", + }, + }, + value = "fountian", + text = "fountian", + }, + { + children = { + { + fileId = "192416", + value = "dr_glow.m2", + text = "dr_glow.m2", + }, + { + fileId = "192417", + value = "dr_glow_blue.m2", + text = "dr_glow_blue.m2", + }, + { + fileId = "192418", + value = "dr_rays_blue.m2", + text = "dr_rays_blue.m2", + }, + { + fileId = "192419", + value = "dr_rays_orange.m2", + text = "dr_rays_orange.m2", + }, + { + fileId = "192420", + value = "dr_rays_pink.m2", + text = "dr_rays_pink.m2", + }, + }, + value = "glow", + text = "glow", + }, + { + children = { + { + fileId = "192423", + value = "dr_tomb.m2", + text = "dr_tomb.m2", + }, + { + fileId = "192424", + value = "dr_tombstone01.m2", + text = "dr_tombstone01.m2", + }, + { + fileId = "192425", + value = "dr_tombstone02.m2", + text = "dr_tombstone02.m2", + }, + { + fileId = "192426", + value = "dr_tombstone03.m2", + text = "dr_tombstone03.m2", + }, + }, + value = "graveyard", + text = "graveyard", + }, + { + children = { + { + fileId = "192427", + value = "dr_draenei_holorunes01.m2", + text = "dr_draenei_holorunes01.m2", + }, + { + fileId = "192428", + value = "dr_draenei_holorunes01_big.m2", + text = "dr_draenei_holorunes01_big.m2", + }, + { + fileId = "192429", + value = "dr_draenei_holorunes01_bigred.m2", + text = "dr_draenei_holorunes01_bigred.m2", + }, + { + fileId = "192430", + value = "dr_draenei_holorunes02.m2", + text = "dr_draenei_holorunes02.m2", + }, + { + fileId = "192431", + value = "dr_draenei_holorunes02_big.m2", + text = "dr_draenei_holorunes02_big.m2", + }, + { + fileId = "192432", + value = "dr_draenei_holorunes02_bigred.m2", + text = "dr_draenei_holorunes02_bigred.m2", + }, + { + fileId = "192433", + value = "dr_draenei_holorunes03.m2", + text = "dr_draenei_holorunes03.m2", + }, + { + fileId = "192434", + value = "dr_draenei_holorunes03_big.m2", + text = "dr_draenei_holorunes03_big.m2", + }, + { + fileId = "192435", + value = "dr_draenei_holorunes03_bigred.m2", + text = "dr_draenei_holorunes03_bigred.m2", + }, + }, + value = "holo", + text = "holo", + }, + { + children = { + { + fileId = "192441", + value = "dr_holographic_stand.m2", + text = "dr_holographic_stand.m2", + }, + }, + value = "holographicstand", + text = "holographicstand", + }, + { + children = { + { + fileId = "192445", + value = "dr_banner02.m2", + text = "dr_banner02.m2", + }, + { + fileId = "192446", + value = "dr_cryopod_intact2.m2", + text = "dr_cryopod_intact2.m2", + }, + { + fileId = "192447", + value = "dr_knickknack_01.m2", + text = "dr_knickknack_01.m2", + }, + { + fileId = "192448", + value = "dr_knickknack_02.m2", + text = "dr_knickknack_02.m2", + }, + { + fileId = "192449", + value = "dr_knickknack_02b.m2", + text = "dr_knickknack_02b.m2", + }, + { + fileId = "192450", + value = "dr_knickknack_03.m2", + text = "dr_knickknack_03.m2", + }, + { + fileId = "192451", + value = "dr_knickknack_04.m2", + text = "dr_knickknack_04.m2", + }, + }, + value = "knickknacks", + text = "knickknacks", + }, + { + children = { + { + fileId = "192455", + value = "dr_lamppost_01.m2", + text = "dr_lamppost_01.m2", + }, + { + fileId = "192456", + value = "dr_lamppost_02.m2", + text = "dr_lamppost_02.m2", + }, + }, + value = "lampposts", + text = "lampposts", + }, + { + children = { + { + fileId = "192458", + value = "dr_lantern_01.m2", + text = "dr_lantern_01.m2", + }, + }, + value = "lanterns", + text = "lanterns", + }, + { + children = { + { + fileId = "192460", + value = "dr_loom_01.m2", + text = "dr_loom_01.m2", + }, + }, + value = "loom", + text = "loom", + }, + { + children = { + { + fileId = "192461", + value = "dr_machineparts01.m2", + text = "dr_machineparts01.m2", + }, + }, + value = "machines", + text = "machines", + }, + { + children = { + { + fileId = "192464", + value = "draeneipostbox.m2", + text = "draeneipostbox.m2", + }, + }, + value = "mailbox", + text = "mailbox", + }, + { + children = { + { + fileId = "192465", + value = "dr_parasol_large.m2", + text = "dr_parasol_large.m2", + }, + { + fileId = "192466", + value = "dr_parasol_small.m2", + text = "dr_parasol_small.m2", + }, + }, + value = "parasol", + text = "parasol", + }, + { + children = { + { + fileId = "192468", + value = "dr_signs_wanted.m2", + text = "dr_signs_wanted.m2", + }, + }, + value = "posters", + text = "posters", + }, + { + children = { + { + fileId = "192470", + value = "dr_signs_alchemy.m2", + text = "dr_signs_alchemy.m2", + }, + { + fileId = "192472", + value = "dr_signs_anvil.m2", + text = "dr_signs_anvil.m2", + }, + { + fileId = "192474", + value = "dr_signs_axes.m2", + text = "dr_signs_axes.m2", + }, + { + fileId = "192476", + value = "dr_signs_bank.m2", + text = "dr_signs_bank.m2", + }, + { + fileId = "192479", + value = "dr_signs_book.m2", + text = "dr_signs_book.m2", + }, + { + fileId = "192481", + value = "dr_signs_bow.m2", + text = "dr_signs_bow.m2", + }, + { + fileId = "192483", + value = "dr_signs_bread.m2", + text = "dr_signs_bread.m2", + }, + { + fileId = "192485", + value = "dr_signs_cheese.m2", + text = "dr_signs_cheese.m2", + }, + { + fileId = "192487", + value = "dr_signs_container.m2", + text = "dr_signs_container.m2", + }, + { + fileId = "192489", + value = "dr_signs_cooking.m2", + text = "dr_signs_cooking.m2", + }, + { + fileId = "192491", + value = "dr_signs_engineering.m2", + text = "dr_signs_engineering.m2", + }, + { + fileId = "192493", + value = "dr_signs_generalshop.m2", + text = "dr_signs_generalshop.m2", + }, + { + fileId = "192495", + value = "dr_signs_helm.m2", + text = "dr_signs_helm.m2", + }, + { + fileId = "192497", + value = "dr_signs_herbalism.m2", + text = "dr_signs_herbalism.m2", + }, + { + fileId = "192499", + value = "dr_signs_meat.m2", + text = "dr_signs_meat.m2", + }, + { + fileId = "192501", + value = "dr_signs_poisons.m2", + text = "dr_signs_poisons.m2", + }, + { + fileId = "192503", + value = "dr_signs_shield.m2", + text = "dr_signs_shield.m2", + }, + { + fileId = "192505", + value = "dr_signs_staff.m2", + text = "dr_signs_staff.m2", + }, + { + fileId = "192507", + value = "dr_signs_swords.m2", + text = "dr_signs_swords.m2", + }, + { + fileId = "192509", + value = "dr_signs_tailor.m2", + text = "dr_signs_tailor.m2", + }, + { + fileId = "192511", + value = "dr_signs_tavern.m2", + text = "dr_signs_tavern.m2", + }, + }, + value = "shopsigns", + text = "shopsigns", + }, + { + children = { + { + fileId = "192513", + value = "dr_signpost_01.m2", + text = "dr_signpost_01.m2", + }, + { + fileId = "192514", + value = "dr_signpost_sign01.m2", + text = "dr_signpost_sign01.m2", + }, + }, + value = "signs", + text = "signs", + }, + { + children = { + { + fileId = "192515", + value = "dr_table_medium_01.m2", + text = "dr_table_medium_01.m2", + }, + { + fileId = "192516", + value = "dr_table_small_02.m2", + text = "dr_table_small_02.m2", + }, + }, + value = "tables", + text = "tables", + }, + { + children = { + { + fileId = "192518", + value = "atriumbridge.m2", + text = "atriumbridge.m2", + }, + { + fileId = "192529", + value = "factorybridge.m2", + text = "factorybridge.m2", + }, + { + fileId = "192530", + value = "factoryelevator.m2", + text = "factoryelevator.m2", + }, + { + fileId = "192531", + value = "factoryenergycube.m2", + text = "factoryenergycube.m2", + }, + { + fileId = "192532", + value = "factoryenergycube_3x3.m2", + text = "factoryenergycube_3x3.m2", + }, + { + fileId = "192533", + value = "factoryfloor.m2", + text = "factoryfloor.m2", + }, + { + fileId = "192535", + value = "narru_crystal_corrupted.m2", + text = "narru_crystal_corrupted.m2", + }, + { + fileId = "192536", + value = "narru_crystal_corrupted_no_lightning.m2", + text = "narru_crystal_corrupted_no_lightning.m2", + }, + { + fileId = "192537", + value = "raid_circle_floor.m2", + text = "raid_circle_floor.m2", + }, + }, + value = "tempestkeep", + text = "tempestkeep", + }, + { + children = { + { + fileId = "192542", + value = "dr_tent_01.m2", + text = "dr_tent_01.m2", + }, + { + fileId = "192543", + value = "dr_tent_02.m2", + text = "dr_tent_02.m2", + }, + }, + value = "tents", + text = "tents", + }, + { + children = { + { + fileId = "192545", + value = "draenei_tubes.m2", + text = "draenei_tubes.m2", + }, + { + fileId = "192546", + value = "draenei_tubes_offset.m2", + text = "draenei_tubes_offset.m2", + }, + }, + value = "tubes", + text = "tubes", + }, + { + children = { + { + fileId = "192554", + value = "draenei_ancientwall01.m2", + text = "draenei_ancientwall01.m2", + }, + { + fileId = "192555", + value = "draenei_ancientwall02.m2", + text = "draenei_ancientwall02.m2", + }, + }, + value = "wall", + text = "wall", + }, + }, + value = "draenei", + text = "draenei", + }, + { + children = { + { + children = { + { + fileId = "192556", + value = "et_barrel01.m2", + text = "et_barrel01.m2", + }, + { + fileId = "192557", + value = "et_barrel01off.m2", + text = "et_barrel01off.m2", + }, + }, + value = "barrel", + text = "barrel", + }, + { + children = { + { + fileId = "192559", + value = "et_cage.m2", + text = "et_cage.m2", + }, + { + fileId = "192561", + value = "et_cagebase.m2", + text = "et_cagebase.m2", + }, + }, + value = "cage", + text = "cage", + }, + { + children = { + { + fileId = "192562", + value = "et_collector01.m2", + text = "et_collector01.m2", + }, + }, + value = "collector", + text = "collector", + }, + { + children = { + { + fileId = "192563", + value = "et_crate01.m2", + text = "et_crate01.m2", + }, + { + fileId = "192564", + value = "et_crate01off.m2", + text = "et_crate01off.m2", + }, + }, + value = "crate", + text = "crate", + }, + { + children = { + { + fileId = "192566", + value = "et_crystalforge.m2", + text = "et_crystalforge.m2", + }, + { + fileId = "192567", + value = "et_crystalforgecontroller.m2", + text = "et_crystalforgecontroller.m2", + }, + }, + value = "crystalforge", + text = "crystalforge", + }, + { + children = { + { + fileId = "192568", + value = "et_holographic_stand.m2", + text = "et_holographic_stand.m2", + }, + }, + value = "holographicstand", + text = "holographicstand", + }, + { + children = { + { + fileId = "192569", + value = "et_lamppost01.m2", + text = "et_lamppost01.m2", + }, + { + fileId = "192570", + value = "et_lamppost01off.m2", + text = "et_lamppost01off.m2", + }, + }, + value = "lamppost", + text = "lamppost", + }, + { + children = { + { + fileId = "192572", + value = "et_portal01.m2", + text = "et_portal01.m2", + }, + { + fileId = "192573", + value = "et_portal01off.m2", + text = "et_portal01off.m2", + }, + { + fileId = "192574", + value = "et_portal01offhalf.m2", + text = "et_portal01offhalf.m2", + }, + }, + value = "portal", + text = "portal", + }, + { + children = { + { + fileId = "192576", + value = "et_standard.m2", + text = "et_standard.m2", + }, + }, + value = "standard", + text = "standard", + }, + { + children = { + { + fileId = "192577", + value = "et_tent01.m2", + text = "et_tent01.m2", + }, + { + fileId = "192578", + value = "et_tent02.m2", + text = "et_tent02.m2", + }, + }, + value = "tents", + text = "tents", + }, + }, + value = "ethereal", + text = "ethereal", + }, + { + children = { + { + fileId = "192579", + value = "fishfrenzy.m2", + text = "fishfrenzy.m2", + }, + }, + value = "fishfrenzy", + text = "fishfrenzy", + }, + { + children = { + { + children = { + { + fileId = "192581", + value = "ghostlands_gravestone01.m2", + text = "ghostlands_gravestone01.m2", + }, + { + fileId = "192582", + value = "ghostlands_gravestone02.m2", + text = "ghostlands_gravestone02.m2", + }, + { + fileId = "192583", + value = "ghostlands_gravestone03.m2", + text = "ghostlands_gravestone03.m2", + }, + { + fileId = "192585", + value = "ghostlands_tomb01.m2", + text = "ghostlands_tomb01.m2", + }, + }, + value = "graveyard", + text = "graveyard", + }, + }, + value = "ghostlands", + text = "ghostlands", + }, + { + children = { + { + fileId = "192586", + value = "hologram_doomguard.m2", + text = "hologram_doomguard.m2", + }, + { + fileId = "192590", + value = "hologram_dreadlord.m2", + text = "hologram_dreadlord.m2", + }, + { + fileId = "192593", + value = "hologram_eredar.m2", + text = "hologram_eredar.m2", + }, + { + fileId = "192596", + value = "hologram_felguard.m2", + text = "hologram_felguard.m2", + }, + { + fileId = "192598", + value = "hologram_felhound.m2", + text = "hologram_felhound.m2", + }, + { + fileId = "192600", + value = "hologram_ganarg.m2", + text = "hologram_ganarg.m2", + }, + { + fileId = "192602", + value = "hologram_imp.m2", + text = "hologram_imp.m2", + }, + { + fileId = "192604", + value = "hologram_infernal.m2", + text = "hologram_infernal.m2", + }, + { + fileId = "192606", + value = "hologram_moarg.m2", + text = "hologram_moarg.m2", + }, + { + fileId = "192608", + value = "hologram_pitlord.m2", + text = "hologram_pitlord.m2", + }, + { + fileId = "192612", + value = "hologram_shivan.m2", + text = "hologram_shivan.m2", + }, + { + fileId = "192615", + value = "hologram_succubus.m2", + text = "hologram_succubus.m2", + }, + { + fileId = "192619", + value = "hologram_voidwalker.m2", + text = "hologram_voidwalker.m2", + }, + { + fileId = "192621", + value = "hologram_wrathguard.m2", + text = "hologram_wrathguard.m2", + }, + }, + value = "holograms", + text = "holograms", + }, + { + children = { + { + children = { + { + fileId = "192623", + value = "bannerillidan.m2", + text = "bannerillidan.m2", + }, + }, + value = "banners", + text = "banners", + }, + }, + value = "illidan", + text = "illidan", + }, + { + children = { + { + children = { + { + fileId = "192626", + value = "lo_wagon_01.m2", + text = "lo_wagon_01.m2", + }, + }, + value = "wagon", + text = "wagon", + }, + { + children = { + { + fileId = "192631", + value = "lo_weaponrack.m2", + text = "lo_weaponrack.m2", + }, + }, + value = "weaponrack", + text = "weaponrack", + }, + }, + value = "lostones", + text = "lostones", + }, + { + children = { + { + children = { + { + fileId = "192633", + value = "na_ark.m2", + text = "na_ark.m2", + }, + }, + value = "ark", + text = "ark", + }, + { + children = { + { + fileId = "192637", + value = "na_banner01.m2", + text = "na_banner01.m2", + }, + }, + value = "banner", + text = "banner", + }, + { + children = { + { + fileId = "192638", + value = "na_crate01.m2", + text = "na_crate01.m2", + }, + { + fileId = "192639", + value = "na_crate02.m2", + text = "na_crate02.m2", + }, + }, + value = "crates", + text = "crates", + }, + { + children = { + { + fileId = "192641", + value = "na_distiller.m2", + text = "na_distiller.m2", + }, + }, + value = "distiller", + text = "distiller", + }, + { + children = { + { + fileId = "192642", + value = "na_jar01.m2", + text = "na_jar01.m2", + }, + { + fileId = "192643", + value = "na_jar02.m2", + text = "na_jar02.m2", + }, + }, + value = "jars", + text = "jars", + }, + { + children = { + { + fileId = "192645", + value = "nagapagodahut01.m2", + text = "nagapagodahut01.m2", + }, + }, + value = "pagoda", + text = "pagoda", + }, + { + children = { + { + fileId = "192647", + value = "na_torch01.m2", + text = "na_torch01.m2", + }, + }, + value = "torch", + text = "torch", + }, + { + children = { + { + fileId = "192649", + value = "na_weaponstack01.m2", + text = "na_weaponstack01.m2", + }, + { + fileId = "192650", + value = "na_weaponstack02.m2", + text = "na_weaponstack02.m2", + }, + }, + value = "weaponstacks", + text = "weaponstacks", + }, + }, + value = "naga", + text = "naga", + }, + { + children = { + { + children = { + { + fileId = "192651", + value = "om_bones_01.m2", + text = "om_bones_01.m2", + }, + { + fileId = "192652", + value = "om_bones_02.m2", + text = "om_bones_02.m2", + }, + { + fileId = "192653", + value = "om_bones_03.m2", + text = "om_bones_03.m2", + }, + }, + value = "bones", + text = "bones", + }, + { + children = { + { + fileId = "192655", + value = "om_chains_01.m2", + text = "om_chains_01.m2", + }, + { + fileId = "192656", + value = "om_chains_02.m2", + text = "om_chains_02.m2", + }, + { + fileId = "192657", + value = "om_chains_03.m2", + text = "om_chains_03.m2", + }, + { + fileId = "192658", + value = "om_chains_04.m2", + text = "om_chains_04.m2", + }, + }, + value = "chains", + text = "chains", + }, + { + children = { + { + fileId = "192659", + value = "om_chair_01.m2", + text = "om_chair_01.m2", + }, + }, + value = "chair", + text = "chair", + }, + { + children = { + { + fileId = "192662", + value = "om_campfire_01.m2", + text = "om_campfire_01.m2", + }, + { + fileId = "192664", + value = "om_torch_01.m2", + text = "om_torch_01.m2", + }, + }, + value = "fires", + text = "fires", + }, + { + children = { + { + fileId = "192666", + value = "om_forge_01.m2", + text = "om_forge_01.m2", + }, + }, + value = "forge", + text = "forge", + }, + { + children = { + { + fileId = "192667", + value = "om_pillar_01.m2", + text = "om_pillar_01.m2", + }, + }, + value = "pillar", + text = "pillar", + }, + { + children = { + { + fileId = "192668", + value = "om_rock_01.m2", + text = "om_rock_01.m2", + }, + { + fileId = "192669", + value = "om_rock_02.m2", + text = "om_rock_02.m2", + }, + { + fileId = "192670", + value = "om_rock_03.m2", + text = "om_rock_03.m2", + }, + { + fileId = "192671", + value = "om_rock_04.m2", + text = "om_rock_04.m2", + }, + { + fileId = "192672", + value = "om_rock_05.m2", + text = "om_rock_05.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "192674", + value = "om_iron_spike_01.m2", + text = "om_iron_spike_01.m2", + }, + { + fileId = "192675", + value = "om_iron_spike_02.m2", + text = "om_iron_spike_02.m2", + }, + }, + value = "spikes", + text = "spikes", + }, + { + children = { + { + fileId = "192677", + value = "om_stonehenge_01.m2", + text = "om_stonehenge_01.m2", + }, + { + fileId = "192678", + value = "om_stonehenge_02.m2", + text = "om_stonehenge_02.m2", + }, + { + fileId = "192679", + value = "om_stonehenge_03.m2", + text = "om_stonehenge_03.m2", + }, + }, + value = "stonehenge", + text = "stonehenge", + }, + { + children = { + { + fileId = "192680", + value = "om_table_01.m2", + text = "om_table_01.m2", + }, + }, + value = "table", + text = "table", + }, + { + children = { + { + fileId = "192682", + value = "om_tent_01.m2", + text = "om_tent_01.m2", + }, + { + fileId = "192683", + value = "om_tent_02.m2", + text = "om_tent_02.m2", + }, + { + fileId = "192684", + value = "om_tent_03.m2", + text = "om_tent_03.m2", + }, + }, + value = "tents", + text = "tents", + }, + { + children = { + { + fileId = "192685", + value = "om_totem_01.m2", + text = "om_totem_01.m2", + }, + }, + value = "totem", + text = "totem", + }, + { + children = { + { + fileId = "192686", + value = "om_weaponrack_01.m2", + text = "om_weaponrack_01.m2", + }, + { + fileId = "192687", + value = "om_weapons_01.m2", + text = "om_weapons_01.m2", + }, + { + fileId = "192688", + value = "om_weapons_02.m2", + text = "om_weapons_02.m2", + }, + { + fileId = "192689", + value = "om_weapons_03.m2", + text = "om_weapons_03.m2", + }, + { + fileId = "192690", + value = "om_weapons_04.m2", + text = "om_weapons_04.m2", + }, + }, + value = "weapons", + text = "weapons", + }, + }, + value = "ogre", + text = "ogre", + }, + { + children = { + { + children = { + { + fileId = "192692", + value = "overhangrock_large_01.m2", + text = "overhangrock_large_01.m2", + }, + { + fileId = "192693", + value = "overhangrock_large_02.m2", + text = "overhangrock_large_02.m2", + }, + { + fileId = "192694", + value = "overhangrock_large_03.m2", + text = "overhangrock_large_03.m2", + }, + { + fileId = "192695", + value = "overhangrock_small_01.m2", + text = "overhangrock_small_01.m2", + }, + { + fileId = "192696", + value = "overhangrock_small_02.m2", + text = "overhangrock_small_02.m2", + }, + { + fileId = "192697", + value = "overhangrock_small_03.m2", + text = "overhangrock_small_03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + }, + value = "outland", + text = "outland", + }, + { + children = { + { + children = { + { + fileId = "192699", + value = "shadowcouncil_banner01.m2", + text = "shadowcouncil_banner01.m2", + }, + { + fileId = "192700", + value = "shadowcouncil_banner02.m2", + text = "shadowcouncil_banner02.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "192701", + value = "shadowcouncil_magicdevice01.m2", + text = "shadowcouncil_magicdevice01.m2", + }, + { + fileId = "192702", + value = "shadowcouncil_magicdevice02.m2", + text = "shadowcouncil_magicdevice02.m2", + }, + }, + value = "magicdevices", + text = "magicdevices", + }, + { + children = { + { + fileId = "192704", + value = "shadowcouncil_tent01.m2", + text = "shadowcouncil_tent01.m2", + }, + { + fileId = "192705", + value = "shadowcouncil_tent02.m2", + text = "shadowcouncil_tent02.m2", + }, + }, + value = "tents", + text = "tents", + }, + { + children = { + { + fileId = "192707", + value = "shadowcouncil_torch.m2", + text = "shadowcouncil_torch.m2", + }, + }, + value = "torch", + text = "torch", + }, + }, + value = "shadowcouncil", + text = "shadowcouncil", + }, + { + children = { + { + children = { + { + fileId = "192710", + value = "jewelcraft_figurine01.m2", + text = "jewelcraft_figurine01.m2", + }, + { + fileId = "192711", + value = "jewelcraft_figurine02.m2", + text = "jewelcraft_figurine02.m2", + }, + { + fileId = "192712", + value = "jewelcraft_gemcut_01.m2", + text = "jewelcraft_gemcut_01.m2", + }, + { + fileId = "192713", + value = "jewelcraft_gemcut_02.m2", + text = "jewelcraft_gemcut_02.m2", + }, + { + fileId = "192714", + value = "jewelcraft_gemcut_03.m2", + text = "jewelcraft_gemcut_03.m2", + }, + { + fileId = "192715", + value = "jewelcraft_gemuncut_01.m2", + text = "jewelcraft_gemuncut_01.m2", + }, + { + fileId = "192716", + value = "jewelcraft_gemuncut_02.m2", + text = "jewelcraft_gemuncut_02.m2", + }, + { + fileId = "192717", + value = "jewelcraft_gemuncut_03.m2", + text = "jewelcraft_gemuncut_03.m2", + }, + { + fileId = "192718", + value = "jewelcraft_grinder01.m2", + text = "jewelcraft_grinder01.m2", + }, + }, + value = "jewelcrafting", + text = "jewelcrafting", + }, + }, + value = "tradeskill", + text = "tradeskill", + }, + }, + value = "generic", + text = "generic", + }, + { + children = { + { + children = { + { + fileId = "192723", + value = "ghostlands_arch_01.m2", + text = "ghostlands_arch_01.m2", + }, + }, + value = "arch", + text = "arch", + }, + { + children = { + { + fileId = "192725", + value = "ghostlandsbush01.m2", + text = "ghostlandsbush01.m2", + }, + { + fileId = "192726", + value = "ghostlandsbush02.m2", + text = "ghostlandsbush02.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "192727", + value = "fence_ghostlands01.m2", + text = "fence_ghostlands01.m2", + }, + { + fileId = "192728", + value = "fence_ghostlands02.m2", + text = "fence_ghostlands02.m2", + }, + { + fileId = "192729", + value = "fence_ghostlands03.m2", + text = "fence_ghostlands03.m2", + }, + { + fileId = "192730", + value = "fence_ghostlands04.m2", + text = "fence_ghostlands04.m2", + }, + }, + value = "fence", + text = "fence", + }, + { + children = { + { + fileId = "192732", + value = "be_lamppost_ghostlands01.m2", + text = "be_lamppost_ghostlands01.m2", + }, + { + fileId = "192733", + value = "be_lamppost_ghostlands02.m2", + text = "be_lamppost_ghostlands02.m2", + }, + }, + value = "lampposts", + text = "lampposts", + }, + { + children = { + { + fileId = "192734", + value = "ghostlands_moonstone.m2", + text = "ghostlands_moonstone.m2", + }, + }, + value = "moonstone", + text = "moonstone", + }, + { + children = { + { + fileId = "192738", + value = "ghostland_obelisk_01.m2", + text = "ghostland_obelisk_01.m2", + }, + { + fileId = "192739", + value = "ghostland_obelisk_02.m2", + text = "ghostland_obelisk_02.m2", + }, + { + fileId = "192740", + value = "ghostland_obelisk_03.m2", + text = "ghostland_obelisk_03.m2", + }, + }, + value = "obelisk", + text = "obelisk", + }, + { + children = { + { + fileId = "192742", + value = "ghostland_planter_01.m2", + text = "ghostland_planter_01.m2", + }, + { + fileId = "192743", + value = "ghostland_planter_02.m2", + text = "ghostland_planter_02.m2", + }, + { + fileId = "192744", + value = "ghostland_planter_03.m2", + text = "ghostland_planter_03.m2", + }, + }, + value = "planter", + text = "planter", + }, + { + children = { + { + fileId = "192746", + value = "gl_bluepollen.m2", + text = "gl_bluepollen.m2", + }, + }, + value = "pollen", + text = "pollen", + }, + { + children = { + { + fileId = "192747", + value = "ghostlandscliffrock01.m2", + text = "ghostlandscliffrock01.m2", + }, + { + fileId = "192748", + value = "ghostlandscliffrock02.m2", + text = "ghostlandscliffrock02.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "192750", + value = "ghostlandssmallroots01.m2", + text = "ghostlandssmallroots01.m2", + }, + { + fileId = "192751", + value = "ghostlandssmallroots02.m2", + text = "ghostlandssmallroots02.m2", + }, + { + fileId = "192752", + value = "ghostlandssmallroots03.m2", + text = "ghostlandssmallroots03.m2", + }, + { + fileId = "192753", + value = "ghostlandssmallroots04.m2", + text = "ghostlandssmallroots04.m2", + }, + }, + value = "roots", + text = "roots", + }, + { + children = { + { + fileId = "192754", + value = "be_signpost_ghostlands.m2", + text = "be_signpost_ghostlands.m2", + }, + { + fileId = "192755", + value = "be_signpost_sign_ghostlands.m2", + text = "be_signpost_sign_ghostlands.m2", + }, + }, + value = "signpost", + text = "signpost", + }, + { + children = { + { + fileId = "192756", + value = "swath_skull.m2", + text = "swath_skull.m2", + }, + }, + value = "skulls", + text = "skulls", + }, + { + children = { + { + fileId = "192759", + value = "ghostlands_webstretch_01.m2", + text = "ghostlands_webstretch_01.m2", + }, + { + fileId = "192760", + value = "ghostlandsweb_01.m2", + text = "ghostlandsweb_01.m2", + }, + { + fileId = "192761", + value = "ghostlandsweb_02.m2", + text = "ghostlandsweb_02.m2", + }, + { + fileId = "192762", + value = "ghostlandsweb_03.m2", + text = "ghostlandsweb_03.m2", + }, + { + fileId = "192763", + value = "ghostlandswebdangle_01.m2", + text = "ghostlandswebdangle_01.m2", + }, + { + fileId = "192764", + value = "ghostlandswebdangle_02.m2", + text = "ghostlandswebdangle_02.m2", + }, + }, + value = "webs", + text = "webs", + }, + }, + value = "ghostlands", + text = "ghostlands", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "192766", + value = "magtheradoncube.m2", + text = "magtheradoncube.m2", + }, + }, + value = "cube", + text = "cube", + }, + { + children = { + { + fileId = "192768", + value = "hellfire_bossdoor01.m2", + text = "hellfire_bossdoor01.m2", + }, + { + fileId = "192769", + value = "hf_mag_door.m2", + text = "hf_mag_door.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "192771", + value = "hellfire_raid_fx.m2", + text = "hellfire_raid_fx.m2", + }, + { + fileId = "192772", + value = "raid_column_fx.m2", + text = "raid_column_fx.m2", + }, + }, + value = "raid_fx", + text = "raid_fx", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "192781", + value = "hellfire_dw_fellconversionchamber.m2", + text = "hellfire_dw_fellconversionchamber.m2", + }, + }, + value = "chamber", + text = "chamber", + }, + { + children = { + { + fileId = "192782", + value = "hellfire_dw_largefloor_crack_onoff.m2", + text = "hellfire_dw_largefloor_crack_onoff.m2", + }, + { + fileId = "192783", + value = "hellfire_dw_smallfloor_crack_onoff.m2", + text = "hellfire_dw_smallfloor_crack_onoff.m2", + }, + }, + value = "cracks", + text = "cracks", + }, + { + children = { + { + fileId = "192784", + value = "hellfire_dw_mainprisonentry.m2", + text = "hellfire_dw_mainprisonentry.m2", + }, + { + fileId = "192785", + value = "hellfire_dw_prisondoor.m2", + text = "hellfire_dw_prisondoor.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "192786", + value = "hellfire_dw_summonroomdoor.m2", + text = "hellfire_dw_summonroomdoor.m2", + }, + }, + value = "summon_door", + text = "summon_door", + }, + { + children = { + { + fileId = "192790", + value = "hellfire_dw_summonpower.m2", + text = "hellfire_dw_summonpower.m2", + }, + }, + value = "summoning_power_room", + text = "summoning_power_room", + }, + { + children = { + { + fileId = "192793", + value = "hf_floor_switch.m2", + text = "hf_floor_switch.m2", + }, + }, + value = "switches", + text = "switches", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "192802", + value = "dw_conversionchamber.m2", + text = "dw_conversionchamber.m2", + }, + { + fileId = "192806", + value = "hellfire_dw_conversionchamber_broken.m2", + text = "hellfire_dw_conversionchamber_broken.m2", + }, + }, + value = "chamber", + text = "chamber", + }, + { + children = { + { + fileId = "192811", + value = "hellfire_dw_largefloor_crack.m2", + text = "hellfire_dw_largefloor_crack.m2", + }, + { + fileId = "192812", + value = "hellfire_dw_largewall_crack.m2", + text = "hellfire_dw_largewall_crack.m2", + }, + { + fileId = "192813", + value = "hellfire_dw_smallfloor_crack.m2", + text = "hellfire_dw_smallfloor_crack.m2", + }, + { + fileId = "192814", + value = "hellfire_dw_smallwall_crack.m2", + text = "hellfire_dw_smallwall_crack.m2", + }, + }, + value = "cracks", + text = "cracks", + }, + { + children = { + { + fileId = "192818", + value = "hellfire_dw_celldoor.m2", + text = "hellfire_dw_celldoor.m2", + }, + { + fileId = "192819", + value = "hellfire_dw_prisonentry.m2", + text = "hellfire_dw_prisonentry.m2", + }, + { + fileId = "3918700", + value = "main_prison _door.m2", + text = "main_prison _door.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "192822", + value = "hellfire_dw_banner_type01.m2", + text = "hellfire_dw_banner_type01.m2", + }, + { + fileId = "192823", + value = "hellfire_dw_banner_type02.m2", + text = "hellfire_dw_banner_type02.m2", + }, + { + fileId = "192824", + value = "hellfire_dw_banner_type03.m2", + text = "hellfire_dw_banner_type03.m2", + }, + { + fileId = "192825", + value = "hellfire_dw_banner_type04.m2", + text = "hellfire_dw_banner_type04.m2", + }, + { + fileId = "192826", + value = "hellfire_dw_banner_typelarge_longchain.m2", + text = "hellfire_dw_banner_typelarge_longchain.m2", + }, + { + fileId = "192827", + value = "hellfire_dw_banner_typewide.m2", + text = "hellfire_dw_banner_typewide.m2", + }, + }, + value = "dw_banners", + text = "dw_banners", + }, + { + children = { + { + fileId = "192830", + value = "hellfire_dw_floorbraizer.m2", + text = "hellfire_dw_floorbraizer.m2", + }, + { + fileId = "192831", + value = "hellfire_dw_hangingbraizer.m2", + text = "hellfire_dw_hangingbraizer.m2", + }, + }, + value = "dw_braizer", + text = "dw_braizer", + }, + { + children = { + { + fileId = "192833", + value = "hellfire_dw_hook.m2", + text = "hellfire_dw_hook.m2", + }, + { + fileId = "192834", + value = "hellfire_dw_hook_swing.m2", + text = "hellfire_dw_hook_swing.m2", + }, + }, + value = "dw_hooks", + text = "dw_hooks", + }, + { + children = { + { + fileId = "192836", + value = "hf_demonwing_lantern_nolight.m2", + text = "hf_demonwing_lantern_nolight.m2", + }, + }, + value = "dw_lantern", + text = "dw_lantern", + }, + { + children = { + { + fileId = "192839", + value = "hellfire_dw_pipe_type1.m2", + text = "hellfire_dw_pipe_type1.m2", + }, + { + fileId = "192840", + value = "hellfire_dw_pipe_type2.m2", + text = "hellfire_dw_pipe_type2.m2", + }, + { + fileId = "192841", + value = "hellfire_dw_pipe_type3.m2", + text = "hellfire_dw_pipe_type3.m2", + }, + { + fileId = "192842", + value = "hellfire_dw_pipe_type4.m2", + text = "hellfire_dw_pipe_type4.m2", + }, + { + fileId = "192843", + value = "hellfire_dw_pipe_typebasic.m2", + text = "hellfire_dw_pipe_typebasic.m2", + }, + }, + value = "dw_pipes", + text = "dw_pipes", + }, + { + children = { + { + fileId = "192853", + value = "hf_demonwing_lantern.m2", + text = "hf_demonwing_lantern.m2", + }, + }, + value = "lantern", + text = "lantern", + }, + { + children = { + { + fileId = "192863", + value = "hellfire_dw_machine_fin2.m2", + text = "hellfire_dw_machine_fin2.m2", + }, + { + fileId = "192864", + value = "hellfire_dw_machine_ver2.m2", + text = "hellfire_dw_machine_ver2.m2", + }, + { + fileId = "192865", + value = "hellfire_dw_machine_ver3.m2", + text = "hellfire_dw_machine_ver3.m2", + }, + { + fileId = "192866", + value = "hellfire_dw_tank.m2", + text = "hellfire_dw_tank.m2", + }, + }, + value = "machine", + text = "machine", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "demonwing", + text = "demonwing", + }, + { + children = { + { + children = { + { + fileId = "192870", + value = "hellfire_banner_type01.m2", + text = "hellfire_banner_type01.m2", + }, + { + fileId = "192871", + value = "hellfire_banner_type01_burning.m2", + text = "hellfire_banner_type01_burning.m2", + }, + { + fileId = "192872", + value = "hellfire_banner_type02.m2", + text = "hellfire_banner_type02.m2", + }, + { + fileId = "192873", + value = "hellfire_banner_type03.m2", + text = "hellfire_banner_type03.m2", + }, + { + fileId = "192874", + value = "hellfire_banner_type04.m2", + text = "hellfire_banner_type04.m2", + }, + { + fileId = "192875", + value = "hellfire_banner_typelarge_longchain.m2", + text = "hellfire_banner_typelarge_longchain.m2", + }, + { + fileId = "192876", + value = "hellfire_banner_typesmall_shortchain.m2", + text = "hellfire_banner_typesmall_shortchain.m2", + }, + { + fileId = "192877", + value = "hellfire_banner_typewide.m2", + text = "hellfire_banner_typewide.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "192879", + value = "hellfire_barrier.m2", + text = "hellfire_barrier.m2", + }, + }, + value = "barrier", + text = "barrier", + }, + { + children = { + { + fileId = "192883", + value = "hellfire_floorbraizer.m2", + text = "hellfire_floorbraizer.m2", + }, + { + fileId = "192884", + value = "hellfire_floorbraizer_broken.m2", + text = "hellfire_floorbraizer_broken.m2", + }, + { + fileId = "192885", + value = "hellfire_floorbraizer_purple.m2", + text = "hellfire_floorbraizer_purple.m2", + }, + { + fileId = "192886", + value = "hellfire_hangingbraizer.m2", + text = "hellfire_hangingbraizer.m2", + }, + { + fileId = "192887", + value = "hellfire_hangingbraizer_purpleflame.m2", + text = "hellfire_hangingbraizer_purpleflame.m2", + }, + { + fileId = "192888", + value = "hellfire_standingbraizer_purple.m2", + text = "hellfire_standingbraizer_purple.m2", + }, + }, + value = "braizers", + text = "braizers", + }, + { + children = { + { + fileId = "192891", + value = "hellfire_militarywing_throne.m2", + text = "hellfire_militarywing_throne.m2", + }, + }, + value = "throne", + text = "throne", + }, + { + children = { + { + fileId = "192893", + value = "hellfire_gastorch01.m2", + text = "hellfire_gastorch01.m2", + }, + }, + value = "torches", + text = "torches", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "hellfirecitadel", + text = "hellfirecitadel", + }, + { + children = { + { + children = { + { + fileId = "192895", + value = "hellfire_oldorcbanner01.m2", + text = "hellfire_oldorcbanner01.m2", + }, + { + fileId = "192896", + value = "hellfire_oldorcbanner02.m2", + text = "hellfire_oldorcbanner02.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "192899", + value = "hellfirebushthorn01.m2", + text = "hellfirebushthorn01.m2", + }, + { + fileId = "192900", + value = "hellfirebushthorn02.m2", + text = "hellfirebushthorn02.m2", + }, + { + fileId = "192901", + value = "hellfirebushthorn03.m2", + text = "hellfirebushthorn03.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "192903", + value = "hellfirecrystal01.m2", + text = "hellfirecrystal01.m2", + }, + { + fileId = "192905", + value = "hellfirecrystalformation_01.m2", + text = "hellfirecrystalformation_01.m2", + }, + { + fileId = "192906", + value = "hellfirecrystalformation_02.m2", + text = "hellfirecrystalformation_02.m2", + }, + { + fileId = "192907", + value = "hellfirecrystalformation_03.m2", + text = "hellfirecrystalformation_03.m2", + }, + }, + value = "crystals", + text = "crystals", + }, + { + children = { + { + fileId = "192909", + value = "hellfire_fireparticle.m2", + text = "hellfire_fireparticle.m2", + }, + { + fileId = "192910", + value = "hellfirecurb_01.m2", + text = "hellfirecurb_01.m2", + }, + { + fileId = "192911", + value = "hellfirecurb_02.m2", + text = "hellfirecurb_02.m2", + }, + { + fileId = "192912", + value = "hellfirecurb_03.m2", + text = "hellfirecurb_03.m2", + }, + { + fileId = "192913", + value = "hellfirecurb_fire_01.m2", + text = "hellfirecurb_fire_01.m2", + }, + { + fileId = "192914", + value = "hellfirecurb_fire_02.m2", + text = "hellfirecurb_fire_02.m2", + }, + }, + value = "curb", + text = "curb", + }, + { + children = { + { + fileId = "192920", + value = "hellfire_darkportal_fx.m2", + text = "hellfire_darkportal_fx.m2", + }, + }, + value = "darkportal", + text = "darkportal", + }, + { + children = { + { + fileId = "192930", + value = "dr_post_hellfire.m2", + text = "dr_post_hellfire.m2", + }, + { + fileId = "192931", + value = "dr_post_hellfire_ruin.m2", + text = "dr_post_hellfire_ruin.m2", + }, + { + fileId = "192932", + value = "dr_wall_hellfire.m2", + text = "dr_wall_hellfire.m2", + }, + { + fileId = "192933", + value = "dr_wall_hellfire_ruin.m2", + text = "dr_wall_hellfire_ruin.m2", + }, + }, + value = "draeneifence", + text = "draeneifence", + }, + { + children = { + { + fileId = "192938", + value = "hellfire_fel_firewall_01.m2", + text = "hellfire_fel_firewall_01.m2", + }, + { + fileId = "192939", + value = "hellfire_firewall_01.m2", + text = "hellfire_firewall_01.m2", + }, + }, + value = "firewall", + text = "firewall", + }, + { + children = { + { + fileId = "192940", + value = "hellfire_gravestones_alliance_01.m2", + text = "hellfire_gravestones_alliance_01.m2", + }, + { + fileId = "192941", + value = "hellfire_gravestones_alliance_02.m2", + text = "hellfire_gravestones_alliance_02.m2", + }, + { + fileId = "192942", + value = "hellfire_gravestones_alliance_03.m2", + text = "hellfire_gravestones_alliance_03.m2", + }, + { + fileId = "192943", + value = "hellfire_gravestones_horde_01.m2", + text = "hellfire_gravestones_horde_01.m2", + }, + { + fileId = "192944", + value = "hellfire_gravestones_horde_02.m2", + text = "hellfire_gravestones_horde_02.m2", + }, + { + fileId = "192945", + value = "hellfire_gravestones_horde_03.m2", + text = "hellfire_gravestones_horde_03.m2", + }, + }, + value = "gravestones", + text = "gravestones", + }, + { + children = { + { + fileId = "192948", + value = "hellfirefloatingrock_large_01.m2", + text = "hellfirefloatingrock_large_01.m2", + }, + { + fileId = "192949", + value = "hellfirefloatingrock_large_02.m2", + text = "hellfirefloatingrock_large_02.m2", + }, + { + fileId = "192950", + value = "hellfirefloatingrock_large_03.m2", + text = "hellfirefloatingrock_large_03.m2", + }, + { + fileId = "192951", + value = "hellfirefloatingrock_small_01.m2", + text = "hellfirefloatingrock_small_01.m2", + }, + { + fileId = "192952", + value = "hellfirefloatingrock_small_02.m2", + text = "hellfirefloatingrock_small_02.m2", + }, + { + fileId = "192953", + value = "hellfirefloatingrock_small_03.m2", + text = "hellfirefloatingrock_small_03.m2", + }, + }, + value = "hellfirefloatingrock", + text = "hellfirefloatingrock", + }, + { + children = { + { + fileId = "192956", + value = "hellfire_overhangrock_large_01.m2", + text = "hellfire_overhangrock_large_01.m2", + }, + { + fileId = "192957", + value = "hellfire_overhangrock_large_02.m2", + text = "hellfire_overhangrock_large_02.m2", + }, + { + fileId = "192958", + value = "hellfire_overhangrock_large_03.m2", + text = "hellfire_overhangrock_large_03.m2", + }, + { + fileId = "192959", + value = "hellfire_overhangrock_small_01.m2", + text = "hellfire_overhangrock_small_01.m2", + }, + { + fileId = "192960", + value = "hellfire_overhangrock_small_02.m2", + text = "hellfire_overhangrock_small_02.m2", + }, + { + fileId = "192961", + value = "hellfire_overhangrock_small_03.m2", + text = "hellfire_overhangrock_small_03.m2", + }, + }, + value = "hellfireoverhangrock", + text = "hellfireoverhangrock", + }, + { + children = { + { + fileId = "192964", + value = "hellfirewarpstorm01.m2", + text = "hellfirewarpstorm01.m2", + }, + }, + value = "hellfirewarpstorm", + text = "hellfirewarpstorm", + }, + { + children = { + { + fileId = "192965", + value = "ancient_drainei_lamppost.m2", + text = "ancient_drainei_lamppost.m2", + }, + { + fileId = "192966", + value = "ancient_drainei_lamppost_ruined.m2", + text = "ancient_drainei_lamppost_ruined.m2", + }, + { + fileId = "192968", + value = "dr_signpost_ancient.m2", + text = "dr_signpost_ancient.m2", + }, + { + fileId = "192969", + value = "dr_signpost_sign_ancient.m2", + text = "dr_signpost_sign_ancient.m2", + }, + }, + value = "lamppost", + text = "lamppost", + }, + { + children = { + { + fileId = "192972", + value = "hellfiremonolith01.m2", + text = "hellfiremonolith01.m2", + }, + }, + value = "monolith", + text = "monolith", + }, + { + children = { + { + fileId = "192973", + value = "ancient_draenei_plaform_06.m2", + text = "ancient_draenei_plaform_06.m2", + }, + { + fileId = "192974", + value = "ancient_draenei_plaform_07.m2", + text = "ancient_draenei_plaform_07.m2", + }, + }, + value = "platform", + text = "platform", + }, + { + children = { + { + fileId = "192977", + value = "hellfire_pvpflags_northfort.m2", + text = "hellfire_pvpflags_northfort.m2", + }, + { + fileId = "192978", + value = "hellfire_pvpflags_northfortflagsa.m2", + text = "hellfire_pvpflags_northfortflagsa.m2", + }, + { + fileId = "192979", + value = "hellfire_pvpflags_northfortflagsh.m2", + text = "hellfire_pvpflags_northfortflagsh.m2", + }, + { + fileId = "192980", + value = "hellfire_pvpflags_northfortflagsn.m2", + text = "hellfire_pvpflags_northfortflagsn.m2", + }, + { + fileId = "192981", + value = "hellfire_pvpflags_southfort.m2", + text = "hellfire_pvpflags_southfort.m2", + }, + { + fileId = "192982", + value = "hellfire_pvpflags_southfortflagsa.m2", + text = "hellfire_pvpflags_southfortflagsa.m2", + }, + { + fileId = "192983", + value = "hellfire_pvpflags_southfortflagsh.m2", + text = "hellfire_pvpflags_southfortflagsh.m2", + }, + { + fileId = "192984", + value = "hellfire_pvpflags_southfortflagsn.m2", + text = "hellfire_pvpflags_southfortflagsn.m2", + }, + { + fileId = "192985", + value = "hellfire_pvpflags_westfort.m2", + text = "hellfire_pvpflags_westfort.m2", + }, + { + fileId = "192986", + value = "hellfire_pvpflags_westfortflagsa.m2", + text = "hellfire_pvpflags_westfortflagsa.m2", + }, + { + fileId = "192987", + value = "hellfire_pvpflags_westfortflagsh.m2", + text = "hellfire_pvpflags_westfortflagsh.m2", + }, + { + fileId = "192988", + value = "hellfire_pvpflags_westfortflagsn.m2", + text = "hellfire_pvpflags_westfortflagsn.m2", + }, + }, + value = "pvpflags", + text = "pvpflags", + }, + { + children = { + { + fileId = "192990", + value = "hellfirerock_razor01.m2", + text = "hellfirerock_razor01.m2", + }, + { + fileId = "192991", + value = "hellfirerock_razor02.m2", + text = "hellfirerock_razor02.m2", + }, + { + fileId = "192992", + value = "hellfirerock_razor03.m2", + text = "hellfirerock_razor03.m2", + }, + { + fileId = "192993", + value = "hellfirerock_short01.m2", + text = "hellfirerock_short01.m2", + }, + { + fileId = "192994", + value = "hellfirerock_short02.m2", + text = "hellfirerock_short02.m2", + }, + { + fileId = "192995", + value = "hellfirerock_short03.m2", + text = "hellfirerock_short03.m2", + }, + { + fileId = "192996", + value = "hellfirerock_tall01.m2", + text = "hellfirerock_tall01.m2", + }, + { + fileId = "192997", + value = "hellfirerock_tall02.m2", + text = "hellfirerock_tall02.m2", + }, + { + fileId = "192998", + value = "hellfirerock_tall03.m2", + text = "hellfirerock_tall03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "193001", + value = "hellfirecliffrocks01.m2", + text = "hellfirecliffrocks01.m2", + }, + { + fileId = "193002", + value = "hellfirecliffrocks02.m2", + text = "hellfirecliffrocks02.m2", + }, + { + fileId = "193003", + value = "hellfirecliffrocks03.m2", + text = "hellfirecliffrocks03.m2", + }, + { + fileId = "193004", + value = "hellfirecliffrocks04.m2", + text = "hellfirecliffrocks04.m2", + }, + { + fileId = "193005", + value = "hellfirecliffrocks05.m2", + text = "hellfirecliffrocks05.m2", + }, + }, + value = "rockscliff", + text = "rockscliff", + }, + { + children = { + { + fileId = "193007", + value = "hellfirerocks_floatinglarge01.m2", + text = "hellfirerocks_floatinglarge01.m2", + }, + { + fileId = "193008", + value = "hellfirerocks_floatinglarge02.m2", + text = "hellfirerocks_floatinglarge02.m2", + }, + { + fileId = "193009", + value = "hellfirerocks_floatinglarge03.m2", + text = "hellfirerocks_floatinglarge03.m2", + }, + { + fileId = "193010", + value = "hellfirerocks_floatingmedium01.m2", + text = "hellfirerocks_floatingmedium01.m2", + }, + { + fileId = "193011", + value = "hellfirerocks_floatingmedium02.m2", + text = "hellfirerocks_floatingmedium02.m2", + }, + { + fileId = "193012", + value = "hellfirerocks_floatingmedium03.m2", + text = "hellfirerocks_floatingmedium03.m2", + }, + { + fileId = "193013", + value = "hellfirerocks_floatingsmall01.m2", + text = "hellfirerocks_floatingsmall01.m2", + }, + { + fileId = "193014", + value = "hellfirerocks_floatingsmall02.m2", + text = "hellfirerocks_floatingsmall02.m2", + }, + { + fileId = "193015", + value = "hellfirerocks_floatingsmall03.m2", + text = "hellfirerocks_floatingsmall03.m2", + }, + }, + value = "rocksfloating", + text = "rocksfloating", + }, + { + children = { + { + fileId = "193016", + value = "hellfiresandtrap.m2", + text = "hellfiresandtrap.m2", + }, + }, + value = "sandtrap", + text = "sandtrap", + }, + { + children = { + { + fileId = "193019", + value = "hellfiresupplies_01.m2", + text = "hellfiresupplies_01.m2", + }, + { + fileId = "193020", + value = "hellfiresupplies_02.m2", + text = "hellfiresupplies_02.m2", + }, + { + fileId = "193021", + value = "hellfiresupplies_03.m2", + text = "hellfiresupplies_03.m2", + }, + { + fileId = "193022", + value = "hellfiresupplies_04.m2", + text = "hellfiresupplies_04.m2", + }, + { + fileId = "193023", + value = "hellfiresupplies_05.m2", + text = "hellfiresupplies_05.m2", + }, + { + fileId = "193024", + value = "hellfiresupplies_06.m2", + text = "hellfiresupplies_06.m2", + }, + }, + value = "supplies", + text = "supplies", + }, + { + children = { + { + fileId = "193027", + value = "hellfireseedpod01.m2", + text = "hellfireseedpod01.m2", + }, + { + fileId = "193028", + value = "hellfiretreethorns01.m2", + text = "hellfiretreethorns01.m2", + }, + { + fileId = "193029", + value = "hellfiretreethorns02.m2", + text = "hellfiretreethorns02.m2", + }, + { + fileId = "193030", + value = "hellfiretreethorns03.m2", + text = "hellfiretreethorns03.m2", + }, + { + fileId = "193031", + value = "hellfiretreethorns04.m2", + text = "hellfiretreethorns04.m2", + }, + { + fileId = "193032", + value = "hellfiretreethorns05.m2", + text = "hellfiretreethorns05.m2", + }, + { + fileId = "193033", + value = "hellfiretreethorns06.m2", + text = "hellfiretreethorns06.m2", + }, + { + fileId = "193034", + value = "hellfiretreethornspods01.m2", + text = "hellfiretreethornspods01.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "193036", + value = "humanwagon01.m2", + text = "humanwagon01.m2", + }, + { + fileId = "193038", + value = "orcwagon07.m2", + text = "orcwagon07.m2", + }, + }, + value = "wagons", + text = "wagons", + }, + }, + value = "hellfirepeninsula", + text = "hellfirepeninsula", + }, + { + children = { + { + fileId = "193039", + value = "m2_light_lightblue.m2", + text = "m2_light_lightblue.m2", + }, + }, + value = "m2lights", + text = "m2lights", + }, + { + children = { + { + children = { + { + fileId = "193041", + value = "nagrandbush01.m2", + text = "nagrandbush01.m2", + }, + { + fileId = "193043", + value = "nagrandbush02.m2", + text = "nagrandbush02.m2", + }, + { + fileId = "193045", + value = "nagrandbush03.m2", + text = "nagrandbush03.m2", + }, + { + fileId = "193047", + value = "nagrandbush04.m2", + text = "nagrandbush04.m2", + }, + }, + value = "bush", + text = "bush", + }, + { + children = { + { + fileId = "193048", + value = "darkportal_nagrand_particles.m2", + text = "darkportal_nagrand_particles.m2", + }, + }, + value = "darkportal", + text = "darkportal", + }, + { + children = { + { + fileId = "193057", + value = "diamond moutain.m2", + text = "diamond moutain.m2", + }, + { + fileId = "193063", + value = "diamondmountain_bit.m2", + text = "diamondmountain_bit.m2", + }, + { + fileId = "193064", + value = "diamondmountain_final.m2", + text = "diamondmountain_final.m2", + }, + { + fileId = "193065", + value = "diamondmountain_mediumbit.m2", + text = "diamondmountain_mediumbit.m2", + }, + { + fileId = "193066", + value = "dm_crystal_bunch.m2", + text = "dm_crystal_bunch.m2", + }, + { + fileId = "193067", + value = "dm_crystal_large.m2", + text = "dm_crystal_large.m2", + }, + { + fileId = "193068", + value = "dm_crystal_slim.m2", + text = "dm_crystal_slim.m2", + }, + }, + value = "diamondmount", + text = "diamondmount", + }, + { + children = { + { + fileId = "193074", + value = "nagrandtest.m2", + text = "nagrandtest.m2", + }, + }, + value = "grass", + text = "grass", + }, + { + children = { + { + fileId = "193077", + value = "nagrand_arch_01.m2", + text = "nagrand_arch_01.m2", + }, + { + fileId = "193078", + value = "nagrand_arch_02.m2", + text = "nagrand_arch_02.m2", + }, + { + fileId = "193079", + value = "nagrand_arch_03.m2", + text = "nagrand_arch_03.m2", + }, + { + fileId = "193080", + value = "nagrand_arch_04.m2", + text = "nagrand_arch_04.m2", + }, + { + fileId = "193081", + value = "nagrand_arch_05.m2", + text = "nagrand_arch_05.m2", + }, + { + fileId = "193082", + value = "nagrand_arch_06.m2", + text = "nagrand_arch_06.m2", + }, + { + fileId = "193083", + value = "nagrand_arch_07.m2", + text = "nagrand_arch_07.m2", + }, + { + fileId = "193084", + value = "nagrand_arch_08.m2", + text = "nagrand_arch_08.m2", + }, + { + fileId = "193085", + value = "nagrand_arch_09.m2", + text = "nagrand_arch_09.m2", + }, + { + fileId = "193086", + value = "nagrand_arch_10.m2", + text = "nagrand_arch_10.m2", + }, + { + fileId = "193087", + value = "nagrand_arch_11.m2", + text = "nagrand_arch_11.m2", + }, + { + fileId = "193088", + value = "nagrand_largerock_01.m2", + text = "nagrand_largerock_01.m2", + }, + { + fileId = "193089", + value = "nagrand_largerock_02.m2", + text = "nagrand_largerock_02.m2", + }, + { + fileId = "193090", + value = "nagrand_largerock_03.m2", + text = "nagrand_largerock_03.m2", + }, + { + fileId = "193091", + value = "nagrand_rockfloating_huge01.m2", + text = "nagrand_rockfloating_huge01.m2", + }, + { + fileId = "193096", + value = "nagrand_smallrock_01.m2", + text = "nagrand_smallrock_01.m2", + }, + { + fileId = "193097", + value = "nagrand_smallrock_02.m2", + text = "nagrand_smallrock_02.m2", + }, + { + fileId = "193098", + value = "nagrand_smallrock_03.m2", + text = "nagrand_smallrock_03.m2", + }, + { + fileId = "193099", + value = "nagrand_smallrock_04.m2", + text = "nagrand_smallrock_04.m2", + }, + { + fileId = "193100", + value = "nagrand_smallrock_05.m2", + text = "nagrand_smallrock_05.m2", + }, + { + fileId = "193101", + value = "nagrand_smallrock_06.m2", + text = "nagrand_smallrock_06.m2", + }, + { + fileId = "193102", + value = "nagrand_waterfalls_forfloatingrocks.m2", + text = "nagrand_waterfalls_forfloatingrocks.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "193108", + value = "nagrandcorruptedroot01.m2", + text = "nagrandcorruptedroot01.m2", + }, + { + fileId = "193109", + value = "nagrandcorruptedroot02.m2", + text = "nagrandcorruptedroot02.m2", + }, + { + fileId = "193110", + value = "nagrandroot01.m2", + text = "nagrandroot01.m2", + }, + { + fileId = "193111", + value = "nagrandroot01vara.m2", + text = "nagrandroot01vara.m2", + }, + { + fileId = "193112", + value = "nagrandroot02.m2", + text = "nagrandroot02.m2", + }, + { + fileId = "193113", + value = "nagrandroot02vara.m2", + text = "nagrandroot02vara.m2", + }, + { + fileId = "193114", + value = "nagrandroot03.m2", + text = "nagrandroot03.m2", + }, + { + fileId = "193115", + value = "nagrandroot03vara.m2", + text = "nagrandroot03vara.m2", + }, + { + fileId = "193116", + value = "nagrandroot04.m2", + text = "nagrandroot04.m2", + }, + { + fileId = "193117", + value = "nagrandroot04vara.m2", + text = "nagrandroot04vara.m2", + }, + { + fileId = "193118", + value = "nagrandroot05.m2", + text = "nagrandroot05.m2", + }, + { + fileId = "193119", + value = "nagrandroot05vara.m2", + text = "nagrandroot05vara.m2", + }, + }, + value = "roots", + text = "roots", + }, + { + children = { + { + fileId = "193123", + value = "nagrandcorruptedtree01.m2", + text = "nagrandcorruptedtree01.m2", + }, + { + fileId = "193124", + value = "nagrandcorruptedtree02.m2", + text = "nagrandcorruptedtree02.m2", + }, + { + fileId = "193125", + value = "nagrandcorruptedtree03.m2", + text = "nagrandcorruptedtree03.m2", + }, + { + fileId = "193127", + value = "nagrandtree01.m2", + text = "nagrandtree01.m2", + }, + { + fileId = "193128", + value = "nagrandtree02.m2", + text = "nagrandtree02.m2", + }, + { + fileId = "193129", + value = "nagrandtree03.m2", + text = "nagrandtree03.m2", + }, + { + fileId = "193130", + value = "nagrandtree04.m2", + text = "nagrandtree04.m2", + }, + { + fileId = "193131", + value = "nagrandtree05.m2", + text = "nagrandtree05.m2", + }, + { + fileId = "193132", + value = "nagrandtree06.m2", + text = "nagrandtree06.m2", + }, + { + fileId = "193133", + value = "nagrandtree07.m2", + text = "nagrandtree07.m2", + }, + { + fileId = "193134", + value = "nagrandtree08.m2", + text = "nagrandtree08.m2", + }, + { + fileId = "193135", + value = "nagrandtree09.m2", + text = "nagrandtree09.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "nagrand", + text = "nagrand", + }, + { + children = { + { + children = { + { + fileId = "193142", + value = "ns_biodome_all_fx_north.m2", + text = "ns_biodome_all_fx_north.m2", + }, + { + fileId = "193143", + value = "ns_biodome_all_fx_south.m2", + text = "ns_biodome_all_fx_south.m2", + }, + { + fileId = "193144", + value = "ns_biodome_all_fx_stormspire.m2", + text = "ns_biodome_all_fx_stormspire.m2", + }, + { + fileId = "193146", + value = "ns_biodome_bg.m2", + text = "ns_biodome_bg.m2", + }, + { + fileId = "193147", + value = "ns_biodome_device.m2", + text = "ns_biodome_device.m2", + }, + { + fileId = "193148", + value = "ns_biodome_generic.m2", + text = "ns_biodome_generic.m2", + }, + { + fileId = "193149", + value = "ns_biodome_pylon_effects.m2", + text = "ns_biodome_pylon_effects.m2", + }, + { + fileId = "193152", + value = "ns_biodome_stormspire.m2", + text = "ns_biodome_stormspire.m2", + }, + }, + value = "biodomes", + text = "biodomes", + }, + { + children = { + { + fileId = "193155", + value = "nethercollectorcap.m2", + text = "nethercollectorcap.m2", + }, + }, + value = "collectorcap", + text = "collectorcap", + }, + { + children = { + { + fileId = "193156", + value = "collectortop.m2", + text = "collectortop.m2", + }, + { + fileId = "193157", + value = "collectortop_nether.m2", + text = "collectortop_nether.m2", + }, + { + fileId = "193158", + value = "collectortop_off.m2", + text = "collectortop_off.m2", + }, + }, + value = "collectortop", + text = "collectortop", + }, + { + children = { + { + fileId = "193165", + value = "collectortubes.m2", + text = "collectortubes.m2", + }, + { + fileId = "193166", + value = "collectortubes_building_attach.m2", + text = "collectortubes_building_attach.m2", + }, + { + fileId = "193167", + value = "collectortubes_building_attach_off.m2", + text = "collectortubes_building_attach_off.m2", + }, + { + fileId = "193168", + value = "collectortubes_joint_45.m2", + text = "collectortubes_joint_45.m2", + }, + { + fileId = "193169", + value = "collectortubes_joint_90.m2", + text = "collectortubes_joint_90.m2", + }, + { + fileId = "193170", + value = "collectortubes_joint_ground.m2", + text = "collectortubes_joint_ground.m2", + }, + { + fileId = "193171", + value = "collectortubes_straight.m2", + text = "collectortubes_straight.m2", + }, + { + fileId = "193172", + value = "collectortubes_straight_medium.m2", + text = "collectortubes_straight_medium.m2", + }, + { + fileId = "193173", + value = "collectortubes_straight_medium_off.m2", + text = "collectortubes_straight_medium_off.m2", + }, + { + fileId = "193174", + value = "collectortubes_straight_off.m2", + text = "collectortubes_straight_off.m2", + }, + { + fileId = "193175", + value = "collectortubes_straight_short.m2", + text = "collectortubes_straight_short.m2", + }, + { + fileId = "193176", + value = "collectortubes_straight_short_off.m2", + text = "collectortubes_straight_short_off.m2", + }, + { + fileId = "193177", + value = "collectortubes_straight_states.m2", + text = "collectortubes_straight_states.m2", + }, + { + fileId = "193178", + value = "collectortubes_support.m2", + text = "collectortubes_support.m2", + }, + }, + value = "collectortubes", + text = "collectortubes", + }, + { + children = { + { + fileId = "193180", + value = "netherstormcracksmoke01.m2", + text = "netherstormcracksmoke01.m2", + }, + { + fileId = "193181", + value = "netherstormcracksmokeblue.m2", + text = "netherstormcracksmokeblue.m2", + }, + }, + value = "crackeffects", + text = "crackeffects", + }, + { + children = { + { + fileId = "193184", + value = "nethergravedirtmound01.m2", + text = "nethergravedirtmound01.m2", + }, + }, + value = "dirt", + text = "dirt", + }, + { + children = { + { + fileId = "193185", + value = "netherstorm_particles.m2", + text = "netherstorm_particles.m2", + }, + { + fileId = "193186", + value = "netherstorm_particles_pink.m2", + text = "netherstorm_particles_pink.m2", + }, + }, + value = "float_particles", + text = "float_particles", + }, + { + children = { + { + fileId = "193191", + value = "netherstorm_floatingsmall01.m2", + text = "netherstorm_floatingsmall01.m2", + }, + { + fileId = "193192", + value = "netherstorm_floatingsmall02.m2", + text = "netherstorm_floatingsmall02.m2", + }, + { + fileId = "193193", + value = "netherstorm_overhangrock_large_01.m2", + text = "netherstorm_overhangrock_large_01.m2", + }, + { + fileId = "193194", + value = "netherstorm_overhangrock_large_02.m2", + text = "netherstorm_overhangrock_large_02.m2", + }, + { + fileId = "193195", + value = "netherstorm_overhangrock_small_01.m2", + text = "netherstorm_overhangrock_small_01.m2", + }, + { + fileId = "193196", + value = "netherstorm_overhangrock_small_02.m2", + text = "netherstorm_overhangrock_small_02.m2", + }, + { + fileId = "193197", + value = "netherstorm_overhangrock_small_03.m2", + text = "netherstorm_overhangrock_small_03.m2", + }, + { + fileId = "193198", + value = "netherstorm_short02.m2", + text = "netherstorm_short02.m2", + }, + }, + value = "floatingrocks", + text = "floatingrocks", + }, + { + children = { + { + fileId = "193201", + value = "ol_goblinbridge_gears01.m2", + text = "ol_goblinbridge_gears01.m2", + }, + }, + value = "goblinbridge", + text = "goblinbridge", + }, + { + children = { + { + fileId = "193203", + value = "netherstorm_goblinwall01.m2", + text = "netherstorm_goblinwall01.m2", + }, + { + fileId = "193204", + value = "netherstorm_goblinwall02.m2", + text = "netherstorm_goblinwall02.m2", + }, + { + fileId = "193205", + value = "netherstorm_goblinwall_blasteast.m2", + text = "netherstorm_goblinwall_blasteast.m2", + }, + { + fileId = "193206", + value = "netherstorm_goblinwall_blastwest.m2", + text = "netherstorm_goblinwall_blastwest.m2", + }, + { + fileId = "193207", + value = "netherstorm_goblinwallcurve01.m2", + text = "netherstorm_goblinwallcurve01.m2", + }, + { + fileId = "193208", + value = "netherstorm_goblinwallgate01.m2", + text = "netherstorm_goblinwallgate01.m2", + }, + { + fileId = "193210", + value = "netherstorm_goblinwallpost01.m2", + text = "netherstorm_goblinwallpost01.m2", + }, + }, + value = "goblinwall", + text = "goblinwall", + }, + { + children = { + { + fileId = "193211", + value = "netherstormcracklighting01.m2", + text = "netherstormcracklighting01.m2", + }, + { + fileId = "193212", + value = "netherstormcracksmokeonly01.m2", + text = "netherstormcracksmokeonly01.m2", + }, + { + fileId = "193214", + value = "netherstormlightning01.m2", + text = "netherstormlightning01.m2", + }, + { + fileId = "193215", + value = "netherstormlightning02.m2", + text = "netherstormlightning02.m2", + }, + { + fileId = "193216", + value = "netherstormlightning03.m2", + text = "netherstormlightning03.m2", + }, + { + fileId = "193217", + value = "netherstormlightning04.m2", + text = "netherstormlightning04.m2", + }, + { + fileId = "193218", + value = "netherstormlightning05.m2", + text = "netherstormlightning05.m2", + }, + { + fileId = "193219", + value = "netherstormlightning06.m2", + text = "netherstormlightning06.m2", + }, + }, + value = "lightning", + text = "lightning", + }, + { + children = { + { + fileId = "193227", + value = "ns_rock_01.m2", + text = "ns_rock_01.m2", + }, + { + fileId = "193228", + value = "ns_rock_02.m2", + text = "ns_rock_02.m2", + }, + { + fileId = "193229", + value = "ns_rock_03.m2", + text = "ns_rock_03.m2", + }, + { + fileId = "193230", + value = "ns_rock_04.m2", + text = "ns_rock_04.m2", + }, + { + fileId = "193231", + value = "ns_rock_05.m2", + text = "ns_rock_05.m2", + }, + { + fileId = "193232", + value = "ns_rock_06.m2", + text = "ns_rock_06.m2", + }, + { + fileId = "193233", + value = "ns_rock_07.m2", + text = "ns_rock_07.m2", + }, + { + fileId = "193234", + value = "ns_rock_08.m2", + text = "ns_rock_08.m2", + }, + { + fileId = "193235", + value = "ns_rock_09.m2", + text = "ns_rock_09.m2", + }, + { + fileId = "193236", + value = "ns_rock_10.m2", + text = "ns_rock_10.m2", + }, + { + fileId = "193237", + value = "ns_rock_11.m2", + text = "ns_rock_11.m2", + }, + { + fileId = "193238", + value = "ns_rock_12.m2", + text = "ns_rock_12.m2", + }, + { + fileId = "193239", + value = "ns_rock_13.m2", + text = "ns_rock_13.m2", + }, + { + fileId = "193240", + value = "ns_rock_14.m2", + text = "ns_rock_14.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "193242", + value = "netherstormsporemound01.m2", + text = "netherstormsporemound01.m2", + }, + }, + value = "sporemound", + text = "sporemound", + }, + }, + value = "netherstorm", + text = "netherstorm", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "193243", + value = "pvp_lordaeron_door.m2", + text = "pvp_lordaeron_door.m2", + }, + { + fileId = "193244", + value = "pvp_ogre_door_front.m2", + text = "pvp_ogre_door_front.m2", + }, + { + fileId = "193245", + value = "pvp_ogre_door_interior.m2", + text = "pvp_ogre_door_interior.m2", + }, + { + fileId = "193246", + value = "pvp_orc_door_front.m2", + text = "pvp_orc_door_front.m2", + }, + { + fileId = "193247", + value = "pvp_orc_door_interior.m2", + text = "pvp_orc_door_interior.m2", + }, + }, + value = "doors", + text = "doors", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + }, + value = "pvp", + text = "pvp", + }, + { + children = { + { + children = { + { + fileId = "193248", + value = "ol_dwarvenbattlementmossy01.m2", + text = "ol_dwarvenbattlementmossy01.m2", + }, + { + fileId = "193249", + value = "ol_dwarvenbattlementmossy02.m2", + text = "ol_dwarvenbattlementmossy02.m2", + }, + { + fileId = "193250", + value = "ol_dwarvenbattlementmossy03.m2", + text = "ol_dwarvenbattlementmossy03.m2", + }, + { + fileId = "193251", + value = "ol_dwarvenbattlementmossy04.m2", + text = "ol_dwarvenbattlementmossy04.m2", + }, + { + fileId = "193252", + value = "ol_dwarvenbattlementmossy05.m2", + text = "ol_dwarvenbattlementmossy05.m2", + }, + { + fileId = "193253", + value = "ol_dwarvenbattlementmossy06.m2", + text = "ol_dwarvenbattlementmossy06.m2", + }, + { + fileId = "193254", + value = "ol_dwarvenbattlementmossy07.m2", + text = "ol_dwarvenbattlementmossy07.m2", + }, + { + fileId = "193255", + value = "ol_lochlamppost.m2", + text = "ol_lochlamppost.m2", + }, + { + fileId = "193257", + value = "ol_lochmodanstonefence02.m2", + text = "ol_lochmodanstonefence02.m2", + }, + }, + value = "base", + text = "base", + }, + { + children = { + { + fileId = "193261", + value = "shadowmoonblacktemplebrazier01.m2", + text = "shadowmoonblacktemplebrazier01.m2", + }, + }, + value = "brazier", + text = "brazier", + }, + { + children = { + { + fileId = "193263", + value = "chromaticcrystralformation_01.m2", + text = "chromaticcrystralformation_01.m2", + }, + { + fileId = "193264", + value = "chromaticcrystralformation_02.m2", + text = "chromaticcrystralformation_02.m2", + }, + { + fileId = "193265", + value = "chromaticcrystralformation_03.m2", + text = "chromaticcrystralformation_03.m2", + }, + }, + value = "crystals", + text = "crystals", + }, + { + children = { + { + fileId = "193269", + value = "shadowmoon_gravestones_horde_01.m2", + text = "shadowmoon_gravestones_horde_01.m2", + }, + { + fileId = "193270", + value = "shadowmoon_gravestones_horde_02.m2", + text = "shadowmoon_gravestones_horde_02.m2", + }, + { + fileId = "193271", + value = "shadowmoon_gravestones_horde_03.m2", + text = "shadowmoon_gravestones_horde_03.m2", + }, + }, + value = "graveyard", + text = "graveyard", + }, + { + children = { + { + fileId = "193278", + value = "shadowmoon_lavaguyser.m2", + text = "shadowmoon_lavaguyser.m2", + }, + { + fileId = "193279", + value = "shadowmoon_lavasplash01.m2", + text = "shadowmoon_lavasplash01.m2", + }, + { + fileId = "193280", + value = "shadowmoon_lavasplash02.m2", + text = "shadowmoon_lavasplash02.m2", + }, + }, + value = "guyser", + text = "guyser", + }, + { + children = { + { + fileId = "193282", + value = "shadowmoonlavaplaug01.m2", + text = "shadowmoonlavaplaug01.m2", + }, + { + fileId = "193283", + value = "shadowmoonlavaplaug02.m2", + text = "shadowmoonlavaplaug02.m2", + }, + }, + value = "lavaplugs", + text = "lavaplugs", + }, + { + children = { + { + fileId = "193284", + value = "markofkael.m2", + text = "markofkael.m2", + }, + }, + value = "markofkael", + text = "markofkael", + }, + { + children = { + { + fileId = "193286", + value = "shadowmoonmeteora.m2", + text = "shadowmoonmeteora.m2", + }, + { + fileId = "193287", + value = "shadowmoonmeteorb.m2", + text = "shadowmoonmeteorb.m2", + }, + { + fileId = "193288", + value = "shadowmoonmeteorc.m2", + text = "shadowmoonmeteorc.m2", + }, + { + fileId = "193289", + value = "shadowmoonmeteord.m2", + text = "shadowmoonmeteord.m2", + }, + { + fileId = "193290", + value = "shadowmoonmeteore.m2", + text = "shadowmoonmeteore.m2", + }, + }, + value = "meteor", + text = "meteor", + }, + { + children = { + { + fileId = "193291", + value = "infernallowpoly.m2", + text = "infernallowpoly.m2", + }, + }, + value = "quest", + text = "quest", + }, + { + children = { + { + fileId = "193293", + value = "shadowmoon_floatingsmall01.m2", + text = "shadowmoon_floatingsmall01.m2", + }, + { + fileId = "193294", + value = "shadowmoon_floatingsmall02.m2", + text = "shadowmoon_floatingsmall02.m2", + }, + { + fileId = "193295", + value = "shadowmoon_overhangrock_large_01.m2", + text = "shadowmoon_overhangrock_large_01.m2", + }, + { + fileId = "193296", + value = "shadowmoon_overhangrock_large_02.m2", + text = "shadowmoon_overhangrock_large_02.m2", + }, + { + fileId = "193297", + value = "shadowmoon_overhangrock_small_01.m2", + text = "shadowmoon_overhangrock_small_01.m2", + }, + { + fileId = "193298", + value = "shadowmoon_overhangrock_small_02.m2", + text = "shadowmoon_overhangrock_small_02.m2", + }, + { + fileId = "193299", + value = "shadowmoon_overhangrock_small_03.m2", + text = "shadowmoon_overhangrock_small_03.m2", + }, + { + fileId = "193300", + value = "shadowmoon_rock_01.m2", + text = "shadowmoon_rock_01.m2", + }, + { + fileId = "193301", + value = "shadowmoon_rock_02.m2", + text = "shadowmoon_rock_02.m2", + }, + { + fileId = "193302", + value = "shadowmoon_rock_03.m2", + text = "shadowmoon_rock_03.m2", + }, + { + fileId = "193303", + value = "shadowmoon_rock_04.m2", + text = "shadowmoon_rock_04.m2", + }, + { + fileId = "193304", + value = "shadowmoon_rock_05.m2", + text = "shadowmoon_rock_05.m2", + }, + { + fileId = "193305", + value = "shadowmoon_rock_06.m2", + text = "shadowmoon_rock_06.m2", + }, + { + fileId = "193306", + value = "shadowmoon_rock_07.m2", + text = "shadowmoon_rock_07.m2", + }, + { + fileId = "193307", + value = "shadowmoon_short02.m2", + text = "shadowmoon_short02.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "193312", + value = "shadowmoon_rune1.m2", + text = "shadowmoon_rune1.m2", + }, + { + fileId = "193313", + value = "shadowmoon_rune2.m2", + text = "shadowmoon_rune2.m2", + }, + }, + value = "rune", + text = "rune", + }, + { + children = { + { + fileId = "193314", + value = "shadowmoon_scaffolding01.m2", + text = "shadowmoon_scaffolding01.m2", + }, + { + fileId = "193315", + value = "shadowmoon_scaffolding02.m2", + text = "shadowmoon_scaffolding02.m2", + }, + { + fileId = "193316", + value = "shadowmoon_scaffolding03.m2", + text = "shadowmoon_scaffolding03.m2", + }, + }, + value = "scaffolding", + text = "scaffolding", + }, + { + children = { + { + fileId = "193318", + value = "burningash02.m2", + text = "burningash02.m2", + }, + { + fileId = "193319", + value = "burningash03.m2", + text = "burningash03.m2", + }, + { + fileId = "193321", + value = "shadowmooncracksmoke01.m2", + text = "shadowmooncracksmoke01.m2", + }, + }, + value = "smoke", + text = "smoke", + }, + { + children = { + { + fileId = "193326", + value = "shadowmoonvolcanotop.m2", + text = "shadowmoonvolcanotop.m2", + }, + }, + value = "volcano", + text = "volcano", + }, + }, + value = "shadowmoon", + text = "shadowmoon", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "193328", + value = "ancdrae_elevatorpiece.m2", + text = "ancdrae_elevatorpiece.m2", + }, + { + fileId = "193329", + value = "ancdrae_elevatorpiece_netherstorm.m2", + text = "ancdrae_elevatorpiece_netherstorm.m2", + }, + }, + value = "elevator", + text = "elevator", + }, + { + children = { + { + fileId = "193330", + value = "shattrathsouptent.m2", + text = "shattrathsouptent.m2", + }, + }, + value = "events", + text = "events", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "193331", + value = "battlemasterpedestal.m2", + text = "battlemasterpedestal.m2", + }, + }, + value = "battlemasterpedestal", + text = "battlemasterpedestal", + }, + { + children = { + { + fileId = "193332", + value = "ancient_d_bookshelf.m2", + text = "ancient_d_bookshelf.m2", + }, + }, + value = "bookshelf", + text = "bookshelf", + }, + { + children = { + { + fileId = "193340", + value = "shattrath_narru_energy_fx.m2", + text = "shattrath_narru_energy_fx.m2", + }, + }, + value = "central_energy_fx", + text = "central_energy_fx", + }, + { + children = { + { + fileId = "193342", + value = "hf_outpostcrystals.m2", + text = "hf_outpostcrystals.m2", + }, + { + fileId = "193343", + value = "outpost_crystals1.m2", + text = "outpost_crystals1.m2", + }, + { + fileId = "193347", + value = "shattrath_crystal_bank.m2", + text = "shattrath_crystal_bank.m2", + }, + { + fileId = "193348", + value = "shattrath_crystal_holyaldurtemple.m2", + text = "shattrath_crystal_holyaldurtemple.m2", + }, + { + fileId = "193349", + value = "shattrath_crystal_huta.m2", + text = "shattrath_crystal_huta.m2", + }, + { + fileId = "193350", + value = "shattrath_crystal_hutb.m2", + text = "shattrath_crystal_hutb.m2", + }, + { + fileId = "193351", + value = "shattrath_crystal_hutc.m2", + text = "shattrath_crystal_hutc.m2", + }, + { + fileId = "193352", + value = "shattrath_crystal_inn_bottom.m2", + text = "shattrath_crystal_inn_bottom.m2", + }, + { + fileId = "193353", + value = "shattrath_crystal_inn_floating.m2", + text = "shattrath_crystal_inn_floating.m2", + }, + { + fileId = "193355", + value = "shattrath_crystal_outpost.m2", + text = "shattrath_crystal_outpost.m2", + }, + { + fileId = "193356", + value = "shattrath_crystal_temple_ext.m2", + text = "shattrath_crystal_temple_ext.m2", + }, + { + fileId = "193357", + value = "shattrath_crystal_temple_int.m2", + text = "shattrath_crystal_temple_int.m2", + }, + { + fileId = "193358", + value = "shattrath_crystal_terrace.m2", + text = "shattrath_crystal_terrace.m2", + }, + }, + value = "crystal_tops", + text = "crystal_tops", + }, + { + children = { + { + fileId = "193359", + value = "shattrath_scryerdoodads.m2", + text = "shattrath_scryerdoodads.m2", + }, + { + fileId = "193360", + value = "shattrath_scryerdoodads_backcrates.m2", + text = "shattrath_scryerdoodads_backcrates.m2", + }, + }, + value = "giantdoodads", + text = "giantdoodads", + }, + { + children = { + { + fileId = "193362", + value = "shattrath_draenei_holy_fx.m2", + text = "shattrath_draenei_holy_fx.m2", + }, + }, + value = "holy_energy_fx", + text = "holy_energy_fx", + }, + { + children = { + { + fileId = "193363", + value = "ancient_d_braizer.m2", + text = "ancient_d_braizer.m2", + }, + { + fileId = "193364", + value = "ancient_d_braizer_blue.m2", + text = "ancient_d_braizer_blue.m2", + }, + { + fileId = "193365", + value = "ancient_d_braizer_blue_lowbatch.m2", + text = "ancient_d_braizer_blue_lowbatch.m2", + }, + { + fileId = "193366", + value = "ancient_d_braizer_blue_shortsmoke.m2", + text = "ancient_d_braizer_blue_shortsmoke.m2", + }, + { + fileId = "193367", + value = "ancient_d_braizer_broken.m2", + text = "ancient_d_braizer_broken.m2", + }, + { + fileId = "193368", + value = "ancient_d_braizer_red.m2", + text = "ancient_d_braizer_red.m2", + }, + { + fileId = "193369", + value = "ancient_d_sconce.m2", + text = "ancient_d_sconce.m2", + }, + { + fileId = "193370", + value = "ancient_d_sconce_off.m2", + text = "ancient_d_sconce_off.m2", + }, + { + fileId = "193371", + value = "ancient_d_standing_light.m2", + text = "ancient_d_standing_light.m2", + }, + { + fileId = "193372", + value = "ancient_d_standing_light_off.m2", + text = "ancient_d_standing_light_off.m2", + }, + }, + value = "lighting", + text = "lighting", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "shattrath", + text = "shattrath", + }, + { + children = { + { + children = { + { + fileId = "193383", + value = "silvermoonbush05.m2", + text = "silvermoonbush05.m2", + }, + { + fileId = "193384", + value = "silvermoonbush06.m2", + text = "silvermoonbush06.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "193386", + value = "floatingdandelions01.m2", + text = "floatingdandelions01.m2", + }, + }, + value = "floatingdandelions", + text = "floatingdandelions", + }, + { + children = { + { + fileId = "193392", + value = "silvermoonflower01.m2", + text = "silvermoonflower01.m2", + }, + { + fileId = "193393", + value = "silvermoonflower02.m2", + text = "silvermoonflower02.m2", + }, + { + fileId = "193394", + value = "silvermoonflower03.m2", + text = "silvermoonflower03.m2", + }, + { + fileId = "193395", + value = "silvermoonflower04.m2", + text = "silvermoonflower04.m2", + }, + { + fileId = "193396", + value = "silvermoonflower05.m2", + text = "silvermoonflower05.m2", + }, + { + fileId = "193397", + value = "silvermoonflower06.m2", + text = "silvermoonflower06.m2", + }, + }, + value = "flowers", + text = "flowers", + }, + { + children = { + { + fileId = "193399", + value = "eversongcliffrock01.m2", + text = "eversongcliffrock01.m2", + }, + { + fileId = "193400", + value = "eversongcliffrock02.m2", + text = "eversongcliffrock02.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "193402", + value = "silvermoontree08.m2", + text = "silvermoontree08.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "193405", + value = "bigfountainwater.m2", + text = "bigfountainwater.m2", + }, + }, + value = "water", + text = "water", + }, + }, + value = "silvermoon", + text = "silvermoon", + }, + { + children = { + { + children = { + { + fileId = "193407", + value = "silvermystbush01.m2", + text = "silvermystbush01.m2", + }, + { + fileId = "193408", + value = "silvermystbush02.m2", + text = "silvermystbush02.m2", + }, + { + fileId = "193409", + value = "silvermystbush03.m2", + text = "silvermystbush03.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "193414", + value = "silvermystcompass01.m2", + text = "silvermystcompass01.m2", + }, + }, + value = "compass", + text = "compass", + }, + { + children = { + { + fileId = "193420", + value = "silvermyst_elfinn_crystal.m2", + text = "silvermyst_elfinn_crystal.m2", + }, + { + fileId = "193421", + value = "silvermystcrystal01.m2", + text = "silvermystcrystal01.m2", + }, + { + fileId = "193422", + value = "silvermystcrystal01_orange.m2", + text = "silvermystcrystal01_orange.m2", + }, + { + fileId = "193423", + value = "silvermystcrystal01_yellow.m2", + text = "silvermystcrystal01_yellow.m2", + }, + { + fileId = "193424", + value = "silvermystcrystal02.m2", + text = "silvermystcrystal02.m2", + }, + { + fileId = "193425", + value = "silvermystcrystal02_orange.m2", + text = "silvermystcrystal02_orange.m2", + }, + { + fileId = "193426", + value = "silvermystcrystal02_yellow.m2", + text = "silvermystcrystal02_yellow.m2", + }, + { + fileId = "193427", + value = "silvermystcrystal03.m2", + text = "silvermystcrystal03.m2", + }, + { + fileId = "193428", + value = "silvermystcrystal03_orange.m2", + text = "silvermystcrystal03_orange.m2", + }, + { + fileId = "193429", + value = "silvermystcrystal03_yellow.m2", + text = "silvermystcrystal03_yellow.m2", + }, + { + fileId = "193434", + value = "silvermystcrystalbig01.m2", + text = "silvermystcrystalbig01.m2", + }, + { + fileId = "193435", + value = "silvermystcrystalbig01_orange.m2", + text = "silvermystcrystalbig01_orange.m2", + }, + { + fileId = "193436", + value = "silvermystcrystalbig01_yellow.m2", + text = "silvermystcrystalbig01_yellow.m2", + }, + { + fileId = "193437", + value = "silvermystcrystalbig02.m2", + text = "silvermystcrystalbig02.m2", + }, + { + fileId = "193438", + value = "silvermystcrystalbig02_orange.m2", + text = "silvermystcrystalbig02_orange.m2", + }, + { + fileId = "193439", + value = "silvermystcrystalbig02_yellow.m2", + text = "silvermystcrystalbig02_yellow.m2", + }, + { + fileId = "193440", + value = "silvermystcrystalbig03.m2", + text = "silvermystcrystalbig03.m2", + }, + { + fileId = "193441", + value = "silvermystcrystalbig03_orange.m2", + text = "silvermystcrystalbig03_orange.m2", + }, + { + fileId = "193442", + value = "silvermystcrystalbig03_yellow.m2", + text = "silvermystcrystalbig03_yellow.m2", + }, + { + fileId = "193446", + value = "silvermystcrystalsmall01.m2", + text = "silvermystcrystalsmall01.m2", + }, + { + fileId = "193447", + value = "silvermystcrystalsmall01_orange.m2", + text = "silvermystcrystalsmall01_orange.m2", + }, + { + fileId = "193448", + value = "silvermystcrystalsmall01_yellow.m2", + text = "silvermystcrystalsmall01_yellow.m2", + }, + { + fileId = "193449", + value = "silvermystcrystalsmall02.m2", + text = "silvermystcrystalsmall02.m2", + }, + { + fileId = "193450", + value = "silvermystcrystalsmall02_orange.m2", + text = "silvermystcrystalsmall02_orange.m2", + }, + { + fileId = "193451", + value = "silvermystcrystalsmall02_yellow.m2", + text = "silvermystcrystalsmall02_yellow.m2", + }, + { + fileId = "193452", + value = "silvermystcrystalsmall03.m2", + text = "silvermystcrystalsmall03.m2", + }, + { + fileId = "193453", + value = "silvermystcrystalsmall03_orange.m2", + text = "silvermystcrystalsmall03_orange.m2", + }, + { + fileId = "193454", + value = "silvermystcrystalsmall03_yellow.m2", + text = "silvermystcrystalsmall03_yellow.m2", + }, + }, + value = "crystals", + text = "crystals", + }, + { + children = { + { + fileId = "193457", + value = "silvermyst_leafpile.m2", + text = "silvermyst_leafpile.m2", + }, + }, + value = "leafpile", + text = "leafpile", + }, + { + children = { + { + fileId = "193458", + value = "silvermystlightningbolt01.m2", + text = "silvermystlightningbolt01.m2", + }, + }, + value = "lightning", + text = "lightning", + }, + { + children = { + { + fileId = "193460", + value = "silvermyst_lightshaft.m2", + text = "silvermyst_lightshaft.m2", + }, + { + fileId = "193461", + value = "silvermyst_lightshaft02.m2", + text = "silvermyst_lightshaft02.m2", + }, + { + fileId = "193462", + value = "silvermyst_lightshaft03.m2", + text = "silvermyst_lightshaft03.m2", + }, + }, + value = "lightshaft", + text = "lightshaft", + }, + { + children = { + { + fileId = "193464", + value = "silvermyst_moonstone_blue.m2", + text = "silvermyst_moonstone_blue.m2", + }, + { + fileId = "193466", + value = "silvermyst_moonstone_green.m2", + text = "silvermyst_moonstone_green.m2", + }, + { + fileId = "193468", + value = "silvermyst_moonstone_red.m2", + text = "silvermyst_moonstone_red.m2", + }, + }, + value = "moonstone", + text = "moonstone", + }, + { + children = { + { + fileId = "193469", + value = "d_smoke.m2", + text = "d_smoke.m2", + }, + }, + value = "smoke", + text = "smoke", + }, + { + children = { + { + fileId = "193478", + value = "silvermysttree01.m2", + text = "silvermysttree01.m2", + }, + { + fileId = "193479", + value = "silvermysttree02.m2", + text = "silvermysttree02.m2", + }, + { + fileId = "193480", + value = "silvermysttree03.m2", + text = "silvermysttree03.m2", + }, + { + fileId = "193481", + value = "silvermysttree04.m2", + text = "silvermysttree04.m2", + }, + { + fileId = "193482", + value = "silvermysttree05.m2", + text = "silvermysttree05.m2", + }, + { + fileId = "193483", + value = "silvermysttree_fallen01.m2", + text = "silvermysttree_fallen01.m2", + }, + { + fileId = "193484", + value = "silvermysttreeroots01.m2", + text = "silvermysttreeroots01.m2", + }, + { + fileId = "193485", + value = "silvermysttreetorn01.m2", + text = "silvermysttreetorn01.m2", + }, + { + fileId = "193486", + value = "silvermysttreetorn02.m2", + text = "silvermysttreetorn02.m2", + }, + { + fileId = "193487", + value = "silvermysttreetorn03.m2", + text = "silvermysttreetorn03.m2", + }, + { + fileId = "193488", + value = "silvermysttreetorn04.m2", + text = "silvermysttreetorn04.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "silvermyst", + text = "silvermyst", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "193491", + value = "frostwurmfellfire_birth.m2", + text = "frostwurmfellfire_birth.m2", + }, + { + fileId = "193497", + value = "sunwell_bosscollision01.m2", + text = "sunwell_bosscollision01.m2", + }, + { + fileId = "193498", + value = "sunwell_bosscollision02.m2", + text = "sunwell_bosscollision02.m2", + }, + { + fileId = "193499", + value = "sunwell_bossforcefield.m2", + text = "sunwell_bossforcefield.m2", + }, + { + fileId = "193508", + value = "sunwell_fx.m2", + text = "sunwell_fx.m2", + }, + { + fileId = "193511", + value = "sunwell_ice_barrier.m2", + text = "sunwell_ice_barrier.m2", + }, + { + fileId = "193518", + value = "sunwell_replica.m2", + text = "sunwell_replica.m2", + }, + { + fileId = "193525", + value = "sunwell_windowdust.m2", + text = "sunwell_windowdust.m2", + }, + { + fileId = "193527", + value = "sunwellraid_gate_01.m2", + text = "sunwellraid_gate_01.m2", + }, + { + fileId = "193528", + value = "sunwellraid_gate_02.m2", + text = "sunwellraid_gate_02.m2", + }, + { + fileId = "193529", + value = "sunwellraid_gate_03.m2", + text = "sunwellraid_gate_03.m2", + }, + { + fileId = "193530", + value = "sunwellraid_gate_04.m2", + text = "sunwellraid_gate_04.m2", + }, + }, + value = "sunwell", + text = "sunwell", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "sunwell", + text = "sunwell", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "193538", + value = "tk_boss_pod.m2", + text = "tk_boss_pod.m2", + }, + }, + value = "arcane_boss_pod", + text = "arcane_boss_pod", + }, + { + children = { + { + fileId = "193539", + value = "tk_arcane_door_horiz.m2", + text = "tk_arcane_door_horiz.m2", + }, + { + fileId = "193540", + value = "tk_arcane_door_vert.m2", + text = "tk_arcane_door_vert.m2", + }, + }, + value = "arcane_doors", + text = "arcane_doors", + }, + { + children = { + { + fileId = "193541", + value = "tk_prison_cell.m2", + text = "tk_prison_cell.m2", + }, + }, + value = "arcane_pod", + text = "arcane_pod", + }, + { + children = { + { + fileId = "193551", + value = "tk_main_control_console.m2", + text = "tk_main_control_console.m2", + }, + { + fileId = "193552", + value = "tk_short_control_console.m2", + text = "tk_short_control_console.m2", + }, + { + fileId = "193553", + value = "tk_tall_control_console.m2", + text = "tk_tall_control_console.m2", + }, + }, + value = "control_console", + text = "control_console", + }, + { + children = { + { + fileId = "193558", + value = "tk_exterior_crystals.m2", + text = "tk_exterior_crystals.m2", + }, + }, + value = "crystals", + text = "crystals", + }, + { + children = { + { + fileId = "193564", + value = "tk_factory_door.m2", + text = "tk_factory_door.m2", + }, + { + fileId = "193565", + value = "tk_factory_door_vert.m2", + text = "tk_factory_door_vert.m2", + }, + }, + value = "factory_door", + text = "factory_door", + }, + { + children = { + { + fileId = "193566", + value = "kael_explode_fx_left.m2", + text = "kael_explode_fx_left.m2", + }, + { + fileId = "193567", + value = "kael_explode_fx_right.m2", + text = "kael_explode_fx_right.m2", + }, + }, + value = "kael_statue", + text = "kael_statue", + }, + { + children = { + { + fileId = "193569", + value = "tk_raid_door.m2", + text = "tk_raid_door.m2", + }, + }, + value = "raid_door", + text = "raid_door", + }, + { + children = { + { + fileId = "193572", + value = "tk_raid_windows_tall.m2", + text = "tk_raid_windows_tall.m2", + }, + }, + value = "raid_windows", + text = "raid_windows", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "193573", + value = "tk_bridge_graphics.m2", + text = "tk_bridge_graphics.m2", + }, + { + fileId = "193574", + value = "tk_bridge_graphics2.m2", + text = "tk_bridge_graphics2.m2", + }, + }, + value = "bridges", + text = "bridges", + }, + { + children = { + { + fileId = "193577", + value = "tk_container_01.m2", + text = "tk_container_01.m2", + }, + { + fileId = "193578", + value = "tk_container_02.m2", + text = "tk_container_02.m2", + }, + }, + value = "container", + text = "container", + }, + { + children = { + { + fileId = "193585", + value = "tk_exterior_crystals_bottom.m2", + text = "tk_exterior_crystals_bottom.m2", + }, + { + fileId = "193586", + value = "tk_exterior_crystals_top.m2", + text = "tk_exterior_crystals_top.m2", + }, + { + fileId = "193587", + value = "tk_smallwing_arcane_crystals_bottom.m2", + text = "tk_smallwing_arcane_crystals_bottom.m2", + }, + { + fileId = "193588", + value = "tk_smallwing_arcane_crystals_top.m2", + text = "tk_smallwing_arcane_crystals_top.m2", + }, + { + fileId = "193589", + value = "tk_smallwing_crystals.m2", + text = "tk_smallwing_crystals.m2", + }, + { + fileId = "193590", + value = "tk_smallwing_crystals_bottom.m2", + text = "tk_smallwing_crystals_bottom.m2", + }, + { + fileId = "193591", + value = "tk_smallwing_crystals_top.m2", + text = "tk_smallwing_crystals_top.m2", + }, + { + fileId = "193592", + value = "tk_smallwing_factory_crystals_bottom.m2", + text = "tk_smallwing_factory_crystals_bottom.m2", + }, + { + fileId = "193593", + value = "tk_smallwing_factory_crystals_top.m2", + text = "tk_smallwing_factory_crystals_top.m2", + }, + }, + value = "crystals", + text = "crystals", + }, + { + children = { + { + fileId = "193595", + value = "tk_energy_exhaust_01.m2", + text = "tk_energy_exhaust_01.m2", + }, + { + fileId = "193596", + value = "tk_forcefield_atrium_outline.m2", + text = "tk_forcefield_atrium_outline.m2", + }, + { + fileId = "193597", + value = "tk_forcefield_entry_outline.m2", + text = "tk_forcefield_entry_outline.m2", + }, + { + fileId = "193598", + value = "tk_forcefield_outline.m2", + text = "tk_forcefield_outline.m2", + }, + }, + value = "forcefields", + text = "forcefields", + }, + { + children = { + { + fileId = "193605", + value = "tk_helix_floor_reflection.m2", + text = "tk_helix_floor_reflection.m2", + }, + { + fileId = "193606", + value = "tk_main_bridge_reflection.m2", + text = "tk_main_bridge_reflection.m2", + }, + { + fileId = "193607", + value = "tk_ramp_reflection.m2", + text = "tk_ramp_reflection.m2", + }, + }, + value = "prisonbridges", + text = "prisonbridges", + }, + { + children = { + { + fileId = "193614", + value = "tk_prison_cell_dark.m2", + text = "tk_prison_cell_dark.m2", + }, + { + fileId = "193615", + value = "tk_prison_cell_illuminated.m2", + text = "tk_prison_cell_illuminated.m2", + }, + { + fileId = "193616", + value = "tk_prison_cell_toponly.m2", + text = "tk_prison_cell_toponly.m2", + }, + }, + value = "prisoncellglass", + text = "prisoncellglass", + }, + { + children = { + { + fileId = "193626", + value = "tk_lightning_ball.m2", + text = "tk_lightning_ball.m2", + }, + { + fileId = "193627", + value = "tk_lightning_diagonal.m2", + text = "tk_lightning_diagonal.m2", + }, + { + fileId = "193628", + value = "tk_lightning_diagonal_ball.m2", + text = "tk_lightning_diagonal_ball.m2", + }, + { + fileId = "193629", + value = "tk_lightning_fx_3_sides_room.m2", + text = "tk_lightning_fx_3_sides_room.m2", + }, + { + fileId = "193630", + value = "tk_lightning_fx_helix_room.m2", + text = "tk_lightning_fx_helix_room.m2", + }, + { + fileId = "193631", + value = "tk_lightning_fx_tri_room.m2", + text = "tk_lightning_fx_tri_room.m2", + }, + { + fileId = "193632", + value = "tk_lightning_horizontal.m2", + text = "tk_lightning_horizontal.m2", + }, + { + fileId = "193633", + value = "tk_prison_fx.m2", + text = "tk_prison_fx.m2", + }, + }, + value = "prisonfx", + text = "prisonfx", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "tempestkeep", + text = "tempestkeep", + }, + { + children = { + { + children = { + { + fileId = "193634", + value = "be_arcanebomb.m2", + text = "be_arcanebomb.m2", + }, + { + fileId = "193639", + value = "be_arcanebomb_orb.m2", + text = "be_arcanebomb_orb.m2", + }, + }, + value = "bomb", + text = "bomb", + }, + { + children = { + { + fileId = "193645", + value = "terokkar_bonepile01.m2", + text = "terokkar_bonepile01.m2", + }, + { + fileId = "193646", + value = "terokkar_bonepile02.m2", + text = "terokkar_bonepile02.m2", + }, + }, + value = "bonepile", + text = "bonepile", + }, + { + children = { + { + fileId = "193648", + value = "chokeberrybush.m2", + text = "chokeberrybush.m2", + }, + { + fileId = "193650", + value = "terokkarbush01.m2", + text = "terokkarbush01.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "193653", + value = "terokkarcrystal01.m2", + text = "terokkarcrystal01.m2", + }, + { + fileId = "193654", + value = "terokkarcrystal02.m2", + text = "terokkarcrystal02.m2", + }, + { + fileId = "193655", + value = "terokkarcrystal03.m2", + text = "terokkarcrystal03.m2", + }, + }, + value = "crystal", + text = "crystal", + }, + { + children = { + { + fileId = "193659", + value = "terokkar_lightray01.m2", + text = "terokkar_lightray01.m2", + }, + { + fileId = "193660", + value = "terokkar_lightray02.m2", + text = "terokkar_lightray02.m2", + }, + }, + value = "lightray", + text = "lightray", + }, + { + children = { + { + fileId = "193663", + value = "terokkarpinecone.m2", + text = "terokkarpinecone.m2", + }, + }, + value = "pinecone", + text = "pinecone", + }, + { + children = { + { + fileId = "193666", + value = "terokkar_floatingsmall01.m2", + text = "terokkar_floatingsmall01.m2", + }, + { + fileId = "193667", + value = "terokkar_floatingsmall02.m2", + text = "terokkar_floatingsmall02.m2", + }, + { + fileId = "193668", + value = "terokkar_overhangrock_large_01.m2", + text = "terokkar_overhangrock_large_01.m2", + }, + { + fileId = "193669", + value = "terokkar_overhangrock_large_02.m2", + text = "terokkar_overhangrock_large_02.m2", + }, + { + fileId = "193670", + value = "terokkar_overhangrock_small_01.m2", + text = "terokkar_overhangrock_small_01.m2", + }, + { + fileId = "193671", + value = "terokkar_overhangrock_small_02.m2", + text = "terokkar_overhangrock_small_02.m2", + }, + { + fileId = "193672", + value = "terokkar_overhangrock_small_03.m2", + text = "terokkar_overhangrock_small_03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "193674", + value = "terokkar_auch_ruin01.m2", + text = "terokkar_auch_ruin01.m2", + }, + { + fileId = "193675", + value = "terokkar_auch_ruin02.m2", + text = "terokkar_auch_ruin02.m2", + }, + { + fileId = "193676", + value = "terokkar_auch_ruin03.m2", + text = "terokkar_auch_ruin03.m2", + }, + { + fileId = "193677", + value = "terokkar_auch_ruin04.m2", + text = "terokkar_auch_ruin04.m2", + }, + { + fileId = "193678", + value = "terokkar_auch_ruin05.m2", + text = "terokkar_auch_ruin05.m2", + }, + { + fileId = "193679", + value = "terokkar_auch_ruin06.m2", + text = "terokkar_auch_ruin06.m2", + }, + { + fileId = "193680", + value = "terokkar_auch_ruin07.m2", + text = "terokkar_auch_ruin07.m2", + }, + { + fileId = "193681", + value = "terokkar_auch_ruin08.m2", + text = "terokkar_auch_ruin08.m2", + }, + { + fileId = "193682", + value = "terokkar_auch_ruin09.m2", + text = "terokkar_auch_ruin09.m2", + }, + { + fileId = "193683", + value = "terokkar_auch_ruin10.m2", + text = "terokkar_auch_ruin10.m2", + }, + }, + value = "ruin", + text = "ruin", + }, + { + children = { + { + fileId = "193686", + value = "terokkar_boneshrine_arch01.m2", + text = "terokkar_boneshrine_arch01.m2", + }, + { + fileId = "193687", + value = "terokkar_boneshrine_arch02.m2", + text = "terokkar_boneshrine_arch02.m2", + }, + }, + value = "shrine", + text = "shrine", + }, + { + children = { + { + fileId = "193688", + value = "terokkar_signpost_01.m2", + text = "terokkar_signpost_01.m2", + }, + { + fileId = "193689", + value = "terokkar_signpost_sign.m2", + text = "terokkar_signpost_sign.m2", + }, + }, + value = "signposts", + text = "signposts", + }, + { + children = { + { + fileId = "193691", + value = "terokkarfallentree.m2", + text = "terokkarfallentree.m2", + }, + { + fileId = "193692", + value = "terokkartreelarge.m2", + text = "terokkartreelarge.m2", + }, + { + fileId = "193693", + value = "terokkartreelargepinecones.m2", + text = "terokkartreelargepinecones.m2", + }, + { + fileId = "193694", + value = "terokkartreemedium.m2", + text = "terokkartreemedium.m2", + }, + { + fileId = "193695", + value = "terokkartreemediumpinecones.m2", + text = "terokkartreemediumpinecones.m2", + }, + { + fileId = "193696", + value = "terokkartreenoleaves01.m2", + text = "terokkartreenoleaves01.m2", + }, + { + fileId = "193697", + value = "terokkartreenoleaves02.m2", + text = "terokkartreenoleaves02.m2", + }, + { + fileId = "193698", + value = "terokkartreesapling.m2", + text = "terokkartreesapling.m2", + }, + { + fileId = "193699", + value = "terokkartreesmall.m2", + text = "terokkartreesmall.m2", + }, + { + fileId = "193700", + value = "terokkartreestump.m2", + text = "terokkartreestump.m2", + }, + { + fileId = "193701", + value = "terokkartreestump02.m2", + text = "terokkartreestump02.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "193710", + value = "terokkar_post_01.m2", + text = "terokkar_post_01.m2", + }, + { + fileId = "193711", + value = "terokkar_post_ruin_01.m2", + text = "terokkar_post_ruin_01.m2", + }, + { + fileId = "193712", + value = "terokkar_wall_01.m2", + text = "terokkar_wall_01.m2", + }, + { + fileId = "193713", + value = "terokkar_wall_ruin_01.m2", + text = "terokkar_wall_ruin_01.m2", + }, + }, + value = "walls", + text = "walls", + }, + { + children = { + { + fileId = "193719", + value = "terokkarweb01.m2", + text = "terokkarweb01.m2", + }, + { + fileId = "193720", + value = "terokkarweb02.m2", + text = "terokkarweb02.m2", + }, + { + fileId = "193721", + value = "terokkarweb03.m2", + text = "terokkarweb03.m2", + }, + { + fileId = "193722", + value = "terokkarweb04.m2", + text = "terokkarweb04.m2", + }, + }, + value = "webs", + text = "webs", + }, + }, + value = "terokkar", + text = "terokkar", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "193727", + value = "exodar_long_banner.m2", + text = "exodar_long_banner.m2", + }, + { + fileId = "193728", + value = "exodar_long_banner_anim.m2", + text = "exodar_long_banner_anim.m2", + }, + { + fileId = "193729", + value = "exodar_medium_banner.m2", + text = "exodar_medium_banner.m2", + }, + { + fileId = "193730", + value = "exodar_medium_banner_anim.m2", + text = "exodar_medium_banner_anim.m2", + }, + { + fileId = "193731", + value = "exodar_medium_hang_banner.m2", + text = "exodar_medium_hang_banner.m2", + }, + { + fileId = "193732", + value = "exodar_medium_hang_banner_anim.m2", + text = "exodar_medium_hang_banner_anim.m2", + }, + { + fileId = "193733", + value = "exodar_medium_hang_banner_anim_type2.m2", + text = "exodar_medium_hang_banner_anim_type2.m2", + }, + { + fileId = "193734", + value = "exodar_thin2_hang_banner.m2", + text = "exodar_thin2_hang_banner.m2", + }, + { + fileId = "193735", + value = "exodar_thin_banner.m2", + text = "exodar_thin_banner.m2", + }, + { + fileId = "193736", + value = "exodar_thin_banner_anim.m2", + text = "exodar_thin_banner_anim.m2", + }, + { + fileId = "193737", + value = "exodar_thin_hang_banner.m2", + text = "exodar_thin_hang_banner.m2", + }, + { + fileId = "193738", + value = "exodar_thin_hang_banner_anim.m2", + text = "exodar_thin_hang_banner_anim.m2", + }, + { + fileId = "193739", + value = "exodar_thin_hang_banner_animtype2.m2", + text = "exodar_thin_hang_banner_animtype2.m2", + }, + { + fileId = "193740", + value = "exodar_thin_hang_banner_animtype3.m2", + text = "exodar_thin_hang_banner_animtype3.m2", + }, + { + fileId = "193741", + value = "exodar_tri_banner_blue.m2", + text = "exodar_tri_banner_blue.m2", + }, + { + fileId = "193742", + value = "exodar_tri_banner_red.m2", + text = "exodar_tri_banner_red.m2", + }, + { + fileId = "193743", + value = "exodar_tri_banner_s_blue.m2", + text = "exodar_tri_banner_s_blue.m2", + }, + { + fileId = "193744", + value = "exodar_tri_banner_s_red.m2", + text = "exodar_tri_banner_s_red.m2", + }, + { + fileId = "193745", + value = "exodar_wide_banner.m2", + text = "exodar_wide_banner.m2", + }, + { + fileId = "193746", + value = "exodar_wide_banner_anim.m2", + text = "exodar_wide_banner_anim.m2", + }, + { + fileId = "193747", + value = "exodar_wide_hang_banner.m2", + text = "exodar_wide_hang_banner.m2", + }, + { + fileId = "193748", + value = "exodar_wide_hang_banner_anim.m2", + text = "exodar_wide_hang_banner_anim.m2", + }, + { + fileId = "193749", + value = "exodar_wide_hang_banner_anim_type2.m2", + text = "exodar_wide_hang_banner_anim_type2.m2", + }, + { + fileId = "193750", + value = "exodar_wide_hang_banner_anim_type3.m2", + text = "exodar_wide_hang_banner_anim_type3.m2", + }, + }, + value = "clothobjects", + text = "clothobjects", + }, + { + children = { + { + fileId = "193754", + value = "crystal_corrupted.m2", + text = "crystal_corrupted.m2", + }, + { + fileId = "193756", + value = "narru_crystal_pot.m2", + text = "narru_crystal_pot.m2", + }, + { + fileId = "193757", + value = "narru_crystal_pure.m2", + text = "narru_crystal_pure.m2", + }, + }, + value = "crystal", + text = "crystal", + }, + { + children = { + { + fileId = "193760", + value = "exodar_center_naaru_crystals.m2", + text = "exodar_center_naaru_crystals.m2", + }, + { + fileId = "193761", + value = "exodar_crystal_chandelier.m2", + text = "exodar_crystal_chandelier.m2", + }, + { + fileId = "193762", + value = "exodar_crystal_large.m2", + text = "exodar_crystal_large.m2", + }, + { + fileId = "193763", + value = "exodar_crystal_large_yelllow.m2", + text = "exodar_crystal_large_yelllow.m2", + }, + { + fileId = "193764", + value = "exodar_crystal_thin.m2", + text = "exodar_crystal_thin.m2", + }, + { + fileId = "193765", + value = "exodar_crystal_thin_type2.m2", + text = "exodar_crystal_thin_type2.m2", + }, + { + fileId = "193766", + value = "exodar_crystal_thin_yellow.m2", + text = "exodar_crystal_thin_yellow.m2", + }, + { + fileId = "193767", + value = "exodar_crystal_yellow_bunch.m2", + text = "exodar_crystal_yellow_bunch.m2", + }, + }, + value = "crystals", + text = "crystals", + }, + { + children = { + { + fileId = "193780", + value = "exodar_sconce.m2", + text = "exodar_sconce.m2", + }, + { + fileId = "193781", + value = "exodar_sconce_blue.m2", + text = "exodar_sconce_blue.m2", + }, + { + fileId = "193782", + value = "exodar_sconce_magenta.m2", + text = "exodar_sconce_magenta.m2", + }, + }, + value = "light_sconces", + text = "light_sconces", + }, + { + children = { + { + fileId = "193789", + value = "exodar_narucore_fx.m2", + text = "exodar_narucore_fx.m2", + }, + }, + value = "naaru_core", + text = "naaru_core", + }, + { + children = { + { + fileId = "193800", + value = "exodar_paladin_shrine_energyfx.m2", + text = "exodar_paladin_shrine_energyfx.m2", + }, + }, + value = "paladin_energy_fx", + text = "paladin_energy_fx", + }, + { + children = { + { + fileId = "193805", + value = "draenei_shamen_stones_t1.m2", + text = "draenei_shamen_stones_t1.m2", + }, + { + fileId = "193806", + value = "draenei_shamen_stones_t1_broken.m2", + text = "draenei_shamen_stones_t1_broken.m2", + }, + { + fileId = "193807", + value = "draenei_shamen_stones_t2.m2", + text = "draenei_shamen_stones_t2.m2", + }, + { + fileId = "193808", + value = "draenei_shamen_stones_yellow_t1.m2", + text = "draenei_shamen_stones_yellow_t1.m2", + }, + { + fileId = "193809", + value = "draenei_shamen_stones_yellow_t1_broken.m2", + text = "draenei_shamen_stones_yellow_t1_broken.m2", + }, + { + fileId = "193810", + value = "draenei_shamen_stones_yellow_t2.m2", + text = "draenei_shamen_stones_yellow_t2.m2", + }, + }, + value = "shamen_stones", + text = "shamen_stones", + }, + { + children = { + { + fileId = "193823", + value = "exodar_cheese_sign.m2", + text = "exodar_cheese_sign.m2", + }, + { + fileId = "193824", + value = "exodar_herbalism_sign.m2", + text = "exodar_herbalism_sign.m2", + }, + { + fileId = "193825", + value = "exodar_hunter_sign.m2", + text = "exodar_hunter_sign.m2", + }, + { + fileId = "193826", + value = "exodar_inn_sign.m2", + text = "exodar_inn_sign.m2", + }, + { + fileId = "193828", + value = "exodar_smith_sign.m2", + text = "exodar_smith_sign.m2", + }, + { + fileId = "193829", + value = "exodar_warrior_sign.m2", + text = "exodar_warrior_sign.m2", + }, + }, + value = "signs", + text = "signs", + }, + { + children = { + { + fileId = "193841", + value = "exodar_sky_portal.m2", + text = "exodar_sky_portal.m2", + }, + }, + value = "sky_portal", + text = "sky_portal", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "theexodar", + text = "theexodar", + }, + { + children = { + { + children = { + { + fileId = "193845", + value = "zangargrass01.m2", + text = "zangargrass01.m2", + }, + { + fileId = "193846", + value = "zangargrass01_husk.m2", + text = "zangargrass01_husk.m2", + }, + }, + value = "bush", + text = "bush", + }, + { + children = { + { + fileId = "193856", + value = "zangarmarsh_floatingspore01.m2", + text = "zangarmarsh_floatingspore01.m2", + }, + { + fileId = "193857", + value = "zangarmarsh_floatingspore02.m2", + text = "zangarmarsh_floatingspore02.m2", + }, + { + fileId = "193858", + value = "zm_big_spore_01.m2", + text = "zm_big_spore_01.m2", + }, + { + fileId = "193859", + value = "zm_big_spore_02.m2", + text = "zm_big_spore_02.m2", + }, + { + fileId = "193860", + value = "zm_big_spore_03.m2", + text = "zm_big_spore_03.m2", + }, + { + fileId = "193861", + value = "zm_big_spore_anim_01.m2", + text = "zm_big_spore_anim_01.m2", + }, + { + fileId = "193862", + value = "zm_big_spore_anim_02.m2", + text = "zm_big_spore_anim_02.m2", + }, + { + fileId = "193863", + value = "zm_big_spore_anim_03.m2", + text = "zm_big_spore_anim_03.m2", + }, + }, + value = "floatingspore", + text = "floatingspore", + }, + { + children = { + { + fileId = "193865", + value = "zangarfogring01.m2", + text = "zangarfogring01.m2", + }, + }, + value = "fog", + text = "fog", + }, + { + children = { + { + fileId = "193876", + value = "zangarfountain01.m2", + text = "zangarfountain01.m2", + }, + }, + value = "fountain", + text = "fountain", + }, + { + children = { + { + fileId = "193878", + value = "zangarlamppost01.m2", + text = "zangarlamppost01.m2", + }, + }, + value = "lamp", + text = "lamp", + }, + { + children = { + { + fileId = "193882", + value = "zangarlilypad01.m2", + text = "zangarlilypad01.m2", + }, + { + fileId = "193886", + value = "zangarlilypad02.m2", + text = "zangarlilypad02.m2", + }, + { + fileId = "193887", + value = "zangarlilypad03.m2", + text = "zangarlilypad03.m2", + }, + { + fileId = "193888", + value = "zangarlilypad04.m2", + text = "zangarlilypad04.m2", + }, + { + fileId = "193889", + value = "zangarlilypad05.m2", + text = "zangarlilypad05.m2", + }, + { + fileId = "193890", + value = "zangarlilypad06.m2", + text = "zangarlilypad06.m2", + }, + }, + value = "lilypads", + text = "lilypads", + }, + { + children = { + { + fileId = "193892", + value = "zangarlog01.m2", + text = "zangarlog01.m2", + }, + { + fileId = "193894", + value = "zangarlog02.m2", + text = "zangarlog02.m2", + }, + }, + value = "logs", + text = "logs", + }, + { + children = { + { + fileId = "193897", + value = "lo_well_01.m2", + text = "lo_well_01.m2", + }, + }, + value = "lostones", + text = "lostones", + }, + { + children = { + { + fileId = "193909", + value = "zangarfallenshroom01.m2", + text = "zangarfallenshroom01.m2", + }, + { + fileId = "193910", + value = "zangarfallenshroom02.m2", + text = "zangarfallenshroom02.m2", + }, + { + fileId = "193911", + value = "zangarmushroom01.m2", + text = "zangarmushroom01.m2", + }, + { + fileId = "193912", + value = "zangarmushroom02.m2", + text = "zangarmushroom02.m2", + }, + { + fileId = "193914", + value = "zangarmushroom03.m2", + text = "zangarmushroom03.m2", + }, + { + fileId = "193915", + value = "zangarmushroom04.m2", + text = "zangarmushroom04.m2", + }, + { + fileId = "193917", + value = "zangarmushroom05.m2", + text = "zangarmushroom05.m2", + }, + { + fileId = "193918", + value = "zangarmushroom06_blue.m2", + text = "zangarmushroom06_blue.m2", + }, + { + fileId = "193919", + value = "zangarmushroom06_green.m2", + text = "zangarmushroom06_green.m2", + }, + { + fileId = "193920", + value = "zangarmushroom06_orange.m2", + text = "zangarmushroom06_orange.m2", + }, + { + fileId = "193921", + value = "zangarmushroom07_blue.m2", + text = "zangarmushroom07_blue.m2", + }, + { + fileId = "193922", + value = "zangarmushroom07_green.m2", + text = "zangarmushroom07_green.m2", + }, + { + fileId = "193923", + value = "zangarmushroom07_orange.m2", + text = "zangarmushroom07_orange.m2", + }, + { + fileId = "193924", + value = "zangarmushroomblue.m2", + text = "zangarmushroomblue.m2", + }, + { + fileId = "193925", + value = "zangarmushroomgreen.m2", + text = "zangarmushroomgreen.m2", + }, + { + fileId = "193926", + value = "zangarmushroompurple.m2", + text = "zangarmushroompurple.m2", + }, + { + fileId = "193932", + value = "zangarmushroomshelf01.m2", + text = "zangarmushroomshelf01.m2", + }, + { + fileId = "193933", + value = "zangarmushroomshelf02.m2", + text = "zangarmushroomshelf02.m2", + }, + { + fileId = "193934", + value = "zangarmushroomshelf03.m2", + text = "zangarmushroomshelf03.m2", + }, + { + fileId = "193936", + value = "zangarmushroomtree05.m2", + text = "zangarmushroomtree05.m2", + }, + { + fileId = "193937", + value = "zangarmushroomtree06.m2", + text = "zangarmushroomtree06.m2", + }, + { + fileId = "193938", + value = "zangarmushroomtree07.m2", + text = "zangarmushroomtree07.m2", + }, + { + fileId = "193940", + value = "zangarmushroomtree08dead.m2", + text = "zangarmushroomtree08dead.m2", + }, + { + fileId = "193942", + value = "zangarmushroomtree09dying.m2", + text = "zangarmushroomtree09dying.m2", + }, + { + fileId = "193944", + value = "zangarmushroomtreesmall01.m2", + text = "zangarmushroomtreesmall01.m2", + }, + { + fileId = "193945", + value = "zangarmushroomtreesmall02.m2", + text = "zangarmushroomtreesmall02.m2", + }, + { + fileId = "193946", + value = "zangarmushroomtreesmall03.m2", + text = "zangarmushroomtreesmall03.m2", + }, + { + fileId = "193947", + value = "zangarmushroomwater01.m2", + text = "zangarmushroomwater01.m2", + }, + { + fileId = "193948", + value = "zangarmushroomwater02.m2", + text = "zangarmushroomwater02.m2", + }, + { + fileId = "193949", + value = "zangarmushroomwater03.m2", + text = "zangarmushroomwater03.m2", + }, + { + fileId = "193950", + value = "zangartreesmallblue.m2", + text = "zangartreesmallblue.m2", + }, + { + fileId = "193951", + value = "zangartreesmallblue01.m2", + text = "zangartreesmallblue01.m2", + }, + { + fileId = "193952", + value = "zangartreesmallgreen.m2", + text = "zangartreesmallgreen.m2", + }, + { + fileId = "193953", + value = "zangartreesmallgreen01.m2", + text = "zangartreesmallgreen01.m2", + }, + { + fileId = "193954", + value = "zangartreesmallpurple.m2", + text = "zangartreesmallpurple.m2", + }, + { + fileId = "193955", + value = "zangartreesmallpurple01.m2", + text = "zangartreesmallpurple01.m2", + }, + }, + value = "mushroom", + text = "mushroom", + }, + { + children = { + { + fileId = "193956", + value = "mushroombase_beacon.m2", + text = "mushroombase_beacon.m2", + }, + { + fileId = "193957", + value = "mushroombase_bottom.m2", + text = "mushroombase_bottom.m2", + }, + { + fileId = "193958", + value = "mushroombase_elevator.m2", + text = "mushroombase_elevator.m2", + }, + }, + value = "mushroombase", + text = "mushroombase", + }, + { + children = { + { + fileId = "193962", + value = "zangarbushwithered01.m2", + text = "zangarbushwithered01.m2", + }, + { + fileId = "193963", + value = "zangarbushwithered02.m2", + text = "zangarbushwithered02.m2", + }, + { + fileId = "193970", + value = "zangarmushroomtree01.m2", + text = "zangarmushroomtree01.m2", + }, + { + fileId = "193971", + value = "zangarmushroomtree02.m2", + text = "zangarmushroomtree02.m2", + }, + { + fileId = "193972", + value = "zangarmushroomtree03.m2", + text = "zangarmushroomtree03.m2", + }, + { + fileId = "193973", + value = "zangarmushroomtree04.m2", + text = "zangarmushroomtree04.m2", + }, + { + fileId = "193978", + value = "zangartreeblue01.m2", + text = "zangartreeblue01.m2", + }, + { + fileId = "193979", + value = "zangartreeblue02.m2", + text = "zangartreeblue02.m2", + }, + { + fileId = "193980", + value = "zangartreeblue03.m2", + text = "zangartreeblue03.m2", + }, + { + fileId = "193981", + value = "zangartreeblue04.m2", + text = "zangartreeblue04.m2", + }, + { + fileId = "193982", + value = "zangartreegreen01.m2", + text = "zangartreegreen01.m2", + }, + { + fileId = "193983", + value = "zangartreegreen02.m2", + text = "zangartreegreen02.m2", + }, + { + fileId = "193984", + value = "zangartreegreen03.m2", + text = "zangartreegreen03.m2", + }, + { + fileId = "193985", + value = "zangartreegreen04.m2", + text = "zangartreegreen04.m2", + }, + { + fileId = "193986", + value = "zangartreepurple01.m2", + text = "zangartreepurple01.m2", + }, + { + fileId = "193987", + value = "zangartreepurple02.m2", + text = "zangartreepurple02.m2", + }, + { + fileId = "193988", + value = "zangartreepurple03.m2", + text = "zangartreepurple03.m2", + }, + { + fileId = "193989", + value = "zangartreepurple04.m2", + text = "zangartreepurple04.m2", + }, + { + fileId = "193990", + value = "zangartreewithered01.m2", + text = "zangartreewithered01.m2", + }, + { + fileId = "193991", + value = "zangartreewithered02.m2", + text = "zangartreewithered02.m2", + }, + { + fileId = "193992", + value = "zangartreewithered03.m2", + text = "zangartreewithered03.m2", + }, + { + fileId = "193993", + value = "zangartreewithered04.m2", + text = "zangartreewithered04.m2", + }, + { + fileId = "193994", + value = "zangartreewithered05.m2", + text = "zangartreewithered05.m2", + }, + }, + value = "mushroomtrees", + text = "mushroomtrees", + }, + { + children = { + { + fileId = "193995", + value = "zangarplantgroup01.m2", + text = "zangarplantgroup01.m2", + }, + { + fileId = "193996", + value = "zangarplantgroup02.m2", + text = "zangarplantgroup02.m2", + }, + { + fileId = "193997", + value = "zangarplantgroup03.m2", + text = "zangarplantgroup03.m2", + }, + { + fileId = "193998", + value = "zangarplantgroup04.m2", + text = "zangarplantgroup04.m2", + }, + { + fileId = "193999", + value = "zangarplantgroup05.m2", + text = "zangarplantgroup05.m2", + }, + }, + value = "plantgroups", + text = "plantgroups", + }, + { + children = { + { + fileId = "194001", + value = "zm_bluepollen.m2", + text = "zm_bluepollen.m2", + }, + { + fileId = "194002", + value = "zm_orangepollen.m2", + text = "zm_orangepollen.m2", + }, + }, + value = "pollen", + text = "pollen", + }, + { + children = { + { + fileId = "194003", + value = "zangarwalkway01.m2", + text = "zangarwalkway01.m2", + }, + { + fileId = "194004", + value = "zangarwalkway02.m2", + text = "zangarwalkway02.m2", + }, + { + fileId = "194005", + value = "zangarwalkway03.m2", + text = "zangarwalkway03.m2", + }, + { + fileId = "194006", + value = "zangarwalkway_board.m2", + text = "zangarwalkway_board.m2", + }, + { + fileId = "194007", + value = "zangarwalkway_pole.m2", + text = "zangarwalkway_pole.m2", + }, + { + fileId = "194008", + value = "zangarwalkway_wide01.m2", + text = "zangarwalkway_wide01.m2", + }, + { + fileId = "194009", + value = "zangarwalkway_wide02.m2", + text = "zangarwalkway_wide02.m2", + }, + { + fileId = "194010", + value = "zangarwalkway_wide03.m2", + text = "zangarwalkway_wide03.m2", + }, + { + fileId = "194011", + value = "zangarwalkway_wide04.m2", + text = "zangarwalkway_wide04.m2", + }, + { + fileId = "194012", + value = "zangarwalkwayend01.m2", + text = "zangarwalkwayend01.m2", + }, + { + fileId = "194013", + value = "zangarwalkwayend02.m2", + text = "zangarwalkwayend02.m2", + }, + }, + value = "road", + text = "road", + }, + { + children = { + { + fileId = "194015", + value = "dirtmound_zangar.m2", + text = "dirtmound_zangar.m2", + }, + { + fileId = "194017", + value = "zangar_floatingsmall01.m2", + text = "zangar_floatingsmall01.m2", + }, + { + fileId = "194018", + value = "zangar_floatingsmall02.m2", + text = "zangar_floatingsmall02.m2", + }, + { + fileId = "194019", + value = "zangar_overhangrock_large_01.m2", + text = "zangar_overhangrock_large_01.m2", + }, + { + fileId = "194020", + value = "zangar_overhangrock_large_02.m2", + text = "zangar_overhangrock_large_02.m2", + }, + { + fileId = "194021", + value = "zangar_overhangrock_small_01.m2", + text = "zangar_overhangrock_small_01.m2", + }, + { + fileId = "194022", + value = "zangar_overhangrock_small_02.m2", + text = "zangar_overhangrock_small_02.m2", + }, + { + fileId = "194023", + value = "zangar_overhangrock_small_03.m2", + text = "zangar_overhangrock_small_03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "194025", + value = "zangarsignpost01.m2", + text = "zangarsignpost01.m2", + }, + { + fileId = "194026", + value = "zangarsignpostpointer01.m2", + text = "zangarsignpostpointer01.m2", + }, + }, + value = "signposts", + text = "signposts", + }, + { + children = { + { + fileId = "194028", + value = "zangarshroomstump01.m2", + text = "zangarshroomstump01.m2", + }, + { + fileId = "194030", + value = "zangarshroomstump02.m2", + text = "zangarshroomstump02.m2", + }, + { + fileId = "194032", + value = "zangarshroomstump03.m2", + text = "zangarshroomstump03.m2", + }, + }, + value = "stump", + text = "stump", + }, + }, + value = "zangar", + text = "zangar", + }, + { + children = { + { + children = { + { + fileId = "194044", + value = "zulaman_entrancegate.m2", + text = "zulaman_entrancegate.m2", + }, + { + fileId = "194045", + value = "zulaman_firedoor.m2", + text = "zulaman_firedoor.m2", + }, + { + fileId = "194046", + value = "zulaman_lynxgate.m2", + text = "zulaman_lynxgate.m2", + }, + { + fileId = "194047", + value = "zulaman_torchfire.m2", + text = "zulaman_torchfire.m2", + }, + { + fileId = "194048", + value = "zulaman_winddoor.m2", + text = "zulaman_winddoor.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "194050", + value = "foresttrolldungeonfountain.m2", + text = "foresttrolldungeonfountain.m2", + }, + }, + value = "fountain", + text = "fountain", + }, + { + children = { + { + fileId = "194052", + value = "eaglegargoyle.m2", + text = "eaglegargoyle.m2", + }, + }, + value = "gargoyle", + text = "gargoyle", + }, + { + children = { + { + fileId = "194054", + value = "foresttrolldungeongong.m2", + text = "foresttrolldungeongong.m2", + }, + }, + value = "gong", + text = "gong", + }, + { + children = { + { + fileId = "194057", + value = "trollruins_zulaman_01.m2", + text = "trollruins_zulaman_01.m2", + }, + { + fileId = "194058", + value = "trollruins_zulaman_02.m2", + text = "trollruins_zulaman_02.m2", + }, + { + fileId = "194059", + value = "trollruins_zulaman_03.m2", + text = "trollruins_zulaman_03.m2", + }, + { + fileId = "194060", + value = "trollruins_zulaman_04.m2", + text = "trollruins_zulaman_04.m2", + }, + { + fileId = "194061", + value = "trollruins_zulaman_05.m2", + text = "trollruins_zulaman_05.m2", + }, + { + fileId = "194062", + value = "trollruins_zulaman_06.m2", + text = "trollruins_zulaman_06.m2", + }, + { + fileId = "194063", + value = "trollruins_zulaman_07.m2", + text = "trollruins_zulaman_07.m2", + }, + { + fileId = "194064", + value = "trollruins_zulaman_08.m2", + text = "trollruins_zulaman_08.m2", + }, + { + fileId = "194065", + value = "trollruins_zulaman_09.m2", + text = "trollruins_zulaman_09.m2", + }, + { + fileId = "194066", + value = "trollruins_zulaman_10.m2", + text = "trollruins_zulaman_10.m2", + }, + { + fileId = "194067", + value = "trollruins_zulaman_11.m2", + text = "trollruins_zulaman_11.m2", + }, + { + fileId = "194068", + value = "trollruins_zulaman_12.m2", + text = "trollruins_zulaman_12.m2", + }, + { + fileId = "194069", + value = "trollruins_zulaman_14.m2", + text = "trollruins_zulaman_14.m2", + }, + { + fileId = "194070", + value = "trollruins_zulaman_15.m2", + text = "trollruins_zulaman_15.m2", + }, + { + fileId = "194071", + value = "trollruins_zulaman_16.m2", + text = "trollruins_zulaman_16.m2", + }, + { + fileId = "194072", + value = "trollruins_zulaman_17.m2", + text = "trollruins_zulaman_17.m2", + }, + { + fileId = "194073", + value = "trollruins_zulaman_18.m2", + text = "trollruins_zulaman_18.m2", + }, + { + fileId = "194074", + value = "trollruins_zulaman_20.m2", + text = "trollruins_zulaman_20.m2", + }, + { + fileId = "194075", + value = "trollruins_zulaman_21.m2", + text = "trollruins_zulaman_21.m2", + }, + }, + value = "ruins", + text = "ruins", + }, + { + children = { + { + fileId = "194083", + value = "eaglestatue01.m2", + text = "eaglestatue01.m2", + }, + }, + value = "statues", + text = "statues", + }, + { + children = { + { + fileId = "194086", + value = "foresttrolltablet.m2", + text = "foresttrolltablet.m2", + }, + }, + value = "tablet", + text = "tablet", + }, + { + children = { + { + fileId = "194087", + value = "eaglethrone01.m2", + text = "eaglethrone01.m2", + }, + }, + value = "throne", + text = "throne", + }, + { + children = { + { + fileId = "194088", + value = "trollskulltiki.m2", + text = "trollskulltiki.m2", + }, + }, + value = "tiki", + text = "tiki", + }, + { + children = { + { + fileId = "194097", + value = "zulamantree01.m2", + text = "zulamantree01.m2", + }, + { + fileId = "194098", + value = "zulamantree02.m2", + text = "zulamantree02.m2", + }, + { + fileId = "194099", + value = "zulamantree03.m2", + text = "zulamantree03.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "194100", + value = "foresttrolldungeonbasinwall.m2", + text = "foresttrolldungeonbasinwall.m2", + }, + }, + value = "wall", + text = "wall", + }, + { + children = { + { + fileId = "194105", + value = "zulamanwaterfalls.m2", + text = "zulamanwaterfalls.m2", + }, + }, + value = "waterfalls", + text = "waterfalls", + }, + }, + value = "zulaman", + text = "zulaman", + }, + }, + value = "doodads", + text = "doodads", + }, + }, + value = "expansion01", + text = "expansion01", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "195197", + value = "sunshatter_banner01.m2", + text = "sunshatter_banner01.m2", + }, + { + fileId = "195198", + value = "sunshatter_banner02.m2", + text = "sunshatter_banner02.m2", + }, + { + fileId = "195199", + value = "sunshatter_banner03.m2", + text = "sunshatter_banner03.m2", + }, + { + fileId = "195200", + value = "sunshatter_monument.m2", + text = "sunshatter_monument.m2", + }, + }, + value = "banner", + text = "banner", + }, + }, + value = "sunshatter", + text = "sunshatter", + }, + }, + value = "generic", + text = "generic", + }, + }, + value = "doodads", + text = "doodads", + }, + }, + value = "expansion02", + text = "expansion02", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "196975", + value = "berrybush01.m2", + text = "berrybush01.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "196976", + value = "chest01.m2", + text = "chest01.m2", + }, + }, + value = "chest01", + text = "chest01", + }, + { + children = { + { + fileId = "196979", + value = "chest02.m2", + text = "chest02.m2", + }, + }, + value = "chest02", + text = "chest02", + }, + { + children = { + { + fileId = "196982", + value = "chest03.m2", + text = "chest03.m2", + }, + }, + value = "chest03", + text = "chest03", + }, + { + children = { + { + fileId = "196987", + value = "chest04.m2", + text = "chest04.m2", + }, + }, + value = "chest04", + text = "chest04", + }, + { + children = { + { + fileId = "196988", + value = "chest01b.m2", + text = "chest01b.m2", + }, + { + fileId = "196989", + value = "chest01c.m2", + text = "chest01c.m2", + }, + { + fileId = "196990", + value = "chestactive01.m2", + text = "chestactive01.m2", + }, + }, + value = "chests", + text = "chests", + }, + { + children = { + { + fileId = "196993", + value = "snowballmound01.m2", + text = "snowballmound01.m2", + }, + }, + value = "christmas", + text = "christmas", + }, + { + children = { + { + fileId = "196998", + value = "giantclamactive.m2", + text = "giantclamactive.m2", + }, + }, + value = "clam", + text = "clam", + }, + { + children = { + { + children = { + { + fileId = "197001", + value = "giantportcullisflatbottom01.m2", + text = "giantportcullisflatbottom01.m2", + }, + }, + value = "giantportcullis", + text = "giantportcullis", + }, + { + children = { + { + fileId = "197002", + value = "gnomeregandoor01.m2", + text = "gnomeregandoor01.m2", + }, + }, + value = "gnomeregandoors", + text = "gnomeregandoors", + }, + { + children = { + { + fileId = "197003", + value = "sunktemple_portcullis.m2", + text = "sunktemple_portcullis.m2", + }, + }, + value = "sunkentempledoors", + text = "sunkentempledoors", + }, + { + children = { + { + fileId = "197004", + value = "uldamandoor01.m2", + text = "uldamandoor01.m2", + }, + }, + value = "uldamandoors", + text = "uldamandoors", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "197007", + value = "instanceportal.m2", + text = "instanceportal.m2", + }, + { + fileId = "197008", + value = "instanceportal_green.m2", + text = "instanceportal_green.m2", + }, + { + fileId = "197009", + value = "instanceportal_purpledifficulty.m2", + text = "instanceportal_purpledifficulty.m2", + }, + { + fileId = "197010", + value = "instanceportal_purpledifficultyicon.m2", + text = "instanceportal_purpledifficultyicon.m2", + }, + { + fileId = "197011", + value = "instanceportal_red.m2", + text = "instanceportal_red.m2", + }, + { + fileId = "197012", + value = "instanceportal_white.m2", + text = "instanceportal_white.m2", + }, + { + fileId = "197013", + value = "instanceportalcollision.m2", + text = "instanceportalcollision.m2", + }, + { + fileId = "197017", + value = "summon_ritual.m2", + text = "summon_ritual.m2", + }, + { + fileId = "197018", + value = "temporal_displacement.m2", + text = "temporal_displacement.m2", + }, + }, + value = "instanceportal", + text = "instanceportal", + }, + { + children = { + { + fileId = "197020", + value = "stormwindmageportal01.m2", + text = "stormwindmageportal01.m2", + }, + }, + value = "mageportals", + text = "mageportals", + }, + { + children = { + { + fileId = "197022", + value = "meetingstone01.m2", + text = "meetingstone01.m2", + }, + { + fileId = "197024", + value = "meetingstone02.m2", + text = "meetingstone02.m2", + }, + { + fileId = "197026", + value = "meetingstone03.m2", + text = "meetingstone03.m2", + }, + { + fileId = "197028", + value = "meetingstone04.m2", + text = "meetingstone04.m2", + }, + { + fileId = "197030", + value = "meetingstone05.m2", + text = "meetingstone05.m2", + }, + }, + value = "meetingstones", + text = "meetingstones", + }, + { + children = { + { + fileId = "197038", + value = "gemrock01.m2", + text = "gemrock01.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "197042", + value = "mageportal_darnassus.m2", + text = "mageportal_darnassus.m2", + }, + { + fileId = "197043", + value = "mageportal_exodar.m2", + text = "mageportal_exodar.m2", + }, + { + fileId = "197044", + value = "mageportal_ironforge.m2", + text = "mageportal_ironforge.m2", + }, + { + fileId = "197045", + value = "mageportal_karazhan.m2", + text = "mageportal_karazhan.m2", + }, + { + fileId = "197046", + value = "mageportal_maraudon.m2", + text = "mageportal_maraudon.m2", + }, + { + fileId = "197047", + value = "mageportal_ogrimmar.m2", + text = "mageportal_ogrimmar.m2", + }, + { + fileId = "197048", + value = "mageportal_shattrath.m2", + text = "mageportal_shattrath.m2", + }, + { + fileId = "197049", + value = "mageportal_silvermoon.m2", + text = "mageportal_silvermoon.m2", + }, + { + fileId = "197050", + value = "mageportal_stonard.m2", + text = "mageportal_stonard.m2", + }, + { + fileId = "197051", + value = "mageportal_stormwind.m2", + text = "mageportal_stormwind.m2", + }, + { + fileId = "197052", + value = "mageportal_sunwell.m2", + text = "mageportal_sunwell.m2", + }, + { + fileId = "197053", + value = "mageportal_theramore.m2", + text = "mageportal_theramore.m2", + }, + { + fileId = "197054", + value = "mageportal_thunderbluff.m2", + text = "mageportal_thunderbluff.m2", + }, + { + fileId = "197055", + value = "mageportal_undercity.m2", + text = "mageportal_undercity.m2", + }, + }, + value = "spellportals", + text = "spellportals", + }, + { + children = { + { + fileId = "197063", + value = "trollchest.m2", + text = "trollchest.m2", + }, + }, + value = "trollchest", + text = "trollchest", + }, + { + children = { + { + fileId = "197068", + value = "worldtreeportal01.m2", + text = "worldtreeportal01.m2", + }, + }, + value = "worldtreeportals", + text = "worldtreeportals", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "197074", + value = "be_fence_001.m2", + text = "be_fence_001.m2", + }, + { + fileId = "197076", + value = "be_fencepost_001.m2", + text = "be_fencepost_001.m2", + }, + { + fileId = "197080", + value = "be_jar_01.m2", + text = "be_jar_01.m2", + }, + { + fileId = "197082", + value = "be_jar_02.m2", + text = "be_jar_02.m2", + }, + { + fileId = "197083", + value = "be_lantern_blue_001.m2", + text = "be_lantern_blue_001.m2", + }, + { + fileId = "197084", + value = "be_lantern_busted_001.m2", + text = "be_lantern_busted_001.m2", + }, + { + fileId = "197085", + value = "be_lantern_red_001.m2", + text = "be_lantern_red_001.m2", + }, + { + fileId = "197087", + value = "be_sign_post_001.m2", + text = "be_sign_post_001.m2", + }, + { + fileId = "197089", + value = "be_signpostsign_stone_01.m2", + text = "be_signpostsign_stone_01.m2", + }, + { + fileId = "197090", + value = "be_signpostsign_wood_01.m2", + text = "be_signpostsign_wood_01.m2", + }, + { + fileId = "197094", + value = "bl_round_crate_001.m2", + text = "bl_round_crate_001.m2", + }, + { + fileId = "197095", + value = "bl_round_crate_002.m2", + text = "bl_round_crate_002.m2", + }, + { + fileId = "197096", + value = "bl_round_crate_003.m2", + text = "bl_round_crate_003.m2", + }, + { + fileId = "197097", + value = "bl_round_crate_004_lid.m2", + text = "bl_round_crate_004_lid.m2", + }, + { + fileId = "197098", + value = "bl_round_crate_004_open.m2", + text = "bl_round_crate_004_open.m2", + }, + { + fileId = "197099", + value = "bl_sq_crate_001.m2", + text = "bl_sq_crate_001.m2", + }, + { + fileId = "197100", + value = "bl_sq_crate_002.m2", + text = "bl_sq_crate_002.m2", + }, + { + fileId = "197101", + value = "bl_sq_crate_003.m2", + text = "bl_sq_crate_003.m2", + }, + { + fileId = "197102", + value = "bl_sq_crate_004_lid.m2", + text = "bl_sq_crate_004_lid.m2", + }, + { + fileId = "197103", + value = "bl_sq_crate_004_open.m2", + text = "bl_sq_crate_004_open.m2", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "bloodelf", + text = "bloodelf", + }, + { + children = { + { + children = { + { + fileId = "197108", + value = "humantentlarge.m2", + text = "humantentlarge.m2", + }, + }, + value = "humantentlarge", + text = "humantentlarge", + }, + { + children = { + { + fileId = "197109", + value = "humantentmedium.m2", + text = "humantentmedium.m2", + }, + }, + value = "humantentmedium", + text = "humantentmedium", + }, + }, + value = "buildings", + text = "buildings", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "197113", + value = "centaur_arch01.m2", + text = "centaur_arch01.m2", + }, + { + fileId = "197114", + value = "centaur_brokearch01.m2", + text = "centaur_brokearch01.m2", + }, + { + fileId = "197115", + value = "centaur_brokearch02.m2", + text = "centaur_brokearch02.m2", + }, + { + fileId = "197116", + value = "centaur_brokepillar01.m2", + text = "centaur_brokepillar01.m2", + }, + { + fileId = "197117", + value = "centaur_pillar01.m2", + text = "centaur_pillar01.m2", + }, + { + fileId = "197118", + value = "centaur_wall01.m2", + text = "centaur_wall01.m2", + }, + { + fileId = "197119", + value = "centaur_wall_ruin01.m2", + text = "centaur_wall_ruin01.m2", + }, + }, + value = "centaurruins", + text = "centaurruins", + }, + { + children = { + { + fileId = "197120", + value = "centaurtent01.m2", + text = "centaurtent01.m2", + }, + { + fileId = "197121", + value = "centaurtent02.m2", + text = "centaurtent02.m2", + }, + }, + value = "centaurtents", + text = "centaurtents", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "centaur", + text = "centaur", + }, + { + children = { + { + fileId = "197122", + value = "collision_pcsize.m2", + text = "collision_pcsize.m2", + }, + }, + value = "collision", + text = "collision", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "197124", + value = "darkirondwarfrune_a.m2", + text = "darkirondwarfrune_a.m2", + }, + { + fileId = "197125", + value = "darkirondwarfrune_a1.m2", + text = "darkirondwarfrune_a1.m2", + }, + { + fileId = "197126", + value = "darkirondwarfrune_b.m2", + text = "darkirondwarfrune_b.m2", + }, + { + fileId = "197127", + value = "darkirondwarfrune_c.m2", + text = "darkirondwarfrune_c.m2", + }, + { + fileId = "197128", + value = "darkirondwarfrune_d.m2", + text = "darkirondwarfrune_d.m2", + }, + { + fileId = "197129", + value = "darkirondwarfrune_e.m2", + text = "darkirondwarfrune_e.m2", + }, + { + fileId = "197130", + value = "darkirondwarfrune_f.m2", + text = "darkirondwarfrune_f.m2", + }, + { + fileId = "197131", + value = "darkirondwarfrune_g.m2", + text = "darkirondwarfrune_g.m2", + }, + }, + value = "runes", + text = "runes", + }, + }, + value = "active doodads", + text = "active doodads", + }, + { + children = { + { + children = { + { + fileId = "197132", + value = "darkirondwarfbed01.m2", + text = "darkirondwarfbed01.m2", + }, + { + fileId = "197133", + value = "darkirondwarfbed02.m2", + text = "darkirondwarfbed02.m2", + }, + { + fileId = "197134", + value = "darkirondwarfbed03.m2", + text = "darkirondwarfbed03.m2", + }, + }, + value = "beds", + text = "beds", + }, + { + children = { + { + fileId = "197137", + value = "darkironchair01.m2", + text = "darkironchair01.m2", + }, + { + fileId = "197138", + value = "darkironchair02.m2", + text = "darkironchair02.m2", + }, + { + fileId = "197139", + value = "darkironchair03.m2", + text = "darkironchair03.m2", + }, + { + fileId = "197140", + value = "darkironchairbroken01.m2", + text = "darkironchairbroken01.m2", + }, + { + fileId = "197141", + value = "darkironchairbroken02.m2", + text = "darkironchairbroken02.m2", + }, + { + fileId = "197142", + value = "darkironchairbroken03.m2", + text = "darkironchairbroken03.m2", + }, + }, + value = "chairs", + text = "chairs", + }, + { + children = { + { + fileId = "197145", + value = "darkirondwarfcorpse01.m2", + text = "darkirondwarfcorpse01.m2", + }, + { + fileId = "197146", + value = "darkirondwarfcorpse02.m2", + text = "darkirondwarfcorpse02.m2", + }, + { + fileId = "197147", + value = "darkirondwarfcorpse03.m2", + text = "darkirondwarfcorpse03.m2", + }, + { + fileId = "197148", + value = "darkirondwarfcorpse04.m2", + text = "darkirondwarfcorpse04.m2", + }, + }, + value = "corpses", + text = "corpses", + }, + { + children = { + { + fileId = "197150", + value = "darkironcrate01.m2", + text = "darkironcrate01.m2", + }, + { + fileId = "197152", + value = "darkironcrate02.m2", + text = "darkironcrate02.m2", + }, + { + fileId = "197153", + value = "darkironcratebroken01.m2", + text = "darkironcratebroken01.m2", + }, + { + fileId = "197154", + value = "darkironcratebroken02.m2", + text = "darkironcratebroken02.m2", + }, + }, + value = "crates", + text = "crates", + }, + { + children = { + { + fileId = "197155", + value = "darkirongrindingwheel.m2", + text = "darkirongrindingwheel.m2", + }, + { + fileId = "197156", + value = "darkirongrindingwheelbroken.m2", + text = "darkirongrindingwheelbroken.m2", + }, + }, + value = "grindingwheels", + text = "grindingwheels", + }, + { + children = { + { + fileId = "197158", + value = "darkhaypilelarge01.m2", + text = "darkhaypilelarge01.m2", + }, + }, + value = "haypiles", + text = "haypiles", + }, + { + children = { + { + fileId = "197162", + value = "darkironkeg01.m2", + text = "darkironkeg01.m2", + }, + { + fileId = "197163", + value = "darkironkegbroken01.m2", + text = "darkironkegbroken01.m2", + }, + { + fileId = "197164", + value = "darkironkegbroken02.m2", + text = "darkironkegbroken02.m2", + }, + { + fileId = "197165", + value = "darkironkegstand01.m2", + text = "darkironkegstand01.m2", + }, + { + fileId = "197166", + value = "darkironkegwstand01.m2", + text = "darkironkegwstand01.m2", + }, + }, + value = "kegs", + text = "kegs", + }, + { + children = { + { + fileId = "197167", + value = "darkironhanginglamp01.m2", + text = "darkironhanginglamp01.m2", + }, + { + fileId = "197168", + value = "darkironhanginglamp02.m2", + text = "darkironhanginglamp02.m2", + }, + { + fileId = "197169", + value = "darkironhanginglampbroken01.m2", + text = "darkironhanginglampbroken01.m2", + }, + }, + value = "lamps", + text = "lamps", + }, + { + children = { + { + fileId = "197171", + value = "darkironlight01.m2", + text = "darkironlight01.m2", + }, + { + fileId = "197172", + value = "darkironlight02.m2", + text = "darkironlight02.m2", + }, + { + fileId = "197173", + value = "darkironlightbroken01.m2", + text = "darkironlightbroken01.m2", + }, + { + fileId = "197174", + value = "darkironlightbroken02.m2", + text = "darkironlightbroken02.m2", + }, + }, + value = "lights", + text = "lights", + }, + { + children = { + { + fileId = "197177", + value = "blackrockorcmanacle01.m2", + text = "blackrockorcmanacle01.m2", + }, + { + fileId = "197179", + value = "darkirondwarfmanacle01.m2", + text = "darkirondwarfmanacle01.m2", + }, + }, + value = "manacles", + text = "manacles", + }, + { + children = { + { + fileId = "197181", + value = "darkironmural01.m2", + text = "darkironmural01.m2", + }, + { + fileId = "197183", + value = "darkironmural02.m2", + text = "darkironmural02.m2", + }, + { + fileId = "197185", + value = "darkironmural03.m2", + text = "darkironmural03.m2", + }, + }, + value = "murals", + text = "murals", + }, + { + children = { + { + fileId = "197190", + value = "skeletonlaying01.m2", + text = "skeletonlaying01.m2", + }, + { + fileId = "197191", + value = "skeletonlaying02.m2", + text = "skeletonlaying02.m2", + }, + { + fileId = "197192", + value = "skeletonlaying03.m2", + text = "skeletonlaying03.m2", + }, + { + fileId = "197193", + value = "skeletonsitting01.m2", + text = "skeletonsitting01.m2", + }, + { + fileId = "197194", + value = "skeletonsitting02.m2", + text = "skeletonsitting02.m2", + }, + { + fileId = "197195", + value = "skeletonsitting03.m2", + text = "skeletonsitting03.m2", + }, + { + fileId = "197196", + value = "skeletonsitting04.m2", + text = "skeletonsitting04.m2", + }, + }, + value = "skeletons", + text = "skeletons", + }, + { + children = { + { + fileId = "197199", + value = "blackrockstretchedskin01.m2", + text = "blackrockstretchedskin01.m2", + }, + { + fileId = "197200", + value = "blackrockstretchedskin02.m2", + text = "blackrockstretchedskin02.m2", + }, + }, + value = "stretchedskins", + text = "stretchedskins", + }, + { + children = { + { + fileId = "197201", + value = "darkirontable01.m2", + text = "darkirontable01.m2", + }, + { + fileId = "197202", + value = "darkirontablebroken01.m2", + text = "darkirontablebroken01.m2", + }, + }, + value = "tables", + text = "tables", + }, + { + children = { + { + fileId = "197206", + value = "darkirontapestry01.m2", + text = "darkirontapestry01.m2", + }, + { + fileId = "197207", + value = "darkirontapestry02.m2", + text = "darkirontapestry02.m2", + }, + { + fileId = "197208", + value = "darkirontapestry03.m2", + text = "darkirontapestry03.m2", + }, + }, + value = "tapestries", + text = "tapestries", + }, + { + children = { + { + fileId = "197210", + value = "darkironthrone.m2", + text = "darkironthrone.m2", + }, + }, + value = "throne", + text = "throne", + }, + { + children = { + { + fileId = "197212", + value = "darkironsaw01.m2", + text = "darkironsaw01.m2", + }, + { + fileId = "197213", + value = "darkironsawbroken01.m2", + text = "darkironsawbroken01.m2", + }, + }, + value = "tools", + text = "tools", + }, + { + children = { + { + fileId = "197214", + value = "darkironwoodpile01.m2", + text = "darkironwoodpile01.m2", + }, + { + fileId = "197215", + value = "darkironwoodpile02.m2", + text = "darkironwoodpile02.m2", + }, + }, + value = "woodpiles", + text = "woodpiles", + }, + { + children = { + { + fileId = "197216", + value = "darkironwoodplanks01.m2", + text = "darkironwoodplanks01.m2", + }, + { + fileId = "197217", + value = "darkironwoodplanks02.m2", + text = "darkironwoodplanks02.m2", + }, + { + fileId = "197218", + value = "darkironwoodplanks03.m2", + text = "darkironwoodplanks03.m2", + }, + { + fileId = "197219", + value = "darkironwoodplanks04.m2", + text = "darkironwoodplanks04.m2", + }, + { + fileId = "197220", + value = "darkironwoodplanks05.m2", + text = "darkironwoodplanks05.m2", + }, + { + fileId = "197221", + value = "darkironwoodplanks06.m2", + text = "darkironwoodplanks06.m2", + }, + { + fileId = "197222", + value = "darkironwoodplanks07.m2", + text = "darkironwoodplanks07.m2", + }, + }, + value = "woodplanks", + text = "woodplanks", + }, + { + children = { + { + fileId = "197224", + value = "darkironworkbench01.m2", + text = "darkironworkbench01.m2", + }, + { + fileId = "197225", + value = "darkironworkbench02.m2", + text = "darkironworkbench02.m2", + }, + { + fileId = "197226", + value = "darkironworkbenchbroken01.m2", + text = "darkironworkbenchbroken01.m2", + }, + { + fileId = "197227", + value = "darkironworkbenchbroken02.m2", + text = "darkironworkbenchbroken02.m2", + }, + }, + value = "workbenches", + text = "workbenches", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "darkirondwarf", + text = "darkirondwarf", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "197230", + value = "fishingchair.m2", + text = "fishingchair.m2", + }, + }, + value = "chair", + text = "chair", + }, + }, + value = "fishing", + text = "fishing", + }, + }, + value = "doodads", + text = "doodads", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "197231", + value = "dwarventunnelportcullis.m2", + text = "dwarventunnelportcullis.m2", + }, + }, + value = "doors", + text = "doors", + }, + }, + value = "active doodads", + text = "active doodads", + }, + { + children = { + { + children = { + { + fileId = "197234", + value = "ironforgebanner01.m2", + text = "ironforgebanner01.m2", + }, + { + fileId = "197235", + value = "ironforgebanner_ornate01.m2", + text = "ironforgebanner_ornate01.m2", + }, + { + fileId = "197236", + value = "ironforgebannerstill.m2", + text = "ironforgebannerstill.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "197238", + value = "dwarvenbarrel01.m2", + text = "dwarvenbarrel01.m2", + }, + }, + value = "barrels", + text = "barrels", + }, + { + children = { + { + fileId = "197239", + value = "dwarvenbattlementlarge01.m2", + text = "dwarvenbattlementlarge01.m2", + }, + { + fileId = "197240", + value = "dwarvenbattlementmossy01.m2", + text = "dwarvenbattlementmossy01.m2", + }, + { + fileId = "197241", + value = "dwarvenbattlementmossy02.m2", + text = "dwarvenbattlementmossy02.m2", + }, + { + fileId = "197242", + value = "dwarvenbattlementmossy03.m2", + text = "dwarvenbattlementmossy03.m2", + }, + { + fileId = "197243", + value = "dwarvenbattlementmossy04.m2", + text = "dwarvenbattlementmossy04.m2", + }, + { + fileId = "197244", + value = "dwarvenbattlementmossy05.m2", + text = "dwarvenbattlementmossy05.m2", + }, + { + fileId = "197245", + value = "dwarvenbattlementmossy06.m2", + text = "dwarvenbattlementmossy06.m2", + }, + { + fileId = "197246", + value = "dwarvenbattlementmossy07.m2", + text = "dwarvenbattlementmossy07.m2", + }, + { + fileId = "197247", + value = "dwarvenbattlementsmall01.m2", + text = "dwarvenbattlementsmall01.m2", + }, + { + fileId = "197248", + value = "dwarvenbattlementsnowy01.m2", + text = "dwarvenbattlementsnowy01.m2", + }, + { + fileId = "197249", + value = "dwarvenbattlementsnowy02.m2", + text = "dwarvenbattlementsnowy02.m2", + }, + { + fileId = "197250", + value = "dwarvenbattlementsnowy03.m2", + text = "dwarvenbattlementsnowy03.m2", + }, + { + fileId = "197251", + value = "dwarvenbattlementsnowy04.m2", + text = "dwarvenbattlementsnowy04.m2", + }, + { + fileId = "197252", + value = "dwarvenbattlementsnowy05.m2", + text = "dwarvenbattlementsnowy05.m2", + }, + { + fileId = "197253", + value = "dwarvenbattlementsnowy06.m2", + text = "dwarvenbattlementsnowy06.m2", + }, + { + fileId = "197254", + value = "dwarvenbattlementsnowy07.m2", + text = "dwarvenbattlementsnowy07.m2", + }, + { + fileId = "197260", + value = "snowybattlementlarge01.m2", + text = "snowybattlementlarge01.m2", + }, + { + fileId = "197261", + value = "snowybattlementsmall01.m2", + text = "snowybattlementsmall01.m2", + }, + }, + value = "battlements", + text = "battlements", + }, + { + children = { + { + fileId = "197266", + value = "dwarvenbed01.m2", + text = "dwarvenbed01.m2", + }, + }, + value = "beds", + text = "beds", + }, + { + children = { + { + fileId = "197270", + value = "ironforgebench_average01.m2", + text = "ironforgebench_average01.m2", + }, + { + fileId = "197272", + value = "ironforgebench_ornate01.m2", + text = "ironforgebench_ornate01.m2", + }, + { + fileId = "197274", + value = "ironforgebench_simple01.m2", + text = "ironforgebench_simple01.m2", + }, + }, + value = "benches", + text = "benches", + }, + { + children = { + { + fileId = "197275", + value = "bookshelfdwarvenaverage01.m2", + text = "bookshelfdwarvenaverage01.m2", + }, + { + fileId = "197276", + value = "bookshelfdwarvenaverage02.m2", + text = "bookshelfdwarvenaverage02.m2", + }, + { + fileId = "197277", + value = "bookshelfdwarvenaverage03.m2", + text = "bookshelfdwarvenaverage03.m2", + }, + { + fileId = "197278", + value = "bookshelfdwarvenaverage05.m2", + text = "bookshelfdwarvenaverage05.m2", + }, + { + fileId = "197279", + value = "bookshelfdwarvenornate01.m2", + text = "bookshelfdwarvenornate01.m2", + }, + { + fileId = "197280", + value = "bookshelfdwarvenornate02.m2", + text = "bookshelfdwarvenornate02.m2", + }, + { + fileId = "197281", + value = "bookshelfdwarvenornate03.m2", + text = "bookshelfdwarvenornate03.m2", + }, + { + fileId = "197282", + value = "bookshelfdwarvenornate04.m2", + text = "bookshelfdwarvenornate04.m2", + }, + { + fileId = "197283", + value = "bookshelfdwarvenornate05.m2", + text = "bookshelfdwarvenornate05.m2", + }, + { + fileId = "197284", + value = "bookshelfdwarvensimple01.m2", + text = "bookshelfdwarvensimple01.m2", + }, + { + fileId = "197285", + value = "bookshelfdwarvensimple02.m2", + text = "bookshelfdwarvensimple02.m2", + }, + { + fileId = "197286", + value = "bookshelfdwarvensimple03.m2", + text = "bookshelfdwarvensimple03.m2", + }, + { + fileId = "197287", + value = "bookshelfdwarvensimple04.m2", + text = "bookshelfdwarvensimple04.m2", + }, + { + fileId = "197288", + value = "dwarvenbookshelflarge.m2", + text = "dwarvenbookshelflarge.m2", + }, + { + fileId = "197289", + value = "dwarvenbookshelfsmall.m2", + text = "dwarvenbookshelfsmall.m2", + }, + }, + value = "bookshelves", + text = "bookshelves", + }, + { + children = { + { + fileId = "197292", + value = "dwarvenbrazier01.m2", + text = "dwarvenbrazier01.m2", + }, + { + fileId = "197293", + value = "dwarvenbrazier02.m2", + text = "dwarvenbrazier02.m2", + }, + { + fileId = "197295", + value = "stormwinddwarfbrazier.m2", + text = "stormwinddwarfbrazier.m2", + }, + }, + value = "braziers", + text = "braziers", + }, + { + children = { + { + fileId = "197297", + value = "ts_chain01.m2", + text = "ts_chain01.m2", + }, + { + fileId = "197298", + value = "ts_chain02.m2", + text = "ts_chain02.m2", + }, + { + fileId = "197299", + value = "ts_chainmounting01.m2", + text = "ts_chainmounting01.m2", + }, + }, + value = "chainlinks", + text = "chainlinks", + }, + { + children = { + { + fileId = "197300", + value = "dwarvenchair01.m2", + text = "dwarvenchair01.m2", + }, + { + fileId = "197301", + value = "dwarvenchair02.m2", + text = "dwarvenchair02.m2", + }, + { + fileId = "197302", + value = "dwarvenchair03.m2", + text = "dwarvenchair03.m2", + }, + { + fileId = "197304", + value = "dwarvenhighendchair.m2", + text = "dwarvenhighendchair.m2", + }, + { + fileId = "197307", + value = "ironforgechair_average01.m2", + text = "ironforgechair_average01.m2", + }, + { + fileId = "197309", + value = "ironforgechair_ornate01.m2", + text = "ironforgechair_ornate01.m2", + }, + { + fileId = "197311", + value = "ironforgechair_simple01.m2", + text = "ironforgechair_simple01.m2", + }, + }, + value = "chairs", + text = "chairs", + }, + { + children = { + { + fileId = "197315", + value = "underconstruction01.m2", + text = "underconstruction01.m2", + }, + { + fileId = "197316", + value = "underconstruction02.m2", + text = "underconstruction02.m2", + }, + }, + value = "constructionsigns", + text = "constructionsigns", + }, + { + children = { + { + fileId = "197317", + value = "ts_debris01.m2", + text = "ts_debris01.m2", + }, + { + fileId = "197318", + value = "ts_debris02.m2", + text = "ts_debris02.m2", + }, + { + fileId = "197319", + value = "ts_debris03.m2", + text = "ts_debris03.m2", + }, + { + fileId = "197320", + value = "ts_debris04.m2", + text = "ts_debris04.m2", + }, + { + fileId = "197321", + value = "ts_debris05.m2", + text = "ts_debris05.m2", + }, + { + fileId = "197322", + value = "ts_debris06.m2", + text = "ts_debris06.m2", + }, + { + fileId = "197323", + value = "ts_debris07.m2", + text = "ts_debris07.m2", + }, + { + fileId = "197324", + value = "ts_debris08.m2", + text = "ts_debris08.m2", + }, + { + fileId = "197325", + value = "ts_debris09.m2", + text = "ts_debris09.m2", + }, + { + fileId = "197326", + value = "ts_debris10.m2", + text = "ts_debris10.m2", + }, + }, + value = "debris", + text = "debris", + }, + { + children = { + { + fileId = "197327", + value = "anvilmardock01.m2", + text = "anvilmardock01.m2", + }, + }, + value = "docks", + text = "docks", + }, + { + children = { + { + fileId = "197330", + value = "corpseskeletondwarf.m2", + text = "corpseskeletondwarf.m2", + }, + }, + value = "dwarfcorpse", + text = "dwarfcorpse", + }, + { + children = { + { + fileId = "197331", + value = "gunshopdynamitebundle.m2", + text = "gunshopdynamitebundle.m2", + }, + }, + value = "dynamite", + text = "dynamite", + }, + { + children = { + { + fileId = "197332", + value = "excavationbannerstand.m2", + text = "excavationbannerstand.m2", + }, + { + fileId = "197333", + value = "excavationbannerstand01.m2", + text = "excavationbannerstand01.m2", + }, + { + fileId = "197334", + value = "excavationbannerstand02.m2", + text = "excavationbannerstand02.m2", + }, + }, + value = "excavationbannerstands", + text = "excavationbannerstands", + }, + { + children = { + { + fileId = "197337", + value = "excavationbarrierplank.m2", + text = "excavationbarrierplank.m2", + }, + { + fileId = "197338", + value = "excavationbarrierplank02.m2", + text = "excavationbarrierplank02.m2", + }, + { + fileId = "197339", + value = "excavationbarrierplank02b.m2", + text = "excavationbarrierplank02b.m2", + }, + { + fileId = "197340", + value = "excavationbarrierplank02c.m2", + text = "excavationbarrierplank02c.m2", + }, + { + fileId = "197341", + value = "excavationbarrierplank03.m2", + text = "excavationbarrierplank03.m2", + }, + { + fileId = "197342", + value = "excavationbarrierplank03b.m2", + text = "excavationbarrierplank03b.m2", + }, + { + fileId = "197343", + value = "excavationbarrierplank03c.m2", + text = "excavationbarrierplank03c.m2", + }, + }, + value = "excavationbarrierplank", + text = "excavationbarrierplank", + }, + { + children = { + { + fileId = "197344", + value = "excavationbarrierpole.m2", + text = "excavationbarrierpole.m2", + }, + { + fileId = "197345", + value = "excavationbarrierpole02.m2", + text = "excavationbarrierpole02.m2", + }, + { + fileId = "197346", + value = "excavationbarrierpole03.m2", + text = "excavationbarrierpole03.m2", + }, + { + fileId = "197347", + value = "excavationbarrierpole04.m2", + text = "excavationbarrierpole04.m2", + }, + }, + value = "excavationbarrierpole", + text = "excavationbarrierpole", + }, + { + children = { + { + fileId = "197348", + value = "excavationbarrier01.m2", + text = "excavationbarrier01.m2", + }, + { + fileId = "197349", + value = "excavationbarrier01_pvpcollision.m2", + text = "excavationbarrier01_pvpcollision.m2", + }, + { + fileId = "197350", + value = "excavationbarrier01b.m2", + text = "excavationbarrier01b.m2", + }, + { + fileId = "197351", + value = "excavationbarrier01b_pvpcollision.m2", + text = "excavationbarrier01b_pvpcollision.m2", + }, + { + fileId = "197352", + value = "excavationbarrier02.m2", + text = "excavationbarrier02.m2", + }, + { + fileId = "197353", + value = "excavationbarrier02_pvpcollision.m2", + text = "excavationbarrier02_pvpcollision.m2", + }, + { + fileId = "197354", + value = "excavationbarrier02b.m2", + text = "excavationbarrier02b.m2", + }, + { + fileId = "197355", + value = "excavationbarrier02b_pvpcollision.m2", + text = "excavationbarrier02b_pvpcollision.m2", + }, + { + fileId = "197356", + value = "excavationbarrier03.m2", + text = "excavationbarrier03.m2", + }, + { + fileId = "197357", + value = "excavationbarrier03_pvpcollision.m2", + text = "excavationbarrier03_pvpcollision.m2", + }, + { + fileId = "197358", + value = "excavationbarrier03b.m2", + text = "excavationbarrier03b.m2", + }, + { + fileId = "197359", + value = "excavationbarrier03b_pvpcollision.m2", + text = "excavationbarrier03b_pvpcollision.m2", + }, + { + fileId = "197360", + value = "excavationbarrier04.m2", + text = "excavationbarrier04.m2", + }, + { + fileId = "197361", + value = "excavationbarrier04_pvpcollision.m2", + text = "excavationbarrier04_pvpcollision.m2", + }, + { + fileId = "197362", + value = "excavationbarrier04b.m2", + text = "excavationbarrier04b.m2", + }, + { + fileId = "197363", + value = "excavationbarrier04b_pvpcollision.m2", + text = "excavationbarrier04b_pvpcollision.m2", + }, + }, + value = "excavationbarriers", + text = "excavationbarriers", + }, + { + children = { + { + fileId = "197366", + value = "excavationcrane.m2", + text = "excavationcrane.m2", + }, + }, + value = "excavationcrane", + text = "excavationcrane", + }, + { + children = { + { + fileId = "197372", + value = "excavationdwarvenruins01.m2", + text = "excavationdwarvenruins01.m2", + }, + { + fileId = "197373", + value = "excavationdwarvenruins02.m2", + text = "excavationdwarvenruins02.m2", + }, + }, + value = "excavationdwarvenruins", + text = "excavationdwarvenruins", + }, + { + children = { + { + fileId = "197374", + value = "excavationrailingpost.m2", + text = "excavationrailingpost.m2", + }, + { + fileId = "197375", + value = "excavationrailingpostrope.m2", + text = "excavationrailingpostrope.m2", + }, + }, + value = "excavationrailingpost", + text = "excavationrailingpost", + }, + { + children = { + { + fileId = "197377", + value = "excavationrailingrail.m2", + text = "excavationrailingrail.m2", + }, + }, + value = "excavationrailingrail", + text = "excavationrailingrail", + }, + { + children = { + { + fileId = "197378", + value = "excavationrope.m2", + text = "excavationrope.m2", + }, + { + fileId = "197379", + value = "excavationropestake.m2", + text = "excavationropestake.m2", + }, + }, + value = "excavationropestake", + text = "excavationropestake", + }, + { + children = { + { + fileId = "197382", + value = "excavationstake.m2", + text = "excavationstake.m2", + }, + }, + value = "excavationstake", + text = "excavationstake", + }, + { + children = { + { + fileId = "197383", + value = "excavationtentpavillion.m2", + text = "excavationtentpavillion.m2", + }, + }, + value = "excavationtentpavillion", + text = "excavationtentpavillion", + }, + { + children = { + { + fileId = "197385", + value = "excavationtentpavillionruined01.m2", + text = "excavationtentpavillionruined01.m2", + }, + }, + value = "excavationtentpavillionruined", + text = "excavationtentpavillionruined", + }, + { + children = { + { + fileId = "197388", + value = "excavationtent01.m2", + text = "excavationtent01.m2", + }, + { + fileId = "197389", + value = "excavationtent02.m2", + text = "excavationtent02.m2", + }, + { + fileId = "197390", + value = "excavationtentruined01.m2", + text = "excavationtentruined01.m2", + }, + { + fileId = "197391", + value = "excavationtentruined02.m2", + text = "excavationtentruined02.m2", + }, + }, + value = "excavationtents", + text = "excavationtents", + }, + { + children = { + { + fileId = "197394", + value = "excavationwaterwagon.m2", + text = "excavationwaterwagon.m2", + }, + }, + value = "excavationwaterwagon", + text = "excavationwaterwagon", + }, + { + children = { + { + fileId = "197395", + value = "forgebonfire.m2", + text = "forgebonfire.m2", + }, + }, + value = "forgebonfire", + text = "forgebonfire", + }, + { + children = { + { + fileId = "197398", + value = "gunrack01a.m2", + text = "gunrack01a.m2", + }, + { + fileId = "197399", + value = "gunrack01b.m2", + text = "gunrack01b.m2", + }, + { + fileId = "197400", + value = "gunrack01c.m2", + text = "gunrack01c.m2", + }, + { + fileId = "197401", + value = "gunrack01d.m2", + text = "gunrack01d.m2", + }, + { + fileId = "197402", + value = "gunrack02a.m2", + text = "gunrack02a.m2", + }, + { + fileId = "197403", + value = "gunrack02b.m2", + text = "gunrack02b.m2", + }, + { + fileId = "197404", + value = "gunrack02c.m2", + text = "gunrack02c.m2", + }, + { + fileId = "197405", + value = "gunrack02d.m2", + text = "gunrack02d.m2", + }, + }, + value = "gunracks", + text = "gunracks", + }, + { + children = { + { + fileId = "197406", + value = "rifledwarven.m2", + text = "rifledwarven.m2", + }, + }, + value = "guns", + text = "guns", + }, + { + children = { + { + fileId = "197408", + value = "gyrocopter.m2", + text = "gyrocopter.m2", + }, + }, + value = "gyrocopter", + text = "gyrocopter", + }, + { + children = { + { + fileId = "197409", + value = "anvilmarlamppost.m2", + text = "anvilmarlamppost.m2", + }, + { + fileId = "197411", + value = "lochlamppost.m2", + text = "lochlamppost.m2", + }, + }, + value = "lampposts", + text = "lampposts", + }, + { + children = { + { + fileId = "197416", + value = "dwarvenhanginglanternhuge.m2", + text = "dwarvenhanginglanternhuge.m2", + }, + { + fileId = "197418", + value = "dwarvenhanginglanternlarge01.m2", + text = "dwarvenhanginglanternlarge01.m2", + }, + { + fileId = "197419", + value = "dwarvenhanginglanternmedium01.m2", + text = "dwarvenhanginglanternmedium01.m2", + }, + { + fileId = "197420", + value = "dwarvenhanginglanternsmall01.m2", + text = "dwarvenhanginglanternsmall01.m2", + }, + { + fileId = "197424", + value = "giantlantern01.m2", + text = "giantlantern01.m2", + }, + { + fileId = "197429", + value = "ironforgehanginglantern01.m2", + text = "ironforgehanginglantern01.m2", + }, + { + fileId = "197430", + value = "ironforgehanginglantern_new.m2", + text = "ironforgehanginglantern_new.m2", + }, + { + fileId = "197434", + value = "mediumlantern01.m2", + text = "mediumlantern01.m2", + }, + { + fileId = "197435", + value = "mediumlantern02.m2", + text = "mediumlantern02.m2", + }, + { + fileId = "197436", + value = "mininglamp01.m2", + text = "mininglamp01.m2", + }, + { + fileId = "197437", + value = "mininglamp02.m2", + text = "mininglamp02.m2", + }, + { + fileId = "197438", + value = "new_large_lantern01.m2", + text = "new_large_lantern01.m2", + }, + { + fileId = "197439", + value = "new_medium_lantern02.m2", + text = "new_medium_lantern02.m2", + }, + { + fileId = "197440", + value = "new_small_lantern01.m2", + text = "new_small_lantern01.m2", + }, + { + fileId = "197441", + value = "new_small_lantern02.m2", + text = "new_small_lantern02.m2", + }, + { + fileId = "197442", + value = "smalllantern01.m2", + text = "smalllantern01.m2", + }, + { + fileId = "197443", + value = "smalllantern02.m2", + text = "smalllantern02.m2", + }, + }, + value = "lanterns", + text = "lanterns", + }, + { + children = { + { + fileId = "197453", + value = "minecartgiant.m2", + text = "minecartgiant.m2", + }, + }, + value = "minecarts", + text = "minecarts", + }, + { + children = { + { + fileId = "197456", + value = "fossil01.m2", + text = "fossil01.m2", + }, + }, + value = "museum", + text = "museum", + }, + { + children = { + { + fileId = "197459", + value = "plattergoldornate01.m2", + text = "plattergoldornate01.m2", + }, + { + fileId = "197460", + value = "plattergoldornate02.m2", + text = "plattergoldornate02.m2", + }, + { + fileId = "197461", + value = "plattergoldsimple01.m2", + text = "plattergoldsimple01.m2", + }, + { + fileId = "197462", + value = "plattergoldsimple02.m2", + text = "plattergoldsimple02.m2", + }, + }, + value = "platters", + text = "platters", + }, + { + children = { + { + fileId = "197463", + value = "powderkeg01.m2", + text = "powderkeg01.m2", + }, + { + fileId = "197464", + value = "powderkegfused.m2", + text = "powderkegfused.m2", + }, + }, + value = "powderkegs", + text = "powderkegs", + }, + { + children = { + { + fileId = "197466", + value = "dwarvensharpeningwheel01.m2", + text = "dwarvensharpeningwheel01.m2", + }, + }, + value = "sharpeningwheel", + text = "sharpeningwheel", + }, + { + children = { + { + fileId = "197471", + value = "dwarvensignpost01.m2", + text = "dwarvensignpost01.m2", + }, + { + fileId = "197472", + value = "dwarvensignpostpointer01.m2", + text = "dwarvensignpostpointer01.m2", + }, + }, + value = "signposts", + text = "signposts", + }, + { + children = { + { + fileId = "197475", + value = "dwarfsign_alchemist.m2", + text = "dwarfsign_alchemist.m2", + }, + { + fileId = "197477", + value = "dwarfsign_armory.m2", + text = "dwarfsign_armory.m2", + }, + { + fileId = "197478", + value = "dwarfsign_axes.m2", + text = "dwarfsign_axes.m2", + }, + { + fileId = "197480", + value = "dwarfsign_bags.m2", + text = "dwarfsign_bags.m2", + }, + { + fileId = "197482", + value = "dwarfsign_bakery.m2", + text = "dwarfsign_bakery.m2", + }, + { + fileId = "197484", + value = "dwarfsign_bank.m2", + text = "dwarfsign_bank.m2", + }, + { + fileId = "197486", + value = "dwarfsign_blacksmith.m2", + text = "dwarfsign_blacksmith.m2", + }, + { + fileId = "197488", + value = "dwarfsign_cartography.m2", + text = "dwarfsign_cartography.m2", + }, + { + fileId = "197490", + value = "dwarfsign_cheese.m2", + text = "dwarfsign_cheese.m2", + }, + { + fileId = "197492", + value = "dwarfsign_clotharmor.m2", + text = "dwarfsign_clotharmor.m2", + }, + { + fileId = "197494", + value = "dwarfsign_cook.m2", + text = "dwarfsign_cook.m2", + }, + { + fileId = "197496", + value = "dwarfsign_daggers.m2", + text = "dwarfsign_daggers.m2", + }, + { + fileId = "197498", + value = "dwarfsign_drinks.m2", + text = "dwarfsign_drinks.m2", + }, + { + fileId = "197500", + value = "dwarfsign_enchanting.m2", + text = "dwarfsign_enchanting.m2", + }, + { + fileId = "197502", + value = "dwarfsign_fireworks.m2", + text = "dwarfsign_fireworks.m2", + }, + { + fileId = "197504", + value = "dwarfsign_firstaid.m2", + text = "dwarfsign_firstaid.m2", + }, + { + fileId = "197506", + value = "dwarfsign_fishing.m2", + text = "dwarfsign_fishing.m2", + }, + { + fileId = "197508", + value = "dwarfsign_fletcher.m2", + text = "dwarfsign_fletcher.m2", + }, + { + fileId = "197509", + value = "dwarfsign_generalgoods.m2", + text = "dwarfsign_generalgoods.m2", + }, + { + fileId = "197512", + value = "dwarfsign_gryphon.m2", + text = "dwarfsign_gryphon.m2", + }, + { + fileId = "197514", + value = "dwarfsign_gunsmith.m2", + text = "dwarfsign_gunsmith.m2", + }, + { + fileId = "197516", + value = "dwarfsign_herbalist.m2", + text = "dwarfsign_herbalist.m2", + }, + { + fileId = "197518", + value = "dwarfsign_inscribing.m2", + text = "dwarfsign_inscribing.m2", + }, + { + fileId = "197520", + value = "dwarfsign_leatherarmor.m2", + text = "dwarfsign_leatherarmor.m2", + }, + { + fileId = "197522", + value = "dwarfsign_lockpicking.m2", + text = "dwarfsign_lockpicking.m2", + }, + { + fileId = "197524", + value = "dwarfsign_maces.m2", + text = "dwarfsign_maces.m2", + }, + { + fileId = "197526", + value = "dwarfsign_magicshop.m2", + text = "dwarfsign_magicshop.m2", + }, + { + fileId = "197528", + value = "dwarfsign_mailarmor.m2", + text = "dwarfsign_mailarmor.m2", + }, + { + fileId = "197530", + value = "dwarfsign_meat.m2", + text = "dwarfsign_meat.m2", + }, + { + fileId = "197532", + value = "dwarfsign_miner.m2", + text = "dwarfsign_miner.m2", + }, + { + fileId = "197534", + value = "dwarfsign_misc.m2", + text = "dwarfsign_misc.m2", + }, + { + fileId = "197536", + value = "dwarfsign_staves.m2", + text = "dwarfsign_staves.m2", + }, + { + fileId = "197538", + value = "dwarfsign_swords.m2", + text = "dwarfsign_swords.m2", + }, + { + fileId = "197540", + value = "dwarfsign_tabard.m2", + text = "dwarfsign_tabard.m2", + }, + { + fileId = "197542", + value = "dwarfsign_tailor.m2", + text = "dwarfsign_tailor.m2", + }, + { + fileId = "197544", + value = "dwarfsign_tavern.m2", + text = "dwarfsign_tavern.m2", + }, + { + fileId = "197545", + value = "dwarfsign_weaponry.m2", + text = "dwarfsign_weaponry.m2", + }, + { + fileId = "197548", + value = "dwarfsign_winery.m2", + text = "dwarfsign_winery.m2", + }, + { + fileId = "197550", + value = "gnomesign_engineer.m2", + text = "gnomesign_engineer.m2", + }, + }, + value = "signs", + text = "signs", + }, + { + children = { + { + fileId = "197551", + value = "dwarvenstein01.m2", + text = "dwarvenstein01.m2", + }, + { + fileId = "197552", + value = "dwarvenstein02.m2", + text = "dwarvenstein02.m2", + }, + }, + value = "steins", + text = "steins", + }, + { + children = { + { + fileId = "197555", + value = "dwarventableaverage01.m2", + text = "dwarventableaverage01.m2", + }, + { + fileId = "197556", + value = "dwarventableaverage02.m2", + text = "dwarventableaverage02.m2", + }, + { + fileId = "197557", + value = "dwarventableaverage03.m2", + text = "dwarventableaverage03.m2", + }, + { + fileId = "197558", + value = "dwarventableaverage04.m2", + text = "dwarventableaverage04.m2", + }, + { + fileId = "197559", + value = "dwarventableaverage05.m2", + text = "dwarventableaverage05.m2", + }, + { + fileId = "197561", + value = "dwarventablelarge.m2", + text = "dwarventablelarge.m2", + }, + { + fileId = "197562", + value = "dwarventableornate01.m2", + text = "dwarventableornate01.m2", + }, + { + fileId = "197563", + value = "dwarventableornate02.m2", + text = "dwarventableornate02.m2", + }, + { + fileId = "197564", + value = "dwarventableornate03.m2", + text = "dwarventableornate03.m2", + }, + { + fileId = "197565", + value = "dwarventableornate04.m2", + text = "dwarventableornate04.m2", + }, + { + fileId = "197566", + value = "dwarventableornate05.m2", + text = "dwarventableornate05.m2", + }, + { + fileId = "197567", + value = "dwarventableornate06.m2", + text = "dwarventableornate06.m2", + }, + { + fileId = "197568", + value = "dwarventableornate07.m2", + text = "dwarventableornate07.m2", + }, + { + fileId = "197569", + value = "dwarventableornate08.m2", + text = "dwarventableornate08.m2", + }, + { + fileId = "197571", + value = "dwarventablesimple01.m2", + text = "dwarventablesimple01.m2", + }, + { + fileId = "197572", + value = "dwarventablesimple02.m2", + text = "dwarventablesimple02.m2", + }, + { + fileId = "197573", + value = "dwarventablesimple03.m2", + text = "dwarventablesimple03.m2", + }, + { + fileId = "197574", + value = "dwarventablesimple04.m2", + text = "dwarventablesimple04.m2", + }, + { + fileId = "197575", + value = "dwarventablesimple05.m2", + text = "dwarventablesimple05.m2", + }, + { + fileId = "197576", + value = "dwarventablesmall.m2", + text = "dwarventablesmall.m2", + }, + { + fileId = "197579", + value = "readingtable01.m2", + text = "readingtable01.m2", + }, + }, + value = "tables", + text = "tables", + }, + { + children = { + { + fileId = "197588", + value = "guntargetstand.m2", + text = "guntargetstand.m2", + }, + { + fileId = "197591", + value = "targetaxe01.m2", + text = "targetaxe01.m2", + }, + { + fileId = "197592", + value = "targetaxe02.m2", + text = "targetaxe02.m2", + }, + { + fileId = "197593", + value = "targetaxe03.m2", + text = "targetaxe03.m2", + }, + { + fileId = "197594", + value = "targethammer01.m2", + text = "targethammer01.m2", + }, + { + fileId = "197595", + value = "targethammer02.m2", + text = "targethammer02.m2", + }, + { + fileId = "197596", + value = "targethammer03.m2", + text = "targethammer03.m2", + }, + { + fileId = "197597", + value = "targetogre01.m2", + text = "targetogre01.m2", + }, + { + fileId = "197598", + value = "targetorc01.m2", + text = "targetorc01.m2", + }, + { + fileId = "197599", + value = "targetorc02.m2", + text = "targetorc02.m2", + }, + }, + value = "targets", + text = "targets", + }, + { + children = { + { + fileId = "197601", + value = "alekegfoot.m2", + text = "alekegfoot.m2", + }, + { + fileId = "197602", + value = "alekegs01.m2", + text = "alekegs01.m2", + }, + { + fileId = "197603", + value = "alekegsingle.m2", + text = "alekegsingle.m2", + }, + { + fileId = "197604", + value = "brewerytanks01.m2", + text = "brewerytanks01.m2", + }, + { + fileId = "197607", + value = "grainsacs01.m2", + text = "grainsacs01.m2", + }, + { + fileId = "197608", + value = "grainsacs02.m2", + text = "grainsacs02.m2", + }, + { + fileId = "197610", + value = "sink01.m2", + text = "sink01.m2", + }, + }, + value = "tavernstuff", + text = "tavernstuff", + }, + { + children = { + { + fileId = "197614", + value = "dwarventiling01.m2", + text = "dwarventiling01.m2", + }, + { + fileId = "197615", + value = "dwarventiling02.m2", + text = "dwarventiling02.m2", + }, + { + fileId = "197616", + value = "dwarventiling03.m2", + text = "dwarventiling03.m2", + }, + }, + value = "tilings", + text = "tilings", + }, + { + children = { + { + fileId = "197617", + value = "lunchbox01.m2", + text = "lunchbox01.m2", + }, + { + fileId = "197618", + value = "mallet01.m2", + text = "mallet01.m2", + }, + { + fileId = "197619", + value = "screwdriver01.m2", + text = "screwdriver01.m2", + }, + { + fileId = "197621", + value = "toolbox01.m2", + text = "toolbox01.m2", + }, + { + fileId = "197622", + value = "wrench01.m2", + text = "wrench01.m2", + }, + }, + value = "tools", + text = "tools", + }, + { + children = { + { + fileId = "197626", + value = "wardrobedwarvenaverage01.m2", + text = "wardrobedwarvenaverage01.m2", + }, + { + fileId = "197627", + value = "wardrobedwarvenaverage02.m2", + text = "wardrobedwarvenaverage02.m2", + }, + { + fileId = "197628", + value = "wardrobedwarvenaverage03.m2", + text = "wardrobedwarvenaverage03.m2", + }, + { + fileId = "197629", + value = "wardrobedwarvenornate01.m2", + text = "wardrobedwarvenornate01.m2", + }, + { + fileId = "197630", + value = "wardrobedwarvenornate02.m2", + text = "wardrobedwarvenornate02.m2", + }, + { + fileId = "197631", + value = "wardrobedwarvenornate03.m2", + text = "wardrobedwarvenornate03.m2", + }, + { + fileId = "197632", + value = "wardrobedwarvensimple01.m2", + text = "wardrobedwarvensimple01.m2", + }, + { + fileId = "197633", + value = "wardrobedwarvensimple02.m2", + text = "wardrobedwarvensimple02.m2", + }, + { + fileId = "197634", + value = "wardrobedwarvensimple03.m2", + text = "wardrobedwarvensimple03.m2", + }, + }, + value = "wardrobe", + text = "wardrobe", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "dwarf", + text = "dwarf", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "197635", + value = "gnomemachine.m2", + text = "gnomemachine.m2", + }, + }, + value = "gnomemachine", + text = "gnomemachine", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "197640", + value = "gnomebucket01.m2", + text = "gnomebucket01.m2", + }, + { + fileId = "197641", + value = "gnomebucket02.m2", + text = "gnomebucket02.m2", + }, + { + fileId = "197642", + value = "gnomebucket03.m2", + text = "gnomebucket03.m2", + }, + { + fileId = "197643", + value = "gnomebucket04.m2", + text = "gnomebucket04.m2", + }, + { + fileId = "197644", + value = "gnomebucket05.m2", + text = "gnomebucket05.m2", + }, + }, + value = "buckets", + text = "buckets", + }, + { + children = { + { + fileId = "197646", + value = "gnomeelevatorcar01.m2", + text = "gnomeelevatorcar01.m2", + }, + { + fileId = "197647", + value = "gnomeelevatorcar02.m2", + text = "gnomeelevatorcar02.m2", + }, + { + fileId = "197648", + value = "gnomeelevatorcar03.m2", + text = "gnomeelevatorcar03.m2", + }, + { + fileId = "197649", + value = "gnomeelevatorcar05.m2", + text = "gnomeelevatorcar05.m2", + }, + }, + value = "elevatorparts", + text = "elevatorparts", + }, + { + children = { + { + fileId = "197653", + value = "gnomebed01.m2", + text = "gnomebed01.m2", + }, + { + fileId = "197654", + value = "gnomebed02.m2", + text = "gnomebed02.m2", + }, + { + fileId = "197655", + value = "gnomebed03.m2", + text = "gnomebed03.m2", + }, + { + fileId = "197656", + value = "gnomebedslanted01.m2", + text = "gnomebedslanted01.m2", + }, + { + fileId = "197657", + value = "gnomebenchsittable.m2", + text = "gnomebenchsittable.m2", + }, + { + fileId = "197658", + value = "gnomechair01.m2", + text = "gnomechair01.m2", + }, + { + fileId = "197659", + value = "gnomechair02.m2", + text = "gnomechair02.m2", + }, + { + fileId = "197660", + value = "gnomechair03.m2", + text = "gnomechair03.m2", + }, + { + fileId = "197661", + value = "gnometable01.m2", + text = "gnometable01.m2", + }, + { + fileId = "197662", + value = "gnometable02.m2", + text = "gnometable02.m2", + }, + { + fileId = "197663", + value = "gnometable03.m2", + text = "gnometable03.m2", + }, + { + fileId = "197664", + value = "gnometable04.m2", + text = "gnometable04.m2", + }, + { + fileId = "197665", + value = "gnometable05.m2", + text = "gnometable05.m2", + }, + }, + value = "furniture", + text = "furniture", + }, + { + children = { + { + fileId = "197671", + value = "gnomebiggear.m2", + text = "gnomebiggear.m2", + }, + { + fileId = "197672", + value = "gnomegauge01.m2", + text = "gnomegauge01.m2", + }, + { + fileId = "197673", + value = "gnomelever.m2", + text = "gnomelever.m2", + }, + { + fileId = "197674", + value = "gnomemcwheel.m2", + text = "gnomemcwheel.m2", + }, + { + fileId = "197675", + value = "gnomesmallgear.m2", + text = "gnomesmallgear.m2", + }, + }, + value = "gears&levers", + text = "gears&levers", + }, + { + children = { + { + fileId = "197678", + value = "gnomemachine01.m2", + text = "gnomemachine01.m2", + }, + { + fileId = "197679", + value = "gnomemachine02.m2", + text = "gnomemachine02.m2", + }, + { + fileId = "197680", + value = "gnomemachine03.m2", + text = "gnomemachine03.m2", + }, + { + fileId = "197681", + value = "gnomemachine04.m2", + text = "gnomemachine04.m2", + }, + { + fileId = "197682", + value = "gnomemachine05.m2", + text = "gnomemachine05.m2", + }, + { + fileId = "197683", + value = "gnomemachine06.m2", + text = "gnomemachine06.m2", + }, + { + fileId = "197684", + value = "gnomemachinebroken03.m2", + text = "gnomemachinebroken03.m2", + }, + { + fileId = "197685", + value = "gnomemachinebroken04.m2", + text = "gnomemachinebroken04.m2", + }, + { + fileId = "197686", + value = "gnomemachinebroken05.m2", + text = "gnomemachinebroken05.m2", + }, + { + fileId = "197687", + value = "gnomesubwayglass.m2", + text = "gnomesubwayglass.m2", + }, + { + fileId = "197688", + value = "gnomesubwaysign.m2", + text = "gnomesubwaysign.m2", + }, + }, + value = "gnomemachine", + text = "gnomemachine", + }, + { + children = { + { + fileId = "197700", + value = "gnomehutelevator.m2", + text = "gnomehutelevator.m2", + }, + { + fileId = "197701", + value = "gnomehutmachinery.m2", + text = "gnomehutmachinery.m2", + }, + }, + value = "gnomemachinery", + text = "gnomemachinery", + }, + { + children = { + { + fileId = "197704", + value = "gnomeroboarm.m2", + text = "gnomeroboarm.m2", + }, + }, + value = "gnomeroboarm", + text = "gnomeroboarm", + }, + { + children = { + { + fileId = "197705", + value = "crashedgnomerc.m2", + text = "crashedgnomerc.m2", + }, + { + fileId = "197707", + value = "gnomerocketcart.m2", + text = "gnomerocketcart.m2", + }, + }, + value = "gnomerocketcarts", + text = "gnomerocketcarts", + }, + { + children = { + { + fileId = "197708", + value = "gnomewalladdon01.m2", + text = "gnomewalladdon01.m2", + }, + }, + value = "gnomewalladdons", + text = "gnomewalladdons", + }, + { + children = { + { + fileId = "197709", + value = "gnomehazardlight01.m2", + text = "gnomehazardlight01.m2", + }, + { + fileId = "197710", + value = "gnomehazardlight02.m2", + text = "gnomehazardlight02.m2", + }, + { + fileId = "197711", + value = "gnomehazardlightred.m2", + text = "gnomehazardlightred.m2", + }, + }, + value = "hazardlights", + text = "hazardlights", + }, + { + children = { + { + fileId = "197716", + value = "gnomemaintenancelight01.m2", + text = "gnomemaintenancelight01.m2", + }, + { + fileId = "197717", + value = "gnomemaintenancelight02.m2", + text = "gnomemaintenancelight02.m2", + }, + { + fileId = "197718", + value = "gnomestructuralspotlight01.m2", + text = "gnomestructuralspotlight01.m2", + }, + { + fileId = "197719", + value = "gnomestructuralspotlight02.m2", + text = "gnomestructuralspotlight02.m2", + }, + }, + value = "lights", + text = "lights", + }, + { + children = { + { + fileId = "197722", + value = "gnomescrew01.m2", + text = "gnomescrew01.m2", + }, + { + fileId = "197723", + value = "gnomescrew02.m2", + text = "gnomescrew02.m2", + }, + { + fileId = "197724", + value = "gnomescrew03.m2", + text = "gnomescrew03.m2", + }, + { + fileId = "197725", + value = "gnomescrew04.m2", + text = "gnomescrew04.m2", + }, + { + fileId = "197726", + value = "gnomescrew05.m2", + text = "gnomescrew05.m2", + }, + { + fileId = "197727", + value = "gnomescrew06.m2", + text = "gnomescrew06.m2", + }, + { + fileId = "197728", + value = "gnomescrew07.m2", + text = "gnomescrew07.m2", + }, + { + fileId = "197729", + value = "gnomescrew08.m2", + text = "gnomescrew08.m2", + }, + { + fileId = "197730", + value = "gnomescrew09.m2", + text = "gnomescrew09.m2", + }, + { + fileId = "197731", + value = "gnomesteelplate01.m2", + text = "gnomesteelplate01.m2", + }, + { + fileId = "197732", + value = "gnomesteelplate02.m2", + text = "gnomesteelplate02.m2", + }, + { + fileId = "197733", + value = "gnomesteelplate03.m2", + text = "gnomesteelplate03.m2", + }, + { + fileId = "197734", + value = "gnomesteelplate04.m2", + text = "gnomesteelplate04.m2", + }, + { + fileId = "197735", + value = "gnomesteelplate05.m2", + text = "gnomesteelplate05.m2", + }, + }, + value = "parts", + text = "parts", + }, + { + children = { + { + fileId = "197736", + value = "gnomepipe01.m2", + text = "gnomepipe01.m2", + }, + { + fileId = "197737", + value = "gnomepipe02.m2", + text = "gnomepipe02.m2", + }, + { + fileId = "197738", + value = "gnomepipe03.m2", + text = "gnomepipe03.m2", + }, + { + fileId = "197739", + value = "gnomepipe04.m2", + text = "gnomepipe04.m2", + }, + }, + value = "pipes", + text = "pipes", + }, + { + children = { + { + fileId = "197740", + value = "gnomesignpost01.m2", + text = "gnomesignpost01.m2", + }, + { + fileId = "197741", + value = "gnomesignpost02.m2", + text = "gnomesignpost02.m2", + }, + { + fileId = "197742", + value = "gnomestreetsign01.m2", + text = "gnomestreetsign01.m2", + }, + }, + value = "signposts", + text = "signposts", + }, + { + children = { + { + fileId = "197745", + value = "gnomespidertank01.m2", + text = "gnomespidertank01.m2", + }, + }, + value = "spidertank", + text = "spidertank", + }, + { + children = { + { + fileId = "197747", + value = "gnomewhistle02.m2", + text = "gnomewhistle02.m2", + }, + { + fileId = "197748", + value = "gnomewhistle03.m2", + text = "gnomewhistle03.m2", + }, + { + fileId = "197749", + value = "gnomewhistle04.m2", + text = "gnomewhistle04.m2", + }, + }, + value = "steamwhistles", + text = "steamwhistles", + }, + { + children = { + { + fileId = "197751", + value = "subwaycar.m2", + text = "subwaycar.m2", + }, + { + fileId = "197752", + value = "subwayramp.m2", + text = "subwayramp.m2", + }, + { + fileId = "197753", + value = "underwaterlightshaft.m2", + text = "underwaterlightshaft.m2", + }, + }, + value = "subway", + text = "subway", + }, + { + children = { + { + fileId = "197754", + value = "gnometool01.m2", + text = "gnometool01.m2", + }, + { + fileId = "197755", + value = "gnometool02.m2", + text = "gnometool02.m2", + }, + { + fileId = "197756", + value = "gnometool03.m2", + text = "gnometool03.m2", + }, + { + fileId = "197757", + value = "gnometool04.m2", + text = "gnometool04.m2", + }, + { + fileId = "197758", + value = "gnometool05.m2", + text = "gnometool05.m2", + }, + { + fileId = "197759", + value = "gnometool06.m2", + text = "gnometool06.m2", + }, + }, + value = "tools", + text = "tools", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "gnome", + text = "gnome", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "197760", + value = "goblincontrolpanel.m2", + text = "goblincontrolpanel.m2", + }, + }, + value = "controlpanel", + text = "controlpanel", + }, + { + children = { + { + fileId = "197766", + value = "goblinhutbottles.m2", + text = "goblinhutbottles.m2", + }, + { + fileId = "197767", + value = "goblinmachinery.m2", + text = "goblinmachinery.m2", + }, + { + fileId = "197768", + value = "goblinweathervane.m2", + text = "goblinweathervane.m2", + }, + }, + value = "goblinmachinery", + text = "goblinmachinery", + }, + { + children = { + { + fileId = "197777", + value = "crashedgoblinrc.m2", + text = "crashedgoblinrc.m2", + }, + { + fileId = "197779", + value = "goblinrocketcart01.m2", + text = "goblinrocketcart01.m2", + }, + { + fileId = "197780", + value = "goblinrocketcart02.m2", + text = "goblinrocketcart02.m2", + }, + { + fileId = "197781", + value = "goblinrocketcart03.m2", + text = "goblinrocketcart03.m2", + }, + { + fileId = "197782", + value = "goblinrocketcart04.m2", + text = "goblinrocketcart04.m2", + }, + { + fileId = "197783", + value = "goblinrocketcart05.m2", + text = "goblinrocketcart05.m2", + }, + { + fileId = "197784", + value = "goblinrocketcart_rc.m2", + text = "goblinrocketcart_rc.m2", + }, + }, + value = "goblinrocketcarts", + text = "goblinrocketcarts", + }, + { + children = { + { + fileId = "197789", + value = "goblinshreddersuit01.m2", + text = "goblinshreddersuit01.m2", + }, + { + fileId = "197790", + value = "goblinshreddersuit02.m2", + text = "goblinshreddersuit02.m2", + }, + }, + value = "goblinshreddersuit", + text = "goblinshreddersuit", + }, + { + children = { + { + fileId = "197791", + value = "goblintent01.m2", + text = "goblintent01.m2", + }, + { + fileId = "197792", + value = "goblintent02.m2", + text = "goblintent02.m2", + }, + { + fileId = "197793", + value = "goblintent03.m2", + text = "goblintent03.m2", + }, + { + fileId = "197794", + value = "goblintent04.m2", + text = "goblintent04.m2", + }, + { + fileId = "197795", + value = "goblintent05.m2", + text = "goblintent05.m2", + }, + { + fileId = "197796", + value = "goblintent06.m2", + text = "goblintent06.m2", + }, + { + fileId = "197797", + value = "goblintent07.m2", + text = "goblintent07.m2", + }, + }, + value = "goblintents", + text = "goblintents", + }, + { + children = { + { + fileId = "197799", + value = "goblinwagontnt_01.m2", + text = "goblinwagontnt_01.m2", + }, + }, + value = "goblintntwagon", + text = "goblintntwagon", + }, + { + children = { + { + fileId = "197802", + value = "go_rocketship.m2", + text = "go_rocketship.m2", + }, + }, + value = "rocketship", + text = "rocketship", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "goblin", + text = "goblin", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "197803", + value = "deadminedoor01.m2", + text = "deadminedoor01.m2", + }, + { + fileId = "197804", + value = "deadminedoor02.m2", + text = "deadminedoor02.m2", + }, + { + fileId = "197807", + value = "farmdoor01test.m2", + text = "farmdoor01test.m2", + }, + { + fileId = "197810", + value = "genericwroughtgate01.m2", + text = "genericwroughtgate01.m2", + }, + { + fileId = "197814", + value = "monestarybossdoor.m2", + text = "monestarybossdoor.m2", + }, + { + fileId = "197815", + value = "monestaryhalldoor.m2", + text = "monestaryhalldoor.m2", + }, + { + fileId = "197816", + value = "monestarysecretdoor.m2", + text = "monestarysecretdoor.m2", + }, + { + fileId = "197817", + value = "portcullisactive.m2", + text = "portcullisactive.m2", + }, + { + fileId = "197819", + value = "scarletcathedraldoor.m2", + text = "scarletcathedraldoor.m2", + }, + { + fileId = "197820", + value = "shadowfangdoor01.m2", + text = "shadowfangdoor01.m2", + }, + { + fileId = "197821", + value = "shadowfangdoor02.m2", + text = "shadowfangdoor02.m2", + }, + { + fileId = "197823", + value = "undeadwroughtgate01.m2", + text = "undeadwroughtgate01.m2", + }, + { + fileId = "197825", + value = "wroughtirondoor.m2", + text = "wroughtirondoor.m2", + }, + { + fileId = "197827", + value = "wroughtirondoor02.m2", + text = "wroughtirondoor02.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "197829", + value = "wizardssphere.m2", + text = "wizardssphere.m2", + }, + }, + value = "shadowfang", + text = "shadowfang", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "197831", + value = "altar01.m2", + text = "altar01.m2", + }, + { + fileId = "197832", + value = "altar02.m2", + text = "altar02.m2", + }, + { + fileId = "197835", + value = "generalaltar01.m2", + text = "generalaltar01.m2", + }, + }, + value = "altars", + text = "altars", + }, + { + children = { + { + fileId = "197836", + value = "deadmineanchor.m2", + text = "deadmineanchor.m2", + }, + }, + value = "anchor", + text = "anchor", + }, + { + children = { + { + fileId = "197838", + value = "bootyanchor.m2", + text = "bootyanchor.m2", + }, + }, + value = "anchors", + text = "anchors", + }, + { + children = { + { + fileId = "197841", + value = "duskwoodboarhead01.m2", + text = "duskwoodboarhead01.m2", + }, + { + fileId = "197842", + value = "duskwooddeerhead01.m2", + text = "duskwooddeerhead01.m2", + }, + { + fileId = "197845", + value = "stuffedbear.m2", + text = "stuffedbear.m2", + }, + { + fileId = "197846", + value = "stuffedfrenzy.m2", + text = "stuffedfrenzy.m2", + }, + { + fileId = "197847", + value = "stuffedtallstrider.m2", + text = "stuffedtallstrider.m2", + }, + }, + value = "animalheads", + text = "animalheads", + }, + { + children = { + { + fileId = "197849", + value = "stormwindarcherytarget01.m2", + text = "stormwindarcherytarget01.m2", + }, + }, + value = "archerytargets", + text = "archerytargets", + }, + { + children = { + { + fileId = "197851", + value = "gardenarch.m2", + text = "gardenarch.m2", + }, + { + fileId = "197852", + value = "gardenarchleftpost.m2", + text = "gardenarchleftpost.m2", + }, + { + fileId = "197853", + value = "gardenarchrightpost.m2", + text = "gardenarchrightpost.m2", + }, + { + fileId = "197854", + value = "gardenarchtop.m2", + text = "gardenarchtop.m2", + }, + { + fileId = "197858", + value = "trellis01.m2", + text = "trellis01.m2", + }, + { + fileId = "197859", + value = "trellis02.m2", + text = "trellis02.m2", + }, + }, + value = "arches", + text = "arches", + }, + { + children = { + { + fileId = "197860", + value = "armorbracerblue.m2", + text = "armorbracerblue.m2", + }, + { + fileId = "197861", + value = "armorbracergold.m2", + text = "armorbracergold.m2", + }, + { + fileId = "197862", + value = "armorbracersilver.m2", + text = "armorbracersilver.m2", + }, + { + fileId = "197863", + value = "armorbracertrim.m2", + text = "armorbracertrim.m2", + }, + { + fileId = "197864", + value = "armorbreastplateblue.m2", + text = "armorbreastplateblue.m2", + }, + { + fileId = "197865", + value = "armorbreastplategold.m2", + text = "armorbreastplategold.m2", + }, + { + fileId = "197866", + value = "armorbreastplategreen.m2", + text = "armorbreastplategreen.m2", + }, + { + fileId = "197867", + value = "armorbreastplatetrim.m2", + text = "armorbreastplatetrim.m2", + }, + { + fileId = "197869", + value = "armorhelmbluevisordown.m2", + text = "armorhelmbluevisordown.m2", + }, + { + fileId = "197870", + value = "armorhelmbluevisorup.m2", + text = "armorhelmbluevisorup.m2", + }, + { + fileId = "197871", + value = "armorhelmgold.m2", + text = "armorhelmgold.m2", + }, + { + fileId = "197872", + value = "armorhelmgreen.m2", + text = "armorhelmgreen.m2", + }, + { + fileId = "197873", + value = "armorhelmgreenflat.m2", + text = "armorhelmgreenflat.m2", + }, + { + fileId = "197874", + value = "armorhelmtrim.m2", + text = "armorhelmtrim.m2", + }, + { + fileId = "197875", + value = "armorhelmtrimflat.m2", + text = "armorhelmtrimflat.m2", + }, + { + fileId = "197876", + value = "armorhelmvisorblue.m2", + text = "armorhelmvisorblue.m2", + }, + { + fileId = "197877", + value = "armorleatherbracerblack.m2", + text = "armorleatherbracerblack.m2", + }, + { + fileId = "197878", + value = "armorleatherbracerbrown.m2", + text = "armorleatherbracerbrown.m2", + }, + { + fileId = "197879", + value = "armorleatherbracerdark.m2", + text = "armorleatherbracerdark.m2", + }, + { + fileId = "197880", + value = "armorleatherbracerorange.m2", + text = "armorleatherbracerorange.m2", + }, + { + fileId = "197881", + value = "armorleatherhelmblack.m2", + text = "armorleatherhelmblack.m2", + }, + { + fileId = "197882", + value = "armorleatherhelmblackflat.m2", + text = "armorleatherhelmblackflat.m2", + }, + { + fileId = "197883", + value = "armorleatherhelmbrown.m2", + text = "armorleatherhelmbrown.m2", + }, + { + fileId = "197884", + value = "armorleatherhelmbrownflat.m2", + text = "armorleatherhelmbrownflat.m2", + }, + { + fileId = "197885", + value = "armorleatherlegplateblack.m2", + text = "armorleatherlegplateblack.m2", + }, + { + fileId = "197886", + value = "armorleatherlegplatebrown.m2", + text = "armorleatherlegplatebrown.m2", + }, + { + fileId = "197887", + value = "armorleatherlegplatedark.m2", + text = "armorleatherlegplatedark.m2", + }, + { + fileId = "197888", + value = "armorleatherlegplateorange.m2", + text = "armorleatherlegplateorange.m2", + }, + { + fileId = "197889", + value = "armorleathershirtblack.m2", + text = "armorleathershirtblack.m2", + }, + { + fileId = "197890", + value = "armorleathershirtbrown.m2", + text = "armorleathershirtbrown.m2", + }, + { + fileId = "197891", + value = "armorleathershirtdark.m2", + text = "armorleathershirtdark.m2", + }, + { + fileId = "197892", + value = "armorleathershirtorange.m2", + text = "armorleathershirtorange.m2", + }, + { + fileId = "197893", + value = "armorleathershoulderblack.m2", + text = "armorleathershoulderblack.m2", + }, + { + fileId = "197894", + value = "armorleathershoulderdark.m2", + text = "armorleathershoulderdark.m2", + }, + { + fileId = "197895", + value = "armorleathershoulderorange.m2", + text = "armorleathershoulderorange.m2", + }, + { + fileId = "197896", + value = "armorlegplateblue.m2", + text = "armorlegplateblue.m2", + }, + { + fileId = "197897", + value = "armorlegplategold.m2", + text = "armorlegplategold.m2", + }, + { + fileId = "197898", + value = "armorlegplatesilver.m2", + text = "armorlegplatesilver.m2", + }, + { + fileId = "197899", + value = "armorlegplatetrim.m2", + text = "armorlegplatetrim.m2", + }, + { + fileId = "197900", + value = "armormailhangingblue.m2", + text = "armormailhangingblue.m2", + }, + { + fileId = "197901", + value = "armormailhangingbluelong.m2", + text = "armormailhangingbluelong.m2", + }, + { + fileId = "197902", + value = "armormailhanginggold.m2", + text = "armormailhanginggold.m2", + }, + { + fileId = "197903", + value = "armormailhanginggoldlong.m2", + text = "armormailhanginggoldlong.m2", + }, + { + fileId = "197904", + value = "armormailhangingred.m2", + text = "armormailhangingred.m2", + }, + { + fileId = "197905", + value = "armormailhangingredlong.m2", + text = "armormailhangingredlong.m2", + }, + { + fileId = "197906", + value = "armorshoulderblue.m2", + text = "armorshoulderblue.m2", + }, + { + fileId = "197907", + value = "armorshouldergold.m2", + text = "armorshouldergold.m2", + }, + { + fileId = "197908", + value = "armorshouldersilver.m2", + text = "armorshouldersilver.m2", + }, + { + fileId = "197909", + value = "armorshouldertrim.m2", + text = "armorshouldertrim.m2", + }, + { + fileId = "197910", + value = "armorstand.m2", + text = "armorstand.m2", + }, + { + fileId = "197911", + value = "armorstandmailblue.m2", + text = "armorstandmailblue.m2", + }, + { + fileId = "197912", + value = "armorstandmailcoifblue.m2", + text = "armorstandmailcoifblue.m2", + }, + }, + value = "armor", + text = "armor", + }, + { + children = { + { + fileId = "197927", + value = "painting05.m2", + text = "painting05.m2", + }, + { + fileId = "197928", + value = "painting06.m2", + text = "painting06.m2", + }, + { + fileId = "197929", + value = "painting07.m2", + text = "painting07.m2", + }, + { + fileId = "197930", + value = "painting08.m2", + text = "painting08.m2", + }, + { + fileId = "197931", + value = "painting09.m2", + text = "painting09.m2", + }, + { + fileId = "197932", + value = "painting10.m2", + text = "painting10.m2", + }, + { + fileId = "197933", + value = "painting11.m2", + text = "painting11.m2", + }, + { + fileId = "197934", + value = "painting12.m2", + text = "painting12.m2", + }, + { + fileId = "197935", + value = "painting13.m2", + text = "painting13.m2", + }, + { + fileId = "197936", + value = "painting14.m2", + text = "painting14.m2", + }, + { + fileId = "197937", + value = "painting15.m2", + text = "painting15.m2", + }, + { + fileId = "197939", + value = "stormwindpainting01.m2", + text = "stormwindpainting01.m2", + }, + { + fileId = "197940", + value = "stormwindpainting02.m2", + text = "stormwindpainting02.m2", + }, + { + fileId = "197941", + value = "stormwindpainting03.m2", + text = "stormwindpainting03.m2", + }, + { + fileId = "197942", + value = "stormwindpainting04.m2", + text = "stormwindpainting04.m2", + }, + { + fileId = "197943", + value = "stormwindpainting05.m2", + text = "stormwindpainting05.m2", + }, + }, + value = "artwork", + text = "artwork", + }, + { + children = { + { + fileId = "197946", + value = "ballandchain01.m2", + text = "ballandchain01.m2", + }, + }, + value = "ballandchain", + text = "ballandchain", + }, + { + children = { + { + fileId = "197948", + value = "ballistabow01.m2", + text = "ballistabow01.m2", + }, + { + fileId = "197949", + value = "ballistaframe01.m2", + text = "ballistaframe01.m2", + }, + { + fileId = "197950", + value = "ballistamissle01.m2", + text = "ballistamissle01.m2", + }, + { + fileId = "197951", + value = "ballistawheel01.m2", + text = "ballistawheel01.m2", + }, + }, + value = "ballistaruins", + text = "ballistaruins", + }, + { + children = { + { + fileId = "197953", + value = "allianceveteranbanner01.m2", + text = "allianceveteranbanner01.m2", + }, + { + fileId = "197955", + value = "allianceveteranbanner02.m2", + text = "allianceveteranbanner02.m2", + }, + { + fileId = "197956", + value = "allianceveteranbanner03.m2", + text = "allianceveteranbanner03.m2", + }, + { + fileId = "197957", + value = "allianceveteranbanner04.m2", + text = "allianceveteranbanner04.m2", + }, + { + fileId = "197959", + value = "bannerargentdawn.m2", + text = "bannerargentdawn.m2", + }, + { + fileId = "197961", + value = "bluelorderonbanner.m2", + text = "bluelorderonbanner.m2", + }, + { + fileId = "197962", + value = "crimsonbanner01.m2", + text = "crimsonbanner01.m2", + }, + { + fileId = "197964", + value = "durnholdebanner01.m2", + text = "durnholdebanner01.m2", + }, + { + fileId = "197965", + value = "durnholdebanner02.m2", + text = "durnholdebanner02.m2", + }, + { + fileId = "197966", + value = "durnholdebannernew.m2", + text = "durnholdebannernew.m2", + }, + { + fileId = "197968", + value = "dwarvenbanner01.m2", + text = "dwarvenbanner01.m2", + }, + { + fileId = "197971", + value = "holybanner01.m2", + text = "holybanner01.m2", + }, + { + fileId = "197973", + value = "kultirasbanner01.m2", + text = "kultirasbanner01.m2", + }, + { + fileId = "197974", + value = "kultirasbanner02.m2", + text = "kultirasbanner02.m2", + }, + { + fileId = "197977", + value = "magicbanner01.m2", + text = "magicbanner01.m2", + }, + { + fileId = "197979", + value = "nightelf01.m2", + text = "nightelf01.m2", + }, + { + fileId = "197982", + value = "scarletbanner01.m2", + text = "scarletbanner01.m2", + }, + { + fileId = "197986", + value = "scarletbanner02.m2", + text = "scarletbanner02.m2", + }, + { + fileId = "197987", + value = "scarletbanner03.m2", + text = "scarletbanner03.m2", + }, + { + fileId = "197988", + value = "scarletbannerclean.m2", + text = "scarletbannerclean.m2", + }, + { + fileId = "197989", + value = "scarletbannerlong.m2", + text = "scarletbannerlong.m2", + }, + { + fileId = "197991", + value = "shadowfangbanner01.m2", + text = "shadowfangbanner01.m2", + }, + { + fileId = "197992", + value = "shadowfangbanner02.m2", + text = "shadowfangbanner02.m2", + }, + { + fileId = "197995", + value = "stormwindgriffonbanner01.m2", + text = "stormwindgriffonbanner01.m2", + }, + { + fileId = "197996", + value = "stormwindlionbanner.m2", + text = "stormwindlionbanner.m2", + }, + { + fileId = "197997", + value = "stormwindmagebanner01.m2", + text = "stormwindmagebanner01.m2", + }, + { + fileId = "198000", + value = "warriorbanner01.m2", + text = "warriorbanner01.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "198001", + value = "bunkbed01.m2", + text = "bunkbed01.m2", + }, + { + fileId = "198002", + value = "duskwoodbed.m2", + text = "duskwoodbed.m2", + }, + }, + value = "beds", + text = "beds", + }, + { + children = { + { + fileId = "198004", + value = "beerkeg01.m2", + text = "beerkeg01.m2", + }, + { + fileId = "198005", + value = "beerkeg01_nocollide.m2", + text = "beerkeg01_nocollide.m2", + }, + { + fileId = "198006", + value = "beerkeg02.m2", + text = "beerkeg02.m2", + }, + }, + value = "beerkegs", + text = "beerkegs", + }, + { + children = { + { + fileId = "198008", + value = "bellows.m2", + text = "bellows.m2", + }, + { + fileId = "198009", + value = "duskwoodbellows.m2", + text = "duskwoodbellows.m2", + }, + }, + value = "bellows", + text = "bellows", + }, + { + children = { + { + fileId = "198011", + value = "duskwoodbench.m2", + text = "duskwoodbench.m2", + }, + { + fileId = "198012", + value = "innbench.m2", + text = "innbench.m2", + }, + { + fileId = "198013", + value = "shadowfangbench01.m2", + text = "shadowfangbench01.m2", + }, + { + fileId = "198014", + value = "shadowfangbench02.m2", + text = "shadowfangbench02.m2", + }, + { + fileId = "198015", + value = "stormwindbench01.m2", + text = "stormwindbench01.m2", + }, + }, + value = "benches", + text = "benches", + }, + { + children = { + { + fileId = "198016", + value = "booklarge01.m2", + text = "booklarge01.m2", + }, + { + fileId = "198017", + value = "booklarge02.m2", + text = "booklarge02.m2", + }, + { + fileId = "198018", + value = "booklarge03.m2", + text = "booklarge03.m2", + }, + { + fileId = "198019", + value = "booklargeopen01.m2", + text = "booklargeopen01.m2", + }, + { + fileId = "198020", + value = "booklargeopen02.m2", + text = "booklargeopen02.m2", + }, + { + fileId = "198021", + value = "booklargeopen03.m2", + text = "booklargeopen03.m2", + }, + { + fileId = "198022", + value = "bookmedium01.m2", + text = "bookmedium01.m2", + }, + { + fileId = "198023", + value = "bookmedium02.m2", + text = "bookmedium02.m2", + }, + { + fileId = "198024", + value = "bookmedium03.m2", + text = "bookmedium03.m2", + }, + { + fileId = "198025", + value = "bookmedium04.m2", + text = "bookmedium04.m2", + }, + { + fileId = "198026", + value = "bookmedium05.m2", + text = "bookmedium05.m2", + }, + { + fileId = "198027", + value = "bookmedium06.m2", + text = "bookmedium06.m2", + }, + { + fileId = "198028", + value = "bookmedium07.m2", + text = "bookmedium07.m2", + }, + { + fileId = "198029", + value = "bookmediumopen01.m2", + text = "bookmediumopen01.m2", + }, + { + fileId = "198030", + value = "bookmediumopen02.m2", + text = "bookmediumopen02.m2", + }, + { + fileId = "198031", + value = "bookmediumopen03.m2", + text = "bookmediumopen03.m2", + }, + { + fileId = "198032", + value = "bookmediumopen04.m2", + text = "bookmediumopen04.m2", + }, + { + fileId = "198033", + value = "bookmediumopen05.m2", + text = "bookmediumopen05.m2", + }, + { + fileId = "198035", + value = "booksmall01.m2", + text = "booksmall01.m2", + }, + { + fileId = "198036", + value = "booksmall02.m2", + text = "booksmall02.m2", + }, + { + fileId = "198037", + value = "booksmall03.m2", + text = "booksmall03.m2", + }, + { + fileId = "198038", + value = "booksmall04.m2", + text = "booksmall04.m2", + }, + { + fileId = "198039", + value = "booksmall05.m2", + text = "booksmall05.m2", + }, + { + fileId = "198040", + value = "booksmallopen01.m2", + text = "booksmallopen01.m2", + }, + { + fileId = "198041", + value = "booksmallopen02.m2", + text = "booksmallopen02.m2", + }, + { + fileId = "198042", + value = "booksmallopen03.m2", + text = "booksmallopen03.m2", + }, + { + fileId = "198043", + value = "booksmallopen04.m2", + text = "booksmallopen04.m2", + }, + { + fileId = "198044", + value = "booksmallopen05.m2", + text = "booksmallopen05.m2", + }, + { + fileId = "198046", + value = "generalbook01.m2", + text = "generalbook01.m2", + }, + }, + value = "books", + text = "books", + }, + { + children = { + { + fileId = "198047", + value = "abbeyshelf01.m2", + text = "abbeyshelf01.m2", + }, + { + fileId = "198048", + value = "abbeyshelf01_unselectable.m2", + text = "abbeyshelf01_unselectable.m2", + }, + { + fileId = "198049", + value = "abbeyshelf02.m2", + text = "abbeyshelf02.m2", + }, + { + fileId = "198050", + value = "abbeyshelf02_unselectable.m2", + text = "abbeyshelf02_unselectable.m2", + }, + { + fileId = "198052", + value = "duskwoodbookshelf01.m2", + text = "duskwoodbookshelf01.m2", + }, + { + fileId = "198053", + value = "duskwoodbookshelf02.m2", + text = "duskwoodbookshelf02.m2", + }, + { + fileId = "198054", + value = "duskwoodbookshelf03.m2", + text = "duskwoodbookshelf03.m2", + }, + }, + value = "bookshelves", + text = "bookshelves", + }, + { + children = { + { + fileId = "198055", + value = "generalbookstackshort01.m2", + text = "generalbookstackshort01.m2", + }, + { + fileId = "198056", + value = "generalbookstacktall01.m2", + text = "generalbookstacktall01.m2", + }, + }, + value = "bookstacks", + text = "bookstacks", + }, + { + children = { + { + fileId = "198057", + value = "bottle01.m2", + text = "bottle01.m2", + }, + { + fileId = "198058", + value = "bottlesmoke.m2", + text = "bottlesmoke.m2", + }, + { + fileId = "198060", + value = "greenbottle01.m2", + text = "greenbottle01.m2", + }, + { + fileId = "198061", + value = "greenbottle02.m2", + text = "greenbottle02.m2", + }, + }, + value = "bottles", + text = "bottles", + }, + { + children = { + { + fileId = "198064", + value = "humanbraziercorrupt.m2", + text = "humanbraziercorrupt.m2", + }, + { + fileId = "198065", + value = "humanbraziermagic.m2", + text = "humanbraziermagic.m2", + }, + { + fileId = "198067", + value = "stormwindbrazier01.m2", + text = "stormwindbrazier01.m2", + }, + }, + value = "braziers", + text = "braziers", + }, + { + children = { + { + fileId = "198068", + value = "bucket.m2", + text = "bucket.m2", + }, + { + fileId = "198069", + value = "cavekoboldbucket.m2", + text = "cavekoboldbucket.m2", + }, + }, + value = "buckets", + text = "buckets", + }, + { + children = { + { + fileId = "198073", + value = "candelabratall01.m2", + text = "candelabratall01.m2", + }, + { + fileId = "198074", + value = "candelabratall02.m2", + text = "candelabratall02.m2", + }, + { + fileId = "198076", + value = "generalcandelabra01.m2", + text = "generalcandelabra01.m2", + }, + }, + value = "candelabras", + text = "candelabras", + }, + { + children = { + { + fileId = "198078", + value = "cannon01.m2", + text = "cannon01.m2", + }, + { + fileId = "198079", + value = "cannonlarge.m2", + text = "cannonlarge.m2", + }, + { + fileId = "198082", + value = "deadminescannon01.m2", + text = "deadminescannon01.m2", + }, + }, + value = "cannon", + text = "cannon", + }, + { + children = { + { + fileId = "198084", + value = "deadminecannonballstack.m2", + text = "deadminecannonballstack.m2", + }, + }, + value = "cannonballstack", + text = "cannonballstack", + }, + { + children = { + { + fileId = "198085", + value = "deadminecargoboxes.m2", + text = "deadminecargoboxes.m2", + }, + }, + value = "cargoboxes", + text = "cargoboxes", + }, + { + children = { + { + fileId = "198086", + value = "deadminecargonetboxes.m2", + text = "deadminecargonetboxes.m2", + }, + }, + value = "cargonetboxes", + text = "cargonetboxes", + }, + { + children = { + { + fileId = "198087", + value = "deadminecargonet01.m2", + text = "deadminecargonet01.m2", + }, + { + fileId = "198088", + value = "deadminecargonet02.m2", + text = "deadminecargonet02.m2", + }, + { + fileId = "198089", + value = "deadminecargonethang.m2", + text = "deadminecargonethang.m2", + }, + { + fileId = "198090", + value = "deadminecargonethangshort.m2", + text = "deadminecargonethangshort.m2", + }, + { + fileId = "198091", + value = "deadminecargonetlarge.m2", + text = "deadminecargonetlarge.m2", + }, + }, + value = "cargonets", + text = "cargonets", + }, + { + children = { + { + fileId = "198093", + value = "catapultarm.m2", + text = "catapultarm.m2", + }, + { + fileId = "198095", + value = "catapultball01.m2", + text = "catapultball01.m2", + }, + { + fileId = "198096", + value = "catapultbeam.m2", + text = "catapultbeam.m2", + }, + { + fileId = "198097", + value = "catapulttrunk01.m2", + text = "catapulttrunk01.m2", + }, + { + fileId = "198098", + value = "catapulttrunk02.m2", + text = "catapulttrunk02.m2", + }, + { + fileId = "198099", + value = "catapultwheel01.m2", + text = "catapultwheel01.m2", + }, + }, + value = "catapultruins", + text = "catapultruins", + }, + { + children = { + { + fileId = "198100", + value = "cauldron.m2", + text = "cauldron.m2", + }, + { + fileId = "198101", + value = "cauldronempty.m2", + text = "cauldronempty.m2", + }, + }, + value = "cauldrons", + text = "cauldrons", + }, + { + children = { + { + fileId = "198109", + value = "minepump01.m2", + text = "minepump01.m2", + }, + }, + value = "caveminepump", + text = "caveminepump", + }, + { + children = { + { + fileId = "198110", + value = "deadminescaveroof.m2", + text = "deadminescaveroof.m2", + }, + { + fileId = "198111", + value = "dnrdeadminescaveroof.m2", + text = "dnrdeadminescaveroof.m2", + }, + }, + value = "caveroof", + text = "caveroof", + }, + { + children = { + { + fileId = "198114", + value = "generalchairhighend01.m2", + text = "generalchairhighend01.m2", + }, + { + fileId = "198115", + value = "generalchairloend01.m2", + text = "generalchairloend01.m2", + }, + { + fileId = "198116", + value = "generalmedchair01.m2", + text = "generalmedchair01.m2", + }, + { + fileId = "198117", + value = "gmchairloend01.m2", + text = "gmchairloend01.m2", + }, + { + fileId = "198119", + value = "shadowfangchair01.m2", + text = "shadowfangchair01.m2", + }, + { + fileId = "198120", + value = "shadowfangchair02.m2", + text = "shadowfangchair02.m2", + }, + }, + value = "chairs", + text = "chairs", + }, + { + children = { + { + fileId = "198122", + value = "generalchimney01.m2", + text = "generalchimney01.m2", + }, + { + fileId = "198123", + value = "generalchimney02.m2", + text = "generalchimney02.m2", + }, + }, + value = "chimneys", + text = "chimneys", + }, + { + children = { + { + fileId = "198124", + value = "clothboltblue.m2", + text = "clothboltblue.m2", + }, + { + fileId = "198125", + value = "clothboltgreen.m2", + text = "clothboltgreen.m2", + }, + { + fileId = "198126", + value = "clothboltred.m2", + text = "clothboltred.m2", + }, + { + fileId = "198127", + value = "clothboltwhite.m2", + text = "clothboltwhite.m2", + }, + { + fileId = "198128", + value = "clothspoolblue.m2", + text = "clothspoolblue.m2", + }, + { + fileId = "198129", + value = "clothspoolbluelow.m2", + text = "clothspoolbluelow.m2", + }, + { + fileId = "198130", + value = "clothspoolredlow.m2", + text = "clothspoolredlow.m2", + }, + { + fileId = "198131", + value = "clothspoolyellow.m2", + text = "clothspoolyellow.m2", + }, + { + fileId = "198133", + value = "clothyarnblue.m2", + text = "clothyarnblue.m2", + }, + { + fileId = "198134", + value = "clothyarnbluelow.m2", + text = "clothyarnbluelow.m2", + }, + { + fileId = "198135", + value = "clothyarnredlow.m2", + text = "clothyarnredlow.m2", + }, + { + fileId = "198136", + value = "clothyarnyellow.m2", + text = "clothyarnyellow.m2", + }, + }, + value = "cloth", + text = "cloth", + }, + { + children = { + { + fileId = "198138", + value = "bootrack01.m2", + text = "bootrack01.m2", + }, + { + fileId = "198139", + value = "bootsleatherblack.m2", + text = "bootsleatherblack.m2", + }, + { + fileId = "198140", + value = "bootsleatherbrown01.m2", + text = "bootsleatherbrown01.m2", + }, + { + fileId = "198141", + value = "bootsleatherdark.m2", + text = "bootsleatherdark.m2", + }, + { + fileId = "198142", + value = "clothyarnballred.m2", + text = "clothyarnballred.m2", + }, + { + fileId = "198143", + value = "clothyarnballyellow.m2", + text = "clothyarnballyellow.m2", + }, + { + fileId = "198144", + value = "foldedpantsbrown.m2", + text = "foldedpantsbrown.m2", + }, + { + fileId = "198145", + value = "foldedpantsgrey.m2", + text = "foldedpantsgrey.m2", + }, + { + fileId = "198146", + value = "foldedshirtbrown.m2", + text = "foldedshirtbrown.m2", + }, + { + fileId = "198147", + value = "foldershirtgreen.m2", + text = "foldershirtgreen.m2", + }, + { + fileId = "198148", + value = "hangingcloakblue.m2", + text = "hangingcloakblue.m2", + }, + { + fileId = "198149", + value = "hangingcloakred.m2", + text = "hangingcloakred.m2", + }, + { + fileId = "198150", + value = "hangingpantsbrown.m2", + text = "hangingpantsbrown.m2", + }, + { + fileId = "198151", + value = "hangingpantsclotheslinebrown.m2", + text = "hangingpantsclotheslinebrown.m2", + }, + { + fileId = "198152", + value = "hangingpantsclotheslinegrey.m2", + text = "hangingpantsclotheslinegrey.m2", + }, + { + fileId = "198153", + value = "hangingpantsgrey.m2", + text = "hangingpantsgrey.m2", + }, + { + fileId = "198154", + value = "hangingshirtbrown.m2", + text = "hangingshirtbrown.m2", + }, + { + fileId = "198155", + value = "hangingshirtclotheslinebrown.m2", + text = "hangingshirtclotheslinebrown.m2", + }, + { + fileId = "198156", + value = "hangingshirtclotheslinegreen.m2", + text = "hangingshirtclotheslinegreen.m2", + }, + { + fileId = "198157", + value = "hangingshirtgreen.m2", + text = "hangingshirtgreen.m2", + }, + }, + value = "clothing", + text = "clothing", + }, + { + children = { + { + fileId = "198158", + value = "crategrain01.m2", + text = "crategrain01.m2", + }, + { + fileId = "198159", + value = "crategrainempty.m2", + text = "crategrainempty.m2", + }, + { + fileId = "198160", + value = "crategrainlid.m2", + text = "crategrainlid.m2", + }, + { + fileId = "198161", + value = "crategrainopen.m2", + text = "crategrainopen.m2", + }, + { + fileId = "198163", + value = "graincrate01.m2", + text = "graincrate01.m2", + }, + { + fileId = "198165", + value = "replacecrate01.m2", + text = "replacecrate01.m2", + }, + { + fileId = "198166", + value = "replacecrate02.m2", + text = "replacecrate02.m2", + }, + { + fileId = "198167", + value = "replacecrate03.m2", + text = "replacecrate03.m2", + }, + { + fileId = "198168", + value = "stormwindcrate01.m2", + text = "stormwindcrate01.m2", + }, + }, + value = "crates", + text = "crates", + }, + { + children = { + { + fileId = "198169", + value = "metalcup03.m2", + text = "metalcup03.m2", + }, + { + fileId = "198170", + value = "metalcup04.m2", + text = "metalcup04.m2", + }, + }, + value = "cups", + text = "cups", + }, + { + children = { + { + fileId = "198172", + value = "deadminecleat.m2", + text = "deadminecleat.m2", + }, + }, + value = "deadminecleat", + text = "deadminecleat", + }, + { + children = { + { + fileId = "198173", + value = "deadminepowderkeg.m2", + text = "deadminepowderkeg.m2", + }, + }, + value = "deadminepowderkeg", + text = "deadminepowderkeg", + }, + { + children = { + { + fileId = "198175", + value = "fancydesk01.m2", + text = "fancydesk01.m2", + }, + }, + value = "desks", + text = "desks", + }, + { + children = { + { + fileId = "198177", + value = "doghouse.m2", + text = "doghouse.m2", + }, + }, + value = "doghouses", + text = "doghouses", + }, + { + children = { + { + fileId = "198178", + value = "ragdoll01.m2", + text = "ragdoll01.m2", + }, + { + fileId = "198179", + value = "ragdoll_02.m2", + text = "ragdoll_02.m2", + }, + { + fileId = "198180", + value = "ragdoll_03.m2", + text = "ragdoll_03.m2", + }, + { + fileId = "198181", + value = "ragdoll_04.m2", + text = "ragdoll_04.m2", + }, + { + fileId = "198182", + value = "ragdoll_05.m2", + text = "ragdoll_05.m2", + }, + }, + value = "dolls", + text = "dolls", + }, + { + children = { + { + fileId = "198185", + value = "drapery01.m2", + text = "drapery01.m2", + }, + { + fileId = "198186", + value = "drapery02.m2", + text = "drapery02.m2", + }, + }, + value = "drapery", + text = "drapery", + }, + { + children = { + { + fileId = "198189", + value = "cavekobolddredge.m2", + text = "cavekobolddredge.m2", + }, + }, + value = "dredge", + text = "dredge", + }, + { + children = { + { + fileId = "198191", + value = "burningsteppselevator.m2", + text = "burningsteppselevator.m2", + }, + }, + value = "elevatorparts", + text = "elevatorparts", + }, + { + children = { + { + fileId = "198193", + value = "undeadcampfire.m2", + text = "undeadcampfire.m2", + }, + { + fileId = "198194", + value = "undeadfirelarge.m2", + text = "undeadfirelarge.m2", + }, + { + fileId = "198195", + value = "undeadfiresmall.m2", + text = "undeadfiresmall.m2", + }, + }, + value = "fire", + text = "fire", + }, + { + children = { + { + fileId = "198197", + value = "firewoodpile01.m2", + text = "firewoodpile01.m2", + }, + { + fileId = "198198", + value = "firewoodpile03.m2", + text = "firewoodpile03.m2", + }, + }, + value = "firewood", + text = "firewood", + }, + { + children = { + { + fileId = "198199", + value = "flagpole01.m2", + text = "flagpole01.m2", + }, + }, + value = "flagpole", + text = "flagpole", + }, + { + children = { + { + fileId = "198202", + value = "flowersbunch01.m2", + text = "flowersbunch01.m2", + }, + { + fileId = "198203", + value = "flowersbunch02.m2", + text = "flowersbunch02.m2", + }, + { + fileId = "198204", + value = "flowersbunch03.m2", + text = "flowersbunch03.m2", + }, + { + fileId = "198205", + value = "flowersbunch04.m2", + text = "flowersbunch04.m2", + }, + { + fileId = "198206", + value = "flowersbunch05.m2", + text = "flowersbunch05.m2", + }, + { + fileId = "198207", + value = "flowersbunchdead01.m2", + text = "flowersbunchdead01.m2", + }, + { + fileId = "198208", + value = "flowersbunchdead02.m2", + text = "flowersbunchdead02.m2", + }, + { + fileId = "198209", + value = "flowerswreath01.m2", + text = "flowerswreath01.m2", + }, + { + fileId = "198210", + value = "flowerswreath02.m2", + text = "flowerswreath02.m2", + }, + { + fileId = "198211", + value = "flowerswreathdead01.m2", + text = "flowerswreathdead01.m2", + }, + }, + value = "flowers", + text = "flowers", + }, + { + children = { + { + fileId = "198212", + value = "bread01.m2", + text = "bread01.m2", + }, + { + fileId = "198214", + value = "breadfrench01.m2", + text = "breadfrench01.m2", + }, + { + fileId = "198215", + value = "breadfrenchhalf.m2", + text = "breadfrenchhalf.m2", + }, + { + fileId = "198216", + value = "breadloaf01.m2", + text = "breadloaf01.m2", + }, + { + fileId = "198217", + value = "breadloafhalf.m2", + text = "breadloafhalf.m2", + }, + { + fileId = "198218", + value = "breadslice.m2", + text = "breadslice.m2", + }, + { + fileId = "198219", + value = "cheesewedge01.m2", + text = "cheesewedge01.m2", + }, + { + fileId = "198220", + value = "cheesewedgeswiss01.m2", + text = "cheesewedgeswiss01.m2", + }, + { + fileId = "198221", + value = "cheesewheel01.m2", + text = "cheesewheel01.m2", + }, + { + fileId = "198222", + value = "cheesewheelswiss01.m2", + text = "cheesewheelswiss01.m2", + }, + { + fileId = "198223", + value = "fishplatter01.m2", + text = "fishplatter01.m2", + }, + { + fileId = "198224", + value = "goldfruitbowl01.m2", + text = "goldfruitbowl01.m2", + }, + { + fileId = "198226", + value = "muffin01.m2", + text = "muffin01.m2", + }, + { + fileId = "198227", + value = "pie01.m2", + text = "pie01.m2", + }, + { + fileId = "198228", + value = "roastboarplatter.m2", + text = "roastboarplatter.m2", + }, + }, + value = "food", + text = "food", + }, + { + children = { + { + fileId = "198230", + value = "cleaver01.m2", + text = "cleaver01.m2", + }, + { + fileId = "198232", + value = "haunch.m2", + text = "haunch.m2", + }, + { + fileId = "198234", + value = "kitchenknife.m2", + text = "kitchenknife.m2", + }, + { + fileId = "198235", + value = "kitchenknife01.m2", + text = "kitchenknife01.m2", + }, + { + fileId = "198236", + value = "turkeyleg.m2", + text = "turkeyleg.m2", + }, + }, + value = "food&utensils", + text = "food&utensils", + }, + { + children = { + { + fileId = "198238", + value = "duskwoodfootlocker01.m2", + text = "duskwoodfootlocker01.m2", + }, + }, + value = "footlockers", + text = "footlockers", + }, + { + children = { + { + fileId = "198240", + value = "plaguedfountain.m2", + text = "plaguedfountain.m2", + }, + { + fileId = "198243", + value = "snowfountain.m2", + text = "snowfountain.m2", + }, + { + fileId = "198247", + value = "stormwindfountain01.m2", + text = "stormwindfountain01.m2", + }, + { + fileId = "198253", + value = "tirisfallfountain.m2", + text = "tirisfallfountain.m2", + }, + }, + value = "fountains", + text = "fountains", + }, + { + children = { + { + fileId = "198254", + value = "globe01.m2", + text = "globe01.m2", + }, + }, + value = "globes", + text = "globes", + }, + { + children = { + { + fileId = "198256", + value = "goblet02.m2", + text = "goblet02.m2", + }, + }, + value = "goblets", + text = "goblets", + }, + { + children = { + { + fileId = "198261", + value = "gryphonroost01.m2", + text = "gryphonroost01.m2", + }, + }, + value = "gryphonroost", + text = "gryphonroost", + }, + { + children = { + { + fileId = "198262", + value = "gunlongrifle.m2", + text = "gunlongrifle.m2", + }, + { + fileId = "198263", + value = "gunshopammoboxblue.m2", + text = "gunshopammoboxblue.m2", + }, + { + fileId = "198264", + value = "gunshopammoboxblueblock.m2", + text = "gunshopammoboxblueblock.m2", + }, + { + fileId = "198265", + value = "gunshopammoboxred.m2", + text = "gunshopammoboxred.m2", + }, + { + fileId = "198266", + value = "gunshopammoboxredblock.m2", + text = "gunshopammoboxredblock.m2", + }, + { + fileId = "198267", + value = "gunshopbomb.m2", + text = "gunshopbomb.m2", + }, + { + fileId = "198268", + value = "gunshopdynamite.m2", + text = "gunshopdynamite.m2", + }, + { + fileId = "198269", + value = "gunshopfireworks01.m2", + text = "gunshopfireworks01.m2", + }, + { + fileId = "198270", + value = "gunshopfireworks02.m2", + text = "gunshopfireworks02.m2", + }, + { + fileId = "198271", + value = "gunshopfireworks03.m2", + text = "gunshopfireworks03.m2", + }, + { + fileId = "198272", + value = "gunshopfireworks04.m2", + text = "gunshopfireworks04.m2", + }, + { + fileId = "198273", + value = "gunshopfireworksbarrel.m2", + text = "gunshopfireworksbarrel.m2", + }, + { + fileId = "198274", + value = "gunshopfireworksbig01.m2", + text = "gunshopfireworksbig01.m2", + }, + { + fileId = "198275", + value = "gunshopfireworksbig02.m2", + text = "gunshopfireworksbig02.m2", + }, + { + fileId = "198276", + value = "gunshopgunbarrel.m2", + text = "gunshopgunbarrel.m2", + }, + { + fileId = "198277", + value = "gunshopgunstock.m2", + text = "gunshopgunstock.m2", + }, + { + fileId = "198278", + value = "gunshopmortar.m2", + text = "gunshopmortar.m2", + }, + { + fileId = "198279", + value = "gunshopmortarshell.m2", + text = "gunshopmortarshell.m2", + }, + { + fileId = "198280", + value = "gunshoppowderkegopen.m2", + text = "gunshoppowderkegopen.m2", + }, + { + fileId = "198281", + value = "gunshoptarget01.m2", + text = "gunshoptarget01.m2", + }, + { + fileId = "198282", + value = "gunshoptarget02.m2", + text = "gunshoptarget02.m2", + }, + { + fileId = "198283", + value = "gunshoptarget03.m2", + text = "gunshoptarget03.m2", + }, + { + fileId = "198284", + value = "gunshoptarget04.m2", + text = "gunshoptarget04.m2", + }, + { + fileId = "198285", + value = "gunsniperrifle.m2", + text = "gunsniperrifle.m2", + }, + { + fileId = "198286", + value = "guntripod.m2", + text = "guntripod.m2", + }, + }, + value = "gunshop", + text = "gunshop", + }, + { + children = { + { + fileId = "198288", + value = "stormwindgypsywagon01.m2", + text = "stormwindgypsywagon01.m2", + }, + }, + value = "gypsywagons", + text = "gypsywagons", + }, + { + children = { + { + fileId = "198289", + value = "generalhangingcage01.m2", + text = "generalhangingcage01.m2", + }, + }, + value = "hanging cages", + text = "hanging cages", + }, + { + children = { + { + fileId = "198291", + value = "generalhanginglantern01.m2", + text = "generalhanginglantern01.m2", + }, + { + fileId = "198292", + value = "generalhanginglanternlong.m2", + text = "generalhanginglanternlong.m2", + }, + }, + value = "hanginglanterns", + text = "hanginglanterns", + }, + { + children = { + { + fileId = "198294", + value = "darkhaypilemedium01.m2", + text = "darkhaypilemedium01.m2", + }, + { + fileId = "198296", + value = "shadowfanghaypile01.m2", + text = "shadowfanghaypile01.m2", + }, + { + fileId = "198297", + value = "shadowfanghaypile02.m2", + text = "shadowfanghaypile02.m2", + }, + }, + value = "haypiles", + text = "haypiles", + }, + { + children = { + { + fileId = "198301", + value = "moonbrookhearse.m2", + text = "moonbrookhearse.m2", + }, + }, + value = "hearse", + text = "hearse", + }, + { + children = { + { + fileId = "198303", + value = "duskwoodlamppost.m2", + text = "duskwoodlamppost.m2", + }, + { + fileId = "198304", + value = "duskwoodlamppostbroken.m2", + text = "duskwoodlamppostbroken.m2", + }, + }, + value = "lampposts", + text = "lampposts", + }, + { + children = { + { + fileId = "198310", + value = "lamppostbroken.m2", + text = "lamppostbroken.m2", + }, + { + fileId = "198312", + value = "plaguelandslamp.m2", + text = "plaguelandslamp.m2", + }, + { + fileId = "198315", + value = "stormwindcanallamp01.m2", + text = "stormwindcanallamp01.m2", + }, + { + fileId = "198316", + value = "stormwindstreetlamp01.m2", + text = "stormwindstreetlamp01.m2", + }, + { + fileId = "198318", + value = "tirisfallstreetlamp01.m2", + text = "tirisfallstreetlamp01.m2", + }, + { + fileId = "198319", + value = "westernplaguelandslampost01.m2", + text = "westernplaguelandslampost01.m2", + }, + { + fileId = "198320", + value = "westernplaguelandslampost02.m2", + text = "westernplaguelandslampost02.m2", + }, + { + fileId = "198321", + value = "westernplaguelandslampostbroken01.m2", + text = "westernplaguelandslampostbroken01.m2", + }, + { + fileId = "198322", + value = "westernplaguelandslampostbroken02.m2", + text = "westernplaguelandslampostbroken02.m2", + }, + { + fileId = "198323", + value = "westernplaguelandslampoststraight.m2", + text = "westernplaguelandslampoststraight.m2", + }, + { + fileId = "198324", + value = "westernplaguelandslampoststraightoff.m2", + text = "westernplaguelandslampoststraightoff.m2", + }, + }, + value = "lamps", + text = "lamps", + }, + { + children = { + { + fileId = "198327", + value = "generallantern01.m2", + text = "generallantern01.m2", + }, + { + fileId = "198328", + value = "generallantern02.m2", + text = "generallantern02.m2", + }, + { + fileId = "198329", + value = "generallantern03.m2", + text = "generallantern03.m2", + }, + { + fileId = "198330", + value = "generallantern04.m2", + text = "generallantern04.m2", + }, + }, + value = "lanterns", + text = "lanterns", + }, + { + children = { + { + fileId = "198331", + value = "logmachine01.m2", + text = "logmachine01.m2", + }, + { + fileId = "198332", + value = "logmachine02.m2", + text = "logmachine02.m2", + }, + { + fileId = "198333", + value = "logmachine03.m2", + text = "logmachine03.m2", + }, + { + fileId = "198334", + value = "logmachine04.m2", + text = "logmachine04.m2", + }, + }, + value = "logmachines", + text = "logmachines", + }, + { + children = { + { + fileId = "198337", + value = "loomhumanblue.m2", + text = "loomhumanblue.m2", + }, + { + fileId = "198338", + value = "loomhumanwhite.m2", + text = "loomhumanwhite.m2", + }, + }, + value = "loom", + text = "loom", + }, + { + children = { + { + fileId = "198339", + value = "deadminelumberpilelarge.m2", + text = "deadminelumberpilelarge.m2", + }, + { + fileId = "198340", + value = "deadminelumberpilesmall.m2", + text = "deadminelumberpilesmall.m2", + }, + }, + value = "lumberpiles", + text = "lumberpiles", + }, + { + children = { + { + fileId = "198343", + value = "bloodymeat01.m2", + text = "bloodymeat01.m2", + }, + { + fileId = "198344", + value = "bloodymeat02.m2", + text = "bloodymeat02.m2", + }, + }, + value = "meat", + text = "meat", + }, + { + children = { + { + fileId = "198346", + value = "cavekoboldminemachine.m2", + text = "cavekoboldminemachine.m2", + }, + }, + value = "minemachine", + text = "minemachine", + }, + { + children = { + { + fileId = "198351", + value = "miningsifter01.m2", + text = "miningsifter01.m2", + }, + { + fileId = "198352", + value = "miningsifter02.m2", + text = "miningsifter02.m2", + }, + }, + value = "miningsifters", + text = "miningsifters", + }, + { + children = { + { + fileId = "198355", + value = "miningtroughlarge.m2", + text = "miningtroughlarge.m2", + }, + { + fileId = "198356", + value = "miningtroughsmall.m2", + text = "miningtroughsmall.m2", + }, + }, + value = "miningtroughs", + text = "miningtroughs", + }, + { + children = { + { + fileId = "198357", + value = "mop.m2", + text = "mop.m2", + }, + }, + value = "mops", + text = "mops", + }, + { + children = { + { + fileId = "198358", + value = "goldgoblet01.m2", + text = "goldgoblet01.m2", + }, + { + fileId = "198359", + value = "goldgobletfilled01.m2", + text = "goldgobletfilled01.m2", + }, + { + fileId = "198360", + value = "mug01.m2", + text = "mug01.m2", + }, + { + fileId = "198361", + value = "mug02.m2", + text = "mug02.m2", + }, + { + fileId = "198366", + value = "mugfoam01.m2", + text = "mugfoam01.m2", + }, + { + fileId = "198367", + value = "stein01.m2", + text = "stein01.m2", + }, + }, + value = "mugs", + text = "mugs", + }, + { + children = { + { + fileId = "198369", + value = "dragonskeletonhanging.m2", + text = "dragonskeletonhanging.m2", + }, + { + fileId = "198370", + value = "dragonskullhanging.m2", + text = "dragonskullhanging.m2", + }, + }, + value = "museumskeletons", + text = "museumskeletons", + }, + { + children = { + { + fileId = "198372", + value = "oildrum01.m2", + text = "oildrum01.m2", + }, + }, + value = "oildrums", + text = "oildrums", + }, + { + children = { + { + fileId = "198376", + value = "oilrigstack01.m2", + text = "oilrigstack01.m2", + }, + { + fileId = "198377", + value = "oilrigstack02.m2", + text = "oilrigstack02.m2", + }, + }, + value = "oilrigstacks", + text = "oilrigstacks", + }, + { + children = { + { + fileId = "198378", + value = "alliancehangingnefariantrophy.m2", + text = "alliancehangingnefariantrophy.m2", + }, + { + fileId = "198379", + value = "alliancehangingonyxiatrophy.m2", + text = "alliancehangingonyxiatrophy.m2", + }, + }, + value = "onxiatrophy", + text = "onxiatrophy", + }, + { + children = { + { + fileId = "198380", + value = "generaloutpost01.m2", + text = "generaloutpost01.m2", + }, + { + fileId = "198381", + value = "generaloutpost02.m2", + text = "generaloutpost02.m2", + }, + { + fileId = "198382", + value = "generaloutpost03.m2", + text = "generaloutpost03.m2", + }, + { + fileId = "198383", + value = "generaloutpost04.m2", + text = "generaloutpost04.m2", + }, + { + fileId = "198384", + value = "generaloutpost05.m2", + text = "generaloutpost05.m2", + }, + { + fileId = "198385", + value = "generaloutpost06.m2", + text = "generaloutpost06.m2", + }, + { + fileId = "198386", + value = "generaloutpost07.m2", + text = "generaloutpost07.m2", + }, + }, + value = "outposts", + text = "outposts", + }, + { + children = { + { + fileId = "198389", + value = "peasantlumber01.m2", + text = "peasantlumber01.m2", + }, + }, + value = "peasantlumber", + text = "peasantlumber", + }, + { + children = { + { + fileId = "198390", + value = "generalchurchpew01.m2", + text = "generalchurchpew01.m2", + }, + }, + value = "pews", + text = "pews", + }, + { + children = { + { + fileId = "198395", + value = "stormwindplanter.m2", + text = "stormwindplanter.m2", + }, + { + fileId = "198396", + value = "stormwindwindowplantera.m2", + text = "stormwindwindowplantera.m2", + }, + { + fileId = "198397", + value = "stormwindwindowplanterb.m2", + text = "stormwindwindowplanterb.m2", + }, + { + fileId = "198398", + value = "stormwindwindowplanterempty.m2", + text = "stormwindwindowplanterempty.m2", + }, + { + fileId = "198399", + value = "stormwindwindowplantergrass.m2", + text = "stormwindwindowplantergrass.m2", + }, + { + fileId = "198402", + value = "tirisfallplanter.m2", + text = "tirisfallplanter.m2", + }, + { + fileId = "198403", + value = "tirisfallwindowplantera.m2", + text = "tirisfallwindowplantera.m2", + }, + { + fileId = "198404", + value = "tirisfallwindowplanterb.m2", + text = "tirisfallwindowplanterb.m2", + }, + }, + value = "planterboxes", + text = "planterboxes", + }, + { + children = { + { + fileId = "198405", + value = "generaldirtyplate01.m2", + text = "generaldirtyplate01.m2", + }, + }, + value = "plates", + text = "plates", + }, + { + children = { + { + fileId = "198407", + value = "duskwoodpodium01.m2", + text = "duskwoodpodium01.m2", + }, + }, + value = "podiums", + text = "podiums", + }, + { + children = { + { + fileId = "198409", + value = "missingposter01.m2", + text = "missingposter01.m2", + }, + { + fileId = "198411", + value = "missingposter02.m2", + text = "missingposter02.m2", + }, + }, + value = "posters", + text = "posters", + }, + { + children = { + { + fileId = "198412", + value = "exteriorpulley.m2", + text = "exteriorpulley.m2", + }, + { + fileId = "198413", + value = "exteriorpulleyfore3.m2", + text = "exteriorpulleyfore3.m2", + }, + }, + value = "pulleys", + text = "pulleys", + }, + { + children = { + { + fileId = "198418", + value = "deadminegiantramrod.m2", + text = "deadminegiantramrod.m2", + }, + }, + value = "ramrod", + text = "ramrod", + }, + { + children = { + { + fileId = "198421", + value = "ropeladder01.m2", + text = "ropeladder01.m2", + }, + }, + value = "ropeladders", + text = "ropeladders", + }, + { + children = { + { + fileId = "198422", + value = "cavekoboldropecoil.m2", + text = "cavekoboldropecoil.m2", + }, + }, + value = "ropes", + text = "ropes", + }, + { + children = { + { + fileId = "198426", + value = "generalbearskinrug01.m2", + text = "generalbearskinrug01.m2", + }, + { + fileId = "198428", + value = "karazahnruggreen.m2", + text = "karazahnruggreen.m2", + }, + { + fileId = "198430", + value = "karazahnrugorange.m2", + text = "karazahnrugorange.m2", + }, + { + fileId = "198432", + value = "karazahnrugpurple.m2", + text = "karazahnrugpurple.m2", + }, + { + fileId = "198434", + value = "karazahnrugred.m2", + text = "karazahnrugred.m2", + }, + { + fileId = "198435", + value = "stormwindrug01.m2", + text = "stormwindrug01.m2", + }, + { + fileId = "198436", + value = "stormwindrug02.m2", + text = "stormwindrug02.m2", + }, + }, + value = "rugs", + text = "rugs", + }, + { + children = { + { + fileId = "198437", + value = "plaguedgrainsack01.m2", + text = "plaguedgrainsack01.m2", + }, + { + fileId = "198438", + value = "plaguedgrainsack02.m2", + text = "plaguedgrainsack02.m2", + }, + { + fileId = "198440", + value = "sackherbspeacebloom01.m2", + text = "sackherbspeacebloom01.m2", + }, + { + fileId = "198441", + value = "sackherbsstack01.m2", + text = "sackherbsstack01.m2", + }, + { + fileId = "198442", + value = "sackherbsstack02.m2", + text = "sackherbsstack02.m2", + }, + { + fileId = "198443", + value = "sackherbsstranglekelp01.m2", + text = "sackherbsstranglekelp01.m2", + }, + }, + value = "sacks", + text = "sacks", + }, + { + children = { + { + fileId = "198445", + value = "sarcophagus.m2", + text = "sarcophagus.m2", + }, + }, + value = "sarcophagi", + text = "sarcophagi", + }, + { + children = { + { + fileId = "198447", + value = "stormwindscaffold_01.m2", + text = "stormwindscaffold_01.m2", + }, + }, + value = "scaffold", + text = "scaffold", + }, + { + children = { + { + fileId = "198449", + value = "generalscribestation01.m2", + text = "generalscribestation01.m2", + }, + }, + value = "scribestations", + text = "scribestations", + }, + { + children = { + { + fileId = "198451", + value = "scrolla02.m2", + text = "scrolla02.m2", + }, + { + fileId = "198452", + value = "scrolla03.m2", + text = "scrolla03.m2", + }, + { + fileId = "198453", + value = "scrollb01.m2", + text = "scrollb01.m2", + }, + { + fileId = "198454", + value = "scrollb02.m2", + text = "scrollb02.m2", + }, + { + fileId = "198455", + value = "scrollb03.m2", + text = "scrollb03.m2", + }, + { + fileId = "198457", + value = "scrollmap.m2", + text = "scrollmap.m2", + }, + }, + value = "scrolls", + text = "scrolls", + }, + { + children = { + { + fileId = "198459", + value = "shack.m2", + text = "shack.m2", + }, + }, + value = "shack", + text = "shack", + }, + { + children = { + { + fileId = "198461", + value = "duskwoodshopcounter.m2", + text = "duskwoodshopcounter.m2", + }, + { + fileId = "198462", + value = "duskwoodshopcounter02.m2", + text = "duskwoodshopcounter02.m2", + }, + }, + value = "shopcounter", + text = "shopcounter", + }, + { + children = { + { + fileId = "198463", + value = "humansignpost01.m2", + text = "humansignpost01.m2", + }, + { + fileId = "198464", + value = "humansignpost02.m2", + text = "humansignpost02.m2", + }, + { + fileId = "198465", + value = "humansignpost03.m2", + text = "humansignpost03.m2", + }, + { + fileId = "198466", + value = "humansignpost04.m2", + text = "humansignpost04.m2", + }, + { + fileId = "198467", + value = "humansignpost05.m2", + text = "humansignpost05.m2", + }, + { + fileId = "198468", + value = "humansignpostpointer01.m2", + text = "humansignpostpointer01.m2", + }, + { + fileId = "198469", + value = "humansignpostpointer02.m2", + text = "humansignpostpointer02.m2", + }, + { + fileId = "198470", + value = "humansignpostpointer03.m2", + text = "humansignpostpointer03.m2", + }, + { + fileId = "198471", + value = "humansignpostpointer04.m2", + text = "humansignpostpointer04.m2", + }, + { + fileId = "198472", + value = "humansignpostpointer05.m2", + text = "humansignpostpointer05.m2", + }, + { + fileId = "198476", + value = "stonesignpointer01.m2", + text = "stonesignpointer01.m2", + }, + { + fileId = "198477", + value = "stonesignpost01.m2", + text = "stonesignpost01.m2", + }, + { + fileId = "198478", + value = "woodsignpointernice01.m2", + text = "woodsignpointernice01.m2", + }, + { + fileId = "198479", + value = "woodsignpointerworn01.m2", + text = "woodsignpointerworn01.m2", + }, + { + fileId = "198480", + value = "woodsignpostnice01.m2", + text = "woodsignpostnice01.m2", + }, + { + fileId = "198481", + value = "woodsignpostworn01.m2", + text = "woodsignpostworn01.m2", + }, + }, + value = "signposts", + text = "signposts", + }, + { + children = { + { + fileId = "198484", + value = "alchemistsshop01.m2", + text = "alchemistsshop01.m2", + }, + { + fileId = "198486", + value = "armorershop01.m2", + text = "armorershop01.m2", + }, + { + fileId = "198488", + value = "bakershop01.m2", + text = "bakershop01.m2", + }, + { + fileId = "198490", + value = "bank01.m2", + text = "bank01.m2", + }, + { + fileId = "198492", + value = "butchershopsign01.m2", + text = "butchershopsign01.m2", + }, + { + fileId = "198493", + value = "cavekobolddangersign.m2", + text = "cavekobolddangersign.m2", + }, + { + fileId = "198497", + value = "cheeseshop01.m2", + text = "cheeseshop01.m2", + }, + { + fileId = "198500", + value = "fletchershop01.m2", + text = "fletchershop01.m2", + }, + { + fileId = "198502", + value = "florist01.m2", + text = "florist01.m2", + }, + { + fileId = "198504", + value = "generalstore01.m2", + text = "generalstore01.m2", + }, + { + fileId = "198506", + value = "noblehouse01.m2", + text = "noblehouse01.m2", + }, + { + fileId = "198508", + value = "tailor01.m2", + text = "tailor01.m2", + }, + { + fileId = "198510", + value = "tavern01.m2", + text = "tavern01.m2", + }, + { + fileId = "198512", + value = "visitorscenter01.m2", + text = "visitorscenter01.m2", + }, + { + fileId = "198514", + value = "weaponsmithshop01.m2", + text = "weaponsmithshop01.m2", + }, + { + fileId = "198516", + value = "wineshopsign01.m2", + text = "wineshopsign01.m2", + }, + }, + value = "signs", + text = "signs", + }, + { + children = { + { + fileId = "198517", + value = "smokestack.m2", + text = "smokestack.m2", + }, + }, + value = "smokestack", + text = "smokestack", + }, + { + children = { + { + fileId = "198519", + value = "cavekoboldspidereggsground.m2", + text = "cavekoboldspidereggsground.m2", + }, + }, + value = "spidereggsground", + text = "spidereggsground", + }, + { + children = { + { + fileId = "198522", + value = "cavekoboldspidereggssack.m2", + text = "cavekoboldspidereggssack.m2", + }, + { + fileId = "198525", + value = "spidereggsack02.m2", + text = "spidereggsack02.m2", + }, + { + fileId = "198526", + value = "spidereggsack03.m2", + text = "spidereggsack03.m2", + }, + { + fileId = "198527", + value = "spidereggsack04.m2", + text = "spidereggsack04.m2", + }, + }, + value = "spidereggssack", + text = "spidereggssack", + }, + { + children = { + { + fileId = "198538", + value = "busthf01.m2", + text = "busthf01.m2", + }, + { + fileId = "198539", + value = "busthf02.m2", + text = "busthf02.m2", + }, + { + fileId = "198540", + value = "busthf04.m2", + text = "busthf04.m2", + }, + { + fileId = "198542", + value = "busthm01.m2", + text = "busthm01.m2", + }, + { + fileId = "198544", + value = "busthm02.m2", + text = "busthm02.m2", + }, + { + fileId = "198551", + value = "duskstatue01.m2", + text = "duskstatue01.m2", + }, + { + fileId = "198552", + value = "duskstatue02.m2", + text = "duskstatue02.m2", + }, + { + fileId = "198558", + value = "northshireabbeybust01.m2", + text = "northshireabbeybust01.m2", + }, + { + fileId = "198559", + value = "statuealleria.m2", + text = "statuealleria.m2", + }, + { + fileId = "198560", + value = "statuedanath.m2", + text = "statuedanath.m2", + }, + { + fileId = "198561", + value = "statuekhadgar.m2", + text = "statuekhadgar.m2", + }, + { + fileId = "198562", + value = "statuekurdran.m2", + text = "statuekurdran.m2", + }, + { + fileId = "198563", + value = "statuelion.m2", + text = "statuelion.m2", + }, + { + fileId = "198564", + value = "statueturalyon.m2", + text = "statueturalyon.m2", + }, + { + fileId = "198570", + value = "utherstatue.m2", + text = "utherstatue.m2", + }, + }, + value = "statues", + text = "statues", + }, + { + children = { + { + fileId = "198571", + value = "deadminesteam01.m2", + text = "deadminesteam01.m2", + }, + { + fileId = "198572", + value = "deadminesteam02.m2", + text = "deadminesteam02.m2", + }, + }, + value = "steam", + text = "steam", + }, + { + children = { + { + fileId = "198573", + value = "deadminesteamgauge01.m2", + text = "deadminesteamgauge01.m2", + }, + { + fileId = "198574", + value = "deadminesteamgauge02.m2", + text = "deadminesteamgauge02.m2", + }, + { + fileId = "198575", + value = "deadminesteamgauge03.m2", + text = "deadminesteamgauge03.m2", + }, + }, + value = "steamgauges", + text = "steamgauges", + }, + { + children = { + { + fileId = "198576", + value = "deadminesteamwhistle.m2", + text = "deadminesteamwhistle.m2", + }, + { + fileId = "198577", + value = "deadminesteamwhistleon.m2", + text = "deadminesteamwhistleon.m2", + }, + }, + value = "steamwhistles", + text = "steamwhistles", + }, + { + children = { + { + fileId = "198578", + value = "genericfencepost.m2", + text = "genericfencepost.m2", + }, + { + fileId = "198580", + value = "genericwroughtfence01.m2", + text = "genericwroughtfence01.m2", + }, + }, + value = "stonefence", + text = "stonefence", + }, + { + children = { + { + fileId = "198581", + value = "stonepyre01.m2", + text = "stonepyre01.m2", + }, + }, + value = "stonepyres", + text = "stonepyres", + }, + { + children = { + { + fileId = "198582", + value = "alliancemaptable.m2", + text = "alliancemaptable.m2", + }, + { + fileId = "198590", + value = "stormwinddoor.m2", + text = "stormwinddoor.m2", + }, + { + fileId = "198591", + value = "stormwindnightelftree.m2", + text = "stormwindnightelftree.m2", + }, + { + fileId = "198592", + value = "treefacade01.m2", + text = "treefacade01.m2", + }, + { + fileId = "198593", + value = "treefacade02.m2", + text = "treefacade02.m2", + }, + }, + value = "stormwind", + text = "stormwind", + }, + { + children = { + { + fileId = "198595", + value = "potbellystove.m2", + text = "potbellystove.m2", + }, + { + fileId = "198596", + value = "potbellystovepipe.m2", + text = "potbellystovepipe.m2", + }, + { + fileId = "198597", + value = "potbellystovewall.m2", + text = "potbellystovewall.m2", + }, + }, + value = "stoves", + text = "stoves", + }, + { + children = { + { + fileId = "198598", + value = "bloodytable1.m2", + text = "bloodytable1.m2", + }, + { + fileId = "198599", + value = "bloodytable2.m2", + text = "bloodytable2.m2", + }, + { + fileId = "198600", + value = "bloodytable3.m2", + text = "bloodytable3.m2", + }, + { + fileId = "198602", + value = "duskwoodtable01.m2", + text = "duskwoodtable01.m2", + }, + { + fileId = "198603", + value = "inntable.m2", + text = "inntable.m2", + }, + { + fileId = "198604", + value = "inntablesmall.m2", + text = "inntablesmall.m2", + }, + { + fileId = "198605", + value = "inntabletiny.m2", + text = "inntabletiny.m2", + }, + { + fileId = "198608", + value = "shadowfangtable01.m2", + text = "shadowfangtable01.m2", + }, + { + fileId = "198609", + value = "shadowfangtable02.m2", + text = "shadowfangtable02.m2", + }, + }, + value = "tables", + text = "tables", + }, + { + children = { + { + fileId = "198611", + value = "generalironmaiden01.m2", + text = "generalironmaiden01.m2", + }, + { + fileId = "198612", + value = "generalrack01.m2", + text = "generalrack01.m2", + }, + { + fileId = "198613", + value = "generalstocks01.m2", + text = "generalstocks01.m2", + }, + }, + value = "torturedevices", + text = "torturedevices", + }, + { + children = { + { + fileId = "198616", + value = "deadminevalve.m2", + text = "deadminevalve.m2", + }, + }, + value = "valves", + text = "valves", + }, + { + children = { + { + fileId = "198617", + value = "deadminevalvesteam01.m2", + text = "deadminevalvesteam01.m2", + }, + { + fileId = "198618", + value = "deadminevalvesteam02.m2", + text = "deadminevalvesteam02.m2", + }, + }, + value = "valvesteam", + text = "valvesteam", + }, + { + children = { + { + fileId = "198619", + value = "deadminevalvewaterdrip.m2", + text = "deadminevalvewaterdrip.m2", + }, + }, + value = "valvewaterdrip", + text = "valvewaterdrip", + }, + { + children = { + { + fileId = "198620", + value = "stormwindvendorawning01.m2", + text = "stormwindvendorawning01.m2", + }, + }, + value = "vendorawnings", + text = "vendorawnings", + }, + { + children = { + { + fileId = "198621", + value = "stormwindvendortent01.m2", + text = "stormwindvendortent01.m2", + }, + }, + value = "vendortents", + text = "vendortents", + }, + { + children = { + { + fileId = "198626", + value = "smallvials.m2", + text = "smallvials.m2", + }, + { + fileId = "198630", + value = "vialsbottles.m2", + text = "vialsbottles.m2", + }, + }, + value = "vials", + text = "vials", + }, + { + children = { + { + fileId = "198632", + value = "greatwall_portcullis.m2", + text = "greatwall_portcullis.m2", + }, + }, + value = "walls", + text = "walls", + }, + { + children = { + { + fileId = "198633", + value = "duskwoodwardrobe01.m2", + text = "duskwoodwardrobe01.m2", + }, + { + fileId = "198634", + value = "duskwoodwardrobe02.m2", + text = "duskwoodwardrobe02.m2", + }, + }, + value = "wardrobe", + text = "wardrobe", + }, + { + children = { + { + fileId = "198635", + value = "deadminewaterdrops.m2", + text = "deadminewaterdrops.m2", + }, + }, + value = "waterdrops", + text = "waterdrops", + }, + { + children = { + { + fileId = "198636", + value = "generalweaponrack01.m2", + text = "generalweaponrack01.m2", + }, + }, + value = "weaponracks", + text = "weaponracks", + }, + { + children = { + { + fileId = "198637", + value = "2sidedpickaxe.m2", + text = "2sidedpickaxe.m2", + }, + { + fileId = "198639", + value = "crimsonwallshield01.m2", + text = "crimsonwallshield01.m2", + }, + { + fileId = "198642", + value = "humanarrow.m2", + text = "humanarrow.m2", + }, + { + fileId = "198643", + value = "humanarrows.m2", + text = "humanarrows.m2", + }, + { + fileId = "198644", + value = "humanaxe01.m2", + text = "humanaxe01.m2", + }, + { + fileId = "198645", + value = "humanaxe02.m2", + text = "humanaxe02.m2", + }, + { + fileId = "198646", + value = "humanbow01.m2", + text = "humanbow01.m2", + }, + { + fileId = "198647", + value = "humanbow02.m2", + text = "humanbow02.m2", + }, + { + fileId = "198648", + value = "humanhammer01.m2", + text = "humanhammer01.m2", + }, + { + fileId = "198649", + value = "humanhammer02.m2", + text = "humanhammer02.m2", + }, + { + fileId = "198650", + value = "humanmace01.m2", + text = "humanmace01.m2", + }, + { + fileId = "198651", + value = "humanmace02.m2", + text = "humanmace02.m2", + }, + { + fileId = "198652", + value = "humanspear01.m2", + text = "humanspear01.m2", + }, + { + fileId = "198653", + value = "humanspear02.m2", + text = "humanspear02.m2", + }, + { + fileId = "198654", + value = "humanstaff01.m2", + text = "humanstaff01.m2", + }, + { + fileId = "198655", + value = "humanstaff02.m2", + text = "humanstaff02.m2", + }, + { + fileId = "198656", + value = "humansword01.m2", + text = "humansword01.m2", + }, + { + fileId = "198657", + value = "humansword02.m2", + text = "humansword02.m2", + }, + { + fileId = "198658", + value = "orcarrow.m2", + text = "orcarrow.m2", + }, + { + fileId = "198660", + value = "wallshield03.m2", + text = "wallshield03.m2", + }, + { + fileId = "198662", + value = "wallsword01.m2", + text = "wallsword01.m2", + }, + }, + value = "weapons&armor", + text = "weapons&armor", + }, + { + fileId = "198664", + value = "westfallgrainsilodestroyed01.m2", + text = "westfallgrainsilodestroyed01.m2", + }, + { + children = { + { + fileId = "198665", + value = "generalwoodendummy02.m2", + text = "generalwoodendummy02.m2", + }, + { + fileId = "198666", + value = "stormwindwoodendummy01.m2", + text = "stormwindwoodendummy01.m2", + }, + }, + value = "woodendummies", + text = "woodendummies", + }, + { + children = { + { + fileId = "198668", + value = "rail_wooden01.m2", + text = "rail_wooden01.m2", + }, + { + fileId = "198669", + value = "rail_wooden02.m2", + text = "rail_wooden02.m2", + }, + }, + value = "woodenrails", + text = "woodenrails", + }, + { + children = { + { + fileId = "198670", + value = "woodenstairs01.m2", + text = "woodenstairs01.m2", + }, + { + fileId = "198671", + value = "woodenstairs02.m2", + text = "woodenstairs02.m2", + }, + }, + value = "woodenstairs", + text = "woodenstairs", + }, + { + children = { + { + fileId = "198672", + value = "wreckedbuildinghbase01.m2", + text = "wreckedbuildinghbase01.m2", + }, + { + fileId = "198673", + value = "wreckedbuildinghbase02.m2", + text = "wreckedbuildinghbase02.m2", + }, + { + fileId = "198674", + value = "wreckedbuildinghbase03.m2", + text = "wreckedbuildinghbase03.m2", + }, + { + fileId = "198675", + value = "wreckedbuildinghredbrick01.m2", + text = "wreckedbuildinghredbrick01.m2", + }, + { + fileId = "198676", + value = "wreckedbuildinghwall01.m2", + text = "wreckedbuildinghwall01.m2", + }, + { + fileId = "198677", + value = "wreckedbuildinghwall02.m2", + text = "wreckedbuildinghwall02.m2", + }, + }, + value = "wreckedbuildings", + text = "wreckedbuildings", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + { + children = { + { + children = { + { + fileId = "198678", + value = "prisoncell01.m2", + text = "prisoncell01.m2", + }, + }, + value = "prisoncell", + text = "prisoncell", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "human", + text = "human", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "198708", + value = "makurashells01.m2", + text = "makurashells01.m2", + }, + { + fileId = "198709", + value = "makurashells02.m2", + text = "makurashells02.m2", + }, + { + fileId = "198710", + value = "makurashells03.m2", + text = "makurashells03.m2", + }, + { + fileId = "198711", + value = "makurashells04.m2", + text = "makurashells04.m2", + }, + { + fileId = "198712", + value = "makurashells05.m2", + text = "makurashells05.m2", + }, + { + fileId = "198713", + value = "makurashells06.m2", + text = "makurashells06.m2", + }, + { + fileId = "198714", + value = "makurashells07.m2", + text = "makurashells07.m2", + }, + { + fileId = "198715", + value = "makurashells08.m2", + text = "makurashells08.m2", + }, + }, + value = "makurashells", + text = "makurashells", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "makura", + text = "makura", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "198717", + value = "murlocaltar_01.m2", + text = "murlocaltar_01.m2", + }, + }, + value = "altars", + text = "altars", + }, + { + children = { + { + fileId = "198719", + value = "greatpearl_01.m2", + text = "greatpearl_01.m2", + }, + }, + value = "pearl", + text = "pearl", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "murloc", + text = "murloc", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "198720", + value = "bfd_brassdoors.m2", + text = "bfd_brassdoors.m2", + }, + }, + value = "doors", + text = "doors", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "198725", + value = "nightelfowlbanner01.m2", + text = "nightelfowlbanner01.m2", + }, + { + fileId = "198726", + value = "nightelfowlbanner02.m2", + text = "nightelfowlbanner02.m2", + }, + { + fileId = "198727", + value = "nightelfowlbanner03.m2", + text = "nightelfowlbanner03.m2", + }, + { + fileId = "198729", + value = "nightelftreebanner01.m2", + text = "nightelftreebanner01.m2", + }, + { + fileId = "198731", + value = "nightelftreebanner02.m2", + text = "nightelftreebanner02.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "198733", + value = "elfbarrel01.m2", + text = "elfbarrel01.m2", + }, + }, + value = "barrel", + text = "barrel", + }, + { + children = { + { + fileId = "198734", + value = "elfbed01.m2", + text = "elfbed01.m2", + }, + { + fileId = "198735", + value = "elfbed02.m2", + text = "elfbed02.m2", + }, + { + fileId = "198736", + value = "elfbed03.m2", + text = "elfbed03.m2", + }, + }, + value = "beds", + text = "beds", + }, + { + children = { + { + fileId = "198741", + value = "nightelfbowl.m2", + text = "nightelfbowl.m2", + }, + }, + value = "bowls", + text = "bowls", + }, + { + children = { + { + fileId = "198743", + value = "ne_candle01.m2", + text = "ne_candle01.m2", + }, + { + fileId = "198744", + value = "ne_floatingcandles.m2", + text = "ne_floatingcandles.m2", + }, + }, + value = "candles", + text = "candles", + }, + { + children = { + { + fileId = "198748", + value = "elfcrate01.m2", + text = "elfcrate01.m2", + }, + }, + value = "crates", + text = "crates", + }, + { + children = { + { + fileId = "198749", + value = "ne_dresser01.m2", + text = "ne_dresser01.m2", + }, + }, + value = "dressers", + text = "dressers", + }, + { + children = { + { + fileId = "198752", + value = "wailingdruidbed.m2", + text = "wailingdruidbed.m2", + }, + }, + value = "druidbeds", + text = "druidbeds", + }, + { + children = { + { + fileId = "198754", + value = "elvenfountain.m2", + text = "elvenfountain.m2", + }, + }, + value = "fountains", + text = "fountains", + }, + { + children = { + { + fileId = "198755", + value = "elvenstonestool01.m2", + text = "elvenstonestool01.m2", + }, + { + fileId = "198756", + value = "elvenstonetable01.m2", + text = "elvenstonetable01.m2", + }, + { + fileId = "198757", + value = "stonebench01.m2", + text = "stonebench01.m2", + }, + }, + value = "furniture", + text = "furniture", + }, + { + children = { + { + fileId = "198758", + value = "gardenbench01.m2", + text = "gardenbench01.m2", + }, + { + fileId = "198759", + value = "gardenbench02.m2", + text = "gardenbench02.m2", + }, + { + fileId = "198760", + value = "gardenbench03.m2", + text = "gardenbench03.m2", + }, + }, + value = "gardenbenches", + text = "gardenbenches", + }, + { + children = { + { + fileId = "198761", + value = "kalidarmoongate.m2", + text = "kalidarmoongate.m2", + }, + }, + value = "gates", + text = "gates", + }, + { + children = { + { + fileId = "198762", + value = "kalidargazibo.m2", + text = "kalidargazibo.m2", + }, + }, + value = "gazibos", + text = "gazibos", + }, + { + children = { + { + fileId = "198764", + value = "nightelfglaivethrower_doodad01.m2", + text = "nightelfglaivethrower_doodad01.m2", + }, + { + fileId = "198765", + value = "nightelfglaivethrowerblade_doodad01.m2", + text = "nightelfglaivethrowerblade_doodad01.m2", + }, + }, + value = "glaivethrower", + text = "glaivethrower", + }, + { + children = { + { + fileId = "198768", + value = "hippogryphroost.m2", + text = "hippogryphroost.m2", + }, + }, + value = "hippogryphroost", + text = "hippogryphroost", + }, + { + children = { + { + fileId = "198770", + value = "darnassusstreetlamp01.m2", + text = "darnassusstreetlamp01.m2", + }, + { + fileId = "198771", + value = "darnassusstreetlamp02.m2", + text = "darnassusstreetlamp02.m2", + }, + { + fileId = "198772", + value = "darnassuswreckedstreetlamp01.m2", + text = "darnassuswreckedstreetlamp01.m2", + }, + { + fileId = "198773", + value = "darnassuswreckedstreetlamp02.m2", + text = "darnassuswreckedstreetlamp02.m2", + }, + { + fileId = "198776", + value = "kalidarstreetlamp01.m2", + text = "kalidarstreetlamp01.m2", + }, + { + fileId = "198777", + value = "kalidarstreetlamp02.m2", + text = "kalidarstreetlamp02.m2", + }, + }, + value = "lamps", + text = "lamps", + }, + { + children = { + { + fileId = "198779", + value = "nightelfhanginglantern.m2", + text = "nightelfhanginglantern.m2", + }, + { + fileId = "198780", + value = "nightelflantern01.m2", + text = "nightelflantern01.m2", + }, + { + fileId = "198781", + value = "nightelflantern02.m2", + text = "nightelflantern02.m2", + }, + }, + value = "lanterns", + text = "lanterns", + }, + { + children = { + { + fileId = "198785", + value = "nemagicimplement01.m2", + text = "nemagicimplement01.m2", + }, + { + fileId = "198786", + value = "nemagicimplement02.m2", + text = "nemagicimplement02.m2", + }, + { + fileId = "198787", + value = "nemagicimplement03.m2", + text = "nemagicimplement03.m2", + }, + { + fileId = "198788", + value = "nemagicimplement04.m2", + text = "nemagicimplement04.m2", + }, + { + fileId = "198789", + value = "nemagicimplement05.m2", + text = "nemagicimplement05.m2", + }, + { + fileId = "198790", + value = "nemagicimplement06.m2", + text = "nemagicimplement06.m2", + }, + { + fileId = "198791", + value = "nemagicimplement07.m2", + text = "nemagicimplement07.m2", + }, + { + fileId = "198792", + value = "nemagicimplement08.m2", + text = "nemagicimplement08.m2", + }, + { + fileId = "198793", + value = "nemagicimplement09.m2", + text = "nemagicimplement09.m2", + }, + { + fileId = "198794", + value = "nemagicimplement10.m2", + text = "nemagicimplement10.m2", + }, + }, + value = "magicalimplements", + text = "magicalimplements", + }, + { + children = { + { + fileId = "198798", + value = "moonwelllight.m2", + text = "moonwelllight.m2", + }, + }, + value = "moonwelllight", + text = "moonwelllight", + }, + { + children = { + { + fileId = "198801", + value = "elvenpottery01.m2", + text = "elvenpottery01.m2", + }, + { + fileId = "198802", + value = "elvenpottery02.m2", + text = "elvenpottery02.m2", + }, + { + fileId = "198803", + value = "elvenpottery03.m2", + text = "elvenpottery03.m2", + }, + { + fileId = "198804", + value = "elvenpottery04.m2", + text = "elvenpottery04.m2", + }, + }, + value = "pottery", + text = "pottery", + }, + { + children = { + { + fileId = "198805", + value = "aszharapvp_walls_01.m2", + text = "aszharapvp_walls_01.m2", + }, + { + fileId = "198806", + value = "aszharapvp_walls_02.m2", + text = "aszharapvp_walls_02.m2", + }, + { + fileId = "198807", + value = "aszharapvp_walls_03.m2", + text = "aszharapvp_walls_03.m2", + }, + }, + value = "pvpwalls", + text = "pvpwalls", + }, + { + children = { + { + fileId = "198808", + value = "azrelfruin01.m2", + text = "azrelfruin01.m2", + }, + { + fileId = "198809", + value = "azrelfruin02.m2", + text = "azrelfruin02.m2", + }, + { + fileId = "198810", + value = "azrelfruin03.m2", + text = "azrelfruin03.m2", + }, + { + fileId = "198811", + value = "azrelfruin04.m2", + text = "azrelfruin04.m2", + }, + { + fileId = "198812", + value = "azrelfruin05.m2", + text = "azrelfruin05.m2", + }, + { + fileId = "198813", + value = "azrelfruin06.m2", + text = "azrelfruin06.m2", + }, + { + fileId = "198814", + value = "azrelfruin07.m2", + text = "azrelfruin07.m2", + }, + { + fileId = "198815", + value = "azrelfruin08.m2", + text = "azrelfruin08.m2", + }, + { + fileId = "198816", + value = "azrelfruin09.m2", + text = "azrelfruin09.m2", + }, + { + fileId = "198817", + value = "azrelfruin10.m2", + text = "azrelfruin10.m2", + }, + { + fileId = "198824", + value = "newelfruin01.m2", + text = "newelfruin01.m2", + }, + { + fileId = "198825", + value = "newelfruin02.m2", + text = "newelfruin02.m2", + }, + { + fileId = "198826", + value = "newelfruin03.m2", + text = "newelfruin03.m2", + }, + { + fileId = "198827", + value = "newelfruin04.m2", + text = "newelfruin04.m2", + }, + { + fileId = "198828", + value = "newelfruin05.m2", + text = "newelfruin05.m2", + }, + { + fileId = "198829", + value = "newelfruin06.m2", + text = "newelfruin06.m2", + }, + { + fileId = "198830", + value = "newelfruin07.m2", + text = "newelfruin07.m2", + }, + { + fileId = "198831", + value = "newelfruin08.m2", + text = "newelfruin08.m2", + }, + { + fileId = "198832", + value = "newelfruin09.m2", + text = "newelfruin09.m2", + }, + { + fileId = "198833", + value = "newelfruin10.m2", + text = "newelfruin10.m2", + }, + { + fileId = "198834", + value = "nightelfruins01.m2", + text = "nightelfruins01.m2", + }, + { + fileId = "198835", + value = "nightelfruins02.m2", + text = "nightelfruins02.m2", + }, + { + fileId = "198836", + value = "nightelfruins03.m2", + text = "nightelfruins03.m2", + }, + { + fileId = "198837", + value = "nightelfruins04.m2", + text = "nightelfruins04.m2", + }, + { + fileId = "198838", + value = "nightelfruins05.m2", + text = "nightelfruins05.m2", + }, + { + fileId = "198839", + value = "nightelfruins07.m2", + text = "nightelfruins07.m2", + }, + }, + value = "ruins", + text = "ruins", + }, + { + children = { + { + fileId = "198842", + value = "ne_screen01.m2", + text = "ne_screen01.m2", + }, + }, + value = "screens", + text = "screens", + }, + { + children = { + { + fileId = "198845", + value = "nightelfsignpost01.m2", + text = "nightelfsignpost01.m2", + }, + { + fileId = "198846", + value = "nightelfsignpost02.m2", + text = "nightelfsignpost02.m2", + }, + { + fileId = "198847", + value = "nightelfsignpostpointer01.m2", + text = "nightelfsignpostpointer01.m2", + }, + { + fileId = "198848", + value = "nightelfsignpostpointer02.m2", + text = "nightelfsignpostpointer02.m2", + }, + }, + value = "signposts", + text = "signposts", + }, + { + children = { + { + fileId = "198888", + value = "nightelfshopsignbase01.m2", + text = "nightelfshopsignbase01.m2", + }, + { + fileId = "198889", + value = "nightelfsign_alchemist.m2", + text = "nightelfsign_alchemist.m2", + }, + { + fileId = "198890", + value = "nightelfsign_armory.m2", + text = "nightelfsign_armory.m2", + }, + { + fileId = "198891", + value = "nightelfsign_axes.m2", + text = "nightelfsign_axes.m2", + }, + { + fileId = "198892", + value = "nightelfsign_bags.m2", + text = "nightelfsign_bags.m2", + }, + { + fileId = "198893", + value = "nightelfsign_baker.m2", + text = "nightelfsign_baker.m2", + }, + { + fileId = "198894", + value = "nightelfsign_bank.m2", + text = "nightelfsign_bank.m2", + }, + { + fileId = "198895", + value = "nightelfsign_blacksmith.m2", + text = "nightelfsign_blacksmith.m2", + }, + { + fileId = "198896", + value = "nightelfsign_bows.m2", + text = "nightelfsign_bows.m2", + }, + { + fileId = "198897", + value = "nightelfsign_breadshop.m2", + text = "nightelfsign_breadshop.m2", + }, + { + fileId = "198898", + value = "nightelfsign_cartography.m2", + text = "nightelfsign_cartography.m2", + }, + { + fileId = "198899", + value = "nightelfsign_clotharmor.m2", + text = "nightelfsign_clotharmor.m2", + }, + { + fileId = "198900", + value = "nightelfsign_cooking.m2", + text = "nightelfsign_cooking.m2", + }, + { + fileId = "198901", + value = "nightelfsign_daggers.m2", + text = "nightelfsign_daggers.m2", + }, + { + fileId = "198902", + value = "nightelfsign_drinks.m2", + text = "nightelfsign_drinks.m2", + }, + { + fileId = "198903", + value = "nightelfsign_enchanting.m2", + text = "nightelfsign_enchanting.m2", + }, + { + fileId = "198904", + value = "nightelfsign_engineering.m2", + text = "nightelfsign_engineering.m2", + }, + { + fileId = "198905", + value = "nightelfsign_firstaid.m2", + text = "nightelfsign_firstaid.m2", + }, + { + fileId = "198906", + value = "nightelfsign_fishing.m2", + text = "nightelfsign_fishing.m2", + }, + { + fileId = "198907", + value = "nightelfsign_fletcher.m2", + text = "nightelfsign_fletcher.m2", + }, + { + fileId = "198908", + value = "nightelfsign_florist.m2", + text = "nightelfsign_florist.m2", + }, + { + fileId = "198909", + value = "nightelfsign_general.m2", + text = "nightelfsign_general.m2", + }, + { + fileId = "198910", + value = "nightelfsign_herbalist.m2", + text = "nightelfsign_herbalist.m2", + }, + { + fileId = "198911", + value = "nightelfsign_hippogryph.m2", + text = "nightelfsign_hippogryph.m2", + }, + { + fileId = "198912", + value = "nightelfsign_inscribing.m2", + text = "nightelfsign_inscribing.m2", + }, + { + fileId = "198913", + value = "nightelfsign_leatherarmor.m2", + text = "nightelfsign_leatherarmor.m2", + }, + { + fileId = "198914", + value = "nightelfsign_lockpicking.m2", + text = "nightelfsign_lockpicking.m2", + }, + { + fileId = "198915", + value = "nightelfsign_maces.m2", + text = "nightelfsign_maces.m2", + }, + { + fileId = "198916", + value = "nightelfsign_magicshop.m2", + text = "nightelfsign_magicshop.m2", + }, + { + fileId = "198917", + value = "nightelfsign_mailarmor.m2", + text = "nightelfsign_mailarmor.m2", + }, + { + fileId = "198918", + value = "nightelfsign_meatshop.m2", + text = "nightelfsign_meatshop.m2", + }, + { + fileId = "198919", + value = "nightelfsign_mining.m2", + text = "nightelfsign_mining.m2", + }, + { + fileId = "198920", + value = "nightelfsign_noblehouse.m2", + text = "nightelfsign_noblehouse.m2", + }, + { + fileId = "198921", + value = "nightelfsign_poisons.m2", + text = "nightelfsign_poisons.m2", + }, + { + fileId = "198922", + value = "nightelfsign_shields.m2", + text = "nightelfsign_shields.m2", + }, + { + fileId = "198923", + value = "nightelfsign_staves.m2", + text = "nightelfsign_staves.m2", + }, + { + fileId = "198924", + value = "nightelfsign_swords.m2", + text = "nightelfsign_swords.m2", + }, + { + fileId = "198925", + value = "nightelfsign_tabard.m2", + text = "nightelfsign_tabard.m2", + }, + { + fileId = "198926", + value = "nightelfsign_tailor.m2", + text = "nightelfsign_tailor.m2", + }, + { + fileId = "198927", + value = "nightelfsign_tavern.m2", + text = "nightelfsign_tavern.m2", + }, + { + fileId = "198928", + value = "nightelfsign_weaponsmith.m2", + text = "nightelfsign_weaponsmith.m2", + }, + { + fileId = "198929", + value = "nightelfsign_welcome.m2", + text = "nightelfsign_welcome.m2", + }, + { + fileId = "198930", + value = "nightelfsign_wine.m2", + text = "nightelfsign_wine.m2", + }, + }, + value = "signs", + text = "signs", + }, + { + children = { + { + fileId = "198931", + value = "kalidarwoodstatue02.m2", + text = "kalidarwoodstatue02.m2", + }, + }, + value = "statue", + text = "statue", + }, + { + children = { + { + fileId = "2198619", + value = "druidstone.m2", + text = "druidstone.m2", + }, + { + fileId = "198936", + value = "kalidarwoodstatue01.m2", + text = "kalidarwoodstatue01.m2", + }, + { + fileId = "198942", + value = "statueaszharaarm.m2", + text = "statueaszharaarm.m2", + }, + { + fileId = "198943", + value = "statueaszharafeet.m2", + text = "statueaszharafeet.m2", + }, + { + fileId = "198944", + value = "statueaszharahead.m2", + text = "statueaszharahead.m2", + }, + { + fileId = "198945", + value = "statuenepriestess.m2", + text = "statuenepriestess.m2", + }, + { + fileId = "198946", + value = "woodwreckedstatue02.m2", + text = "woodwreckedstatue02.m2", + }, + }, + value = "statues", + text = "statues", + }, + { + children = { + { + fileId = "198947", + value = "steppingstone01.m2", + text = "steppingstone01.m2", + }, + { + fileId = "198948", + value = "steppingstone02.m2", + text = "steppingstone02.m2", + }, + }, + value = "steppingstones", + text = "steppingstones", + }, + { + children = { + { + fileId = "198949", + value = "kalidarstonerune01.m2", + text = "kalidarstonerune01.m2", + }, + { + fileId = "198950", + value = "kalidarstonerune02.m2", + text = "kalidarstonerune02.m2", + }, + { + fileId = "198951", + value = "kalidarstonerune03.m2", + text = "kalidarstonerune03.m2", + }, + }, + value = "stonerunes", + text = "stonerunes", + }, + { + children = { + { + fileId = "198952", + value = "elvenwoodentable01.m2", + text = "elvenwoodentable01.m2", + }, + }, + value = "tables", + text = "tables", + }, + { + children = { + { + fileId = "198955", + value = "taxiflagnightelf.m2", + text = "taxiflagnightelf.m2", + }, + }, + value = "taxiflags", + text = "taxiflags", + }, + { + children = { + { + fileId = "198959", + value = "teleporttree.m2", + text = "teleporttree.m2", + }, + }, + value = "teleporttree", + text = "teleporttree", + }, + { + children = { + { + fileId = "198960", + value = "nightelfwarningtotem_01.m2", + text = "nightelfwarningtotem_01.m2", + }, + { + fileId = "198961", + value = "nightelfwarningtotem_02.m2", + text = "nightelfwarningtotem_02.m2", + }, + { + fileId = "198962", + value = "nightelfwarningtotem_03.m2", + text = "nightelfwarningtotem_03.m2", + }, + }, + value = "totems", + text = "totems", + }, + { + children = { + { + fileId = "198965", + value = "nightelfcart.m2", + text = "nightelfcart.m2", + }, + { + fileId = "198969", + value = "nightelfwagon.m2", + text = "nightelfwagon.m2", + }, + }, + value = "wagons", + text = "wagons", + }, + { + children = { + { + fileId = "198972", + value = "elfwallhanging01.m2", + text = "elfwallhanging01.m2", + }, + { + fileId = "198973", + value = "elfwallhanging02.m2", + text = "elfwallhanging02.m2", + }, + { + fileId = "198974", + value = "elfwallhanging03.m2", + text = "elfwallhanging03.m2", + }, + { + fileId = "198975", + value = "elfwallhanging04.m2", + text = "elfwallhanging04.m2", + }, + { + fileId = "198976", + value = "elfwallhanging05.m2", + text = "elfwallhanging05.m2", + }, + { + fileId = "198977", + value = "elfwallhanging06.m2", + text = "elfwallhanging06.m2", + }, + { + fileId = "198978", + value = "elfwallhanging07.m2", + text = "elfwallhanging07.m2", + }, + { + fileId = "198979", + value = "elfwallhanging08.m2", + text = "elfwallhanging08.m2", + }, + { + fileId = "198980", + value = "elfwallhanging09.m2", + text = "elfwallhanging09.m2", + }, + { + fileId = "198981", + value = "elfwallhanging10.m2", + text = "elfwallhanging10.m2", + }, + { + fileId = "198982", + value = "elfwallhanging11.m2", + text = "elfwallhanging11.m2", + }, + { + fileId = "198983", + value = "elfwallhanging12.m2", + text = "elfwallhanging12.m2", + }, + }, + value = "wallhangings", + text = "wallhangings", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "nightelf", + text = "nightelf", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "198984", + value = "glowingogrehead.m2", + text = "glowingogrehead.m2", + }, + { + fileId = "198986", + value = "pikeforked.m2", + text = "pikeforked.m2", + }, + }, + value = "ogrehead", + text = "ogrehead", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "198987", + value = "gruul_facade_01.m2", + text = "gruul_facade_01.m2", + }, + }, + value = "gronnfacade", + text = "gronnfacade", + }, + { + children = { + { + fileId = "198988", + value = "portcullis_gronn.m2", + text = "portcullis_gronn.m2", + }, + }, + value = "gronngates", + text = "gronngates", + }, + { + children = { + { + fileId = "198989", + value = "ogrebackpack01.m2", + text = "ogrebackpack01.m2", + }, + { + fileId = "198990", + value = "ogrebackpack02.m2", + text = "ogrebackpack02.m2", + }, + }, + value = "ogrebackpacks", + text = "ogrebackpacks", + }, + { + children = { + { + fileId = "198992", + value = "ogremeatchain01.m2", + text = "ogremeatchain01.m2", + }, + { + fileId = "198994", + value = "ogremeatchain02.m2", + text = "ogremeatchain02.m2", + }, + { + fileId = "198995", + value = "ogremeatchain03.m2", + text = "ogremeatchain03.m2", + }, + { + fileId = "198996", + value = "ogremeatchain04.m2", + text = "ogremeatchain04.m2", + }, + }, + value = "ogremeatchains", + text = "ogremeatchains", + }, + { + children = { + { + fileId = "198998", + value = "brogremoundrock01.m2", + text = "brogremoundrock01.m2", + }, + { + fileId = "198999", + value = "brogremoundrock02.m2", + text = "brogremoundrock02.m2", + }, + { + fileId = "199000", + value = "brogremoundrock03.m2", + text = "brogremoundrock03.m2", + }, + { + fileId = "199001", + value = "brogremoundrock04.m2", + text = "brogremoundrock04.m2", + }, + { + fileId = "199002", + value = "brogremoundrock05.m2", + text = "brogremoundrock05.m2", + }, + { + fileId = "199003", + value = "brogremoundrock06.m2", + text = "brogremoundrock06.m2", + }, + { + fileId = "199004", + value = "grogremoundrock01.m2", + text = "grogremoundrock01.m2", + }, + { + fileId = "199005", + value = "grogremoundrock02.m2", + text = "grogremoundrock02.m2", + }, + { + fileId = "199006", + value = "grogremoundrock03.m2", + text = "grogremoundrock03.m2", + }, + { + fileId = "199007", + value = "grogremoundrock04.m2", + text = "grogremoundrock04.m2", + }, + { + fileId = "199008", + value = "grogremoundrock05.m2", + text = "grogremoundrock05.m2", + }, + { + fileId = "199009", + value = "grogremoundrock06.m2", + text = "grogremoundrock06.m2", + }, + { + fileId = "199010", + value = "ogremoundrock01.m2", + text = "ogremoundrock01.m2", + }, + { + fileId = "199011", + value = "ogremoundrock02.m2", + text = "ogremoundrock02.m2", + }, + { + fileId = "199012", + value = "ogremoundrock03.m2", + text = "ogremoundrock03.m2", + }, + { + fileId = "199013", + value = "ogremoundrock04.m2", + text = "ogremoundrock04.m2", + }, + { + fileId = "199014", + value = "ogremoundrock05.m2", + text = "ogremoundrock05.m2", + }, + { + fileId = "199015", + value = "ogremoundrock06.m2", + text = "ogremoundrock06.m2", + }, + { + fileId = "199016", + value = "snogremoundrock01.m2", + text = "snogremoundrock01.m2", + }, + { + fileId = "199017", + value = "snogremoundrock02.m2", + text = "snogremoundrock02.m2", + }, + { + fileId = "199018", + value = "snogremoundrock03.m2", + text = "snogremoundrock03.m2", + }, + { + fileId = "199019", + value = "snogremoundrock04.m2", + text = "snogremoundrock04.m2", + }, + { + fileId = "199020", + value = "snogremoundrock05.m2", + text = "snogremoundrock05.m2", + }, + { + fileId = "199021", + value = "snogremoundrock06.m2", + text = "snogremoundrock06.m2", + }, + }, + value = "ogremoundrocks", + text = "ogremoundrocks", + }, + { + children = { + { + fileId = "199022", + value = "ogresmokevent01.m2", + text = "ogresmokevent01.m2", + }, + }, + value = "ogremoundvent", + text = "ogremoundvent", + }, + { + children = { + { + fileId = "199025", + value = "ogrethrone.m2", + text = "ogrethrone.m2", + }, + }, + value = "ogrethrone", + text = "ogrethrone", + }, + { + children = { + { + fileId = "199028", + value = "poodad01.m2", + text = "poodad01.m2", + }, + }, + value = "poodad", + text = "poodad", + }, + { + children = { + { + fileId = "199034", + value = "ogrewalltorch.m2", + text = "ogrewalltorch.m2", + }, + { + fileId = "199035", + value = "ogrewalltorchblue.m2", + text = "ogrewalltorchblue.m2", + }, + { + fileId = "199036", + value = "ogrewalltorchgreen.m2", + text = "ogrewalltorchgreen.m2", + }, + { + fileId = "199037", + value = "ogrewalltorchpurple.m2", + text = "ogrewalltorchpurple.m2", + }, + { + fileId = "199038", + value = "ogrewalltorchred.m2", + text = "ogrewalltorchred.m2", + }, + }, + value = "torches", + text = "torches", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "ogre", + text = "ogre", + }, + { + children = { + { + fileId = "199040", + value = "green_omni.m2", + text = "green_omni.m2", + }, + }, + value = "omnilights", + text = "omnilights", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "199041", + value = "altarofstormsstatue.m2", + text = "altarofstormsstatue.m2", + }, + }, + value = "altarofstormsstatues", + text = "altarofstormsstatues", + }, + { + children = { + { + fileId = "199049", + value = "boarskull.m2", + text = "boarskull.m2", + }, + { + fileId = "199050", + value = "carnosaurskull.m2", + text = "carnosaurskull.m2", + }, + { + fileId = "199052", + value = "tallstriderskull.m2", + text = "tallstriderskull.m2", + }, + { + fileId = "199054", + value = "tigerskull.m2", + text = "tigerskull.m2", + }, + }, + value = "animalskulls", + text = "animalskulls", + }, + { + children = { + { + fileId = "199056", + value = "clanbanner.m2", + text = "clanbanner.m2", + }, + { + fileId = "199058", + value = "clanbanner01.m2", + text = "clanbanner01.m2", + }, + { + fileId = "199060", + value = "clanbanner02.m2", + text = "clanbanner02.m2", + }, + { + fileId = "199062", + value = "clanbanner03.m2", + text = "clanbanner03.m2", + }, + { + fileId = "199064", + value = "clanbanner04.m2", + text = "clanbanner04.m2", + }, + { + fileId = "199066", + value = "clanbanner05.m2", + text = "clanbanner05.m2", + }, + { + fileId = "199068", + value = "clanbanner06.m2", + text = "clanbanner06.m2", + }, + { + fileId = "199070", + value = "clanbanner07warsong.m2", + text = "clanbanner07warsong.m2", + }, + { + fileId = "199071", + value = "felorcbanner01.m2", + text = "felorcbanner01.m2", + }, + { + fileId = "199074", + value = "ogrebannerboar.m2", + text = "ogrebannerboar.m2", + }, + { + fileId = "199077", + value = "ogrebannersnow.m2", + text = "ogrebannersnow.m2", + }, + { + fileId = "199078", + value = "ogrebannertiger.m2", + text = "ogrebannertiger.m2", + }, + { + fileId = "199081", + value = "orcbanner1.m2", + text = "orcbanner1.m2", + }, + { + fileId = "199082", + value = "orcbanner2.m2", + text = "orcbanner2.m2", + }, + { + fileId = "199083", + value = "orcbanner3.m2", + text = "orcbanner3.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "199090", + value = "orcbarrel01.m2", + text = "orcbarrel01.m2", + }, + { + fileId = "199091", + value = "orcbarrel03.m2", + text = "orcbarrel03.m2", + }, + { + fileId = "199092", + value = "orcbarrel04.m2", + text = "orcbarrel04.m2", + }, + { + fileId = "199094", + value = "orccrate01.m2", + text = "orccrate01.m2", + }, + { + fileId = "199095", + value = "orccrate02.m2", + text = "orccrate02.m2", + }, + { + fileId = "199096", + value = "orccrate03.m2", + text = "orccrate03.m2", + }, + { + fileId = "199097", + value = "orccrate06.m2", + text = "orccrate06.m2", + }, + { + fileId = "199099", + value = "orccrate07.m2", + text = "orccrate07.m2", + }, + { + fileId = "199100", + value = "orccrate08.m2", + text = "orccrate08.m2", + }, + { + fileId = "199101", + value = "orccrate09.m2", + text = "orccrate09.m2", + }, + { + fileId = "199102", + value = "orccrate10.m2", + text = "orccrate10.m2", + }, + { + fileId = "199103", + value = "orccratebroken01.m2", + text = "orccratebroken01.m2", + }, + { + fileId = "199104", + value = "orccratebroken02.m2", + text = "orccratebroken02.m2", + }, + { + fileId = "199105", + value = "orccratebroken03.m2", + text = "orccratebroken03.m2", + }, + }, + value = "barrelsandcrates", + text = "barrelsandcrates", + }, + { + children = { + { + fileId = "199107", + value = "marketblanket01.m2", + text = "marketblanket01.m2", + }, + }, + value = "blankets", + text = "blankets", + }, + { + children = { + { + fileId = "199114", + value = "wailingcavernshangingbones01.m2", + text = "wailingcavernshangingbones01.m2", + }, + { + fileId = "199115", + value = "wailingcavernshangingbones02.m2", + text = "wailingcavernshangingbones02.m2", + }, + { + fileId = "199116", + value = "wailingcavernshangingbones03.m2", + text = "wailingcavernshangingbones03.m2", + }, + }, + value = "bones", + text = "bones", + }, + { + children = { + { + fileId = "199118", + value = "hookahbong01.m2", + text = "hookahbong01.m2", + }, + }, + value = "bongs", + text = "bongs", + }, + { + children = { + { + fileId = "199120", + value = "orcbottle01.m2", + text = "orcbottle01.m2", + }, + }, + value = "bottles", + text = "bottles", + }, + { + children = { + { + fileId = "199121", + value = "bowlwood01.m2", + text = "bowlwood01.m2", + }, + { + fileId = "199122", + value = "bowlwood02.m2", + text = "bowlwood02.m2", + }, + }, + value = "bowls", + text = "bowls", + }, + { + children = { + { + fileId = "199127", + value = "blackrockorccampfire.m2", + text = "blackrockorccampfire.m2", + }, + { + fileId = "199129", + value = "mediumbrazier01.m2", + text = "mediumbrazier01.m2", + }, + { + fileId = "199130", + value = "mediumbraziernoomni01.m2", + text = "mediumbraziernoomni01.m2", + }, + { + fileId = "199131", + value = "mediumbrazierpurple01.m2", + text = "mediumbrazierpurple01.m2", + }, + { + fileId = "199132", + value = "orcbrazier_campfire01.m2", + text = "orcbrazier_campfire01.m2", + }, + { + fileId = "199134", + value = "orcpvpbonfirelarge.m2", + text = "orcpvpbonfirelarge.m2", + }, + { + fileId = "199136", + value = "smallbrazier01.m2", + text = "smallbrazier01.m2", + }, + { + fileId = "199137", + value = "smallbraziernoomni01.m2", + text = "smallbraziernoomni01.m2", + }, + { + fileId = "199138", + value = "smallbrazierpurple01.m2", + text = "smallbrazierpurple01.m2", + }, + { + fileId = "199139", + value = "smallbrazierpurplehanging.m2", + text = "smallbrazierpurplehanging.m2", + }, + { + fileId = "199141", + value = "tallbrazier01.m2", + text = "tallbrazier01.m2", + }, + { + fileId = "199142", + value = "tallbraziernoomni01.m2", + text = "tallbraziernoomni01.m2", + }, + }, + value = "braziers", + text = "braziers", + }, + { + children = { + { + fileId = "199144", + value = "burntoutpost01.m2", + text = "burntoutpost01.m2", + }, + { + fileId = "199145", + value = "burntoutpost02.m2", + text = "burntoutpost02.m2", + }, + { + fileId = "199146", + value = "burntoutpost03.m2", + text = "burntoutpost03.m2", + }, + { + fileId = "199147", + value = "burntoutpost04.m2", + text = "burntoutpost04.m2", + }, + { + fileId = "199148", + value = "burntoutpost05.m2", + text = "burntoutpost05.m2", + }, + { + fileId = "199149", + value = "burntoutpost06.m2", + text = "burntoutpost06.m2", + }, + { + fileId = "199150", + value = "burntoutpost07.m2", + text = "burntoutpost07.m2", + }, + }, + value = "burntoutposts", + text = "burntoutposts", + }, + { + children = { + { + fileId = "199153", + value = "feedtroph01.m2", + text = "feedtroph01.m2", + }, + }, + value = "feedingtroughs", + text = "feedingtroughs", + }, + { + children = { + { + fileId = "199155", + value = "largefirepit01.m2", + text = "largefirepit01.m2", + }, + { + fileId = "199156", + value = "smallfirepit01.m2", + text = "smallfirepit01.m2", + }, + }, + value = "firepits", + text = "firepits", + }, + { + children = { + { + fileId = "199157", + value = "orcflappingflag01.m2", + text = "orcflappingflag01.m2", + }, + }, + value = "flags", + text = "flags", + }, + { + children = { + { + fileId = "199159", + value = "steamgeyser.m2", + text = "steamgeyser.m2", + }, + }, + value = "geyser", + text = "geyser", + }, + { + children = { + { + fileId = "199160", + value = "hammock01.m2", + text = "hammock01.m2", + }, + { + fileId = "199161", + value = "hammock02.m2", + text = "hammock02.m2", + }, + { + fileId = "199162", + value = "hammock03.m2", + text = "hammock03.m2", + }, + { + fileId = "199163", + value = "hammock04.m2", + text = "hammock04.m2", + }, + }, + value = "hammocks", + text = "hammocks", + }, + { + children = { + { + fileId = "199166", + value = "orchangingbones01.m2", + text = "orchangingbones01.m2", + }, + { + fileId = "199167", + value = "orchangingbones02.m2", + text = "orchangingbones02.m2", + }, + { + fileId = "199168", + value = "orchangingbones03.m2", + text = "orchangingbones03.m2", + }, + { + fileId = "199169", + value = "orchangingbones04.m2", + text = "orchangingbones04.m2", + }, + }, + value = "hangingbones", + text = "hangingbones", + }, + { + children = { + { + fileId = "199173", + value = "hordebanner01.m2", + text = "hordebanner01.m2", + }, + { + fileId = "199174", + value = "hordebanner02.m2", + text = "hordebanner02.m2", + }, + { + fileId = "199175", + value = "hordebanner03.m2", + text = "hordebanner03.m2", + }, + { + fileId = "199176", + value = "hordebanner04.m2", + text = "hordebanner04.m2", + }, + { + fileId = "244208", + value = "hordebanner05.m2", + text = "hordebanner05.m2", + }, + }, + value = "hordebanners", + text = "hordebanners", + }, + { + children = { + { + fileId = "199179", + value = "jarorc01.m2", + text = "jarorc01.m2", + }, + { + fileId = "199180", + value = "jarorc02.m2", + text = "jarorc02.m2", + }, + { + fileId = "199181", + value = "jarorc03.m2", + text = "jarorc03.m2", + }, + { + fileId = "199182", + value = "jarorc04.m2", + text = "jarorc04.m2", + }, + { + fileId = "199183", + value = "jarorc05.m2", + text = "jarorc05.m2", + }, + { + fileId = "199184", + value = "jarorc06.m2", + text = "jarorc06.m2", + }, + }, + value = "jars", + text = "jars", + }, + { + children = { + { + fileId = "199191", + value = "orcjug01.m2", + text = "orcjug01.m2", + }, + { + fileId = "199192", + value = "orcjug02.m2", + text = "orcjug02.m2", + }, + }, + value = "jugs", + text = "jugs", + }, + { + children = { + { + fileId = "199195", + value = "kodowagon.m2", + text = "kodowagon.m2", + }, + }, + value = "kodowagon", + text = "kodowagon", + }, + { + children = { + { + fileId = "199196", + value = "orcbrazier_lightpostbarrens.m2", + text = "orcbrazier_lightpostbarrens.m2", + }, + { + fileId = "199197", + value = "orcbrazierlamppost01.m2", + text = "orcbrazierlamppost01.m2", + }, + { + fileId = "199198", + value = "orcbrazierstreetlamp.m2", + text = "orcbrazierstreetlamp.m2", + }, + }, + value = "lampposts", + text = "lampposts", + }, + { + children = { + { + fileId = "199201", + value = "orchanginglantern.m2", + text = "orchanginglantern.m2", + }, + }, + value = "lanterns", + text = "lanterns", + }, + { + children = { + { + fileId = "199203", + value = "rawmeatrack01.m2", + text = "rawmeatrack01.m2", + }, + { + fileId = "199205", + value = "smokedmeatrack01.m2", + text = "smokedmeatrack01.m2", + }, + }, + value = "meatracks", + text = "meatracks", + }, + { + children = { + { + fileId = "199207", + value = "orcmug01.m2", + text = "orcmug01.m2", + }, + }, + value = "mugs", + text = "mugs", + }, + { + children = { + { + fileId = "199208", + value = "orcbellow.m2", + text = "orcbellow.m2", + }, + }, + value = "orcbellows", + text = "orcbellows", + }, + { + children = { + { + fileId = "199209", + value = "orcfence.m2", + text = "orcfence.m2", + }, + { + fileId = "199210", + value = "orcfencepost.m2", + text = "orcfencepost.m2", + }, + }, + value = "orcfence", + text = "orcfence", + }, + { + children = { + { + fileId = "199211", + value = "quillboarpinata.m2", + text = "quillboarpinata.m2", + }, + }, + value = "pinata", + text = "pinata", + }, + { + children = { + { + fileId = "199212", + value = "orcpitcher01.m2", + text = "orcpitcher01.m2", + }, + }, + value = "pitchers", + text = "pitchers", + }, + { + children = { + { + fileId = "199215", + value = "wailingfern06.m2", + text = "wailingfern06.m2", + }, + { + fileId = "199217", + value = "wailingplant01.m2", + text = "wailingplant01.m2", + }, + { + fileId = "199218", + value = "wailingplant02.m2", + text = "wailingplant02.m2", + }, + { + fileId = "199220", + value = "wailingplantpurple01.m2", + text = "wailingplantpurple01.m2", + }, + }, + value = "plants", + text = "plants", + }, + { + children = { + { + fileId = "199222", + value = "wailingcavernsraptoreggs01.m2", + text = "wailingcavernsraptoreggs01.m2", + }, + { + fileId = "199223", + value = "wailingcavernsraptoreggs02.m2", + text = "wailingcavernsraptoreggs02.m2", + }, + { + fileId = "199224", + value = "wailingcavernsraptoreggs03.m2", + text = "wailingcavernsraptoreggs03.m2", + }, + { + fileId = "199225", + value = "wailingcavernsraptoreggs04.m2", + text = "wailingcavernsraptoreggs04.m2", + }, + }, + value = "raptoreggs", + text = "raptoreggs", + }, + { + children = { + { + fileId = "199226", + value = "wailingcavernsraptornest01.m2", + text = "wailingcavernsraptornest01.m2", + }, + { + fileId = "199227", + value = "wailingcavernsraptornest02.m2", + text = "wailingcavernsraptornest02.m2", + }, + }, + value = "raptornests", + text = "raptornests", + }, + { + children = { + { + fileId = "199229", + value = "rickshaw.m2", + text = "rickshaw.m2", + }, + }, + value = "rickshaw", + text = "rickshaw", + }, + { + children = { + { + fileId = "199231", + value = "roastboar.m2", + text = "roastboar.m2", + }, + { + fileId = "199234", + value = "roasttallstrider01.m2", + text = "roasttallstrider01.m2", + }, + { + fileId = "199235", + value = "roasttallstrider02.m2", + text = "roasttallstrider02.m2", + }, + }, + value = "roasts", + text = "roasts", + }, + { + children = { + { + fileId = "199239", + value = "centaurrug01.m2", + text = "centaurrug01.m2", + }, + { + fileId = "199241", + value = "furrug01.m2", + text = "furrug01.m2", + }, + { + fileId = "199242", + value = "kotoskinrug01.m2", + text = "kotoskinrug01.m2", + }, + }, + value = "rugs", + text = "rugs", + }, + { + children = { + { + fileId = "199243", + value = "direwolfsaddle.m2", + text = "direwolfsaddle.m2", + }, + { + fileId = "199245", + value = "tallstridersaddle.m2", + text = "tallstridersaddle.m2", + }, + { + fileId = "199247", + value = "wyvernsaddle.m2", + text = "wyvernsaddle.m2", + }, + }, + value = "saddles", + text = "saddles", + }, + { + children = { + { + fileId = "199250", + value = "orcshield01.m2", + text = "orcshield01.m2", + }, + { + fileId = "199252", + value = "orcshield02.m2", + text = "orcshield02.m2", + }, + { + fileId = "199254", + value = "orcshield03.m2", + text = "orcshield03.m2", + }, + }, + value = "shields", + text = "shields", + }, + { + children = { + { + fileId = "199257", + value = "orcsignpost01.m2", + text = "orcsignpost01.m2", + }, + { + fileId = "199258", + value = "orcsignpost02.m2", + text = "orcsignpost02.m2", + }, + { + fileId = "199259", + value = "orcsignpost03.m2", + text = "orcsignpost03.m2", + }, + { + fileId = "199260", + value = "orcsignpostpointer01.m2", + text = "orcsignpostpointer01.m2", + }, + { + fileId = "199261", + value = "orcsignpostpointer02.m2", + text = "orcsignpostpointer02.m2", + }, + { + fileId = "199262", + value = "orcsignpostpointer03.m2", + text = "orcsignpostpointer03.m2", + }, + }, + value = "signposts", + text = "signposts", + }, + { + children = { + { + fileId = "199263", + value = "orcsign_alchemist.m2", + text = "orcsign_alchemist.m2", + }, + { + fileId = "199266", + value = "orcsign_armory.m2", + text = "orcsign_armory.m2", + }, + { + fileId = "199267", + value = "orcsign_axes.m2", + text = "orcsign_axes.m2", + }, + { + fileId = "199269", + value = "orcsign_bags.m2", + text = "orcsign_bags.m2", + }, + { + fileId = "199271", + value = "orcsign_bank.m2", + text = "orcsign_bank.m2", + }, + { + fileId = "199273", + value = "orcsign_blacksmith.m2", + text = "orcsign_blacksmith.m2", + }, + { + fileId = "199275", + value = "orcsign_bows.m2", + text = "orcsign_bows.m2", + }, + { + fileId = "199277", + value = "orcsign_bread.m2", + text = "orcsign_bread.m2", + }, + { + fileId = "199279", + value = "orcsign_cartography.m2", + text = "orcsign_cartography.m2", + }, + { + fileId = "199281", + value = "orcsign_cheese.m2", + text = "orcsign_cheese.m2", + }, + { + fileId = "199283", + value = "orcsign_clotharmor.m2", + text = "orcsign_clotharmor.m2", + }, + { + fileId = "199285", + value = "orcsign_cooking.m2", + text = "orcsign_cooking.m2", + }, + { + fileId = "199287", + value = "orcsign_daggers.m2", + text = "orcsign_daggers.m2", + }, + { + fileId = "199289", + value = "orcsign_drinks.m2", + text = "orcsign_drinks.m2", + }, + { + fileId = "199291", + value = "orcsign_enchanting.m2", + text = "orcsign_enchanting.m2", + }, + { + fileId = "199293", + value = "orcsign_engineering.m2", + text = "orcsign_engineering.m2", + }, + { + fileId = "199295", + value = "orcsign_firstaid.m2", + text = "orcsign_firstaid.m2", + }, + { + fileId = "199297", + value = "orcsign_fishing.m2", + text = "orcsign_fishing.m2", + }, + { + fileId = "199299", + value = "orcsign_fletcher.m2", + text = "orcsign_fletcher.m2", + }, + { + fileId = "199301", + value = "orcsign_food.m2", + text = "orcsign_food.m2", + }, + { + fileId = "199303", + value = "orcsign_general.m2", + text = "orcsign_general.m2", + }, + { + fileId = "199305", + value = "orcsign_guns.m2", + text = "orcsign_guns.m2", + }, + { + fileId = "199307", + value = "orcsign_herbalist.m2", + text = "orcsign_herbalist.m2", + }, + { + fileId = "199309", + value = "orcsign_inscribing.m2", + text = "orcsign_inscribing.m2", + }, + { + fileId = "199311", + value = "orcsign_leatherarmor.m2", + text = "orcsign_leatherarmor.m2", + }, + { + fileId = "199313", + value = "orcsign_lockpicking.m2", + text = "orcsign_lockpicking.m2", + }, + { + fileId = "199315", + value = "orcsign_maces.m2", + text = "orcsign_maces.m2", + }, + { + fileId = "199317", + value = "orcsign_magicshop.m2", + text = "orcsign_magicshop.m2", + }, + { + fileId = "199319", + value = "orcsign_mailarmor.m2", + text = "orcsign_mailarmor.m2", + }, + { + fileId = "199320", + value = "orcsign_meat.m2", + text = "orcsign_meat.m2", + }, + { + fileId = "199322", + value = "orcsign_mining.m2", + text = "orcsign_mining.m2", + }, + { + fileId = "199324", + value = "orcsign_misc.m2", + text = "orcsign_misc.m2", + }, + { + fileId = "199326", + value = "orcsign_poisons.m2", + text = "orcsign_poisons.m2", + }, + { + fileId = "199327", + value = "orcsign_shields.m2", + text = "orcsign_shields.m2", + }, + { + fileId = "199329", + value = "orcsign_staves.m2", + text = "orcsign_staves.m2", + }, + { + fileId = "199331", + value = "orcsign_swords.m2", + text = "orcsign_swords.m2", + }, + { + fileId = "199333", + value = "orcsign_tabard.m2", + text = "orcsign_tabard.m2", + }, + { + fileId = "199335", + value = "orcsign_tailor.m2", + text = "orcsign_tailor.m2", + }, + { + fileId = "199337", + value = "orcsign_tavern.m2", + text = "orcsign_tavern.m2", + }, + { + fileId = "199339", + value = "orcsign_visitorcenter.m2", + text = "orcsign_visitorcenter.m2", + }, + { + fileId = "199340", + value = "orcsign_weapons.m2", + text = "orcsign_weapons.m2", + }, + { + fileId = "199343", + value = "orcsign_winery.m2", + text = "orcsign_winery.m2", + }, + { + fileId = "199345", + value = "orcsign_wyvern.m2", + text = "orcsign_wyvern.m2", + }, + }, + value = "signs", + text = "signs", + }, + { + children = { + { + fileId = "199346", + value = "spitmetal.m2", + text = "spitmetal.m2", + }, + { + fileId = "199347", + value = "spitwood.m2", + text = "spitwood.m2", + }, + }, + value = "spits", + text = "spits", + }, + { + children = { + { + fileId = "199349", + value = "hellscreammonument_01.m2", + text = "hellscreammonument_01.m2", + }, + }, + value = "statues", + text = "statues", + }, + { + children = { + { + fileId = "199351", + value = "wailingstonebrazier.m2", + text = "wailingstonebrazier.m2", + }, + }, + value = "stonebrazier", + text = "stonebrazier", + }, + { + children = { + { + fileId = "199354", + value = "orctablecooker01.m2", + text = "orctablecooker01.m2", + }, + { + fileId = "199355", + value = "orctablecooker01fire.m2", + text = "orctablecooker01fire.m2", + }, + }, + value = "tablecooker", + text = "tablecooker", + }, + { + children = { + { + fileId = "199356", + value = "orcbench01.m2", + text = "orcbench01.m2", + }, + { + fileId = "199357", + value = "orctable01.m2", + text = "orctable01.m2", + }, + }, + value = "tables", + text = "tables", + }, + { + children = { + { + children = { + { + fileId = "199358", + value = "orcboltblue.m2", + text = "orcboltblue.m2", + }, + { + fileId = "199359", + value = "orcboltgreen.m2", + text = "orcboltgreen.m2", + }, + { + fileId = "199360", + value = "orcboltred.m2", + text = "orcboltred.m2", + }, + { + fileId = "199361", + value = "orcboltwhite.m2", + text = "orcboltwhite.m2", + }, + }, + value = "bolts", + text = "bolts", + }, + { + children = { + { + fileId = "199363", + value = "orcboots01.m2", + text = "orcboots01.m2", + }, + { + fileId = "199364", + value = "orcboots02.m2", + text = "orcboots02.m2", + }, + { + fileId = "199365", + value = "orcboots03.m2", + text = "orcboots03.m2", + }, + }, + value = "boots", + text = "boots", + }, + { + children = { + { + fileId = "199369", + value = "orchangingpants01.m2", + text = "orchangingpants01.m2", + }, + { + fileId = "199370", + value = "orchangingshirt01.m2", + text = "orchangingshirt01.m2", + }, + { + fileId = "199371", + value = "orcpants01.m2", + text = "orcpants01.m2", + }, + { + fileId = "199372", + value = "orcshirt01.m2", + text = "orcshirt01.m2", + }, + }, + value = "clothes", + text = "clothes", + }, + { + children = { + { + fileId = "199373", + value = "orcspoolbluelow.m2", + text = "orcspoolbluelow.m2", + }, + { + fileId = "199374", + value = "orcspoolgreenlow.m2", + text = "orcspoolgreenlow.m2", + }, + { + fileId = "199375", + value = "orcspoolorange.m2", + text = "orcspoolorange.m2", + }, + { + fileId = "199376", + value = "orcspoolpurple.m2", + text = "orcspoolpurple.m2", + }, + { + fileId = "199377", + value = "orcspoolred.m2", + text = "orcspoolred.m2", + }, + { + fileId = "199378", + value = "orcspoolredlow.m2", + text = "orcspoolredlow.m2", + }, + { + fileId = "199379", + value = "orcspoolyellow.m2", + text = "orcspoolyellow.m2", + }, + }, + value = "spools", + text = "spools", + }, + { + children = { + { + fileId = "199380", + value = "orcyarnred.m2", + text = "orcyarnred.m2", + }, + { + fileId = "199381", + value = "orcyarnyellow.m2", + text = "orcyarnyellow.m2", + }, + }, + value = "yarn", + text = "yarn", + }, + }, + value = "tailoring", + text = "tailoring", + }, + { + children = { + { + fileId = "199383", + value = "orctaxiflag.m2", + text = "orctaxiflag.m2", + }, + }, + value = "taxiflags", + text = "taxiflags", + }, + { + children = { + { + fileId = "199384", + value = "durotarorctent01.m2", + text = "durotarorctent01.m2", + }, + { + fileId = "199385", + value = "durotarorctent02.m2", + text = "durotarorctent02.m2", + }, + { + fileId = "199387", + value = "orctent01.m2", + text = "orctent01.m2", + }, + { + fileId = "199389", + value = "orctent02.m2", + text = "orctent02.m2", + }, + }, + value = "tents", + text = "tents", + }, + { + children = { + { + fileId = "199390", + value = "eggtray.m2", + text = "eggtray.m2", + }, + }, + value = "trays", + text = "trays", + }, + { + children = { + { + fileId = "199392", + value = "ladlemetal.m2", + text = "ladlemetal.m2", + }, + { + fileId = "199394", + value = "ladlewood.m2", + text = "ladlewood.m2", + }, + { + fileId = "199396", + value = "serratedcleaver.m2", + text = "serratedcleaver.m2", + }, + }, + value = "utensils", + text = "utensils", + }, + { + children = { + { + fileId = "199397", + value = "bubblingbowl01.m2", + text = "bubblingbowl01.m2", + }, + { + fileId = "199398", + value = "bubblingbowl02.m2", + text = "bubblingbowl02.m2", + }, + { + fileId = "199401", + value = "skullcandle01.m2", + text = "skullcandle01.m2", + }, + { + fileId = "199402", + value = "skullcandle02.m2", + text = "skullcandle02.m2", + }, + { + fileId = "199407", + value = "voodoodoll01.m2", + text = "voodoodoll01.m2", + }, + { + fileId = "199408", + value = "voodoodoll02.m2", + text = "voodoodoll02.m2", + }, + { + fileId = "199410", + value = "voodoodrum01.m2", + text = "voodoodrum01.m2", + }, + { + fileId = "199412", + value = "voodoodrum02.m2", + text = "voodoodrum02.m2", + }, + { + fileId = "199413", + value = "voodoodrum03.m2", + text = "voodoodrum03.m2", + }, + }, + value = "voodoostuff", + text = "voodoostuff", + }, + { + children = { + { + fileId = "199414", + value = "orcwagon01.m2", + text = "orcwagon01.m2", + }, + { + fileId = "199415", + value = "orcwagon02.m2", + text = "orcwagon02.m2", + }, + { + fileId = "199416", + value = "orcwagon03.m2", + text = "orcwagon03.m2", + }, + { + fileId = "199417", + value = "orcwagon04.m2", + text = "orcwagon04.m2", + }, + { + fileId = "199418", + value = "orcwagon05.m2", + text = "orcwagon05.m2", + }, + { + fileId = "199419", + value = "orcwagon06.m2", + text = "orcwagon06.m2", + }, + }, + value = "wagons", + text = "wagons", + }, + { + children = { + { + fileId = "199421", + value = "wantedposterframed01.m2", + text = "wantedposterframed01.m2", + }, + { + fileId = "199424", + value = "wantedposterscroll01.m2", + text = "wantedposterscroll01.m2", + }, + { + fileId = "199426", + value = "wantedposterstuck01.m2", + text = "wantedposterstuck01.m2", + }, + { + fileId = "199428", + value = "wantedposterwood01.m2", + text = "wantedposterwood01.m2", + }, + }, + value = "wantedposters", + text = "wantedposters", + }, + { + children = { + { + fileId = "199430", + value = "orcaxe01.m2", + text = "orcaxe01.m2", + }, + { + fileId = "199432", + value = "orcaxe02.m2", + text = "orcaxe02.m2", + }, + { + fileId = "199434", + value = "orcaxe03.m2", + text = "orcaxe03.m2", + }, + { + fileId = "199436", + value = "orcspear01.m2", + text = "orcspear01.m2", + }, + { + fileId = "199438", + value = "orcspear02.m2", + text = "orcspear02.m2", + }, + { + fileId = "199439", + value = "orcspear03.m2", + text = "orcspear03.m2", + }, + { + fileId = "199440", + value = "orcstaff01.m2", + text = "orcstaff01.m2", + }, + { + fileId = "199441", + value = "orcstaff02.m2", + text = "orcstaff02.m2", + }, + { + fileId = "199442", + value = "orcstaff03.m2", + text = "orcstaff03.m2", + }, + { + fileId = "199443", + value = "orcstaff04.m2", + text = "orcstaff04.m2", + }, + { + fileId = "199444", + value = "orcstaff05.m2", + text = "orcstaff05.m2", + }, + { + fileId = "199446", + value = "orcsword02.m2", + text = "orcsword02.m2", + }, + { + fileId = "199448", + value = "orcsword03.m2", + text = "orcsword03.m2", + }, + }, + value = "weapons", + text = "weapons", + }, + { + children = { + { + fileId = "199451", + value = "wyvernnest01.m2", + text = "wyvernnest01.m2", + }, + { + fileId = "199452", + value = "wyvernnest02.m2", + text = "wyvernnest02.m2", + }, + }, + value = "wyvernnests", + text = "wyvernnests", + }, + { + children = { + { + fileId = "199454", + value = "wyvernroost01.m2", + text = "wyvernroost01.m2", + }, + { + fileId = "199456", + value = "wyvernroost_ruined.m2", + text = "wyvernroost_ruined.m2", + }, + }, + value = "wyvernroost", + text = "wyvernroost", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "orc", + text = "orc", + }, + { + children = { + { + children = { + { + fileId = "199458", + value = "owlbearskull01.m2", + text = "owlbearskull01.m2", + }, + }, + value = "owlbearskulls", + text = "owlbearskulls", + }, + { + children = { + { + fileId = "199460", + value = "owlbearhangingtotem01.m2", + text = "owlbearhangingtotem01.m2", + }, + { + fileId = "199461", + value = "owlbearhangingtotem02.m2", + text = "owlbearhangingtotem02.m2", + }, + { + fileId = "199462", + value = "owlbearhangingtotem03.m2", + text = "owlbearhangingtotem03.m2", + }, + { + fileId = "199463", + value = "owlbearscarecrow01.m2", + text = "owlbearscarecrow01.m2", + }, + { + fileId = "199464", + value = "owlbearscarecrow02.m2", + text = "owlbearscarecrow02.m2", + }, + { + fileId = "199466", + value = "owlbeartotem01.m2", + text = "owlbeartotem01.m2", + }, + }, + value = "owlbeartotems", + text = "owlbeartotems", + }, + { + children = { + { + fileId = "199467", + value = "owlbearrock01.m2", + text = "owlbearrock01.m2", + }, + { + fileId = "199468", + value = "owlbearrock02.m2", + text = "owlbearrock02.m2", + }, + { + fileId = "199469", + value = "owlbearrock03.m2", + text = "owlbearrock03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + }, + value = "owlbear", + text = "owlbear", + }, + { + children = { + { + children = { + { + fileId = "199472", + value = "shoutbox_generic.m2", + text = "shoutbox_generic.m2", + }, + }, + value = "shoutbox", + text = "shoutbox", + }, + { + children = { + { + fileId = "199473", + value = "newwantedposter01.m2", + text = "newwantedposter01.m2", + }, + { + fileId = "199475", + value = "newwantedposter02.m2", + text = "newwantedposter02.m2", + }, + { + fileId = "199476", + value = "newwantedposter03.m2", + text = "newwantedposter03.m2", + }, + { + fileId = "199477", + value = "newwantedposter04.m2", + text = "newwantedposter04.m2", + }, + { + fileId = "4208854", + value = "newwantedposter05.m2", + text = "newwantedposter05.m2", + }, + }, + value = "wantedposters", + text = "wantedposters", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + { + children = { + { + children = { + { + fileId = "199478", + value = "cloth_level01.m2", + text = "cloth_level01.m2", + }, + { + fileId = "199479", + value = "cloth_level02.m2", + text = "cloth_level02.m2", + }, + { + fileId = "199480", + value = "cloth_level03.m2", + text = "cloth_level03.m2", + }, + { + fileId = "199481", + value = "cloth_level04.m2", + text = "cloth_level04.m2", + }, + { + fileId = "199482", + value = "cloth_level05.m2", + text = "cloth_level05.m2", + }, + { + fileId = "199483", + value = "cloth_level06.m2", + text = "cloth_level06.m2", + }, + { + fileId = "199484", + value = "food_level02.m2", + text = "food_level02.m2", + }, + { + fileId = "199485", + value = "food_level03.m2", + text = "food_level03.m2", + }, + { + fileId = "199486", + value = "food_level04.m2", + text = "food_level04.m2", + }, + { + fileId = "199487", + value = "food_level05.m2", + text = "food_level05.m2", + }, + { + fileId = "199488", + value = "food_level06.m2", + text = "food_level06.m2", + }, + { + fileId = "199489", + value = "foodherbs_level01.m2", + text = "foodherbs_level01.m2", + }, + { + fileId = "199490", + value = "herbs_level02.m2", + text = "herbs_level02.m2", + }, + { + fileId = "199491", + value = "herbs_level03.m2", + text = "herbs_level03.m2", + }, + { + fileId = "199492", + value = "herbs_level04.m2", + text = "herbs_level04.m2", + }, + { + fileId = "199493", + value = "herbs_level05.m2", + text = "herbs_level05.m2", + }, + { + fileId = "199494", + value = "herbs_level06.m2", + text = "herbs_level06.m2", + }, + { + fileId = "199495", + value = "horde_cloth01.m2", + text = "horde_cloth01.m2", + }, + { + fileId = "199496", + value = "horde_cloth02.m2", + text = "horde_cloth02.m2", + }, + { + fileId = "199497", + value = "horde_cloth03.m2", + text = "horde_cloth03.m2", + }, + { + fileId = "199498", + value = "horde_cloth04.m2", + text = "horde_cloth04.m2", + }, + { + fileId = "199499", + value = "horde_cloth05.m2", + text = "horde_cloth05.m2", + }, + { + fileId = "199500", + value = "horde_cloth06.m2", + text = "horde_cloth06.m2", + }, + { + fileId = "199501", + value = "horde_food01.m2", + text = "horde_food01.m2", + }, + { + fileId = "199502", + value = "horde_food02.m2", + text = "horde_food02.m2", + }, + { + fileId = "199503", + value = "horde_food03.m2", + text = "horde_food03.m2", + }, + { + fileId = "199504", + value = "horde_food04.m2", + text = "horde_food04.m2", + }, + { + fileId = "199505", + value = "horde_food05.m2", + text = "horde_food05.m2", + }, + { + fileId = "199506", + value = "horde_food06.m2", + text = "horde_food06.m2", + }, + { + fileId = "199507", + value = "horde_furs01.m2", + text = "horde_furs01.m2", + }, + { + fileId = "199508", + value = "horde_furs02.m2", + text = "horde_furs02.m2", + }, + { + fileId = "199509", + value = "horde_furs03.m2", + text = "horde_furs03.m2", + }, + { + fileId = "199510", + value = "horde_furs04.m2", + text = "horde_furs04.m2", + }, + { + fileId = "199511", + value = "horde_furs05.m2", + text = "horde_furs05.m2", + }, + { + fileId = "199512", + value = "horde_furs06.m2", + text = "horde_furs06.m2", + }, + { + fileId = "199513", + value = "horde_herbs01.m2", + text = "horde_herbs01.m2", + }, + { + fileId = "199514", + value = "horde_herbs02.m2", + text = "horde_herbs02.m2", + }, + { + fileId = "199515", + value = "horde_herbs03.m2", + text = "horde_herbs03.m2", + }, + { + fileId = "199516", + value = "horde_herbs04.m2", + text = "horde_herbs04.m2", + }, + { + fileId = "199517", + value = "horde_herbs05.m2", + text = "horde_herbs05.m2", + }, + { + fileId = "199518", + value = "horde_herbs06.m2", + text = "horde_herbs06.m2", + }, + { + fileId = "199519", + value = "horde_metal01.m2", + text = "horde_metal01.m2", + }, + { + fileId = "199520", + value = "horde_metal02.m2", + text = "horde_metal02.m2", + }, + { + fileId = "199521", + value = "horde_metal03.m2", + text = "horde_metal03.m2", + }, + { + fileId = "199522", + value = "horde_metal04.m2", + text = "horde_metal04.m2", + }, + { + fileId = "199523", + value = "horde_metal05.m2", + text = "horde_metal05.m2", + }, + { + fileId = "199524", + value = "horde_metal06.m2", + text = "horde_metal06.m2", + }, + { + fileId = "199526", + value = "leather_level01.m2", + text = "leather_level01.m2", + }, + { + fileId = "199527", + value = "leather_level02.m2", + text = "leather_level02.m2", + }, + { + fileId = "199528", + value = "leather_level03.m2", + text = "leather_level03.m2", + }, + { + fileId = "199529", + value = "leather_level04.m2", + text = "leather_level04.m2", + }, + { + fileId = "199530", + value = "leather_level05.m2", + text = "leather_level05.m2", + }, + { + fileId = "199531", + value = "leather_level06.m2", + text = "leather_level06.m2", + }, + { + fileId = "199536", + value = "metals_level01.m2", + text = "metals_level01.m2", + }, + { + fileId = "199537", + value = "metals_level02.m2", + text = "metals_level02.m2", + }, + { + fileId = "199538", + value = "metals_level03.m2", + text = "metals_level03.m2", + }, + { + fileId = "199539", + value = "metals_level04.m2", + text = "metals_level04.m2", + }, + { + fileId = "199540", + value = "metals_level05.m2", + text = "metals_level05.m2", + }, + { + fileId = "199541", + value = "metals_level06.m2", + text = "metals_level06.m2", + }, + }, + value = "ahnqiraj", + text = "ahnqiraj", + }, + { + children = { + { + fileId = "199546", + value = "baby_dw.m2", + text = "baby_dw.m2", + }, + { + fileId = "199547", + value = "baby_gn.m2", + text = "baby_gn.m2", + }, + { + fileId = "199548", + value = "baby_hu.m2", + text = "baby_hu.m2", + }, + { + fileId = "199549", + value = "baby_ne.m2", + text = "baby_ne.m2", + }, + { + fileId = "199550", + value = "baby_or.m2", + text = "baby_or.m2", + }, + { + fileId = "199551", + value = "baby_ta.m2", + text = "baby_ta.m2", + }, + { + fileId = "199552", + value = "baby_tr.m2", + text = "baby_tr.m2", + }, + }, + value = "babies", + text = "babies", + }, + { + children = { + { + fileId = "199562", + value = "final_stage.m2", + text = "final_stage.m2", + }, + }, + value = "band", + text = "band", + }, + { + children = { + { + fileId = "199563", + value = "barrel01.m2", + text = "barrel01.m2", + }, + { + fileId = "199565", + value = "barrellowpoly.m2", + text = "barrellowpoly.m2", + }, + { + fileId = "199566", + value = "brokenbarrel01.m2", + text = "brokenbarrel01.m2", + }, + { + fileId = "199567", + value = "brokenbarrel02.m2", + text = "brokenbarrel02.m2", + }, + }, + value = "barrel", + text = "barrel", + }, + { + children = { + { + fileId = "199571", + value = "newbindstone.m2", + text = "newbindstone.m2", + }, + }, + value = "bindstone", + text = "bindstone", + }, + { + children = { + { + fileId = "199572", + value = "bleacherseat1a.m2", + text = "bleacherseat1a.m2", + }, + { + fileId = "199573", + value = "bleacherseat1b.m2", + text = "bleacherseat1b.m2", + }, + { + fileId = "199574", + value = "bleacherseat1c.m2", + text = "bleacherseat1c.m2", + }, + { + fileId = "199575", + value = "bleacherseat1d.m2", + text = "bleacherseat1d.m2", + }, + { + fileId = "199576", + value = "bleacherswood01.m2", + text = "bleacherswood01.m2", + }, + }, + value = "bleachers", + text = "bleachers", + }, + { + children = { + { + fileId = "199577", + value = "beerfest_molemachine.m2", + text = "beerfest_molemachine.m2", + }, + { + fileId = "244221", + value = "beerfest_molemachine_anim_set2.m2", + text = "beerfest_molemachine_anim_set2.m2", + }, + }, + value = "brewfest", + text = "brewfest", + }, + { + children = { + { + fileId = "199580", + value = "brokenfreezingtrap.m2", + text = "brokenfreezingtrap.m2", + }, + }, + value = "brokentrap", + text = "brokentrap", + }, + { + children = { + { + fileId = "199591", + value = "g_nutcracker.m2", + text = "g_nutcracker.m2", + }, + { + fileId = "199592", + value = "g_xmaswreath.m2", + text = "g_xmaswreath.m2", + }, + { + fileId = "199594", + value = "lunarnewyear_lights.m2", + text = "lunarnewyear_lights.m2", + }, + { + fileId = "199595", + value = "lunarnewyear_lightsx3.m2", + text = "lunarnewyear_lightsx3.m2", + }, + { + fileId = "199596", + value = "mistletoe.m2", + text = "mistletoe.m2", + }, + { + fileId = "199597", + value = "mistletoe02.m2", + text = "mistletoe02.m2", + }, + { + fileId = "199600", + value = "xmas_lights.m2", + text = "xmas_lights.m2", + }, + { + fileId = "199601", + value = "xmas_lights_broken.m2", + text = "xmas_lights_broken.m2", + }, + { + fileId = "199602", + value = "xmas_lights_broken3x.m2", + text = "xmas_lights_broken3x.m2", + }, + { + fileId = "199603", + value = "xmas_lightsx3.m2", + text = "xmas_lightsx3.m2", + }, + { + fileId = "199604", + value = "xmasgift01.m2", + text = "xmasgift01.m2", + }, + { + fileId = "199605", + value = "xmasgift02.m2", + text = "xmasgift02.m2", + }, + { + fileId = "199606", + value = "xmasgift03.m2", + text = "xmasgift03.m2", + }, + { + fileId = "199607", + value = "xmasgift04.m2", + text = "xmasgift04.m2", + }, + { + fileId = "199608", + value = "xmasgift05.m2", + text = "xmasgift05.m2", + }, + { + fileId = "199609", + value = "xmasgift06.m2", + text = "xmasgift06.m2", + }, + { + fileId = "199610", + value = "xmasropeline.m2", + text = "xmasropeline.m2", + }, + { + fileId = "199611", + value = "xmasropelinepole.m2", + text = "xmasropelinepole.m2", + }, + { + fileId = "199612", + value = "xmasstocking01.m2", + text = "xmasstocking01.m2", + }, + { + fileId = "199613", + value = "xmasstocking02.m2", + text = "xmasstocking02.m2", + }, + { + fileId = "199614", + value = "xmasstocking03.m2", + text = "xmasstocking03.m2", + }, + { + fileId = "199615", + value = "xmastree_largealliance01.m2", + text = "xmastree_largealliance01.m2", + }, + { + fileId = "199616", + value = "xmastree_largealliance01white.m2", + text = "xmastree_largealliance01white.m2", + }, + { + fileId = "199617", + value = "xmastree_largehorde01.m2", + text = "xmastree_largehorde01.m2", + }, + { + fileId = "199618", + value = "xmastree_mediumalliance01.m2", + text = "xmastree_mediumalliance01.m2", + }, + { + fileId = "199619", + value = "xmastree_mediumhorde01.m2", + text = "xmastree_mediumhorde01.m2", + }, + }, + value = "christmas", + text = "christmas", + }, + { + children = { + { + fileId = "199632", + value = "crate01.m2", + text = "crate01.m2", + }, + }, + value = "crate01", + text = "crate01", + }, + { + children = { + { + fileId = "199634", + value = "crate02.m2", + text = "crate02.m2", + }, + }, + value = "crate02", + text = "crate02", + }, + { + children = { + { + fileId = "199636", + value = "cratealliancefirstaid01.m2", + text = "cratealliancefirstaid01.m2", + }, + { + fileId = "199639", + value = "cratehordefirstaid01.m2", + text = "cratehordefirstaid01.m2", + }, + }, + value = "cratesfirstaid", + text = "cratesfirstaid", + }, + { + children = { + { + fileId = "199640", + value = "dragonfootsoldierbones.m2", + text = "dragonfootsoldierbones.m2", + }, + }, + value = "creaturedeathskeletons", + text = "creaturedeathskeletons", + }, + { + children = { + { + fileId = "199642", + value = "darkportal01.m2", + text = "darkportal01.m2", + }, + { + fileId = "199643", + value = "darkportal_blasted_fx.m2", + text = "darkportal_blasted_fx.m2", + }, + }, + value = "darkportals", + text = "darkportals", + }, + { + children = { + { + fileId = "199652", + value = "deadtreelog01.m2", + text = "deadtreelog01.m2", + }, + { + fileId = "199653", + value = "deadtreelog02.m2", + text = "deadtreelog02.m2", + }, + { + fileId = "199654", + value = "deadtreelog03.m2", + text = "deadtreelog03.m2", + }, + { + fileId = "199655", + value = "deadtreelog04.m2", + text = "deadtreelog04.m2", + }, + }, + value = "deadtreelogs", + text = "deadtreelogs", + }, + { + children = { + { + fileId = "199660", + value = "bloodelffemaledeathskeleton.m2", + text = "bloodelffemaledeathskeleton.m2", + }, + { + fileId = "199661", + value = "bloodelfmaledeathskeleton.m2", + text = "bloodelfmaledeathskeleton.m2", + }, + { + fileId = "199664", + value = "draeneifemaledeathskeleton.m2", + text = "draeneifemaledeathskeleton.m2", + }, + { + fileId = "199665", + value = "draeneimaledeathskeleton.m2", + text = "draeneimaledeathskeleton.m2", + }, + { + fileId = "199666", + value = "dwarffemaledeathskeleton.m2", + text = "dwarffemaledeathskeleton.m2", + }, + { + fileId = "199667", + value = "dwarfmaledeathskeleton.m2", + text = "dwarfmaledeathskeleton.m2", + }, + { + fileId = "199668", + value = "gnomefemaledeathskeleton.m2", + text = "gnomefemaledeathskeleton.m2", + }, + { + fileId = "199669", + value = "gnomemaledeathskeleton.m2", + text = "gnomemaledeathskeleton.m2", + }, + { + fileId = "323069", + value = "goblinfemaledeathskeleton.m2", + text = "goblinfemaledeathskeleton.m2", + }, + { + fileId = "323070", + value = "goblinmaledeathskeleton.m2", + text = "goblinmaledeathskeleton.m2", + }, + { + fileId = "199670", + value = "humanfemaledeathskeleton.m2", + text = "humanfemaledeathskeleton.m2", + }, + { + fileId = "199671", + value = "humanmaledeathskeleton.m2", + text = "humanmaledeathskeleton.m2", + }, + { + fileId = "199672", + value = "nightelffemaledeathskeleton.m2", + text = "nightelffemaledeathskeleton.m2", + }, + { + fileId = "199673", + value = "nightelfmaledeathskeleton.m2", + text = "nightelfmaledeathskeleton.m2", + }, + { + fileId = "199674", + value = "orcfemaledeathskeleton.m2", + text = "orcfemaledeathskeleton.m2", + }, + { + fileId = "199675", + value = "orcmaledeathskeleton.m2", + text = "orcmaledeathskeleton.m2", + }, + { + fileId = "199676", + value = "scourgefemaledeathskeleton.m2", + text = "scourgefemaledeathskeleton.m2", + }, + { + fileId = "199677", + value = "scourgemaledeathskeleton.m2", + text = "scourgemaledeathskeleton.m2", + }, + { + fileId = "199678", + value = "taurenfemaledeathskeleton.m2", + text = "taurenfemaledeathskeleton.m2", + }, + { + fileId = "199679", + value = "taurenmaledeathskeleton.m2", + text = "taurenmaledeathskeleton.m2", + }, + { + fileId = "199680", + value = "trollfemaledeathskeleton.m2", + text = "trollfemaledeathskeleton.m2", + }, + { + fileId = "199681", + value = "trollmaledeathskeleton.m2", + text = "trollmaledeathskeleton.m2", + }, + }, + value = "deathskeletons", + text = "deathskeletons", + }, + { + children = { + { + fileId = "199683", + value = "directionalmarker.m2", + text = "directionalmarker.m2", + }, + { + fileId = "199684", + value = "directionalmarker02.m2", + text = "directionalmarker02.m2", + }, + }, + value = "directionalmarker", + text = "directionalmarker", + }, + { + children = { + { + fileId = "199686", + value = "doortest01.m2", + text = "doortest01.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "199687", + value = "duelingflag.m2", + text = "duelingflag.m2", + }, + }, + value = "duelingflag", + text = "duelingflag", + }, + { + children = { + { + fileId = "199691", + value = "easteregg01.m2", + text = "easteregg01.m2", + }, + { + fileId = "199693", + value = "easteregg02.m2", + text = "easteregg02.m2", + }, + { + fileId = "199695", + value = "easteregg03.m2", + text = "easteregg03.m2", + }, + { + fileId = "199697", + value = "easteregg04.m2", + text = "easteregg04.m2", + }, + { + fileId = "199699", + value = "easteregg05.m2", + text = "easteregg05.m2", + }, + }, + value = "eastereggs", + text = "eastereggs", + }, + { + children = { + { + fileId = "199701", + value = "spring.m2", + text = "spring.m2", + }, + { + fileId = "199702", + value = "spring02.m2", + text = "spring02.m2", + }, + }, + value = "engineering", + text = "engineering", + }, + { + children = { + { + fileId = "199704", + value = "featherbigblue.m2", + text = "featherbigblue.m2", + }, + { + fileId = "199706", + value = "featherbigbrown.m2", + text = "featherbigbrown.m2", + }, + { + fileId = "199708", + value = "featherbigred.m2", + text = "featherbigred.m2", + }, + }, + value = "feathers", + text = "feathers", + }, + { + children = { + { + fileId = "199710", + value = "fishskel01.m2", + text = "fishskel01.m2", + }, + { + fileId = "199712", + value = "fishskel02.m2", + text = "fishskel02.m2", + }, + }, + value = "fish", + text = "fish", + }, + { + children = { + { + fileId = "199713", + value = "floatingbarrel01.m2", + text = "floatingbarrel01.m2", + }, + { + fileId = "199714", + value = "floatingbarrel02.m2", + text = "floatingbarrel02.m2", + }, + { + fileId = "199715", + value = "floatingboards01.m2", + text = "floatingboards01.m2", + }, + { + fileId = "199716", + value = "floatingboardsburning01.m2", + text = "floatingboardsburning01.m2", + }, + { + fileId = "199717", + value = "floatingcoffin01.m2", + text = "floatingcoffin01.m2", + }, + { + fileId = "199718", + value = "floatingcrate01.m2", + text = "floatingcrate01.m2", + }, + { + fileId = "199719", + value = "floatingtree01.m2", + text = "floatingtree01.m2", + }, + { + fileId = "199720", + value = "floatingtree02.m2", + text = "floatingtree02.m2", + }, + { + fileId = "199721", + value = "floatingtree03.m2", + text = "floatingtree03.m2", + }, + }, + value = "floatingdebris", + text = "floatingdebris", + }, + { + children = { + { + fileId = "199723", + value = "flyingsmallinsects.m2", + text = "flyingsmallinsects.m2", + }, + }, + value = "flyinginsects", + text = "flyinginsects", + }, + { + children = { + { + fileId = "199724", + value = "fruit_apple.m2", + text = "fruit_apple.m2", + }, + { + fileId = "199725", + value = "fruit_banana.m2", + text = "fruit_banana.m2", + }, + { + fileId = "199726", + value = "fruit_bananabunch.m2", + text = "fruit_bananabunch.m2", + }, + { + fileId = "199727", + value = "fruit_melon.m2", + text = "fruit_melon.m2", + }, + { + fileId = "199728", + value = "fruit_melonslice01.m2", + text = "fruit_melonslice01.m2", + }, + { + fileId = "199729", + value = "fruit_melonslice02.m2", + text = "fruit_melonslice02.m2", + }, + { + fileId = "199730", + value = "fruit_orange.m2", + text = "fruit_orange.m2", + }, + { + fileId = "199731", + value = "fruit_orangeslice.m2", + text = "fruit_orangeslice.m2", + }, + { + fileId = "199732", + value = "fruit_pear.m2", + text = "fruit_pear.m2", + }, + { + fileId = "199734", + value = "fruitbowl_apples.m2", + text = "fruitbowl_apples.m2", + }, + { + fileId = "199735", + value = "fruitbowl_empty.m2", + text = "fruitbowl_empty.m2", + }, + { + fileId = "199736", + value = "fruitbowl_mixed.m2", + text = "fruitbowl_mixed.m2", + }, + }, + value = "fruits", + text = "fruits", + }, + { + children = { + { + children = { + { + fileId = "199737", + value = "barrel02.m2", + text = "barrel02.m2", + }, + { + fileId = "199739", + value = "crate03.m2", + text = "crate03.m2", + }, + { + fileId = "199742", + value = "exploding_package.m2", + text = "exploding_package.m2", + }, + { + fileId = "199744", + value = "lichcontainer01.m2", + text = "lichcontainer01.m2", + }, + { + fileId = "199745", + value = "sack01.m2", + text = "sack01.m2", + }, + { + fileId = "199746", + value = "sack02.m2", + text = "sack02.m2", + }, + { + fileId = "199748", + value = "titanchest.m2", + text = "titanchest.m2", + }, + { + fileId = "199751", + value = "titanvase01.m2", + text = "titanvase01.m2", + }, + { + fileId = "199753", + value = "titanvase02.m2", + text = "titanvase02.m2", + }, + }, + value = "containers", + text = "containers", + }, + { + children = { + { + fileId = "199754", + value = "bone01.m2", + text = "bone01.m2", + }, + { + fileId = "199755", + value = "bone02.m2", + text = "bone02.m2", + }, + }, + value = "refuse", + text = "refuse", + }, + }, + value = "furniture", + text = "furniture", + }, + { + children = { + { + fileId = "199756", + value = "gallows01.m2", + text = "gallows01.m2", + }, + }, + value = "gallows", + text = "gallows", + }, + { + children = { + { + fileId = "199757", + value = "graystone01.m2", + text = "graystone01.m2", + }, + { + fileId = "199758", + value = "graystone02.m2", + text = "graystone02.m2", + }, + }, + value = "graystone", + text = "graystone", + }, + { + children = { + { + fileId = "199760", + value = "guildvault_bloodelf_01.m2", + text = "guildvault_bloodelf_01.m2", + }, + { + fileId = "199763", + value = "guildvault_draenei_01.m2", + text = "guildvault_draenei_01.m2", + }, + { + fileId = "199765", + value = "guildvault_dwarf_01.m2", + text = "guildvault_dwarf_01.m2", + }, + { + fileId = "199767", + value = "guildvault_goblin_01.m2", + text = "guildvault_goblin_01.m2", + }, + { + fileId = "199769", + value = "guildvault_human_01.m2", + text = "guildvault_human_01.m2", + }, + { + fileId = "199770", + value = "guildvault_nightelf_01.m2", + text = "guildvault_nightelf_01.m2", + }, + { + fileId = "199772", + value = "guildvault_orc_01.m2", + text = "guildvault_orc_01.m2", + }, + { + fileId = "199777", + value = "guildvault_tauren_01.m2", + text = "guildvault_tauren_01.m2", + }, + { + fileId = "199779", + value = "guildvault_undercity_01.m2", + text = "guildvault_undercity_01.m2", + }, + }, + value = "guildbank", + text = "guildbank", + }, + { + children = { + { + fileId = "199786", + value = "burningash01.m2", + text = "burningash01.m2", + }, + { + fileId = "199787", + value = "burningwickerman01.m2", + text = "burningwickerman01.m2", + }, + { + fileId = "199788", + value = "hangingskulllight01.m2", + text = "hangingskulllight01.m2", + }, + { + fileId = "199789", + value = "hangingskulllight02.m2", + text = "hangingskulllight02.m2", + }, + }, + value = "halloween", + text = "halloween", + }, + { + children = { + { + fileId = "199795", + value = "hidestack01.m2", + text = "hidestack01.m2", + }, + { + fileId = "199796", + value = "hidestack02.m2", + text = "hidestack02.m2", + }, + }, + value = "hides", + text = "hides", + }, + { + children = { + { + fileId = "199797", + value = "bigcandle.m2", + text = "bigcandle.m2", + }, + { + fileId = "199801", + value = "candelabra01.m2", + text = "candelabra01.m2", + }, + { + fileId = "199802", + value = "candelabra02.m2", + text = "candelabra02.m2", + }, + { + fileId = "199803", + value = "candelabratallwall01.m2", + text = "candelabratallwall01.m2", + }, + { + fileId = "199804", + value = "candelabratallwall02.m2", + text = "candelabratallwall02.m2", + }, + { + fileId = "199806", + value = "candle01.m2", + text = "candle01.m2", + }, + { + fileId = "199807", + value = "candle02.m2", + text = "candle02.m2", + }, + { + fileId = "199808", + value = "candle03.m2", + text = "candle03.m2", + }, + { + fileId = "199809", + value = "candleblack01.m2", + text = "candleblack01.m2", + }, + { + fileId = "199810", + value = "candleoff01.m2", + text = "candleoff01.m2", + }, + { + fileId = "199811", + value = "candleoff02.m2", + text = "candleoff02.m2", + }, + { + fileId = "199812", + value = "candleoff03.m2", + text = "candleoff03.m2", + }, + { + fileId = "199813", + value = "chandelier01.m2", + text = "chandelier01.m2", + }, + { + fileId = "199815", + value = "freestandingtorch01.m2", + text = "freestandingtorch01.m2", + }, + { + fileId = "199816", + value = "freestandingtorch02.m2", + text = "freestandingtorch02.m2", + }, + { + fileId = "199817", + value = "freestandingtorch04_giant.m2", + text = "freestandingtorch04_giant.m2", + }, + { + fileId = "199818", + value = "freestandingtorch04_huge.m2", + text = "freestandingtorch04_huge.m2", + }, + { + fileId = "199819", + value = "freestandingtorch04_hugeblue.m2", + text = "freestandingtorch04_hugeblue.m2", + }, + { + fileId = "199820", + value = "generaltorch01.m2", + text = "generaltorch01.m2", + }, + { + fileId = "199821", + value = "generaltorch02.m2", + text = "generaltorch02.m2", + }, + { + fileId = "199823", + value = "torch.m2", + text = "torch.m2", + }, + { + fileId = "199825", + value = "torch_out.m2", + text = "torch_out.m2", + }, + }, + value = "lights", + text = "lights", + }, + { + children = { + { + fileId = "199829", + value = "firecrackerstring_blue01.m2", + text = "firecrackerstring_blue01.m2", + }, + { + fileId = "199830", + value = "firecrackerstring_red01.m2", + text = "firecrackerstring_red01.m2", + }, + { + fileId = "199832", + value = "luckymoneyenvelope_01.m2", + text = "luckymoneyenvelope_01.m2", + }, + { + fileId = "199834", + value = "lunarnewyear_heroportrait_dw.m2", + text = "lunarnewyear_heroportrait_dw.m2", + }, + { + fileId = "199836", + value = "lunarnewyear_heroportrait_gn.m2", + text = "lunarnewyear_heroportrait_gn.m2", + }, + { + fileId = "199838", + value = "lunarnewyear_heroportrait_hu.m2", + text = "lunarnewyear_heroportrait_hu.m2", + }, + { + fileId = "199840", + value = "lunarnewyear_heroportrait_ne.m2", + text = "lunarnewyear_heroportrait_ne.m2", + }, + { + fileId = "199842", + value = "lunarnewyear_heroportrait_or.m2", + text = "lunarnewyear_heroportrait_or.m2", + }, + { + fileId = "199844", + value = "lunarnewyear_heroportrait_sc.m2", + text = "lunarnewyear_heroportrait_sc.m2", + }, + { + fileId = "199846", + value = "lunarnewyear_heroportrait_ta.m2", + text = "lunarnewyear_heroportrait_ta.m2", + }, + { + fileId = "199848", + value = "lunarnewyear_heroportrait_tr.m2", + text = "lunarnewyear_heroportrait_tr.m2", + }, + { + fileId = "199849", + value = "lunarnewyearbanner_alliance_hanging.m2", + text = "lunarnewyearbanner_alliance_hanging.m2", + }, + { + fileId = "199850", + value = "lunarnewyearbanner_alliance_hanging02.m2", + text = "lunarnewyearbanner_alliance_hanging02.m2", + }, + { + fileId = "199851", + value = "lunarnewyearbanner_alliance_standing.m2", + text = "lunarnewyearbanner_alliance_standing.m2", + }, + { + fileId = "199852", + value = "lunarnewyearbanner_horde_hanging.m2", + text = "lunarnewyearbanner_horde_hanging.m2", + }, + { + fileId = "199853", + value = "lunarnewyearbanner_horde_hanging02.m2", + text = "lunarnewyearbanner_horde_hanging02.m2", + }, + { + fileId = "199854", + value = "lunarnewyearbanner_horde_standing.m2", + text = "lunarnewyearbanner_horde_standing.m2", + }, + { + fileId = "199855", + value = "lunarnewyearlantern_alliance_hanging.m2", + text = "lunarnewyearlantern_alliance_hanging.m2", + }, + { + fileId = "199856", + value = "lunarnewyearlantern_alliance_standing.m2", + text = "lunarnewyearlantern_alliance_standing.m2", + }, + { + fileId = "199857", + value = "lunarnewyearlantern_horde_hanging.m2", + text = "lunarnewyearlantern_horde_hanging.m2", + }, + { + fileId = "199858", + value = "lunarnewyearlantern_horde_standing.m2", + text = "lunarnewyearlantern_horde_standing.m2", + }, + }, + value = "lunarnewyear", + text = "lunarnewyear", + }, + { + children = { + { + fileId = "199860", + value = "metalbars01copper.m2", + text = "metalbars01copper.m2", + }, + { + fileId = "199861", + value = "metalbars01iron.m2", + text = "metalbars01iron.m2", + }, + { + fileId = "199862", + value = "metalbars01mithril.m2", + text = "metalbars01mithril.m2", + }, + { + fileId = "199863", + value = "metalbars01truesilver.m2", + text = "metalbars01truesilver.m2", + }, + { + fileId = "199867", + value = "metalbarstack01copper.m2", + text = "metalbarstack01copper.m2", + }, + { + fileId = "199868", + value = "metalbarstack01iron.m2", + text = "metalbarstack01iron.m2", + }, + { + fileId = "199869", + value = "metalbarstack01mithril.m2", + text = "metalbarstack01mithril.m2", + }, + { + fileId = "199870", + value = "metalbarstack01truesilver.m2", + text = "metalbarstack01truesilver.m2", + }, + { + fileId = "199871", + value = "metalbarstack02copper.m2", + text = "metalbarstack02copper.m2", + }, + { + fileId = "199872", + value = "metalbarstack02iron.m2", + text = "metalbarstack02iron.m2", + }, + { + fileId = "199873", + value = "metalbarstack02mithril.m2", + text = "metalbarstack02mithril.m2", + }, + { + fileId = "199874", + value = "metalbarstack02truesilver.m2", + text = "metalbarstack02truesilver.m2", + }, + }, + value = "metalbars", + text = "metalbars", + }, + { + children = { + { + children = { + { + fileId = "199876", + value = "caveminecar01.m2", + text = "caveminecar01.m2", + }, + { + fileId = "199880", + value = "caveminecarwrecked01.m2", + text = "caveminecarwrecked01.m2", + }, + { + fileId = "199881", + value = "caveminecarwrecked02.m2", + text = "caveminecarwrecked02.m2", + }, + { + fileId = "199882", + value = "caveminepulley01.m2", + text = "caveminepulley01.m2", + }, + { + fileId = "199883", + value = "caveminepulley02.m2", + text = "caveminepulley02.m2", + }, + }, + value = "minecars", + text = "minecars", + }, + { + children = { + { + fileId = "199885", + value = "pulley.m2", + text = "pulley.m2", + }, + }, + value = "pulleys", + text = "pulleys", + }, + { + children = { + { + fileId = "199886", + value = "caveminewheelbarrow01.m2", + text = "caveminewheelbarrow01.m2", + }, + }, + value = "wheelbarrow", + text = "wheelbarrow", + }, + }, + value = "misc", + text = "misc", + }, + { + children = { + { + fileId = "199889", + value = "beerfest_banner01.m2", + text = "beerfest_banner01.m2", + }, + { + fileId = "199891", + value = "beerfest_banner02.m2", + text = "beerfest_banner02.m2", + }, + { + fileId = "199892", + value = "beerfest_beervendor.m2", + text = "beerfest_beervendor.m2", + }, + { + fileId = "199893", + value = "beerfest_foodtent.m2", + text = "beerfest_foodtent.m2", + }, + { + fileId = "199894", + value = "beerfest_opentent.m2", + text = "beerfest_opentent.m2", + }, + { + fileId = "199896", + value = "beerfest_wagon.m2", + text = "beerfest_wagon.m2", + }, + { + fileId = "199897", + value = "beerfest_wagon_full.m2", + text = "beerfest_wagon_full.m2", + }, + { + fileId = "199901", + value = "flamingpumpkinhead.m2", + text = "flamingpumpkinhead.m2", + }, + { + fileId = "199902", + value = "pumpkinhead.m2", + text = "pumpkinhead.m2", + }, + }, + value = "oktoberfest", + text = "oktoberfest", + }, + { + children = { + { + fileId = "199904", + value = "ashenvalewisps.m2", + text = "ashenvalewisps.m2", + }, + { + fileId = "199905", + value = "aurablue.m2", + text = "aurablue.m2", + }, + { + fileId = "199906", + value = "aurabluehuge.m2", + text = "aurabluehuge.m2", + }, + { + fileId = "199907", + value = "aurablueshort.m2", + text = "aurablueshort.m2", + }, + { + fileId = "199908", + value = "aurabluetall.m2", + text = "aurabluetall.m2", + }, + { + fileId = "199909", + value = "aurablueverytall.m2", + text = "aurablueverytall.m2", + }, + { + fileId = "199910", + value = "auragreen.m2", + text = "auragreen.m2", + }, + { + fileId = "199911", + value = "auragreenshort.m2", + text = "auragreenshort.m2", + }, + { + fileId = "199912", + value = "auragreentall.m2", + text = "auragreentall.m2", + }, + { + fileId = "199913", + value = "auragreenverytall.m2", + text = "auragreenverytall.m2", + }, + { + fileId = "199914", + value = "aurapurple.m2", + text = "aurapurple.m2", + }, + { + fileId = "199915", + value = "aurapurpleshort.m2", + text = "aurapurpleshort.m2", + }, + { + fileId = "199916", + value = "aurapurpletall.m2", + text = "aurapurpletall.m2", + }, + { + fileId = "199917", + value = "aurapurpleverytall.m2", + text = "aurapurpleverytall.m2", + }, + { + fileId = "199918", + value = "aurared.m2", + text = "aurared.m2", + }, + { + fileId = "199919", + value = "auraredhuge.m2", + text = "auraredhuge.m2", + }, + { + fileId = "199920", + value = "auraredshort.m2", + text = "auraredshort.m2", + }, + { + fileId = "199921", + value = "auraredtall.m2", + text = "auraredtall.m2", + }, + { + fileId = "199922", + value = "auraredverytall.m2", + text = "auraredverytall.m2", + }, + { + fileId = "199923", + value = "aurayellow.m2", + text = "aurayellow.m2", + }, + { + fileId = "199924", + value = "aurayellowhuge.m2", + text = "aurayellowhuge.m2", + }, + { + fileId = "199925", + value = "aurayellowshort.m2", + text = "aurayellowshort.m2", + }, + { + fileId = "199926", + value = "aurayellowtall.m2", + text = "aurayellowtall.m2", + }, + { + fileId = "199927", + value = "aurayellowverytall.m2", + text = "aurayellowverytall.m2", + }, + { + fileId = "199929", + value = "blacksmith_smoke.m2", + text = "blacksmith_smoke.m2", + }, + { + fileId = "199930", + value = "blastedlandslightningbolt01.m2", + text = "blastedlandslightningbolt01.m2", + }, + { + fileId = "199932", + value = "bubbles01.m2", + text = "bubbles01.m2", + }, + { + fileId = "199933", + value = "bubblesb.m2", + text = "bubblesb.m2", + }, + { + fileId = "199934", + value = "bubblesb_bigemitter.m2", + text = "bubblesb_bigemitter.m2", + }, + { + fileId = "199935", + value = "ceilingdustemitter.m2", + text = "ceilingdustemitter.m2", + }, + { + fileId = "199938", + value = "druidwisp01.m2", + text = "druidwisp01.m2", + }, + { + fileId = "199939", + value = "dustwallowgroundfog.m2", + text = "dustwallowgroundfog.m2", + }, + { + fileId = "199940", + value = "dustwallowgroundfogplane.m2", + text = "dustwallowgroundfogplane.m2", + }, + { + fileId = "199941", + value = "feralaslightblue.m2", + text = "feralaslightblue.m2", + }, + { + fileId = "199942", + value = "feralaslightgreen.m2", + text = "feralaslightgreen.m2", + }, + { + fileId = "199944", + value = "feralaslightpurple.m2", + text = "feralaslightpurple.m2", + }, + { + fileId = "199945", + value = "feralaslightyellow.m2", + text = "feralaslightyellow.m2", + }, + { + fileId = "199946", + value = "flamecircle.m2", + text = "flamecircle.m2", + }, + { + fileId = "199947", + value = "flyswarms.m2", + text = "flyswarms.m2", + }, + { + fileId = "199948", + value = "fogbox.m2", + text = "fogbox.m2", + }, + { + fileId = "199949", + value = "fountainparticles.m2", + text = "fountainparticles.m2", + }, + { + fileId = "199950", + value = "greengroundfog.m2", + text = "greengroundfog.m2", + }, + { + fileId = "199951", + value = "greygroundfog.m2", + text = "greygroundfog.m2", + }, + { + fileId = "199954", + value = "housesmoke.m2", + text = "housesmoke.m2", + }, + { + fileId = "199956", + value = "lavaparticlesplash.m2", + text = "lavaparticlesplash.m2", + }, + { + fileId = "199957", + value = "lavasmokeemitter.m2", + text = "lavasmokeemitter.m2", + }, + { + fileId = "199958", + value = "lavasmokeemitterb.m2", + text = "lavasmokeemitterb.m2", + }, + { + fileId = "199959", + value = "lavasplashparticle.m2", + text = "lavasplashparticle.m2", + }, + { + fileId = "199962", + value = "mountaincaveriver.m2", + text = "mountaincaveriver.m2", + }, + { + fileId = "199964", + value = "orangegroundfog.m2", + text = "orangegroundfog.m2", + }, + { + fileId = "199965", + value = "outlanddemonglow.m2", + text = "outlanddemonglow.m2", + }, + { + fileId = "199967", + value = "purplegroundfog.m2", + text = "purplegroundfog.m2", + }, + { + fileId = "199968", + value = "shadowfangfog01.m2", + text = "shadowfangfog01.m2", + }, + { + fileId = "199969", + value = "shrineaurablue.m2", + text = "shrineaurablue.m2", + }, + { + fileId = "199970", + value = "steam02.m2", + text = "steam02.m2", + }, + { + fileId = "199971", + value = "steam03.m2", + text = "steam03.m2", + }, + { + fileId = "199972", + value = "steam04.m2", + text = "steam04.m2", + }, + { + fileId = "199973", + value = "sunkenflame01.m2", + text = "sunkenflame01.m2", + }, + }, + value = "particleemitters", + text = "particleemitters", + }, + { + children = { + { + fileId = "199975", + value = "plainrune.m2", + text = "plainrune.m2", + }, + { + fileId = "199976", + value = "runestone.m2", + text = "runestone.m2", + }, + }, + value = "plainrune", + text = "plainrune", + }, + { + children = { + { + fileId = "199981", + value = "plaquebronze01.m2", + text = "plaquebronze01.m2", + }, + { + fileId = "199983", + value = "plaquebronze02.m2", + text = "plaquebronze02.m2", + }, + { + fileId = "199985", + value = "plaquesilver01.m2", + text = "plaquesilver01.m2", + }, + { + fileId = "199987", + value = "plaquesilver02.m2", + text = "plaquesilver02.m2", + }, + { + fileId = "199989", + value = "plaquestone01.m2", + text = "plaquestone01.m2", + }, + }, + value = "plaque", + text = "plaque", + }, + { + children = { + { + fileId = "199991", + value = "postboxbloodelf.m2", + text = "postboxbloodelf.m2", + }, + { + fileId = "199993", + value = "postboxdwarf.m2", + text = "postboxdwarf.m2", + }, + { + fileId = "199996", + value = "postboxgnome.m2", + text = "postboxgnome.m2", + }, + { + fileId = "199999", + value = "postboxhuman.m2", + text = "postboxhuman.m2", + }, + { + fileId = "200004", + value = "postboxnightelf.m2", + text = "postboxnightelf.m2", + }, + { + fileId = "200007", + value = "postboxorc.m2", + text = "postboxorc.m2", + }, + { + fileId = "200010", + value = "postboxtauren.m2", + text = "postboxtauren.m2", + }, + { + fileId = "200012", + value = "postboxtroll.m2", + text = "postboxtroll.m2", + }, + { + fileId = "200014", + value = "postboxundead.m2", + text = "postboxundead.m2", + }, + }, + value = "postboxes", + text = "postboxes", + }, + { + children = { + { + fileId = "200024", + value = "shamanstone01.m2", + text = "shamanstone01.m2", + }, + }, + value = "shamanstone", + text = "shamanstone", + }, + { + children = { + { + fileId = "200030", + value = "rackshieldalliance01.m2", + text = "rackshieldalliance01.m2", + }, + { + fileId = "200031", + value = "rackshieldalliance02.m2", + text = "rackshieldalliance02.m2", + }, + { + fileId = "200032", + value = "rackshieldhorde01.m2", + text = "rackshieldhorde01.m2", + }, + { + fileId = "200033", + value = "rackshieldhorde02.m2", + text = "rackshieldhorde02.m2", + }, + }, + value = "shieldracks", + text = "shieldracks", + }, + { + children = { + { + children = { + { + fileId = "200046", + value = "transportship_ne_doodadsmoving.m2", + text = "transportship_ne_doodadsmoving.m2", + }, + { + fileId = "200047", + value = "transportship_ne_doodadsstationary.m2", + text = "transportship_ne_doodadsstationary.m2", + }, + { + fileId = "200048", + value = "transportship_ne_doodadsstationaryplanked.m2", + text = "transportship_ne_doodadsstationaryplanked.m2", + }, + { + fileId = "200049", + value = "transportship_sails.m2", + text = "transportship_sails.m2", + }, + }, + value = "shipanimation", + text = "shipanimation", + }, + { + children = { + { + fileId = "200052", + value = "shipramp01.m2", + text = "shipramp01.m2", + }, + }, + value = "shipramps", + text = "shipramps", + }, + { + children = { + { + fileId = "200053", + value = "zepanimation.m2", + text = "zepanimation.m2", + }, + }, + value = "zeppelinanimation", + text = "zeppelinanimation", + }, + }, + value = "ships", + text = "ships", + }, + { + children = { + { + fileId = "200056", + value = "chainedskeleton01.m2", + text = "chainedskeleton01.m2", + }, + { + fileId = "200057", + value = "chainedskeleton02.m2", + text = "chainedskeleton02.m2", + }, + { + fileId = "200058", + value = "chainedskeleton03.m2", + text = "chainedskeleton03.m2", + }, + { + fileId = "200059", + value = "chainedskeleton04.m2", + text = "chainedskeleton04.m2", + }, + { + fileId = "200060", + value = "chainedskeleton05.m2", + text = "chainedskeleton05.m2", + }, + { + fileId = "200061", + value = "chainedskeleton06.m2", + text = "chainedskeleton06.m2", + }, + { + fileId = "200062", + value = "lightskeletonlaying01.m2", + text = "lightskeletonlaying01.m2", + }, + { + fileId = "200063", + value = "lightskeletonlaying02.m2", + text = "lightskeletonlaying02.m2", + }, + { + fileId = "200064", + value = "lightskeletonlaying03.m2", + text = "lightskeletonlaying03.m2", + }, + { + fileId = "200065", + value = "lightskeletonsitting01.m2", + text = "lightskeletonsitting01.m2", + }, + { + fileId = "200066", + value = "lightskeletonsitting02.m2", + text = "lightskeletonsitting02.m2", + }, + { + fileId = "200067", + value = "lightskeletonsitting03.m2", + text = "lightskeletonsitting03.m2", + }, + { + fileId = "200068", + value = "lightskeletonsitting04.m2", + text = "lightskeletonsitting04.m2", + }, + { + fileId = "200070", + value = "skeletalservant01.m2", + text = "skeletalservant01.m2", + }, + { + fileId = "200071", + value = "skeletalservant02.m2", + text = "skeletalservant02.m2", + }, + { + fileId = "200072", + value = "skeletalservant03.m2", + text = "skeletalservant03.m2", + }, + }, + value = "skeletons", + text = "skeletons", + }, + { + children = { + { + fileId = "200078", + value = "summerfest_banner_01.m2", + text = "summerfest_banner_01.m2", + }, + { + fileId = "200079", + value = "summerfest_bonfire_base_01.m2", + text = "summerfest_bonfire_base_01.m2", + }, + { + fileId = "200080", + value = "summerfest_bonfire_large01.m2", + text = "summerfest_bonfire_large01.m2", + }, + { + fileId = "200081", + value = "summerfest_bonfire_large02.m2", + text = "summerfest_bonfire_large02.m2", + }, + { + fileId = "200082", + value = "summerfest_bonfire_large03.m2", + text = "summerfest_bonfire_large03.m2", + }, + { + fileId = "200083", + value = "summerfest_bonfire_large04.m2", + text = "summerfest_bonfire_large04.m2", + }, + { + fileId = "200084", + value = "summerfest_bonfire_off.m2", + text = "summerfest_bonfire_off.m2", + }, + { + fileId = "200085", + value = "summerfest_bonfire_on.m2", + text = "summerfest_bonfire_on.m2", + }, + { + fileId = "200086", + value = "summerfest_bonfire_small01.m2", + text = "summerfest_bonfire_small01.m2", + }, + { + fileId = "200087", + value = "summerfest_bonfire_small02.m2", + text = "summerfest_bonfire_small02.m2", + }, + { + fileId = "200088", + value = "summerfest_bonfire_small03.m2", + text = "summerfest_bonfire_small03.m2", + }, + { + fileId = "200089", + value = "summerfest_bonfire_small04.m2", + text = "summerfest_bonfire_small04.m2", + }, + { + fileId = "200090", + value = "summerfest_brazer_nocollision.m2", + text = "summerfest_brazer_nocollision.m2", + }, + { + fileId = "200091", + value = "summerfest_brazier_01.m2", + text = "summerfest_brazier_01.m2", + }, + { + fileId = "200092", + value = "summerfest_brazier_02.m2", + text = "summerfest_brazier_02.m2", + }, + { + fileId = "200093", + value = "summerfest_brazier_03.m2", + text = "summerfest_brazier_03.m2", + }, + { + fileId = "200094", + value = "summerfest_candle_01.m2", + text = "summerfest_candle_01.m2", + }, + { + fileId = "200095", + value = "summerfest_candle_02.m2", + text = "summerfest_candle_02.m2", + }, + { + fileId = "200096", + value = "summerfest_crate.m2", + text = "summerfest_crate.m2", + }, + { + fileId = "200098", + value = "summerfest_icestone_01.m2", + text = "summerfest_icestone_01.m2", + }, + { + fileId = "200099", + value = "summerfest_maypole.m2", + text = "summerfest_maypole.m2", + }, + { + fileId = "200101", + value = "summerfest_pavilion_01.m2", + text = "summerfest_pavilion_01.m2", + }, + { + fileId = "200102", + value = "summerfest_ribbon01huge.m2", + text = "summerfest_ribbon01huge.m2", + }, + { + fileId = "200103", + value = "summerfest_ribbon02.m2", + text = "summerfest_ribbon02.m2", + }, + { + fileId = "200104", + value = "summerfest_streamers.m2", + text = "summerfest_streamers.m2", + }, + { + fileId = "200106", + value = "summerfest_streamersx3.m2", + text = "summerfest_streamersx3.m2", + }, + { + fileId = "200107", + value = "summerfest_wreath01.m2", + text = "summerfest_wreath01.m2", + }, + { + fileId = "200108", + value = "summerfest_wreathfloating.m2", + text = "summerfest_wreathfloating.m2", + }, + { + fileId = "200109", + value = "summerfest_wreathhanginghuge.m2", + text = "summerfest_wreathhanginghuge.m2", + }, + }, + value = "summerfestival", + text = "summerfestival", + }, + { + children = { + { + fileId = "200117", + value = "testball.m2", + text = "testball.m2", + }, + }, + value = "testball", + text = "testball", + }, + { + children = { + { + fileId = "200118", + value = "g_cornucopia.m2", + text = "g_cornucopia.m2", + }, + { + fileId = "200119", + value = "g_indiancorn_basket.m2", + text = "g_indiancorn_basket.m2", + }, + { + fileId = "200120", + value = "g_pilgrimhat.m2", + text = "g_pilgrimhat.m2", + }, + { + fileId = "200121", + value = "g_pumpkin.m2", + text = "g_pumpkin.m2", + }, + { + fileId = "200122", + value = "g_pumpkinwhat.m2", + text = "g_pumpkinwhat.m2", + }, + { + fileId = "200123", + value = "g_squash01.m2", + text = "g_squash01.m2", + }, + { + fileId = "200124", + value = "g_squash02.m2", + text = "g_squash02.m2", + }, + { + fileId = "200125", + value = "g_squash03.m2", + text = "g_squash03.m2", + }, + { + fileId = "200126", + value = "g_squash04.m2", + text = "g_squash04.m2", + }, + { + fileId = "200127", + value = "g_squashgreen.m2", + text = "g_squashgreen.m2", + }, + { + fileId = "200128", + value = "g_squashlong.m2", + text = "g_squashlong.m2", + }, + }, + value = "thanksgiving", + text = "thanksgiving", + }, + { + children = { + { + fileId = "2199319", + value = "spellobject_invisibletrap.m2", + text = "spellobject_invisibletrap.m2", + }, + }, + value = "traps", + text = "traps", + }, + { + children = { + { + fileId = "200135", + value = "goldpilelarge01.m2", + text = "goldpilelarge01.m2", + }, + { + fileId = "200136", + value = "goldpilemedium01.m2", + text = "goldpilemedium01.m2", + }, + { + fileId = "200137", + value = "goldpilesmall01.m2", + text = "goldpilesmall01.m2", + }, + }, + value = "treasurepiles", + text = "treasurepiles", + }, + { + children = { + { + fileId = "200143", + value = "gryphonroost_ruined.m2", + text = "gryphonroost_ruined.m2", + }, + { + fileId = "200151", + value = "tugofwar_dustextractor.m2", + text = "tugofwar_dustextractor.m2", + }, + { + fileId = "200152", + value = "tugofwar_reddustbag01.m2", + text = "tugofwar_reddustbag01.m2", + }, + { + fileId = "200153", + value = "tugofwar_redspiceexplosion.m2", + text = "tugofwar_redspiceexplosion.m2", + }, + { + fileId = "200154", + value = "tugofwar_redspicegeyser.m2", + text = "tugofwar_redspicegeyser.m2", + }, + { + fileId = "200155", + value = "tugofwar_redspicemissile.m2", + text = "tugofwar_redspicemissile.m2", + }, + { + fileId = "200156", + value = "tugofwar_redspicepile.m2", + text = "tugofwar_redspicepile.m2", + }, + }, + value = "tugofwar", + text = "tugofwar", + }, + { + children = { + { + fileId = "200163", + value = "valentinebasket_01.m2", + text = "valentinebasket_01.m2", + }, + { + fileId = "200165", + value = "valentines_blanket.m2", + text = "valentines_blanket.m2", + }, + { + fileId = "200167", + value = "valentinesarc.m2", + text = "valentinesarc.m2", + }, + { + fileId = "200170", + value = "valentinescandle.m2", + text = "valentinescandle.m2", + }, + { + fileId = "200172", + value = "valentineschocolate.m2", + text = "valentineschocolate.m2", + }, + { + fileId = "200174", + value = "valentineschocolategreen.m2", + text = "valentineschocolategreen.m2", + }, + { + fileId = "200176", + value = "valentineschocolatepurple.m2", + text = "valentineschocolatepurple.m2", + }, + { + fileId = "200178", + value = "valentineschocolateyellow.m2", + text = "valentineschocolateyellow.m2", + }, + { + fileId = "200180", + value = "valentinescolognebottle.m2", + text = "valentinescolognebottle.m2", + }, + { + fileId = "200181", + value = "valentinescrate.m2", + text = "valentinescrate.m2", + }, + { + fileId = "200183", + value = "valentinesperfumebottle.m2", + text = "valentinesperfumebottle.m2", + }, + { + fileId = "200185", + value = "valentinesplant.m2", + text = "valentinesplant.m2", + }, + { + fileId = "200187", + value = "valentinesribbon01.m2", + text = "valentinesribbon01.m2", + }, + { + fileId = "200188", + value = "valentinesribbon01huge.m2", + text = "valentinesribbon01huge.m2", + }, + { + fileId = "200189", + value = "valentinesribbon02.m2", + text = "valentinesribbon02.m2", + }, + { + fileId = "200190", + value = "valentinesstreamers.m2", + text = "valentinesstreamers.m2", + }, + { + fileId = "200191", + value = "valentinesstreamersx3.m2", + text = "valentinesstreamersx3.m2", + }, + { + fileId = "200192", + value = "valentineswreath01.m2", + text = "valentineswreath01.m2", + }, + { + fileId = "200193", + value = "valentineswreath01huge.m2", + text = "valentineswreath01huge.m2", + }, + { + fileId = "200194", + value = "valentineswreathfloating.m2", + text = "valentineswreathfloating.m2", + }, + { + fileId = "200195", + value = "valentineswreathhanging.m2", + text = "valentineswreathhanging.m2", + }, + { + fileId = "200196", + value = "valentineswreathhanginghuge.m2", + text = "valentineswreathhanginghuge.m2", + }, + { + fileId = "200197", + value = "valentineumbrella_01.m2", + text = "valentineumbrella_01.m2", + }, + }, + value = "valentinesday", + text = "valentinesday", + }, + { + children = { + { + children = { + { + fileId = "200200", + value = "cavewallbones01.m2", + text = "cavewallbones01.m2", + }, + { + fileId = "200201", + value = "cavewallbones02.m2", + text = "cavewallbones02.m2", + }, + }, + value = "bones", + text = "bones", + }, + }, + value = "wall", + text = "wall", + }, + { + children = { + { + fileId = "200202", + value = "newwaterfall.m2", + text = "newwaterfall.m2", + }, + { + fileId = "200203", + value = "waterfall-long.m2", + text = "waterfall-long.m2", + }, + }, + value = "waterfall", + text = "waterfall", + }, + { + children = { + { + fileId = "200204", + value = "damwaterfall01.m2", + text = "damwaterfall01.m2", + }, + }, + value = "waterfalls", + text = "waterfalls", + }, + { + children = { + { + fileId = "200208", + value = "weaponcratealliancesword.m2", + text = "weaponcratealliancesword.m2", + }, + { + fileId = "200209", + value = "weaponcrateallianceswordlid.m2", + text = "weaponcrateallianceswordlid.m2", + }, + { + fileId = "200210", + value = "weaponcrateallianceswordopen.m2", + text = "weaponcrateallianceswordopen.m2", + }, + { + fileId = "200211", + value = "weaponcratehordeaxe.m2", + text = "weaponcratehordeaxe.m2", + }, + { + fileId = "200212", + value = "weaponcratehordeaxelid.m2", + text = "weaponcratehordeaxelid.m2", + }, + { + fileId = "200213", + value = "weaponcratehordeaxeopen.m2", + text = "weaponcratehordeaxeopen.m2", + }, + }, + value = "weaponcrates", + text = "weaponcrates", + }, + { + children = { + { + fileId = "200214", + value = "bone_bow.m2", + text = "bone_bow.m2", + }, + { + fileId = "200215", + value = "bone_shield.m2", + text = "bone_shield.m2", + }, + { + fileId = "200217", + value = "boneclub01.m2", + text = "boneclub01.m2", + }, + { + fileId = "200218", + value = "caveman_club01.m2", + text = "caveman_club01.m2", + }, + { + fileId = "200219", + value = "flint_club01.m2", + text = "flint_club01.m2", + }, + { + fileId = "200220", + value = "flint_spear02.m2", + text = "flint_spear02.m2", + }, + { + fileId = "200223", + value = "flintspear01.m2", + text = "flintspear01.m2", + }, + { + fileId = "200225", + value = "knotted_club01.m2", + text = "knotted_club01.m2", + }, + { + fileId = "200227", + value = "leather_shield.m2", + text = "leather_shield.m2", + }, + { + fileId = "200228", + value = "naga_trident.m2", + text = "naga_trident.m2", + }, + { + fileId = "200233", + value = "skullclub01.m2", + text = "skullclub01.m2", + }, + { + fileId = "200234", + value = "skullspear01.m2", + text = "skullspear01.m2", + }, + { + fileId = "200235", + value = "spiked_club01.m2", + text = "spiked_club01.m2", + }, + { + fileId = "200237", + value = "steelspear01.m2", + text = "steelspear01.m2", + }, + { + fileId = "200238", + value = "stone_club01.m2", + text = "stone_club01.m2", + }, + { + fileId = "200239", + value = "stone_spear01.m2", + text = "stone_spear01.m2", + }, + { + fileId = "200243", + value = "wicker_bow.m2", + text = "wicker_bow.m2", + }, + { + fileId = "200244", + value = "wicker_shield.m2", + text = "wicker_shield.m2", + }, + { + fileId = "200246", + value = "woodclub01.m2", + text = "woodclub01.m2", + }, + }, + value = "weapons", + text = "weapons", + }, + { + children = { + { + fileId = "200252", + value = "well.m2", + text = "well.m2", + }, + }, + value = "well", + text = "well", + }, + { + children = { + { + fileId = "200254", + value = "dustwestfall.m2", + text = "dustwestfall.m2", + }, + { + fileId = "200256", + value = "snowdunmorogh.m2", + text = "snowdunmorogh.m2", + }, + }, + value = "windblown", + text = "windblown", + }, + { + children = { + { + fileId = "200257", + value = "windowbeam01.m2", + text = "windowbeam01.m2", + }, + { + fileId = "200258", + value = "windowbeam02.m2", + text = "windowbeam02.m2", + }, + }, + value = "windowbeam", + text = "windowbeam", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "200259", + value = "piratelandmark.m2", + text = "piratelandmark.m2", + }, + }, + value = "piratelandmarks", + text = "piratelandmarks", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "pirate", + text = "pirate", + }, + { + children = { + { + children = { + { + fileId = "200264", + value = "battlefieldbanner_state_base_plaguelands.m2", + text = "battlefieldbanner_state_base_plaguelands.m2", + }, + { + fileId = "200265", + value = "battlefieldbanner_state_flaga_plaguelands.m2", + text = "battlefieldbanner_state_flaga_plaguelands.m2", + }, + { + fileId = "200266", + value = "battlefieldbanner_state_flagh_plaguelands.m2", + text = "battlefieldbanner_state_flagh_plaguelands.m2", + }, + { + fileId = "200267", + value = "battlefieldbanner_state_flagn_plaguelands.m2", + text = "battlefieldbanner_state_flagn_plaguelands.m2", + }, + { + fileId = "200268", + value = "battlefieldbanneralliance.m2", + text = "battlefieldbanneralliance.m2", + }, + { + fileId = "200269", + value = "battlefieldbanneralliance_static.m2", + text = "battlefieldbanneralliance_static.m2", + }, + { + fileId = "200270", + value = "battlefieldbanneralliancebw.m2", + text = "battlefieldbanneralliancebw.m2", + }, + { + fileId = "200271", + value = "battlefieldbanneralliancebwflagonly.m2", + text = "battlefieldbanneralliancebwflagonly.m2", + }, + { + fileId = "200272", + value = "battlefieldbannerallianceflagonly.m2", + text = "battlefieldbannerallianceflagonly.m2", + }, + { + fileId = "200273", + value = "battlefieldbanneralliancelarge.m2", + text = "battlefieldbanneralliancelarge.m2", + }, + { + fileId = "200274", + value = "battlefieldbanneralliancelargebw.m2", + text = "battlefieldbanneralliancelargebw.m2", + }, + { + fileId = "200275", + value = "battlefieldbanneralliancestatusbar2min.m2", + text = "battlefieldbanneralliancestatusbar2min.m2", + }, + { + fileId = "200276", + value = "battlefieldbannerhorde.m2", + text = "battlefieldbannerhorde.m2", + }, + { + fileId = "200277", + value = "battlefieldbannerhorde_static.m2", + text = "battlefieldbannerhorde_static.m2", + }, + { + fileId = "200278", + value = "battlefieldbannerhordebw.m2", + text = "battlefieldbannerhordebw.m2", + }, + { + fileId = "200279", + value = "battlefieldbannerhordebwflagonly.m2", + text = "battlefieldbannerhordebwflagonly.m2", + }, + { + fileId = "200280", + value = "battlefieldbannerhordeflagonly.m2", + text = "battlefieldbannerhordeflagonly.m2", + }, + { + fileId = "200281", + value = "battlefieldbannerhordelarge.m2", + text = "battlefieldbannerhordelarge.m2", + }, + { + fileId = "200282", + value = "battlefieldbannerhordelargebw.m2", + text = "battlefieldbannerhordelargebw.m2", + }, + { + fileId = "200283", + value = "battlefieldbannerneutral.m2", + text = "battlefieldbannerneutral.m2", + }, + { + fileId = "200284", + value = "battlefieldbannerneutralflagonly.m2", + text = "battlefieldbannerneutralflagonly.m2", + }, + { + fileId = "200285", + value = "battlefieldbannerneutralpost.m2", + text = "battlefieldbannerneutralpost.m2", + }, + }, + value = "battlefieldbanners", + text = "battlefieldbanners", + }, + { + children = { + { + fileId = "200293", + value = "collisionwallpvp01.m2", + text = "collisionwallpvp01.m2", + }, + { + fileId = "200294", + value = "collisionwallpvp01_textured.m2", + text = "collisionwallpvp01_textured.m2", + }, + { + fileId = "527813", + value = "collisionwallpvp02.m2", + text = "collisionwallpvp02.m2", + }, + }, + value = "collisionwall", + text = "collisionwall", + }, + { + children = { + { + fileId = "200296", + value = "alliancectfflag.m2", + text = "alliancectfflag.m2", + }, + { + fileId = "200299", + value = "hordectfflag.m2", + text = "hordectfflag.m2", + }, + { + fileId = "200301", + value = "neutralctfflag.m2", + text = "neutralctfflag.m2", + }, + }, + value = "ctfflags", + text = "ctfflags", + }, + { + children = { + { + fileId = "200302", + value = "lowpolyfire.m2", + text = "lowpolyfire.m2", + }, + { + fileId = "200303", + value = "lowpolyfireanim.m2", + text = "lowpolyfireanim.m2", + }, + }, + value = "fires", + text = "fires", + }, + { + children = { + { + fileId = "200305", + value = "pvp_rune_berserker.m2", + text = "pvp_rune_berserker.m2", + }, + { + fileId = "200307", + value = "pvp_rune_invis.m2", + text = "pvp_rune_invis.m2", + }, + { + fileId = "200308", + value = "pvp_rune_restoration.m2", + text = "pvp_rune_restoration.m2", + }, + { + fileId = "200309", + value = "pvp_rune_speed.m2", + text = "pvp_rune_speed.m2", + }, + { + fileId = "200310", + value = "pvp_rune_speed_icon.m2", + text = "pvp_rune_speed_icon.m2", + }, + }, + value = "runes", + text = "runes", + }, + { + children = { + { + fileId = "200314", + value = "ud_pvptaunt.m2", + text = "ud_pvptaunt.m2", + }, + }, + value = "upperdeck", + text = "upperdeck", + }, + { + children = { + { + fileId = "200316", + value = "nightelfctfflagplaceglow.m2", + text = "nightelfctfflagplaceglow.m2", + }, + { + fileId = "200317", + value = "orcctfflagplaceglow.m2", + text = "orcctfflagplaceglow.m2", + }, + { + fileId = "200319", + value = "warsongctfnightelftoplight.m2", + text = "warsongctfnightelftoplight.m2", + }, + { + fileId = "200320", + value = "warsonggulch_orc_door01.m2", + text = "warsonggulch_orc_door01.m2", + }, + { + children = { + { + fileId = "200324", + value = "elfwindow.m2", + text = "elfwindow.m2", + }, + { + fileId = "200325", + value = "orcwindow.m2", + text = "orcwindow.m2", + }, + }, + value = "windows", + text = "windows", + }, + }, + value = "warsong", + text = "warsong", + }, + }, + value = "pvp", + text = "pvp", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "200328", + value = "razorfenforcefield01.m2", + text = "razorfenforcefield01.m2", + }, + }, + value = "doors", + text = "doors", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "200329", + value = "barbs_01.m2", + text = "barbs_01.m2", + }, + { + fileId = "200330", + value = "barbs_02.m2", + text = "barbs_02.m2", + }, + }, + value = "barbs", + text = "barbs", + }, + { + children = { + { + fileId = "200332", + value = "quillboar_hut01.m2", + text = "quillboar_hut01.m2", + }, + { + fileId = "200333", + value = "quillboar_small_hut01.m2", + text = "quillboar_small_hut01.m2", + }, + }, + value = "huts", + text = "huts", + }, + { + children = { + { + fileId = "200335", + value = "razorfen leanto03.m2", + text = "razorfen leanto03.m2", + }, + }, + value = "leantos", + text = "leantos", + }, + { + children = { + { + fileId = "200336", + value = "quillboarpost.m2", + text = "quillboarpost.m2", + }, + }, + value = "post", + text = "post", + }, + { + children = { + { + fileId = "200337", + value = "quillboarpaintingcliff01.m2", + text = "quillboarpaintingcliff01.m2", + }, + { + fileId = "200338", + value = "quillboarpaintingrock01.m2", + text = "quillboarpaintingrock01.m2", + }, + }, + value = "quilboarrockpaintings", + text = "quilboarrockpaintings", + }, + { + children = { + { + fileId = "200342", + value = "razorfen_canopy01.m2", + text = "razorfen_canopy01.m2", + }, + { + fileId = "200343", + value = "razorfen_canopy01_hole.m2", + text = "razorfen_canopy01_hole.m2", + }, + { + fileId = "200344", + value = "razorfen_canopy02.m2", + text = "razorfen_canopy02.m2", + }, + { + fileId = "200345", + value = "thorncanopy_01.m2", + text = "thorncanopy_01.m2", + }, + { + fileId = "200346", + value = "thorncanopy_02.m2", + text = "thorncanopy_02.m2", + }, + { + fileId = "200347", + value = "thorncanopy_03.m2", + text = "thorncanopy_03.m2", + }, + }, + value = "thorncanopies", + text = "thorncanopies", + }, + { + children = { + { + fileId = "200349", + value = "razorfentrough01.m2", + text = "razorfentrough01.m2", + }, + }, + value = "troughs", + text = "troughs", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "quilboar", + text = "quilboar", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "200350", + value = "satyrcontainer01.m2", + text = "satyrcontainer01.m2", + }, + { + fileId = "200351", + value = "satyrcontainer02.m2", + text = "satyrcontainer02.m2", + }, + { + fileId = "200352", + value = "satyrcontainer03.m2", + text = "satyrcontainer03.m2", + }, + }, + value = "container", + text = "container", + }, + { + children = { + { + fileId = "200353", + value = "satyrtent01.m2", + text = "satyrtent01.m2", + }, + { + fileId = "200355", + value = "satyrtent02.m2", + text = "satyrtent02.m2", + }, + { + fileId = "200356", + value = "satyrtent03.m2", + text = "satyrtent03.m2", + }, + }, + value = "tents", + text = "tents", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "satyr", + text = "satyr", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "200357", + value = "animalcage01.m2", + text = "animalcage01.m2", + }, + { + fileId = "200358", + value = "animalcage02.m2", + text = "animalcage02.m2", + }, + { + fileId = "200359", + value = "animalcage03.m2", + text = "animalcage03.m2", + }, + { + fileId = "200360", + value = "animalcage04.m2", + text = "animalcage04.m2", + }, + }, + value = "animalcages", + text = "animalcages", + }, + { + children = { + { + fileId = "200363", + value = "archerytargetdwarf01.m2", + text = "archerytargetdwarf01.m2", + }, + { + fileId = "200364", + value = "archerytargethuman01.m2", + text = "archerytargethuman01.m2", + }, + }, + value = "archerytargets", + text = "archerytargets", + }, + { + children = { + { + fileId = "200365", + value = "babywheel01.m2", + text = "babywheel01.m2", + }, + }, + value = "babywheels", + text = "babywheels", + }, + { + children = { + { + fileId = "200369", + value = "taurenballhoopstand.m2", + text = "taurenballhoopstand.m2", + }, + { + fileId = "200370", + value = "taurenleatherball.m2", + text = "taurenleatherball.m2", + }, + }, + value = "ballandhoop", + text = "ballandhoop", + }, + { + children = { + { + fileId = "200371", + value = "flatbasket01.m2", + text = "flatbasket01.m2", + }, + { + fileId = "200372", + value = "largebasket01.m2", + text = "largebasket01.m2", + }, + { + fileId = "200373", + value = "largebasket02.m2", + text = "largebasket02.m2", + }, + { + fileId = "200374", + value = "largebasket03.m2", + text = "largebasket03.m2", + }, + { + fileId = "200375", + value = "smallbasket01.m2", + text = "smallbasket01.m2", + }, + { + fileId = "200376", + value = "smallbasket02.m2", + text = "smallbasket02.m2", + }, + { + fileId = "200377", + value = "smallbasket03.m2", + text = "smallbasket03.m2", + }, + }, + value = "baskets", + text = "baskets", + }, + { + children = { + { + fileId = "200378", + value = "taurenbowl01.m2", + text = "taurenbowl01.m2", + }, + { + fileId = "200379", + value = "taurenbowl02.m2", + text = "taurenbowl02.m2", + }, + { + fileId = "200380", + value = "taurenbowl03.m2", + text = "taurenbowl03.m2", + }, + { + fileId = "200381", + value = "taurenbowl04.m2", + text = "taurenbowl04.m2", + }, + { + fileId = "200382", + value = "taurenbowl05.m2", + text = "taurenbowl05.m2", + }, + { + fileId = "200383", + value = "taurenbowl06.m2", + text = "taurenbowl06.m2", + }, + { + fileId = "200384", + value = "taurenbowl07.m2", + text = "taurenbowl07.m2", + }, + { + fileId = "200385", + value = "taurenbowl08.m2", + text = "taurenbowl08.m2", + }, + { + fileId = "200386", + value = "taurenbowl09.m2", + text = "taurenbowl09.m2", + }, + }, + value = "bowls", + text = "bowls", + }, + { + children = { + { + fileId = "200388", + value = "carvingchisel01.m2", + text = "carvingchisel01.m2", + }, + { + fileId = "200389", + value = "carvingchisel02.m2", + text = "carvingchisel02.m2", + }, + { + fileId = "200390", + value = "carvinghammer01.m2", + text = "carvinghammer01.m2", + }, + { + fileId = "200391", + value = "carvinghatchet01.m2", + text = "carvinghatchet01.m2", + }, + }, + value = "carvingtools", + text = "carvingtools", + }, + { + children = { + { + fileId = "200393", + value = "taurenlogchair01.m2", + text = "taurenlogchair01.m2", + }, + { + fileId = "200394", + value = "taurenlogchair02.m2", + text = "taurenlogchair02.m2", + }, + }, + value = "chairs", + text = "chairs", + }, + { + children = { + { + fileId = "200395", + value = "taurenchimesbells.m2", + text = "taurenchimesbells.m2", + }, + { + fileId = "200396", + value = "taurenchimeswood.m2", + text = "taurenchimeswood.m2", + }, + }, + value = "chimes", + text = "chimes", + }, + { + children = { + { + fileId = "200397", + value = "dreamcatcher01.m2", + text = "dreamcatcher01.m2", + }, + { + fileId = "200398", + value = "dreamcatcher02.m2", + text = "dreamcatcher02.m2", + }, + { + fileId = "200399", + value = "dreamcatcher03.m2", + text = "dreamcatcher03.m2", + }, + }, + value = "dreamcatchers", + text = "dreamcatchers", + }, + { + children = { + { + fileId = "200401", + value = "taurendrumgiant01.m2", + text = "taurendrumgiant01.m2", + }, + { + fileId = "200402", + value = "taurendrummed01.m2", + text = "taurendrummed01.m2", + }, + { + fileId = "200403", + value = "taurendrumsmall01.m2", + text = "taurendrumsmall01.m2", + }, + }, + value = "drums", + text = "drums", + }, + { + children = { + { + fileId = "200405", + value = "funeralpyre02.m2", + text = "funeralpyre02.m2", + }, + }, + value = "funeralpyres", + text = "funeralpyres", + }, + { + children = { + { + fileId = "200406", + value = "taurenhitchingpost.m2", + text = "taurenhitchingpost.m2", + }, + }, + value = "hitchingposts", + text = "hitchingposts", + }, + { + children = { + { + fileId = "200407", + value = "hotspringssteam.m2", + text = "hotspringssteam.m2", + }, + }, + value = "hotspringssteam", + text = "hotspringssteam", + }, + { + children = { + { + fileId = "200409", + value = "taurenkiln01.m2", + text = "taurenkiln01.m2", + }, + }, + value = "kilns", + text = "kilns", + }, + { + children = { + { + fileId = "200410", + value = "taurenkite01.m2", + text = "taurenkite01.m2", + }, + { + fileId = "200411", + value = "taurenkite02.m2", + text = "taurenkite02.m2", + }, + { + fileId = "200412", + value = "taurenkite03.m2", + text = "taurenkite03.m2", + }, + }, + value = "kites", + text = "kites", + }, + { + children = { + { + fileId = "200416", + value = "taurenkodohide.m2", + text = "taurenkodohide.m2", + }, + }, + value = "kodohide", + text = "kodohide", + }, + { + children = { + { + fileId = "200417", + value = "bagkodohorns.m2", + text = "bagkodohorns.m2", + }, + { + fileId = "200418", + value = "basketkodohorns.m2", + text = "basketkodohorns.m2", + }, + { + fileId = "200419", + value = "basketkodohorns2.m2", + text = "basketkodohorns2.m2", + }, + }, + value = "kodohorncontainers", + text = "kodohorncontainers", + }, + { + children = { + { + fileId = "200420", + value = "kodoskulls01.m2", + text = "kodoskulls01.m2", + }, + { + fileId = "200421", + value = "kodoskulls02.m2", + text = "kodoskulls02.m2", + }, + { + fileId = "200422", + value = "kodoskulls03.m2", + text = "kodoskulls03.m2", + }, + }, + value = "kodoskulls", + text = "kodoskulls", + }, + { + children = { + { + fileId = "200426", + value = "taurenlamppost.m2", + text = "taurenlamppost.m2", + }, + { + fileId = "200427", + value = "taurenlamppost02.m2", + text = "taurenlamppost02.m2", + }, + { + fileId = "200428", + value = "taurenlamppostbroken.m2", + text = "taurenlamppostbroken.m2", + }, + { + fileId = "200429", + value = "taurenlamppostbroken02.m2", + text = "taurenlamppostbroken02.m2", + }, + }, + value = "lampposts", + text = "lampposts", + }, + { + children = { + { + fileId = "200431", + value = "taurenloomblue.m2", + text = "taurenloomblue.m2", + }, + { + fileId = "200432", + value = "taurenloomwhite.m2", + text = "taurenloomwhite.m2", + }, + }, + value = "loom", + text = "loom", + }, + { + children = { + { + fileId = "200433", + value = "mortarpestle.m2", + text = "mortarpestle.m2", + }, + }, + value = "mortarpestle", + text = "mortarpestle", + }, + { + children = { + { + fileId = "200434", + value = "peacepipe05.m2", + text = "peacepipe05.m2", + }, + }, + value = "peacepipe", + text = "peacepipe", + }, + { + children = { + { + fileId = "200436", + value = "azsharataurnwallpvp_01.m2", + text = "azsharataurnwallpvp_01.m2", + }, + }, + value = "pvpwalls", + text = "pvpwalls", + }, + { + children = { + { + fileId = "200439", + value = "taurenrattle01.m2", + text = "taurenrattle01.m2", + }, + { + fileId = "200440", + value = "taurenrattle02.m2", + text = "taurenrattle02.m2", + }, + }, + value = "rattles", + text = "rattles", + }, + { + children = { + { + fileId = "200441", + value = "taurensack01.m2", + text = "taurensack01.m2", + }, + { + fileId = "200442", + value = "taurensack02.m2", + text = "taurensack02.m2", + }, + { + fileId = "200443", + value = "taurensack03.m2", + text = "taurensack03.m2", + }, + }, + value = "sacks", + text = "sacks", + }, + { + children = { + { + fileId = "200444", + value = "taurensandpainting01.m2", + text = "taurensandpainting01.m2", + }, + { + fileId = "200445", + value = "taurensandpainting02.m2", + text = "taurensandpainting02.m2", + }, + { + fileId = "200446", + value = "taurensandpainting03.m2", + text = "taurensandpainting03.m2", + }, + { + fileId = "200447", + value = "taurensandpainting04.m2", + text = "taurensandpainting04.m2", + }, + { + fileId = "200448", + value = "taurensandpainting05.m2", + text = "taurensandpainting05.m2", + }, + }, + value = "sandpaintings", + text = "sandpaintings", + }, + { + children = { + { + fileId = "200451", + value = "taurensignpost01.m2", + text = "taurensignpost01.m2", + }, + { + fileId = "200452", + value = "taurensignpost02.m2", + text = "taurensignpost02.m2", + }, + { + fileId = "200453", + value = "taurensignpostpointer01.m2", + text = "taurensignpostpointer01.m2", + }, + { + fileId = "200454", + value = "taurensignpostpointer02.m2", + text = "taurensignpostpointer02.m2", + }, + }, + value = "signposts", + text = "signposts", + }, + { + children = { + { + fileId = "200455", + value = "taurensign_alchemist.m2", + text = "taurensign_alchemist.m2", + }, + { + fileId = "200458", + value = "taurensign_armory.m2", + text = "taurensign_armory.m2", + }, + { + fileId = "200460", + value = "taurensign_bank.m2", + text = "taurensign_bank.m2", + }, + { + fileId = "200462", + value = "taurensign_blacksmith.m2", + text = "taurensign_blacksmith.m2", + }, + { + fileId = "200464", + value = "taurensign_bows.m2", + text = "taurensign_bows.m2", + }, + { + fileId = "200466", + value = "taurensign_cartography.m2", + text = "taurensign_cartography.m2", + }, + { + fileId = "200468", + value = "taurensign_clotharmor.m2", + text = "taurensign_clotharmor.m2", + }, + { + fileId = "200470", + value = "taurensign_cooking.m2", + text = "taurensign_cooking.m2", + }, + { + fileId = "200472", + value = "taurensign_drinks.m2", + text = "taurensign_drinks.m2", + }, + { + fileId = "200474", + value = "taurensign_enchanting.m2", + text = "taurensign_enchanting.m2", + }, + { + fileId = "200476", + value = "taurensign_engineering.m2", + text = "taurensign_engineering.m2", + }, + { + fileId = "200478", + value = "taurensign_firstaid.m2", + text = "taurensign_firstaid.m2", + }, + { + fileId = "200480", + value = "taurensign_fishing.m2", + text = "taurensign_fishing.m2", + }, + { + fileId = "200482", + value = "taurensign_fletcher.m2", + text = "taurensign_fletcher.m2", + }, + { + fileId = "200484", + value = "taurensign_food.m2", + text = "taurensign_food.m2", + }, + { + fileId = "200485", + value = "taurensign_general.m2", + text = "taurensign_general.m2", + }, + { + fileId = "200488", + value = "taurensign_guns.m2", + text = "taurensign_guns.m2", + }, + { + fileId = "200490", + value = "taurensign_herbalist.m2", + text = "taurensign_herbalist.m2", + }, + { + fileId = "200492", + value = "taurensign_inn.m2", + text = "taurensign_inn.m2", + }, + { + fileId = "200494", + value = "taurensign_inscribing.m2", + text = "taurensign_inscribing.m2", + }, + { + fileId = "200496", + value = "taurensign_leatherarmor.m2", + text = "taurensign_leatherarmor.m2", + }, + { + fileId = "200498", + value = "taurensign_lockpicking.m2", + text = "taurensign_lockpicking.m2", + }, + { + fileId = "200500", + value = "taurensign_maces.m2", + text = "taurensign_maces.m2", + }, + { + fileId = "200502", + value = "taurensign_magicshop.m2", + text = "taurensign_magicshop.m2", + }, + { + fileId = "200504", + value = "taurensign_mailarmor.m2", + text = "taurensign_mailarmor.m2", + }, + { + fileId = "200506", + value = "taurensign_meat.m2", + text = "taurensign_meat.m2", + }, + { + fileId = "200508", + value = "taurensign_mining.m2", + text = "taurensign_mining.m2", + }, + { + fileId = "200510", + value = "taurensign_poisons.m2", + text = "taurensign_poisons.m2", + }, + { + fileId = "200512", + value = "taurensign_swords.m2", + text = "taurensign_swords.m2", + }, + { + fileId = "200514", + value = "taurensign_tabard.m2", + text = "taurensign_tabard.m2", + }, + { + fileId = "200516", + value = "taurensign_tailor.m2", + text = "taurensign_tailor.m2", + }, + { + fileId = "200518", + value = "taurensign_tavern.m2", + text = "taurensign_tavern.m2", + }, + { + fileId = "200520", + value = "taurensign_warharness.m2", + text = "taurensign_warharness.m2", + }, + { + fileId = "200522", + value = "taurensign_weapons.m2", + text = "taurensign_weapons.m2", + }, + { + fileId = "200524", + value = "taurensign_wine.m2", + text = "taurensign_wine.m2", + }, + { + fileId = "200526", + value = "taurensign_wyvern.m2", + text = "taurensign_wyvern.m2", + }, + }, + value = "signs", + text = "signs", + }, + { + children = { + { + fileId = "200527", + value = "taurencoloredsmoke01.m2", + text = "taurencoloredsmoke01.m2", + }, + }, + value = "smoke", + text = "smoke", + }, + { + children = { + { + fileId = "200528", + value = "tallstridermeat01.m2", + text = "tallstridermeat01.m2", + }, + { + fileId = "200529", + value = "tallstridermeat02.m2", + text = "tallstridermeat02.m2", + }, + }, + value = "tallstridermeat", + text = "tallstridermeat", + }, + { + children = { + { + fileId = "200532", + value = "taurencanoe.m2", + text = "taurencanoe.m2", + }, + }, + value = "taurencanoe", + text = "taurencanoe", + }, + { + children = { + { + fileId = "200533", + value = "taurenbeadcurtain01.m2", + text = "taurenbeadcurtain01.m2", + }, + }, + value = "taurencurtains", + text = "taurencurtains", + }, + { + children = { + { + fileId = "200534", + value = "taurenmummy.m2", + text = "taurenmummy.m2", + }, + }, + value = "taurenmummies", + text = "taurenmummies", + }, + { + children = { + { + fileId = "200535", + value = "taurenplow.m2", + text = "taurenplow.m2", + }, + }, + value = "taurenplow", + text = "taurenplow", + }, + { + children = { + { + fileId = "200536", + value = "taurenrug01.m2", + text = "taurenrug01.m2", + }, + { + fileId = "200537", + value = "taurenrug02.m2", + text = "taurenrug02.m2", + }, + { + fileId = "200538", + value = "taurenrug03.m2", + text = "taurenrug03.m2", + }, + { + fileId = "200539", + value = "taurenrug04.m2", + text = "taurenrug04.m2", + }, + }, + value = "taurenrugs", + text = "taurenrugs", + }, + { + children = { + { + fileId = "200540", + value = "taurenshirthangingblue.m2", + text = "taurenshirthangingblue.m2", + }, + { + fileId = "200541", + value = "taurenshirthangingbrown.m2", + text = "taurenshirthangingbrown.m2", + }, + }, + value = "taurenshirts", + text = "taurenshirts", + }, + { + children = { + { + fileId = "200545", + value = "travois.m2", + text = "travois.m2", + }, + }, + value = "taurentravois", + text = "taurentravois", + }, + { + children = { + { + fileId = "200547", + value = "taurenwallhanging01.m2", + text = "taurenwallhanging01.m2", + }, + { + fileId = "200548", + value = "taurenwallhanging02.m2", + text = "taurenwallhanging02.m2", + }, + { + fileId = "200549", + value = "taurenwallhanging03.m2", + text = "taurenwallhanging03.m2", + }, + }, + value = "taurenwallhangings", + text = "taurenwallhangings", + }, + { + children = { + { + fileId = "200551", + value = "taurenwallscroll01.m2", + text = "taurenwallscroll01.m2", + }, + { + fileId = "200552", + value = "taurenwallscroll01blue.m2", + text = "taurenwallscroll01blue.m2", + }, + { + fileId = "200553", + value = "taurenwallscroll02.m2", + text = "taurenwallscroll02.m2", + }, + { + fileId = "200554", + value = "taurenwallscroll02blue.m2", + text = "taurenwallscroll02blue.m2", + }, + { + fileId = "200555", + value = "taurenwallscroll03.m2", + text = "taurenwallscroll03.m2", + }, + }, + value = "taurenwallscrolls", + text = "taurenwallscrolls", + }, + { + children = { + { + fileId = "200557", + value = "waterpump.m2", + text = "waterpump.m2", + }, + }, + value = "taurenwaterpump", + text = "taurenwaterpump", + }, + { + children = { + { + fileId = "200566", + value = "taurenwindmilla.m2", + text = "taurenwindmilla.m2", + }, + { + fileId = "200567", + value = "taurenwindmillb.m2", + text = "taurenwindmillb.m2", + }, + { + fileId = "200568", + value = "taurenwindmillc.m2", + text = "taurenwindmillc.m2", + }, + }, + value = "taurenwindmills", + text = "taurenwindmills", + }, + { + children = { + { + fileId = "200571", + value = "burned_totem01.m2", + text = "burned_totem01.m2", + }, + { + fileId = "200572", + value = "burned_totem02.m2", + text = "burned_totem02.m2", + }, + { + fileId = "200573", + value = "grimtotem01.m2", + text = "grimtotem01.m2", + }, + { + fileId = "200574", + value = "grimtotem02.m2", + text = "grimtotem02.m2", + }, + { + fileId = "200575", + value = "grimtotem03.m2", + text = "grimtotem03.m2", + }, + { + fileId = "200576", + value = "grimtotem04.m2", + text = "grimtotem04.m2", + }, + { + fileId = "200577", + value = "taurentotem01.m2", + text = "taurentotem01.m2", + }, + { + fileId = "200578", + value = "taurentotem02.m2", + text = "taurentotem02.m2", + }, + { + fileId = "200579", + value = "taurentotem03.m2", + text = "taurentotem03.m2", + }, + { + fileId = "200580", + value = "taurentotem04.m2", + text = "taurentotem04.m2", + }, + { + fileId = "200581", + value = "taurentotem05.m2", + text = "taurentotem05.m2", + }, + { + fileId = "200582", + value = "taurentotem06.m2", + text = "taurentotem06.m2", + }, + { + fileId = "200583", + value = "taurentotem07.m2", + text = "taurentotem07.m2", + }, + { + fileId = "200584", + value = "taurentotem08.m2", + text = "taurentotem08.m2", + }, + { + fileId = "200585", + value = "taurentotem09.m2", + text = "taurentotem09.m2", + }, + }, + value = "totems", + text = "totems", + }, + { + children = { + { + fileId = "200588", + value = "warharnessfloor01.m2", + text = "warharnessfloor01.m2", + }, + { + fileId = "200589", + value = "warharnessfloor02.m2", + text = "warharnessfloor02.m2", + }, + { + fileId = "200590", + value = "warharnessfloor03.m2", + text = "warharnessfloor03.m2", + }, + { + fileId = "200591", + value = "warharnessfloor04.m2", + text = "warharnessfloor04.m2", + }, + { + fileId = "200592", + value = "warharnesstotem01.m2", + text = "warharnesstotem01.m2", + }, + { + fileId = "200593", + value = "warharnesstotem02.m2", + text = "warharnesstotem02.m2", + }, + { + fileId = "200594", + value = "warharnesstotem03.m2", + text = "warharnesstotem03.m2", + }, + { + fileId = "200595", + value = "warharnesstotem04.m2", + text = "warharnesstotem04.m2", + }, + { + fileId = "200596", + value = "warharnesswall01.m2", + text = "warharnesswall01.m2", + }, + { + fileId = "200597", + value = "warharnesswall02.m2", + text = "warharnesswall02.m2", + }, + { + fileId = "200598", + value = "warharnesswall03.m2", + text = "warharnesswall03.m2", + }, + { + fileId = "200599", + value = "warharnesswall04.m2", + text = "warharnesswall04.m2", + }, + }, + value = "warharnasses", + text = "warharnasses", + }, + { + children = { + { + fileId = "200601", + value = "watertroughlarge01.m2", + text = "watertroughlarge01.m2", + }, + { + fileId = "200602", + value = "watertroughsmall01.m2", + text = "watertroughsmall01.m2", + }, + }, + value = "watertroughs", + text = "watertroughs", + }, + { + children = { + { + fileId = "200603", + value = "tauren_weaponaxe01.m2", + text = "tauren_weaponaxe01.m2", + }, + { + fileId = "200604", + value = "tauren_weaponhatchet01.m2", + text = "tauren_weaponhatchet01.m2", + }, + { + fileId = "200605", + value = "tauren_weaponlog01.m2", + text = "tauren_weaponlog01.m2", + }, + { + fileId = "200606", + value = "tauren_weaponlog02.m2", + text = "tauren_weaponlog02.m2", + }, + { + fileId = "200608", + value = "tauren_weaponrack01.m2", + text = "tauren_weaponrack01.m2", + }, + { + fileId = "200609", + value = "tauren_weaponrack02.m2", + text = "tauren_weaponrack02.m2", + }, + { + fileId = "200610", + value = "tauren_weaponrackwrecked.m2", + text = "tauren_weaponrackwrecked.m2", + }, + { + fileId = "200611", + value = "tauren_weaponspear.m2", + text = "tauren_weaponspear.m2", + }, + }, + value = "weapons", + text = "weapons", + }, + { + children = { + { + fileId = "200613", + value = "taurenwindbreak01.m2", + text = "taurenwindbreak01.m2", + }, + { + fileId = "200614", + value = "taurenwindbreak02.m2", + text = "taurenwindbreak02.m2", + }, + { + fileId = "200615", + value = "taurenwindbreak03.m2", + text = "taurenwindbreak03.m2", + }, + { + fileId = "200616", + value = "taurenwindbreak04.m2", + text = "taurenwindbreak04.m2", + }, + }, + value = "windbreaks", + text = "windbreaks", + }, + { + children = { + { + fileId = "200617", + value = "windmillgiant01.m2", + text = "windmillgiant01.m2", + }, + { + fileId = "200618", + value = "windmillsmall01.m2", + text = "windmillsmall01.m2", + }, + { + fileId = "200619", + value = "windmilltall01.m2", + text = "windmilltall01.m2", + }, + }, + value = "windmills", + text = "windmills", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "tauren", + text = "tauren", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "200621", + value = "mummytroll01.m2", + text = "mummytroll01.m2", + }, + }, + value = "mummytrolls", + text = "mummytrolls", + }, + { + children = { + { + fileId = "200623", + value = "skulltiki.m2", + text = "skulltiki.m2", + }, + }, + value = "skultikis", + text = "skultikis", + }, + { + children = { + { + fileId = "200625", + value = "snakegargoyle.m2", + text = "snakegargoyle.m2", + }, + }, + value = "snakegargoyle", + text = "snakegargoyle", + }, + { + children = { + { + fileId = "200629", + value = "cobrathrone01.m2", + text = "cobrathrone01.m2", + }, + }, + value = "thrones", + text = "thrones", + }, + { + children = { + { + fileId = "200633", + value = "troll_tikimask01.m2", + text = "troll_tikimask01.m2", + }, + { + fileId = "200634", + value = "troll_tikimask02.m2", + text = "troll_tikimask02.m2", + }, + { + fileId = "200635", + value = "troll_tikimask03.m2", + text = "troll_tikimask03.m2", + }, + }, + value = "tikimasks", + text = "tikimasks", + }, + { + children = { + { + fileId = "200638", + value = "trollskullpile.m2", + text = "trollskullpile.m2", + }, + }, + value = "trollskullpile", + text = "trollskullpile", + }, + { + children = { + { + fileId = "200640", + value = "trolltablet.m2", + text = "trolltablet.m2", + }, + }, + value = "trolltablets", + text = "trolltablets", + }, + { + children = { + { + fileId = "200642", + value = "trough.m2", + text = "trough.m2", + }, + }, + value = "troughs", + text = "troughs", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "troll", + text = "troll", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "200644", + value = "batroost.m2", + text = "batroost.m2", + }, + { + fileId = "200645", + value = "batroost02.m2", + text = "batroost02.m2", + }, + { + fileId = "200646", + value = "batroost03.m2", + text = "batroost03.m2", + }, + }, + value = "batroost", + text = "batroost", + }, + { + children = { + { + fileId = "200649", + value = "lordaeron_bell_01.m2", + text = "lordaeron_bell_01.m2", + }, + { + fileId = "200650", + value = "lordaeron_bell_02.m2", + text = "lordaeron_bell_02.m2", + }, + }, + value = "bell", + text = "bell", + }, + { + children = { + { + fileId = "200652", + value = "lordaeron_bench_01.m2", + text = "lordaeron_bench_01.m2", + }, + { + fileId = "200653", + value = "lordaeron_bench_02.m2", + text = "lordaeron_bench_02.m2", + }, + }, + value = "furniture", + text = "furniture", + }, + { + children = { + { + fileId = "200655", + value = "lordaeronbrazier01.m2", + text = "lordaeronbrazier01.m2", + }, + }, + value = "lordaeronbrazier", + text = "lordaeronbrazier", + }, + { + children = { + { + fileId = "200657", + value = "thronerailing01.m2", + text = "thronerailing01.m2", + }, + }, + value = "lordaeronrailing", + text = "lordaeronrailing", + }, + { + children = { + { + fileId = "200659", + value = "tyranusthrone.m2", + text = "tyranusthrone.m2", + }, + }, + value = "lordaeronthrone", + text = "lordaeronthrone", + }, + { + children = { + { + fileId = "200660", + value = "undercitytower01.m2", + text = "undercitytower01.m2", + }, + { + fileId = "200661", + value = "undercitytower02.m2", + text = "undercitytower02.m2", + }, + { + fileId = "200662", + value = "undercitytower03.m2", + text = "undercitytower03.m2", + }, + { + fileId = "200663", + value = "undercitytower04.m2", + text = "undercitytower04.m2", + }, + }, + value = "lordaerontowers", + text = "lordaerontowers", + }, + { + children = { + { + fileId = "200664", + value = "meatwagon.m2", + text = "meatwagon.m2", + }, + { + fileId = "200666", + value = "meatwagonwrecked01.m2", + text = "meatwagonwrecked01.m2", + }, + }, + value = "meatwagon", + text = "meatwagon", + }, + { + children = { + { + children = { + { + fileId = "2198535", + value = "meatwagonhauler.m2", + text = "meatwagonhauler.m2", + }, + }, + value = "meatwagonhauler.mdx", + text = "meatwagonhauler.mdx", + }, + }, + value = "meatwagonhauler", + text = "meatwagonhauler", + }, + { + children = { + { + fileId = "200668", + value = "meatwagonbody.m2", + text = "meatwagonbody.m2", + }, + { + fileId = "200669", + value = "meatwagonclaw.m2", + text = "meatwagonclaw.m2", + }, + { + fileId = "200670", + value = "meatwagongrill.m2", + text = "meatwagongrill.m2", + }, + { + fileId = "200671", + value = "meatwagonroller.m2", + text = "meatwagonroller.m2", + }, + { + fileId = "200672", + value = "meatwagonwheel.m2", + text = "meatwagonwheel.m2", + }, + }, + value = "meatwagonpieces", + text = "meatwagonpieces", + }, + { + children = { + { + fileId = "200673", + value = "lordaeron_citybanner_01.m2", + text = "lordaeron_citybanner_01.m2", + }, + { + fileId = "200674", + value = "lordaeron_signpost_01.m2", + text = "lordaeron_signpost_01.m2", + }, + { + fileId = "200678", + value = "undeadsign_alchemist.m2", + text = "undeadsign_alchemist.m2", + }, + { + fileId = "200680", + value = "undeadsign_armory.m2", + text = "undeadsign_armory.m2", + }, + { + fileId = "200682", + value = "undeadsign_axes.m2", + text = "undeadsign_axes.m2", + }, + { + fileId = "200684", + value = "undeadsign_bags.m2", + text = "undeadsign_bags.m2", + }, + { + fileId = "200686", + value = "undeadsign_bank.m2", + text = "undeadsign_bank.m2", + }, + { + fileId = "200688", + value = "undeadsign_batrider.m2", + text = "undeadsign_batrider.m2", + }, + { + fileId = "200690", + value = "undeadsign_blacksmith.m2", + text = "undeadsign_blacksmith.m2", + }, + { + fileId = "200692", + value = "undeadsign_bows.m2", + text = "undeadsign_bows.m2", + }, + { + fileId = "200694", + value = "undeadsign_bread.m2", + text = "undeadsign_bread.m2", + }, + { + fileId = "200696", + value = "undeadsign_cartography.m2", + text = "undeadsign_cartography.m2", + }, + { + fileId = "200698", + value = "undeadsign_cheese.m2", + text = "undeadsign_cheese.m2", + }, + { + fileId = "200700", + value = "undeadsign_clotharmor.m2", + text = "undeadsign_clotharmor.m2", + }, + { + fileId = "200702", + value = "undeadsign_cook.m2", + text = "undeadsign_cook.m2", + }, + { + fileId = "200704", + value = "undeadsign_daggers.m2", + text = "undeadsign_daggers.m2", + }, + { + fileId = "200706", + value = "undeadsign_drinks.m2", + text = "undeadsign_drinks.m2", + }, + { + fileId = "200708", + value = "undeadsign_enchanting.m2", + text = "undeadsign_enchanting.m2", + }, + { + fileId = "200710", + value = "undeadsign_engineering.m2", + text = "undeadsign_engineering.m2", + }, + { + fileId = "200712", + value = "undeadsign_firstaid.m2", + text = "undeadsign_firstaid.m2", + }, + { + fileId = "200714", + value = "undeadsign_fish.m2", + text = "undeadsign_fish.m2", + }, + { + fileId = "200716", + value = "undeadsign_fletcher.m2", + text = "undeadsign_fletcher.m2", + }, + { + fileId = "200718", + value = "undeadsign_general.m2", + text = "undeadsign_general.m2", + }, + { + fileId = "200720", + value = "undeadsign_herbalist.m2", + text = "undeadsign_herbalist.m2", + }, + { + fileId = "200722", + value = "undeadsign_inscribing.m2", + text = "undeadsign_inscribing.m2", + }, + { + fileId = "200724", + value = "undeadsign_leatherarmor.m2", + text = "undeadsign_leatherarmor.m2", + }, + { + fileId = "200726", + value = "undeadsign_lockpicking.m2", + text = "undeadsign_lockpicking.m2", + }, + { + fileId = "200728", + value = "undeadsign_maces.m2", + text = "undeadsign_maces.m2", + }, + { + fileId = "200730", + value = "undeadsign_magic.m2", + text = "undeadsign_magic.m2", + }, + { + fileId = "200732", + value = "undeadsign_mailarmor.m2", + text = "undeadsign_mailarmor.m2", + }, + { + fileId = "200734", + value = "undeadsign_meat.m2", + text = "undeadsign_meat.m2", + }, + { + fileId = "200736", + value = "undeadsign_miner.m2", + text = "undeadsign_miner.m2", + }, + { + fileId = "200738", + value = "undeadsign_misc.m2", + text = "undeadsign_misc.m2", + }, + { + fileId = "200740", + value = "undeadsign_poison.m2", + text = "undeadsign_poison.m2", + }, + { + fileId = "200742", + value = "undeadsign_staves.m2", + text = "undeadsign_staves.m2", + }, + { + fileId = "200744", + value = "undeadsign_tabard.m2", + text = "undeadsign_tabard.m2", + }, + { + fileId = "200746", + value = "undeadsign_tailor.m2", + text = "undeadsign_tailor.m2", + }, + { + fileId = "200748", + value = "undeadsign_tavern.m2", + text = "undeadsign_tavern.m2", + }, + { + fileId = "200750", + value = "undeadsign_weapons.m2", + text = "undeadsign_weapons.m2", + }, + { + fileId = "200752", + value = "undeadsign_winery.m2", + text = "undeadsign_winery.m2", + }, + }, + value = "signs", + text = "signs", + }, + { + children = { + { + fileId = "200754", + value = "lordaeron_statue_01.m2", + text = "lordaeron_statue_01.m2", + }, + { + fileId = "200755", + value = "lordaeron_statue_02.m2", + text = "lordaeron_statue_02.m2", + }, + { + fileId = "200756", + value = "lordaeron_statue_03.m2", + text = "lordaeron_statue_03.m2", + }, + }, + value = "statues", + text = "statues", + }, + { + children = { + { + fileId = "200758", + value = "undeadfencepost.m2", + text = "undeadfencepost.m2", + }, + { + fileId = "200761", + value = "undeadstonewroughtironfence.m2", + text = "undeadstonewroughtironfence.m2", + }, + }, + value = "stonefence", + text = "stonefence", + }, + { + children = { + { + fileId = "200762", + value = "taxiflagundead.m2", + text = "taxiflagundead.m2", + }, + }, + value = "taxiflags", + text = "taxiflags", + }, + { + children = { + { + fileId = "200767", + value = "undead_alchemy_table.m2", + text = "undead_alchemy_table.m2", + }, + }, + value = "undeadalchemytable", + text = "undeadalchemytable", + }, + { + children = { + { + fileId = "200772", + value = "undead_crankwheel.m2", + text = "undead_crankwheel.m2", + }, + }, + value = "undeadcrankwheels", + text = "undeadcrankwheels", + }, + { + children = { + { + fileId = "200775", + value = "undead_empty_hook.m2", + text = "undead_empty_hook.m2", + }, + { + fileId = "200777", + value = "undeadhookarm01.m2", + text = "undeadhookarm01.m2", + }, + { + fileId = "200778", + value = "undeadhookbody01.m2", + text = "undeadhookbody01.m2", + }, + { + fileId = "200779", + value = "undeadhookfoot01.m2", + text = "undeadhookfoot01.m2", + }, + { + fileId = "200780", + value = "undeadhookhead01.m2", + text = "undeadhookhead01.m2", + }, + }, + value = "undeadhooks", + text = "undeadhooks", + }, + { + children = { + { + fileId = "200781", + value = "undead_meter.m2", + text = "undead_meter.m2", + }, + }, + value = "undeadmeter", + text = "undeadmeter", + }, + { + children = { + { + fileId = "200782", + value = "undead_operation_table.m2", + text = "undead_operation_table.m2", + }, + }, + value = "undeadoperatingtable", + text = "undeadoperatingtable", + }, + { + children = { + { + fileId = "200784", + value = "undead_teslacoil.m2", + text = "undead_teslacoil.m2", + }, + }, + value = "undeadtelsacoil", + text = "undeadtelsacoil", + }, + { + children = { + { + fileId = "200786", + value = "undead_tools_table.m2", + text = "undead_tools_table.m2", + }, + }, + value = "undeadtoolstable", + text = "undeadtoolstable", + }, + { + children = { + { + fileId = "200788", + value = "undead_torch01.m2", + text = "undead_torch01.m2", + }, + { + fileId = "200789", + value = "undead_torch02.m2", + text = "undead_torch02.m2", + }, + }, + value = "undercity torches", + text = "undercity torches", + }, + { + children = { + { + fileId = "200790", + value = "undeadchandelier01.m2", + text = "undeadchandelier01.m2", + }, + { + fileId = "200791", + value = "undeadchandelier02.m2", + text = "undeadchandelier02.m2", + }, + }, + value = "undercitychandeliers", + text = "undercitychandeliers", + }, + { + children = { + { + fileId = "200793", + value = "undeadelevator.m2", + text = "undeadelevator.m2", + }, + { + fileId = "200794", + value = "undeadelevatordoor.m2", + text = "undeadelevatordoor.m2", + }, + }, + value = "undercityelevators", + text = "undercityelevators", + }, + { + children = { + { + fileId = "200795", + value = "undeadhanginglantern01.m2", + text = "undeadhanginglantern01.m2", + }, + }, + value = "undercitylanterns", + text = "undercitylanterns", + }, + { + children = { + { + fileId = "200797", + value = "undercitysignpost.m2", + text = "undercitysignpost.m2", + }, + { + fileId = "200798", + value = "undercitysignpostpointer.m2", + text = "undercitysignpostpointer.m2", + }, + }, + value = "undercitysignposts", + text = "undercitysignposts", + }, + { + children = { + { + fileId = "200800", + value = "undercityskylight01.m2", + text = "undercityskylight01.m2", + }, + }, + value = "undercityskylight", + text = "undercityskylight", + }, + { + children = { + { + fileId = "200801", + value = "undercityslimebubbles01.m2", + text = "undercityslimebubbles01.m2", + }, + { + fileId = "200802", + value = "undercityslimebubbles02.m2", + text = "undercityslimebubbles02.m2", + }, + }, + value = "undercityslimebubbles", + text = "undercityslimebubbles", + }, + { + children = { + { + fileId = "200803", + value = "skullspoutsplash.m2", + text = "skullspoutsplash.m2", + }, + { + fileId = "200808", + value = "undercityslimefalls01.m2", + text = "undercityslimefalls01.m2", + }, + }, + value = "undercityslimefalls", + text = "undercityslimefalls", + }, + { + children = { + { + fileId = "200809", + value = "skullspout01.m2", + text = "skullspout01.m2", + }, + }, + value = "undercityslimespouts", + text = "undercityslimespouts", + }, + { + children = { + { + fileId = "200816", + value = "undercitymonsterbirth.m2", + text = "undercitymonsterbirth.m2", + }, + { + fileId = "200817", + value = "undercityworm.m2", + text = "undercityworm.m2", + }, + }, + value = "undercityworm", + text = "undercityworm", + }, + }, + value = "passive doodads", + text = "passive doodads", + }, + }, + value = "undead", + text = "undead", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "200819", + value = "plant01.m2", + text = "plant01.m2", + }, + { + fileId = "200820", + value = "plant02.m2", + text = "plant02.m2", + }, + { + fileId = "200821", + value = "plant03.m2", + text = "plant03.m2", + }, + { + fileId = "200822", + value = "plant04.m2", + text = "plant04.m2", + }, + { + fileId = "200823", + value = "plant05.m2", + text = "plant05.m2", + }, + { + fileId = "200824", + value = "plant06.m2", + text = "plant06.m2", + }, + { + fileId = "200825", + value = "plant07.m2", + text = "plant07.m2", + }, + { + fileId = "200826", + value = "plant08.m2", + text = "plant08.m2", + }, + { + fileId = "200827", + value = "plant09.m2", + text = "plant09.m2", + }, + { + fileId = "200828", + value = "plant10.m2", + text = "plant10.m2", + }, + { + fileId = "200829", + value = "seaweed01.m2", + text = "seaweed01.m2", + }, + { + fileId = "200830", + value = "seaweed02.m2", + text = "seaweed02.m2", + }, + }, + value = "plants", + text = "plants", + }, + { + children = { + { + fileId = "200833", + value = "underwaterrock01.m2", + text = "underwaterrock01.m2", + }, + { + fileId = "200834", + value = "underwaterrock02.m2", + text = "underwaterrock02.m2", + }, + { + fileId = "200835", + value = "underwaterrock03.m2", + text = "underwaterrock03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "200836", + value = "genericseaweed01.m2", + text = "genericseaweed01.m2", + }, + { + fileId = "200837", + value = "genericseaweed02.m2", + text = "genericseaweed02.m2", + }, + { + fileId = "200838", + value = "genericseaweed03.m2", + text = "genericseaweed03.m2", + }, + { + fileId = "200839", + value = "genericseaweed04.m2", + text = "genericseaweed04.m2", + }, + { + fileId = "200840", + value = "genericseaweed05.m2", + text = "genericseaweed05.m2", + }, + { + fileId = "200841", + value = "genericseaweed06.m2", + text = "genericseaweed06.m2", + }, + { + fileId = "200842", + value = "genericseaweed07.m2", + text = "genericseaweed07.m2", + }, + { + fileId = "200843", + value = "genericseaweed08.m2", + text = "genericseaweed08.m2", + }, + { + fileId = "200844", + value = "genericseaweed09.m2", + text = "genericseaweed09.m2", + }, + { + fileId = "200845", + value = "genericseaweed10.m2", + text = "genericseaweed10.m2", + }, + { + fileId = "200846", + value = "genericseaweed11.m2", + text = "genericseaweed11.m2", + }, + { + fileId = "200847", + value = "genericseaweed12.m2", + text = "genericseaweed12.m2", + }, + { + fileId = "200848", + value = "genericseaweed13.m2", + text = "genericseaweed13.m2", + }, + { + fileId = "200849", + value = "genericseaweed14.m2", + text = "genericseaweed14.m2", + }, + }, + value = "seaweed", + text = "seaweed", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "underwater", + text = "underwater", + }, + { + children = { + { + fileId = "803615", + value = "darkportal_temple_tcg_reward.m2", + text = "darkportal_temple_tcg_reward.m2", + }, + { + fileId = "244266", + value = "ud_confetti_01.m2", + text = "ud_confetti_01.m2", + }, + }, + value = "upperdeck", + text = "upperdeck", + }, + }, + value = "generic", + text = "generic", + }, + { + children = { + { + fileId = "200862", + value = "darkironkegshotgun.m2", + text = "darkironkegshotgun.m2", + }, + { + fileId = "200877", + value = "g_alchemyset01.m2", + text = "g_alchemyset01.m2", + }, + { + fileId = "200878", + value = "g_altarofsouls.m2", + text = "g_altarofsouls.m2", + }, + { + fileId = "200879", + value = "g_applebob_01.m2", + text = "g_applebob_01.m2", + }, + { + fileId = "200884", + value = "g_barrel.m2", + text = "g_barrel.m2", + }, + { + fileId = "200886", + value = "g_barrelexplode.m2", + text = "g_barrelexplode.m2", + }, + { + fileId = "200888", + value = "g_barrelred.m2", + text = "g_barrelred.m2", + }, + { + fileId = "200891", + value = "g_bellship.m2", + text = "g_bellship.m2", + }, + { + fileId = "200893", + value = "g_blanket.m2", + text = "g_blanket.m2", + }, + { + fileId = "200894", + value = "g_blanketgrill.m2", + text = "g_blanketgrill.m2", + }, + { + fileId = "200895", + value = "g_blanketumbrella.m2", + text = "g_blanketumbrella.m2", + }, + { + fileId = "200896", + value = "g_bloodcauldron.m2", + text = "g_bloodcauldron.m2", + }, + { + fileId = "200897", + value = "g_bombfactory.m2", + text = "g_bombfactory.m2", + }, + { + fileId = "200898", + value = "g_bombwagon.m2", + text = "g_bombwagon.m2", + }, + { + fileId = "200899", + value = "g_bonfire.m2", + text = "g_bonfire.m2", + }, + { + fileId = "200900", + value = "g_book01.m2", + text = "g_book01.m2", + }, + { + fileId = "200901", + value = "g_book01_black.m2", + text = "g_book01_black.m2", + }, + { + fileId = "200902", + value = "g_book01_blue.m2", + text = "g_book01_blue.m2", + }, + { + fileId = "200903", + value = "g_book01_brown.m2", + text = "g_book01_brown.m2", + }, + { + fileId = "200904", + value = "g_book01_green.m2", + text = "g_book01_green.m2", + }, + { + fileId = "200905", + value = "g_book01_red.m2", + text = "g_book01_red.m2", + }, + { + fileId = "200908", + value = "g_bookopenmedium06.m2", + text = "g_bookopenmedium06.m2", + }, + { + fileId = "200909", + value = "g_bookopenmedium07.m2", + text = "g_bookopenmedium07.m2", + }, + { + fileId = "200910", + value = "g_bookopenmediumblack.m2", + text = "g_bookopenmediumblack.m2", + }, + { + fileId = "200911", + value = "g_bookopenmediumblue.m2", + text = "g_bookopenmediumblue.m2", + }, + { + fileId = "200912", + value = "g_bookopenmediumbrown.m2", + text = "g_bookopenmediumbrown.m2", + }, + { + fileId = "200913", + value = "g_bookopenmediumgreen.m2", + text = "g_bookopenmediumgreen.m2", + }, + { + fileId = "200914", + value = "g_bookopenmediumred.m2", + text = "g_bookopenmediumred.m2", + }, + { + fileId = "200916", + value = "g_booktraparm.m2", + text = "g_booktraparm.m2", + }, + { + fileId = "200918", + value = "g_booktrapeye.m2", + text = "g_booktrapeye.m2", + }, + { + fileId = "200920", + value = "g_booktrapfire.m2", + text = "g_booktrapfire.m2", + }, + { + fileId = "200922", + value = "g_booktraplightevil.m2", + text = "g_booktraplightevil.m2", + }, + { + fileId = "200924", + value = "g_booktraplightgood.m2", + text = "g_booktraplightgood.m2", + }, + { + fileId = "200925", + value = "g_brazier01.m2", + text = "g_brazier01.m2", + }, + { + fileId = "200927", + value = "g_brazierorcblue.m2", + text = "g_brazierorcblue.m2", + }, + { + fileId = "200929", + value = "g_brazierorcgreen.m2", + text = "g_brazierorcgreen.m2", + }, + { + fileId = "200930", + value = "g_brazierorcpurple.m2", + text = "g_brazierorcpurple.m2", + }, + { + fileId = "200932", + value = "g_brazierorcred.m2", + text = "g_brazierorcred.m2", + }, + { + fileId = "200934", + value = "g_braziertroll.m2", + text = "g_braziertroll.m2", + }, + { + fileId = "200936", + value = "g_buttonbigred.m2", + text = "g_buttonbigred.m2", + }, + { + fileId = "200937", + value = "g_cage.m2", + text = "g_cage.m2", + }, + { + fileId = "200938", + value = "g_cage02.m2", + text = "g_cage02.m2", + }, + { + fileId = "200939", + value = "g_cage03.m2", + text = "g_cage03.m2", + }, + { + fileId = "200940", + value = "g_cagebase.m2", + text = "g_cagebase.m2", + }, + { + fileId = "200941", + value = "g_cagedoorbamboo.m2", + text = "g_cagedoorbamboo.m2", + }, + { + fileId = "200943", + value = "g_camerashake01.m2", + text = "g_camerashake01.m2", + }, + { + fileId = "200944", + value = "g_camerashake02.m2", + text = "g_camerashake02.m2", + }, + { + fileId = "200945", + value = "g_camerashake03.m2", + text = "g_camerashake03.m2", + }, + { + fileId = "200946", + value = "g_candybucket_01.m2", + text = "g_candybucket_01.m2", + }, + { + fileId = "200947", + value = "g_cannon01.m2", + text = "g_cannon01.m2", + }, + { + fileId = "200950", + value = "g_cavein.m2", + text = "g_cavein.m2", + }, + { + fileId = "200952", + value = "g_chestahnqiraj.m2", + text = "g_chestahnqiraj.m2", + }, + { + fileId = "200953", + value = "g_chesttitan.m2", + text = "g_chesttitan.m2", + }, + { + fileId = "200954", + value = "g_conjuretable.m2", + text = "g_conjuretable.m2", + }, + { + fileId = "200956", + value = "g_controlconsoletonk.m2", + text = "g_controlconsoletonk.m2", + }, + { + fileId = "200958", + value = "g_controlconsolezippelin.m2", + text = "g_controlconsolezippelin.m2", + }, + { + fileId = "200960", + value = "g_crate01.m2", + text = "g_crate01.m2", + }, + { + fileId = "200961", + value = "g_crate02.m2", + text = "g_crate02.m2", + }, + { + fileId = "200963", + value = "g_crateanimal.m2", + text = "g_crateanimal.m2", + }, + { + fileId = "200964", + value = "g_dragoneggblack.m2", + text = "g_dragoneggblack.m2", + }, + { + fileId = "200966", + value = "g_dragoneggchromatic.m2", + text = "g_dragoneggchromatic.m2", + }, + { + fileId = "200967", + value = "g_dragoneggfreeze.m2", + text = "g_dragoneggfreeze.m2", + }, + { + fileId = "200968", + value = "g_dragoneggfreezechromatic.m2", + text = "g_dragoneggfreezechromatic.m2", + }, + { + fileId = "200969", + value = "g_dragoneggprismatic01.m2", + text = "g_dragoneggprismatic01.m2", + }, + { + fileId = "200971", + value = "g_dwarvenmemorial.m2", + text = "g_dwarvenmemorial.m2", + }, + { + fileId = "200973", + value = "g_eggalien.m2", + text = "g_eggalien.m2", + }, + { + fileId = "200974", + value = "g_eggspider.m2", + text = "g_eggspider.m2", + }, + { + fileId = "200976", + value = "g_epicbrazierblue.m2", + text = "g_epicbrazierblue.m2", + }, + { + fileId = "200977", + value = "g_epicbrazieryellow.m2", + text = "g_epicbrazieryellow.m2", + }, + { + fileId = "200979", + value = "g_essencedistiller.m2", + text = "g_essencedistiller.m2", + }, + { + fileId = "200980", + value = "g_explodingballista.m2", + text = "g_explodingballista.m2", + }, + { + fileId = "200981", + value = "g_explosivetrap.m2", + text = "g_explosivetrap.m2", + }, + { + fileId = "200982", + value = "g_firework01blue.m2", + text = "g_firework01blue.m2", + }, + { + fileId = "200983", + value = "g_firework01green.m2", + text = "g_firework01green.m2", + }, + { + fileId = "200984", + value = "g_firework01purple.m2", + text = "g_firework01purple.m2", + }, + { + fileId = "200985", + value = "g_firework01red.m2", + text = "g_firework01red.m2", + }, + { + fileId = "200986", + value = "g_firework01white.m2", + text = "g_firework01white.m2", + }, + { + fileId = "200987", + value = "g_firework01yellow.m2", + text = "g_firework01yellow.m2", + }, + { + fileId = "200988", + value = "g_firework02blue.m2", + text = "g_firework02blue.m2", + }, + { + fileId = "200989", + value = "g_firework02green.m2", + text = "g_firework02green.m2", + }, + { + fileId = "200990", + value = "g_firework02purple.m2", + text = "g_firework02purple.m2", + }, + { + fileId = "200991", + value = "g_firework02red.m2", + text = "g_firework02red.m2", + }, + { + fileId = "200992", + value = "g_firework02white.m2", + text = "g_firework02white.m2", + }, + { + fileId = "200993", + value = "g_firework02yellow.m2", + text = "g_firework02yellow.m2", + }, + { + fileId = "200994", + value = "g_firework03red.m2", + text = "g_firework03red.m2", + }, + { + fileId = "200995", + value = "g_fireworklauncher01.m2", + text = "g_fireworklauncher01.m2", + }, + { + fileId = "200996", + value = "g_fireworklauncher02.m2", + text = "g_fireworklauncher02.m2", + }, + { + fileId = "200998", + value = "g_fireworktwirlysmall01gold.m2", + text = "g_fireworktwirlysmall01gold.m2", + }, + { + fileId = "201000", + value = "g_fishingbobber.m2", + text = "g_fishingbobber.m2", + }, + { + fileId = "201001", + value = "g_fissure.m2", + text = "g_fissure.m2", + }, + { + fileId = "201004", + value = "g_flarealliance.m2", + text = "g_flarealliance.m2", + }, + { + fileId = "201005", + value = "g_flarehorde.m2", + text = "g_flarehorde.m2", + }, + { + fileId = "201006", + value = "g_flyingmachine.m2", + text = "g_flyingmachine.m2", + }, + { + fileId = "201007", + value = "g_foggerpoison.m2", + text = "g_foggerpoison.m2", + }, + { + fileId = "201008", + value = "g_freezingtrap.m2", + text = "g_freezingtrap.m2", + }, + { + fileId = "201009", + value = "g_frosttrap.m2", + text = "g_frosttrap.m2", + }, + { + fileId = "201011", + value = "g_gastrap.m2", + text = "g_gastrap.m2", + }, + { + fileId = "201012", + value = "g_ghost_01.m2", + text = "g_ghost_01.m2", + }, + { + fileId = "201014", + value = "g_ghosttrap.m2", + text = "g_ghosttrap.m2", + }, + { + fileId = "201015", + value = "g_ghosttrapchest.m2", + text = "g_ghosttrapchest.m2", + }, + { + fileId = "201018", + value = "g_gnomemultibox.m2", + text = "g_gnomemultibox.m2", + }, + { + fileId = "201020", + value = "g_gnomesparklematic.m2", + text = "g_gnomesparklematic.m2", + }, + { + fileId = "201022", + value = "g_gnometerminal.m2", + text = "g_gnometerminal.m2", + }, + { + fileId = "201023", + value = "g_gnometerminal_collision.m2", + text = "g_gnometerminal_collision.m2", + }, + { + fileId = "201026", + value = "g_goblinteleporter.m2", + text = "g_goblinteleporter.m2", + }, + { + fileId = "201028", + value = "g_gongrfd.m2", + text = "g_gongrfd.m2", + }, + { + fileId = "201029", + value = "g_gongtroll01.m2", + text = "g_gongtroll01.m2", + }, + { + fileId = "201030", + value = "g_graveburst.m2", + text = "g_graveburst.m2", + }, + { + fileId = "201032", + value = "g_gravebursttanaris.m2", + text = "g_gravebursttanaris.m2", + }, + { + fileId = "201033", + value = "g_hangingskeleton_01.m2", + text = "g_hangingskeleton_01.m2", + }, + { + fileId = "201039", + value = "g_hologrambasetanaris.m2", + text = "g_hologrambasetanaris.m2", + }, + { + fileId = "201041", + value = "g_hologramdwarf.m2", + text = "g_hologramdwarf.m2", + }, + { + fileId = "201045", + value = "g_hologramtrogg.m2", + text = "g_hologramtrogg.m2", + }, + { + fileId = "201046", + value = "g_holylightwell.m2", + text = "g_holylightwell.m2", + }, + { + fileId = "201047", + value = "g_iceblock.m2", + text = "g_iceblock.m2", + }, + { + fileId = "201048", + value = "g_icespike_impact.m2", + text = "g_icespike_impact.m2", + }, + { + fileId = "201049", + value = "g_immolationtrap.m2", + text = "g_immolationtrap.m2", + }, + { + fileId = "201051", + value = "g_impbottle.m2", + text = "g_impbottle.m2", + }, + { + fileId = "201053", + value = "g_jewelblack.m2", + text = "g_jewelblack.m2", + }, + { + fileId = "201054", + value = "g_jewelblue.m2", + text = "g_jewelblue.m2", + }, + { + fileId = "201056", + value = "g_jewelred.m2", + text = "g_jewelred.m2", + }, + { + fileId = "201058", + value = "g_keg.m2", + text = "g_keg.m2", + }, + { + fileId = "201060", + value = "g_kruskspear.m2", + text = "g_kruskspear.m2", + }, + { + fileId = "201061", + value = "g_levermetal.m2", + text = "g_levermetal.m2", + }, + { + fileId = "201062", + value = "g_manarift.m2", + text = "g_manarift.m2", + }, + { + fileId = "201067", + value = "g_mausoleumseal.m2", + text = "g_mausoleumseal.m2", + }, + { + fileId = "201070", + value = "g_mausoleumsealtrigger.m2", + text = "g_mausoleumsealtrigger.m2", + }, + { + fileId = "201072", + value = "g_minecar.m2", + text = "g_minecar.m2", + }, + { + fileId = "201073", + value = "g_mortar.m2", + text = "g_mortar.m2", + }, + { + fileId = "201075", + value = "g_mummytroll.m2", + text = "g_mummytroll.m2", + }, + { + fileId = "201076", + value = "g_nagashellmissile.m2", + text = "g_nagashellmissile.m2", + }, + { + fileId = "201077", + value = "g_necropolis.m2", + text = "g_necropolis.m2", + }, + { + fileId = "201080", + value = "g_netablet.m2", + text = "g_netablet.m2", + }, + { + fileId = "201085", + value = "g_promotion_purple.m2", + text = "g_promotion_purple.m2", + }, + { + fileId = "201087", + value = "g_pulsatingplant.m2", + text = "g_pulsatingplant.m2", + }, + { + fileId = "201088", + value = "g_pumpkin_01.m2", + text = "g_pumpkin_01.m2", + }, + { + fileId = "201089", + value = "g_pumpkin_02.m2", + text = "g_pumpkin_02.m2", + }, + { + fileId = "201090", + value = "g_pumpkin_03.m2", + text = "g_pumpkin_03.m2", + }, + { + fileId = "201092", + value = "g_relicnecat.m2", + text = "g_relicnecat.m2", + }, + { + fileId = "201093", + value = "g_relicnecup.m2", + text = "g_relicnecup.m2", + }, + { + fileId = "201094", + value = "g_relicnefigurine.m2", + text = "g_relicnefigurine.m2", + }, + { + fileId = "201095", + value = "g_relicnesphere.m2", + text = "g_relicnesphere.m2", + }, + { + fileId = "201097", + value = "g_ritualofdoom.m2", + text = "g_ritualofdoom.m2", + }, + { + fileId = "201098", + value = "g_ritualofsouls.m2", + text = "g_ritualofsouls.m2", + }, + { + fileId = "201099", + value = "g_ritualofsouls_blue.m2", + text = "g_ritualofsouls_blue.m2", + }, + { + fileId = "201101", + value = "g_runeblue01.m2", + text = "g_runeblue01.m2", + }, + { + fileId = "201103", + value = "g_runegroundblue01.m2", + text = "g_runegroundblue01.m2", + }, + { + fileId = "201104", + value = "g_runegroundgreen01.m2", + text = "g_runegroundgreen01.m2", + }, + { + fileId = "201105", + value = "g_runegroundgreen01b.m2", + text = "g_runegroundgreen01b.m2", + }, + { + fileId = "201106", + value = "g_runegroundpurple01.m2", + text = "g_runegroundpurple01.m2", + }, + { + fileId = "201111", + value = "g_scourgerunecirclecrystal.m2", + text = "g_scourgerunecirclecrystal.m2", + }, + { + fileId = "201113", + value = "g_scroll01.m2", + text = "g_scroll01.m2", + }, + { + fileId = "201115", + value = "g_scryingbowl.m2", + text = "g_scryingbowl.m2", + }, + { + fileId = "201117", + value = "g_snaketrap.m2", + text = "g_snaketrap.m2", + }, + { + fileId = "201118", + value = "g_soundobject.m2", + text = "g_soundobject.m2", + }, + { + fileId = "201119", + value = "g_soundportal.m2", + text = "g_soundportal.m2", + }, + { + fileId = "201121", + value = "g_spiketrap.m2", + text = "g_spiketrap.m2", + }, + { + fileId = "201122", + value = "g_spirittotem.m2", + text = "g_spirittotem.m2", + }, + { + fileId = "201124", + value = "g_sporemushroom.m2", + text = "g_sporemushroom.m2", + }, + { + fileId = "201125", + value = "g_stonesofbinding.m2", + text = "g_stonesofbinding.m2", + }, + { + fileId = "201127", + value = "g_tentburninator.m2", + text = "g_tentburninator.m2", + }, + { + fileId = "201129", + value = "g_torch01.m2", + text = "g_torch01.m2", + }, + { + fileId = "201130", + value = "g_torchlever.m2", + text = "g_torchlever.m2", + }, + { + fileId = "201132", + value = "g_trapcannonfloor.m2", + text = "g_trapcannonfloor.m2", + }, + { + fileId = "201133", + value = "g_uldamanmap.m2", + text = "g_uldamanmap.m2", + }, + { + fileId = "201136", + value = "g_voodootrollforcefield.m2", + text = "g_voodootrollforcefield.m2", + }, + { + fileId = "201137", + value = "g_water_barrel_01.m2", + text = "g_water_barrel_01.m2", + }, + { + fileId = "201138", + value = "g_water_buckets_01.m2", + text = "g_water_buckets_01.m2", + }, + { + fileId = "201139", + value = "g_water_buckets_02.m2", + text = "g_water_buckets_02.m2", + }, + { + fileId = "201140", + value = "g_water_buckets_03.m2", + text = "g_water_buckets_03.m2", + }, + { + fileId = "201142", + value = "g_watermelon.m2", + text = "g_watermelon.m2", + }, + { + fileId = "201143", + value = "g_wellofsouls_channeling.m2", + text = "g_wellofsouls_channeling.m2", + }, + { + fileId = "201144", + value = "g_witchbroom_01.m2", + text = "g_witchbroom_01.m2", + }, + { + fileId = "201145", + value = "g_witchhat_01.m2", + text = "g_witchhat_01.m2", + }, + { + fileId = "201146", + value = "g_xmastree.m2", + text = "g_xmastree.m2", + }, + { + fileId = "201149", + value = "goblin_lottery.m2", + text = "goblin_lottery.m2", + }, + { + fileId = "201156", + value = "landminealteracvalley.m2", + text = "landminealteracvalley.m2", + }, + { + fileId = "201182", + value = "ud_discoball.m2", + text = "ud_discoball.m2", + }, + }, + value = "goober", + text = "goober", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "201190", + value = "ashenvalemannarothspear.m2", + text = "ashenvalemannarothspear.m2", + }, + }, + value = "mannarothspear", + text = "mannarothspear", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "201195", + value = "ashenvalerock01.m2", + text = "ashenvalerock01.m2", + }, + { + fileId = "201196", + value = "ashenvalerock02.m2", + text = "ashenvalerock02.m2", + }, + { + fileId = "201197", + value = "ashenvalerock03.m2", + text = "ashenvalerock03.m2", + }, + { + fileId = "201198", + value = "ashenvalerock04.m2", + text = "ashenvalerock04.m2", + }, + }, + value = "ashenvalerocks", + text = "ashenvalerocks", + }, + { + children = { + { + fileId = "201201", + value = "ashenvaleroots01.m2", + text = "ashenvaleroots01.m2", + }, + { + fileId = "201202", + value = "ashenvaleroots02.m2", + text = "ashenvaleroots02.m2", + }, + { + fileId = "201203", + value = "ashenvaleroots03.m2", + text = "ashenvaleroots03.m2", + }, + { + fileId = "201204", + value = "ashenvaleroots04.m2", + text = "ashenvaleroots04.m2", + }, + }, + value = "ashenvaleroots", + text = "ashenvaleroots", + }, + { + children = { + { + fileId = "201208", + value = "ashenvalestump01.m2", + text = "ashenvalestump01.m2", + }, + { + fileId = "201209", + value = "ashenvalestump02.m2", + text = "ashenvalestump02.m2", + }, + { + fileId = "201211", + value = "ashenvaletreestump01.m2", + text = "ashenvaletreestump01.m2", + }, + { + fileId = "201212", + value = "ashenvaletreestump02.m2", + text = "ashenvaletreestump02.m2", + }, + { + fileId = "201213", + value = "ashenvaletreestump03.m2", + text = "ashenvaletreestump03.m2", + }, + { + fileId = "201214", + value = "ashenvaletreestump04.m2", + text = "ashenvaletreestump04.m2", + }, + }, + value = "ashenvalestumps", + text = "ashenvalestumps", + }, + { + children = { + { + fileId = "201217", + value = "ashenvaletreelog01.m2", + text = "ashenvaletreelog01.m2", + }, + { + fileId = "201218", + value = "ashenvaletreelog02.m2", + text = "ashenvaletreelog02.m2", + }, + }, + value = "ashenvaletreelogs", + text = "ashenvaletreelogs", + }, + { + children = { + { + fileId = "201221", + value = "ashenvalecuttree01.m2", + text = "ashenvalecuttree01.m2", + }, + { + fileId = "201222", + value = "ashenvalecuttree02.m2", + text = "ashenvalecuttree02.m2", + }, + { + fileId = "201223", + value = "ashenvaletree01.m2", + text = "ashenvaletree01.m2", + }, + { + fileId = "201224", + value = "ashenvaletree02.m2", + text = "ashenvaletree02.m2", + }, + { + fileId = "201226", + value = "ashenvaletree03.m2", + text = "ashenvaletree03.m2", + }, + { + fileId = "201228", + value = "ashenvaletree04.m2", + text = "ashenvaletree04.m2", + }, + { + fileId = "201230", + value = "ashenvaletree05.m2", + text = "ashenvaletree05.m2", + }, + }, + value = "ashenvaletrees", + text = "ashenvaletrees", + }, + { + children = { + { + fileId = "201233", + value = "ashenvaleplantstardust.m2", + text = "ashenvaleplantstardust.m2", + }, + }, + value = "bush", + text = "bush", + }, + { + children = { + { + fileId = "201235", + value = "ruinssatyraltpillar01.m2", + text = "ruinssatyraltpillar01.m2", + }, + { + fileId = "201236", + value = "ruinssatyrarch.m2", + text = "ruinssatyrarch.m2", + }, + { + fileId = "201238", + value = "ruinssatyrpillar01.m2", + text = "ruinssatyrpillar01.m2", + }, + { + fileId = "201240", + value = "ruinssatyrpillar02.m2", + text = "ruinssatyrpillar02.m2", + }, + { + fileId = "201241", + value = "ruinssatyrpillar03.m2", + text = "ruinssatyrpillar03.m2", + }, + { + fileId = "201246", + value = "ruinssatyrwall01.m2", + text = "ruinssatyrwall01.m2", + }, + { + fileId = "201247", + value = "ruinssatyrwall02.m2", + text = "ruinssatyrwall02.m2", + }, + { + fileId = "201248", + value = "ruinssatyrwall03.m2", + text = "ruinssatyrwall03.m2", + }, + { + fileId = "201249", + value = "ruinssatyrwall04.m2", + text = "ruinssatyrwall04.m2", + }, + { + fileId = "201250", + value = "ruinssatyrwall05.m2", + text = "ruinssatyrwall05.m2", + }, + { + fileId = "201251", + value = "ruinssatyrwall06.m2", + text = "ruinssatyrwall06.m2", + }, + }, + value = "satyrruins", + text = "satyrruins", + }, + { + children = { + { + fileId = "201252", + value = "ashensatyrtotem01.m2", + text = "ashensatyrtotem01.m2", + }, + { + fileId = "201253", + value = "ashensatyrtotem02.m2", + text = "ashensatyrtotem02.m2", + }, + { + fileId = "201254", + value = "ashensatyrtotem03.m2", + text = "ashensatyrtotem03.m2", + }, + { + fileId = "201255", + value = "ashensatyrtotem04.m2", + text = "ashensatyrtotem04.m2", + }, + { + fileId = "201256", + value = "ashensatyrtotem05.m2", + text = "ashensatyrtotem05.m2", + }, + }, + value = "satyrtotem", + text = "satyrtotem", + }, + { + children = { + { + fileId = "201263", + value = "corruptdryadshrine01.m2", + text = "corruptdryadshrine01.m2", + }, + { + fileId = "201264", + value = "dryadshrine01.m2", + text = "dryadshrine01.m2", + }, + { + fileId = "201265", + value = "dryadshrine02.m2", + text = "dryadshrine02.m2", + }, + { + fileId = "201267", + value = "neshrine.m2", + text = "neshrine.m2", + }, + { + fileId = "201269", + value = "neshrinesatyr.m2", + text = "neshrinesatyr.m2", + }, + }, + value = "shrines", + text = "shrines", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "ashenvale", + text = "ashenvale", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201271", + value = "arcanecrystal.m2", + text = "arcanecrystal.m2", + }, + }, + value = "arcanecrystal", + text = "arcanecrystal", + }, + { + children = { + { + fileId = "201273", + value = "azsharastonetablet01.m2", + text = "azsharastonetablet01.m2", + }, + { + fileId = "201275", + value = "azsharastonetablet02.m2", + text = "azsharastonetablet02.m2", + }, + { + fileId = "201276", + value = "azsharastonetablet03.m2", + text = "azsharastonetablet03.m2", + }, + { + fileId = "201277", + value = "azsharastonetablet04.m2", + text = "azsharastonetablet04.m2", + }, + }, + value = "stonetablets", + text = "stonetablets", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "201279", + value = "anemone01.m2", + text = "anemone01.m2", + }, + { + fileId = "201280", + value = "anemone02.m2", + text = "anemone02.m2", + }, + { + fileId = "201281", + value = "seaurchin01.m2", + text = "seaurchin01.m2", + }, + }, + value = "anemone", + text = "anemone", + }, + { + children = { + { + fileId = "201284", + value = "barnaclerock01.m2", + text = "barnaclerock01.m2", + }, + }, + value = "barnaclerock", + text = "barnaclerock", + }, + { + children = { + { + fileId = "201285", + value = "azsharabubble2.m2", + text = "azsharabubble2.m2", + }, + { + fileId = "201286", + value = "azsharabubbles.m2", + text = "azsharabubbles.m2", + }, + }, + value = "bubbles", + text = "bubbles", + }, + { + children = { + { + fileId = "201288", + value = "coral01.m2", + text = "coral01.m2", + }, + { + fileId = "201292", + value = "coraltree01.m2", + text = "coraltree01.m2", + }, + { + fileId = "201293", + value = "coraltree02.m2", + text = "coraltree02.m2", + }, + }, + value = "coral", + text = "coral", + }, + { + children = { + { + fileId = "201295", + value = "azsharadebriswall.m2", + text = "azsharadebriswall.m2", + }, + }, + value = "debriswall", + text = "debriswall", + }, + { + children = { + { + fileId = "201299", + value = "azharadragonstatue_01.m2", + text = "azharadragonstatue_01.m2", + }, + { + fileId = "201300", + value = "azharadragonstatue_02.m2", + text = "azharadragonstatue_02.m2", + }, + }, + value = "dragonstatues", + text = "dragonstatues", + }, + { + children = { + { + fileId = "201302", + value = "nagaflag01.m2", + text = "nagaflag01.m2", + }, + { + fileId = "201303", + value = "nagaflag02.m2", + text = "nagaflag02.m2", + }, + }, + value = "nagaflags", + text = "nagaflags", + }, + { + children = { + { + fileId = "201304", + value = "nagapagoda02.m2", + text = "nagapagoda02.m2", + }, + }, + value = "nagapagoda", + text = "nagapagoda", + }, + { + children = { + { + fileId = "201305", + value = "azshararock01.m2", + text = "azshararock01.m2", + }, + { + fileId = "201306", + value = "azshararock02.m2", + text = "azshararock02.m2", + }, + { + fileId = "201307", + value = "azshararock03.m2", + text = "azshararock03.m2", + }, + { + fileId = "201308", + value = "azshararock04.m2", + text = "azshararock04.m2", + }, + { + fileId = "201309", + value = "azshararock05.m2", + text = "azshararock05.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "201310", + value = "azsharashell01.m2", + text = "azsharashell01.m2", + }, + { + fileId = "201312", + value = "azsharashell02.m2", + text = "azsharashell02.m2", + }, + { + fileId = "201314", + value = "azsharashell03.m2", + text = "azsharashell03.m2", + }, + { + fileId = "201316", + value = "azsharashell04.m2", + text = "azsharashell04.m2", + }, + { + fileId = "201318", + value = "azsharashell05.m2", + text = "azsharashell05.m2", + }, + { + fileId = "201319", + value = "azsharashell06.m2", + text = "azsharashell06.m2", + }, + { + fileId = "201321", + value = "azsharashell07.m2", + text = "azsharashell07.m2", + }, + { + fileId = "201323", + value = "azsharashell08.m2", + text = "azsharashell08.m2", + }, + }, + value = "seashells", + text = "seashells", + }, + { + children = { + { + fileId = "2198499", + value = "seaweed01.m2", + text = "seaweed01.m2", + }, + { + fileId = "2198548", + value = "seaweed02.m2", + text = "seaweed02.m2", + }, + }, + value = "seaweed", + text = "seaweed", + }, + { + children = { + { + fileId = "201331", + value = "starfish02.m2", + text = "starfish02.m2", + }, + }, + value = "starfish", + text = "starfish", + }, + { + children = { + { + fileId = "201332", + value = "azr_tree01.m2", + text = "azr_tree01.m2", + }, + { + fileId = "201333", + value = "azr_tree02.m2", + text = "azr_tree02.m2", + }, + { + fileId = "201334", + value = "azr_tree03.m2", + text = "azr_tree03.m2", + }, + { + fileId = "201335", + value = "azr_tree04.m2", + text = "azr_tree04.m2", + }, + { + fileId = "201336", + value = "azr_tree05.m2", + text = "azr_tree05.m2", + }, + { + fileId = "201337", + value = "azr_tree06.m2", + text = "azr_tree06.m2", + }, + { + fileId = "201338", + value = "azr_tree07.m2", + text = "azr_tree07.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + { + children = { + { + children = { + { + fileId = "201351", + value = "anemity01_02.m2", + text = "anemity01_02.m2", + }, + }, + value = "anemity01_02000", + text = "anemity01_02000", + }, + { + children = { + { + fileId = "201352", + value = "barnaclerock01_04.m2", + text = "barnaclerock01_04.m2", + }, + }, + value = "barnaclerock01_04", + text = "barnaclerock01_04", + }, + { + children = { + { + fileId = "201354", + value = "coral03_01.m2", + text = "coral03_01.m2", + }, + }, + value = "coral03_01", + text = "coral03_01", + }, + { + children = { + { + fileId = "201355", + value = "coraltree01_06.m2", + text = "coraltree01_06.m2", + }, + }, + value = "coraltree01_06", + text = "coraltree01_06", + }, + { + children = { + { + fileId = "201356", + value = "coraltree02_07.m2", + text = "coraltree02_07.m2", + }, + }, + value = "coraltree02_07", + text = "coraltree02_07", + }, + { + children = { + { + fileId = "201357", + value = "seaurchin01_05.m2", + text = "seaurchin01_05.m2", + }, + }, + value = "seaurchin01_05", + text = "seaurchin01_05", + }, + { + children = { + { + fileId = "201358", + value = "starfish01_02.m2", + text = "starfish01_02.m2", + }, + }, + value = "starfish01_02", + text = "starfish01_02", + }, + }, + value = "seaplants", + text = "seaplants", + }, + }, + value = "azshara", + text = "azshara", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201363", + value = "kotobeastbone01.m2", + text = "kotobeastbone01.m2", + }, + { + fileId = "201364", + value = "kotobeastbone02.m2", + text = "kotobeastbone02.m2", + }, + { + fileId = "201365", + value = "kotobeastbone03.m2", + text = "kotobeastbone03.m2", + }, + { + fileId = "201366", + value = "kotobeastbone04.m2", + text = "kotobeastbone04.m2", + }, + { + fileId = "201367", + value = "kotobeastbone05.m2", + text = "kotobeastbone05.m2", + }, + }, + value = "bones", + text = "bones", + }, + { + children = { + { + fileId = "201370", + value = "barrensbush01.m2", + text = "barrensbush01.m2", + }, + { + fileId = "201371", + value = "barrensbush02.m2", + text = "barrensbush02.m2", + }, + { + fileId = "201372", + value = "barrensbush03.m2", + text = "barrensbush03.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "201375", + value = "kodoegg01.m2", + text = "kodoegg01.m2", + }, + { + fileId = "201376", + value = "kodoegg02.m2", + text = "kodoegg02.m2", + }, + }, + value = "kodoeggs", + text = "kodoeggs", + }, + { + children = { + { + fileId = "201377", + value = "barrenslamppost01.m2", + text = "barrenslamppost01.m2", + }, + }, + value = "lampposts", + text = "lampposts", + }, + { + children = { + { + fileId = "201380", + value = "mkshrine.m2", + text = "mkshrine.m2", + }, + }, + value = "mkshrine", + text = "mkshrine", + }, + { + children = { + { + fileId = "201383", + value = "barrenstermitemound01.m2", + text = "barrenstermitemound01.m2", + }, + { + fileId = "201384", + value = "barrenstermitemound02.m2", + text = "barrenstermitemound02.m2", + }, + { + fileId = "201385", + value = "barrenstermitemound03.m2", + text = "barrenstermitemound03.m2", + }, + { + fileId = "201386", + value = "barrenstermitemound04.m2", + text = "barrenstermitemound04.m2", + }, + }, + value = "mounds", + text = "mounds", + }, + { + children = { + { + fileId = "201389", + value = "raptorhut01.m2", + text = "raptorhut01.m2", + }, + { + fileId = "201390", + value = "raptorhut02.m2", + text = "raptorhut02.m2", + }, + }, + value = "raptorhuts", + text = "raptorhuts", + }, + { + children = { + { + fileId = "201394", + value = "barrenstree01.m2", + text = "barrenstree01.m2", + }, + { + fileId = "201396", + value = "barrenstree02.m2", + text = "barrenstree02.m2", + }, + { + fileId = "201398", + value = "barrenstree03.m2", + text = "barrenstree03.m2", + }, + { + fileId = "201399", + value = "barrenstree04.m2", + text = "barrenstree04.m2", + }, + { + fileId = "201400", + value = "barrenstree05.m2", + text = "barrenstree05.m2", + }, + { + fileId = "201402", + value = "barrenstree06.m2", + text = "barrenstree06.m2", + }, + { + fileId = "201403", + value = "barrenstree07.m2", + text = "barrenstree07.m2", + }, + { + fileId = "201405", + value = "barrenstree08.m2", + text = "barrenstree08.m2", + }, + { + fileId = "201406", + value = "barrenstree09.m2", + text = "barrenstree09.m2", + }, + { + fileId = "201407", + value = "barrenstree10.m2", + text = "barrenstree10.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "201413", + value = "barrensbustedwagon.m2", + text = "barrensbustedwagon.m2", + }, + { + fileId = "201416", + value = "barrenswagon01.m2", + text = "barrenswagon01.m2", + }, + { + fileId = "201417", + value = "barrenswagon02.m2", + text = "barrenswagon02.m2", + }, + { + fileId = "201418", + value = "barrenswagon03.m2", + text = "barrenswagon03.m2", + }, + }, + value = "wagon", + text = "wagon", + }, + { + children = { + { + fileId = "201421", + value = "orc_waterwheel.m2", + text = "orc_waterwheel.m2", + }, + }, + value = "waterwheel", + text = "waterwheel", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "barrens", + text = "barrens", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201422", + value = "bfd_nagabrazier.m2", + text = "bfd_nagabrazier.m2", + }, + }, + value = "braziers", + text = "braziers", + }, + { + children = { + { + fileId = "201424", + value = "bfd_stonechair01.m2", + text = "bfd_stonechair01.m2", + }, + { + fileId = "201425", + value = "bfd_stonechair02.m2", + text = "bfd_stonechair02.m2", + }, + { + fileId = "201426", + value = "bfd_stonechair03.m2", + text = "bfd_stonechair03.m2", + }, + }, + value = "furniture", + text = "furniture", + }, + { + children = { + { + fileId = "201429", + value = "bfd_walllight01.m2", + text = "bfd_walllight01.m2", + }, + { + fileId = "201430", + value = "bfd_walllight03.m2", + text = "bfd_walllight03.m2", + }, + { + fileId = "201431", + value = "bfd_walllight04.m2", + text = "bfd_walllight04.m2", + }, + { + fileId = "201432", + value = "bfd_walllight05.m2", + text = "bfd_walllight05.m2", + }, + { + fileId = "201433", + value = "bfd_walllight06.m2", + text = "bfd_walllight06.m2", + }, + { + fileId = "201434", + value = "bfd_walllight07.m2", + text = "bfd_walllight07.m2", + }, + { + fileId = "201435", + value = "bfd_walltorch01.m2", + text = "bfd_walltorch01.m2", + }, + { + fileId = "201436", + value = "bfd_wisp01.m2", + text = "bfd_wisp01.m2", + }, + { + fileId = "201437", + value = "bfd_wisplarge.m2", + text = "bfd_wisplarge.m2", + }, + { + fileId = "201438", + value = "bfd_wispmed.m2", + text = "bfd_wispmed.m2", + }, + { + fileId = "201439", + value = "bfd_wispsmall.m2", + text = "bfd_wispsmall.m2", + }, + { + fileId = "201440", + value = "bfd_wispsmallgreen.m2", + text = "bfd_wispsmallgreen.m2", + }, + { + fileId = "201441", + value = "bfd_wispsmallpurple.m2", + text = "bfd_wispsmallpurple.m2", + }, + }, + value = "lights", + text = "lights", + }, + { + children = { + { + fileId = "201445", + value = "bfd_brokenpottery01.m2", + text = "bfd_brokenpottery01.m2", + }, + { + fileId = "201446", + value = "bfd_brokenpottery02.m2", + text = "bfd_brokenpottery02.m2", + }, + { + fileId = "201447", + value = "blackfathom_pot01.m2", + text = "blackfathom_pot01.m2", + }, + { + fileId = "201448", + value = "blackfathom_pot02.m2", + text = "blackfathom_pot02.m2", + }, + { + fileId = "201449", + value = "blackfathom_pot03.m2", + text = "blackfathom_pot03.m2", + }, + { + fileId = "201450", + value = "blackfathom_pot04.m2", + text = "blackfathom_pot04.m2", + }, + }, + value = "pottery", + text = "pottery", + }, + { + children = { + { + fileId = "201452", + value = "bfd_statuenagapriestess.m2", + text = "bfd_statuenagapriestess.m2", + }, + }, + value = "statue", + text = "statue", + }, + { + children = { + { + fileId = "201455", + value = "bfd_waterfalls01.m2", + text = "bfd_waterfalls01.m2", + }, + { + fileId = "201456", + value = "bfd_waterfalls02.m2", + text = "bfd_waterfalls02.m2", + }, + { + fileId = "201457", + value = "bfd_waterfalls03.m2", + text = "bfd_waterfalls03.m2", + }, + { + fileId = "201458", + value = "bfd_waterfalls04.m2", + text = "bfd_waterfalls04.m2", + }, + { + fileId = "201459", + value = "bfd_waterfalls05.m2", + text = "bfd_waterfalls05.m2", + }, + { + fileId = "201460", + value = "bfd_waterfalls06.m2", + text = "bfd_waterfalls06.m2", + }, + { + fileId = "201461", + value = "bfd_waterfalls07.m2", + text = "bfd_waterfalls07.m2", + }, + { + fileId = "201462", + value = "bfd_waterfalls08.m2", + text = "bfd_waterfalls08.m2", + }, + { + fileId = "201463", + value = "bfd_waterfalls09.m2", + text = "bfd_waterfalls09.m2", + }, + { + fileId = "201464", + value = "bfd_waterfalls10.m2", + text = "bfd_waterfalls10.m2", + }, + { + fileId = "201465", + value = "bfd_waterfalls11.m2", + text = "bfd_waterfalls11.m2", + }, + }, + value = "waterfalls", + text = "waterfalls", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "blackfathom", + text = "blackfathom", + }, + { + children = { + { + children = { + { + fileId = "201468", + value = "centaurhorncover.m2", + text = "centaurhorncover.m2", + }, + { + fileId = "201469", + value = "centaurhornmouthpiece.m2", + text = "centaurhornmouthpiece.m2", + }, + }, + value = "desolace", + text = "desolace", + }, + }, + value = "buildings", + text = "buildings", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201472", + value = "illidancrystal01.m2", + text = "illidancrystal01.m2", + }, + }, + value = "illidancrystal", + text = "illidancrystal", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + fileId = "201475", + value = "giantseaturtle03.m2", + text = "giantseaturtle03.m2", + }, + { + fileId = "201476", + value = "giantseaturtle04.m2", + text = "giantseaturtle04.m2", + }, + }, + value = "giantseaturtle", + text = "giantseaturtle", + }, + { + children = { + { + fileId = "201486", + value = "snakeskullgiant.m2", + text = "snakeskullgiant.m2", + }, + }, + value = "giantsnakeskulls", + text = "giantsnakeskulls", + }, + { + children = { + { + fileId = "201487", + value = "snakespinegiant01.m2", + text = "snakespinegiant01.m2", + }, + { + fileId = "201488", + value = "snakespinegiant02.m2", + text = "snakespinegiant02.m2", + }, + { + fileId = "201489", + value = "snakespinegiant03.m2", + text = "snakespinegiant03.m2", + }, + }, + value = "giantsnakespines", + text = "giantsnakespines", + }, + { + children = { + { + children = { + { + fileId = "201490", + value = "darkshoreanchor01.m2", + text = "darkshoreanchor01.m2", + }, + }, + value = "anchors", + text = "anchors", + }, + { + children = { + { + fileId = "201493", + value = "darkshoreboat.m2", + text = "darkshoreboat.m2", + }, + }, + value = "boats", + text = "boats", + }, + { + children = { + { + fileId = "201494", + value = "darkshorebush01.m2", + text = "darkshorebush01.m2", + }, + { + fileId = "201495", + value = "darkshorebush02.m2", + text = "darkshorebush02.m2", + }, + { + fileId = "201496", + value = "darkshorebush03.m2", + text = "darkshorebush03.m2", + }, + { + fileId = "201497", + value = "darkshorebush04.m2", + text = "darkshorebush04.m2", + }, + { + fileId = "201498", + value = "darkshorebush05.m2", + text = "darkshorebush05.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "201503", + value = "darkshorelog01.m2", + text = "darkshorelog01.m2", + }, + { + fileId = "201504", + value = "darkshorelog02.m2", + text = "darkshorelog02.m2", + }, + }, + value = "darkshorelogs", + text = "darkshorelogs", + }, + { + children = { + { + fileId = "201511", + value = "darkshoretree01.m2", + text = "darkshoretree01.m2", + }, + { + fileId = "201513", + value = "darkshoretree02.m2", + text = "darkshoretree02.m2", + }, + { + fileId = "201514", + value = "darkshoretree03.m2", + text = "darkshoretree03.m2", + }, + { + fileId = "201515", + value = "darkshoretree04.m2", + text = "darkshoretree04.m2", + }, + { + fileId = "201516", + value = "darkshoretree05.m2", + text = "darkshoretree05.m2", + }, + { + fileId = "201517", + value = "darkshoretree06.m2", + text = "darkshoretree06.m2", + }, + { + fileId = "201518", + value = "darkshoretree07.m2", + text = "darkshoretree07.m2", + }, + { + fileId = "201519", + value = "darkshoretree08.m2", + text = "darkshoretree08.m2", + }, + }, + value = "darkshoretrees", + text = "darkshoretrees", + }, + { + children = { + { + fileId = "201524", + value = "darkshoredock.m2", + text = "darkshoredock.m2", + }, + }, + value = "dock", + text = "dock", + }, + { + children = { + { + fileId = "201526", + value = "darkshoredock01.m2", + text = "darkshoredock01.m2", + }, + { + fileId = "201527", + value = "darkshoredockramp01.m2", + text = "darkshoredockramp01.m2", + }, + }, + value = "docks", + text = "docks", + }, + { + children = { + { + fileId = "201528", + value = "darkshorefallentreeroots01.m2", + text = "darkshorefallentreeroots01.m2", + }, + }, + value = "fallentreeroots", + text = "fallentreeroots", + }, + { + children = { + { + fileId = "201529", + value = "darkshoregazeebo.m2", + text = "darkshoregazeebo.m2", + }, + { + fileId = "201530", + value = "darkshoregazeeboruined01.m2", + text = "darkshoregazeeboruined01.m2", + }, + }, + value = "gazeebo", + text = "gazeebo", + }, + { + children = { + { + fileId = "201531", + value = "glaivemaster.m2", + text = "glaivemaster.m2", + }, + }, + value = "glaivemaster", + text = "glaivemaster", + }, + { + children = { + { + fileId = "201536", + value = "glaivemasterroots01.m2", + text = "glaivemasterroots01.m2", + }, + { + fileId = "201537", + value = "glaivemasterroots02.m2", + text = "glaivemasterroots02.m2", + }, + }, + value = "glaivemasterroots", + text = "glaivemasterroots", + }, + { + children = { + { + fileId = "201538", + value = "glaivemastertentacle.m2", + text = "glaivemastertentacle.m2", + }, + { + fileId = "201539", + value = "glaivemastertentacleend.m2", + text = "glaivemastertentacleend.m2", + }, + }, + value = "glaivemastertentacles", + text = "glaivemastertentacles", + }, + { + children = { + { + fileId = "201541", + value = "darkstreetlamp.m2", + text = "darkstreetlamp.m2", + }, + { + fileId = "201542", + value = "darkstreetlamp02.m2", + text = "darkstreetlamp02.m2", + }, + }, + value = "lamp", + text = "lamp", + }, + { + children = { + { + fileId = "201544", + value = "darkshoremoongate.m2", + text = "darkshoremoongate.m2", + }, + { + fileId = "201545", + value = "darkshoremoongatebase.m2", + text = "darkshoremoongatebase.m2", + }, + { + fileId = "201546", + value = "darkshoremoongatetop.m2", + text = "darkshoremoongatetop.m2", + }, + }, + value = "moongate", + text = "moongate", + }, + { + children = { + { + fileId = "201548", + value = "darkshorerock03.m2", + text = "darkshorerock03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "201551", + value = "darkshorerock01.m2", + text = "darkshorerock01.m2", + }, + { + fileId = "201552", + value = "darkshorerock02.m2", + text = "darkshorerock02.m2", + }, + { + fileId = "201553", + value = "darkshoreruinpillar01.m2", + text = "darkshoreruinpillar01.m2", + }, + { + fileId = "201554", + value = "darkshoreruinpillar02.m2", + text = "darkshoreruinpillar02.m2", + }, + { + fileId = "201555", + value = "darkshoreruinpillar03.m2", + text = "darkshoreruinpillar03.m2", + }, + { + fileId = "201556", + value = "darkshoreruinpillar04.m2", + text = "darkshoreruinpillar04.m2", + }, + { + fileId = "201557", + value = "darkshoreruinpillar05.m2", + text = "darkshoreruinpillar05.m2", + }, + { + fileId = "201558", + value = "darkshoreruinwall01.m2", + text = "darkshoreruinwall01.m2", + }, + { + fileId = "201559", + value = "darkshoreruinwall02.m2", + text = "darkshoreruinwall02.m2", + }, + { + fileId = "201560", + value = "darkshoreruinwall03.m2", + text = "darkshoreruinwall03.m2", + }, + { + fileId = "201561", + value = "darkshoreruinwall04.m2", + text = "darkshoreruinwall04.m2", + }, + { + fileId = "201562", + value = "darkshoreruinwall05.m2", + text = "darkshoreruinwall05.m2", + }, + { + fileId = "201563", + value = "darkshoreruinwall06.m2", + text = "darkshoreruinwall06.m2", + }, + }, + value = "ruins", + text = "ruins", + }, + { + children = { + { + fileId = "201568", + value = "darkshoreseamonster01.m2", + text = "darkshoreseamonster01.m2", + }, + }, + value = "seamonstercarcass", + text = "seamonstercarcass", + }, + { + children = { + { + fileId = "201571", + value = "darkshorefallentree01.m2", + text = "darkshorefallentree01.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + { + children = { + { + fileId = "201573", + value = "darkshorethreshadoncorpse.m2", + text = "darkshorethreshadoncorpse.m2", + }, + }, + value = "threshadoncorpse", + text = "threshadoncorpse", + }, + }, + value = "darkshore", + text = "darkshore", + }, + { + children = { + { + children = { + { + fileId = "201575", + value = "defiledtotem01.m2", + text = "defiledtotem01.m2", + }, + { + fileId = "201576", + value = "defiledtotem02.m2", + text = "defiledtotem02.m2", + }, + { + children = { + { + fileId = "201581", + value = "bannercentaur01.m2", + text = "bannercentaur01.m2", + }, + { + fileId = "201582", + value = "bannercentaur02.m2", + text = "bannercentaur02.m2", + }, + { + fileId = "201583", + value = "bannercentaur03.m2", + text = "bannercentaur03.m2", + }, + { + fileId = "201584", + value = "bannercentaur04.m2", + text = "bannercentaur04.m2", + }, + { + fileId = "201593", + value = "kodograve01.m2", + text = "kodograve01.m2", + }, + { + fileId = "201594", + value = "kodograve02.m2", + text = "kodograve02.m2", + }, + { + fileId = "201595", + value = "kodograve03.m2", + text = "kodograve03.m2", + }, + { + fileId = "201596", + value = "kodograve04.m2", + text = "kodograve04.m2", + }, + { + fileId = "201597", + value = "kodograve05.m2", + text = "kodograve05.m2", + }, + { + fileId = "201598", + value = "kodograve06.m2", + text = "kodograve06.m2", + }, + { + fileId = "201599", + value = "kodograve07.m2", + text = "kodograve07.m2", + }, + { + fileId = "201600", + value = "kodograve08.m2", + text = "kodograve08.m2", + }, + { + fileId = "201601", + value = "kodograve09.m2", + text = "kodograve09.m2", + }, + { + fileId = "201602", + value = "kodograve10.m2", + text = "kodograve10.m2", + }, + { + fileId = "201603", + value = "kodograve11.m2", + text = "kodograve11.m2", + }, + { + fileId = "201604", + value = "kodograve12.m2", + text = "kodograve12.m2", + }, + { + fileId = "201605", + value = "kodograve13.m2", + text = "kodograve13.m2", + }, + { + fileId = "201606", + value = "kodograve14.m2", + text = "kodograve14.m2", + }, + }, + value = "kodogravebones", + text = "kodogravebones", + }, + { + children = { + { + fileId = "201607", + value = "desolacemushroom.m2", + text = "desolacemushroom.m2", + }, + }, + value = "mushrooms", + text = "mushrooms", + }, + { + children = { + { + fileId = "201610", + value = "desolacerock01.m2", + text = "desolacerock01.m2", + }, + { + fileId = "201611", + value = "desolacerock02.m2", + text = "desolacerock02.m2", + }, + { + fileId = "201612", + value = "desolacerock03.m2", + text = "desolacerock03.m2", + }, + { + fileId = "201613", + value = "desolacerock04.m2", + text = "desolacerock04.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "201614", + value = "centaurspears01.m2", + text = "centaurspears01.m2", + }, + { + fileId = "201615", + value = "centaurspears02.m2", + text = "centaurspears02.m2", + }, + { + fileId = "201616", + value = "centaurspearscone.m2", + text = "centaurspearscone.m2", + }, + }, + value = "spearwalls", + text = "spearwalls", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "desolace", + text = "desolace", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201617", + value = "corruptedcrystalshard.m2", + text = "corruptedcrystalshard.m2", + }, + { + fileId = "201618", + value = "corruptedcrystalshard_blue.m2", + text = "corruptedcrystalshard_blue.m2", + }, + { + fileId = "201619", + value = "corruptedcrystalvine.m2", + text = "corruptedcrystalvine.m2", + }, + }, + value = "crystalcorrupter", + text = "crystalcorrupter", + }, + { + children = { + { + fileId = "201624", + value = "diremaulbossforcefield.m2", + text = "diremaulbossforcefield.m2", + }, + { + fileId = "201626", + value = "diremauldoor01.m2", + text = "diremauldoor01.m2", + }, + { + fileId = "201627", + value = "diremauldoor02.m2", + text = "diremauldoor02.m2", + }, + { + fileId = "201629", + value = "diremauldoor03.m2", + text = "diremauldoor03.m2", + }, + { + fileId = "201631", + value = "diremauldoor04.m2", + text = "diremauldoor04.m2", + }, + { + fileId = "201634", + value = "diremaulsmallinstancedoor.m2", + text = "diremaulsmallinstancedoor.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "201638", + value = "diremaulcrystalgenerator.m2", + text = "diremaulcrystalgenerator.m2", + }, + }, + value = "lightcrystal", + text = "lightcrystal", + }, + { + children = { + { + fileId = "201641", + value = "nightmarebell.m2", + text = "nightmarebell.m2", + }, + { + fileId = "201642", + value = "nightmarecandle.m2", + text = "nightmarecandle.m2", + }, + { + fileId = "201643", + value = "nightmarestone.m2", + text = "nightmarestone.m2", + }, + }, + value = "nightmaresummoning", + text = "nightmaresummoning", + }, + { + children = { + { + fileId = "201649", + value = "warlockmountritualcircle01.m2", + text = "warlockmountritualcircle01.m2", + }, + { + fileId = "201650", + value = "warlockmountritualcircle01a.m2", + text = "warlockmountritualcircle01a.m2", + }, + { + fileId = "201651", + value = "warlockmountritualcircle01b.m2", + text = "warlockmountritualcircle01b.m2", + }, + { + fileId = "201652", + value = "warlockmountritualcircle01c.m2", + text = "warlockmountritualcircle01c.m2", + }, + { + fileId = "201653", + value = "warlockmountritualcircle01d.m2", + text = "warlockmountritualcircle01d.m2", + }, + }, + value = "warlockcircle", + text = "warlockcircle", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "201658", + value = "diremaulstonebearstatue.m2", + text = "diremaulstonebearstatue.m2", + }, + { + fileId = "201660", + value = "diremaulstonedeerstatue.m2", + text = "diremaulstonedeerstatue.m2", + }, + { + fileId = "201662", + value = "diremaulstoneowlstatue.m2", + text = "diremaulstoneowlstatue.m2", + }, + }, + value = "animalheadstatues", + text = "animalheadstatues", + }, + { + children = { + { + fileId = "201663", + value = "diremaul_banner.m2", + text = "diremaul_banner.m2", + }, + { + fileId = "201664", + value = "diremaul_banner_post.m2", + text = "diremaul_banner_post.m2", + }, + { + fileId = "201665", + value = "diremaul_banner_tattered.m2", + text = "diremaul_banner_tattered.m2", + }, + { + fileId = "201666", + value = "diremaul_banner_torn01.m2", + text = "diremaul_banner_torn01.m2", + }, + { + fileId = "201667", + value = "diremaul_banner_torn02.m2", + text = "diremaul_banner_torn02.m2", + }, + { + fileId = "201670", + value = "ogrepostbanner.m2", + text = "ogrepostbanner.m2", + }, + { + fileId = "201671", + value = "ogrestapledwallbanner.m2", + text = "ogrestapledwallbanner.m2", + }, + { + fileId = "201672", + value = "ogrestapledwallbanner02.m2", + text = "ogrestapledwallbanner02.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "201675", + value = "brokenferalastree01.m2", + text = "brokenferalastree01.m2", + }, + }, + value = "deadtrees", + text = "deadtrees", + }, + { + fileId = "201679", + value = "goldenhighelfstatue01.m2", + text = "goldenhighelfstatue01.m2", + }, + { + fileId = "201680", + value = "goldenhighelfstatue02.m2", + text = "goldenhighelfstatue02.m2", + }, + { + fileId = "201681", + value = "goldenhighelfstatue03.m2", + text = "goldenhighelfstatue03.m2", + }, + { + children = { + { + fileId = "201688", + value = "ogrecampfire01.m2", + text = "ogrecampfire01.m2", + }, + }, + value = "ogrecampfires", + text = "ogrecampfires", + }, + { + children = { + { + fileId = "201689", + value = "diremaulogreladder01.m2", + text = "diremaulogreladder01.m2", + }, + }, + value = "ogreladder", + text = "ogreladder", + }, + { + children = { + { + fileId = "201691", + value = "diremaulogrepost01.m2", + text = "diremaulogrepost01.m2", + }, + { + fileId = "201692", + value = "diremaulogrepost02.m2", + text = "diremaulogrepost02.m2", + }, + { + fileId = "201693", + value = "diremaulogrepost03.m2", + text = "diremaulogrepost03.m2", + }, + { + fileId = "201694", + value = "diremaulogrepost04.m2", + text = "diremaulogrepost04.m2", + }, + }, + value = "ogreposts", + text = "ogreposts", + }, + { + children = { + { + fileId = "201696", + value = "diremaulogrescaffolding01.m2", + text = "diremaulogrescaffolding01.m2", + }, + }, + value = "ogrescaffolding", + text = "ogrescaffolding", + }, + { + children = { + { + fileId = "201699", + value = "diremaulfloorrubble01.m2", + text = "diremaulfloorrubble01.m2", + }, + { + fileId = "201700", + value = "diremaulfloorrubble02.m2", + text = "diremaulfloorrubble02.m2", + }, + { + fileId = "201701", + value = "diremaulfloorrubble03.m2", + text = "diremaulfloorrubble03.m2", + }, + { + fileId = "201702", + value = "diremaulgroundrubble01.m2", + text = "diremaulgroundrubble01.m2", + }, + { + fileId = "201703", + value = "diremaulgroundrubble02.m2", + text = "diremaulgroundrubble02.m2", + }, + { + fileId = "201704", + value = "diremaulgroundrubble03.m2", + text = "diremaulgroundrubble03.m2", + }, + { + fileId = "201705", + value = "diremaulstonestatue01.m2", + text = "diremaulstonestatue01.m2", + }, + { + fileId = "201706", + value = "diremaulstonestatue02.m2", + text = "diremaulstonestatue02.m2", + }, + { + fileId = "201707", + value = "diremaulstonestatue03.m2", + text = "diremaulstonestatue03.m2", + }, + { + fileId = "201708", + value = "diremaulstonestatue04.m2", + text = "diremaulstonestatue04.m2", + }, + { + fileId = "201709", + value = "diremaultreeroot01.m2", + text = "diremaultreeroot01.m2", + }, + { + fileId = "201710", + value = "diremaultreeroot02.m2", + text = "diremaultreeroot02.m2", + }, + { + fileId = "201711", + value = "diremaultreeroot03.m2", + text = "diremaultreeroot03.m2", + }, + { + fileId = "201712", + value = "diremaultreeroot04.m2", + text = "diremaultreeroot04.m2", + }, + { + fileId = "201713", + value = "diremaultreeroot05.m2", + text = "diremaultreeroot05.m2", + }, + { + fileId = "201714", + value = "diremaultreeroot06.m2", + text = "diremaultreeroot06.m2", + }, + { + fileId = "201715", + value = "diremaultrimrubble01.m2", + text = "diremaultrimrubble01.m2", + }, + { + fileId = "201716", + value = "diremaultrimrubble02.m2", + text = "diremaultrimrubble02.m2", + }, + { + fileId = "201717", + value = "diremaultrimrubble03.m2", + text = "diremaultrimrubble03.m2", + }, + { + fileId = "201718", + value = "diremaulwallrubble01.m2", + text = "diremaulwallrubble01.m2", + }, + { + fileId = "201719", + value = "diremaulwallrubble02.m2", + text = "diremaulwallrubble02.m2", + }, + { + fileId = "201720", + value = "diremaulwallrubble03.m2", + text = "diremaulwallrubble03.m2", + }, + }, + value = "rubble", + text = "rubble", + }, + { + children = { + { + fileId = "201723", + value = "deadtreeplanterbox.m2", + text = "deadtreeplanterbox.m2", + }, + { + fileId = "201724", + value = "deadtreeplanterbox02.m2", + text = "deadtreeplanterbox02.m2", + }, + { + fileId = "201725", + value = "deadtreeplanterbox03.m2", + text = "deadtreeplanterbox03.m2", + }, + }, + value = "treeplanters", + text = "treeplanters", + }, + { + children = { + { + fileId = "201731", + value = "gardentreecanopy.m2", + text = "gardentreecanopy.m2", + }, + { + fileId = "201732", + value = "gardentreeferalas.m2", + text = "gardentreeferalas.m2", + }, + { + fileId = "201733", + value = "gardentreeferalasb.m2", + text = "gardentreeferalasb.m2", + }, + { + fileId = "201734", + value = "gardentreehuge.m2", + text = "gardentreehuge.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "201741", + value = "diremaulmagicvortex.m2", + text = "diremaulmagicvortex.m2", + }, + }, + value = "vortex", + text = "vortex", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "diremaul", + text = "diremaul", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201743", + value = "dragoncaveartifact.m2", + text = "dragoncaveartifact.m2", + }, + }, + value = "artifact", + text = "artifact", + }, + { + children = { + { + fileId = "201745", + value = "blackdragonegg01.m2", + text = "blackdragonegg01.m2", + }, + { + fileId = "201746", + value = "blackdragonegg02.m2", + text = "blackdragonegg02.m2", + }, + { + fileId = "201747", + value = "blackdragonegg03.m2", + text = "blackdragonegg03.m2", + }, + }, + value = "blackdragoneggs", + text = "blackdragoneggs", + }, + { + children = { + { + fileId = "201752", + value = "charredbody01.m2", + text = "charredbody01.m2", + }, + { + fileId = "201753", + value = "charredbody02.m2", + text = "charredbody02.m2", + }, + { + fileId = "201754", + value = "charredbody03.m2", + text = "charredbody03.m2", + }, + { + fileId = "201755", + value = "charredbody04.m2", + text = "charredbody04.m2", + }, + { + fileId = "201756", + value = "charredbody05.m2", + text = "charredbody05.m2", + }, + { + fileId = "201757", + value = "charredbody06.m2", + text = "charredbody06.m2", + }, + { + fileId = "201758", + value = "charredbody07.m2", + text = "charredbody07.m2", + }, + { + fileId = "201761", + value = "dragonfirecharmark01.m2", + text = "dragonfirecharmark01.m2", + }, + { + fileId = "201762", + value = "dragonfirecharmark02.m2", + text = "dragonfirecharmark02.m2", + }, + }, + value = "charredbodies", + text = "charredbodies", + }, + { + children = { + { + fileId = "201764", + value = "dragoncavefireembers.m2", + text = "dragoncavefireembers.m2", + }, + }, + value = "fireembers", + text = "fireembers", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "dragoncave", + text = "dragoncave", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201765", + value = "taurenbridge01lantern.m2", + text = "taurenbridge01lantern.m2", + }, + }, + value = "bridge", + text = "bridge", + }, + { + children = { + { + fileId = "201766", + value = "cactusapple01.m2", + text = "cactusapple01.m2", + }, + { + fileId = "201768", + value = "durotarbush01.m2", + text = "durotarbush01.m2", + }, + { + fileId = "201769", + value = "durotarbush02.m2", + text = "durotarbush02.m2", + }, + { + fileId = "201770", + value = "durotarbush03.m2", + text = "durotarbush03.m2", + }, + { + fileId = "201771", + value = "durotarbush04.m2", + text = "durotarbush04.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "201774", + value = "durotarcliffrock01.m2", + text = "durotarcliffrock01.m2", + }, + { + fileId = "201775", + value = "durotarcliffrock02.m2", + text = "durotarcliffrock02.m2", + }, + { + fileId = "201776", + value = "durotarcliffrock03.m2", + text = "durotarcliffrock03.m2", + }, + { + fileId = "201777", + value = "durotarcliffrock04.m2", + text = "durotarcliffrock04.m2", + }, + { + fileId = "201778", + value = "durotarcliffrock05.m2", + text = "durotarcliffrock05.m2", + }, + { + fileId = "201779", + value = "durotarcliffrock06.m2", + text = "durotarcliffrock06.m2", + }, + { + fileId = "201780", + value = "durotarcliffrock07.m2", + text = "durotarcliffrock07.m2", + }, + { + fileId = "201781", + value = "durotarcliffrock08.m2", + text = "durotarcliffrock08.m2", + }, + { + fileId = "201783", + value = "durotarrock01.m2", + text = "durotarrock01.m2", + }, + { + fileId = "201785", + value = "durotarrock02.m2", + text = "durotarrock02.m2", + }, + { + fileId = "201786", + value = "durotarrock03.m2", + text = "durotarrock03.m2", + }, + { + fileId = "201788", + value = "durotarrock04.m2", + text = "durotarrock04.m2", + }, + { + fileId = "201789", + value = "durotarrock05.m2", + text = "durotarrock05.m2", + }, + { + fileId = "201790", + value = "durotarrock06.m2", + text = "durotarrock06.m2", + }, + { + fileId = "201791", + value = "durotarrock07.m2", + text = "durotarrock07.m2", + }, + { + fileId = "201792", + value = "durotarrock08.m2", + text = "durotarrock08.m2", + }, + { + fileId = "201795", + value = "flatrock01.m2", + text = "flatrock01.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "201800", + value = "durotarpalm01.m2", + text = "durotarpalm01.m2", + }, + { + fileId = "201801", + value = "durotarpalm02.m2", + text = "durotarpalm02.m2", + }, + { + fileId = "201802", + value = "durotarpalm03.m2", + text = "durotarpalm03.m2", + }, + { + fileId = "201803", + value = "durotartree01.m2", + text = "durotartree01.m2", + }, + { + fileId = "201804", + value = "durotartree02.m2", + text = "durotartree02.m2", + }, + { + fileId = "201805", + value = "durotartree03.m2", + text = "durotartree03.m2", + }, + { + fileId = "201806", + value = "durotartree04.m2", + text = "durotartree04.m2", + }, + { + fileId = "201807", + value = "durotartree05.m2", + text = "durotartree05.m2", + }, + { + fileId = "201808", + value = "durotartree06.m2", + text = "durotartree06.m2", + }, + { + fileId = "201809", + value = "durotartree08.m2", + text = "durotartree08.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "durotar", + text = "durotar", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201811", + value = "dustwallowbush01.m2", + text = "dustwallowbush01.m2", + }, + { + fileId = "201812", + value = "dustwallowbush02.m2", + text = "dustwallowbush02.m2", + }, + { + fileId = "201813", + value = "dustwallowshrub01.m2", + text = "dustwallowshrub01.m2", + }, + { + fileId = "201814", + value = "dustwallowshrub02.m2", + text = "dustwallowshrub02.m2", + }, + { + fileId = "201815", + value = "dustwallowshrub03.m2", + text = "dustwallowshrub03.m2", + }, + { + fileId = "201816", + value = "dustwallowshrub04.m2", + text = "dustwallowshrub04.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "201817", + value = "dustwallowoutpost01.m2", + text = "dustwallowoutpost01.m2", + }, + { + fileId = "201818", + value = "dustwallowoutpost02.m2", + text = "dustwallowoutpost02.m2", + }, + { + fileId = "201819", + value = "dustwallowoutpost03.m2", + text = "dustwallowoutpost03.m2", + }, + { + fileId = "201820", + value = "dustwallowoutpost04.m2", + text = "dustwallowoutpost04.m2", + }, + { + fileId = "201821", + value = "dustwallowoutpost05.m2", + text = "dustwallowoutpost05.m2", + }, + { + fileId = "201822", + value = "dustwallowoutpost06.m2", + text = "dustwallowoutpost06.m2", + }, + }, + value = "outposts", + text = "outposts", + }, + { + children = { + { + fileId = "201826", + value = "dustwallowtree01.m2", + text = "dustwallowtree01.m2", + }, + { + fileId = "201827", + value = "dustwallowtree02.m2", + text = "dustwallowtree02.m2", + }, + { + fileId = "201828", + value = "dustwallowtree03.m2", + text = "dustwallowtree03.m2", + }, + { + fileId = "201829", + value = "dustwallowtree04.m2", + text = "dustwallowtree04.m2", + }, + { + fileId = "201830", + value = "dustwallowtree05.m2", + text = "dustwallowtree05.m2", + }, + { + fileId = "201831", + value = "dustwallowtree06.m2", + text = "dustwallowtree06.m2", + }, + { + fileId = "201832", + value = "dustwallowtree07.m2", + text = "dustwallowtree07.m2", + }, + { + fileId = "201833", + value = "dustwallowtree08.m2", + text = "dustwallowtree08.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "201837", + value = "duskwallowstonewall01.m2", + text = "duskwallowstonewall01.m2", + }, + { + fileId = "201838", + value = "duskwallowstonewall02.m2", + text = "duskwallowstonewall02.m2", + }, + { + fileId = "201839", + value = "duskwallowstonewallpost.m2", + text = "duskwallowstonewallpost.m2", + }, + { + fileId = "201841", + value = "dustwallowwall01.m2", + text = "dustwallowwall01.m2", + }, + { + fileId = "201842", + value = "dustwallowwall02.m2", + text = "dustwallowwall02.m2", + }, + { + fileId = "201843", + value = "dustwallowwall03.m2", + text = "dustwallowwall03.m2", + }, + { + fileId = "201844", + value = "dustwallowwallpost.m2", + text = "dustwallowwallpost.m2", + }, + }, + value = "walls", + text = "walls", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "dustwallow", + text = "dustwallow", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201845", + value = "illidancrystal02.m2", + text = "illidancrystal02.m2", + }, + }, + value = "illidancrystal", + text = "illidancrystal", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "201847", + value = "felwoodbush01.m2", + text = "felwoodbush01.m2", + }, + { + fileId = "201849", + value = "felwoodbush02.m2", + text = "felwoodbush02.m2", + }, + { + fileId = "201851", + value = "felwoodbush03.m2", + text = "felwoodbush03.m2", + }, + { + fileId = "201852", + value = "felwoodbush04.m2", + text = "felwoodbush04.m2", + }, + }, + value = "bush", + text = "bush", + }, + { + children = { + { + fileId = "201853", + value = "desolacebubble01.m2", + text = "desolacebubble01.m2", + }, + { + fileId = "201854", + value = "desolacebubbles01.m2", + text = "desolacebubbles01.m2", + }, + }, + value = "desolacebubbles", + text = "desolacebubbles", + }, + { + children = { + { + fileId = "201856", + value = "felwoodbubble01.m2", + text = "felwoodbubble01.m2", + }, + { + fileId = "201857", + value = "felwoodbubbles01.m2", + text = "felwoodbubbles01.m2", + }, + }, + value = "felwoodbubbles", + text = "felwoodbubbles", + }, + { + children = { + { + fileId = "201859", + value = "felwoodmushroom01.m2", + text = "felwoodmushroom01.m2", + }, + { + fileId = "201860", + value = "felwoodmushroom02.m2", + text = "felwoodmushroom02.m2", + }, + { + fileId = "201864", + value = "felwoodmushroomanim.m2", + text = "felwoodmushroomanim.m2", + }, + }, + value = "felwoodmushrooms", + text = "felwoodmushrooms", + }, + { + children = { + { + fileId = "201866", + value = "felwoodlamp01.m2", + text = "felwoodlamp01.m2", + }, + }, + value = "lamp", + text = "lamp", + }, + { + children = { + { + fileId = "201870", + value = "nightdragon01.m2", + text = "nightdragon01.m2", + }, + { + fileId = "201871", + value = "nightdragon02.m2", + text = "nightdragon02.m2", + }, + { + fileId = "201872", + value = "songflower01.m2", + text = "songflower01.m2", + }, + { + fileId = "201873", + value = "songflower02.m2", + text = "songflower02.m2", + }, + { + fileId = "201874", + value = "whipperroot01.m2", + text = "whipperroot01.m2", + }, + { + fileId = "201875", + value = "whipperroot02.m2", + text = "whipperroot02.m2", + }, + { + fileId = "201876", + value = "windblossom01.m2", + text = "windblossom01.m2", + }, + { + fileId = "201877", + value = "windblossom02.m2", + text = "windblossom02.m2", + }, + }, + value = "plantsquest", + text = "plantsquest", + }, + { + children = { + { + fileId = "201881", + value = "felwoodroots01.m2", + text = "felwoodroots01.m2", + }, + { + fileId = "201882", + value = "felwoodroots02.m2", + text = "felwoodroots02.m2", + }, + { + fileId = "201883", + value = "felwoodroots03.m2", + text = "felwoodroots03.m2", + }, + { + fileId = "201884", + value = "felwoodroots04.m2", + text = "felwoodroots04.m2", + }, + { + fileId = "201885", + value = "felwoodroots05.m2", + text = "felwoodroots05.m2", + }, + }, + value = "roots", + text = "roots", + }, + { + children = { + { + fileId = "201900", + value = "felwoodtree01.m2", + text = "felwoodtree01.m2", + }, + { + fileId = "201901", + value = "felwoodtree02.m2", + text = "felwoodtree02.m2", + }, + { + fileId = "201902", + value = "felwoodtree03.m2", + text = "felwoodtree03.m2", + }, + { + fileId = "201903", + value = "felwoodtree04.m2", + text = "felwoodtree04.m2", + }, + { + fileId = "201904", + value = "felwoodtree05.m2", + text = "felwoodtree05.m2", + }, + { + fileId = "201905", + value = "felwoodtree06.m2", + text = "felwoodtree06.m2", + }, + { + fileId = "201906", + value = "felwoodtree07.m2", + text = "felwoodtree07.m2", + }, + { + fileId = "201908", + value = "felwoodtreeanim01.m2", + text = "felwoodtreeanim01.m2", + }, + { + fileId = "201909", + value = "felwoodtreeanim02.m2", + text = "felwoodtreeanim02.m2", + }, + { + fileId = "201910", + value = "felwoodtreeanim03.m2", + text = "felwoodtreeanim03.m2", + }, + { + fileId = "201912", + value = "felwoodtreestump01.m2", + text = "felwoodtreestump01.m2", + }, + { + fileId = "201913", + value = "felwoodtreesub01.m2", + text = "felwoodtreesub01.m2", + }, + { + fileId = "201914", + value = "felwoodtreesub02.m2", + text = "felwoodtreesub02.m2", + }, + { + fileId = "201915", + value = "felwoodtreesub03.m2", + text = "felwoodtreesub03.m2", + }, + { + fileId = "201916", + value = "felwoodtreesub04.m2", + text = "felwoodtreesub04.m2", + }, + }, + value = "tree", + text = "tree", + }, + { + children = { + { + fileId = "201924", + value = "petrifiedtreant01.m2", + text = "petrifiedtreant01.m2", + }, + { + fileId = "201925", + value = "petrifiedtreant02.m2", + text = "petrifiedtreant02.m2", + }, + { + fileId = "201926", + value = "petrifiedtreant03.m2", + text = "petrifiedtreant03.m2", + }, + }, + value = "treeeants", + text = "treeeants", + }, + { + children = { + { + fileId = "201928", + value = "felrockwaterfall.m2", + text = "felrockwaterfall.m2", + }, + { + fileId = "201929", + value = "felwoodtallwaterfall01.m2", + text = "felwoodtallwaterfall01.m2", + }, + }, + value = "waterfall", + text = "waterfall", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "felwood", + text = "felwood", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201930", + value = "feralasferns01.m2", + text = "feralasferns01.m2", + }, + }, + value = "fern", + text = "fern", + }, + { + children = { + { + fileId = "201933", + value = "feralasstone01.m2", + text = "feralasstone01.m2", + }, + { + fileId = "201934", + value = "feralasstone02.m2", + text = "feralasstone02.m2", + }, + }, + value = "stones", + text = "stones", + }, + { + children = { + { + fileId = "201935", + value = "feralastree01.m2", + text = "feralastree01.m2", + }, + { + fileId = "201936", + value = "feralastree02.m2", + text = "feralastree02.m2", + }, + { + fileId = "201937", + value = "feralastree03.m2", + text = "feralastree03.m2", + }, + { + fileId = "201938", + value = "feralastree04.m2", + text = "feralastree04.m2", + }, + { + fileId = "201939", + value = "feralastree04_capped.m2", + text = "feralastree04_capped.m2", + }, + { + fileId = "201940", + value = "feralastree05.m2", + text = "feralastree05.m2", + }, + { + fileId = "201942", + value = "feralastreeroots01.m2", + text = "feralastreeroots01.m2", + }, + { + fileId = "201944", + value = "feralastreeroots02.m2", + text = "feralastreeroots02.m2", + }, + { + fileId = "201945", + value = "feralastreeroots03.m2", + text = "feralastreeroots03.m2", + }, + { + fileId = "201946", + value = "feralastreeroots04.m2", + text = "feralastreeroots04.m2", + }, + { + fileId = "201947", + value = "feralastreeroots05.m2", + text = "feralastreeroots05.m2", + }, + { + fileId = "201948", + value = "feralastreestump01.m2", + text = "feralastreestump01.m2", + }, + { + fileId = "201949", + value = "feralastreestump02.m2", + text = "feralastreestump02.m2", + }, + }, + value = "tree", + text = "tree", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "feralas", + text = "feralas", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201968", + value = "elvendestroyerwreckback.m2", + text = "elvendestroyerwreckback.m2", + }, + }, + value = "elevendestoryerwreckback", + text = "elevendestoryerwreckback", + }, + { + children = { + { + fileId = "201972", + value = "elvendestroyerwreckfront.m2", + text = "elvendestroyerwreckfront.m2", + }, + }, + value = "elevendestoryerwreckfront", + text = "elevendestoryerwreckfront", + }, + { + children = { + { + fileId = "201973", + value = "elvendestroyerwrecksails.m2", + text = "elvendestroyerwrecksails.m2", + }, + }, + value = "elevendestoryerwrecksails", + text = "elevendestoryerwrecksails", + }, + { + children = { + { + fileId = "201982", + value = "nightelfguardtower.m2", + text = "nightelfguardtower.m2", + }, + }, + value = "nightelfguardtower", + text = "nightelfguardtower", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "generic", + text = "generic", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "201985", + value = "hyjalgate.m2", + text = "hyjalgate.m2", + }, + }, + value = "doors", + text = "doors", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "201987", + value = "hyjalrock01.m2", + text = "hyjalrock01.m2", + }, + { + fileId = "201988", + value = "hyjalrock02.m2", + text = "hyjalrock02.m2", + }, + { + fileId = "201989", + value = "hyjalrock03.m2", + text = "hyjalrock03.m2", + }, + { + fileId = "201990", + value = "hyjalrock04.m2", + text = "hyjalrock04.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "201992", + value = "theworldtree.m2", + text = "theworldtree.m2", + }, + { + fileId = "201993", + value = "theworldtree_02.m2", + text = "theworldtree_02.m2", + }, + }, + value = "theworldtree", + text = "theworldtree", + }, + { + children = { + { + fileId = "201998", + value = "hyjalfallentree01.m2", + text = "hyjalfallentree01.m2", + }, + { + fileId = "201999", + value = "hyjaltree01.m2", + text = "hyjaltree01.m2", + }, + { + fileId = "202000", + value = "hyjaltree02.m2", + text = "hyjaltree02.m2", + }, + { + fileId = "202001", + value = "hyjaltree03.m2", + text = "hyjaltree03.m2", + }, + { + fileId = "202002", + value = "hyjaltree04.m2", + text = "hyjaltree04.m2", + }, + { + fileId = "202003", + value = "hyjaltree05.m2", + text = "hyjaltree05.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "hyjal", + text = "hyjal", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202013", + value = "felpinecone.m2", + text = "felpinecone.m2", + }, + }, + value = "felpinecone", + text = "felpinecone", + }, + { + children = { + { + fileId = "202016", + value = "furbolgtent.m2", + text = "furbolgtent.m2", + }, + { + fileId = "202017", + value = "furbolgtent2.m2", + text = "furbolgtent2.m2", + }, + }, + value = "furbolgtent", + text = "furbolgtent", + }, + { + children = { + { + fileId = "202018", + value = "furbolgtotem01.m2", + text = "furbolgtotem01.m2", + }, + { + fileId = "202019", + value = "furbolgtotem02.m2", + text = "furbolgtotem02.m2", + }, + }, + value = "furbolgtotem", + text = "furbolgtotem", + }, + { + children = { + { + fileId = "202021", + value = "kalidarbush01.m2", + text = "kalidarbush01.m2", + }, + { + fileId = "202022", + value = "kalidarbush02.m2", + text = "kalidarbush02.m2", + }, + { + fileId = "202023", + value = "kalidarbush03.m2", + text = "kalidarbush03.m2", + }, + { + fileId = "202024", + value = "kalidarbush04.m2", + text = "kalidarbush04.m2", + }, + }, + value = "kalidarbushes", + text = "kalidarbushes", + }, + { + children = { + { + fileId = "202029", + value = "kalidarnest01.m2", + text = "kalidarnest01.m2", + }, + { + fileId = "202030", + value = "kalidarnest02.m2", + text = "kalidarnest02.m2", + }, + }, + value = "kalidarharpynest", + text = "kalidarharpynest", + }, + { + children = { + { + fileId = "202034", + value = "kalidargiantroot01.m2", + text = "kalidargiantroot01.m2", + }, + { + fileId = "202035", + value = "kalidargiantroot02.m2", + text = "kalidargiantroot02.m2", + }, + { + fileId = "202038", + value = "kalidarroots01.m2", + text = "kalidarroots01.m2", + }, + { + fileId = "202039", + value = "kalidarroots02.m2", + text = "kalidarroots02.m2", + }, + { + fileId = "202040", + value = "kalidarroots03.m2", + text = "kalidarroots03.m2", + }, + { + fileId = "202041", + value = "kalidarroots04.m2", + text = "kalidarroots04.m2", + }, + }, + value = "kalidarroots", + text = "kalidarroots", + }, + { + children = { + { + fileId = "202044", + value = "kalidartreelog01.m2", + text = "kalidartreelog01.m2", + }, + { + fileId = "202045", + value = "kalidartreelog02.m2", + text = "kalidartreelog02.m2", + }, + }, + value = "kalidartreelogs", + text = "kalidartreelogs", + }, + { + children = { + { + fileId = "202048", + value = "kalidarfallentree01.m2", + text = "kalidarfallentree01.m2", + }, + { + fileId = "202050", + value = "kalidartree01.m2", + text = "kalidartree01.m2", + }, + { + fileId = "202051", + value = "kalidartree02.m2", + text = "kalidartree02.m2", + }, + { + fileId = "202052", + value = "kalidartree03.m2", + text = "kalidartree03.m2", + }, + { + fileId = "202053", + value = "kalidartree04.m2", + text = "kalidartree04.m2", + }, + { + fileId = "202054", + value = "kalidartree05.m2", + text = "kalidartree05.m2", + }, + { + fileId = "202055", + value = "kalidartree06.m2", + text = "kalidartree06.m2", + }, + { + fileId = "202056", + value = "kalidartree07.m2", + text = "kalidartree07.m2", + }, + { + fileId = "202057", + value = "kalidartree08.m2", + text = "kalidartree08.m2", + }, + { + fileId = "202058", + value = "kalidartree09.m2", + text = "kalidartree09.m2", + }, + }, + value = "kalidartrees", + text = "kalidartrees", + }, + { + children = { + { + fileId = "202059", + value = "kalidartreestump01.m2", + text = "kalidartreestump01.m2", + }, + { + fileId = "202060", + value = "kalidartreestump02.m2", + text = "kalidartreestump02.m2", + }, + }, + value = "kalidartreestumps", + text = "kalidartreestumps", + }, + { + children = { + { + fileId = "202061", + value = "moowellwaterfx.m2", + text = "moowellwaterfx.m2", + }, + }, + value = "moonwellwater", + text = "moonwellwater", + }, + { + children = { + { + fileId = "202063", + value = "oracletree.m2", + text = "oracletree.m2", + }, + { + fileId = "202064", + value = "oracletreebank.m2", + text = "oracletreebank.m2", + }, + }, + value = "oracletree", + text = "oracletree", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "kalidar", + text = "kalidar", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202071", + value = "centaurteleporter01.m2", + text = "centaurteleporter01.m2", + }, + { + fileId = "202074", + value = "maraudonstaffcreator.m2", + text = "maraudonstaffcreator.m2", + }, + }, + value = "button", + text = "button", + }, + { + children = { + { + fileId = "202077", + value = "stone_door01.m2", + text = "stone_door01.m2", + }, + }, + value = "doors", + text = "doors", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202080", + value = "bridgebrazierblue01.m2", + text = "bridgebrazierblue01.m2", + }, + { + fileId = "202081", + value = "bridgebraziergreen01.m2", + text = "bridgebraziergreen01.m2", + }, + { + fileId = "202082", + value = "bridgebrazierpurple01.m2", + text = "bridgebrazierpurple01.m2", + }, + }, + value = "bridgebraziers", + text = "bridgebraziers", + }, + { + children = { + { + fileId = "202086", + value = "centaurbrazierred01.m2", + text = "centaurbrazierred01.m2", + }, + }, + value = "centaurbraziers", + text = "centaurbraziers", + }, + { + children = { + { + fileId = "202088", + value = "centaurstatue01.m2", + text = "centaurstatue01.m2", + }, + }, + value = "centaurstatue", + text = "centaurstatue", + }, + { + children = { + { + fileId = "202092", + value = "maraudoncorruptedtree01.m2", + text = "maraudoncorruptedtree01.m2", + }, + { + fileId = "202093", + value = "maraudoncorruptedtree02.m2", + text = "maraudoncorruptedtree02.m2", + }, + { + fileId = "202097", + value = "maraudonmushroomlight01.m2", + text = "maraudonmushroomlight01.m2", + }, + { + fileId = "202098", + value = "maraudonmushroomlight02.m2", + text = "maraudonmushroomlight02.m2", + }, + { + fileId = "202099", + value = "maraudonpuffballred.m2", + text = "maraudonpuffballred.m2", + }, + { + fileId = "202100", + value = "maraudonpuffballred02.m2", + text = "maraudonpuffballred02.m2", + }, + { + fileId = "202101", + value = "maraudonpuffballred03.m2", + text = "maraudonpuffballred03.m2", + }, + { + fileId = "202104", + value = "maraudonspawnertree.m2", + text = "maraudonspawnertree.m2", + }, + { + fileId = "202106", + value = "maraudonspewertree.m2", + text = "maraudonspewertree.m2", + }, + { + fileId = "202107", + value = "maraudonspewertreebosscolor.m2", + text = "maraudonspewertreebosscolor.m2", + }, + { + fileId = "202109", + value = "maraudonsporetree.m2", + text = "maraudonsporetree.m2", + }, + { + fileId = "202111", + value = "maraudontransitiontree01.m2", + text = "maraudontransitiontree01.m2", + }, + { + fileId = "202112", + value = "maraudontransitiontree02.m2", + text = "maraudontransitiontree02.m2", + }, + }, + value = "corruptedplants", + text = "corruptedplants", + }, + { + children = { + { + fileId = "202123", + value = "amethystcrystal01.m2", + text = "amethystcrystal01.m2", + }, + { + fileId = "202124", + value = "amethystcrystal02.m2", + text = "amethystcrystal02.m2", + }, + { + fileId = "202125", + value = "amethystcrystal03.m2", + text = "amethystcrystal03.m2", + }, + { + fileId = "202126", + value = "amethystcrystal04.m2", + text = "amethystcrystal04.m2", + }, + { + fileId = "202127", + value = "amethystcrystal05.m2", + text = "amethystcrystal05.m2", + }, + { + fileId = "202128", + value = "amethystcrystal06.m2", + text = "amethystcrystal06.m2", + }, + { + fileId = "202129", + value = "diamondcrystal01.m2", + text = "diamondcrystal01.m2", + }, + { + fileId = "202130", + value = "diamondcrystal02.m2", + text = "diamondcrystal02.m2", + }, + { + fileId = "202131", + value = "diamondcrystal03.m2", + text = "diamondcrystal03.m2", + }, + { + fileId = "202132", + value = "diamondcrystal04.m2", + text = "diamondcrystal04.m2", + }, + { + fileId = "202136", + value = "maraudoncrystalred01.m2", + text = "maraudoncrystalred01.m2", + }, + { + fileId = "202140", + value = "rubycrystal01.m2", + text = "rubycrystal01.m2", + }, + { + fileId = "202141", + value = "rubycrystal02.m2", + text = "rubycrystal02.m2", + }, + { + fileId = "202142", + value = "rubycrystal03.m2", + text = "rubycrystal03.m2", + }, + { + fileId = "202143", + value = "rubycrystal04.m2", + text = "rubycrystal04.m2", + }, + { + fileId = "202144", + value = "rubycrystal05.m2", + text = "rubycrystal05.m2", + }, + { + fileId = "202145", + value = "rubycrystal06.m2", + text = "rubycrystal06.m2", + }, + { + fileId = "202146", + value = "rubycrystal07.m2", + text = "rubycrystal07.m2", + }, + { + fileId = "202147", + value = "rubycrystal08.m2", + text = "rubycrystal08.m2", + }, + { + fileId = "202148", + value = "rubycrystal09.m2", + text = "rubycrystal09.m2", + }, + { + fileId = "202149", + value = "rubycrystallarge01.m2", + text = "rubycrystallarge01.m2", + }, + { + fileId = "202150", + value = "rubycrystaltall01.m2", + text = "rubycrystaltall01.m2", + }, + }, + value = "crystals", + text = "crystals", + }, + { + children = { + { + fileId = "202154", + value = "maraudon_drippingflower01.m2", + text = "maraudon_drippingflower01.m2", + }, + }, + value = "flowers", + text = "flowers", + }, + { + children = { + { + fileId = "202158", + value = "grovegravemound01.m2", + text = "grovegravemound01.m2", + }, + }, + value = "grovegravemound", + text = "grovegravemound", + }, + { + children = { + { + fileId = "202164", + value = "maraudondetail01.m2", + text = "maraudondetail01.m2", + }, + { + fileId = "202165", + value = "maraudondetail02.m2", + text = "maraudondetail02.m2", + }, + { + fileId = "202166", + value = "maraudondetail03.m2", + text = "maraudondetail03.m2", + }, + { + fileId = "202167", + value = "maraudondetail04.m2", + text = "maraudondetail04.m2", + }, + { + fileId = "202168", + value = "maraudondetail05.m2", + text = "maraudondetail05.m2", + }, + { + fileId = "202169", + value = "maraudondetail06.m2", + text = "maraudondetail06.m2", + }, + { + fileId = "202170", + value = "maraudondetail07.m2", + text = "maraudondetail07.m2", + }, + }, + value = "mauradondetail", + text = "mauradondetail", + }, + { + children = { + { + fileId = "202173", + value = "maraudonmushroomspikey01.m2", + text = "maraudonmushroomspikey01.m2", + }, + { + fileId = "202174", + value = "maraudonmushroomspikey02.m2", + text = "maraudonmushroomspikey02.m2", + }, + { + fileId = "202176", + value = "maraudonshroom01.m2", + text = "maraudonshroom01.m2", + }, + { + fileId = "202177", + value = "maraudonshroom02.m2", + text = "maraudonshroom02.m2", + }, + { + fileId = "202178", + value = "maraudonshroom03.m2", + text = "maraudonshroom03.m2", + }, + }, + value = "mushrooms", + text = "mushrooms", + }, + { + children = { + { + fileId = "202182", + value = "maraudonpod01.m2", + text = "maraudonpod01.m2", + }, + { + fileId = "202183", + value = "maraudonpod02.m2", + text = "maraudonpod02.m2", + }, + }, + value = "pods", + text = "pods", + }, + { + children = { + { + fileId = "202186", + value = "maraudonroot01.m2", + text = "maraudonroot01.m2", + }, + { + fileId = "202187", + value = "maraudonroot02.m2", + text = "maraudonroot02.m2", + }, + { + fileId = "202188", + value = "maraudonroot03.m2", + text = "maraudonroot03.m2", + }, + { + fileId = "202189", + value = "maraudonroot04.m2", + text = "maraudonroot04.m2", + }, + { + fileId = "202190", + value = "maraudonroot05.m2", + text = "maraudonroot05.m2", + }, + { + fileId = "202191", + value = "maraudonroot06.m2", + text = "maraudonroot06.m2", + }, + { + fileId = "202192", + value = "maraudonroot07.m2", + text = "maraudonroot07.m2", + }, + }, + value = "roots", + text = "roots", + }, + { + children = { + { + fileId = "202194", + value = "ruinedcentaurtent01.m2", + text = "ruinedcentaurtent01.m2", + }, + { + fileId = "202195", + value = "ruinedcentaurtent02.m2", + text = "ruinedcentaurtent02.m2", + }, + { + fileId = "202196", + value = "ruinedcentaurtent03.m2", + text = "ruinedcentaurtent03.m2", + }, + { + fileId = "202197", + value = "ruinedcentaurtent04.m2", + text = "ruinedcentaurtent04.m2", + }, + }, + value = "ruinedtents", + text = "ruinedtents", + }, + { + children = { + { + fileId = "202200", + value = "mrdnsatyrbanner01.m2", + text = "mrdnsatyrbanner01.m2", + }, + { + fileId = "202201", + value = "mrdnsatyrbanner02.m2", + text = "mrdnsatyrbanner02.m2", + }, + { + fileId = "202202", + value = "mrdnsatyrbanner03.m2", + text = "mrdnsatyrbanner03.m2", + }, + }, + value = "satyrbanners", + text = "satyrbanners", + }, + { + children = { + { + fileId = "202203", + value = "satyrfloorbrazierblue01.m2", + text = "satyrfloorbrazierblue01.m2", + }, + { + fileId = "202204", + value = "satyrfloorbraziergreen01.m2", + text = "satyrfloorbraziergreen01.m2", + }, + { + fileId = "202205", + value = "satyrfloorbrazierpurple01.m2", + text = "satyrfloorbrazierpurple01.m2", + }, + }, + value = "satyrfloorbraziers", + text = "satyrfloorbraziers", + }, + { + children = { + { + fileId = "202208", + value = "satyr_graves01.m2", + text = "satyr_graves01.m2", + }, + { + fileId = "202209", + value = "satyr_graves02.m2", + text = "satyr_graves02.m2", + }, + { + fileId = "202210", + value = "satyr_graves03.m2", + text = "satyr_graves03.m2", + }, + { + fileId = "202211", + value = "satyr_graves04.m2", + text = "satyr_graves04.m2", + }, + { + fileId = "202212", + value = "satyr_graves05.m2", + text = "satyr_graves05.m2", + }, + { + fileId = "202213", + value = "satyr_graves06.m2", + text = "satyr_graves06.m2", + }, + }, + value = "satyrgraves", + text = "satyrgraves", + }, + { + children = { + { + fileId = "202216", + value = "satyrhangingbrazierblue01.m2", + text = "satyrhangingbrazierblue01.m2", + }, + { + fileId = "202217", + value = "satyrhangingbrazierblue02.m2", + text = "satyrhangingbrazierblue02.m2", + }, + { + fileId = "202218", + value = "satyrhangingbrazierpurple01.m2", + text = "satyrhangingbrazierpurple01.m2", + }, + }, + value = "satyrhangingbraziers", + text = "satyrhangingbraziers", + }, + { + children = { + { + fileId = "202220", + value = "satyrwall01.m2", + text = "satyrwall01.m2", + }, + { + fileId = "202221", + value = "satyrwall02.m2", + text = "satyrwall02.m2", + }, + { + fileId = "202222", + value = "satyrwall03.m2", + text = "satyrwall03.m2", + }, + { + fileId = "202223", + value = "satyrwall04.m2", + text = "satyrwall04.m2", + }, + }, + value = "satyrwalls", + text = "satyrwalls", + }, + { + children = { + { + fileId = "202225", + value = "sporelight01.m2", + text = "sporelight01.m2", + }, + { + fileId = "202229", + value = "sporelightyellow01.m2", + text = "sporelightyellow01.m2", + }, + }, + value = "sporelight", + text = "sporelight", + }, + { + children = { + { + fileId = "202231", + value = "maraudonspore01.m2", + text = "maraudonspore01.m2", + }, + }, + value = "spores", + text = "spores", + }, + { + children = { + { + fileId = "202232", + value = "maraudonstalactites01.m2", + text = "maraudonstalactites01.m2", + }, + { + fileId = "202233", + value = "maraudonstalactites02.m2", + text = "maraudonstalactites02.m2", + }, + { + fileId = "202234", + value = "maraudonstalactites03.m2", + text = "maraudonstalactites03.m2", + }, + { + fileId = "202235", + value = "maraudonstalactites04.m2", + text = "maraudonstalactites04.m2", + }, + { + fileId = "202236", + value = "maraudonstalactites05.m2", + text = "maraudonstalactites05.m2", + }, + }, + value = "stalactites", + text = "stalactites", + }, + { + children = { + { + fileId = "202238", + value = "maraudonnastyvine01.m2", + text = "maraudonnastyvine01.m2", + }, + { + fileId = "202239", + value = "maraudonnastyvine02.m2", + text = "maraudonnastyvine02.m2", + }, + { + fileId = "202240", + value = "maraudonnastyvine03.m2", + text = "maraudonnastyvine03.m2", + }, + { + fileId = "202241", + value = "maraudonnastyvine04.m2", + text = "maraudonnastyvine04.m2", + }, + { + fileId = "202242", + value = "maraudonnastyvine05.m2", + text = "maraudonnastyvine05.m2", + }, + { + fileId = "202243", + value = "maraudonnastyvine06.m2", + text = "maraudonnastyvine06.m2", + }, + { + fileId = "202244", + value = "maraudonnastyvine07.m2", + text = "maraudonnastyvine07.m2", + }, + }, + value = "vines", + text = "vines", + }, + { + children = { + { + fileId = "202246", + value = "maraudon_waterfall01.m2", + text = "maraudon_waterfall01.m2", + }, + { + fileId = "202247", + value = "maraudon_waterfall02.m2", + text = "maraudon_waterfall02.m2", + }, + { + fileId = "202248", + value = "maraudon_waterfall03.m2", + text = "maraudon_waterfall03.m2", + }, + { + fileId = "202249", + value = "maraudon_waterfall04.m2", + text = "maraudon_waterfall04.m2", + }, + { + fileId = "202251", + value = "maraudoncorruptedfalls.m2", + text = "maraudoncorruptedfalls.m2", + }, + { + fileId = "202252", + value = "maraudoncorruptedfalls02.m2", + text = "maraudoncorruptedfalls02.m2", + }, + { + fileId = "202253", + value = "maraudoncorruptedfalls03.m2", + text = "maraudoncorruptedfalls03.m2", + }, + }, + value = "waterfalls", + text = "waterfalls", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "mauradon", + text = "mauradon", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202258", + value = "druidstone.m2", + text = "druidstone.m2", + }, + { + fileId = "202259", + value = "druidstonetopless.m2", + text = "druidstonetopless.m2", + }, + }, + value = "druidstone", + text = "druidstone", + }, + { + children = { + { + fileId = "202261", + value = "moongladebush01.m2", + text = "moongladebush01.m2", + }, + { + fileId = "202263", + value = "moongladebush02.m2", + text = "moongladebush02.m2", + }, + }, + value = "moongladebushes", + text = "moongladebushes", + }, + { + children = { + { + fileId = "202271", + value = "moongladetree01.m2", + text = "moongladetree01.m2", + }, + { + fileId = "202272", + value = "moongladetree02.m2", + text = "moongladetree02.m2", + }, + { + fileId = "202273", + value = "moongladetree03.m2", + text = "moongladetree03.m2", + }, + { + fileId = "202274", + value = "moongladetree04.m2", + text = "moongladetree04.m2", + }, + { + fileId = "202275", + value = "moongladetree05.m2", + text = "moongladetree05.m2", + }, + { + fileId = "202276", + value = "moongladetree06.m2", + text = "moongladetree06.m2", + }, + { + fileId = "202277", + value = "moongladetree07.m2", + text = "moongladetree07.m2", + }, + { + fileId = "202278", + value = "moongladetree08.m2", + text = "moongladetree08.m2", + }, + }, + value = "moongladetrees", + text = "moongladetrees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "moonglade", + text = "moonglade", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202292", + value = "burnedgypsywagon01.m2", + text = "burnedgypsywagon01.m2", + }, + { + fileId = "202293", + value = "burnedgypsywagon02.m2", + text = "burnedgypsywagon02.m2", + }, + }, + value = "burnedwagons", + text = "burnedwagons", + }, + { + children = { + { + fileId = "202295", + value = "funeralpyre01.m2", + text = "funeralpyre01.m2", + }, + }, + value = "funeralpyres", + text = "funeralpyres", + }, + { + children = { + { + fileId = "202297", + value = "pinecone.m2", + text = "pinecone.m2", + }, + }, + value = "pinecone", + text = "pinecone", + }, + { + children = { + { + fileId = "202298", + value = "mullgorerockarch.m2", + text = "mullgorerockarch.m2", + }, + }, + value = "rockarch", + text = "rockarch", + }, + { + children = { + { + fileId = "202300", + value = "mullgorerock01.m2", + text = "mullgorerock01.m2", + }, + { + fileId = "202301", + value = "mullgorerock02.m2", + text = "mullgorerock02.m2", + }, + { + fileId = "202302", + value = "mullgorerock03.m2", + text = "mullgorerock03.m2", + }, + { + fileId = "202303", + value = "mullgorerock04.m2", + text = "mullgorerock04.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "202305", + value = "mullgorethorn01.m2", + text = "mullgorethorn01.m2", + }, + { + fileId = "202306", + value = "mullgorethorn02.m2", + text = "mullgorethorn02.m2", + }, + { + fileId = "202307", + value = "mullgorethorn03.m2", + text = "mullgorethorn03.m2", + }, + { + fileId = "202308", + value = "mullgorethorn04.m2", + text = "mullgorethorn04.m2", + }, + { + fileId = "202309", + value = "mullgorethorn05.m2", + text = "mullgorethorn05.m2", + }, + { + fileId = "202310", + value = "mullgorethorn06.m2", + text = "mullgorethorn06.m2", + }, + { + fileId = "202311", + value = "mullgorethorn07.m2", + text = "mullgorethorn07.m2", + }, + { + fileId = "202312", + value = "mullgorethornspike.m2", + text = "mullgorethornspike.m2", + }, + }, + value = "thorns", + text = "thorns", + }, + { + children = { + { + fileId = "202316", + value = "elevatorcar.m2", + text = "elevatorcar.m2", + }, + { + fileId = "202317", + value = "kodoelevatormachine.m2", + text = "kodoelevatormachine.m2", + }, + }, + value = "thunderbluffelevator", + text = "thunderbluffelevator", + }, + { + children = { + { + fileId = "202321", + value = "mullgorefallentree01.m2", + text = "mullgorefallentree01.m2", + }, + { + fileId = "202322", + value = "mullgoretree01.m2", + text = "mullgoretree01.m2", + }, + { + fileId = "202323", + value = "mullgoretree02.m2", + text = "mullgoretree02.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "mulgore", + text = "mulgore", + }, + { + children = { + { + children = { + { + fileId = "202324", + value = "onyxiasgate01.m2", + text = "onyxiasgate01.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "202325", + value = "onyziaslairfallingrocks.m2", + text = "onyziaslairfallingrocks.m2", + }, + }, + value = "fallingrocks", + text = "fallingrocks", + }, + { + children = { + { + fileId = "202326", + value = "onyziaslairlavasplash.m2", + text = "onyziaslairlavasplash.m2", + }, + { + fileId = "202327", + value = "onyziaslairlavatrap.m2", + text = "onyziaslairlavatrap.m2", + }, + { + fileId = "202328", + value = "onyziaslairlavatrapmirror.m2", + text = "onyziaslairlavatrapmirror.m2", + }, + }, + value = "lavatraps", + text = "lavatraps", + }, + }, + value = "onyxiaslair", + text = "onyxiaslair", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202334", + value = "kl_auctionhousecollide.m2", + text = "kl_auctionhousecollide.m2", + }, + }, + value = "auctionhouse", + text = "auctionhouse", + }, + { + children = { + { + fileId = "202335", + value = "orgrimmardoor.m2", + text = "orgrimmardoor.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "202337", + value = "magtheridontrophypost.m2", + text = "magtheridontrophypost.m2", + }, + }, + value = "magtheridontrophypost", + text = "magtheridontrophypost", + }, + { + children = { + { + fileId = "202344", + value = "manerothtree.m2", + text = "manerothtree.m2", + }, + }, + value = "manarothtree", + text = "manarothtree", + }, + { + children = { + { + fileId = "202348", + value = "hordemaptable.m2", + text = "hordemaptable.m2", + }, + { + fileId = "202349", + value = "hordemaptable_outland.m2", + text = "hordemaptable_outland.m2", + }, + }, + value = "maptable", + text = "maptable", + }, + { + children = { + { + fileId = "202355", + value = "hordenefarianpost.m2", + text = "hordenefarianpost.m2", + }, + { + fileId = "202356", + value = "hordeonyxiatrophypost.m2", + text = "hordeonyxiatrophypost.m2", + }, + }, + value = "onyxiatrophypost", + text = "onyxiatrophypost", + }, + { + children = { + { + fileId = "202360", + value = "orgrimmarbonfire01.m2", + text = "orgrimmarbonfire01.m2", + }, + { + fileId = "202362", + value = "orgrimmarfloatingembers.m2", + text = "orgrimmarfloatingembers.m2", + }, + { + fileId = "202363", + value = "orgrimmarsmokeemitter.m2", + text = "orgrimmarsmokeemitter.m2", + }, + }, + value = "orgrimmarbonfire", + text = "orgrimmarbonfire", + }, + { + children = { + { + fileId = "202366", + value = "orgrimmarpentagram.m2", + text = "orgrimmarpentagram.m2", + }, + }, + value = "pentagram", + text = "pentagram", + }, + { + fileId = "202367", + value = "thralls_throne.m2", + text = "thralls_throne.m2", + }, + { + children = { + { + fileId = "202368", + value = "orgrimmar_waterfalla.m2", + text = "orgrimmar_waterfalla.m2", + }, + }, + value = "waterfalls", + text = "waterfalls", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "orgrimmar", + text = "orgrimmar", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202369", + value = "razorfendoor01.m2", + text = "razorfendoor01.m2", + }, + { + fileId = "202370", + value = "razorfendoor02.m2", + text = "razorfendoor02.m2", + }, + { + fileId = "202371", + value = "razorfendoor03.m2", + text = "razorfendoor03.m2", + }, + { + fileId = "202372", + value = "razorfendoor04.m2", + text = "razorfendoor04.m2", + }, + { + fileId = "202373", + value = "razorfendoor05.m2", + text = "razorfendoor05.m2", + }, + }, + value = "razorfendoors", + text = "razorfendoors", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + }, + value = "razorfen", + text = "razorfen", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202375", + value = "silithidlight02.m2", + text = "silithidlight02.m2", + }, + }, + value = "lights", + text = "lights", + }, + { + children = { + { + fileId = "202376", + value = "exterior_arch01.m2", + text = "exterior_arch01.m2", + }, + { + fileId = "202377", + value = "exterior_arch02.m2", + text = "exterior_arch02.m2", + }, + { + fileId = "202380", + value = "silithidmembrane_01.m2", + text = "silithidmembrane_01.m2", + }, + { + fileId = "202381", + value = "silithidmembrane_02.m2", + text = "silithidmembrane_02.m2", + }, + { + fileId = "202382", + value = "silithidmembrane_03.m2", + text = "silithidmembrane_03.m2", + }, + }, + value = "membranes", + text = "membranes", + }, + { + children = { + { + fileId = "202387", + value = "silithiddragonflymodel_01.m2", + text = "silithiddragonflymodel_01.m2", + }, + { + fileId = "202389", + value = "silithidlarvamodel_01.m2", + text = "silithidlarvamodel_01.m2", + }, + { + fileId = "202390", + value = "silithidpillbug01.m2", + text = "silithidpillbug01.m2", + }, + }, + value = "silithidmodels", + text = "silithidmodels", + }, + { + children = { + { + fileId = "202393", + value = "silithidspike_01.m2", + text = "silithidspike_01.m2", + }, + { + fileId = "202394", + value = "silithidspike_02.m2", + text = "silithidspike_02.m2", + }, + { + fileId = "202395", + value = "silithidspike_03.m2", + text = "silithidspike_03.m2", + }, + }, + value = "spikes", + text = "spikes", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "silithidhive", + text = "silithidhive", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202396", + value = "ahn_quiraj_ossiriancrystal.m2", + text = "ahn_quiraj_ossiriancrystal.m2", + }, + }, + value = "ahn_quiraj_ossiriancrystal", + text = "ahn_quiraj_ossiriancrystal", + }, + { + children = { + { + fileId = "202399", + value = "ahn_qiraj_doorplug.m2", + text = "ahn_qiraj_doorplug.m2", + }, + { + fileId = "202400", + value = "ahn_qiraj_doorroots.m2", + text = "ahn_qiraj_doorroots.m2", + }, + { + fileId = "202401", + value = "ahn_qiraj_doorrunes.m2", + text = "ahn_qiraj_doorrunes.m2", + }, + { + fileId = "202402", + value = "ahnqirajdoor01.m2", + text = "ahnqirajdoor01.m2", + }, + { + fileId = "202403", + value = "ahnqirajdoor02.m2", + text = "ahnqirajdoor02.m2", + }, + { + fileId = "202405", + value = "ahnqirajsandtrap.m2", + text = "ahnqirajsandtrap.m2", + }, + }, + value = "ahnqirajdoor", + text = "ahnqirajdoor", + }, + { + children = { + { + fileId = "202413", + value = "ahnqirajegglayer.m2", + text = "ahnqirajegglayer.m2", + }, + }, + value = "egglayer", + text = "egglayer", + }, + { + children = { + { + fileId = "202417", + value = "sandworm_rockbase.m2", + text = "sandworm_rockbase.m2", + }, + }, + value = "sandworm", + text = "sandworm", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202418", + value = "aq_coffinbase.m2", + text = "aq_coffinbase.m2", + }, + { + fileId = "202419", + value = "aq_coffinlid01.m2", + text = "aq_coffinlid01.m2", + }, + { + fileId = "202420", + value = "aq_coffinlid02.m2", + text = "aq_coffinlid02.m2", + }, + { + fileId = "202421", + value = "aq_coffinlid03.m2", + text = "aq_coffinlid03.m2", + }, + { + fileId = "202422", + value = "aq_coffinlid04.m2", + text = "aq_coffinlid04.m2", + }, + }, + value = "ahnqiracoffins", + text = "ahnqiracoffins", + }, + { + children = { + { + children = { + { + fileId = "202425", + value = "ahnqirajwalltorch01.m2", + text = "ahnqirajwalltorch01.m2", + }, + }, + value = "torch", + text = "torch", + }, + }, + value = "ahnqiraj", + text = "ahnqiraj", + }, + { + children = { + { + fileId = "202429", + value = "ahnqirajalter.m2", + text = "ahnqirajalter.m2", + }, + }, + value = "ahnqirajaltar", + text = "ahnqirajaltar", + }, + { + children = { + { + fileId = "202430", + value = "quirajglow.m2", + text = "quirajglow.m2", + }, + }, + value = "ahnqirajglow", + text = "ahnqirajglow", + }, + { + children = { + { + fileId = "202432", + value = "ahnqirajsconce01.m2", + text = "ahnqirajsconce01.m2", + }, + { + fileId = "202433", + value = "ahnqirajsconce02.m2", + text = "ahnqirajsconce02.m2", + }, + { + fileId = "202434", + value = "ahnqirajsconce03.m2", + text = "ahnqirajsconce03.m2", + }, + { + fileId = "202435", + value = "ahnqirajsconce04.m2", + text = "ahnqirajsconce04.m2", + }, + }, + value = "ahnqirajsconces", + text = "ahnqirajsconces", + }, + { + children = { + { + fileId = "202437", + value = "ahnqiraj_slab01.m2", + text = "ahnqiraj_slab01.m2", + }, + { + fileId = "202438", + value = "ahnqiraj_stair01.m2", + text = "ahnqiraj_stair01.m2", + }, + { + fileId = "202439", + value = "ahnqiraj_stair02.m2", + text = "ahnqiraj_stair02.m2", + }, + }, + value = "ahnqirajstairs", + text = "ahnqirajstairs", + }, + { + children = { + { + fileId = "202440", + value = "ahn_qirajbrick01.m2", + text = "ahn_qirajbrick01.m2", + }, + { + fileId = "202441", + value = "ahn_qirajbrick02.m2", + text = "ahn_qirajbrick02.m2", + }, + { + fileId = "202442", + value = "ahn_qirajobelisk.m2", + text = "ahn_qirajobelisk.m2", + }, + }, + value = "ahnqirajstones", + text = "ahnqirajstones", + }, + { + children = { + { + fileId = "202443", + value = "floatingpurplecrystal01.m2", + text = "floatingpurplecrystal01.m2", + }, + { + fileId = "202444", + value = "floatingpurplecrystalbroken01.m2", + text = "floatingpurplecrystalbroken01.m2", + }, + { + fileId = "202445", + value = "floatingpurplecrystalbroken02.m2", + text = "floatingpurplecrystalbroken02.m2", + }, + { + fileId = "202446", + value = "floatingpurplecrystalbroken03.m2", + text = "floatingpurplecrystalbroken03.m2", + }, + { + fileId = "202447", + value = "floatingredcrystal01.m2", + text = "floatingredcrystal01.m2", + }, + { + fileId = "202448", + value = "floatingredcrystalbroken01.m2", + text = "floatingredcrystalbroken01.m2", + }, + { + fileId = "202449", + value = "floatingredcrystalbroken02.m2", + text = "floatingredcrystalbroken02.m2", + }, + { + fileId = "202450", + value = "floatingredcrystalbroken03.m2", + text = "floatingredcrystalbroken03.m2", + }, + { + fileId = "202451", + value = "glyphedcrystal.m2", + text = "glyphedcrystal.m2", + }, + { + fileId = "202453", + value = "silithus_commcrystal_base01.m2", + text = "silithus_commcrystal_base01.m2", + }, + { + fileId = "202454", + value = "silithus_commcrystal_base02.m2", + text = "silithus_commcrystal_base02.m2", + }, + { + fileId = "202455", + value = "silithus_commcrystal_base03.m2", + text = "silithus_commcrystal_base03.m2", + }, + { + fileId = "202456", + value = "silithus_commnicationcrystal_01.m2", + text = "silithus_commnicationcrystal_01.m2", + }, + { + fileId = "202457", + value = "silithus_commnicationcrystal_02.m2", + text = "silithus_commnicationcrystal_02.m2", + }, + { + fileId = "202458", + value = "silithus_commnicationcrystal_03.m2", + text = "silithus_commnicationcrystal_03.m2", + }, + { + fileId = "202463", + value = "silithus_crystal_clump_01.m2", + text = "silithus_crystal_clump_01.m2", + }, + { + fileId = "202464", + value = "silithus_crystal_clump_02.m2", + text = "silithus_crystal_clump_02.m2", + }, + { + fileId = "202465", + value = "silithus_crystal_clump_03.m2", + text = "silithus_crystal_clump_03.m2", + }, + { + fileId = "202466", + value = "silithus_crystal_clump_04.m2", + text = "silithus_crystal_clump_04.m2", + }, + { + fileId = "202471", + value = "silithus_crystal_formation_01.m2", + text = "silithus_crystal_formation_01.m2", + }, + { + fileId = "202472", + value = "silithus_crystal_formation_02.m2", + text = "silithus_crystal_formation_02.m2", + }, + { + fileId = "202473", + value = "silithus_crystal_formation_03.m2", + text = "silithus_crystal_formation_03.m2", + }, + { + fileId = "202474", + value = "silithus_crystal_formation_04.m2", + text = "silithus_crystal_formation_04.m2", + }, + { + fileId = "202475", + value = "silithus_crystal_masterbase.m2", + text = "silithus_crystal_masterbase.m2", + }, + { + fileId = "202477", + value = "silithus_crystal_nub_01.m2", + text = "silithus_crystal_nub_01.m2", + }, + { + fileId = "202478", + value = "silithus_crystal_nub_02.m2", + text = "silithus_crystal_nub_02.m2", + }, + { + fileId = "202479", + value = "silithus_crystal_nub_03.m2", + text = "silithus_crystal_nub_03.m2", + }, + { + fileId = "202480", + value = "silithus_crystal_nub_04.m2", + text = "silithus_crystal_nub_04.m2", + }, + { + fileId = "202481", + value = "silithus_crystal_nub_05.m2", + text = "silithus_crystal_nub_05.m2", + }, + { + fileId = "202482", + value = "silithus_crystal_nub_06.m2", + text = "silithus_crystal_nub_06.m2", + }, + { + fileId = "202483", + value = "silithus_crystal_spike_01.m2", + text = "silithus_crystal_spike_01.m2", + }, + { + fileId = "202484", + value = "silithus_crystal_spike_02.m2", + text = "silithus_crystal_spike_02.m2", + }, + { + fileId = "202485", + value = "silithus_crystal_spike_03.m2", + text = "silithus_crystal_spike_03.m2", + }, + { + fileId = "202486", + value = "silithus_crystal_spike_04.m2", + text = "silithus_crystal_spike_04.m2", + }, + }, + value = "crystals", + text = "crystals", + }, + { + children = { + { + fileId = "202487", + value = "ahnqirajdustdevil.m2", + text = "ahnqirajdustdevil.m2", + }, + }, + value = "dustdevil", + text = "dustdevil", + }, + { + children = { + { + fileId = "202490", + value = "silithidegg.m2", + text = "silithidegg.m2", + }, + }, + value = "eggs", + text = "eggs", + }, + { + children = { + { + fileId = "202493", + value = "elventowerroofsilithus02.m2", + text = "elventowerroofsilithus02.m2", + }, + { + fileId = "202494", + value = "elventowersilithus02.m2", + text = "elventowersilithus02.m2", + }, + { + fileId = "202495", + value = "elventowersilithus03.m2", + text = "elventowersilithus03.m2", + }, + { + fileId = "202496", + value = "elventowersilithushorn.m2", + text = "elventowersilithushorn.m2", + }, + { + fileId = "202498", + value = "nightelfruinarchsilithus01.m2", + text = "nightelfruinarchsilithus01.m2", + }, + { + fileId = "202499", + value = "nightelfruinwallsilithus01.m2", + text = "nightelfruinwallsilithus01.m2", + }, + { + fileId = "202500", + value = "nightelfruinwallsilithus01b.m2", + text = "nightelfruinwallsilithus01b.m2", + }, + { + fileId = "202501", + value = "nightelfruinwallsilithus02.m2", + text = "nightelfruinwallsilithus02.m2", + }, + { + fileId = "202502", + value = "nightelfruinwallsilithus03.m2", + text = "nightelfruinwallsilithus03.m2", + }, + { + fileId = "202503", + value = "nightelfruinwallsilithusrubble01.m2", + text = "nightelfruinwallsilithusrubble01.m2", + }, + { + fileId = "202504", + value = "nightelfruinwallsilithusrubble02.m2", + text = "nightelfruinwallsilithusrubble02.m2", + }, + }, + value = "elven", + text = "elven", + }, + { + children = { + { + fileId = "202508", + value = "silithidgong.m2", + text = "silithidgong.m2", + }, + { + fileId = "202509", + value = "silithidgongpodium.m2", + text = "silithidgongpodium.m2", + }, + }, + value = "gong", + text = "gong", + }, + { + children = { + { + fileId = "202513", + value = "silithushanginghive01.m2", + text = "silithushanginghive01.m2", + }, + { + fileId = "202515", + value = "smallhive01.m2", + text = "smallhive01.m2", + }, + { + fileId = "202516", + value = "smallhive02.m2", + text = "smallhive02.m2", + }, + { + fileId = "202517", + value = "smallhive03.m2", + text = "smallhive03.m2", + }, + }, + value = "hives", + text = "hives", + }, + { + children = { + { + fileId = "202519", + value = "silithusinsectmound01.m2", + text = "silithusinsectmound01.m2", + }, + { + fileId = "202520", + value = "silithusinsectmound02.m2", + text = "silithusinsectmound02.m2", + }, + { + fileId = "202521", + value = "silithusinsectmound03.m2", + text = "silithusinsectmound03.m2", + }, + }, + value = "insectmound", + text = "insectmound", + }, + { + children = { + { + fileId = "202522", + value = "masterhiveswarm.m2", + text = "masterhiveswarm.m2", + }, + }, + value = "masterhiveswarm", + text = "masterhiveswarm", + }, + { + children = { + { + fileId = "202525", + value = "aq_mummy01.m2", + text = "aq_mummy01.m2", + }, + { + fileId = "202527", + value = "aq_mummy02.m2", + text = "aq_mummy02.m2", + }, + { + fileId = "202529", + value = "aq_mummy03.m2", + text = "aq_mummy03.m2", + }, + }, + value = "mummies", + text = "mummies", + }, + { + children = { + { + fileId = "202533", + value = "obsidianstatue.m2", + text = "obsidianstatue.m2", + }, + }, + value = "obsidianstatue", + text = "obsidianstatue", + }, + { + children = { + { + fileId = "202534", + value = "silithuspod01.m2", + text = "silithuspod01.m2", + }, + { + fileId = "202535", + value = "silithuspod02.m2", + text = "silithuspod02.m2", + }, + { + fileId = "202536", + value = "silithuspod03.m2", + text = "silithuspod03.m2", + }, + }, + value = "pods", + text = "pods", + }, + { + children = { + { + fileId = "202539", + value = "silithuspylon.m2", + text = "silithuspylon.m2", + }, + { + fileId = "202540", + value = "silithuspylonbroken.m2", + text = "silithuspylonbroken.m2", + }, + }, + value = "pylons", + text = "pylons", + }, + { + children = { + { + fileId = "202543", + value = "quiraj_small_swarm.m2", + text = "quiraj_small_swarm.m2", + }, + }, + value = "quiraj_small_swarm", + text = "quiraj_small_swarm", + }, + { + children = { + { + fileId = "202545", + value = "quiraj_beeroom_swarm.m2", + text = "quiraj_beeroom_swarm.m2", + }, + }, + value = "quirajbeeroomswarm", + text = "quirajbeeroomswarm", + }, + { + children = { + { + fileId = "202549", + value = "quirajfallenwall01.m2", + text = "quirajfallenwall01.m2", + }, + { + fileId = "202550", + value = "quirajlwall01.m2", + text = "quirajlwall01.m2", + }, + { + fileId = "202551", + value = "quirajlwall02.m2", + text = "quirajlwall02.m2", + }, + { + fileId = "202552", + value = "quirajlwall03.m2", + text = "quirajlwall03.m2", + }, + { + fileId = "202553", + value = "quirajpillar.m2", + text = "quirajpillar.m2", + }, + { + fileId = "202554", + value = "quirajpillarbroken.m2", + text = "quirajpillarbroken.m2", + }, + { + fileId = "202555", + value = "quirajruinblock01.m2", + text = "quirajruinblock01.m2", + }, + { + fileId = "202556", + value = "quirajruinblock02.m2", + text = "quirajruinblock02.m2", + }, + { + fileId = "202557", + value = "quirajruinblock03.m2", + text = "quirajruinblock03.m2", + }, + { + fileId = "202558", + value = "quirajtower03roof.m2", + text = "quirajtower03roof.m2", + }, + { + fileId = "202559", + value = "quirajtowerfallen.m2", + text = "quirajtowerfallen.m2", + }, + { + fileId = "202560", + value = "quirajtwall01.m2", + text = "quirajtwall01.m2", + }, + { + fileId = "202561", + value = "quirajtwall02.m2", + text = "quirajtwall02.m2", + }, + { + fileId = "202562", + value = "quirajtwall03.m2", + text = "quirajtwall03.m2", + }, + { + fileId = "202563", + value = "quirajtwallroof01.m2", + text = "quirajtwallroof01.m2", + }, + { + fileId = "202564", + value = "quirajtwallroof02.m2", + text = "quirajtwallroof02.m2", + }, + { + fileId = "202565", + value = "quirajwall01.m2", + text = "quirajwall01.m2", + }, + { + fileId = "202566", + value = "quirajwall02.m2", + text = "quirajwall02.m2", + }, + { + fileId = "202567", + value = "quirajwall03.m2", + text = "quirajwall03.m2", + }, + }, + value = "quirajruins", + text = "quirajruins", + }, + { + children = { + { + fileId = "202568", + value = "silithusgate01.m2", + text = "silithusgate01.m2", + }, + { + fileId = "202569", + value = "silithusruinsobelisk01.m2", + text = "silithusruinsobelisk01.m2", + }, + { + fileId = "202570", + value = "silithusruinsobelisk02.m2", + text = "silithusruinsobelisk02.m2", + }, + { + fileId = "202571", + value = "silithusruinsobelisk03.m2", + text = "silithusruinsobelisk03.m2", + }, + { + fileId = "202572", + value = "silithusruinspillar02.m2", + text = "silithusruinspillar02.m2", + }, + { + fileId = "202573", + value = "silithusruinswall01.m2", + text = "silithusruinswall01.m2", + }, + { + fileId = "202574", + value = "silithusruinswall02.m2", + text = "silithusruinswall02.m2", + }, + { + fileId = "202575", + value = "silithusruinswall03.m2", + text = "silithusruinswall03.m2", + }, + { + fileId = "202576", + value = "silithusruinswall04.m2", + text = "silithusruinswall04.m2", + }, + { + fileId = "202577", + value = "silithusruinswall05.m2", + text = "silithusruinswall05.m2", + }, + { + fileId = "202578", + value = "silithusruinswall06.m2", + text = "silithusruinswall06.m2", + }, + { + fileId = "202579", + value = "silithusruinswall07.m2", + text = "silithusruinswall07.m2", + }, + }, + value = "ruins", + text = "ruins", + }, + { + children = { + { + fileId = "202580", + value = "silithidtankhuskabdomen.m2", + text = "silithidtankhuskabdomen.m2", + }, + { + fileId = "202581", + value = "silithidtankhuskfullbody.m2", + text = "silithidtankhuskfullbody.m2", + }, + { + fileId = "202582", + value = "silithidtankhuskhead.m2", + text = "silithidtankhuskhead.m2", + }, + { + fileId = "202583", + value = "silithidtankhuskleg.m2", + text = "silithidtankhuskleg.m2", + }, + { + fileId = "202584", + value = "silithidtankhuskthorax.m2", + text = "silithidtankhuskthorax.m2", + }, + }, + value = "silithidtankhusks", + text = "silithidtankhusks", + }, + { + children = { + { + fileId = "202587", + value = "silithidwasphuskabdomen.m2", + text = "silithidwasphuskabdomen.m2", + }, + { + fileId = "202588", + value = "silithidwasphuskfullbody.m2", + text = "silithidwasphuskfullbody.m2", + }, + { + fileId = "202589", + value = "silithidwasphuskhead.m2", + text = "silithidwasphuskhead.m2", + }, + { + fileId = "202590", + value = "silithidwasphuskleg.m2", + text = "silithidwasphuskleg.m2", + }, + { + fileId = "202591", + value = "silithidwasphuskthorax.m2", + text = "silithidwasphuskthorax.m2", + }, + { + fileId = "202592", + value = "silithidwasphuskwings.m2", + text = "silithidwasphuskwings.m2", + }, + }, + value = "silithidwasphusks", + text = "silithidwasphusks", + }, + { + children = { + { + fileId = "202593", + value = "silithusruinspillartop.m2", + text = "silithusruinspillartop.m2", + }, + }, + value = "silithusruinspillartop", + text = "silithusruinspillartop", + }, + { + children = { + { + fileId = "202595", + value = "twilighttabletlower.m2", + text = "twilighttabletlower.m2", + }, + { + fileId = "202596", + value = "twilighttabletupper.m2", + text = "twilighttabletupper.m2", + }, + }, + value = "twilighttablet", + text = "twilighttablet", + }, + { + children = { + { + fileId = "202598", + value = "waspswarm.m2", + text = "waspswarm.m2", + }, + }, + value = "waspswarm", + text = "waspswarm", + }, + { + children = { + { + fileId = "202599", + value = "silithussandwaterfalllarge.m2", + text = "silithussandwaterfalllarge.m2", + }, + { + fileId = "202600", + value = "silithussandwaterfallmeduim.m2", + text = "silithussandwaterfallmeduim.m2", + }, + { + fileId = "202601", + value = "silithussandwaterfallsmall.m2", + text = "silithussandwaterfallsmall.m2", + }, + { + fileId = "202602", + value = "silithussandwaterfallsplash.m2", + text = "silithussandwaterfallsplash.m2", + }, + }, + value = "waterfalls", + text = "waterfalls", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "silithus", + text = "silithus", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202605", + value = "g_sapling01.m2", + text = "g_sapling01.m2", + }, + { + fileId = "202606", + value = "g_sapling02.m2", + text = "g_sapling02.m2", + }, + { + fileId = "202608", + value = "sapling01.m2", + text = "sapling01.m2", + }, + }, + value = "tree", + text = "tree", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202611", + value = "stonetalonharpysnest01.m2", + text = "stonetalonharpysnest01.m2", + }, + { + fileId = "202612", + value = "stonetalonharpysnest02.m2", + text = "stonetalonharpysnest02.m2", + }, + }, + value = "harpynests", + text = "harpynests", + }, + { + children = { + { + fileId = "202614", + value = "stonetalonrockoutcrop01.m2", + text = "stonetalonrockoutcrop01.m2", + }, + }, + value = "rock", + text = "rock", + }, + { + children = { + { + fileId = "202615", + value = "stonetalontools_crank01.m2", + text = "stonetalontools_crank01.m2", + }, + { + fileId = "202616", + value = "stonetalontools_saw01.m2", + text = "stonetalontools_saw01.m2", + }, + }, + value = "tools", + text = "tools", + }, + { + children = { + { + fileId = "202617", + value = "burntstonetree01.m2", + text = "burntstonetree01.m2", + }, + { + fileId = "202618", + value = "burntstonetree07.m2", + text = "burntstonetree07.m2", + }, + { + fileId = "202619", + value = "burntstonetree08.m2", + text = "burntstonetree08.m2", + }, + { + fileId = "202620", + value = "stonetree01.m2", + text = "stonetree01.m2", + }, + { + fileId = "202621", + value = "stonetree02.m2", + text = "stonetree02.m2", + }, + { + fileId = "202622", + value = "stonetree03.m2", + text = "stonetree03.m2", + }, + { + fileId = "202623", + value = "stonetree04.m2", + text = "stonetree04.m2", + }, + { + fileId = "202624", + value = "stonetree05.m2", + text = "stonetree05.m2", + }, + { + fileId = "202625", + value = "stonetree06.m2", + text = "stonetree06.m2", + }, + { + fileId = "202626", + value = "stonetree07.m2", + text = "stonetree07.m2", + }, + { + fileId = "202627", + value = "stonetree08.m2", + text = "stonetree08.m2", + }, + { + fileId = "202633", + value = "stonetreelog01.m2", + text = "stonetreelog01.m2", + }, + { + fileId = "202634", + value = "stonetreelog02.m2", + text = "stonetreelog02.m2", + }, + { + fileId = "202635", + value = "stonetreelog03.m2", + text = "stonetreelog03.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "202639", + value = "burntstonetreestump02.m2", + text = "burntstonetreestump02.m2", + }, + { + fileId = "202640", + value = "burntstonetreestump03.m2", + text = "burntstonetreestump03.m2", + }, + { + fileId = "202641", + value = "stonetreestump01.m2", + text = "stonetreestump01.m2", + }, + { + fileId = "202642", + value = "stonetreestump02.m2", + text = "stonetreestump02.m2", + }, + { + fileId = "202643", + value = "stonetreestump03.m2", + text = "stonetreestump03.m2", + }, + { + fileId = "202644", + value = "stonetreestump04.m2", + text = "stonetreestump04.m2", + }, + }, + value = "treestumps", + text = "treestumps", + }, + { + children = { + { + fileId = "202646", + value = "stonetalonwaterwheel.m2", + text = "stonetalonwaterwheel.m2", + }, + }, + value = "waterwheel", + text = "waterwheel", + }, + { + children = { + { + fileId = "202649", + value = "stonetree01_web.m2", + text = "stonetree01_web.m2", + }, + { + fileId = "202650", + value = "stonetree02_web.m2", + text = "stonetree02_web.m2", + }, + { + fileId = "202651", + value = "stonetree03_web.m2", + text = "stonetree03_web.m2", + }, + { + fileId = "202652", + value = "stonetree07_web.m2", + text = "stonetree07_web.m2", + }, + }, + value = "webbedtrees", + text = "webbedtrees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "stonetalon", + text = "stonetalon", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202655", + value = "tanaristrollgate.m2", + text = "tanaristrollgate.m2", + }, + }, + value = "trollgate", + text = "trollgate", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202657", + value = "tanariscactus01.m2", + text = "tanariscactus01.m2", + }, + { + fileId = "202658", + value = "tanariscactus02.m2", + text = "tanariscactus02.m2", + }, + { + fileId = "202659", + value = "tanariscactus03.m2", + text = "tanariscactus03.m2", + }, + { + fileId = "202660", + value = "tanariscactus04.m2", + text = "tanariscactus04.m2", + }, + { + fileId = "202661", + value = "tanariscactus05.m2", + text = "tanariscactus05.m2", + }, + { + fileId = "202662", + value = "tanariscactus06.m2", + text = "tanariscactus06.m2", + }, + }, + value = "cacti", + text = "cacti", + }, + { + children = { + { + fileId = "202670", + value = "desertholdingpen.m2", + text = "desertholdingpen.m2", + }, + }, + value = "desertholdingpen", + text = "desertholdingpen", + }, + { + children = { + { + fileId = "202672", + value = "tanarisgoblinwall01.m2", + text = "tanarisgoblinwall01.m2", + }, + { + fileId = "202673", + value = "tanarisgoblinwall02.m2", + text = "tanarisgoblinwall02.m2", + }, + { + fileId = "202674", + value = "tanarisgoblinwallcurve01.m2", + text = "tanarisgoblinwallcurve01.m2", + }, + { + fileId = "202675", + value = "tanarisgoblinwallgatebigbits.m2", + text = "tanarisgoblinwallgatebigbits.m2", + }, + { + fileId = "202676", + value = "tanarisgoblinwallpost01.m2", + text = "tanarisgoblinwallpost01.m2", + }, + }, + value = "goblin", + text = "goblin", + }, + { + children = { + { + fileId = "202677", + value = "tanarisrock01.m2", + text = "tanarisrock01.m2", + }, + { + fileId = "202678", + value = "tanarisrock02.m2", + text = "tanarisrock02.m2", + }, + { + fileId = "202679", + value = "tanarisrock03.m2", + text = "tanarisrock03.m2", + }, + { + fileId = "202680", + value = "tanarisrock04.m2", + text = "tanarisrock04.m2", + }, + { + fileId = "202681", + value = "tanarisrock05.m2", + text = "tanarisrock05.m2", + }, + { + fileId = "202682", + value = "tanarisrock06.m2", + text = "tanarisrock06.m2", + }, + { + fileId = "202683", + value = "tanarisrock07.m2", + text = "tanarisrock07.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "202687", + value = "tanariswatertower.m2", + text = "tanariswatertower.m2", + }, + }, + value = "watertower", + text = "watertower", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "tanaris", + text = "tanaris", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202690", + value = "gnomebleachers.m2", + text = "gnomebleachers.m2", + }, + { + fileId = "202692", + value = "goblinbleachers.m2", + text = "goblinbleachers.m2", + }, + }, + value = "bleachers", + text = "bleachers", + }, + { + children = { + { + fileId = "202693", + value = "thousandneedlesbridge.m2", + text = "thousandneedlesbridge.m2", + }, + }, + value = "bridge", + text = "bridge", + }, + { + children = { + { + fileId = "202694", + value = "back-stop.m2", + text = "back-stop.m2", + }, + { + fileId = "202695", + value = "straightaway01.m2", + text = "straightaway01.m2", + }, + { + fileId = "202696", + value = "straightaway02.m2", + text = "straightaway02.m2", + }, + { + fileId = "202697", + value = "straightaway03.m2", + text = "straightaway03.m2", + }, + { + fileId = "202698", + value = "straightaway04.m2", + text = "straightaway04.m2", + }, + { + fileId = "202699", + value = "turn01-1.m2", + text = "turn01-1.m2", + }, + { + fileId = "202700", + value = "turn01-2.m2", + text = "turn01-2.m2", + }, + { + fileId = "202701", + value = "turn02-1.m2", + text = "turn02-1.m2", + }, + { + fileId = "202702", + value = "turn02-2.m2", + text = "turn02-2.m2", + }, + { + fileId = "202703", + value = "turn03.m2", + text = "turn03.m2", + }, + { + fileId = "202704", + value = "turn04.m2", + text = "turn04.m2", + }, + { + fileId = "202705", + value = "turn05-1.m2", + text = "turn05-1.m2", + }, + { + fileId = "202706", + value = "turn05-2.m2", + text = "turn05-2.m2", + }, + { + fileId = "202707", + value = "turn06.m2", + text = "turn06.m2", + }, + }, + value = "haybails", + text = "haybails", + }, + { + children = { + { + fileId = "202709", + value = "racingflag01.m2", + text = "racingflag01.m2", + }, + }, + value = "racingflags", + text = "racingflags", + }, + { + children = { + { + fileId = "202710", + value = "saltflatrock_01.m2", + text = "saltflatrock_01.m2", + }, + { + fileId = "202711", + value = "saltflatrock_02.m2", + text = "saltflatrock_02.m2", + }, + { + fileId = "202712", + value = "saltflatrock_03.m2", + text = "saltflatrock_03.m2", + }, + { + fileId = "202713", + value = "saltflatrock_04.m2", + text = "saltflatrock_04.m2", + }, + { + fileId = "202716", + value = "thousandrock01.m2", + text = "thousandrock01.m2", + }, + { + fileId = "202718", + value = "thousandrock02.m2", + text = "thousandrock02.m2", + }, + { + fileId = "202719", + value = "thousandrock03.m2", + text = "thousandrock03.m2", + }, + { + fileId = "202720", + value = "thousandrock04.m2", + text = "thousandrock04.m2", + }, + { + fileId = "202721", + value = "thousandrock05.m2", + text = "thousandrock05.m2", + }, + { + fileId = "202722", + value = "thousandrock06.m2", + text = "thousandrock06.m2", + }, + { + fileId = "202723", + value = "thousandrock07.m2", + text = "thousandrock07.m2", + }, + { + fileId = "202724", + value = "thousandrock08.m2", + text = "thousandrock08.m2", + }, + { + fileId = "202725", + value = "thousandrock09.m2", + text = "thousandrock09.m2", + }, + { + fileId = "202726", + value = "thousandrock10.m2", + text = "thousandrock10.m2", + }, + { + fileId = "202727", + value = "thousandrock11.m2", + text = "thousandrock11.m2", + }, + { + fileId = "202728", + value = "thousandrock12.m2", + text = "thousandrock12.m2", + }, + { + fileId = "202729", + value = "thousandrock13.m2", + text = "thousandrock13.m2", + }, + { + fileId = "202730", + value = "thousandrock14.m2", + text = "thousandrock14.m2", + }, + { + fileId = "202731", + value = "thousandrock15.m2", + text = "thousandrock15.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "202733", + value = "snake_nest_001.m2", + text = "snake_nest_001.m2", + }, + { + fileId = "202734", + value = "snake_nest_002.m2", + text = "snake_nest_002.m2", + }, + }, + value = "snakenests", + text = "snakenests", + }, + { + children = { + { + fileId = "202737", + value = "wyverneggs01.m2", + text = "wyverneggs01.m2", + }, + { + fileId = "202738", + value = "wyverneggs02.m2", + text = "wyverneggs02.m2", + }, + }, + value = "wyverneggs", + text = "wyverneggs", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "thousandneedles", + text = "thousandneedles", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202740", + value = "timbermawwoodendoor.m2", + text = "timbermawwoodendoor.m2", + }, + }, + value = "woodendoor", + text = "woodendoor", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202742", + value = "timbermawflower01.m2", + text = "timbermawflower01.m2", + }, + { + fileId = "202744", + value = "timbermawflower02.m2", + text = "timbermawflower02.m2", + }, + }, + value = "timbermawflowers", + text = "timbermawflowers", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "timbermaw", + text = "timbermaw", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202747", + value = "ungoroarchway01.m2", + text = "ungoroarchway01.m2", + }, + }, + value = "archway", + text = "archway", + }, + { + children = { + { + fileId = "202748", + value = "ungorocrystal_blue01.m2", + text = "ungorocrystal_blue01.m2", + }, + { + fileId = "202749", + value = "ungorocrystal_blue02.m2", + text = "ungorocrystal_blue02.m2", + }, + { + fileId = "202750", + value = "ungorocrystal_green01.m2", + text = "ungorocrystal_green01.m2", + }, + { + fileId = "202751", + value = "ungorocrystal_green02.m2", + text = "ungorocrystal_green02.m2", + }, + { + fileId = "202752", + value = "ungorocrystal_red01.m2", + text = "ungorocrystal_red01.m2", + }, + { + fileId = "202753", + value = "ungorocrystal_red02.m2", + text = "ungorocrystal_red02.m2", + }, + { + fileId = "202754", + value = "ungorocrystal_yellow01.m2", + text = "ungorocrystal_yellow01.m2", + }, + { + fileId = "202755", + value = "ungorocrystal_yellow02.m2", + text = "ungorocrystal_yellow02.m2", + }, + { + fileId = "202759", + value = "ungorocrystalpylon01.m2", + text = "ungorocrystalpylon01.m2", + }, + }, + value = "crystals", + text = "crystals", + }, + { + children = { + { + fileId = "202766", + value = "ungorogeyser01.m2", + text = "ungorogeyser01.m2", + }, + { + fileId = "202767", + value = "ungorogeyser02.m2", + text = "ungorogeyser02.m2", + }, + }, + value = "geyser", + text = "geyser", + }, + { + children = { + { + fileId = "202770", + value = "ungororock06.m2", + text = "ungororock06.m2", + }, + { + fileId = "202771", + value = "ungororock07.m2", + text = "ungororock07.m2", + }, + { + fileId = "202772", + value = "ungororock08.m2", + text = "ungororock08.m2", + }, + { + fileId = "202773", + value = "ungororock09.m2", + text = "ungororock09.m2", + }, + { + fileId = "202774", + value = "ungororock10.m2", + text = "ungororock10.m2", + }, + { + fileId = "202775", + value = "ungororock11.m2", + text = "ungororock11.m2", + }, + { + fileId = "202776", + value = "ungororock12.m2", + text = "ungororock12.m2", + }, + { + fileId = "202777", + value = "ungororock13.m2", + text = "ungororock13.m2", + }, + { + fileId = "202778", + value = "ungororock14.m2", + text = "ungororock14.m2", + }, + { + fileId = "202779", + value = "ungororock15.m2", + text = "ungororock15.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "202781", + value = "ungorothreshadoncorpse.m2", + text = "ungorothreshadoncorpse.m2", + }, + }, + value = "threshadoncorpse", + text = "threshadoncorpse", + }, + { + children = { + { + fileId = "202782", + value = "ungorotreebite.m2", + text = "ungorotreebite.m2", + }, + { + fileId = "202783", + value = "ungorotreebreak.m2", + text = "ungorotreebreak.m2", + }, + { + fileId = "202784", + value = "ungorotreebreak2.m2", + text = "ungorotreebreak2.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "202786", + value = "trexfootprint.m2", + text = "trexfootprint.m2", + }, + }, + value = "trexfootprint", + text = "trexfootprint", + }, + { + children = { + { + fileId = "202787", + value = "ungoroblackbubble.m2", + text = "ungoroblackbubble.m2", + }, + }, + value = "ungorobubbles", + text = "ungorobubbles", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "ungoro", + text = "ungoro", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202790", + value = "wc_basket01.m2", + text = "wc_basket01.m2", + }, + }, + value = "baskets", + text = "baskets", + }, + { + children = { + { + fileId = "202792", + value = "wc_cage01.m2", + text = "wc_cage01.m2", + }, + }, + value = "cages", + text = "cages", + }, + { + children = { + { + fileId = "202794", + value = "wc_basinstone.m2", + text = "wc_basinstone.m2", + }, + { + fileId = "202795", + value = "wc_bedstone.m2", + text = "wc_bedstone.m2", + }, + { + fileId = "202796", + value = "wc_benchstone.m2", + text = "wc_benchstone.m2", + }, + { + fileId = "202797", + value = "wc_benchstone02.m2", + text = "wc_benchstone02.m2", + }, + { + fileId = "202798", + value = "wc_cairn.m2", + text = "wc_cairn.m2", + }, + { + fileId = "202799", + value = "wc_druidofthequatlcircle.m2", + text = "wc_druidofthequatlcircle.m2", + }, + { + fileId = "202800", + value = "wc_druidoftheraptorcircle.m2", + text = "wc_druidoftheraptorcircle.m2", + }, + { + fileId = "202801", + value = "wc_druidoftheraptorclaw.m2", + text = "wc_druidoftheraptorclaw.m2", + }, + { + fileId = "202802", + value = "wc_druidoftheraptortooth.m2", + text = "wc_druidoftheraptortooth.m2", + }, + { + fileId = "202803", + value = "wc_druidoftheserpentcircle.m2", + text = "wc_druidoftheserpentcircle.m2", + }, + { + fileId = "202804", + value = "wc_druidoftheserpentstone.m2", + text = "wc_druidoftheserpentstone.m2", + }, + { + fileId = "202805", + value = "wc_druidoftheserpentstonehead.m2", + text = "wc_druidoftheserpentstonehead.m2", + }, + { + fileId = "202806", + value = "wc_druidofthethundercircle.m2", + text = "wc_druidofthethundercircle.m2", + }, + { + fileId = "202807", + value = "wc_druidofthethunderspine.m2", + text = "wc_druidofthethunderspine.m2", + }, + { + fileId = "202814", + value = "wc_stoolstone.m2", + text = "wc_stoolstone.m2", + }, + { + fileId = "202815", + value = "wc_tablestone.m2", + text = "wc_tablestone.m2", + }, + }, + value = "fangdruids", + text = "fangdruids", + }, + { + children = { + { + fileId = "202818", + value = "wc_hanginghead01.m2", + text = "wc_hanginghead01.m2", + }, + }, + value = "hangingheads", + text = "hangingheads", + }, + { + children = { + { + fileId = "202821", + value = "wc_stickbundle01.m2", + text = "wc_stickbundle01.m2", + }, + { + fileId = "202822", + value = "wc_stickbundle02.m2", + text = "wc_stickbundle02.m2", + }, + { + fileId = "202823", + value = "wc_stickbundle03.m2", + text = "wc_stickbundle03.m2", + }, + }, + value = "stickbundles", + text = "stickbundles", + }, + { + children = { + { + fileId = "202824", + value = "wailingwaterfall01.m2", + text = "wailingwaterfall01.m2", + }, + }, + value = "waterfalls", + text = "waterfalls", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "wailingcaverns", + text = "wailingcaverns", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "202828", + value = "winterspringaltar01.m2", + text = "winterspringaltar01.m2", + }, + }, + value = "altar", + text = "altar", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "202832", + value = "winterspringfrostsaberrock.m2", + text = "winterspringfrostsaberrock.m2", + }, + }, + value = "frostsaberrock", + text = "frostsaberrock", + }, + { + children = { + { + fileId = "202834", + value = "frozenwaterfall01.m2", + text = "frozenwaterfall01.m2", + }, + { + fileId = "202835", + value = "frozenwaterfall02.m2", + text = "frozenwaterfall02.m2", + }, + { + fileId = "202836", + value = "frozenwaterfall03.m2", + text = "frozenwaterfall03.m2", + }, + }, + value = "frozenwaterfalls", + text = "frozenwaterfalls", + }, + { + children = { + { + fileId = "202839", + value = "furbolgtentsnow.m2", + text = "furbolgtentsnow.m2", + }, + { + fileId = "202840", + value = "furbolgtentsnow2.m2", + text = "furbolgtentsnow2.m2", + }, + }, + value = "furbolgtent", + text = "furbolgtent", + }, + { + children = { + { + fileId = "202841", + value = "furbolgtotemsnow01.m2", + text = "furbolgtotemsnow01.m2", + }, + { + fileId = "202842", + value = "furbolgtotemsnow02.m2", + text = "furbolgtotemsnow02.m2", + }, + }, + value = "furbolgtotems", + text = "furbolgtotems", + }, + { + children = { + { + fileId = "202845", + value = "winterspringrock01.m2", + text = "winterspringrock01.m2", + }, + { + fileId = "202846", + value = "winterspringrock02.m2", + text = "winterspringrock02.m2", + }, + { + fileId = "202847", + value = "winterspringrock03.m2", + text = "winterspringrock03.m2", + }, + { + fileId = "202848", + value = "winterspringrock04.m2", + text = "winterspringrock04.m2", + }, + { + fileId = "202849", + value = "winterspringrock05.m2", + text = "winterspringrock05.m2", + }, + { + fileId = "202850", + value = "winterspringrock06.m2", + text = "winterspringrock06.m2", + }, + { + fileId = "202851", + value = "winterspringrock07.m2", + text = "winterspringrock07.m2", + }, + { + fileId = "202852", + value = "winterspringrock08.m2", + text = "winterspringrock08.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "202855", + value = "newwinterspringmidtree01.m2", + text = "newwinterspringmidtree01.m2", + }, + { + fileId = "202856", + value = "newwinterspringmidtree02.m2", + text = "newwinterspringmidtree02.m2", + }, + { + fileId = "202857", + value = "newwinterspringtree01.m2", + text = "newwinterspringtree01.m2", + }, + { + fileId = "202858", + value = "newwinterspringtree02.m2", + text = "newwinterspringtree02.m2", + }, + { + fileId = "202859", + value = "newwinterspringtree05.m2", + text = "newwinterspringtree05.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "202868", + value = "winterspringbush01.m2", + text = "winterspringbush01.m2", + }, + }, + value = "winterspringbushes", + text = "winterspringbushes", + }, + { + children = { + { + fileId = "202872", + value = "winterspringfallenbranch01.m2", + text = "winterspringfallenbranch01.m2", + }, + { + fileId = "202873", + value = "winterspringfallentree01.m2", + text = "winterspringfallentree01.m2", + }, + { + fileId = "202874", + value = "winterspringfallentree02.m2", + text = "winterspringfallentree02.m2", + }, + }, + value = "winterspringfallentrees", + text = "winterspringfallentrees", + }, + { + children = { + { + fileId = "202876", + value = "winterspringtree01.m2", + text = "winterspringtree01.m2", + }, + { + fileId = "202877", + value = "winterspringtree02.m2", + text = "winterspringtree02.m2", + }, + { + fileId = "202878", + value = "winterspringtree03.m2", + text = "winterspringtree03.m2", + }, + }, + value = "winterspringtrees", + text = "winterspringtrees", + }, + { + children = { + { + fileId = "202884", + value = "winterspringworldtreeroot01.m2", + text = "winterspringworldtreeroot01.m2", + }, + { + fileId = "202885", + value = "winterspringworldtreeroot02.m2", + text = "winterspringworldtreeroot02.m2", + }, + { + fileId = "202886", + value = "winterspringworldtreeroot03.m2", + text = "winterspringworldtreeroot03.m2", + }, + { + fileId = "202887", + value = "winterspringworldtreeroot04.m2", + text = "winterspringworldtreeroot04.m2", + }, + }, + value = "worldtreeroots", + text = "worldtreeroots", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "winterspring", + text = "winterspring", + }, + }, + value = "kalimdor", + text = "kalimdor", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "202890", + value = "badlandsbones01.m2", + text = "badlandsbones01.m2", + }, + { + fileId = "202891", + value = "badlandsbones02.m2", + text = "badlandsbones02.m2", + }, + { + fileId = "202892", + value = "badlandsbones03.m2", + text = "badlandsbones03.m2", + }, + }, + value = "bones", + text = "bones", + }, + { + children = { + { + fileId = "202904", + value = "badlandsshrub01.m2", + text = "badlandsshrub01.m2", + }, + { + fileId = "202905", + value = "badlandsshrub02.m2", + text = "badlandsshrub02.m2", + }, + { + fileId = "202906", + value = "badlandsshrub03.m2", + text = "badlandsshrub03.m2", + }, + { + fileId = "202907", + value = "badlandsshrub03dead.m2", + text = "badlandsshrub03dead.m2", + }, + { + fileId = "202908", + value = "badlandsshrub04.m2", + text = "badlandsshrub04.m2", + }, + { + fileId = "202909", + value = "badlandsshrub04dead.m2", + text = "badlandsshrub04dead.m2", + }, + { + fileId = "202910", + value = "badlandsshrub05.m2", + text = "badlandsshrub05.m2", + }, + { + fileId = "202911", + value = "badlandsshrub06.m2", + text = "badlandsshrub06.m2", + }, + { + fileId = "202913", + value = "badlandsshrub07.m2", + text = "badlandsshrub07.m2", + }, + { + fileId = "202914", + value = "badlandsshrub08.m2", + text = "badlandsshrub08.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "202925", + value = "badlandscactus_1.m2", + text = "badlandscactus_1.m2", + }, + { + fileId = "202926", + value = "badlandscactus_10.m2", + text = "badlandscactus_10.m2", + }, + { + fileId = "202927", + value = "badlandscactus_2.m2", + text = "badlandscactus_2.m2", + }, + { + fileId = "202928", + value = "badlandscactus_3.m2", + text = "badlandscactus_3.m2", + }, + { + fileId = "202929", + value = "badlandscactus_4.m2", + text = "badlandscactus_4.m2", + }, + { + fileId = "202930", + value = "badlandscactus_5.m2", + text = "badlandscactus_5.m2", + }, + { + fileId = "202931", + value = "badlandscactus_6.m2", + text = "badlandscactus_6.m2", + }, + { + fileId = "202932", + value = "badlandscactus_7.m2", + text = "badlandscactus_7.m2", + }, + { + fileId = "202933", + value = "badlandscactus_8.m2", + text = "badlandscactus_8.m2", + }, + { + fileId = "202934", + value = "badlandscactus_9.m2", + text = "badlandscactus_9.m2", + }, + }, + value = "cactus", + text = "cactus", + }, + { + children = { + { + fileId = "202935", + value = "questbladebadlands.m2", + text = "questbladebadlands.m2", + }, + }, + value = "questblade", + text = "questblade", + }, + { + children = { + { + fileId = "202940", + value = "badlandsrock01.m2", + text = "badlandsrock01.m2", + }, + { + fileId = "202941", + value = "badlandsrock02.m2", + text = "badlandsrock02.m2", + }, + { + fileId = "202942", + value = "badlandsrock03.m2", + text = "badlandsrock03.m2", + }, + { + fileId = "202943", + value = "badlandsrock04.m2", + text = "badlandsrock04.m2", + }, + { + fileId = "202944", + value = "badlandsrock05.m2", + text = "badlandsrock05.m2", + }, + { + fileId = "202945", + value = "badlandsrock06.m2", + text = "badlandsrock06.m2", + }, + { + fileId = "202946", + value = "badlandsrock07.m2", + text = "badlandsrock07.m2", + }, + { + fileId = "202947", + value = "badlandsrock08.m2", + text = "badlandsrock08.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "202952", + value = "pentagramdirtbadlands.m2", + text = "pentagramdirtbadlands.m2", + }, + }, + value = "rune", + text = "rune", + }, + { + children = { + { + fileId = "202953", + value = "badlandsskeletalking.m2", + text = "badlandsskeletalking.m2", + }, + }, + value = "skeletalking", + text = "skeletalking", + }, + { + children = { + { + fileId = "202955", + value = "badlandscobrapillar01.m2", + text = "badlandscobrapillar01.m2", + }, + { + fileId = "202956", + value = "badlandscobrapillar02.m2", + text = "badlandscobrapillar02.m2", + }, + { + fileId = "202957", + value = "badlandscobrapillar03.m2", + text = "badlandscobrapillar03.m2", + }, + { + fileId = "202958", + value = "badlandscobrastatue01.m2", + text = "badlandscobrastatue01.m2", + }, + { + fileId = "202959", + value = "badlandscobrastatue02.m2", + text = "badlandscobrastatue02.m2", + }, + { + fileId = "202960", + value = "badlandscobrastatue03.m2", + text = "badlandscobrastatue03.m2", + }, + }, + value = "statues", + text = "statues", + }, + { + children = { + { + fileId = "202970", + value = "badlandscactus01.m2", + text = "badlandscactus01.m2", + }, + { + fileId = "202971", + value = "badlandscactus02.m2", + text = "badlandscactus02.m2", + }, + { + fileId = "202972", + value = "badlandscactus03.m2", + text = "badlandscactus03.m2", + }, + { + fileId = "202973", + value = "badlandspalmtree01.m2", + text = "badlandspalmtree01.m2", + }, + { + fileId = "202974", + value = "badlandspalmtree02.m2", + text = "badlandspalmtree02.m2", + }, + { + fileId = "202975", + value = "badlandstree01.m2", + text = "badlandstree01.m2", + }, + { + fileId = "202976", + value = "badlandstree01dead.m2", + text = "badlandstree01dead.m2", + }, + { + fileId = "202977", + value = "badlandstree01fallen.m2", + text = "badlandstree01fallen.m2", + }, + { + fileId = "202978", + value = "badlandstree02.m2", + text = "badlandstree02.m2", + }, + { + fileId = "202979", + value = "badlandstree02dead.m2", + text = "badlandstree02dead.m2", + }, + { + fileId = "202980", + value = "badlandstree02fallen.m2", + text = "badlandstree02fallen.m2", + }, + { + fileId = "202981", + value = "badlandstree03.m2", + text = "badlandstree03.m2", + }, + { + fileId = "202982", + value = "badlandstree03dead.m2", + text = "badlandstree03dead.m2", + }, + { + fileId = "202983", + value = "badlandstree04.m2", + text = "badlandstree04.m2", + }, + { + fileId = "202984", + value = "badlandstreestump01.m2", + text = "badlandstreestump01.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "203004", + value = "badlandssunkenwagon.m2", + text = "badlandssunkenwagon.m2", + }, + }, + value = "wagon", + text = "wagon", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "badlands", + text = "badlands", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203006", + value = "blackrockaltarritual.m2", + text = "blackrockaltarritual.m2", + }, + }, + value = "altarritual", + text = "altarritual", + }, + { + children = { + { + fileId = "203010", + value = "darkironanvil.m2", + text = "darkironanvil.m2", + }, + { + fileId = "203012", + value = "darkironforge.m2", + text = "darkironforge.m2", + }, + }, + value = "anvil", + text = "anvil", + }, + { + children = { + { + fileId = "203013", + value = "arenaflag.m2", + text = "arenaflag.m2", + }, + }, + value = "arenaflag", + text = "arenaflag", + }, + { + children = { + { + fileId = "203016", + value = "blackrockchalice.m2", + text = "blackrockchalice.m2", + }, + }, + value = "chalice", + text = "chalice", + }, + { + children = { + { + fileId = "203018", + value = "darkironbrazier.m2", + text = "darkironbrazier.m2", + }, + }, + value = "darkironbrazier", + text = "darkironbrazier", + }, + { + children = { + { + fileId = "203020", + value = "darkironsafe.m2", + text = "darkironsafe.m2", + }, + }, + value = "safe", + text = "safe", + }, + { + children = { + { + fileId = "203022", + value = "blackrockseal.m2", + text = "blackrockseal.m2", + }, + }, + value = "seal", + text = "seal", + }, + { + children = { + { + fileId = "203024", + value = "statuedarkironthaurissan.m2", + text = "statuedarkironthaurissan.m2", + }, + { + fileId = "203025", + value = "statuedarkironthaurissanhammer.m2", + text = "statuedarkironthaurissanhammer.m2", + }, + }, + value = "statuethaurissan", + text = "statuethaurissan", + }, + { + children = { + { + fileId = "203027", + value = "blackrocksuppressiontrap.m2", + text = "blackrocksuppressiontrap.m2", + }, + }, + value = "suppressiontrap", + text = "suppressiontrap", + }, + { + children = { + { + fileId = "203028", + value = "blackrockvaultdepositdoor01.m2", + text = "blackrockvaultdepositdoor01.m2", + }, + { + fileId = "203029", + value = "blackrockvaultdepositdoor02.m2", + text = "blackrockvaultdepositdoor02.m2", + }, + { + fileId = "203030", + value = "blackrockvaultsecretdoor.m2", + text = "blackrockvaultsecretdoor.m2", + }, + { + fileId = "203031", + value = "blackrockvaultspecialdoor.m2", + text = "blackrockvaultspecialdoor.m2", + }, + }, + value = "vault", + text = "vault", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "203033", + value = "blackrockdirectionalsign.m2", + text = "blackrockdirectionalsign.m2", + }, + }, + value = "blackrockdirectionalsign", + text = "blackrockdirectionalsign", + }, + { + children = { + { + fileId = "203035", + value = "blackrockstatuelavabubble.m2", + text = "blackrockstatuelavabubble.m2", + }, + { + fileId = "203036", + value = "blackrockstatuelavabubbles.m2", + text = "blackrockstatuelavabubbles.m2", + }, + { + fileId = "203037", + value = "blackrockstatuelavasplash.m2", + text = "blackrockstatuelavasplash.m2", + }, + }, + value = "blackrocklavabubbles", + text = "blackrocklavabubbles", + }, + { + children = { + { + fileId = "203040", + value = "blackrocklavafalls01.m2", + text = "blackrocklavafalls01.m2", + }, + { + fileId = "203041", + value = "blackrocklavafalls02.m2", + text = "blackrocklavafalls02.m2", + }, + { + fileId = "203043", + value = "blackrockmouthlava01.m2", + text = "blackrockmouthlava01.m2", + }, + { + fileId = "203044", + value = "blackrockmouthlava02.m2", + text = "blackrockmouthlava02.m2", + }, + { + fileId = "203045", + value = "blackrockstatuelavaflow.m2", + text = "blackrockstatuelavaflow.m2", + }, + { + fileId = "203046", + value = "blackrockstatuelavaflowwide.m2", + text = "blackrockstatuelavaflowwide.m2", + }, + }, + value = "blackrocklavaflow", + text = "blackrocklavaflow", + }, + { + children = { + { + fileId = "203050", + value = "bankportrait.m2", + text = "bankportrait.m2", + }, + { + fileId = "203051", + value = "bankportraitplate.m2", + text = "bankportraitplate.m2", + }, + }, + value = "blackrockportraits", + text = "blackrockportraits", + }, + { + fileId = "203054", + value = "blackrockteslacoil.m2", + text = "blackrockteslacoil.m2", + }, + { + children = { + { + fileId = "203055", + value = "blackwinglair_throne.m2", + text = "blackwinglair_throne.m2", + }, + }, + value = "blackwingthrone", + text = "blackwingthrone", + }, + { + children = { + { + fileId = "203057", + value = "blackrockbloodmachine01.m2", + text = "blackrockbloodmachine01.m2", + }, + { + fileId = "203058", + value = "blackrockbloodmachine02.m2", + text = "blackrockbloodmachine02.m2", + }, + { + fileId = "203059", + value = "blackrockbloodmachine03.m2", + text = "blackrockbloodmachine03.m2", + }, + { + fileId = "203060", + value = "blackrockbloodmachine04.m2", + text = "blackrockbloodmachine04.m2", + }, + { + fileId = "203061", + value = "blackrockbloodvile.m2", + text = "blackrockbloodvile.m2", + }, + { + fileId = "203069", + value = "hangingdragon01.m2", + text = "hangingdragon01.m2", + }, + { + fileId = "203070", + value = "hangingdragon02.m2", + text = "hangingdragon02.m2", + }, + { + fileId = "203072", + value = "wallmountedvial01.m2", + text = "wallmountedvial01.m2", + }, + { + fileId = "203073", + value = "wallmountedvial02.m2", + text = "wallmountedvial02.m2", + }, + }, + value = "deathwingexperiments", + text = "deathwingexperiments", + }, + { + children = { + { + fileId = "203074", + value = "blackrockcelldoor01.m2", + text = "blackrockcelldoor01.m2", + }, + { + fileId = "203075", + value = "blackrockdoors01.m2", + text = "blackrockdoors01.m2", + }, + { + fileId = "203076", + value = "blackrockdoorsingle.m2", + text = "blackrockdoorsingle.m2", + }, + { + fileId = "203077", + value = "blackrockhugedoors.m2", + text = "blackrockhugedoors.m2", + }, + { + fileId = "203078", + value = "blackrockhugedoorsmechanism.m2", + text = "blackrockhugedoorsmechanism.m2", + }, + { + fileId = "203082", + value = "blackrockhugedoorsmechanismlock.m2", + text = "blackrockhugedoorsmechanismlock.m2", + }, + { + fileId = "203083", + value = "blackrockhugedoorsopendoorcollision.m2", + text = "blackrockhugedoorsopendoorcollision.m2", + }, + { + fileId = "203084", + value = "blackrockhugedoorsportcullis.m2", + text = "blackrockhugedoorsportcullis.m2", + }, + { + fileId = "203086", + value = "blackrockirondoor01.m2", + text = "blackrockirondoor01.m2", + }, + { + fileId = "203087", + value = "darkironportcullis.m2", + text = "darkironportcullis.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "203089", + value = "dragonkinegg.m2", + text = "dragonkinegg.m2", + }, + { + fileId = "203090", + value = "dragonkineggbroken.m2", + text = "dragonkineggbroken.m2", + }, + }, + value = "dragonkineggs", + text = "dragonkineggs", + }, + { + children = { + { + fileId = "203091", + value = "dragonkinnest01.m2", + text = "dragonkinnest01.m2", + }, + { + fileId = "203092", + value = "dragonkinnest02.m2", + text = "dragonkinnest02.m2", + }, + { + fileId = "203093", + value = "dragonkinnest03.m2", + text = "dragonkinnest03.m2", + }, + { + fileId = "203094", + value = "dragonkinnestclump01.m2", + text = "dragonkinnestclump01.m2", + }, + }, + value = "dragonkinnests", + text = "dragonkinnests", + }, + { + children = { + { + fileId = "203096", + value = "cannongolemarm.m2", + text = "cannongolemarm.m2", + }, + { + fileId = "203097", + value = "cannongolembust.m2", + text = "cannongolembust.m2", + }, + { + fileId = "203098", + value = "cannongolemcannon.m2", + text = "cannongolemcannon.m2", + }, + { + fileId = "203099", + value = "cannongolemfoot.m2", + text = "cannongolemfoot.m2", + }, + { + fileId = "203100", + value = "cannongolemoperationtable.m2", + text = "cannongolemoperationtable.m2", + }, + { + fileId = "203101", + value = "cannongolemwaist.m2", + text = "cannongolemwaist.m2", + }, + { + fileId = "203103", + value = "darkironoperationtableempty.m2", + text = "darkironoperationtableempty.m2", + }, + }, + value = "golemparts", + text = "golemparts", + }, + { + children = { + { + fileId = "203105", + value = "blackrockhookarm01.m2", + text = "blackrockhookarm01.m2", + }, + { + fileId = "203106", + value = "blackrockhookbody01.m2", + text = "blackrockhookbody01.m2", + }, + { + fileId = "203107", + value = "blackrockhookcannon01.m2", + text = "blackrockhookcannon01.m2", + }, + { + fileId = "203108", + value = "blackrockhookempty.m2", + text = "blackrockhookempty.m2", + }, + { + fileId = "203109", + value = "blackrockhookfoot01.m2", + text = "blackrockhookfoot01.m2", + }, + { + fileId = "203110", + value = "blackrockhookhead01.m2", + text = "blackrockhookhead01.m2", + }, + }, + value = "hooks", + text = "hooks", + }, + { + children = { + { + fileId = "203112", + value = "museumgem01.m2", + text = "museumgem01.m2", + }, + }, + value = "museumgem", + text = "museumgem", + }, + { + children = { + { + fileId = "203114", + value = "warchiefrendshead.m2", + text = "warchiefrendshead.m2", + }, + }, + value = "warchiefshead", + text = "warchiefshead", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "blackrock", + text = "blackrock", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203116", + value = "fortress01_06.m2", + text = "fortress01_06.m2", + }, + }, + value = "fortress01_06", + text = "fortress01_06", + }, + { + children = { + { + fileId = "203120", + value = "fortress01_08.m2", + text = "fortress01_08.m2", + }, + }, + value = "fortress01_08", + text = "fortress01_08", + }, + { + children = { + { + fileId = "203122", + value = "fortress01_09.m2", + text = "fortress01_09.m2", + }, + }, + value = "fortress01_09", + text = "fortress01_09", + }, + { + children = { + { + fileId = "203123", + value = "fortress02_04.m2", + text = "fortress02_04.m2", + }, + }, + value = "fortress02_04", + text = "fortress02_04", + }, + { + children = { + { + fileId = "203124", + value = "fortress02_06.m2", + text = "fortress02_06.m2", + }, + }, + value = "fortress02_06", + text = "fortress02_06", + }, + { + children = { + { + fileId = "203125", + value = "fortress02_07.m2", + text = "fortress02_07.m2", + }, + }, + value = "fortress02_07", + text = "fortress02_07", + }, + { + children = { + { + fileId = "203126", + value = "fortress03_03.m2", + text = "fortress03_03.m2", + }, + }, + value = "fortress03_03", + text = "fortress03_03", + }, + { + children = { + { + fileId = "203127", + value = "fortress03_04a.m2", + text = "fortress03_04a.m2", + }, + }, + value = "fortress03_04a", + text = "fortress03_04a", + }, + { + children = { + { + fileId = "203128", + value = "fortress03_04b.m2", + text = "fortress03_04b.m2", + }, + }, + value = "fortress03_04b", + text = "fortress03_04b", + }, + { + children = { + { + fileId = "203129", + value = "fortress03_05.m2", + text = "fortress03_05.m2", + }, + }, + value = "fortress03_05", + text = "fortress03_05", + }, + { + children = { + { + fileId = "203130", + value = "fortress03_05b.m2", + text = "fortress03_05b.m2", + }, + }, + value = "fortress03_05b", + text = "fortress03_05b", + }, + { + children = { + { + fileId = "203131", + value = "fortress04_03.m2", + text = "fortress04_03.m2", + }, + }, + value = "fortress04_03", + text = "fortress04_03", + }, + { + children = { + { + fileId = "203132", + value = "fortress04_05.m2", + text = "fortress04_05.m2", + }, + }, + value = "fortress04_05", + text = "fortress04_05", + }, + { + children = { + { + fileId = "203133", + value = "fortress04_06.m2", + text = "fortress04_06.m2", + }, + }, + value = "fortress04_06", + text = "fortress04_06", + }, + { + children = { + { + fileId = "203134", + value = "fortress05_03.m2", + text = "fortress05_03.m2", + }, + }, + value = "fortress05_03", + text = "fortress05_03", + }, + { + children = { + { + fileId = "203135", + value = "fortress05_05.m2", + text = "fortress05_05.m2", + }, + }, + value = "fortress05_05", + text = "fortress05_05", + }, + { + children = { + { + fileId = "203136", + value = "runestonesnow_01.m2", + text = "runestonesnow_01.m2", + }, + }, + value = "runestonesnow_01", + text = "runestonesnow_01", + }, + }, + value = "buildings", + text = "buildings", + }, + { + children = { + { + children = { + { + fileId = "203138", + value = "auctioneercollision.m2", + text = "auctioneercollision.m2", + }, + }, + value = "auctionhouse", + text = "auctionhouse", + }, + { + children = { + { + fileId = "203139", + value = "dwarfbannerblue01.m2", + text = "dwarfbannerblue01.m2", + }, + { + fileId = "203140", + value = "dwarfbannergold01.m2", + text = "dwarfbannergold01.m2", + }, + { + fileId = "203141", + value = "dwarfbannerred01.m2", + text = "dwarfbannerred01.m2", + }, + { + fileId = "203142", + value = "dwarfbannersilver01.m2", + text = "dwarfbannersilver01.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "203148", + value = "ironforgeangledbush01.m2", + text = "ironforgeangledbush01.m2", + }, + { + fileId = "203149", + value = "ironforgebush01.m2", + text = "ironforgebush01.m2", + }, + { + fileId = "203151", + value = "ironforgesnowybush02.m2", + text = "ironforgesnowybush02.m2", + }, + }, + value = "bush", + text = "bush", + }, + { + children = { + { + fileId = "203152", + value = "ironforgeelevator.m2", + text = "ironforgeelevator.m2", + }, + { + fileId = "203153", + value = "ironforgeelevatordoor.m2", + text = "ironforgeelevatordoor.m2", + }, + { + fileId = "203154", + value = "ironforgehouseelevator.m2", + text = "ironforgehouseelevator.m2", + }, + }, + value = "elevators", + text = "elevators", + }, + { + children = { + { + fileId = "203158", + value = "dunmoroghstonefence01.m2", + text = "dunmoroghstonefence01.m2", + }, + { + fileId = "203159", + value = "dunmoroghstonefence02.m2", + text = "dunmoroghstonefence02.m2", + }, + { + fileId = "203160", + value = "dunmoroghstonefence03.m2", + text = "dunmoroghstonefence03.m2", + }, + { + fileId = "203161", + value = "dunmoroghstonefence04.m2", + text = "dunmoroghstonefence04.m2", + }, + }, + value = "fences", + text = "fences", + }, + { + children = { + { + fileId = "203162", + value = "garagemachine.m2", + text = "garagemachine.m2", + }, + }, + value = "garagemachine", + text = "garagemachine", + }, + { + children = { + { + fileId = "203164", + value = "gnomekinggear.m2", + text = "gnomekinggear.m2", + }, + { + fileId = "203165", + value = "gnomekinggearsmall.m2", + text = "gnomekinggearsmall.m2", + }, + { + fileId = "203167", + value = "gnomekingpistons.m2", + text = "gnomekingpistons.m2", + }, + { + fileId = "203168", + value = "gnomekingspiralgear.m2", + text = "gnomekingspiralgear.m2", + }, + { + fileId = "203169", + value = "gnomekingwormgear.m2", + text = "gnomekingwormgear.m2", + }, + { + children = { + { + fileId = "203171", + value = "gnomereganvent.m2", + text = "gnomereganvent.m2", + }, + }, + value = "vent", + text = "vent", + }, + }, + value = "gnomearea", + text = "gnomearea", + }, + { + children = { + { + fileId = "203176", + value = "thegreatanvil.m2", + text = "thegreatanvil.m2", + }, + }, + value = "greatforge", + text = "greatforge", + }, + { + children = { + { + fileId = "203177", + value = "hammerquest01.m2", + text = "hammerquest01.m2", + }, + }, + value = "hammerquest01", + text = "hammerquest01", + }, + { + children = { + { + fileId = "203178", + value = "hotcoals.m2", + text = "hotcoals.m2", + }, + }, + value = "hotcoals", + text = "hotcoals", + }, + { + children = { + { + fileId = "203179", + value = "forgelavaa.m2", + text = "forgelavaa.m2", + }, + { + fileId = "203180", + value = "forgelavab.m2", + text = "forgelavab.m2", + }, + { + fileId = "203181", + value = "ironforgebellow.m2", + text = "ironforgebellow.m2", + }, + { + fileId = "203184", + value = "ironforgepiston.m2", + text = "ironforgepiston.m2", + }, + { + fileId = "203185", + value = "ironforgewheel.m2", + text = "ironforgewheel.m2", + }, + { + fileId = "203187", + value = "lavapots.m2", + text = "lavapots.m2", + }, + { + fileId = "203188", + value = "lavasteam.m2", + text = "lavasteam.m2", + }, + }, + value = "lavasteam", + text = "lavasteam", + }, + { + children = { + { + fileId = "203190", + value = "margolreaverhorn.m2", + text = "margolreaverhorn.m2", + }, + }, + value = "margolreaverhorn", + text = "margolreaverhorn", + }, + { + children = { + { + fileId = "203194", + value = "dwarvenglobe01.m2", + text = "dwarvenglobe01.m2", + }, + { + fileId = "203195", + value = "giantramexhibit.m2", + text = "giantramexhibit.m2", + }, + { + fileId = "203196", + value = "gryphonclawexhibit.m2", + text = "gryphonclawexhibit.m2", + }, + }, + value = "museumexhibits", + text = "museumexhibits", + }, + { + children = { + { + fileId = "203198", + value = "dwarfmuseumplaque01.m2", + text = "dwarfmuseumplaque01.m2", + }, + }, + value = "plaques", + text = "plaques", + }, + { + children = { + { + fileId = "203200", + value = "ironforgecliff01.m2", + text = "ironforgecliff01.m2", + }, + { + fileId = "203201", + value = "ironforgecliff02.m2", + text = "ironforgecliff02.m2", + }, + { + fileId = "203202", + value = "ironforgecliff03.m2", + text = "ironforgecliff03.m2", + }, + { + fileId = "203203", + value = "ironforgecliff04.m2", + text = "ironforgecliff04.m2", + }, + { + fileId = "203208", + value = "snowytowerrock01.m2", + text = "snowytowerrock01.m2", + }, + { + fileId = "203209", + value = "snowytowerrock02.m2", + text = "snowytowerrock02.m2", + }, + { + fileId = "203210", + value = "snowytowerrock03.m2", + text = "snowytowerrock03.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "203213", + value = "ironforgesignpost.m2", + text = "ironforgesignpost.m2", + }, + { + fileId = "203214", + value = "ironforgesignpostpointer.m2", + text = "ironforgesignpostpointer.m2", + }, + }, + value = "signposts", + text = "signposts", + }, + { + children = { + { + fileId = "203217", + value = "slimejar01.m2", + text = "slimejar01.m2", + }, + { + fileId = "203218", + value = "slimejar02.m2", + text = "slimejar02.m2", + }, + { + fileId = "203219", + value = "slimejar03.m2", + text = "slimejar03.m2", + }, + }, + value = "slimejars", + text = "slimejars", + }, + { + children = { + { + fileId = "203221", + value = "ironforgestatue_01.m2", + text = "ironforgestatue_01.m2", + }, + }, + value = "statues", + text = "statues", + }, + { + children = { + { + fileId = "203226", + value = "ironforgesteamtank.m2", + text = "ironforgesteamtank.m2", + }, + { + fileId = "203229", + value = "ironforgesteamtankdrag.m2", + text = "ironforgesteamtankdrag.m2", + }, + { + fileId = "203230", + value = "ironforgesteamtankruined01.m2", + text = "ironforgesteamtankruined01.m2", + }, + { + fileId = "203231", + value = "ironforgesteamtankwolf.m2", + text = "ironforgesteamtankwolf.m2", + }, + { + fileId = "203232", + value = "ruinedsteamtankaxle01.m2", + text = "ruinedsteamtankaxle01.m2", + }, + { + fileId = "203233", + value = "ruinedsteamtankgastank01.m2", + text = "ruinedsteamtankgastank01.m2", + }, + { + fileId = "203234", + value = "ruinedsteamtankgear01.m2", + text = "ruinedsteamtankgear01.m2", + }, + { + fileId = "203235", + value = "ruinedsteamtankwheel01.m2", + text = "ruinedsteamtankwheel01.m2", + }, + }, + value = "steamtank", + text = "steamtank", + }, + { + children = { + { + fileId = "203241", + value = "dwarventhrone01.m2", + text = "dwarventhrone01.m2", + }, + }, + value = "throne", + text = "throne", + }, + { + children = { + { + fileId = "203245", + value = "ironforgecrystalroof.m2", + text = "ironforgecrystalroof.m2", + }, + }, + value = "throneroom", + text = "throneroom", + }, + { + children = { + { + fileId = "203255", + value = "ironforgepine01.m2", + text = "ironforgepine01.m2", + }, + { + fileId = "203256", + value = "ironforgepine02.m2", + text = "ironforgepine02.m2", + }, + { + fileId = "203257", + value = "ironforgesnowtree01.m2", + text = "ironforgesnowtree01.m2", + }, + { + fileId = "203259", + value = "ironforgetree01.m2", + text = "ironforgetree01.m2", + }, + { + fileId = "203260", + value = "ironforgetree02.m2", + text = "ironforgetree02.m2", + }, + { + fileId = "203261", + value = "ironforgetree03.m2", + text = "ironforgetree03.m2", + }, + { + fileId = "203262", + value = "ironforgetree04.m2", + text = "ironforgetree04.m2", + }, + { + fileId = "203265", + value = "ironstump01.m2", + text = "ironstump01.m2", + }, + { + fileId = "203266", + value = "ironstump02.m2", + text = "ironstump02.m2", + }, + { + fileId = "203268", + value = "ironstump03.m2", + text = "ironstump03.m2", + }, + { + fileId = "203269", + value = "ironstump04.m2", + text = "ironstump04.m2", + }, + { + fileId = "203270", + value = "ironstump05.m2", + text = "ironstump05.m2", + }, + { + fileId = "203276", + value = "wintermidtree01.m2", + text = "wintermidtree01.m2", + }, + { + fileId = "203277", + value = "wintermidtree02.m2", + text = "wintermidtree02.m2", + }, + { + fileId = "203278", + value = "wintermidtree03.m2", + text = "wintermidtree03.m2", + }, + { + fileId = "203279", + value = "wintersmalltree01.m2", + text = "wintersmalltree01.m2", + }, + { + fileId = "203280", + value = "wintersmalltree02.m2", + text = "wintersmalltree02.m2", + }, + { + fileId = "203285", + value = "wintertree01.m2", + text = "wintertree01.m2", + }, + { + fileId = "203286", + value = "wintertree02.m2", + text = "wintertree02.m2", + }, + { + fileId = "203287", + value = "wintertree03.m2", + text = "wintertree03.m2", + }, + { + fileId = "203288", + value = "wintertree04.m2", + text = "wintertree04.m2", + }, + { + fileId = "203290", + value = "wintertree05.m2", + text = "wintertree05.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "ironforge", + text = "ironforge", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203296", + value = "lochmodanshrub01.m2", + text = "lochmodanshrub01.m2", + }, + { + fileId = "203297", + value = "lochmodanshrub02.m2", + text = "lochmodanshrub02.m2", + }, + { + fileId = "203299", + value = "lochmodanshrub03.m2", + text = "lochmodanshrub03.m2", + }, + { + fileId = "203300", + value = "lochmodanshrub04.m2", + text = "lochmodanshrub04.m2", + }, + { + fileId = "203301", + value = "lochmodanshrub06.m2", + text = "lochmodanshrub06.m2", + }, + { + fileId = "203302", + value = "lochmodanshurb05.m2", + text = "lochmodanshurb05.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "203305", + value = "testdam01.m2", + text = "testdam01.m2", + }, + }, + value = "dam", + text = "dam", + }, + { + children = { + { + fileId = "203307", + value = "lochmodanstonefence01.m2", + text = "lochmodanstonefence01.m2", + }, + { + fileId = "203308", + value = "lochmodanstonefence02.m2", + text = "lochmodanstonefence02.m2", + }, + { + fileId = "203309", + value = "lochmodanstonefence03.m2", + text = "lochmodanstonefence03.m2", + }, + { + fileId = "203310", + value = "lochmodanstonefence04.m2", + text = "lochmodanstonefence04.m2", + }, + { + fileId = "203311", + value = "lochmodanwoodfence01.m2", + text = "lochmodanwoodfence01.m2", + }, + { + fileId = "203312", + value = "lochmodanwoodfence02.m2", + text = "lochmodanwoodfence02.m2", + }, + { + fileId = "203313", + value = "lochmodanwoodfence03.m2", + text = "lochmodanwoodfence03.m2", + }, + { + fileId = "203314", + value = "lochmodanwoodfence04.m2", + text = "lochmodanwoodfence04.m2", + }, + }, + value = "fences", + text = "fences", + }, + { + children = { + { + fileId = "203316", + value = "lochtallgrass01.m2", + text = "lochtallgrass01.m2", + }, + { + fileId = "203317", + value = "lochtallgrass02.m2", + text = "lochtallgrass02.m2", + }, + { + fileId = "203318", + value = "lochtallgrass03.m2", + text = "lochtallgrass03.m2", + }, + { + fileId = "203319", + value = "lochtallgrass04.m2", + text = "lochtallgrass04.m2", + }, + }, + value = "grass", + text = "grass", + }, + { + children = { + { + fileId = "203320", + value = "lochlog01.m2", + text = "lochlog01.m2", + }, + }, + value = "logs", + text = "logs", + }, + { + children = { + { + fileId = "203323", + value = "titanruinsarch01.m2", + text = "titanruinsarch01.m2", + }, + { + fileId = "203324", + value = "titanruinsarch02.m2", + text = "titanruinsarch02.m2", + }, + { + fileId = "203325", + value = "titanruinsblock01.m2", + text = "titanruinsblock01.m2", + }, + { + fileId = "203326", + value = "titanruinsblock02.m2", + text = "titanruinsblock02.m2", + }, + { + fileId = "203327", + value = "titanruinshead01.m2", + text = "titanruinshead01.m2", + }, + { + fileId = "203328", + value = "titanruinspillar01.m2", + text = "titanruinspillar01.m2", + }, + { + fileId = "203329", + value = "titanruinspillar02.m2", + text = "titanruinspillar02.m2", + }, + { + fileId = "203330", + value = "titanruinspillar03.m2", + text = "titanruinspillar03.m2", + }, + { + fileId = "203331", + value = "titanruinspillar04.m2", + text = "titanruinspillar04.m2", + }, + { + fileId = "203332", + value = "titanruinspillar05.m2", + text = "titanruinspillar05.m2", + }, + { + fileId = "203333", + value = "titanruinswall01.m2", + text = "titanruinswall01.m2", + }, + { + fileId = "203334", + value = "titanruinswall02.m2", + text = "titanruinswall02.m2", + }, + { + fileId = "203335", + value = "titanruinswall03.m2", + text = "titanruinswall03.m2", + }, + { + fileId = "203336", + value = "titanruinswall04.m2", + text = "titanruinswall04.m2", + }, + { + fileId = "203337", + value = "titanruinswall05.m2", + text = "titanruinswall05.m2", + }, + }, + value = "titanruins", + text = "titanruins", + }, + { + children = { + { + fileId = "203343", + value = "lochmodanfallentree01.m2", + text = "lochmodanfallentree01.m2", + }, + { + fileId = "203347", + value = "lochmodantree01.m2", + text = "lochmodantree01.m2", + }, + { + fileId = "203348", + value = "lochmodantree02.m2", + text = "lochmodantree02.m2", + }, + { + fileId = "203349", + value = "lochmodantree03.m2", + text = "lochmodantree03.m2", + }, + { + fileId = "203350", + value = "lochmodantree04.m2", + text = "lochmodantree04.m2", + }, + { + fileId = "203351", + value = "lochmodantree05.m2", + text = "lochmodantree05.m2", + }, + { + fileId = "203352", + value = "lochmodantree06.m2", + text = "lochmodantree06.m2", + }, + { + fileId = "203353", + value = "lochmodantree07.m2", + text = "lochmodantree07.m2", + }, + { + fileId = "203354", + value = "lochmodantree08.m2", + text = "lochmodantree08.m2", + }, + { + fileId = "203355", + value = "lochmodantree09.m2", + text = "lochmodantree09.m2", + }, + { + fileId = "203356", + value = "lochmodantreelog01.m2", + text = "lochmodantreelog01.m2", + }, + { + fileId = "203357", + value = "lochmodantreestump01.m2", + text = "lochmodantreestump01.m2", + }, + { + fileId = "203359", + value = "lochmodantreestump02.m2", + text = "lochmodantreestump02.m2", + }, + { + fileId = "203362", + value = "lochtallgrass05.m2", + text = "lochtallgrass05.m2", + }, + { + fileId = "203363", + value = "lochtallgrass06.m2", + text = "lochtallgrass06.m2", + }, + { + fileId = "203364", + value = "lochtallgrass07.m2", + text = "lochtallgrass07.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "lochmodan", + text = "lochmodan", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203368", + value = "stonekeeperaltar.m2", + text = "stonekeeperaltar.m2", + }, + }, + value = "altar", + text = "altar", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "203370", + value = "banner01.m2", + text = "banner01.m2", + }, + { + fileId = "203372", + value = "banner02.m2", + text = "banner02.m2", + }, + { + fileId = "203373", + value = "bannerruined01.m2", + text = "bannerruined01.m2", + }, + { + fileId = "203374", + value = "bannerruined02.m2", + text = "bannerruined02.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "203376", + value = "uldamanbench01.m2", + text = "uldamanbench01.m2", + }, + { + fileId = "203377", + value = "uldamanbench02.m2", + text = "uldamanbench02.m2", + }, + { + fileId = "203378", + value = "uldamanbenchbroken01.m2", + text = "uldamanbenchbroken01.m2", + }, + { + fileId = "203380", + value = "uldamanbenchruined01.m2", + text = "uldamanbenchruined01.m2", + }, + { + fileId = "203381", + value = "uldamanbenchruined02.m2", + text = "uldamanbenchruined02.m2", + }, + }, + value = "benches", + text = "benches", + }, + { + children = { + { + fileId = "203385", + value = "uldamanbook01.m2", + text = "uldamanbook01.m2", + }, + { + fileId = "203386", + value = "uldamanbook02.m2", + text = "uldamanbook02.m2", + }, + { + fileId = "203387", + value = "uldamanbook03.m2", + text = "uldamanbook03.m2", + }, + { + fileId = "203388", + value = "uldamanbookbroken01.m2", + text = "uldamanbookbroken01.m2", + }, + { + fileId = "203389", + value = "uldamanbookbroken02.m2", + text = "uldamanbookbroken02.m2", + }, + }, + value = "books", + text = "books", + }, + { + children = { + { + fileId = "203392", + value = "uldamanbookshelf.m2", + text = "uldamanbookshelf.m2", + }, + { + fileId = "203393", + value = "uldamanbookshelf01.m2", + text = "uldamanbookshelf01.m2", + }, + { + fileId = "203394", + value = "uldamanbookshelfbroken.m2", + text = "uldamanbookshelfbroken.m2", + }, + { + fileId = "203395", + value = "uldamanbookshelfbroken01.m2", + text = "uldamanbookshelfbroken01.m2", + }, + }, + value = "bookshelves", + text = "bookshelves", + }, + { + children = { + { + fileId = "203397", + value = "uldamanbrazier01.m2", + text = "uldamanbrazier01.m2", + }, + { + fileId = "203398", + value = "uldamanbrazierbroken01.m2", + text = "uldamanbrazierbroken01.m2", + }, + }, + value = "braziers", + text = "braziers", + }, + { + children = { + { + fileId = "203400", + value = "uldamanscrolldebris01.m2", + text = "uldamanscrolldebris01.m2", + }, + { + fileId = "203401", + value = "uldamanscrolldebris02.m2", + text = "uldamanscrolldebris02.m2", + }, + { + fileId = "203402", + value = "uldamanscrolldebris03.m2", + text = "uldamanscrolldebris03.m2", + }, + }, + value = "debris", + text = "debris", + }, + { + children = { + { + fileId = "203403", + value = "uldamanlamp.m2", + text = "uldamanlamp.m2", + }, + { + fileId = "203404", + value = "uldamanlampandpost.m2", + text = "uldamanlampandpost.m2", + }, + { + fileId = "203405", + value = "uldamanlampandpostbusted01.m2", + text = "uldamanlampandpostbusted01.m2", + }, + { + fileId = "203406", + value = "uldamanlampandpostbusted02.m2", + text = "uldamanlampandpostbusted02.m2", + }, + { + fileId = "203407", + value = "uldamanlampandpostbusted03.m2", + text = "uldamanlampandpostbusted03.m2", + }, + { + fileId = "203408", + value = "uldamanlampandpostbusted04.m2", + text = "uldamanlampandpostbusted04.m2", + }, + { + fileId = "203409", + value = "uldamanlampbroken.m2", + text = "uldamanlampbroken.m2", + }, + { + fileId = "203410", + value = "uldamanlampfallen.m2", + text = "uldamanlampfallen.m2", + }, + { + fileId = "203413", + value = "uldamanlantern.m2", + text = "uldamanlantern.m2", + }, + }, + value = "lamps", + text = "lamps", + }, + { + children = { + { + fileId = "203415", + value = "painting01.m2", + text = "painting01.m2", + }, + { + fileId = "203417", + value = "painting02.m2", + text = "painting02.m2", + }, + { + fileId = "203418", + value = "paintingruined01.m2", + text = "paintingruined01.m2", + }, + { + fileId = "203419", + value = "paintingruined02.m2", + text = "paintingruined02.m2", + }, + }, + value = "paintings", + text = "paintings", + }, + { + children = { + { + fileId = "203420", + value = "platinumdisk.m2", + text = "platinumdisk.m2", + }, + }, + value = "platinumdisk", + text = "platinumdisk", + }, + { + children = { + { + fileId = "203422", + value = "uldamanpot01.m2", + text = "uldamanpot01.m2", + }, + { + fileId = "203423", + value = "uldamanpot02.m2", + text = "uldamanpot02.m2", + }, + { + fileId = "203424", + value = "uldamanpot03.m2", + text = "uldamanpot03.m2", + }, + { + fileId = "203425", + value = "uldamanpotbroken01.m2", + text = "uldamanpotbroken01.m2", + }, + { + fileId = "203426", + value = "uldamanpotbroken02.m2", + text = "uldamanpotbroken02.m2", + }, + { + fileId = "203427", + value = "uldamanpotbroken03.m2", + text = "uldamanpotbroken03.m2", + }, + }, + value = "pots", + text = "pots", + }, + { + children = { + { + fileId = "203429", + value = "uldamanscroll01.m2", + text = "uldamanscroll01.m2", + }, + { + fileId = "203430", + value = "uldamanscroll02.m2", + text = "uldamanscroll02.m2", + }, + { + fileId = "203431", + value = "uldamanscroll03.m2", + text = "uldamanscroll03.m2", + }, + { + fileId = "203432", + value = "uldamanscrollclasp.m2", + text = "uldamanscrollclasp.m2", + }, + }, + value = "scrolls", + text = "scrolls", + }, + { + children = { + { + fileId = "203434", + value = "uldamanstreetsign.m2", + text = "uldamanstreetsign.m2", + }, + { + fileId = "203435", + value = "uldamanstreetsignbusted.m2", + text = "uldamanstreetsignbusted.m2", + }, + }, + value = "signs", + text = "signs", + }, + { + children = { + { + fileId = "203439", + value = "uldamandwarfstatue.m2", + text = "uldamandwarfstatue.m2", + }, + { + fileId = "203440", + value = "uldamanmountaingiantstatue.m2", + text = "uldamanmountaingiantstatue.m2", + }, + { + fileId = "203441", + value = "uldamanseagiantstatue.m2", + text = "uldamanseagiantstatue.m2", + }, + { + fileId = "203442", + value = "uldamanstonegiantstatue.m2", + text = "uldamanstonegiantstatue.m2", + }, + { + fileId = "203443", + value = "uldamantaurenstatue.m2", + text = "uldamantaurenstatue.m2", + }, + { + fileId = "203445", + value = "uldamantroglodytestatue.m2", + text = "uldamantroglodytestatue.m2", + }, + { + fileId = "203446", + value = "uldamantrollstatue.m2", + text = "uldamantrollstatue.m2", + }, + }, + value = "statues", + text = "statues", + }, + { + children = { + { + fileId = "203449", + value = "stonekeeperdead01.m2", + text = "stonekeeperdead01.m2", + }, + }, + value = "stonekeeper", + text = "stonekeeper", + }, + { + children = { + { + fileId = "203452", + value = "uldamantable01.m2", + text = "uldamantable01.m2", + }, + { + fileId = "203453", + value = "uldamantablebroken01.m2", + text = "uldamantablebroken01.m2", + }, + { + fileId = "203454", + value = "uldamantablenew.m2", + text = "uldamantablenew.m2", + }, + { + fileId = "203455", + value = "uldamantableruined.m2", + text = "uldamantableruined.m2", + }, + }, + value = "tables", + text = "tables", + }, + { + children = { + { + fileId = "203457", + value = "tapestry01.m2", + text = "tapestry01.m2", + }, + { + fileId = "203460", + value = "tapestry02.m2", + text = "tapestry02.m2", + }, + { + fileId = "203462", + value = "tapestryruined01.m2", + text = "tapestryruined01.m2", + }, + { + fileId = "203463", + value = "tapestryruined02.m2", + text = "tapestryruined02.m2", + }, + }, + value = "tapestries", + text = "tapestries", + }, + { + children = { + { + fileId = "203467", + value = "libertystatue.m2", + text = "libertystatue.m2", + }, + { + fileId = "203468", + value = "titanentrancestatue.m2", + text = "titanentrancestatue.m2", + }, + { + fileId = "203469", + value = "titanfemalestatue.m2", + text = "titanfemalestatue.m2", + }, + }, + value = "titanstatues", + text = "titanstatues", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "uldaman", + text = "uldaman", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203471", + value = "blackrockclanbanner01.m2", + text = "blackrockclanbanner01.m2", + }, + }, + value = "blackrockbanners", + text = "blackrockbanners", + }, + { + children = { + { + fileId = "203479", + value = "wetlandgrass01.m2", + text = "wetlandgrass01.m2", + }, + { + fileId = "203480", + value = "wetlandgrass02.m2", + text = "wetlandgrass02.m2", + }, + { + fileId = "203481", + value = "wetlandgrass03.m2", + text = "wetlandgrass03.m2", + }, + { + fileId = "203482", + value = "wetlandgrass04.m2", + text = "wetlandgrass04.m2", + }, + { + fileId = "203483", + value = "wetlandgrass05.m2", + text = "wetlandgrass05.m2", + }, + { + fileId = "203484", + value = "wetlandshrub01.m2", + text = "wetlandshrub01.m2", + }, + { + fileId = "203485", + value = "wetlandshrub02.m2", + text = "wetlandshrub02.m2", + }, + { + fileId = "203486", + value = "wetlandshrub03.m2", + text = "wetlandshrub03.m2", + }, + { + fileId = "203487", + value = "wetlandshrub04.m2", + text = "wetlandshrub04.m2", + }, + { + fileId = "203488", + value = "wetlandshrub05.m2", + text = "wetlandshrub05.m2", + }, + { + fileId = "203489", + value = "wetlandshrub06.m2", + text = "wetlandshrub06.m2", + }, + { + fileId = "203490", + value = "wetlandshrub07.m2", + text = "wetlandshrub07.m2", + }, + { + fileId = "203491", + value = "wetlandshrub08.m2", + text = "wetlandshrub08.m2", + }, + { + fileId = "203492", + value = "wetlandshrub09.m2", + text = "wetlandshrub09.m2", + }, + { + fileId = "203493", + value = "wetlandsshrub04.m2", + text = "wetlandsshrub04.m2", + }, + { + fileId = "203494", + value = "wetlandsshrub05.m2", + text = "wetlandsshrub05.m2", + }, + { + fileId = "203495", + value = "wetlandsshrub06.m2", + text = "wetlandsshrub06.m2", + }, + { + fileId = "203496", + value = "wetlandsshrub07.m2", + text = "wetlandsshrub07.m2", + }, + { + fileId = "203498", + value = "wetlandsshurb08.m2", + text = "wetlandsshurb08.m2", + }, + { + fileId = "203499", + value = "wetlandsshurb09.m2", + text = "wetlandsshurb09.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "203501", + value = "dragonbonesbody.m2", + text = "dragonbonesbody.m2", + }, + { + fileId = "203502", + value = "dragonbonesbody_nocollision.m2", + text = "dragonbonesbody_nocollision.m2", + }, + { + fileId = "203503", + value = "dragonbonesleftwing.m2", + text = "dragonbonesleftwing.m2", + }, + { + fileId = "203504", + value = "dragonbonesleftwing_nocollision.m2", + text = "dragonbonesleftwing_nocollision.m2", + }, + { + fileId = "203505", + value = "dragonbonesrightwing.m2", + text = "dragonbonesrightwing.m2", + }, + { + fileId = "203506", + value = "dragonbonesrightwing_nocollision.m2", + text = "dragonbonesrightwing_nocollision.m2", + }, + { + fileId = "203507", + value = "dragonbonesskull.m2", + text = "dragonbonesskull.m2", + }, + { + fileId = "203508", + value = "dragonbonesskull_nocollision.m2", + text = "dragonbonesskull_nocollision.m2", + }, + }, + value = "dragonbones", + text = "dragonbones", + }, + { + children = { + { + fileId = "203510", + value = "dragonegg01.m2", + text = "dragonegg01.m2", + }, + { + fileId = "203512", + value = "dragonegg02.m2", + text = "dragonegg02.m2", + }, + }, + value = "dragoneggs", + text = "dragoneggs", + }, + { + children = { + { + fileId = "203513", + value = "dragonmawbanner.m2", + text = "dragonmawbanner.m2", + }, + { + fileId = "203515", + value = "dragonmawgate.m2", + text = "dragonmawgate.m2", + }, + { + fileId = "203518", + value = "dragonmawwall.m2", + text = "dragonmawwall.m2", + }, + }, + value = "dragonmawgates", + text = "dragonmawgates", + }, + { + children = { + { + fileId = "203521", + value = "dwarvebone01.m2", + text = "dwarvebone01.m2", + }, + { + fileId = "203522", + value = "dwarvebone02.m2", + text = "dwarvebone02.m2", + }, + }, + value = "dwarfbones", + text = "dwarfbones", + }, + { + children = { + { + fileId = "203523", + value = "raptorbone01.m2", + text = "raptorbone01.m2", + }, + }, + value = "raptorbones", + text = "raptorbones", + }, + { + children = { + { + fileId = "203524", + value = "dragontotem01.m2", + text = "dragontotem01.m2", + }, + { + fileId = "203525", + value = "dragontotem02.m2", + text = "dragontotem02.m2", + }, + }, + value = "totem", + text = "totem", + }, + { + children = { + { + fileId = "203531", + value = "wetlandsnest01.m2", + text = "wetlandsnest01.m2", + }, + { + fileId = "203532", + value = "wetlandsnest02.m2", + text = "wetlandsnest02.m2", + }, + { + fileId = "203533", + value = "wetlandstree04.m2", + text = "wetlandstree04.m2", + }, + { + fileId = "203539", + value = "wetlandstreestump01.m2", + text = "wetlandstreestump01.m2", + }, + { + fileId = "203540", + value = "wetlandstreestump02.m2", + text = "wetlandstreestump02.m2", + }, + { + fileId = "203541", + value = "wetlandstreestump03.m2", + text = "wetlandstreestump03.m2", + }, + { + fileId = "203543", + value = "wetlandtree01.m2", + text = "wetlandtree01.m2", + }, + { + fileId = "203544", + value = "wetlandtree02.m2", + text = "wetlandtree02.m2", + }, + { + fileId = "203545", + value = "wetlandtree03.m2", + text = "wetlandtree03.m2", + }, + { + fileId = "203546", + value = "wetlandtree04.m2", + text = "wetlandtree04.m2", + }, + { + fileId = "203547", + value = "wetlandtree05.m2", + text = "wetlandtree05.m2", + }, + { + fileId = "203548", + value = "wetlandtree06.m2", + text = "wetlandtree06.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "203553", + value = "wetlandswagon01.m2", + text = "wetlandswagon01.m2", + }, + { + fileId = "203554", + value = "wetlandswagon02.m2", + text = "wetlandswagon02.m2", + }, + { + fileId = "203555", + value = "wetlandswagon03.m2", + text = "wetlandswagon03.m2", + }, + { + fileId = "203557", + value = "wetlandswagonnest.m2", + text = "wetlandswagonnest.m2", + }, + }, + value = "wetlandswagons", + text = "wetlandswagons", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "wetlands", + text = "wetlands", + }, + }, + value = "khazmodan", + text = "khazmodan", + }, + { + children = { + { + children = { + { + children = { + { + children = { + { + fileId = "203558", + value = "aerieboulder01.m2", + text = "aerieboulder01.m2", + }, + { + fileId = "203559", + value = "aerieboulder02.m2", + text = "aerieboulder02.m2", + }, + { + fileId = "203560", + value = "aerieboulder03.m2", + text = "aerieboulder03.m2", + }, + { + fileId = "203561", + value = "aerieboulder04.m2", + text = "aerieboulder04.m2", + }, + }, + value = "boulders", + text = "boulders", + }, + { + children = { + { + fileId = "203565", + value = "aeriepeaksbush01.m2", + text = "aeriepeaksbush01.m2", + }, + { + fileId = "203566", + value = "aeriepeaksbush02.m2", + text = "aeriepeaksbush02.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "203569", + value = "aeriepeaksrockoutcrop01.m2", + text = "aeriepeaksrockoutcrop01.m2", + }, + }, + value = "cliff", + text = "cliff", + }, + { + children = { + { + fileId = "203573", + value = "griffonmemorialfetish01.m2", + text = "griffonmemorialfetish01.m2", + }, + { + fileId = "203574", + value = "griffonmemorialfetish02.m2", + text = "griffonmemorialfetish02.m2", + }, + { + fileId = "203575", + value = "griffonmemorialfetish03.m2", + text = "griffonmemorialfetish03.m2", + }, + { + fileId = "203576", + value = "griffonmemorialfetish04.m2", + text = "griffonmemorialfetish04.m2", + }, + { + fileId = "203577", + value = "griffonmemorialtree01.m2", + text = "griffonmemorialtree01.m2", + }, + { + fileId = "203578", + value = "griffonmemorialtree02.m2", + text = "griffonmemorialtree02.m2", + }, + { + fileId = "203579", + value = "griffonmemorialtree03.m2", + text = "griffonmemorialtree03.m2", + }, + }, + value = "griffondoodads", + text = "griffondoodads", + }, + { + children = { + { + fileId = "203580", + value = "aeriepeaksfir01.m2", + text = "aeriepeaksfir01.m2", + }, + { + fileId = "203583", + value = "aeriepeaksfir02.m2", + text = "aeriepeaksfir02.m2", + }, + { + fileId = "203584", + value = "aeriepeaksstump01.m2", + text = "aeriepeaksstump01.m2", + }, + { + fileId = "203587", + value = "aerietree01.m2", + text = "aerietree01.m2", + }, + { + fileId = "203588", + value = "aerietree02.m2", + text = "aerietree02.m2", + }, + { + fileId = "203589", + value = "aerietree03.m2", + text = "aerietree03.m2", + }, + { + fileId = "203590", + value = "aerietree04.m2", + text = "aerietree04.m2", + }, + { + fileId = "203591", + value = "aerietree05.m2", + text = "aerietree05.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "aeriepeaks", + text = "aeriepeaks", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203595", + value = "alteracshrub01.m2", + text = "alteracshrub01.m2", + }, + { + fileId = "203596", + value = "alteracshrub02.m2", + text = "alteracshrub02.m2", + }, + { + fileId = "203597", + value = "alteracshrub03.m2", + text = "alteracshrub03.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "203598", + value = "dalarandome.m2", + text = "dalarandome.m2", + }, + }, + value = "dalaran", + text = "dalaran", + }, + { + children = { + { + fileId = "203602", + value = "alteracfruitbucket01.m2", + text = "alteracfruitbucket01.m2", + }, + { + fileId = "203603", + value = "alteracfruitbucket02.m2", + text = "alteracfruitbucket02.m2", + }, + { + fileId = "203604", + value = "alteracfruitbucket03.m2", + text = "alteracfruitbucket03.m2", + }, + { + fileId = "203605", + value = "alteracfruitbucket04.m2", + text = "alteracfruitbucket04.m2", + }, + }, + value = "fruitbuckets", + text = "fruitbuckets", + }, + { + children = { + { + fileId = "203607", + value = "alteracladder01.m2", + text = "alteracladder01.m2", + }, + }, + value = "ladders", + text = "ladders", + }, + { + children = { + { + fileId = "203608", + value = "alteracopengrave01.m2", + text = "alteracopengrave01.m2", + }, + }, + value = "opengraves", + text = "opengraves", + }, + { + children = { + { + fileId = "203611", + value = "alteracboulder01.m2", + text = "alteracboulder01.m2", + }, + { + fileId = "203612", + value = "alteracboulder02.m2", + text = "alteracboulder02.m2", + }, + { + fileId = "203613", + value = "alteracboulder03.m2", + text = "alteracboulder03.m2", + }, + { + fileId = "203614", + value = "alteracboulder04.m2", + text = "alteracboulder04.m2", + }, + { + fileId = "203615", + value = "alteracboulder05.m2", + text = "alteracboulder05.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "203617", + value = "alteractree01.m2", + text = "alteractree01.m2", + }, + { + fileId = "203618", + value = "alteractree02.m2", + text = "alteractree02.m2", + }, + { + fileId = "203619", + value = "alteractree03.m2", + text = "alteractree03.m2", + }, + { + fileId = "203620", + value = "alteractree04.m2", + text = "alteractree04.m2", + }, + { + fileId = "203621", + value = "alteractree06.m2", + text = "alteractree06.m2", + }, + { + fileId = "203622", + value = "alteractree07.m2", + text = "alteractree07.m2", + }, + { + fileId = "203623", + value = "alteractree08.m2", + text = "alteractree08.m2", + }, + { + fileId = "203624", + value = "alteractree09.m2", + text = "alteractree09.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "203634", + value = "alteracwatertower.m2", + text = "alteracwatertower.m2", + }, + }, + value = "watertower", + text = "watertower", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "alteracmountains", + text = "alteracmountains", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203636", + value = "bramblestaff.m2", + text = "bramblestaff.m2", + }, + }, + value = "bramblestaff", + text = "bramblestaff", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "203639", + value = "arathiboardwalk01.m2", + text = "arathiboardwalk01.m2", + }, + { + fileId = "203640", + value = "arathiboardwalk02.m2", + text = "arathiboardwalk02.m2", + }, + { + fileId = "203641", + value = "arathiboardwalk03.m2", + text = "arathiboardwalk03.m2", + }, + { + fileId = "203642", + value = "arathiboardwalk04.m2", + text = "arathiboardwalk04.m2", + }, + }, + value = "boardwalk", + text = "boardwalk", + }, + { + children = { + { + fileId = "203643", + value = "arathiplant01.m2", + text = "arathiplant01.m2", + }, + { + fileId = "203645", + value = "arathiplant02.m2", + text = "arathiplant02.m2", + }, + { + fileId = "203646", + value = "arathiplant03.m2", + text = "arathiplant03.m2", + }, + { + fileId = "203647", + value = "arathiplant04.m2", + text = "arathiplant04.m2", + }, + { + fileId = "203650", + value = "arathiplant05.m2", + text = "arathiplant05.m2", + }, + { + fileId = "203652", + value = "arathiplant06.m2", + text = "arathiplant06.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "203656", + value = "arathifarmhouse01.m2", + text = "arathifarmhouse01.m2", + }, + { + fileId = "203657", + value = "arathifarmhouse02.m2", + text = "arathifarmhouse02.m2", + }, + }, + value = "farmhouses", + text = "farmhouses", + }, + { + children = { + { + fileId = "203660", + value = "impalingstone_corpse_01.m2", + text = "impalingstone_corpse_01.m2", + }, + { + fileId = "203661", + value = "impalingstone_corpse_02.m2", + text = "impalingstone_corpse_02.m2", + }, + }, + value = "impalingstonecorpses", + text = "impalingstonecorpses", + }, + { + children = { + { + fileId = "203663", + value = "impalingstone02.m2", + text = "impalingstone02.m2", + }, + }, + value = "impalingstones", + text = "impalingstones", + }, + { + children = { + { + fileId = "203666", + value = "arathiflatrock01.m2", + text = "arathiflatrock01.m2", + }, + { + fileId = "203668", + value = "arathirock01.m2", + text = "arathirock01.m2", + }, + { + fileId = "203669", + value = "arathirock02.m2", + text = "arathirock02.m2", + }, + { + fileId = "203671", + value = "arathirock03.m2", + text = "arathirock03.m2", + }, + { + fileId = "203672", + value = "arathirock04.m2", + text = "arathirock04.m2", + }, + { + fileId = "203673", + value = "arathirock05.m2", + text = "arathirock05.m2", + }, + { + fileId = "203674", + value = "arathirock06.m2", + text = "arathirock06.m2", + }, + { + fileId = "203675", + value = "arathirock07.m2", + text = "arathirock07.m2", + }, + { + fileId = "203676", + value = "arathirock08.m2", + text = "arathirock08.m2", + }, + { + fileId = "203677", + value = "arathirock09.m2", + text = "arathirock09.m2", + }, + { + fileId = "203678", + value = "arathirock10.m2", + text = "arathirock10.m2", + }, + { + fileId = "203679", + value = "arathirock11.m2", + text = "arathirock11.m2", + }, + { + fileId = "203680", + value = "arathirock12.m2", + text = "arathirock12.m2", + }, + { + fileId = "203681", + value = "arathirock13.m2", + text = "arathirock13.m2", + }, + { + fileId = "203682", + value = "arathirock14.m2", + text = "arathirock14.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "203684", + value = "arathistump01.m2", + text = "arathistump01.m2", + }, + { + fileId = "203686", + value = "arathistump02.m2", + text = "arathistump02.m2", + }, + { + fileId = "203687", + value = "arathistump03.m2", + text = "arathistump03.m2", + }, + { + fileId = "203688", + value = "arathitree01.m2", + text = "arathitree01.m2", + }, + { + fileId = "203689", + value = "arathitree02.m2", + text = "arathitree02.m2", + }, + { + fileId = "203690", + value = "arathitree03.m2", + text = "arathitree03.m2", + }, + { + fileId = "203691", + value = "arathitree04.m2", + text = "arathitree04.m2", + }, + { + fileId = "203692", + value = "arathitree05.m2", + text = "arathitree05.m2", + }, + { + fileId = "203693", + value = "arathitree_dead_001.m2", + text = "arathitree_dead_001.m2", + }, + { + fileId = "203694", + value = "arathitree_dead_002.m2", + text = "arathitree_dead_002.m2", + }, + { + fileId = "203695", + value = "arathitree_dead_003.m2", + text = "arathitree_dead_003.m2", + }, + { + fileId = "203696", + value = "arathitree_dead_004.m2", + text = "arathitree_dead_004.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "arathi", + text = "arathi", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203711", + value = "infesteddollyhead.m2", + text = "infesteddollyhead.m2", + }, + { + fileId = "203712", + value = "infesteddollyleftside.m2", + text = "infesteddollyleftside.m2", + }, + { + fileId = "203713", + value = "infesteddollyrightside.m2", + text = "infesteddollyrightside.m2", + }, + { + fileId = "203714", + value = "infesteddollywhole.m2", + text = "infesteddollywhole.m2", + }, + }, + value = "dolly", + text = "dolly", + }, + { + children = { + { + fileId = "203715", + value = "outhousetrapped.m2", + text = "outhousetrapped.m2", + }, + }, + value = "outhouse", + text = "outhouse", + }, + { + children = { + { + fileId = "203716", + value = "epl_pvpflags_northfort.m2", + text = "epl_pvpflags_northfort.m2", + }, + }, + value = "pvpflags", + text = "pvpflags", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "203718", + value = "arcoftriumphplagued01.m2", + text = "arcoftriumphplagued01.m2", + }, + }, + value = "arcoftriumph", + text = "arcoftriumph", + }, + { + children = { + { + fileId = "203720", + value = "plaugelandsbanner01.m2", + text = "plaugelandsbanner01.m2", + }, + }, + value = "banners", + text = "banners", + }, + { + children = { + { + fileId = "203722", + value = "bloodofheroes.m2", + text = "bloodofheroes.m2", + }, + }, + value = "bloodofheroes", + text = "bloodofheroes", + }, + { + children = { + { + fileId = "203723", + value = "bonespike_01.m2", + text = "bonespike_01.m2", + }, + { + fileId = "203724", + value = "bonespike_02.m2", + text = "bonespike_02.m2", + }, + { + fileId = "203725", + value = "bonespike_03.m2", + text = "bonespike_03.m2", + }, + }, + value = "bonespikes", + text = "bonespikes", + }, + { + children = { + { + fileId = "203726", + value = "bonewall_01.m2", + text = "bonewall_01.m2", + }, + }, + value = "bonewalls", + text = "bonewalls", + }, + { + children = { + { + fileId = "203731", + value = "plaguelandwesternbush01.m2", + text = "plaguelandwesternbush01.m2", + }, + { + fileId = "203732", + value = "plaguelandwesternbush02.m2", + text = "plaguelandwesternbush02.m2", + }, + { + fileId = "203733", + value = "plaguelandwesternbush03.m2", + text = "plaguelandwesternbush03.m2", + }, + { + fileId = "203734", + value = "plaguelandwesternbush04.m2", + text = "plaguelandwesternbush04.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "203737", + value = "plaugelandscage01.m2", + text = "plaugelandscage01.m2", + }, + }, + value = "cages", + text = "cages", + }, + { + children = { + { + fileId = "203742", + value = "forsakenbanner01.m2", + text = "forsakenbanner01.m2", + }, + }, + value = "forsakenbanner", + text = "forsakenbanner", + }, + { + children = { + { + fileId = "203745", + value = "scourgebodyhangingfemale01.m2", + text = "scourgebodyhangingfemale01.m2", + }, + { + fileId = "203746", + value = "scourgebodyhangingfemale02.m2", + text = "scourgebodyhangingfemale02.m2", + }, + }, + value = "hangingscourge", + text = "hangingscourge", + }, + { + children = { + { + fileId = "203748", + value = "plaguelandhaystack.m2", + text = "plaguelandhaystack.m2", + }, + }, + value = "haystacks", + text = "haystacks", + }, + { + children = { + { + fileId = "203749", + value = "plaguecauldron.m2", + text = "plaguecauldron.m2", + }, + }, + value = "plaguecauldron", + text = "plaguecauldron", + }, + { + children = { + { + fileId = "203752", + value = "plaguechariot.m2", + text = "plaguechariot.m2", + }, + }, + value = "plaguedchariot", + text = "plaguedchariot", + }, + { + children = { + { + fileId = "203754", + value = "plaguewagon.m2", + text = "plaguewagon.m2", + }, + { + fileId = "203755", + value = "plaguewagon02.m2", + text = "plaguewagon02.m2", + }, + }, + value = "plaguedwagons", + text = "plaguedwagons", + }, + { + children = { + { + fileId = "203759", + value = "plaguelandfern01.m2", + text = "plaguelandfern01.m2", + }, + { + fileId = "203760", + value = "plaguelandfern02.m2", + text = "plaguelandfern02.m2", + }, + { + fileId = "203761", + value = "plaguelandfern03.m2", + text = "plaguelandfern03.m2", + }, + { + fileId = "203762", + value = "plaguelandfern04.m2", + text = "plaguelandfern04.m2", + }, + { + fileId = "203765", + value = "plaguelandpuffs01.m2", + text = "plaguelandpuffs01.m2", + }, + { + fileId = "203766", + value = "plaguelandpuffs02.m2", + text = "plaguelandpuffs02.m2", + }, + { + fileId = "203767", + value = "plaguelandpuffs03.m2", + text = "plaguelandpuffs03.m2", + }, + { + fileId = "203768", + value = "plaguelandpuffs04.m2", + text = "plaguelandpuffs04.m2", + }, + }, + value = "plants", + text = "plants", + }, + { + children = { + { + fileId = "203773", + value = "plaguelandrock01.m2", + text = "plaguelandrock01.m2", + }, + { + fileId = "203774", + value = "plaguelandrock02.m2", + text = "plaguelandrock02.m2", + }, + { + fileId = "203775", + value = "plaguelandrock03.m2", + text = "plaguelandrock03.m2", + }, + { + fileId = "203776", + value = "plaguelandrock04.m2", + text = "plaguelandrock04.m2", + }, + { + fileId = "203777", + value = "plaguelandrock05.m2", + text = "plaguelandrock05.m2", + }, + { + fileId = "203778", + value = "plaguelandrock06.m2", + text = "plaguelandrock06.m2", + }, + { + fileId = "203779", + value = "plaguelandrock07.m2", + text = "plaguelandrock07.m2", + }, + { + fileId = "203780", + value = "plaguelandrock08.m2", + text = "plaguelandrock08.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "203781", + value = "treebarrier01.m2", + text = "treebarrier01.m2", + }, + }, + value = "treebarrier", + text = "treebarrier", + }, + { + children = { + { + fileId = "203783", + value = "plaguedfallentree01.m2", + text = "plaguedfallentree01.m2", + }, + { + fileId = "203788", + value = "plaguelandmushroom01.m2", + text = "plaguelandmushroom01.m2", + }, + { + fileId = "203789", + value = "plaguelandmushroom02.m2", + text = "plaguelandmushroom02.m2", + }, + { + fileId = "203790", + value = "plaguelandmushroom03.m2", + text = "plaguelandmushroom03.m2", + }, + { + fileId = "203791", + value = "plaguelandmushroom04.m2", + text = "plaguelandmushroom04.m2", + }, + { + fileId = "203793", + value = "plaguelandstump01.m2", + text = "plaguelandstump01.m2", + }, + { + fileId = "203795", + value = "plaguelandstump02.m2", + text = "plaguelandstump02.m2", + }, + { + fileId = "203796", + value = "plaguelandstump03.m2", + text = "plaguelandstump03.m2", + }, + { + fileId = "203797", + value = "plaguelandstump04.m2", + text = "plaguelandstump04.m2", + }, + { + fileId = "203798", + value = "plaguelandtree01.m2", + text = "plaguelandtree01.m2", + }, + { + fileId = "203799", + value = "plaguelandtree02.m2", + text = "plaguelandtree02.m2", + }, + { + fileId = "203800", + value = "plaguelandtree03.m2", + text = "plaguelandtree03.m2", + }, + { + fileId = "203801", + value = "plaguelandtree04.m2", + text = "plaguelandtree04.m2", + }, + { + fileId = "203802", + value = "plaguelandtree05.m2", + text = "plaguelandtree05.m2", + }, + { + fileId = "203803", + value = "plaguelandtree06.m2", + text = "plaguelandtree06.m2", + }, + { + fileId = "203804", + value = "plaguelandtree07.m2", + text = "plaguelandtree07.m2", + }, + { + fileId = "203805", + value = "plaguelandtree08.m2", + text = "plaguelandtree08.m2", + }, + { + fileId = "203806", + value = "plaguelandtree09.m2", + text = "plaguelandtree09.m2", + }, + { + fileId = "203807", + value = "plaguelandtree10.m2", + text = "plaguelandtree10.m2", + }, + { + fileId = "203808", + value = "plaguelandtree11.m2", + text = "plaguelandtree11.m2", + }, + { + fileId = "203809", + value = "plaguelandtree12.m2", + text = "plaguelandtree12.m2", + }, + { + fileId = "203810", + value = "plaguelandtree13.m2", + text = "plaguelandtree13.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "203831", + value = "undeadwall_01.m2", + text = "undeadwall_01.m2", + }, + }, + value = "walls", + text = "walls", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "plagueland", + text = "plagueland", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203836", + value = "scholme_bookshelf.m2", + text = "scholme_bookshelf.m2", + }, + { + fileId = "203837", + value = "scholme_bookshelflarge.m2", + text = "scholme_bookshelflarge.m2", + }, + { + fileId = "203838", + value = "scholme_bookshelfsmall.m2", + text = "scholme_bookshelfsmall.m2", + }, + }, + value = "bookshelves", + text = "bookshelves", + }, + { + children = { + { + fileId = "203841", + value = "scholomancebrazier01green.m2", + text = "scholomancebrazier01green.m2", + }, + { + fileId = "203843", + value = "scholomancebrazier01orange.m2", + text = "scholomancebrazier01orange.m2", + }, + { + fileId = "203845", + value = "scholomancebrazier01purple.m2", + text = "scholomancebrazier01purple.m2", + }, + }, + value = "brazier", + text = "brazier", + }, + { + children = { + { + fileId = "203847", + value = "floorcandlescorner01.m2", + text = "floorcandlescorner01.m2", + }, + { + fileId = "203848", + value = "floorcandlescorner01green.m2", + text = "floorcandlescorner01green.m2", + }, + { + fileId = "203849", + value = "floorcandlescorner01red.m2", + text = "floorcandlescorner01red.m2", + }, + { + fileId = "203850", + value = "floorcandlesstraight02.m2", + text = "floorcandlesstraight02.m2", + }, + { + fileId = "203851", + value = "floorcandlesstraight02green.m2", + text = "floorcandlesstraight02green.m2", + }, + { + fileId = "203852", + value = "floorcandlesstraight02red.m2", + text = "floorcandlesstraight02red.m2", + }, + { + fileId = "203853", + value = "floorcandlesstraight04.m2", + text = "floorcandlesstraight04.m2", + }, + { + fileId = "203854", + value = "floorcandlesstraight04green.m2", + text = "floorcandlesstraight04green.m2", + }, + { + fileId = "203855", + value = "floorcandlesstraight04red.m2", + text = "floorcandlesstraight04red.m2", + }, + { + fileId = "203861", + value = "scholme_candelabra.m2", + text = "scholme_candelabra.m2", + }, + { + fileId = "203862", + value = "scholme_candelabra02.m2", + text = "scholme_candelabra02.m2", + }, + { + fileId = "203863", + value = "scholme_candelabra03.m2", + text = "scholme_candelabra03.m2", + }, + { + fileId = "203864", + value = "scholme_greencandelabra.m2", + text = "scholme_greencandelabra.m2", + }, + { + fileId = "203865", + value = "scholme_greencandelabra02.m2", + text = "scholme_greencandelabra02.m2", + }, + { + fileId = "203866", + value = "scholme_greencandelabra03.m2", + text = "scholme_greencandelabra03.m2", + }, + { + fileId = "203867", + value = "scholme_greenrug.m2", + text = "scholme_greenrug.m2", + }, + { + fileId = "203868", + value = "scholme_purplerug.m2", + text = "scholme_purplerug.m2", + }, + { + fileId = "203869", + value = "scholme_redcandelabra.m2", + text = "scholme_redcandelabra.m2", + }, + { + fileId = "203870", + value = "scholme_redcandelabra02.m2", + text = "scholme_redcandelabra02.m2", + }, + { + fileId = "203871", + value = "scholme_redcandelabra03.m2", + text = "scholme_redcandelabra03.m2", + }, + }, + value = "candles", + text = "candles", + }, + { + children = { + { + fileId = "203881", + value = "greenbubblingcauldron.m2", + text = "greenbubblingcauldron.m2", + }, + { + fileId = "203883", + value = "redbubblingcauldron.m2", + text = "redbubblingcauldron.m2", + }, + { + fileId = "203886", + value = "yellowbubblingcauldron.m2", + text = "yellowbubblingcauldron.m2", + }, + }, + value = "cauldrons", + text = "cauldrons", + }, + { + children = { + { + fileId = "203889", + value = "scholme_chandelier.m2", + text = "scholme_chandelier.m2", + }, + }, + value = "chandelier", + text = "chandelier", + }, + { + children = { + { + fileId = "203892", + value = "scholomancecrystalball01.m2", + text = "scholomancecrystalball01.m2", + }, + }, + value = "crystalball", + text = "crystalball", + }, + { + children = { + { + fileId = "203894", + value = "diseasedpumpkin.m2", + text = "diseasedpumpkin.m2", + }, + }, + value = "diseasedpumpkin", + text = "diseasedpumpkin", + }, + { + children = { + { + fileId = "203895", + value = "creepyoperationtable01.m2", + text = "creepyoperationtable01.m2", + }, + }, + value = "operationtables", + text = "operationtables", + }, + { + children = { + { + fileId = "203898", + value = "scholme_logorug.m2", + text = "scholme_logorug.m2", + }, + }, + value = "rugs", + text = "rugs", + }, + { + children = { + { + fileId = "203899", + value = "scholomancesmoke01.m2", + text = "scholomancesmoke01.m2", + }, + }, + value = "smoke", + text = "smoke", + }, + { + children = { + { + fileId = "203901", + value = "scholme_stonelogo.m2", + text = "scholme_stonelogo.m2", + }, + }, + value = "stonelogo", + text = "stonelogo", + }, + { + children = { + { + fileId = "203906", + value = "scholme_logo.m2", + text = "scholme_logo.m2", + }, + { + fileId = "203907", + value = "scholme_tapestryanim.m2", + text = "scholme_tapestryanim.m2", + }, + { + fileId = "203908", + value = "scholme_tapestryrune.m2", + text = "scholme_tapestryrune.m2", + }, + { + fileId = "203909", + value = "scholme_tapestryskull.m2", + text = "scholme_tapestryskull.m2", + }, + { + fileId = "203910", + value = "scholme_tapestryweb.m2", + text = "scholme_tapestryweb.m2", + }, + }, + value = "tapestries", + text = "tapestries", + }, + { + children = { + { + fileId = "203911", + value = "empty_testing_jar.m2", + text = "empty_testing_jar.m2", + }, + { + fileId = "203912", + value = "ghoul_in_a_jar.m2", + text = "ghoul_in_a_jar.m2", + }, + { + fileId = "203913", + value = "skeleton_in_a_jar.m2", + text = "skeleton_in_a_jar.m2", + }, + }, + value = "testingtubes", + text = "testingtubes", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "scholomance", + text = "scholomance", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203920", + value = "silvermoonburnttree01.m2", + text = "silvermoonburnttree01.m2", + }, + { + fileId = "203921", + value = "silvermoonburnttree02.m2", + text = "silvermoonburnttree02.m2", + }, + { + fileId = "203922", + value = "silvermoonburnttree03.m2", + text = "silvermoonburnttree03.m2", + }, + { + fileId = "203923", + value = "silvermoonburnttree04.m2", + text = "silvermoonburnttree04.m2", + }, + { + fileId = "203929", + value = "silvermoondeadtree01.m2", + text = "silvermoondeadtree01.m2", + }, + { + fileId = "203930", + value = "silvermoondeadtree02.m2", + text = "silvermoondeadtree02.m2", + }, + { + fileId = "203931", + value = "silvermoondeadtree03.m2", + text = "silvermoondeadtree03.m2", + }, + { + fileId = "203932", + value = "silvermoondeadtree04.m2", + text = "silvermoondeadtree04.m2", + }, + { + fileId = "203934", + value = "silvermoonpine01.m2", + text = "silvermoonpine01.m2", + }, + { + fileId = "203935", + value = "silvermoonpine02.m2", + text = "silvermoonpine02.m2", + }, + { + fileId = "203936", + value = "silvermoonpine03.m2", + text = "silvermoonpine03.m2", + }, + { + fileId = "203937", + value = "silvermoonpine04.m2", + text = "silvermoonpine04.m2", + }, + { + fileId = "203938", + value = "silvermoonsmallroots01.m2", + text = "silvermoonsmallroots01.m2", + }, + { + fileId = "203939", + value = "silvermoonsmallroots02.m2", + text = "silvermoonsmallroots02.m2", + }, + { + fileId = "203940", + value = "silvermoonsmallroots03.m2", + text = "silvermoonsmallroots03.m2", + }, + { + fileId = "203941", + value = "silvermoonsmallroots04.m2", + text = "silvermoonsmallroots04.m2", + }, + { + fileId = "203942", + value = "silvermoonsmalltree01.m2", + text = "silvermoonsmalltree01.m2", + }, + { + fileId = "203943", + value = "silvermoonsmalltree02.m2", + text = "silvermoonsmalltree02.m2", + }, + { + fileId = "203944", + value = "silvermoonsmalltree03.m2", + text = "silvermoonsmalltree03.m2", + }, + { + fileId = "203945", + value = "silvermoonsmalltree04.m2", + text = "silvermoonsmalltree04.m2", + }, + { + fileId = "203946", + value = "silvermoonsmalltree05.m2", + text = "silvermoonsmalltree05.m2", + }, + { + fileId = "203947", + value = "silvermoonsmalltree06.m2", + text = "silvermoonsmalltree06.m2", + }, + { + fileId = "203948", + value = "silvermoonsmalltree07.m2", + text = "silvermoonsmalltree07.m2", + }, + { + fileId = "203949", + value = "silvermoonsmalltree08.m2", + text = "silvermoonsmalltree08.m2", + }, + { + fileId = "203950", + value = "silvermoontree01.m2", + text = "silvermoontree01.m2", + }, + { + fileId = "203951", + value = "silvermoontree02.m2", + text = "silvermoontree02.m2", + }, + { + fileId = "203952", + value = "silvermoontree03.m2", + text = "silvermoontree03.m2", + }, + { + fileId = "203953", + value = "silvermoontree04.m2", + text = "silvermoontree04.m2", + }, + { + fileId = "203954", + value = "silvermoontree05.m2", + text = "silvermoontree05.m2", + }, + { + fileId = "203955", + value = "silvermoontree06.m2", + text = "silvermoontree06.m2", + }, + { + fileId = "203956", + value = "silvermoontree07.m2", + text = "silvermoontree07.m2", + }, + { + fileId = "203957", + value = "silvermoontreelog01.m2", + text = "silvermoontreelog01.m2", + }, + { + fileId = "203958", + value = "silvermoontreestump01.m2", + text = "silvermoontreestump01.m2", + }, + { + fileId = "203959", + value = "silvermoontreestump02.m2", + text = "silvermoontreestump02.m2", + }, + { + fileId = "203960", + value = "silvermoontreestump03.m2", + text = "silvermoontreestump03.m2", + }, + { + fileId = "203963", + value = "sm_leaves_fall.m2", + text = "sm_leaves_fall.m2", + }, + { + fileId = "203964", + value = "sm_leaves_fall_purple.m2", + text = "sm_leaves_fall_purple.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "silvermoon", + text = "silvermoon", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203965", + value = "silverpineboardwalk01.m2", + text = "silverpineboardwalk01.m2", + }, + }, + value = "boardwalks", + text = "boardwalks", + }, + { + children = { + { + fileId = "203967", + value = "silverpinebush01.m2", + text = "silverpinebush01.m2", + }, + { + fileId = "203969", + value = "silverpinebush02.m2", + text = "silverpinebush02.m2", + }, + { + fileId = "203971", + value = "silverpinebush03.m2", + text = "silverpinebush03.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "203973", + value = "silverpinedocks01.m2", + text = "silverpinedocks01.m2", + }, + { + fileId = "203974", + value = "silverpinedocks02.m2", + text = "silverpinedocks02.m2", + }, + }, + value = "docks", + text = "docks", + }, + { + children = { + { + fileId = "203975", + value = "shadowfanggate01.m2", + text = "shadowfanggate01.m2", + }, + { + fileId = "203976", + value = "shadowfanggate02.m2", + text = "shadowfanggate02.m2", + }, + }, + value = "shadowfanggates", + text = "shadowfanggates", + }, + { + children = { + { + fileId = "203977", + value = "silverpinetree01.m2", + text = "silverpinetree01.m2", + }, + { + fileId = "203978", + value = "silverpinetree01fallen.m2", + text = "silverpinetree01fallen.m2", + }, + { + fileId = "203979", + value = "silverpinetree02.m2", + text = "silverpinetree02.m2", + }, + { + fileId = "203981", + value = "silverpinetree02fallen.m2", + text = "silverpinetree02fallen.m2", + }, + { + fileId = "203982", + value = "silverpinetree03.m2", + text = "silverpinetree03.m2", + }, + { + fileId = "203983", + value = "silverpinetree04.m2", + text = "silverpinetree04.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "203985", + value = "silverpinetreestump01.m2", + text = "silverpinetreestump01.m2", + }, + { + fileId = "203986", + value = "silverpinetreestump02.m2", + text = "silverpinetreestump02.m2", + }, + }, + value = "treestumps", + text = "treestumps", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "silverpine", + text = "silverpine", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "203987", + value = "frostwyrm_waterfall.m2", + text = "frostwyrm_waterfall.m2", + }, + { + fileId = "203989", + value = "largeportcullis.m2", + text = "largeportcullis.m2", + }, + { + fileId = "203990", + value = "nox_door_abom.m2", + text = "nox_door_abom.m2", + }, + { + fileId = "203991", + value = "nox_door_abom_mini.m2", + text = "nox_door_abom_mini.m2", + }, + { + fileId = "203992", + value = "nox_door_deathknight.m2", + text = "nox_door_deathknight.m2", + }, + { + fileId = "203993", + value = "nox_door_plague.m2", + text = "nox_door_plague.m2", + }, + { + fileId = "203994", + value = "nox_door_portcullis.m2", + text = "nox_door_portcullis.m2", + }, + { + fileId = "203995", + value = "nox_door_slime.m2", + text = "nox_door_slime.m2", + }, + { + fileId = "203996", + value = "nox_door_spider.m2", + text = "nox_door_spider.m2", + }, + { + fileId = "203997", + value = "nox_door_web_boss.m2", + text = "nox_door_web_boss.m2", + }, + { + fileId = "203998", + value = "nox_door_web_large.m2", + text = "nox_door_web_large.m2", + }, + { + fileId = "204004", + value = "smallportcullis.m2", + text = "smallportcullis.m2", + }, + { + fileId = "204005", + value = "zigguratdoor.m2", + text = "zigguratdoor.m2", + }, + }, + value = "doors", + text = "doors", + }, + { + children = { + { + fileId = "204006", + value = "furnace_skull01.m2", + text = "furnace_skull01.m2", + }, + }, + value = "furnace", + text = "furnace", + }, + { + children = { + { + fileId = "204007", + value = "deathknight_gate01.m2", + text = "deathknight_gate01.m2", + }, + }, + value = "gates", + text = "gates", + }, + { + children = { + { + fileId = "204011", + value = "stratholmepostboxruined.m2", + text = "stratholmepostboxruined.m2", + }, + }, + value = "postboxdestroyed", + text = "postboxdestroyed", + }, + { + children = { + { + fileId = "204013", + value = "plaguewingsporetrap.m2", + text = "plaguewingsporetrap.m2", + }, + }, + value = "sporetrap", + text = "sporetrap", + }, + { + children = { + { + fileId = "204019", + value = "nox_tesla.m2", + text = "nox_tesla.m2", + }, + }, + value = "tesla", + text = "tesla", + }, + }, + value = "activedoodads", + text = "activedoodads", + }, + { + children = { + { + children = { + { + fileId = "204024", + value = "nox_anvil.m2", + text = "nox_anvil.m2", + }, + }, + value = "anvil", + text = "anvil", + }, + { + children = { + { + fileId = "204026", + value = "blackcitadel_exteriorslimefalls.m2", + text = "blackcitadel_exteriorslimefalls.m2", + }, + { + fileId = "204027", + value = "fel_stratholmefiresmokeembers.m2", + text = "fel_stratholmefiresmokeembers.m2", + }, + { + fileId = "204031", + value = "kelthuzad_window_portal.m2", + text = "kelthuzad_window_portal.m2", + }, + { + fileId = "204038", + value = "naxxramas_frostwyrm_birth.m2", + text = "naxxramas_frostwyrm_birth.m2", + }, + { + fileId = "204040", + value = "nox_portal_bottom.m2", + text = "nox_portal_bottom.m2", + }, + { + fileId = "204041", + value = "nox_portal_orange.m2", + text = "nox_portal_orange.m2", + }, + { + fileId = "204042", + value = "nox_portal_orange_bossroom.m2", + text = "nox_portal_orange_bossroom.m2", + }, + { + fileId = "204043", + value = "nox_portal_orange_bossroom_eye.m2", + text = "nox_portal_orange_bossroom_eye.m2", + }, + { + fileId = "204044", + value = "nox_portal_purple.m2", + text = "nox_portal_purple.m2", + }, + { + fileId = "204045", + value = "nox_portal_purple_bossroom.m2", + text = "nox_portal_purple_bossroom.m2", + }, + { + fileId = "204046", + value = "nox_portal_purple_bossroom_eye.m2", + text = "nox_portal_purple_bossroom_eye.m2", + }, + { + fileId = "204047", + value = "nox_portal_red.m2", + text = "nox_portal_red.m2", + }, + { + fileId = "204048", + value = "nox_portal_red_bossroom.m2", + text = "nox_portal_red_bossroom.m2", + }, + { + fileId = "204049", + value = "nox_portal_red_bossroom_eye.m2", + text = "nox_portal_red_bossroom_eye.m2", + }, + { + fileId = "204050", + value = "nox_portal_top.m2", + text = "nox_portal_top.m2", + }, + { + fileId = "204051", + value = "nox_portal_yellow.m2", + text = "nox_portal_yellow.m2", + }, + { + fileId = "204052", + value = "nox_portal_yellow_bossroom.m2", + text = "nox_portal_yellow_bossroom.m2", + }, + { + fileId = "204053", + value = "nox_portal_yellow_bossroom_eye.m2", + text = "nox_portal_yellow_bossroom_eye.m2", + }, + { + fileId = "204055", + value = "stratholmefiresmokeemberm.m2", + text = "stratholmefiresmokeemberm.m2", + }, + { + fileId = "204056", + value = "stratholmefiresmokeembers.m2", + text = "stratholmefiresmokeembers.m2", + }, + { + fileId = "204057", + value = "stratholmefloatingembers.m2", + text = "stratholmefloatingembers.m2", + }, + { + fileId = "204058", + value = "stratholmesmokeemitter.m2", + text = "stratholmesmokeemitter.m2", + }, + }, + value = "fx", + text = "fx", + }, + { + children = { + { + fileId = "204059", + value = "naxxramas_frostwyrm_slimefall.m2", + text = "naxxramas_frostwyrm_slimefall.m2", + }, + }, + value = "naxxramasslimefalls", + text = "naxxramasslimefalls", + }, + { + children = { + { + fileId = "204061", + value = "ruinedsign01.m2", + text = "ruinedsign01.m2", + }, + { + fileId = "204062", + value = "ruinedsign02.m2", + text = "ruinedsign02.m2", + }, + { + fileId = "204063", + value = "ruinedsign03.m2", + text = "ruinedsign03.m2", + }, + }, + value = "signs", + text = "signs", + }, + { + children = { + { + fileId = "204065", + value = "kelthuzad_throne.m2", + text = "kelthuzad_throne.m2", + }, + }, + value = "throne", + text = "throne", + }, + { + children = { + { + fileId = "204068", + value = "bossweb_doodad01.m2", + text = "bossweb_doodad01.m2", + }, + { + fileId = "204069", + value = "bossweb_doodad02.m2", + text = "bossweb_doodad02.m2", + }, + { + fileId = "204070", + value = "hallwayweb_doodad01.m2", + text = "hallwayweb_doodad01.m2", + }, + { + fileId = "204071", + value = "hallwayweb_doodad02.m2", + text = "hallwayweb_doodad02.m2", + }, + { + fileId = "204072", + value = "hallwayweb_doodad03.m2", + text = "hallwayweb_doodad03.m2", + }, + { + fileId = "204073", + value = "rampweb_doodad01.m2", + text = "rampweb_doodad01.m2", + }, + }, + value = "webs", + text = "webs", + }, + { + children = { + { + fileId = "204075", + value = "nox_window01.m2", + text = "nox_window01.m2", + }, + }, + value = "window", + text = "window", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "stratholme", + text = "stratholme", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "204076", + value = "arcoftriumph01.m2", + text = "arcoftriumph01.m2", + }, + }, + value = "arcoftriumph", + text = "arcoftriumph", + }, + { + children = { + { + fileId = "204080", + value = "tirisfallbarricade.m2", + text = "tirisfallbarricade.m2", + }, + }, + value = "barricade", + text = "barricade", + }, + { + children = { + { + fileId = "204084", + value = "tirisfallboardwalk01.m2", + text = "tirisfallboardwalk01.m2", + }, + { + fileId = "204085", + value = "tirisfallboardwalk02.m2", + text = "tirisfallboardwalk02.m2", + }, + }, + value = "boardwalk", + text = "boardwalk", + }, + { + children = { + { + fileId = "204086", + value = "bodyshrouded.m2", + text = "bodyshrouded.m2", + }, + { + fileId = "204090", + value = "massgrave.m2", + text = "massgrave.m2", + }, + { + fileId = "204091", + value = "scourgebodyhanging01.m2", + text = "scourgebodyhanging01.m2", + }, + { + fileId = "204092", + value = "scourgebodyhanging02.m2", + text = "scourgebodyhanging02.m2", + }, + { + fileId = "204093", + value = "scourgebodyhanging03.m2", + text = "scourgebodyhanging03.m2", + }, + }, + value = "bodies", + text = "bodies", + }, + { + children = { + { + fileId = "204097", + value = "tirisfallbush01.m2", + text = "tirisfallbush01.m2", + }, + { + fileId = "204098", + value = "tirisfallgladebush03.m2", + text = "tirisfallgladebush03.m2", + }, + { + fileId = "204099", + value = "tirisfallgladebush04.m2", + text = "tirisfallgladebush04.m2", + }, + }, + value = "bushes", + text = "bushes", + }, + { + children = { + { + fileId = "204101", + value = "doomweed01.m2", + text = "doomweed01.m2", + }, + }, + value = "doomweed", + text = "doomweed", + }, + { + children = { + { + fileId = "204103", + value = "gloomweed01.m2", + text = "gloomweed01.m2", + }, + }, + value = "gloomweed", + text = "gloomweed", + }, + { + children = { + { + fileId = "204104", + value = "brillcoffins.m2", + text = "brillcoffins.m2", + }, + { + fileId = "204105", + value = "brillgraves01.m2", + text = "brillgraves01.m2", + }, + { + fileId = "204106", + value = "brillgraves02.m2", + text = "brillgraves02.m2", + }, + { + fileId = "204107", + value = "brillgraves03.m2", + text = "brillgraves03.m2", + }, + { + fileId = "204108", + value = "brillgraves04.m2", + text = "brillgraves04.m2", + }, + { + fileId = "204112", + value = "tirisfallgravedirtmound01.m2", + text = "tirisfallgravedirtmound01.m2", + }, + { + fileId = "204113", + value = "tirisfallgravedirtmound02.m2", + text = "tirisfallgravedirtmound02.m2", + }, + { + fileId = "204114", + value = "tirisfallopengrave01.m2", + text = "tirisfallopengrave01.m2", + }, + }, + value = "graves", + text = "graves", + }, + { + children = { + { + fileId = "204116", + value = "tirisfalloutpost01.m2", + text = "tirisfalloutpost01.m2", + }, + { + fileId = "204117", + value = "tirisfalloutpost02.m2", + text = "tirisfalloutpost02.m2", + }, + { + fileId = "204118", + value = "tirisfalloutpost03.m2", + text = "tirisfalloutpost03.m2", + }, + { + fileId = "204119", + value = "tirisfalloutpost04.m2", + text = "tirisfalloutpost04.m2", + }, + { + fileId = "204120", + value = "tirisfalloutpost05.m2", + text = "tirisfalloutpost05.m2", + }, + { + fileId = "204121", + value = "tirisfalloutpost06.m2", + text = "tirisfalloutpost06.m2", + }, + { + fileId = "204122", + value = "tirisfalloutpost07.m2", + text = "tirisfalloutpost07.m2", + }, + }, + value = "outposts", + text = "outposts", + }, + { + children = { + { + fileId = "204124", + value = "tirisfalgladetree01.m2", + text = "tirisfalgladetree01.m2", + }, + { + fileId = "204125", + value = "tirisfallfallentree01.m2", + text = "tirisfallfallentree01.m2", + }, + { + fileId = "204126", + value = "tirisfallfallentree02.m2", + text = "tirisfallfallentree02.m2", + }, + { + fileId = "204127", + value = "tirisfallfallentree03.m2", + text = "tirisfallfallentree03.m2", + }, + { + fileId = "204128", + value = "tirisfallfallentree04.m2", + text = "tirisfallfallentree04.m2", + }, + { + fileId = "204129", + value = "tirisfallgladecanopytree02.m2", + text = "tirisfallgladecanopytree02.m2", + }, + { + fileId = "204130", + value = "tirisfallgladecanopytree03.m2", + text = "tirisfallgladecanopytree03.m2", + }, + { + fileId = "204131", + value = "tirisfallgladecanopytree04.m2", + text = "tirisfallgladecanopytree04.m2", + }, + { + fileId = "204132", + value = "tirisfallgladecanopytree05.m2", + text = "tirisfallgladecanopytree05.m2", + }, + { + fileId = "204133", + value = "tirisfallgladecanopytree06.m2", + text = "tirisfallgladecanopytree06.m2", + }, + { + fileId = "204134", + value = "tirisfallgladecanopytree07.m2", + text = "tirisfallgladecanopytree07.m2", + }, + { + fileId = "204135", + value = "tirisfalltreestump01.m2", + text = "tirisfalltreestump01.m2", + }, + { + fileId = "204136", + value = "tirisfalltreestump02.m2", + text = "tirisfalltreestump02.m2", + }, + }, + value = "trees", + text = "trees", + }, + { + children = { + { + fileId = "204142", + value = "uthershrinepedestal.m2", + text = "uthershrinepedestal.m2", + }, + }, + value = "uthershrine", + text = "uthershrine", + }, + { + children = { + { + fileId = "204144", + value = "tirisfallwindmill.m2", + text = "tirisfallwindmill.m2", + }, + }, + value = "windmill", + text = "windmill", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "tirisfalglade", + text = "tirisfalglade", + }, + }, + value = "lordaeron", + text = "lordaeron", + }, + { + children = { + { + children = { + { + fileId = "218550", + value = "apkbus01.m2", + text = "apkbus01.m2", + }, + { + fileId = "218551", + value = "apkbus02.m2", + text = "apkbus02.m2", + }, + { + fileId = "218552", + value = "apkbus03.m2", + text = "apkbus03.m2", + }, + { + fileId = "218553", + value = "apkbus04.m2", + text = "apkbus04.m2", + }, + { + fileId = "218554", + value = "apkbus05.m2", + text = "apkbus05.m2", + }, + { + fileId = "218555", + value = "apkflo01.m2", + text = "apkflo01.m2", + }, + { + fileId = "218556", + value = "apkflo02.m2", + text = "apkflo02.m2", + }, + { + fileId = "218557", + value = "apkflo03.m2", + text = "apkflo03.m2", + }, + { + fileId = "218558", + value = "apkgra01.m2", + text = "apkgra01.m2", + }, + { + fileId = "218559", + value = "apkgra02.m2", + text = "apkgra02.m2", + }, + { + fileId = "218560", + value = "apkgra03.m2", + text = "apkgra03.m2", + }, + { + fileId = "218561", + value = "apkgra04.m2", + text = "apkgra04.m2", + }, + { + fileId = "218563", + value = "arhbus01.m2", + text = "arhbus01.m2", + }, + { + fileId = "218564", + value = "arhbus02.m2", + text = "arhbus02.m2", + }, + { + fileId = "218565", + value = "arhflo01.m2", + text = "arhflo01.m2", + }, + { + fileId = "218566", + value = "arhflo02.m2", + text = "arhflo02.m2", + }, + { + fileId = "218567", + value = "arhflo03.m2", + text = "arhflo03.m2", + }, + { + fileId = "218568", + value = "arhflo04.m2", + text = "arhflo04.m2", + }, + { + fileId = "218569", + value = "arhflo05.m2", + text = "arhflo05.m2", + }, + { + fileId = "218570", + value = "arhgra01.m2", + text = "arhgra01.m2", + }, + { + fileId = "218571", + value = "arhgra02.m2", + text = "arhgra02.m2", + }, + { + fileId = "218572", + value = "arhgra03.m2", + text = "arhgra03.m2", + }, + { + fileId = "218573", + value = "arhroc01.m2", + text = "arhroc01.m2", + }, + { + fileId = "218574", + value = "arhroc02.m2", + text = "arhroc02.m2", + }, + { + fileId = "218575", + value = "arhwet01.m2", + text = "arhwet01.m2", + }, + { + fileId = "218576", + value = "arhwet02.m2", + text = "arhwet02.m2", + }, + { + fileId = "218577", + value = "atcbus01.m2", + text = "atcbus01.m2", + }, + { + fileId = "218578", + value = "atcbus02.m2", + text = "atcbus02.m2", + }, + { + fileId = "218579", + value = "atcbus03.m2", + text = "atcbus03.m2", + }, + { + fileId = "218580", + value = "atcbus04.m2", + text = "atcbus04.m2", + }, + { + fileId = "218581", + value = "atcbus05.m2", + text = "atcbus05.m2", + }, + { + fileId = "218582", + value = "atcflo01.m2", + text = "atcflo01.m2", + }, + { + fileId = "218583", + value = "atcflo02.m2", + text = "atcflo02.m2", + }, + { + fileId = "218584", + value = "atcflo03.m2", + text = "atcflo03.m2", + }, + { + fileId = "218585", + value = "atcgra01.m2", + text = "atcgra01.m2", + }, + { + fileId = "218586", + value = "atcgra02.m2", + text = "atcgra02.m2", + }, + { + fileId = "218587", + value = "atcgra03.m2", + text = "atcgra03.m2", + }, + { + fileId = "218588", + value = "atcgra04.m2", + text = "atcgra04.m2", + }, + { + fileId = "218589", + value = "azhbus01.m2", + text = "azhbus01.m2", + }, + { + fileId = "218590", + value = "azhbus02.m2", + text = "azhbus02.m2", + }, + { + fileId = "218591", + value = "azhbus03.m2", + text = "azhbus03.m2", + }, + { + fileId = "218592", + value = "azhbus04.m2", + text = "azhbus04.m2", + }, + { + fileId = "218593", + value = "azhbus05.m2", + text = "azhbus05.m2", + }, + { + fileId = "218594", + value = "azhbus06.m2", + text = "azhbus06.m2", + }, + { + fileId = "218595", + value = "azhbus07.m2", + text = "azhbus07.m2", + }, + { + fileId = "218596", + value = "azhbus08.m2", + text = "azhbus08.m2", + }, + { + fileId = "218597", + value = "azhgra01.m2", + text = "azhgra01.m2", + }, + { + fileId = "218598", + value = "azhgra02.m2", + text = "azhgra02.m2", + }, + { + fileId = "218599", + value = "azhshel01.m2", + text = "azhshel01.m2", + }, + { + fileId = "218600", + value = "azhshel02.m2", + text = "azhshel02.m2", + }, + { + fileId = "218601", + value = "azhshel03.m2", + text = "azhshel03.m2", + }, + { + fileId = "218603", + value = "badbus01.m2", + text = "badbus01.m2", + }, + { + fileId = "218604", + value = "badbus02.m2", + text = "badbus02.m2", + }, + { + fileId = "218605", + value = "badbus03.m2", + text = "badbus03.m2", + }, + { + fileId = "218606", + value = "badbus04.m2", + text = "badbus04.m2", + }, + { + fileId = "218607", + value = "badbus05.m2", + text = "badbus05.m2", + }, + { + fileId = "218608", + value = "badbus06.m2", + text = "badbus06.m2", + }, + { + fileId = "218609", + value = "badbus07.m2", + text = "badbus07.m2", + }, + { + fileId = "218610", + value = "badbus08.m2", + text = "badbus08.m2", + }, + { + fileId = "218611", + value = "badgra01.m2", + text = "badgra01.m2", + }, + { + fileId = "218612", + value = "badgra02.m2", + text = "badgra02.m2", + }, + { + fileId = "218614", + value = "badroc01.m2", + text = "badroc01.m2", + }, + { + fileId = "218615", + value = "badroc02.m2", + text = "badroc02.m2", + }, + { + fileId = "218616", + value = "badroc03.m2", + text = "badroc03.m2", + }, + { + fileId = "218617", + value = "barbus01.m2", + text = "barbus01.m2", + }, + { + fileId = "218618", + value = "barbus02.m2", + text = "barbus02.m2", + }, + { + fileId = "218619", + value = "barbus03.m2", + text = "barbus03.m2", + }, + { + fileId = "218620", + value = "barbus04.m2", + text = "barbus04.m2", + }, + { + fileId = "218621", + value = "bargra01.m2", + text = "bargra01.m2", + }, + { + fileId = "218622", + value = "bargra02.m2", + text = "bargra02.m2", + }, + { + fileId = "218623", + value = "bargra03.m2", + text = "bargra03.m2", + }, + { + fileId = "218624", + value = "bargra04.m2", + text = "bargra04.m2", + }, + { + fileId = "218625", + value = "bargra05.m2", + text = "bargra05.m2", + }, + { + fileId = "218626", + value = "bargra06.m2", + text = "bargra06.m2", + }, + { + fileId = "218627", + value = "bargra07.m2", + text = "bargra07.m2", + }, + { + fileId = "218628", + value = "bargra08.m2", + text = "bargra08.m2", + }, + { + fileId = "218630", + value = "barroc01.m2", + text = "barroc01.m2", + }, + { + fileId = "218631", + value = "barroc02.m2", + text = "barroc02.m2", + }, + { + fileId = "218632", + value = "barroc03.m2", + text = "barroc03.m2", + }, + { + fileId = "218633", + value = "barroc04.m2", + text = "barroc04.m2", + }, + { + fileId = "218634", + value = "barroc05.m2", + text = "barroc05.m2", + }, + { + fileId = "218635", + value = "barroc06.m2", + text = "barroc06.m2", + }, + { + fileId = "218637", + value = "blaroc01.m2", + text = "blaroc01.m2", + }, + { + fileId = "218638", + value = "blaroc02.m2", + text = "blaroc02.m2", + }, + { + fileId = "218639", + value = "blaroc03.m2", + text = "blaroc03.m2", + }, + { + fileId = "218640", + value = "blaroc04.m2", + text = "blaroc04.m2", + }, + { + fileId = "218641", + value = "blaroc05.m2", + text = "blaroc05.m2", + }, + { + fileId = "218642", + value = "blaroc06.m2", + text = "blaroc06.m2", + }, + { + fileId = "218643", + value = "blaroc07.m2", + text = "blaroc07.m2", + }, + { + fileId = "218644", + value = "blaroc08.m2", + text = "blaroc08.m2", + }, + { + fileId = "218645", + value = "blaroc09.m2", + text = "blaroc09.m2", + }, + { + fileId = "218646", + value = "blaroc10.m2", + text = "blaroc10.m2", + }, + { + fileId = "218647", + value = "blaroc11.m2", + text = "blaroc11.m2", + }, + { + fileId = "218648", + value = "blaroc12.m2", + text = "blaroc12.m2", + }, + { + fileId = "218649", + value = "blaroc13.m2", + text = "blaroc13.m2", + }, + { + fileId = "218651", + value = "bllbus01.m2", + text = "bllbus01.m2", + }, + { + fileId = "218652", + value = "bllroc01.m2", + text = "bllroc01.m2", + }, + { + fileId = "218653", + value = "bllroc02.m2", + text = "bllroc02.m2", + }, + { + fileId = "218654", + value = "bllroc03.m2", + text = "bllroc03.m2", + }, + { + fileId = "218655", + value = "bllroc04.m2", + text = "bllroc04.m2", + }, + { + fileId = "218656", + value = "bllroc05.m2", + text = "bllroc05.m2", + }, + { + fileId = "218657", + value = "bllroc06.m2", + text = "bllroc06.m2", + }, + { + fileId = "218658", + value = "bllroc07.m2", + text = "bllroc07.m2", + }, + { + fileId = "218659", + value = "bllroc08.m2", + text = "bllroc08.m2", + }, + { + fileId = "218661", + value = "bmybus01.m2", + text = "bmybus01.m2", + }, + { + fileId = "218662", + value = "bmybus02.m2", + text = "bmybus02.m2", + }, + { + fileId = "218663", + value = "bmybus03.m2", + text = "bmybus03.m2", + }, + { + fileId = "218664", + value = "bmybus04.m2", + text = "bmybus04.m2", + }, + { + fileId = "218665", + value = "bmybus05.m2", + text = "bmybus05.m2", + }, + { + fileId = "218666", + value = "bmyflo01.m2", + text = "bmyflo01.m2", + }, + { + fileId = "218667", + value = "bmyflo02.m2", + text = "bmyflo02.m2", + }, + { + fileId = "218668", + value = "bmygra01.m2", + text = "bmygra01.m2", + }, + { + fileId = "218669", + value = "bmygra02.m2", + text = "bmygra02.m2", + }, + { + fileId = "218670", + value = "bmygra03.m2", + text = "bmygra03.m2", + }, + { + fileId = "218671", + value = "bmygra04.m2", + text = "bmygra04.m2", + }, + { + fileId = "218673", + value = "bstbra01.m2", + text = "bstbra01.m2", + }, + { + fileId = "218674", + value = "bstbra02.m2", + text = "bstbra02.m2", + }, + { + fileId = "218675", + value = "bstbra03.m2", + text = "bstbra03.m2", + }, + { + fileId = "218676", + value = "bstbra04.m2", + text = "bstbra04.m2", + }, + { + fileId = "218677", + value = "bstbra05.m2", + text = "bstbra05.m2", + }, + { + fileId = "218678", + value = "bstbra06.m2", + text = "bstbra06.m2", + }, + { + fileId = "218679", + value = "bstbra07.m2", + text = "bstbra07.m2", + }, + { + fileId = "218680", + value = "bstbra08.m2", + text = "bstbra08.m2", + }, + { + fileId = "218681", + value = "bstroc01.m2", + text = "bstroc01.m2", + }, + { + fileId = "218682", + value = "bstroc02.m2", + text = "bstroc02.m2", + }, + { + fileId = "218683", + value = "bstroc03.m2", + text = "bstroc03.m2", + }, + { + fileId = "218684", + value = "bstroc04.m2", + text = "bstroc04.m2", + }, + { + fileId = "218685", + value = "bstroc05.m2", + text = "bstroc05.m2", + }, + { + fileId = "218708", + value = "drkbus01.m2", + text = "drkbus01.m2", + }, + { + fileId = "218709", + value = "drkbus02.m2", + text = "drkbus02.m2", + }, + { + fileId = "218710", + value = "drkbus03.m2", + text = "drkbus03.m2", + }, + { + fileId = "218711", + value = "drkbus04.m2", + text = "drkbus04.m2", + }, + { + fileId = "218712", + value = "drkbus05.m2", + text = "drkbus05.m2", + }, + { + fileId = "218713", + value = "drkbus06.m2", + text = "drkbus06.m2", + }, + { + fileId = "218714", + value = "drkbus07.m2", + text = "drkbus07.m2", + }, + { + fileId = "218715", + value = "drkgra01.m2", + text = "drkgra01.m2", + }, + { + fileId = "218716", + value = "drkgra02.m2", + text = "drkgra02.m2", + }, + { + fileId = "218717", + value = "drkgra03.m2", + text = "drkgra03.m2", + }, + { + fileId = "218718", + value = "drkgra04.m2", + text = "drkgra04.m2", + }, + { + fileId = "218719", + value = "drkgra05.m2", + text = "drkgra05.m2", + }, + { + fileId = "218720", + value = "drkgra06.m2", + text = "drkgra06.m2", + }, + { + fileId = "218721", + value = "dskflo01.m2", + text = "dskflo01.m2", + }, + { + fileId = "218722", + value = "dskflo02.m2", + text = "dskflo02.m2", + }, + { + fileId = "218723", + value = "dskgra01.m2", + text = "dskgra01.m2", + }, + { + fileId = "218724", + value = "dskgra02.m2", + text = "dskgra02.m2", + }, + { + fileId = "218725", + value = "dskgra03.m2", + text = "dskgra03.m2", + }, + { + fileId = "218726", + value = "dskgra04.m2", + text = "dskgra04.m2", + }, + { + fileId = "218727", + value = "dskgra05.m2", + text = "dskgra05.m2", + }, + { + fileId = "218728", + value = "dskgra06.m2", + text = "dskgra06.m2", + }, + { + fileId = "218729", + value = "dslbon01.m2", + text = "dslbon01.m2", + }, + { + fileId = "218730", + value = "dslbon02.m2", + text = "dslbon02.m2", + }, + { + fileId = "218731", + value = "dslbon03.m2", + text = "dslbon03.m2", + }, + { + fileId = "218732", + value = "dslbon04.m2", + text = "dslbon04.m2", + }, + { + fileId = "218733", + value = "dslbon05.m2", + text = "dslbon05.m2", + }, + { + fileId = "218734", + value = "dslbon06.m2", + text = "dslbon06.m2", + }, + { + fileId = "218735", + value = "dslbon07.m2", + text = "dslbon07.m2", + }, + { + fileId = "218736", + value = "dslbon08.m2", + text = "dslbon08.m2", + }, + { + fileId = "218737", + value = "dslroc01.m2", + text = "dslroc01.m2", + }, + { + fileId = "218738", + value = "dslroc02.m2", + text = "dslroc02.m2", + }, + { + fileId = "218739", + value = "dunbra01.m2", + text = "dunbra01.m2", + }, + { + fileId = "218740", + value = "dunbra02.m2", + text = "dunbra02.m2", + }, + { + fileId = "218741", + value = "dunbra03.m2", + text = "dunbra03.m2", + }, + { + fileId = "218742", + value = "dunbra04.m2", + text = "dunbra04.m2", + }, + { + fileId = "218743", + value = "dunbus01.m2", + text = "dunbus01.m2", + }, + { + fileId = "218744", + value = "dunbus02.m2", + text = "dunbus02.m2", + }, + { + fileId = "218745", + value = "dunbus03.m2", + text = "dunbus03.m2", + }, + { + fileId = "218746", + value = "dungra01.m2", + text = "dungra01.m2", + }, + { + fileId = "218747", + value = "dungra02.m2", + text = "dungra02.m2", + }, + { + fileId = "218748", + value = "dungra03.m2", + text = "dungra03.m2", + }, + { + fileId = "218749", + value = "dungra04.m2", + text = "dungra04.m2", + }, + { + fileId = "218750", + value = "dunroc01.m2", + text = "dunroc01.m2", + }, + { + fileId = "218751", + value = "dunroc02.m2", + text = "dunroc02.m2", + }, + { + fileId = "218752", + value = "durbus01.m2", + text = "durbus01.m2", + }, + { + fileId = "218753", + value = "durbus02.m2", + text = "durbus02.m2", + }, + { + fileId = "218754", + value = "durbus03.m2", + text = "durbus03.m2", + }, + { + fileId = "218755", + value = "durbus04.m2", + text = "durbus04.m2", + }, + { + fileId = "218756", + value = "durbus05.m2", + text = "durbus05.m2", + }, + { + fileId = "218757", + value = "durbus06.m2", + text = "durbus06.m2", + }, + { + fileId = "218758", + value = "durgra01.m2", + text = "durgra01.m2", + }, + { + fileId = "218759", + value = "durgra02.m2", + text = "durgra02.m2", + }, + { + fileId = "218760", + value = "durgra03.m2", + text = "durgra03.m2", + }, + { + fileId = "218761", + value = "duribu01.m2", + text = "duribu01.m2", + }, + { + fileId = "218762", + value = "duribu02.m2", + text = "duribu02.m2", + }, + { + fileId = "218763", + value = "duribu03.m2", + text = "duribu03.m2", + }, + { + fileId = "218764", + value = "durifl01.m2", + text = "durifl01.m2", + }, + { + fileId = "218765", + value = "durifl02.m2", + text = "durifl02.m2", + }, + { + fileId = "218766", + value = "durifl03.m2", + text = "durifl03.m2", + }, + { + fileId = "218767", + value = "durifl04.m2", + text = "durifl04.m2", + }, + { + fileId = "218768", + value = "durifl05.m2", + text = "durifl05.m2", + }, + { + fileId = "218769", + value = "durigr01.m2", + text = "durigr01.m2", + }, + { + fileId = "218770", + value = "durigr02.m2", + text = "durigr02.m2", + }, + { + fileId = "218771", + value = "durigr03.m2", + text = "durigr03.m2", + }, + { + fileId = "218772", + value = "durigr04.m2", + text = "durigr04.m2", + }, + { + fileId = "218773", + value = "duriro01.m2", + text = "duriro01.m2", + }, + { + fileId = "218774", + value = "duriro02.m2", + text = "duriro02.m2", + }, + { + fileId = "218776", + value = "durroc01.m2", + text = "durroc01.m2", + }, + { + fileId = "218777", + value = "durroc02.m2", + text = "durroc02.m2", + }, + { + fileId = "218778", + value = "durroc03.m2", + text = "durroc03.m2", + }, + { + fileId = "218779", + value = "durroc04.m2", + text = "durroc04.m2", + }, + { + fileId = "218782", + value = "dwmbus01.m2", + text = "dwmbus01.m2", + }, + { + fileId = "218783", + value = "dwmbus02.m2", + text = "dwmbus02.m2", + }, + { + fileId = "218784", + value = "dwmbus03.m2", + text = "dwmbus03.m2", + }, + { + fileId = "218785", + value = "dwmbus04.m2", + text = "dwmbus04.m2", + }, + { + fileId = "218786", + value = "dwmbus05.m2", + text = "dwmbus05.m2", + }, + { + fileId = "218787", + value = "dwmgra01.m2", + text = "dwmgra01.m2", + }, + { + fileId = "218788", + value = "dwmgra02.m2", + text = "dwmgra02.m2", + }, + { + fileId = "218789", + value = "dwmgra03.m2", + text = "dwmgra03.m2", + }, + { + fileId = "218790", + value = "dwmgra04.m2", + text = "dwmgra04.m2", + }, + { + fileId = "218791", + value = "dwmgra05.m2", + text = "dwmgra05.m2", + }, + { + fileId = "218792", + value = "dwmgra06.m2", + text = "dwmgra06.m2", + }, + { + fileId = "218793", + value = "dwmroc01.m2", + text = "dwmroc01.m2", + }, + { + fileId = "218794", + value = "dwmroc02.m2", + text = "dwmroc02.m2", + }, + { + fileId = "218795", + value = "dwpbra01.m2", + text = "dwpbra01.m2", + }, + { + fileId = "218796", + value = "dwpbra02.m2", + text = "dwpbra02.m2", + }, + { + fileId = "218797", + value = "dwpbra03.m2", + text = "dwpbra03.m2", + }, + { + fileId = "218798", + value = "dwpgra01.m2", + text = "dwpgra01.m2", + }, + { + fileId = "218799", + value = "dwpgra02.m2", + text = "dwpgra02.m2", + }, + { + fileId = "218800", + value = "dwpgra03.m2", + text = "dwpgra03.m2", + }, + { + fileId = "218801", + value = "dwproc01.m2", + text = "dwproc01.m2", + }, + { + fileId = "218802", + value = "dwproc02.m2", + text = "dwproc02.m2", + }, + { + fileId = "218803", + value = "dwproc03.m2", + text = "dwproc03.m2", + }, + { + fileId = "218804", + value = "dwpwea01.m2", + text = "dwpwea01.m2", + }, + { + fileId = "218805", + value = "dwpwea02.m2", + text = "dwpwea02.m2", + }, + { + fileId = "218806", + value = "dwpwea03.m2", + text = "dwpwea03.m2", + }, + { + fileId = "218807", + value = "dwpwea04.m2", + text = "dwpwea04.m2", + }, + { + fileId = "218809", + value = "elwflo01.m2", + text = "elwflo01.m2", + }, + { + fileId = "218810", + value = "elwflo02.m2", + text = "elwflo02.m2", + }, + { + fileId = "218811", + value = "elwflo03.m2", + text = "elwflo03.m2", + }, + { + fileId = "218812", + value = "elwgra01.m2", + text = "elwgra01.m2", + }, + { + fileId = "218813", + value = "elwgra02.m2", + text = "elwgra02.m2", + }, + { + fileId = "218814", + value = "elwgra03.m2", + text = "elwgra03.m2", + }, + { + fileId = "218815", + value = "elwgra04.m2", + text = "elwgra04.m2", + }, + { + fileId = "218816", + value = "elwgra05.m2", + text = "elwgra05.m2", + }, + { + fileId = "218817", + value = "elwgra06.m2", + text = "elwgra06.m2", + }, + { + fileId = "218818", + value = "elwgra07.m2", + text = "elwgra07.m2", + }, + { + fileId = "218819", + value = "elwgra08.m2", + text = "elwgra08.m2", + }, + { + fileId = "218820", + value = "elwroc01.m2", + text = "elwroc01.m2", + }, + { + fileId = "218821", + value = "elwroc02.m2", + text = "elwroc02.m2", + }, + { + fileId = "218822", + value = "emdcre01.m2", + text = "emdcre01.m2", + }, + { + fileId = "218823", + value = "emdcre02.m2", + text = "emdcre02.m2", + }, + { + fileId = "218824", + value = "emdcre03.m2", + text = "emdcre03.m2", + }, + { + fileId = "218825", + value = "emdcre04.m2", + text = "emdcre04.m2", + }, + { + fileId = "218826", + value = "emdcre05.m2", + text = "emdcre05.m2", + }, + { + fileId = "218827", + value = "emdcre06.m2", + text = "emdcre06.m2", + }, + { + fileId = "218828", + value = "emdflo01.m2", + text = "emdflo01.m2", + }, + { + fileId = "218829", + value = "emdflo02.m2", + text = "emdflo02.m2", + }, + { + fileId = "218830", + value = "emdgra01.m2", + text = "emdgra01.m2", + }, + { + fileId = "218831", + value = "emdgra02.m2", + text = "emdgra02.m2", + }, + { + fileId = "218832", + value = "emdgra03.m2", + text = "emdgra03.m2", + }, + { + fileId = "218833", + value = "emdgra04.m2", + text = "emdgra04.m2", + }, + { + fileId = "218834", + value = "emdgra05.m2", + text = "emdgra05.m2", + }, + { + fileId = "218835", + value = "emdgra06.m2", + text = "emdgra06.m2", + }, + { + fileId = "218838", + value = "eplbon01.m2", + text = "eplbon01.m2", + }, + { + fileId = "218839", + value = "eplbon02.m2", + text = "eplbon02.m2", + }, + { + fileId = "218840", + value = "eplbon03.m2", + text = "eplbon03.m2", + }, + { + fileId = "218841", + value = "eplbon04.m2", + text = "eplbon04.m2", + }, + { + fileId = "218842", + value = "eplbon05.m2", + text = "eplbon05.m2", + }, + { + fileId = "218843", + value = "eplbon06.m2", + text = "eplbon06.m2", + }, + { + fileId = "218844", + value = "eplbus01.m2", + text = "eplbus01.m2", + }, + { + fileId = "218845", + value = "eplbus02.m2", + text = "eplbus02.m2", + }, + { + fileId = "218846", + value = "eplbus03.m2", + text = "eplbus03.m2", + }, + { + fileId = "218847", + value = "eplbus04.m2", + text = "eplbus04.m2", + }, + { + fileId = "218848", + value = "eplbus05.m2", + text = "eplbus05.m2", + }, + { + fileId = "218849", + value = "eplbus06.m2", + text = "eplbus06.m2", + }, + { + fileId = "218850", + value = "eplbus07.m2", + text = "eplbus07.m2", + }, + { + fileId = "218851", + value = "eplgra01.m2", + text = "eplgra01.m2", + }, + { + fileId = "218852", + value = "eplgra02.m2", + text = "eplgra02.m2", + }, + { + fileId = "218853", + value = "eplgra03.m2", + text = "eplgra03.m2", + }, + { + fileId = "218854", + value = "eplmus01.m2", + text = "eplmus01.m2", + }, + { + fileId = "218855", + value = "eplmus02.m2", + text = "eplmus02.m2", + }, + { + fileId = "218856", + value = "felbus01.m2", + text = "felbus01.m2", + }, + { + fileId = "218857", + value = "felbus02.m2", + text = "felbus02.m2", + }, + { + fileId = "218858", + value = "felbus03.m2", + text = "felbus03.m2", + }, + { + fileId = "218859", + value = "felbus04.m2", + text = "felbus04.m2", + }, + { + fileId = "218860", + value = "felflo01.m2", + text = "felflo01.m2", + }, + { + fileId = "218861", + value = "felflo02.m2", + text = "felflo02.m2", + }, + { + fileId = "218862", + value = "felgra01.m2", + text = "felgra01.m2", + }, + { + fileId = "218863", + value = "felgra02.m2", + text = "felgra02.m2", + }, + { + fileId = "218864", + value = "felgra03.m2", + text = "felgra03.m2", + }, + { + fileId = "218865", + value = "felgra04.m2", + text = "felgra04.m2", + }, + { + fileId = "218879", + value = "gstbus01.m2", + text = "gstbus01.m2", + }, + { + fileId = "218880", + value = "gstbus02.m2", + text = "gstbus02.m2", + }, + { + fileId = "218881", + value = "gstbus03.m2", + text = "gstbus03.m2", + }, + { + fileId = "218882", + value = "gstflo01.m2", + text = "gstflo01.m2", + }, + { + fileId = "218883", + value = "gstflo02.m2", + text = "gstflo02.m2", + }, + { + fileId = "218884", + value = "gstflo03.m2", + text = "gstflo03.m2", + }, + { + fileId = "218885", + value = "gstgra01.m2", + text = "gstgra01.m2", + }, + { + fileId = "218886", + value = "gstgra02.m2", + text = "gstgra02.m2", + }, + { + fileId = "218887", + value = "gstgra03.m2", + text = "gstgra03.m2", + }, + { + fileId = "218899", + value = "hyjbus01.m2", + text = "hyjbus01.m2", + }, + { + fileId = "218900", + value = "hyjbus02.m2", + text = "hyjbus02.m2", + }, + { + fileId = "218901", + value = "hyjbus03.m2", + text = "hyjbus03.m2", + }, + { + fileId = "218902", + value = "hyjbus04.m2", + text = "hyjbus04.m2", + }, + { + fileId = "218903", + value = "hyjbus05.m2", + text = "hyjbus05.m2", + }, + { + fileId = "218904", + value = "hyjgra01.m2", + text = "hyjgra01.m2", + }, + { + fileId = "218905", + value = "hyjgra02.m2", + text = "hyjgra02.m2", + }, + { + fileId = "218906", + value = "hyjgra03.m2", + text = "hyjgra03.m2", + }, + { + fileId = "218917", + value = "kalbus01.m2", + text = "kalbus01.m2", + }, + { + fileId = "218918", + value = "kalbus02.m2", + text = "kalbus02.m2", + }, + { + fileId = "218919", + value = "kalbus03.m2", + text = "kalbus03.m2", + }, + { + fileId = "218920", + value = "kalbus04.m2", + text = "kalbus04.m2", + }, + { + fileId = "218921", + value = "kalflo01.m2", + text = "kalflo01.m2", + }, + { + fileId = "218922", + value = "kalflo02.m2", + text = "kalflo02.m2", + }, + { + fileId = "218923", + value = "kalflo03.m2", + text = "kalflo03.m2", + }, + { + fileId = "218924", + value = "kalflo04.m2", + text = "kalflo04.m2", + }, + { + fileId = "218925", + value = "kalgra01.m2", + text = "kalgra01.m2", + }, + { + fileId = "218926", + value = "kalgra02.m2", + text = "kalgra02.m2", + }, + { + fileId = "218927", + value = "kalgra03.m2", + text = "kalgra03.m2", + }, + { + fileId = "218928", + value = "kalgra04.m2", + text = "kalgra04.m2", + }, + { + fileId = "218929", + value = "kalgra05.m2", + text = "kalgra05.m2", + }, + { + fileId = "218932", + value = "lakgra01.m2", + text = "lakgra01.m2", + }, + { + fileId = "218933", + value = "lakgra02.m2", + text = "lakgra02.m2", + }, + { + fileId = "218934", + value = "lakgra03.m2", + text = "lakgra03.m2", + }, + { + fileId = "218935", + value = "lakgra04.m2", + text = "lakgra04.m2", + }, + { + fileId = "218936", + value = "lakgra05.m2", + text = "lakgra05.m2", + }, + { + fileId = "218937", + value = "lakgra06.m2", + text = "lakgra06.m2", + }, + { + fileId = "218938", + value = "lakgra07.m2", + text = "lakgra07.m2", + }, + { + fileId = "218939", + value = "lchbus01.m2", + text = "lchbus01.m2", + }, + { + fileId = "218940", + value = "lchflo01.m2", + text = "lchflo01.m2", + }, + { + fileId = "218941", + value = "lchflo02.m2", + text = "lchflo02.m2", + }, + { + fileId = "218942", + value = "lchflo03.m2", + text = "lchflo03.m2", + }, + { + fileId = "218943", + value = "lchflo04.m2", + text = "lchflo04.m2", + }, + { + fileId = "218944", + value = "lchflo05.m2", + text = "lchflo05.m2", + }, + { + fileId = "218945", + value = "lchflo06.m2", + text = "lchflo06.m2", + }, + { + fileId = "218946", + value = "lchflo07.m2", + text = "lchflo07.m2", + }, + { + fileId = "218947", + value = "lchflo08.m2", + text = "lchflo08.m2", + }, + { + fileId = "218948", + value = "lchflo09.m2", + text = "lchflo09.m2", + }, + { + fileId = "218949", + value = "lchgra01.m2", + text = "lchgra01.m2", + }, + { + fileId = "218950", + value = "lchgra02.m2", + text = "lchgra02.m2", + }, + { + fileId = "218951", + value = "lchgra03.m2", + text = "lchgra03.m2", + }, + { + fileId = "218952", + value = "lchroc01.m2", + text = "lchroc01.m2", + }, + { + fileId = "218953", + value = "lchroc02.m2", + text = "lchroc02.m2", + }, + { + fileId = "218954", + value = "lchroc03.m2", + text = "lchroc03.m2", + }, + { + fileId = "218955", + value = "lchroc04.m2", + text = "lchroc04.m2", + }, + { + fileId = "218957", + value = "mulbus01.m2", + text = "mulbus01.m2", + }, + { + fileId = "218958", + value = "mulbus02.m2", + text = "mulbus02.m2", + }, + { + fileId = "218959", + value = "mulbus03.m2", + text = "mulbus03.m2", + }, + { + fileId = "218960", + value = "mulbus04.m2", + text = "mulbus04.m2", + }, + { + fileId = "218961", + value = "mulflo01.m2", + text = "mulflo01.m2", + }, + { + fileId = "218962", + value = "mulgra01.m2", + text = "mulgra01.m2", + }, + { + fileId = "218963", + value = "mulgra02.m2", + text = "mulgra02.m2", + }, + { + fileId = "218964", + value = "mulgra03.m2", + text = "mulgra03.m2", + }, + { + fileId = "218965", + value = "mulgra04.m2", + text = "mulgra04.m2", + }, + { + fileId = "218966", + value = "mulgra05.m2", + text = "mulgra05.m2", + }, + { + fileId = "218967", + value = "mulgra06.m2", + text = "mulgra06.m2", + }, + { + fileId = "218969", + value = "mulroc01.m2", + text = "mulroc01.m2", + }, + { + fileId = "218970", + value = "mulroc02.m2", + text = "mulroc02.m2", + }, + { + fileId = "218971", + value = "naggra01.m2", + text = "naggra01.m2", + }, + { + fileId = "218972", + value = "naggra02.m2", + text = "naggra02.m2", + }, + { + fileId = "218973", + value = "naggra03.m2", + text = "naggra03.m2", + }, + { + fileId = "218974", + value = "naggra04.m2", + text = "naggra04.m2", + }, + { + fileId = "218975", + value = "naggra05.m2", + text = "naggra05.m2", + }, + { + fileId = "218976", + value = "naggra06.m2", + text = "naggra06.m2", + }, + { + fileId = "218980", + value = "nethroc01.m2", + text = "nethroc01.m2", + }, + { + fileId = "218981", + value = "nethroc02.m2", + text = "nethroc02.m2", + }, + { + fileId = "218984", + value = "plaguelandsfun01.m2", + text = "plaguelandsfun01.m2", + }, + { + fileId = "218985", + value = "plaguelandsfun02.m2", + text = "plaguelandsfun02.m2", + }, + { + fileId = "218986", + value = "plaguelandsgra01.m2", + text = "plaguelandsgra01.m2", + }, + { + fileId = "218987", + value = "plaguelandsgra02.m2", + text = "plaguelandsgra02.m2", + }, + { + fileId = "218988", + value = "plaguelandsmus01.m2", + text = "plaguelandsmus01.m2", + }, + { + fileId = "218989", + value = "plaguelandsmus02.m2", + text = "plaguelandsmus02.m2", + }, + { + fileId = "218990", + value = "plaguelandspla01.m2", + text = "plaguelandspla01.m2", + }, + { + fileId = "218991", + value = "plaguelandspla02.m2", + text = "plaguelandspla02.m2", + }, + { + fileId = "218992", + value = "plaguelandsroc01.m2", + text = "plaguelandsroc01.m2", + }, + { + fileId = "218993", + value = "plaguelandsspo01.m2", + text = "plaguelandsspo01.m2", + }, + { + fileId = "218994", + value = "redbus01.m2", + text = "redbus01.m2", + }, + { + fileId = "218995", + value = "redbus02.m2", + text = "redbus02.m2", + }, + { + fileId = "218996", + value = "redbus03.m2", + text = "redbus03.m2", + }, + { + fileId = "218997", + value = "redflo01.m2", + text = "redflo01.m2", + }, + { + fileId = "218998", + value = "redflo02.m2", + text = "redflo02.m2", + }, + { + fileId = "218999", + value = "redflo03.m2", + text = "redflo03.m2", + }, + { + fileId = "219000", + value = "redflo04.m2", + text = "redflo04.m2", + }, + { + fileId = "219001", + value = "redgra01.m2", + text = "redgra01.m2", + }, + { + fileId = "219002", + value = "redgra02.m2", + text = "redgra02.m2", + }, + { + fileId = "219004", + value = "redroc01.m2", + text = "redroc01.m2", + }, + { + fileId = "219005", + value = "redroc02.m2", + text = "redroc02.m2", + }, + { + fileId = "219018", + value = "sivbus01.m2", + text = "sivbus01.m2", + }, + { + fileId = "219019", + value = "sivbus02.m2", + text = "sivbus02.m2", + }, + { + fileId = "219020", + value = "sivcon01.m2", + text = "sivcon01.m2", + }, + { + fileId = "219021", + value = "sivcon02.m2", + text = "sivcon02.m2", + }, + { + fileId = "219022", + value = "sivflo01.m2", + text = "sivflo01.m2", + }, + { + fileId = "219023", + value = "sivflo02.m2", + text = "sivflo02.m2", + }, + { + fileId = "219024", + value = "sivflo03.m2", + text = "sivflo03.m2", + }, + { + fileId = "219025", + value = "sivgra01.m2", + text = "sivgra01.m2", + }, + { + fileId = "219026", + value = "sivroc01.m2", + text = "sivroc01.m2", + }, + { + fileId = "219027", + value = "sivroc02.m2", + text = "sivroc02.m2", + }, + { + fileId = "219028", + value = "sivsap01.m2", + text = "sivsap01.m2", + }, + { + fileId = "219029", + value = "sivtho01.m2", + text = "sivtho01.m2", + }, + { + fileId = "219030", + value = "sivtho02.m2", + text = "sivtho02.m2", + }, + { + fileId = "219031", + value = "sivtho03.m2", + text = "sivtho03.m2", + }, + { + fileId = "219032", + value = "sivtho04.m2", + text = "sivtho04.m2", + }, + { + fileId = "219033", + value = "sivtho05.m2", + text = "sivtho05.m2", + }, + { + fileId = "219034", + value = "sivvin01.m2", + text = "sivvin01.m2", + }, + { + fileId = "219035", + value = "smnflo01.m2", + text = "smnflo01.m2", + }, + { + fileId = "219036", + value = "smnflo02.m2", + text = "smnflo02.m2", + }, + { + fileId = "219037", + value = "smnflo03.m2", + text = "smnflo03.m2", + }, + { + fileId = "219038", + value = "smngra01.m2", + text = "smngra01.m2", + }, + { + fileId = "219039", + value = "smngra02.m2", + text = "smngra02.m2", + }, + { + fileId = "219040", + value = "smybus01.m2", + text = "smybus01.m2", + }, + { + fileId = "219041", + value = "smybus02.m2", + text = "smybus02.m2", + }, + { + fileId = "219042", + value = "smybus03.m2", + text = "smybus03.m2", + }, + { + fileId = "219043", + value = "smybus04.m2", + text = "smybus04.m2", + }, + { + fileId = "219044", + value = "smybus05.m2", + text = "smybus05.m2", + }, + { + fileId = "219045", + value = "smyflo01.m2", + text = "smyflo01.m2", + }, + { + fileId = "219046", + value = "smyflo02.m2", + text = "smyflo02.m2", + }, + { + fileId = "219047", + value = "smygra01.m2", + text = "smygra01.m2", + }, + { + fileId = "219048", + value = "smygra02.m2", + text = "smygra02.m2", + }, + { + fileId = "219049", + value = "smygra03.m2", + text = "smygra03.m2", + }, + { + fileId = "219050", + value = "smygra04.m2", + text = "smygra04.m2", + }, + { + fileId = "219051", + value = "sosbus01.m2", + text = "sosbus01.m2", + }, + { + fileId = "219052", + value = "sosbus02.m2", + text = "sosbus02.m2", + }, + { + fileId = "219053", + value = "sosbus03.m2", + text = "sosbus03.m2", + }, + { + fileId = "219054", + value = "sosbus04.m2", + text = "sosbus04.m2", + }, + { + fileId = "219055", + value = "sosbus05.m2", + text = "sosbus05.m2", + }, + { + fileId = "219056", + value = "sosflo01.m2", + text = "sosflo01.m2", + }, + { + fileId = "219057", + value = "sosflo02.m2", + text = "sosflo02.m2", + }, + { + fileId = "219058", + value = "sosflo03.m2", + text = "sosflo03.m2", + }, + { + fileId = "219059", + value = "sosgra01.m2", + text = "sosgra01.m2", + }, + { + fileId = "219060", + value = "sosgra02.m2", + text = "sosgra02.m2", + }, + { + fileId = "219061", + value = "sosgra03.m2", + text = "sosgra03.m2", + }, + { + fileId = "219062", + value = "sosgra04.m2", + text = "sosgra04.m2", + }, + { + fileId = "219063", + value = "sosgra05.m2", + text = "sosgra05.m2", + }, + { + fileId = "219064", + value = "sosgra06.m2", + text = "sosgra06.m2", + }, + { + fileId = "219065", + value = "sosgra07.m2", + text = "sosgra07.m2", + }, + { + fileId = "219066", + value = "stlbus01.m2", + text = "stlbus01.m2", + }, + { + fileId = "219067", + value = "stlbus02.m2", + text = "stlbus02.m2", + }, + { + fileId = "219068", + value = "stlbus03.m2", + text = "stlbus03.m2", + }, + { + fileId = "219069", + value = "stlflo01.m2", + text = "stlflo01.m2", + }, + { + fileId = "219070", + value = "stlflo02.m2", + text = "stlflo02.m2", + }, + { + fileId = "219071", + value = "stlflo03.m2", + text = "stlflo03.m2", + }, + { + fileId = "219072", + value = "stlflo04.m2", + text = "stlflo04.m2", + }, + { + fileId = "219073", + value = "stlflo05.m2", + text = "stlflo05.m2", + }, + { + fileId = "219074", + value = "stlgra01.m2", + text = "stlgra01.m2", + }, + { + fileId = "219075", + value = "stlgra02.m2", + text = "stlgra02.m2", + }, + { + fileId = "219076", + value = "stlgra03.m2", + text = "stlgra03.m2", + }, + { + fileId = "219077", + value = "stlroc01.m2", + text = "stlroc01.m2", + }, + { + fileId = "219078", + value = "stlroc02.m2", + text = "stlroc02.m2", + }, + { + fileId = "219079", + value = "stmbra01.m2", + text = "stmbra01.m2", + }, + { + fileId = "219080", + value = "stmbra02.m2", + text = "stmbra02.m2", + }, + { + fileId = "219081", + value = "stmbra03.m2", + text = "stmbra03.m2", + }, + { + fileId = "219082", + value = "stmbra04.m2", + text = "stmbra04.m2", + }, + { + fileId = "219083", + value = "stmgra01.m2", + text = "stmgra01.m2", + }, + { + fileId = "219084", + value = "stmgra02.m2", + text = "stmgra02.m2", + }, + { + fileId = "219085", + value = "stmgra03.m2", + text = "stmgra03.m2", + }, + { + fileId = "219086", + value = "stmgra04.m2", + text = "stmgra04.m2", + }, + { + fileId = "219087", + value = "stmgra05.m2", + text = "stmgra05.m2", + }, + { + fileId = "219093", + value = "tifbus01.m2", + text = "tifbus01.m2", + }, + { + fileId = "219094", + value = "tifbus02.m2", + text = "tifbus02.m2", + }, + { + fileId = "219095", + value = "tifcon01.m2", + text = "tifcon01.m2", + }, + { + fileId = "219096", + value = "tifcon02.m2", + text = "tifcon02.m2", + }, + { + fileId = "219097", + value = "tifgra01.m2", + text = "tifgra01.m2", + }, + { + fileId = "219098", + value = "tifpla01.m2", + text = "tifpla01.m2", + }, + { + fileId = "219099", + value = "tifroc01.m2", + text = "tifroc01.m2", + }, + { + fileId = "219100", + value = "tifroc02.m2", + text = "tifroc02.m2", + }, + { + fileId = "219101", + value = "tifsap01.m2", + text = "tifsap01.m2", + }, + { + fileId = "219102", + value = "tifshl01.m2", + text = "tifshl01.m2", + }, + { + fileId = "219103", + value = "tifshl02.m2", + text = "tifshl02.m2", + }, + { + fileId = "219104", + value = "tifshl03.m2", + text = "tifshl03.m2", + }, + { + fileId = "219105", + value = "tiftho01.m2", + text = "tiftho01.m2", + }, + { + fileId = "219106", + value = "tiftho02.m2", + text = "tiftho02.m2", + }, + { + fileId = "219107", + value = "tiftho03.m2", + text = "tiftho03.m2", + }, + { + fileId = "219108", + value = "tiftho04.m2", + text = "tiftho04.m2", + }, + { + fileId = "219110", + value = "tkrbra01.m2", + text = "tkrbra01.m2", + }, + { + fileId = "219111", + value = "tkrbra02.m2", + text = "tkrbra02.m2", + }, + { + fileId = "219112", + value = "tkrbra03.m2", + text = "tkrbra03.m2", + }, + { + fileId = "219113", + value = "tkrgra01.m2", + text = "tkrgra01.m2", + }, + { + fileId = "219114", + value = "tkrgra02.m2", + text = "tkrgra02.m2", + }, + { + fileId = "219115", + value = "tkrgra03.m2", + text = "tkrgra03.m2", + }, + { + fileId = "219116", + value = "tkrroc01.m2", + text = "tkrroc01.m2", + }, + { + fileId = "219117", + value = "tkrroc02.m2", + text = "tkrroc02.m2", + }, + { + fileId = "219118", + value = "tkrroc03.m2", + text = "tkrroc03.m2", + }, + { + fileId = "219119", + value = "tkrwea01.m2", + text = "tkrwea01.m2", + }, + { + fileId = "219120", + value = "tkrwea02.m2", + text = "tkrwea02.m2", + }, + { + fileId = "219121", + value = "tkrwea03.m2", + text = "tkrwea03.m2", + }, + { + fileId = "219122", + value = "tkrwea04.m2", + text = "tkrwea04.m2", + }, + { + fileId = "219124", + value = "ungbun01.m2", + text = "ungbun01.m2", + }, + { + fileId = "219125", + value = "ungbun02.m2", + text = "ungbun02.m2", + }, + { + fileId = "219126", + value = "ungbun03.m2", + text = "ungbun03.m2", + }, + { + fileId = "219127", + value = "ungflo01.m2", + text = "ungflo01.m2", + }, + { + fileId = "219128", + value = "ungflo02.m2", + text = "ungflo02.m2", + }, + { + fileId = "219129", + value = "unggra01.m2", + text = "unggra01.m2", + }, + { + fileId = "219130", + value = "unggra02.m2", + text = "unggra02.m2", + }, + { + fileId = "219131", + value = "unggra03.m2", + text = "unggra03.m2", + }, + { + fileId = "219132", + value = "unggra04.m2", + text = "unggra04.m2", + }, + { + fileId = "219133", + value = "unggra05.m2", + text = "unggra05.m2", + }, + { + fileId = "219134", + value = "unggra06.m2", + text = "unggra06.m2", + }, + { + fileId = "219135", + value = "unggra07.m2", + text = "unggra07.m2", + }, + { + fileId = "219136", + value = "unggra08.m2", + text = "unggra08.m2", + }, + { + fileId = "219138", + value = "unwcor01.m2", + text = "unwcor01.m2", + }, + { + fileId = "219139", + value = "unwcor02.m2", + text = "unwcor02.m2", + }, + { + fileId = "219140", + value = "unwcor03.m2", + text = "unwcor03.m2", + }, + { + fileId = "219141", + value = "unwcor04.m2", + text = "unwcor04.m2", + }, + { + fileId = "219142", + value = "unwcor05.m2", + text = "unwcor05.m2", + }, + { + fileId = "219143", + value = "unwcor06.m2", + text = "unwcor06.m2", + }, + { + fileId = "219144", + value = "unwcor07.m2", + text = "unwcor07.m2", + }, + { + fileId = "219145", + value = "unwcor08.m2", + text = "unwcor08.m2", + }, + { + fileId = "219146", + value = "unwcor09.m2", + text = "unwcor09.m2", + }, + { + fileId = "219147", + value = "unwgra01.m2", + text = "unwgra01.m2", + }, + { + fileId = "219148", + value = "unwgra02.m2", + text = "unwgra02.m2", + }, + { + fileId = "219149", + value = "unwgra03.m2", + text = "unwgra03.m2", + }, + { + fileId = "219150", + value = "unwshl01.m2", + text = "unwshl01.m2", + }, + { + fileId = "219151", + value = "unwshl02.m2", + text = "unwshl02.m2", + }, + { + fileId = "219152", + value = "wesbus01.m2", + text = "wesbus01.m2", + }, + { + fileId = "219153", + value = "wesbus02.m2", + text = "wesbus02.m2", + }, + { + fileId = "219154", + value = "wesbus03.m2", + text = "wesbus03.m2", + }, + { + fileId = "219155", + value = "wesflo01.m2", + text = "wesflo01.m2", + }, + { + fileId = "219156", + value = "wesgra01.m2", + text = "wesgra01.m2", + }, + { + fileId = "219157", + value = "wesgra02.m2", + text = "wesgra02.m2", + }, + { + fileId = "219158", + value = "wesgra03.m2", + text = "wesgra03.m2", + }, + { + fileId = "219159", + value = "wesgra04.m2", + text = "wesgra04.m2", + }, + { + fileId = "219160", + value = "wesroc01.m2", + text = "wesroc01.m2", + }, + { + fileId = "219161", + value = "wesroc02.m2", + text = "wesroc02.m2", + }, + { + fileId = "219162", + value = "wesshe01.m2", + text = "wesshe01.m2", + }, + { + fileId = "219163", + value = "wesshe02.m2", + text = "wesshe02.m2", + }, + { + fileId = "219164", + value = "wesshe03.m2", + text = "wesshe03.m2", + }, + { + fileId = "219166", + value = "weswea01.m2", + text = "weswea01.m2", + }, + { + fileId = "219167", + value = "weswea02.m2", + text = "weswea02.m2", + }, + { + fileId = "219168", + value = "weswea03.m2", + text = "weswea03.m2", + }, + { + fileId = "219169", + value = "weswea04.m2", + text = "weswea04.m2", + }, + { + fileId = "219170", + value = "wetbus01.m2", + text = "wetbus01.m2", + }, + { + fileId = "219171", + value = "wetbus02.m2", + text = "wetbus02.m2", + }, + { + fileId = "219172", + value = "wetbus03.m2", + text = "wetbus03.m2", + }, + { + fileId = "219173", + value = "wetflo01.m2", + text = "wetflo01.m2", + }, + { + fileId = "219174", + value = "wetflo02.m2", + text = "wetflo02.m2", + }, + { + fileId = "219175", + value = "wetflo03.m2", + text = "wetflo03.m2", + }, + { + fileId = "219176", + value = "wetflo04.m2", + text = "wetflo04.m2", + }, + { + fileId = "219177", + value = "wetflo05.m2", + text = "wetflo05.m2", + }, + { + fileId = "219178", + value = "wetgra01.m2", + text = "wetgra01.m2", + }, + { + fileId = "219179", + value = "wetgra02.m2", + text = "wetgra02.m2", + }, + { + fileId = "219180", + value = "wetgra03.m2", + text = "wetgra03.m2", + }, + { + fileId = "219196", + value = "zmgra01.m2", + text = "zmgra01.m2", + }, + { + fileId = "219197", + value = "zmgra02.m2", + text = "zmgra02.m2", + }, + { + fileId = "219198", + value = "zmgra03.m2", + text = "zmgra03.m2", + }, + { + fileId = "219199", + value = "zmgra04.m2", + text = "zmgra04.m2", + }, + { + fileId = "219200", + value = "zmgra06.m2", + text = "zmgra06.m2", + }, + { + fileId = "219201", + value = "zmgra07.m2", + text = "zmgra07.m2", + }, + { + fileId = "219202", + value = "zmmush01.m2", + text = "zmmush01.m2", + }, + { + fileId = "219203", + value = "zmspo05.m2", + text = "zmspo05.m2", + }, + }, + value = "detail", + text = "detail", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "219204", + value = "ahnqiraj_lightshaft.m2", + text = "ahnqiraj_lightshaft.m2", + }, + { + fileId = "219205", + value = "cot_lightshafta.m2", + text = "cot_lightshafta.m2", + }, + { + fileId = "219207", + value = "darnassislightshaft.m2", + text = "darnassislightshaft.m2", + }, + { + fileId = "219209", + value = "karazahndiningrays.m2", + text = "karazahndiningrays.m2", + }, + { + fileId = "219210", + value = "ld_lightshaft01.m2", + text = "ld_lightshaft01.m2", + }, + { + fileId = "219211", + value = "ld_lightshaft02.m2", + text = "ld_lightshaft02.m2", + }, + { + fileId = "219220", + value = "lightshafta.m2", + text = "lightshafta.m2", + }, + { + fileId = "219221", + value = "lightshaftb.m2", + text = "lightshaftb.m2", + }, + { + fileId = "219222", + value = "lightshaftc.m2", + text = "lightshaftc.m2", + }, + { + fileId = "219224", + value = "lightshaftthorns.m2", + text = "lightshaftthorns.m2", + }, + { + fileId = "219225", + value = "st_lightshaft.m2", + text = "st_lightshaft.m2", + }, + { + fileId = "219226", + value = "uthershrinelightbeam.m2", + text = "uthershrinelightbeam.m2", + }, + }, + value = "volumetriclights", + text = "volumetriclights", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "generic", + text = "generic", + }, + }, + value = "nodxt", + text = "nodxt", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "219227", + value = "bladethrowerruined01.m2", + text = "bladethrowerruined01.m2", + }, + { + fileId = "219229", + value = "orcblade.m2", + text = "orcblade.m2", + }, + { + fileId = "219230", + value = "orcbladethrower.m2", + text = "orcbladethrower.m2", + }, + }, + value = "bladethrower", + text = "bladethrower", + }, + { + fileId = "219236", + value = "caltrop01.m2", + text = "caltrop01.m2", + }, + { + children = { + { + fileId = "219237", + value = "outlanddeadcampfire.m2", + text = "outlanddeadcampfire.m2", + }, + }, + value = "campfire", + text = "campfire", + }, + { + children = { + { + fileId = "219239", + value = "outland_bone_dam.m2", + text = "outland_bone_dam.m2", + }, + }, + value = "dam", + text = "dam", + }, + { + children = { + { + fileId = "219241", + value = "outland_dead_demon.m2", + text = "outland_dead_demon.m2", + }, + }, + value = "deaddemon", + text = "deaddemon", + }, + { + children = { + { + fileId = "219245", + value = "outlandtowerfloatingrubble.m2", + text = "outlandtowerfloatingrubble.m2", + }, + }, + value = "floatingrubble", + text = "floatingrubble", + }, + { + children = { + { + fileId = "219248", + value = "outlandhangingcrystal01.m2", + text = "outlandhangingcrystal01.m2", + }, + }, + value = "hangingcrystals", + text = "hangingcrystals", + }, + { + children = { + { + fileId = "219250", + value = "outlandmonolith.m2", + text = "outlandmonolith.m2", + }, + }, + value = "monument", + text = "monument", + }, + { + children = { + { + fileId = "219254", + value = "outland_big_shroom01.m2", + text = "outland_big_shroom01.m2", + }, + { + fileId = "219255", + value = "outland_big_shroom02.m2", + text = "outland_big_shroom02.m2", + }, + { + fileId = "219256", + value = "outland_floating_shroom01.m2", + text = "outland_floating_shroom01.m2", + }, + { + fileId = "219257", + value = "outland_floating_shroom02.m2", + text = "outland_floating_shroom02.m2", + }, + }, + value = "mushrooms", + text = "mushrooms", + }, + { + children = { + { + fileId = "219264", + value = "outlandplant01.m2", + text = "outlandplant01.m2", + }, + { + fileId = "219265", + value = "outlandplant02.m2", + text = "outlandplant02.m2", + }, + { + fileId = "219266", + value = "outlandplant03.m2", + text = "outlandplant03.m2", + }, + { + fileId = "219267", + value = "outlandplant04.m2", + text = "outlandplant04.m2", + }, + { + fileId = "219268", + value = "outlandplant05.m2", + text = "outlandplant05.m2", + }, + { + fileId = "219269", + value = "outlandplant06.m2", + text = "outlandplant06.m2", + }, + }, + value = "plants", + text = "plants", + }, + { + children = { + { + fileId = "219276", + value = "floatingrocklarge01.m2", + text = "floatingrocklarge01.m2", + }, + { + fileId = "219277", + value = "floatingrocklarge02.m2", + text = "floatingrocklarge02.m2", + }, + { + fileId = "219278", + value = "floatingrocklarge03.m2", + text = "floatingrocklarge03.m2", + }, + { + fileId = "219279", + value = "floatingrockmedium01.m2", + text = "floatingrockmedium01.m2", + }, + { + fileId = "219280", + value = "floatingrockmedium02.m2", + text = "floatingrockmedium02.m2", + }, + { + fileId = "219281", + value = "floatingrockmedium03.m2", + text = "floatingrockmedium03.m2", + }, + { + fileId = "219282", + value = "floatingrocksmall01.m2", + text = "floatingrocksmall01.m2", + }, + { + fileId = "219283", + value = "floatingrocksmall02.m2", + text = "floatingrocksmall02.m2", + }, + { + fileId = "219284", + value = "floatingrocksmall03.m2", + text = "floatingrocksmall03.m2", + }, + { + fileId = "219286", + value = "outlandalienrock01.m2", + text = "outlandalienrock01.m2", + }, + { + fileId = "219287", + value = "outlandalienrock02.m2", + text = "outlandalienrock02.m2", + }, + { + fileId = "219288", + value = "outlandalienrock03.m2", + text = "outlandalienrock03.m2", + }, + { + fileId = "219289", + value = "outlandalienrock04.m2", + text = "outlandalienrock04.m2", + }, + { + fileId = "219290", + value = "outlandalienrock05.m2", + text = "outlandalienrock05.m2", + }, + { + fileId = "219291", + value = "outlandspookyrock01.m2", + text = "outlandspookyrock01.m2", + }, + { + fileId = "219292", + value = "outlandspookyrock02.m2", + text = "outlandspookyrock02.m2", + }, + { + fileId = "219293", + value = "outlandspookyrock03.m2", + text = "outlandspookyrock03.m2", + }, + { + fileId = "219294", + value = "outlandspookyrock04.m2", + text = "outlandspookyrock04.m2", + }, + }, + value = "rocks", + text = "rocks", + }, + { + children = { + { + fileId = "219299", + value = "outlandroot01.m2", + text = "outlandroot01.m2", + }, + { + fileId = "219300", + value = "outlandroot02.m2", + text = "outlandroot02.m2", + }, + { + fileId = "219301", + value = "outlandroot03.m2", + text = "outlandroot03.m2", + }, + }, + value = "roots", + text = "roots", + }, + { + children = { + { + fileId = "219303", + value = "outlandrubble01.m2", + text = "outlandrubble01.m2", + }, + { + fileId = "219304", + value = "outlandrubble02.m2", + text = "outlandrubble02.m2", + }, + { + fileId = "219305", + value = "outlandrubble03.m2", + text = "outlandrubble03.m2", + }, + { + fileId = "219306", + value = "outlandrubble04.m2", + text = "outlandrubble04.m2", + }, + { + fileId = "219307", + value = "outlandrubble05.m2", + text = "outlandrubble05.m2", + }, + }, + value = "rubble", + text = "rubble", + }, + { + children = { + { + fileId = "219309", + value = "outlandskybox.m2", + text = "outlandskybox.m2", + }, + }, + value = "skybox", + text = "skybox", + }, + { + children = { + { + fileId = "219313", + value = "humantankcannon.m2", + text = "humantankcannon.m2", + }, + { + fileId = "219314", + value = "humantanktower.m2", + text = "humantanktower.m2", + }, + { + fileId = "219315", + value = "humantankwheel.m2", + text = "humantankwheel.m2", + }, + }, + value = "tankparts", + text = "tankparts", + }, + { + children = { + { + fileId = "219318", + value = "outlandthorn01.m2", + text = "outlandthorn01.m2", + }, + { + fileId = "219319", + value = "outlandthorn02.m2", + text = "outlandthorn02.m2", + }, + { + fileId = "219320", + value = "outlandthorn03.m2", + text = "outlandthorn03.m2", + }, + { + fileId = "219321", + value = "outlandthorn04.m2", + text = "outlandthorn04.m2", + }, + { + fileId = "219322", + value = "outlandthorn05.m2", + text = "outlandthorn05.m2", + }, + { + fileId = "219323", + value = "outlandthorn06.m2", + text = "outlandthorn06.m2", + }, + { + fileId = "219324", + value = "outlandthorn07.m2", + text = "outlandthorn07.m2", + }, + }, + value = "thorns", + text = "thorns", + }, + { + children = { + { + fileId = "219330", + value = "outlandaloetree01.m2", + text = "outlandaloetree01.m2", + }, + { + fileId = "219331", + value = "outlandaloetree02.m2", + text = "outlandaloetree02.m2", + }, + { + fileId = "219332", + value = "outlandaloetree03.m2", + text = "outlandaloetree03.m2", + }, + { + fileId = "219333", + value = "outlandburnttree01.m2", + text = "outlandburnttree01.m2", + }, + { + fileId = "219334", + value = "outlandburnttree02.m2", + text = "outlandburnttree02.m2", + }, + { + fileId = "219335", + value = "outlandburnttree03.m2", + text = "outlandburnttree03.m2", + }, + { + fileId = "219336", + value = "outlandburnttree04.m2", + text = "outlandburnttree04.m2", + }, + { + fileId = "219337", + value = "outlandfloatingtree01.m2", + text = "outlandfloatingtree01.m2", + }, + { + fileId = "219338", + value = "outlandfloatingtree02.m2", + text = "outlandfloatingtree02.m2", + }, + { + fileId = "219339", + value = "outlandfloatingtree03.m2", + text = "outlandfloatingtree03.m2", + }, + { + fileId = "219341", + value = "outlandtreestump01.m2", + text = "outlandtreestump01.m2", + }, + { + fileId = "219342", + value = "outlandtreestump02.m2", + text = "outlandtreestump02.m2", + }, + { + fileId = "219343", + value = "outlandtreestump03.m2", + text = "outlandtreestump03.m2", + }, + { + fileId = "219344", + value = "outlandumbrellatree01.m2", + text = "outlandumbrellatree01.m2", + }, + { + fileId = "219345", + value = "outlandumbrellatree02.m2", + text = "outlandumbrellatree02.m2", + }, + { + fileId = "219346", + value = "outlandumbrellatree03.m2", + text = "outlandumbrellatree03.m2", + }, + { + fileId = "219347", + value = "outlandumbrellatree04.m2", + text = "outlandumbrellatree04.m2", + }, + { + fileId = "219348", + value = "outlandumbrellatree05.m2", + text = "outlandumbrellatree05.m2", + }, + { + fileId = "219349", + value = "outlandumbrellatree06.m2", + text = "outlandumbrellatree06.m2", + }, + { + fileId = "219350", + value = "outlandumbrellatree07.m2", + text = "outlandumbrellatree07.m2", + }, + { + fileId = "219351", + value = "outlandumbrellatree08.m2", + text = "outlandumbrellatree08.m2", + }, + { + fileId = "219352", + value = "outlandumbrellatree09.m2", + text = "outlandumbrellatree09.m2", + }, + { + fileId = "219353", + value = "outlandumbrellatree10.m2", + text = "outlandumbrellatree10.m2", + }, + }, + value = "trees", + text = "trees", + }, + }, + value = "passivedoodads", + text = "passivedoodads", + }, + }, + value = "outland", + text = "outland", + }, + { + children = { + { + fileId = "219356", + value = "1000x1000.m2", + text = "1000x1000.m2", + }, + { + fileId = "219357", + value = "100x100.m2", + text = "100x100.m2", + }, + { + fileId = "219361", + value = "250x250.m2", + text = "250x250.m2", + }, + { + fileId = "219362", + value = "500x500.m2", + text = "500x500.m2", + }, + { + fileId = "219363", + value = "50x50.m2", + text = "50x50.m2", + }, + { + fileId = "219368", + value = "humanmalescale.m2", + text = "humanmalescale.m2", + }, + }, + value = "scale", + text = "scale", + }, + { + children = { + { + children = { + { + fileId = "219372", + value = "treasurechest01.m2", + text = "treasurechest01.m2", + }, + }, + value = "containers", + text = "containers", + }, + { + children = { + { + fileId = "219378", + value = "blacksmithforge.m2", + text = "blacksmithforge.m2", + }, + { + fileId = "219382", + value = "engineering_autolathe_01.m2", + text = "engineering_autolathe_01.m2", + }, + { + fileId = "219394", + value = "tradeskill_alchemycauldron_blue.m2", + text = "tradeskill_alchemycauldron_blue.m2", + }, + { + fileId = "219395", + value = "tradeskill_alchemycauldron_green.m2", + text = "tradeskill_alchemycauldron_green.m2", + }, + { + fileId = "219396", + value = "tradeskill_alchemycauldron_purple.m2", + text = "tradeskill_alchemycauldron_purple.m2", + }, + { + fileId = "219397", + value = "tradeskill_alchemycauldron_red.m2", + text = "tradeskill_alchemycauldron_red.m2", + }, + { + fileId = "219398", + value = "tradeskill_alchemycauldron_white.m2", + text = "tradeskill_alchemycauldron_white.m2", + }, + { + fileId = "219399", + value = "tradeskill_alchemyset_01.m2", + text = "tradeskill_alchemyset_01.m2", + }, + { + fileId = "219400", + value = "tradeskill_alchemyset_02.m2", + text = "tradeskill_alchemyset_02.m2", + }, + { + fileId = "219401", + value = "tradeskill_alchemyset_03.m2", + text = "tradeskill_alchemyset_03.m2", + }, + { + fileId = "219402", + value = "tradeskill_anvil_01.m2", + text = "tradeskill_anvil_01.m2", + }, + { + fileId = "219403", + value = "tradeskill_anvil_02.m2", + text = "tradeskill_anvil_02.m2", + }, + { + fileId = "219404", + value = "tradeskill_fishschool_01.m2", + text = "tradeskill_fishschool_01.m2", + }, + { + fileId = "219405", + value = "tradeskill_fishschool_02.m2", + text = "tradeskill_fishschool_02.m2", + }, + { + fileId = "219406", + value = "tradeskill_fishschool_03.m2", + text = "tradeskill_fishschool_03.m2", + }, + { + fileId = "219407", + value = "tradeskill_fishschool_eelsyellow.m2", + text = "tradeskill_fishschool_eelsyellow.m2", + }, + { + fileId = "219408", + value = "tradeskill_fishschool_elementalfire.m2", + text = "tradeskill_fishschool_elementalfire.m2", + }, + { + fileId = "219409", + value = "tradeskill_fishschool_elementalwater.m2", + text = "tradeskill_fishschool_elementalwater.m2", + }, + { + fileId = "219410", + value = "tradeskill_fishschool_oil.m2", + text = "tradeskill_fishschool_oil.m2", + }, + { + fileId = "219411", + value = "tradeskill_fishschool_shipwreck.m2", + text = "tradeskill_fishschool_shipwreck.m2", + }, + { + fileId = "219412", + value = "tradeskill_forge_01.m2", + text = "tradeskill_forge_01.m2", + }, + { + fileId = "219413", + value = "tradeskill_forge_02.m2", + text = "tradeskill_forge_02.m2", + }, + { + fileId = "219414", + value = "tradeskill_forge_03.m2", + text = "tradeskill_forge_03.m2", + }, + }, + value = "tradeskillenablers", + text = "tradeskillenablers", + }, + { + children = { + { + fileId = "219418", + value = "adamantium_miningnode_01.m2", + text = "adamantium_miningnode_01.m2", + }, + { + fileId = "219422", + value = "ancientgem_miningnode_01.m2", + text = "ancientgem_miningnode_01.m2", + }, + { + fileId = "219434", + value = "bush_ancientlichen.m2", + text = "bush_ancientlichen.m2", + }, + { + fileId = "219436", + value = "bush_arthastears.m2", + text = "bush_arthastears.m2", + }, + { + fileId = "219437", + value = "bush_blacklotus.m2", + text = "bush_blacklotus.m2", + }, + { + fileId = "219438", + value = "bush_blindweed.m2", + text = "bush_blindweed.m2", + }, + { + fileId = "219439", + value = "bush_bloodthistle.m2", + text = "bush_bloodthistle.m2", + }, + { + fileId = "219440", + value = "bush_bruiseweed01.m2", + text = "bush_bruiseweed01.m2", + }, + { + fileId = "219443", + value = "bush_crownroyal01.m2", + text = "bush_crownroyal01.m2", + }, + { + fileId = "219444", + value = "bush_dreamfoil.m2", + text = "bush_dreamfoil.m2", + }, + { + fileId = "219446", + value = "bush_dreamingglory.m2", + text = "bush_dreamingglory.m2", + }, + { + fileId = "219449", + value = "bush_fadeleaf01.m2", + text = "bush_fadeleaf01.m2", + }, + { + fileId = "219451", + value = "bush_felweed.m2", + text = "bush_felweed.m2", + }, + { + fileId = "219452", + value = "bush_firebloom.m2", + text = "bush_firebloom.m2", + }, + { + fileId = "219454", + value = "bush_flamecap.m2", + text = "bush_flamecap.m2", + }, + { + fileId = "219462", + value = "bush_goldthorn01.m2", + text = "bush_goldthorn01.m2", + }, + { + fileId = "219463", + value = "bush_gravemoss01.m2", + text = "bush_gravemoss01.m2", + }, + { + fileId = "219464", + value = "bush_gromsblood.m2", + text = "bush_gromsblood.m2", + }, + { + fileId = "219465", + value = "bush_icecap.m2", + text = "bush_icecap.m2", + }, + { + fileId = "219468", + value = "bush_khadgarswhisker01.m2", + text = "bush_khadgarswhisker01.m2", + }, + { + fileId = "219469", + value = "bush_liferoot01.m2", + text = "bush_liferoot01.m2", + }, + { + fileId = "219470", + value = "bush_magebloom01.m2", + text = "bush_magebloom01.m2", + }, + { + fileId = "219472", + value = "bush_manathistle.m2", + text = "bush_manathistle.m2", + }, + { + fileId = "219473", + value = "bush_mountainsilversage.m2", + text = "bush_mountainsilversage.m2", + }, + { + fileId = "219474", + value = "bush_mushroom01.m2", + text = "bush_mushroom01.m2", + }, + { + fileId = "219475", + value = "bush_mushroom02.m2", + text = "bush_mushroom02.m2", + }, + { + fileId = "219476", + value = "bush_mushroom03.m2", + text = "bush_mushroom03.m2", + }, + { + fileId = "219478", + value = "bush_netherbloom.m2", + text = "bush_netherbloom.m2", + }, + { + fileId = "219480", + value = "bush_nightmarevine.m2", + text = "bush_nightmarevine.m2", + }, + { + fileId = "219481", + value = "bush_peacebloom01.m2", + text = "bush_peacebloom01.m2", + }, + { + fileId = "219482", + value = "bush_plaguebloom.m2", + text = "bush_plaguebloom.m2", + }, + { + fileId = "219483", + value = "bush_purplelotus.m2", + text = "bush_purplelotus.m2", + }, + { + fileId = "219485", + value = "bush_ragveil.m2", + text = "bush_ragveil.m2", + }, + { + fileId = "219486", + value = "bush_sansam.m2", + text = "bush_sansam.m2", + }, + { + fileId = "219487", + value = "bush_silverleaf01.m2", + text = "bush_silverleaf01.m2", + }, + { + fileId = "219488", + value = "bush_snakebloom01.m2", + text = "bush_snakebloom01.m2", + }, + { + fileId = "219489", + value = "bush_snakeroot.m2", + text = "bush_snakeroot.m2", + }, + { + fileId = "219491", + value = "bush_spineleaf.m2", + text = "bush_spineleaf.m2", + }, + { + fileId = "219493", + value = "bush_stardust.m2", + text = "bush_stardust.m2", + }, + { + fileId = "219494", + value = "bush_steelbloom01.m2", + text = "bush_steelbloom01.m2", + }, + { + fileId = "219495", + value = "bush_stranglekelp01.m2", + text = "bush_stranglekelp01.m2", + }, + { + fileId = "219496", + value = "bush_sungrass.m2", + text = "bush_sungrass.m2", + }, + { + fileId = "219497", + value = "bush_swiftthistle01.m2", + text = "bush_swiftthistle01.m2", + }, + { + fileId = "219501", + value = "bush_terrocone.m2", + text = "bush_terrocone.m2", + }, + { + fileId = "219502", + value = "bush_thornroot01.m2", + text = "bush_thornroot01.m2", + }, + { + fileId = "219507", + value = "bush_wintersbite01.m2", + text = "bush_wintersbite01.m2", + }, + { + fileId = "219514", + value = "copper_miningnode_01.m2", + text = "copper_miningnode_01.m2", + }, + { + fileId = "219519", + value = "feliron_miningnode_01.m2", + text = "feliron_miningnode_01.m2", + }, + { + fileId = "219524", + value = "gold_miningnode_01.m2", + text = "gold_miningnode_01.m2", + }, + { + fileId = "219526", + value = "goldthorn_01.m2", + text = "goldthorn_01.m2", + }, + { + fileId = "219531", + value = "incendicite_miningnode_01.m2", + text = "incendicite_miningnode_01.m2", + }, + { + fileId = "219532", + value = "iron_miningnode_01.m2", + text = "iron_miningnode_01.m2", + }, + { + fileId = "219535", + value = "khorium_miningnode_01.m2", + text = "khorium_miningnode_01.m2", + }, + { + fileId = "219541", + value = "mithril_miningnode_01.m2", + text = "mithril_miningnode_01.m2", + }, + { + fileId = "219544", + value = "obsidian_miningnode_01.m2", + text = "obsidian_miningnode_01.m2", + }, + { + fileId = "219550", + value = "richthorium_miningnode_01.m2", + text = "richthorium_miningnode_01.m2", + }, + { + fileId = "219553", + value = "silithid_miningnode_01.m2", + text = "silithid_miningnode_01.m2", + }, + { + fileId = "219562", + value = "stranglekelp_01.m2", + text = "stranglekelp_01.m2", + }, + { + fileId = "219566", + value = "thorium_miningnode_01.m2", + text = "thorium_miningnode_01.m2", + }, + { + fileId = "219568", + value = "tin_miningnode_01.m2", + text = "tin_miningnode_01.m2", + }, + { + fileId = "219569", + value = "truesilver_miningnode_01.m2", + text = "truesilver_miningnode_01.m2", + }, + }, + value = "tradeskillnodes", + text = "tradeskillnodes", + }, + }, + value = "skillactivated", + text = "skillactivated", + }, + { + children = { + { + children = { + { + children = { + { + fileId = "219757", + value = "darkportalanim01.m2", + text = "darkportalanim01.m2", + }, + }, + value = "darkportal", + text = "darkportal", + }, + }, + value = "outland", + text = "outland", + }, + }, + value = "wmo", + text = "wmo", + }, + }, + value = "world", + text = "world", + }, +} \ No newline at end of file diff --git a/WeakAurasModelPaths/WeakAurasModelPaths_TBC.toc b/WeakAurasModelPaths/WeakAurasModelPaths_TBC.toc new file mode 100644 index 0000000000..0549be7457 --- /dev/null +++ b/WeakAurasModelPaths/WeakAurasModelPaths_TBC.toc @@ -0,0 +1,18 @@ +## Interface: 205505 +## Title: WeakAuras Model Paths +## Author: The WeakAuras Team +## Version: @project-version@ +## Notes: Model paths for WeakAuras +## Notes-esES: Las rutas de modelos para WeakAuras +## Notes-esMX: Las rutas de modelos para WeakAuras +## Notes-deDE: 3D-Model Pfade für WeakAuras +## Notes-ruRU: Ссылки на файлы моделей WeakAuras +## Notes-zhTW: WeakAuras的模組路徑 +## X-Category: Interface Enhancements +## Globe-Main: WeakAuras +## DefaultState: Enabled +## LoadOnDemand: 1 +## Dependencies: WeakAuras, WeakAurasOptions +## AllowLoadGameType: tbc + +ModelPathsBCC.lua diff --git a/WeakAurasOptions/WeakAurasOptions_TBC.toc b/WeakAurasOptions/WeakAurasOptions_TBC.toc new file mode 100644 index 0000000000..1dc39a1317 --- /dev/null +++ b/WeakAurasOptions/WeakAurasOptions_TBC.toc @@ -0,0 +1,114 @@ +## Interface: 205505 +## Title: WeakAuras Options +## Author: The WeakAuras Team +## Version: @project-version@ +## Notes: Options for WeakAuras +## Notes-esES: Opciones para WeakAuras +## Notes-esMX: Opciones para WeakAuras +## Notes-deDE: Optionen für WeakAuras +## Notes-ruRU: Опции WeakAuras +## Notes-zhTW: WeakAuras的設定 +## X-Category: Interface Enhancements +## Globe-Main: WeakAuras +## DefaultState: Enabled +## LoadOnDemand: 1 +## Dependencies: WeakAuras +## SavedVariables: WeakAurasOptionsSaved +## AllowLoadGameType: tbc + +embeds.xml +locales.xml + +ForAllIndentsAndPurposes.lua + +RegionOptions\Empty.lua +RegionOptions\AuraBar.lua +RegionOptions\Texture.lua +RegionOptions\Icon.lua +RegionOptions\Text.lua +RegionOptions\Group.lua +RegionOptions\DynamicGroup.lua +RegionOptions\StopMotion.lua +RegionOptions\Model.lua +RegionOptions\ProgressTexture.lua + +SubRegionOptions\SubRegionCommon.lua +SubRegionOptions\Background.lua +SubRegionOptions\SubText.lua +SubRegionOptions\Border.lua +SubRegionOptions\Glow.lua +SubRegionOptions\Tick.lua +SubRegionOptions\Model.lua +SubRegionOptions\StopMotion.lua +SubRegionOptions\Texture.lua +SubRegionOptions\CircularProgressTexture.lua +SubRegionOptions\LinearProgressTexture.lua + +Cache.lua + +CommonOptions.lua +GroupOptions.lua +DisplayOptions.lua +TriggerOptions.lua +LoadOptions.lua +ActionOptions.lua +AnimationOptions.lua +InformationOptions.lua + +BuffTrigger2.lua +GenericTrigger.lua + +WeakAurasOptions.lua +ConditionOptions.lua +AuthorOptions.lua + +Changelog.lua + +OptionsFrames\OptionsFrame.lua + +# Groups +OptionsFrames\CodeReview.lua +OptionsFrames\IconPicker.lua +OptionsFrames\ImportExport.lua +OptionsFrames\ModelPicker.lua +OptionsFrames\TextEditor.lua +OptionsFrames\TexturePicker.lua +OptionsFrames\Update.lua +OptionsFrames\DebugLogFrame.lua + +# Misc frames +OptionsFrames\MoverSizer.lua +OptionsFrames\FrameChooser.lua + +AceGUI-Widgets\AceGUIWidget-WeakAurasExpand.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasExpandSmall.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasIcon.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasNewHeaderButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasLoadedHeaderButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasDisplayButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasDropDownItemCurrency.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasPendingInstallButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasPendingUpdateButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasTextureButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasIconButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasMultiLineEditBox.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasMultiLineEditBoxWithEnter.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasNewButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasImportButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasToolbarButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasTwoColumnDropDown.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasSnippetButton.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasAnchorButtons.lua +AceGUI-Widgets\AceGUIContainer-WeakAurasTreeGroup.lua +AceGUI-Widgets\AceGUIContainer-WeakAurasInlineGroup.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasExpandAnchor.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasSpacer.lua +AceGUI-Widgets\AceGuiWidget-WeakAurasProgressBar.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasSpinBox.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasMiniTalent_Mists.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasScrollArea.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasInput.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasInputFocus.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasInputWithIndentation.lua +AceGUI-Widgets\AceGuiWidget-WeakAurasMediaSound.lua +AceGUI-Widgets\WeakAurasStatusbarAtlasWidget.lua diff --git a/WeakAurasTemplates/TriggerTemplatesDataBCC.lua b/WeakAurasTemplates/TriggerTemplatesDataBCC.lua new file mode 100644 index 0000000000..abf2e520e6 --- /dev/null +++ b/WeakAurasTemplates/TriggerTemplatesDataBCC.lua @@ -0,0 +1,1154 @@ +local AddonName, TemplatePrivate = ... +local WeakAuras = WeakAuras +if not WeakAuras.IsTBC() then return end +local L = WeakAuras.L +local GetSpellInfo, tinsert, GetItemInfo, GetSpellDescription, C_Timer, Spell + = GetSpellInfo, tinsert, GetItemInfo, GetSpellDescription, C_Timer, Spell + +-- The templates tables are created on demand +local templates = + { + class = { }, + race = { + Human = {}, + NightElf = {}, + Dwarf = {}, + Gnome = {}, + Draenei = {}, + Orc = {}, + Scourge = {}, + Tauren = {}, + Troll = {}, + BloodElf = {}, + }, + general = { + title = L["General"], + icon = 136116, + args = {} + }, + } + +local manaIcon = "Interface\\Icons\\spell_frost_manarecharge.blp" +local rageIcon = "Interface\\Icons\\ability_racial_bloodrage.blp" +local comboPointsIcon = "Interface\\Icons\\ability_backstab" + +local powerTypes = + { + [0] = { name = POWER_TYPE_MANA, icon = manaIcon }, + [1] = { name = POWER_TYPE_RED_POWER, icon = rageIcon}, + [2] = { name = POWER_TYPE_FOCUS, icon = "Interface\\Icons\\ability_hunter_focusfire"}, + [3] = { name = POWER_TYPE_ENERGY, icon = "Interface\\Icons\\spell_shadow_shadowworddominate"}, + [4] = { name = COMBO_POINTS, icon = comboPointsIcon}, + } + +-- Collected by WeakAurasTemplateCollector: +-------------------------------------------------------------------------------- + +templates.class.WARRIOR = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 469, type = "buff", unit = "player"}, -- Commanding Shout + { spell = 2565, type = "buff", unit = "player"}, -- Shield Block + { spell = 6673, type = "buff", unit = "player"}, -- Battle Shout + { spell = 18499, type = "buff", unit = "player"}, -- Berserker Rage + { spell = 12292, type = "buff", unit = "player"}, -- Sweeping Strikes + { spell = 12328, type = "buff", unit = "player"}, -- Death Wish + { spell = 12317, type = "buff", unit = "player"}, -- Enrage + { spell = 12319, type = "buff", unit = "player"}, -- Flurry + { spell = 12975, type = "buff", unit = "player"}, -- Last Stand + { spell = 23920, type = "buff", unit = "player"}, -- Spell Reflection + }, + icon = 132333 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 355, type = "debuff", unit = "target"}, -- Taunt + { spell = 676, type = "debuff", unit = "target"}, -- Disarm + { spell = 694, type = "debuff", unit = "target"}, -- Mocking Blow + { spell = 772, type = "debuff", unit = "target"}, -- Rend + { spell = 1160, type = "debuff", unit = "target"}, -- Demoralizing Shout + { spell = 1715, type = "debuff", unit = "target"}, -- Hamstring + { spell = 5246, type = "debuff", unit = "target"}, -- Intimidating Shout + { spell = 6343, type = "debuff", unit = "target"}, -- Thunder Clap + { spell = 7384, type = "debuff", unit = "target"}, -- Sunder Armor + { spell = 12289, type = "debuff", unit = "target"}, -- Improved Hamstring + { spell = 12294, type = "debuff", unit = "target"}, -- Mortal Strike + { spell = 12797, type = "debuff", unit = "target"}, -- Improved Revenge + { spell = 12809, type = "debuff", unit = "target"}, -- Concussion Blow + }, + icon = 132366 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 72, type = "ability", debuff = true, requiresTarget = true, form = 2}, -- Shield Bash + { spell = 78, type = "ability", queued = true}, -- Heroic Strike + { spell = 100, type = "ability", requiresTarget = true, form = 1}, -- Charge + { spell = 355, type = "ability", debuff = true, requiresTarget = true, form = 2}, -- Taunt + { spell = 469, type = "ability", buff = true}, -- Commanding Shout + { spell = 676, type = "ability", debuff = true, requiresTarget = true, form = 2}, -- Disarm + { spell = 694, type = "ability", debuff = true, requiresTarget = true, form = 1}, -- Mocking Blow + { spell = 772, type = "ability", debuff = true, requiresTarget = true}, -- Rend + { spell = 845, type = "ability", queued = true}, -- Cleave + { spell = 871, type = "ability", buff = true, form = 2}, -- Shield Wall + { spell = 1160, type = "ability", debuff = true}, -- Demoralizing Shout + { spell = 1161, type = "ability", debuff = true}, -- Challenging Shout + { spell = 1464, type = "ability", requiresTarget = true}, -- Slam + { spell = 1680, type = "ability", form = 3}, -- Whirlwind + { spell = 1715, type = "ability", requiresTarget = true, form = {1, 2}}, -- Hamstring + { spell = 1719, type = "ability", buff = true, form = 3}, -- Recklessness + { spell = 2565, type = "ability", buff = true, form = 2}, -- Shield Block + { spell = 2687, type = "ability", buff = true}, -- Bloodrage + { spell = 3411, type = "ability", requiresTarget = true, form = 2}, -- Intervene + { spell = 5246, type = "ability", debuff = true, requiresTarget = true}, -- Intimidating Shout + { spell = 5308, type = "ability", requiresTarget = true, form = {1, 3}}, -- Execute + { spell = 6343, type = "ability", debuff = true, form = 1}, -- Thunder Clap + { spell = 6552, type = "ability", requiresTarget = true, form = 3}, -- Pummel + { spell = 6572, type = "ability", requiresTarget = true, usable = true, form = 2}, -- Revenge + { spell = 6673, type = "ability", buff = true}, -- Battle Shout + { spell = 7384, type = "ability", requiresTarget = true, form = 1}, -- Overpower + { spell = 7386, type = "ability", requiresTarget = true, debuff = true}, -- Sunder Armor + { spell = 12323, type = "ability", debuff = true, talent = 46}, -- Piercing Howl + { spell = 12328, type = "ability", buff = true, talent = 53}, -- Sweeping Strikes + { spell = 12294, type = "ability", requiresTarget = true, talent = 20}, -- Mortal Strike + { spell = 12809, type = "ability", requiresTarget = true, debuff = true, talent = 94}, -- Concussion Blow + { spell = 12975, type = "ability", buff = true, talent = 86}, -- Last Stand + { spell = 12292, type = "ability", buff = true, talent = 13}, -- Death Wish + { spell = 18499, type = "ability", buff = true, form = 3}, -- Berserker Rage + { spell = 20230, type = "ability", buff = true, form = 1}, -- Retaliation + { spell = 20252, type = "ability", requiresTarget = true, form = 3}, -- Intercept + { spell = 20243, type = "ability", requiresTarget = true, talent = 102}, -- Devastate + { spell = 23881, type = "ability", requiresTarget = true, talent = 58}, -- Bloodthirst + { spell = 23920, type = "ability", buff = true, form = {1, 2}}, -- Spell Reflection + { spell = 23922, type = "ability", requiresTarget = true, talent = 99}, -- Shield Slam + { spell = 29801, type = "ability", requiresTarget = true, talent = 61}, -- Rampage + { spell = 34428, type = "ability", requiresTarget = true, usable = true}, -- Victory Rush + }, + icon = 132355 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = rageIcon, + } + } +} + +templates.class.PALADIN = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 498, type = "buff", unit = "player"}, -- Divine Protection + { spell = 642, type = "buff", unit = "player"}, -- Divine Shield + { spell = 1022, type = "buff", unit = "group"}, -- Blessing of Protection + { spell = 1044, type = "buff", unit = "group"}, -- Blessing of Freedom + { spell = 6940, type = "buff", unit = "group"}, -- Blessing of Sacrifice + }, + icon = 135964 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 853, type = "debuff", unit = "target"}, -- Hammer of Justice + }, + icon = 135952 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 498, type = "ability", buff = true}, -- Divine Protection + { spell = 633, type = "ability"}, -- Lay on Hands + { spell = 642, type = "ability", buff = true}, -- Divine Shield + { spell = 709, type = "ability", buff = true}, -- Righteous Fury + { spell = 853, type = "ability", requiresTarget = true, debuff = true}, -- Hammer of Justice + { spell = 879, type = "ability", requiresTarget = true, usable = true}, -- Exorcism + { spell = 1022, type = "ability", buff = true}, -- Blessing of Protection + { spell = 1044, type = "ability", buff = true}, -- Blessing of Freedom + { spell = 1152, type = "ability"}, -- Purify + { spell = 2812, type = "ability"}, -- Holy Wrath + { spell = 4987, type = "ability"}, -- Cleanse + { spell = 6940, type = "ability"}, -- Blessing of Sacrifice + { spell = 10326, type = "ability", debuff = true, requiresTarget = true, usable = true}, -- Turn Evil + { spell = 19876, type = "ability", buff = true}, -- Shadow Resistance Aura + { spell = 19888, type = "ability", buff = true}, -- Frost Resistance Aura + { spell = 19891, type = "ability", buff = true}, -- Fire Resistance Aura + { spell = 20066, type = "ability", requiresTarget = true, debuff = true, talent = 99}, -- Repentance + { spell = 20164, type = "ability", buff = true}, -- Seal of Justice + { spell = 20165, type = "ability", buff = true}, -- Seal of Light + { spell = 20166, type = "ability", buff = true}, -- Seal of Wisdom + { spell = 20271, type = "ability", buff = true, requiresTarget = true}, -- Judgement + { spell = 20375, type = "ability", buff = true, talent = 88}, -- Seal of Command + { spell = 20473, type = "ability", talent = 17}, -- Holy Shock + { spell = 20925, type = "ability", charges = true, buff = true, talent = 59}, -- Holy Shield + { spell = 21082, type = "ability", buff = true}, -- Seal of the Crusader + { spell = 21084, type = "ability", buff = true}, -- Seal of Righteousness + { spell = 24275, type = "ability", requiresTarget = true, usable = true}, -- Hammer of Wrath + { spell = 26573, type = "ability"}, -- Consecration + { spell = 31789, type = "ability"}, -- Righteous Defense + { spell = 31842, type = "ability", buff = true, talent = 20}, -- Divine Illumination + { spell = 31884, type = "ability", buff = true}, -- Avenging Wrath + { spell = 31892, type = "ability", buff = true}, -- Seal of Blood + { spell = 31935, type = "ability", talent = 62}, -- Avenger's Shield + { spell = 35395, type = "ability", requiresTarget = true, talent = 102}, -- Crusader Strike + { spell = 348704, type = "ability", buff = true}, -- Seal of Vengeance + }, + icon = 135972 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = manaIcon, + }, + } +} + +templates.class.HUNTER = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 136, type = "buff", unit = "pet"}, -- Mend Pet + { spell = 3045, type = "buff", unit = "player"}, -- Rapid Fire + { spell = 5384, type = "buff", unit = "player"}, -- Feign Death + { spell = 6197, type = "buff", unit = "player"}, -- Eagle Eye + { spell = 19621, type = "buff", unit = "pet"}, -- Frenzy + { spell = 24450, type = "buff", unit = "pet"}, -- Prowl + }, + icon = 132242 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 1130, type = "debuff", unit = "target"}, -- Hunter's Mark + { spell = 1513, type = "debuff", unit = "target"}, -- Scare Beast + { spell = 1978, type = "debuff", unit = "target"}, -- Serpent Sting + { spell = 2649, type = "debuff", unit = "target"}, -- Growl + { spell = 2974, type = "debuff", unit = "target"}, -- Wing Clip + { spell = 3034, type = "debuff", unit = "target"}, -- Viper Sting + { spell = 3043, type = "debuff", unit = "target"}, -- Scorpid Sting + { spell = 3355, type = "debuff", unit = "multi"}, -- Freezing Trap + { spell = 5116, type = "debuff", unit = "target"}, -- Concussive Shot + { spell = 24394, type = "debuff", unit = "target"}, -- Intimidation + }, + icon = 135860 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 781, type = "ability"}, -- Disengage + { spell = 1130, type = "ability", requiresTarget = true, debuff = true}, -- Hunter's Mark + { spell = 1495, type = "ability", requiresTarget = true, usable = true}, -- Mongoose Bite + { spell = 1499, type = "ability"}, -- Freezing Trap + { spell = 1510, type = "ability"}, -- Volley + { spell = 1513, type = "ability", requiresTarget = true, debuff = true}, -- Scare Beast + { spell = 1543, type = "ability", duration = 30}, -- Flare + { spell = 1978, type = "ability", requiresTarget = true, debuff = true}, -- Serpent Sting + { spell = 2643, type = "ability"}, -- Multi-Shot + { spell = 2649, type = "ability", requiresTarget = true, debuff = true}, -- Growl + { spell = 2973, type = "ability", queued = true}, -- Raptor Strike + { spell = 2974, type = "ability", requiresTarget = true, debuff = true}, -- Wing Clip + { spell = 3034, type = "ability", requiresTarget = true, debuff = true}, -- Viper Sting + { spell = 3043, type = "ability", requiresTarget = true, debuff = true}, -- Scorpid Sting + { spell = 3044, type = "ability", requiresTarget = true}, -- Arcane Shot + { spell = 3045, type = "ability", buff = true}, -- Rapid Fire + { spell = 5116, type = "ability", requiresTarget = true, debuff = true}, -- Concussive Shot + { spell = 5384, type = "ability", buff = true, unit = "player"}, -- Feign Death + { spell = 13795, type = "ability"}, -- Immolation Trap + { spell = 13809, type = "ability"}, -- Frost Trap + { spell = 13813, type = "ability"}, -- Explosive Trap + { spell = 16827, type = "ability", requiresTarget = true}, -- Claw + { spell = 19263, type = "ability", buff = true}, -- Deterrence -TODO + { spell = 19306, type = "ability", requiresTarget = true, usable = true, talent = 96}, -- Counterattack + { spell = 19434, type = "ability", requiresTarget = true, talent = 47}, -- Aimed Shot + { spell = 19386, type = "ability", requiresTarget = true, debuff = true, talent = 100}, -- Wyvern Sting + { spell = 19503, type = "ability", requiresTarget = true, debuff = true, talent = 52}, -- Scatter Shot + { spell = 19574, type = "ability", buff = true, talent = 18}, -- Bestial Wrath + { spell = 19577, type = "ability", requiresTarget = true, debuff = true, talent = 13}, -- Intimidation + { spell = 19801, type = "ability", requiresTarget = true}, -- Tranquilizing Shot + { spell = 20736, type = "ability", requiresTarget = true}, -- Distracting Shot + { spell = 23989, type = "ability", talent = 103}, -- Readiness + { spell = 34120, type = "ability", requiresTarget = true}, -- Steady Shot + { spell = 34477, type = "ability", requiresTarget = true, debuff = true}, -- Misdirection + { spell = 34490, type = "ability", requiresTarget = true, debuff = true, talent = 60}, -- Silencing Shot + { spell = 34600, type = "ability"}, -- Snake Trap + }, + icon = 135130 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = manaIcon, + }, + } +} + +templates.class.ROGUE = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 2983, type = "buff", unit = "player"}, -- Sprint + { spell = 5171, type = "buff", unit = "player"}, -- Slice and Dice + { spell = 5277, type = "buff", unit = "player"}, -- Evasion + { spell = 13750, type = "buff", unit = "player"}, -- Adrenaline Rush + { spell = 13877, type = "buff", unit = "player"}, -- Blade Fury + { spell = 14177, type = "buff", unit = "player"}, -- Cold Blood + { spell = 14149, type = "buff", unit = "player"}, -- Remorseless + { spell = 14278, type = "buff", unit = "player"}, -- Ghostly Strike + }, + icon = 132290 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 703, type = "debuff", unit = "target"}, -- Garrote + { spell = 8643, type = "debuff", unit = "target"}, -- Kidney SHot + { spell = 14251, type = "debuff", unit = "target"}, -- Riposte + { spell = 11198, type = "debuff", unit = "target"}, -- Expose Armor + { spell = 18425, type = "debuff", unit = "target"}, -- Kick - Silenced + { spell = 17348, type = "debuff", unit = "target"}, -- Hemorrhage + { spell = 14183, type = "debuff", unit = "target"}, -- Premeditation + }, + icon = 132302 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 53, type = "ability", requiresTarget = true, usable = true}, -- Backstab + { spell = 703, type = "ability", requiresTarget = true, debuff = true}, -- Garrote + { spell = 921, type = "ability", requiresTarget = true, usable = true}, -- Pick Pocket + { spell = 1329, type = "ability", requiresTarget = true, usable = true, talent = 21}, -- Mutilate + { spell = 1725, type = "ability"}, -- Distract + { spell = 1752, type = "ability", requiresTarget = true}, -- Sinister Strike + { spell = 1766, type = "ability", requiresTarget = true}, -- Kick + { spell = 1776, type = "ability", requiresTarget = true, usable = true, debuff = true}, -- Gouge + { spell = 1784, type = "ability", buff = true}, -- Stealth + { spell = 1856, type = "ability", buff = true}, -- Vanish + { spell = 2094, type = "ability", requiresTarget = true, debuff = true}, -- Blind + { spell = 2098, type = "ability", requiresTarget = true}, -- Eviscerate + { spell = 2983, type = "ability", buff = true}, -- Sprint + { spell = 5171, type = "ability", requiresTarget = true, buff = true}, -- Slice and Dice + { spell = 5277, type = "ability", buff = true}, -- Evasion + { spell = 6770, type = "ability", requiresTarget = true, usable = true, debuff = true}, -- Sap + { spell = 8643, type = "ability", requiresTarget = true, usable = true, debuff = true}, -- Kidney Shot + { spell = 8647, type = "ability", requiresTarget = true, debuff = true}, -- Expose Armor + { spell = 13750, type = "ability", buff = true, talent = 61}, -- Adrenaline Rush + { spell = 13877, type = "ability", buff = true, talent = 54}, -- Blade Fury + { spell = 14177, type = "ability", buff = true, talent = 13}, -- Cold Blood + { spell = 14183, type = "ability", requiresTarget = true, debuff = true, talent = 99}, -- Premeditation + { spell = 14185, type = "ability"}, -- Preparation + { spell = 14251, type = "ability", requiresTarget = true, usable = true, debuff = true, talent = 48}, -- Riposte + { spell = 14271, type = "ability", requiresTarget = true, buff = true, talent = 87}, -- Ghostly Strike + { spell = 16511, type = "ability", requiresTarget = true, debuff = true, talent = 95}, -- Hemorrhage + { spell = 31224, type = "ability", buff = true}, -- Cloak of Shadows + { spell = 36554, type = "ability", requiresTarget = true, talent = 102}, -- Shadowstep + }, + icon = 132350 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = comboPointsIcon, + }, + } +} + +templates.class.PRIEST = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 586, type = "buff", unit = "player"}, -- Fade + { spell = 17, type = "buff", unit = "target"}, -- Power Word: Shield + { spell = 21562, type = "buff", unit = "player"}, -- Power Word: Fortitude + { spell = 2096, type = "buff", unit = "player"}, -- Mind Vision + { spell = 1706, type = "buff", unit = "player"}, -- Levitate + }, + icon = 135940 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 8122, type = "debuff", unit = "target"}, -- Psychic Scream + { spell = 2096, type = "debuff", unit = "target"}, -- Mind Vision + { spell = 589, type = "debuff", unit = "target"}, -- Shadow Word: Pain + { spell = 9484, type = "debuff", unit = "multi" }, -- Shackle Undead + { spell = 34914, type = "debuff", unit = "target", talent = 101}, -- Vampiric Touch + }, + icon = 136207 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 17, type = "ability"}, -- Power Word: Shield + { spell = 527, type = "ability"}, -- Purify + { spell = 552, type = "ability"}, -- Abolish Disease + { spell = 585, type = "ability", requireTarget = true}, -- Smite + { spell = 586, type = "ability", buff = true}, -- Fade + { spell = 589, type = "ability", requireTarget = true, debuff = true}, -- Shadow Word: Pain + { spell = 2060, type = "ability"}, -- Greater Heal + { spell = 2061, type = "ability"}, -- Flash Heal + { spell = 6064, type = "ability"}, -- Heal + { spell = 6346, type = "ability", buff = true}, -- Fear Ward + { spell = 8092, type = "ability", requireTarget = true}, -- Mind Blast + { spell = 8122, type = "ability"}, -- Psychic Scream + { spell = 8129, type = "ability", requireTarget = true}, -- Mana Burn + { spell = 10060, type = "ability", buff = true, talent = 19}, -- Power Infusion + { spell = 10876, type = "ability", requireTarget = true}, -- Mana Burn + { spell = 10947, type = "ability", requireTarget = true}, -- Mind Flay + { spell = 10951, type = "ability", buff = true}, -- Inner Fire + { spell = 14751, type = "ability", buff = true, talent = 8}, -- Inner Focus + { spell = 14914, type = "ability", debuff = true, requireTarget = true}, -- Holy Fire + { spell = 15487, type = "ability", debuff = true, requireTarget = true, talent = 92}, -- Silence + { spell = 33206, type = "ability", buff = true, talent = 22}, -- Pain Suppression + { spell = 32375, type = "ability"}, -- Mass Dispel + { spell = 32379, type = "ability", requireTarget = true}, -- Shadow Word: Death + { spell = 32546, type = "ability"}, -- Binding Heal + { spell = 33076, type = "ability"}, -- Prayer of Mending + { spell = 34433, type = "ability", totem = true}, -- Shadowfiend + { spell = 34861, type = "ability", talent = 61}, -- Circle of Healing + { spell = 34914, type = "ability", debuff = true, requireTarget = true, talent = 101}, -- Vampiric Touch + }, + icon = 136224 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = manaIcon, + }, + } +} + +templates.class.SHAMAN = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 546, type = "buff", unit = "player"}, -- Water Walking + { spell = 16256, type = "buff", unit = "player", talent = 50}, -- Flurry + }, + icon = 135863 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 3600, type = "debuff", unit = "target"}, -- Earthbind + }, + icon = 135813 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 131, type = "ability", buff = true, usable = true}, -- Water Breathing + { spell = 324, type = "ability", buff = true}, -- Lightning Shield + { spell = 331, type = "ability"}, -- Healing Wave + { spell = 403, type = "ability", requireTarget = true}, -- Lightning Bolt + { spell = 421, type = "ability", requireTarget = true}, -- Chain Lightning + { spell = 546, type = "ability", buff = true, usable = true}, -- Water Walking + { spell = 556, type = "ability"}, -- Astral Recall + { spell = 974, type = "ability", buff = true, talent = 100}, -- Earth Shield + { spell = 1064, type = "ability"}, -- Chain Heal + { spell = 1535, type = "ability", totem = true}, -- Fire Nova Totem + { spell = 2008, type = "ability"}, -- Ancestral Spirit + { spell = 2062, type = "ability", totem = true}, -- Earth Elemental Totem + { spell = 2484, type = "ability", totem = true}, -- Earthbind Totem + { spell = 2645, type = "ability", buff = true}, -- Ghost Wolf + { spell = 2825, type = "ability", buff = true}, -- Bloodlust + { spell = 2894, type = "ability", totem = true}, -- Fire Elemental Totem + { spell = 3599, type = "ability", totem = true}, -- Searing Totem + { spell = 3738, type = "ability", totem = true}, -- Wrath of Air Totem + { spell = 5394, type = "ability", totem = true}, -- Healing Stream Totem + { spell = 5675, type = "ability", totem = true}, -- Mana Spring Totem + { spell = 5730, type = "ability", totem = true}, -- Stoneclaw Totem + { spell = 6495, type = "ability", totem = true}, -- Sentry Totem + { spell = 8142, type = "ability", requireTarget = true}, -- Earth Shock + { spell = 8143, type = "ability", requireTarget = true, debuff = true}, -- Frost Shock + { spell = 8017, type = "ability", weaponBuff = true}, -- Rockbiter Weapon -- !! weaponBuff is not supported yet + { spell = 8024, type = "ability", weaponBuff = true}, -- Flametongue Weapon + { spell = 8033, type = "ability", weaponBuff = true}, -- Frostbrand Weapon + { spell = 8050, type = "ability", requireTarget = true, debuff = true}, -- Flame Shock + { spell = 8071, type = "ability", totem = true}, -- Stoneskin Totem + { spell = 8075, type = "ability", totem = true}, -- Strength of Earth Totem + { spell = 8143, type = "ability", totem = true}, -- Tremor Totem + { spell = 8166, type = "ability", totem = true}, -- Poison Cleansing Totem + { spell = 8170, type = "ability", totem = true}, -- Disease Cleansing Totem + { spell = 8177, type = "ability", totem = true}, -- Grounding Totem + { spell = 8181, type = "ability", totem = true}, -- Frost Resistance Totem + { spell = 8184, type = "ability", totem = true}, -- Fire Resistance Totem + { spell = 8190, type = "ability", totem = true}, -- Magma Totem + { spell = 8227, type = "ability", totem = true}, -- Flametongue Totem + { spell = 8514, type = "ability", totem = true}, -- Windfury Totem + { spell = 8835, type = "ability", totem = true}, -- Grace of Air Totem + { spell = 10595, type = "ability", totem = true}, -- Nature Resistance Totem + { spell = 15107, type = "ability", totem = true}, -- Windwall Totem + { spell = 16246, type = "ability", buff = true, talent = 6}, -- Clearcasting + { spell = 16166, type = "ability", buff = true, talent = 17}, -- Elemental Mastery + { spell = 16188, type = "ability", buff = true, talent = 93}, -- Nature Swiftness + { spell = 16190, type = "ability", totem = true, talent = 96}, -- Mana Tide Totem + { spell = 17364, type = "ability", debuff = true, talent = 59}, -- Stormstrike + { spell = 20608, type = "ability"}, -- Reincarnation + { spell = 24398, type = "ability", buff = true}, -- Water Shield + { spell = 25908, type = "ability", totem = true}, -- Tranquil Air Totem + { spell = 30706, type = "ability", totem = true, talent = 20}, -- Totem of Wrath + { spell = 30823, type = "buff", talent = 61}, -- Shamanistic Rage + { spell = 32182, type = "ability", buff = true}, -- Heroism + }, + icon = 135963 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = 135990, + }, + } +} + +templates.class.MAGE = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 130, type = "buff", unit = "player"}, -- Slow Fall + { spell = 543, type = "buff", unit = "player"}, -- Fire Ward + { spell = 604, type = "buff", unit = "player"}, -- Dampen Magic + { spell = 1008, type = "buff", unit = "player"}, -- Amplify Magic + { spell = 1459, type = "buff", unit = "player"}, -- Arcane Intellect + { spell = 1463, type = "buff", unit = "player"}, -- Mana Shield + { spell = 6143, type = "buff", unit = "player"}, -- Frost Ward + { spell = 12042, type = "buff", unit = "player"}, -- Arcane Power + { spell = 12536, type = "buff", unit = "player"}, -- Clearcasting + { spell = 45438, type = "buff", unit = "player"}, -- Ice Block + }, + icon = 136096 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 122, type = "debuff", unit = "target"}, -- Frost Nova + { spell = 118, type = "debuff", unit = "multi" }, -- Polymorph + { spell = 11071, type = "debuff", unit = "target"}, -- Frostbite + { spell = 11103, type = "debuff", unit = "target"}, -- Impact + { spell = 11180, type = "debuff", unit = "target"}, -- Winter's Chill + }, + icon = 135848 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 66, type = "ability", buff = true, buffId = 32612}, -- Invisibility + { spell = 116, type = "ability", requiresTarget = true}, -- Frostbolt + { spell = 118, type = "ability", debuff = true, requireTarget = true}, -- Polymorph + { spell = 120, type = "ability"}, -- Cone of Cold + { spell = 122, type = "ability"}, -- Frost Nova + { spell = 130, type = "ability", buff = true}, -- Slow Fall + { spell = 168, type = "ability", buff = true}, -- Frost Armor + { spell = 475, type = "ability"}, -- Remove Curse + { spell = 543, type = "ability", buff = true}, -- Fire Ward + { spell = 1449, type = "ability"}, -- Arcane Explosion + { spell = 1463, type = "ability", buff = true}, -- Mana Shield + { spell = 1953, type = "ability"}, -- Blink + { spell = 2120, type = "ability"}, -- Flamestrike + { spell = 2136, type = "ability", requiresTarget = true}, -- Fire Blast + { spell = 2139, type = "ability", requiresTarget = true}, -- Counterspell + { spell = 2855, type = "ability", debuff = true, requireTarget = true}, -- Detect Magic + { spell = 2948, type = "ability", requiresTarget = true}, -- Scorch + { spell = 5143, type = "ability", requiresTarget = true}, -- Arcane Missiles + { spell = 6117, type = "ability", buff = true}, -- Mage Armor + { spell = 6143, type = "ability", buff = true}, -- Frost Ward + { spell = 10187, type = "ability"}, -- Blizzard + { spell = 11113, type = "ability", debuff = true, talent = 55}, -- Blast Wave + { spell = 11129, type = "ability", buff = true, talent = 59}, -- Combustion + { spell = 11426, type = "ability", buff = true, talent = 99}, -- ice Barrier + { spell = 11958, type = "ability", talent = 95}, -- Cold Snap + { spell = 12042, type = "ability", buff = true, talent = 16}, -- Arcane Power + { spell = 12043, type = "ability", buff = true, talent = 13}, -- Presence of Mind + { spell = 12051, type = "ability"}, -- Evocation + { spell = 14272, type = "ability", buff = true, talent = 89}, -- Icy Veins + { spell = 18809, type = "ability", requiresTarget = true}, -- Pyroblast + { spell = 25304, type = "ability", requiresTarget = true}, -- Frostbolt + { spell = 30449, type = "ability", requiresTarget = true}, -- Spellsteal + { spell = 30451, type = "ability", requiresTarget = true}, -- Arcane Blast + { spell = 30482, type = "ability", buff = true}, -- Molten Armor + { spell = 31661, type = "ability", buff = true}, -- Dragon's Breath + { spell = 31687, type = "ability", totem = true, talent = 102}, -- Summon Water Elemental + { spell = 34589, type = "ability", requireTarget = true, debuff = true, talent = 23}, -- Slow + { spell = 45438, type = "ability", buff = true}, -- Ice Block + }, + icon = 136075 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = manaIcon, + }, + } +} + +templates.class.WARLOCK = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 126, type = "buff", unit = "player"}, -- Eye of Kilrogg + { spell = 687, type = "buff", unit = "player"}, -- Demon Skin + { spell = 755, type = "buff", unit = "pet"}, -- Health Funnel + { spell = 5697, type = "buff", unit = "player"}, -- Unending Breath + { spell = 6229, type = "buff", unit = "player"}, -- Shadow Ward + { spell = 7870, type = "buff", unit = "pet"}, -- Lesser Invisibility + { spell = 18094, type = "buff", unit = "player"}, -- Nightfall + { spell = 19028, type = "buff", unit = "player", talent = 59}, -- Soul Link + { spell = 20707, type = "buff", unit = "group"}, -- Soulstone + }, + icon = 136210 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 172, type = "debuff", unit = "target"}, -- Corruption + { spell = 348, type = "debuff", unit = "target"}, -- Immolate + { spell = 603, type = "debuff", unit = "target"}, -- Curse of Doom + { spell = 702, type = "debuff", unit = "target"}, -- Curse of Weakness + { spell = 704, type = "debuff", unit = "target"}, -- Curse of Recklessness + { spell = 710, type = "debuff", unit = "multi"}, -- Banish + { spell = 980, type = "debuff", unit = "target"}, -- Curse of Agony + { spell = 1098, type = "debuff", unit = "multi"}, -- Enslave Demon + { spell = 1490, type = "debuff", unit = "target"}, -- Curse of the Elements + { spell = 1714, type = "debuff", unit = "target"}, -- Curse of Tongues + { spell = 6358, type = "debuff", unit = "target"}, -- Seduction + { spell = 6789, type = "debuff", unit = "target" }, -- Death Coil + { spell = 6360, type = "debuff", unit = "target"}, -- Whiplash + { spell = 17862, type = "debuff", unit = "target"}, -- Curse of Shadow + { spell = 18223, type = "debuff", unit = "target", talent = 15}, -- Curse of Exhaustion + { spell = 18265, type = "debuff", unit = "target", talent = 14}, -- Siphon Life + { spell = 30108, type = "debuff", unit = "target", talent = 21}, -- Unstable Affliction + }, + icon = 136139 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 172, type = "ability", requiresTarget = true, debuff = true}, -- Corruption + { spell = 348, type = "ability", requiresTarget = true, debuff = true}, -- Immolate + { spell = 686, type = "ability", requiresTarget = true}, -- Shadow Bolt + { spell = 698, type = "ability"}, -- Ritual of Summoning + { spell = 710, type = "ability", requiresTarget = true, debuff = true}, -- Banish + { spell = 980, type = "ability", requiresTarget = true, debuff = true}, -- Agony + { spell = 1120, type = "ability", requiresTarget = true}, -- Drain Soul + { spell = 3110, type = "ability", requiresTarget = true}, -- Firebolt + { spell = 3716, type = "ability", requiresTarget = true}, -- Consuming Shadows + { spell = 5138, type = "ability", requiresTarget = true}, -- Drain Mana + { spell = 5484, type = "ability"}, -- Howl of Terror + { spell = 5676, type = "ability", requiresTarget = true}, -- Searing Pain + { spell = 5740, type = "ability"}, -- Rain of Fire + { spell = 5782, type = "ability", requiresTarget = true, debuff = true}, -- Fear + { spell = 6353, type = "ability", requiresTarget = true}, -- Soul Fire + { spell = 6358, type = "ability", requiresTarget = true}, -- Seduction + { spell = 6360, type = "ability", requiresTarget = true}, -- Whiplash + { spell = 6789, type = "ability", requiresTarget = true}, -- Death Coil + { spell = 7814, type = "ability", requiresTarget = true}, -- Lash of Pain + { spell = 7870, type = "ability"}, -- Lesser Invisibility + { spell = 17962, type = "ability", requiresTarget = true, usable = true, talent = 98}, -- Conflagrate + { spell = 17926, type = "ability", requiresTarget = true}, -- Death Coil + { spell = 18288, type = "ability", buff = true, talent = 9}, -- Amplify Curse + { spell = 18708, type = "ability", talent = 28}, -- Fel Domination + { spell = 18877, type = "ability", requiresTarget = true, debuff = true, talent = 88}, -- Shadowburn + { spell = 30108, ability = "ability", debuff = true, requiresTarget = true, talent = 21}, -- Unstable Affliction + { spell = 30283, type = "ability", debuff = true, talent = 101}, -- Fel Domination + }, + icon = 135808 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources"], + args = { + }, + icon = "Interface\\Icons\\inv_misc_gem_amethyst_02", + }, + } +} + +templates.class.DRUID = { + [1] = { + [1] = { + title = L["Buffs"], + args = { + { spell = 774, type = "buff", unit = "player", talent = 9 }, -- Rejuvenation + { spell = 5487, type = "buff", unit = "player"}, -- Bear Form + { spell = 8936, type = "buff", unit = "player"}, -- Regrowth + { spell = 783, type = "buff", unit = "player"}, -- Travel Form + { spell = 768, type = "buff", unit = "player"}, -- Cat Form + { spell = 22812, type = "buff", unit = "player"}, -- Barkskin + { spell = 1850, type = "buff", unit = "player"}, -- Dash + { spell = 5215, type = "buff", unit = "player"}, -- Prowl + { spell = 29166, type = "buff", unit = "group"}, -- Innervate + { spell = 33763, type = "buff", unit = "player"}, -- Lifebloom + }, + icon = 136097 + }, + [2] = { + title = L["Debuffs"], + args = { + { spell = 339, type = "debuff", unit = "multi"}, -- Entangling Roots + { spell = 770, type = "debuff", unit = "target"}, -- Faerie Fire + { spell = 5211, type = "debuff", unit = "target", talent = 10 }, -- Mighty Bash + { spell = 1079, type = "debuff", unit = "target", talent = 7 }, -- Rip + { spell = 6795, type = "debuff", unit = "target"}, -- Growl + { spell = 2637, type = "debuff", unit = "multi"}, -- Hibernate + { spell = 5570, type = "debuff", unit = "target", talent = 8}, -- Insect Swarm + { spell = 8921, type = "debuff", unit = "target"}, -- Moonfire + }, + icon = 132114 + }, + [3] = { + title = L["Abilities"], + args = { + { spell = 99, type = "ability", debuff = true}, -- Demoralizing Roar + { spell = 339, type = "ability", requiresTarget = true, debuff = true}, -- Entangling Roots + { spell = 740, type = "ability", duration = 10}, -- Tranquility + { spell = 768, type = "ability"}, -- Cat Form + { spell = 770, type = "ability", requiresTarget = true, debuff = true}, -- Faerie Fire + { spell = 783, type = "ability"}, -- Travel Form + { spell = 1066, type = "ability"}, -- Aquatic Form + { spell = 1079, type = "ability", requiresTarget = true, form = 3}, -- Rip + { spell = 1082, type = "ability", requiresTarget = true, form = 3}, -- Claw + { spell = 1822, type = "ability", requiresTarget = true, debuff = true, form = 3}, -- Rake + { spell = 1850, type = "ability", buff = true}, -- Dash + { spell = 2637, type = "ability", requiresTarget = true, debuff = true}, -- Hibernate + { spell = 2782, type = "ability"}, -- Remove Curse + { spell = 2893, type = "ability"}, -- Abolish Poison + { spell = 2908, type = "ability", requiresTarget = true}, -- Soothe + { spell = 2912, type = "ability", requiresTarget = true}, -- Starfire + { spell = 5176, type = "ability", requiresTarget = true}, -- Wrath + { spell = 5209, type = "ability", form = 1}, -- Challenging Roar + { spell = 5211, type = "ability", requiresTarget = true, talent = 6, form = 1}, -- Mighty Bash + { spell = 5215, type = "ability", buff = true}, -- Prowl + { spell = 5221, type = "ability", requiresTarget = true, form = 3}, -- Shred + { spell = 5229, type = "ability", buff = true, form = 1}, -- Enrage + { spell = 5487, type = "ability"}, -- Bear Form + { spell = 5570, type = "ability", requiresTarget = true, debuff = true, talent = 8}, -- Insect Swarm + { spell = 6785, type = "ability", requiresTarget = true, form = 3}, -- Ravage + { spell = 6795, type = "ability", debuff = true, requiresTarget = true, form = 1}, -- Growl + { spell = 6807, type = "ability", queued = true, form = 1}, -- Maul + { spell = 8921, type = "ability", requiresTarget = true, debuff = true}, -- Moonfire + { spell = 8946, type = "ability"}, -- Cure Poison + { spell = 8983, type = "ability", requiresTarget = true, debuff = true, form = 1}, -- Buff + { spell = 9634, type = "ability"}, -- Dire Bear Form + { spell = 9846, type = "ability", buff = true, form = 3}, -- Tiger's Fury + { spell = 16689, type = "ability", buff = true, talent = 2}, -- Nature's Grasp + { spell = 16914, type = "ability"}, -- Hurricane + { spell = 16979, type = "ability", form = 1, talent = 47}, -- Feral Charge + { spell = 17116, type = "ability", buff = true, talent = 91}, -- Nature's Swiftness + { spell = 18562, type = "ability", talent = 97}, -- Swiftmend + { spell = 20484, type = "ability"}, -- Rebirth + { spell = 22568, type = "ability", form = 3}, -- Ferocious Bite + { spell = 22570, type = "ability", debuff = true, form = 3}, -- Maim + { spell = 22812, type = "ability", buff = true}, -- Barkskin + { spell = 22842, type = "ability", buff = true, form = 1}, -- Frenzied Regeneration + { spell = 24858, type = "ability", talent = 18}, -- Moonkin Form + { spell = 26997, type = "ability", form = 1}, -- Swipe + { spell = 27006, type = "ability", requiresTarget = true, debuff = true, form = 3}, -- Pounce + { spell = 33831, type = "ability", talent = 21}, -- Force of Nature + { spell = 42389, type = "ability", talent = 61, form = {1, 3}}, -- Mangle + + }, + icon = 132134 + }, + [4] = {}, + [5] = {}, + [6] = {}, + [7] = {}, + [8] = { + title = L["Resources and Shapeshift Form"], + args = { + }, + icon = manaIcon, + }, + } +} + +-- General Section +tinsert(templates.general.args, { + title = L["Health"], + icon = "Interface\\Icons\\inv_potion_54", + type = "health" +}); +tinsert(templates.general.args, { + title = L["Cast"], + icon = 136209, + type = "cast" +}); +tinsert(templates.general.args, { + title = L["Always Active"], + icon = "Interface\\Addons\\WeakAuras\\PowerAurasMedia\\Auras\\Aura78", + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Conditions"), + event = "Conditions", + use_alwaystrue = true}}} +}); + +tinsert(templates.general.args, { + title = L["Pet alive"], + icon = "Interface\\Icons\\ability_hunter_pet_raptor", + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Conditions"), + event = "Conditions", + use_HasPet = true}}} +}); + +tinsert(templates.general.args, { + title = L["Pet Behavior"], + icon = "Interface\\Icons\\ability_defend.blp", + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Pet Behavior"), + event = "Pet Behavior", + use_behavior = true, + behavior = "assist"}}} +}); + +tinsert(templates.general.args, { + spell = 2825, type = "buff", unit = "player", + forceOwnOnly = true, + ownOnly = nil, + overideTitle = L["Bloodlust/Heroism"], + spellIds = {2825, 32182}} +); + +-- Meta template for Power triggers +local function createSimplePowerTemplate(powertype) + local power = { + title = powerTypes[powertype].name, + icon = powerTypes[powertype].icon, + type = "power", + powertype = powertype, + } + return power; +end + +------------------------------- +-- Hardcoded trigger templates +------------------------------- + +-- Warrior +tinsert(templates.class.WARRIOR[1][8].args, { + title = L["Stance"], + icon = 132349, + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Stance/Form/Aura"), + event = "Stance/Form/Aura"}}} +}) +for j, id in ipairs({2457, 71, 2458}) do + local title, _, icon = GetSpellInfo(id) + if title then + tinsert(templates.class.WARRIOR[1][8].args, { + title = title, + icon = icon, + triggers = { + [1] = { + trigger = { + type = WeakAuras.GetTriggerCategoryFor("Stance/Form/Aura"), + event = "Stance/Form/Aura", + use_form = true, + form = { single = j } + } + } + } + }); + end +end + +tinsert(templates.class.WARRIOR[1][8].args, createSimplePowerTemplate(1)); +tinsert(templates.class.PALADIN[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.HUNTER[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.ROGUE[1][8].args, createSimplePowerTemplate(3)); +tinsert(templates.class.ROGUE[1][8].args, createSimplePowerTemplate(4)); +tinsert(templates.class.PRIEST[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.SHAMAN[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.MAGE[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.WARLOCK[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.DRUID[1][8].args, createSimplePowerTemplate(0)); +tinsert(templates.class.DRUID[1][8].args, createSimplePowerTemplate(1)); +tinsert(templates.class.DRUID[1][8].args, createSimplePowerTemplate(3)); +tinsert(templates.class.DRUID[1][8].args, createSimplePowerTemplate(4)); + +-- Shapeshift Form +tinsert(templates.class.DRUID[1][8].args, { + title = L["Shapeshift Form"], + icon = 132276, + triggers = {[1] = { trigger = { + type = WeakAuras.GetTriggerCategoryFor("Stance/Form/Aura"), + event = "Stance/Form/Aura"}}} +}); +for j, id in ipairs({5487, 768, 783, 114282, 1394966}) do + local title, _, icon = GetSpellInfo(id) + if title then + tinsert(templates.class.DRUID[1][8].args, { + title = title, + icon = icon, + triggers = { + [1] = { + trigger = { + type = WeakAuras.GetTriggerCategoryFor("Stance/Form/Aura"), + event = "Stance/Form/Aura", + use_form = true, + form = { single = j } + } + } + } + }); + end +end + + +------------------------------ +-- Hardcoded race templates +------------------------------- + +-- Every Man for Himself +tinsert(templates.race.Human, { spell = 20600, type = "ability" }); +-- Stoneform +tinsert(templates.race.Dwarf, { spell = 20594, type = "ability", titleSuffix = L["cooldown"]}); +tinsert(templates.race.Dwarf, { spell = 20594, type = "buff", unit = "player", titleSuffix = L["buff"]}); +-- Shadow Meld +tinsert(templates.race.NightElf, { spell = 20580, type = "ability", titleSuffix = L["cooldown"]}); +tinsert(templates.race.NightElf, { spell = 20580, type = "buff", titleSuffix = L["buff"]}); +-- Escape Artist +tinsert(templates.race.Gnome, { spell = 20589, type = "ability" }); + +-- Blood Fury +tinsert(templates.race.Orc, { spell = 20572, type = "ability", titleSuffix = L["cooldown"]}); +tinsert(templates.race.Orc, { spell = 20572, type = "buff", unit = "player", titleSuffix = L["buff"]}); +--Cannibalize +tinsert(templates.race.Scourge, { spell = 20577, type = "ability", titleSuffix = L["cooldown"]}); +tinsert(templates.race.Scourge, { spell = 20578, type = "buff", unit = "player", titleSuffix = L["buff"]}); +-- Will of the Forsaken +tinsert(templates.race.Scourge, { spell = 7744, type = "ability", titleSuffix = L["cooldown"]}); +tinsert(templates.race.Scourge, { spell = 7744, type = "buff", unit = "player", titleSuffix = L["buff"]}); +-- War Stomp +tinsert(templates.race.Tauren, { spell = 20549, type = "ability", titleSuffix = L["cooldown"]}); +tinsert(templates.race.Tauren, { spell = 20549, type = "debuff", titleSuffix = L["debuff"]}); +--Beserking +tinsert(templates.race.Troll, { spell = 26297, type = "ability", titleSuffix = L["Rogue cooldown"]}); +tinsert(templates.race.Troll, { spell = 26296, type = "ability", titleSuffix = L["Warrior cooldown"]}); +tinsert(templates.race.Troll, { spell = 20554, type = "ability", titleSuffix = L["Other cooldown"]}); +tinsert(templates.race.Troll, { spell = 26635, type = "buff", unit = "player", titleSuffix = L["buff"]}); +-- Arcane Torrent +tinsert(templates.race.BloodElf, { spell = 69179, type = "ability", titleSuffix = L["cooldown"]}); +-- Gift of the Naaru +tinsert(templates.race.Draenei, { spell = 28880, type = "ability", titleSuffix = L["cooldown"]}); +tinsert(templates.race.Draenei, { spell = 28880, type = "buff", unit = "player", titleSuffix = L["buff"]}); + +------------------------------ +-- Helper code for options +------------------------------- + +-- Enrich items from spell, set title +local function handleItem(item) + local waitingForItemInfo = false; + if (item.spell) then + local name, icon, _; + if (item.type == "item") then + name, _, _, _, _, _, _, _, _, icon = GetItemInfo(item.spell); + if (name == nil) then + name = L["Unknown Item"] .. " " .. tostring(item.spell); + waitingForItemInfo = true; + end + else + name, _, icon = GetSpellInfo(item.spell); + if (name == nil) then + name = L["Unknown Spell"] .. " " .. tostring(item.spell); + end + end + if (icon and not item.icon) then + item.icon = icon; + end + + item.title = item.overideTitle or name or ""; + if (item.titleSuffix) then + item.title = item.title .. " " .. item.titleSuffix; + end + if (item.titlePrefix) then + item.title = item.titlePrefix .. item.title; + end + if (item.titleItemPrefix) then + local prefix = GetItemInfo(item.titleItemPrefix); + if (prefix) then + item.title = prefix .. "-" .. item.title; + else + waitingForItemInfo = true; + end + end + if (item.type ~= "item") then + local spell = Spell:CreateFromSpellID(item.spell); + if (not spell:IsSpellEmpty()) then + spell:ContinueOnSpellLoad(function() + item.description = GetSpellDescription(spell:GetSpellID()); + end); + end + item.description = GetSpellDescription(item.spell); + end + end + if (item.talent) then + item.load = item.load or {}; + if type(item.talent) == "table" then + item.load.talent = { multi = {} }; + for _,v in pairs(item.talent) do + item.load.talent.multi[v] = true; + end + item.load.use_talent = false; + else + item.load.talent = { + single = item.talent, + multi = {}; + }; + item.load.use_talent = true; + end + end + if (item.pvptalent) then + item.load = item.load or {}; + item.load.use_pvptalent = true; + item.load.pvptalent = { + single = item.pvptalent, + multi = {}; + } + end + if (item.covenant) then + item.load = item.load or {} + item.load.use_covenant = true + item.load.covenant = { + single = item.covenant, + multi = {} + } + end + if (item.bonusItemId) then + item.load = item.load or {} + item.load.use_item_bonusid_equipped = true + item.load.item_bonusid_equipped = tostring(item.bonusItemId) + end + -- form field is lazy handled by a usable condition + if item.form then + item.usable = true + end + return waitingForItemInfo; +end + +local function addLoadCondition(item, loadCondition) + -- No need to deep copy here, templates are read-only + item.load = item.load or {}; + for k, v in pairs(loadCondition) do + item.load[k] = v; + end +end + +local delayedEnrichDatabase = false; +local itemInfoReceived = CreateFrame("Frame") + +local enrichTries = 0; +local function enrichDatabase() + if (enrichTries > 3) then + return; + end + enrichTries = enrichTries + 1; + + local waitingForItemInfo = false; + for className, class in pairs(templates.class) do + for specIndex, spec in pairs(class) do + for _, section in pairs(spec) do + local loadCondition = { + use_class = true, class = { single = className, multi = {} }, + }; + for itemIndex, item in pairs(section.args or {}) do + local handle = handleItem(item) + if(handle) then + waitingForItemInfo = true; + end + addLoadCondition(item, loadCondition); + end + end + end + end + + for raceName, race in pairs(templates.race) do + local loadCondition = { + use_race = true, race = { single = raceName, multi = {} } + }; + for _, item in pairs(race) do + local handle = handleItem(item) + if handle then + waitingForItemInfo = true; + end + if handle ~= nil then + addLoadCondition(item, loadCondition); + end + end + end + + for _, item in pairs(templates.general.args) do + if (handleItem(item)) then + waitingForItemInfo = true; + end + end + + if (waitingForItemInfo) then + itemInfoReceived:RegisterEvent("GET_ITEM_INFO_RECEIVED"); + else + itemInfoReceived:UnregisterEvent("GET_ITEM_INFO_RECEIVED"); + end +end + + +enrichDatabase(); + +itemInfoReceived:SetScript("OnEvent", function() + if (not delayedEnrichDatabase) then + delayedEnrichDatabase = true; + C_Timer.After(2, function() + enrichDatabase(); + delayedEnrichDatabase = false; + end) + end +end); + + +TemplatePrivate.triggerTemplates = templates diff --git a/WeakAurasTemplates/WeakAurasTemplates_TBC.toc b/WeakAurasTemplates/WeakAurasTemplates_TBC.toc new file mode 100644 index 0000000000..0b11364c5b --- /dev/null +++ b/WeakAurasTemplates/WeakAurasTemplates_TBC.toc @@ -0,0 +1,17 @@ +## Interface: 20504 +## Title: WeakAuras Templates +## Author: The WeakAuras Team +## Version: @project-version@ +## Notes: Templates for WeakAuras +## X-Category: Interface Enhancements +## Globe-Main: WeakAuras +## DefaultState: Enabled +## LoadOnDemand: 1 +## Dependencies: WeakAuras, WeakAurasOptions + +locales.xml + +TriggerTemplates.lua +TriggerTemplatesDataBCC.lua + +AceGUI-Widgets\AceGUIContainer-WeakAurasTemplateGroup.lua From 5d16d078f897d0aa7975f68505768bf51d265374 Mon Sep 17 00:00:00 2001 From: NoM0Re <1629787+NoM0Re@users.noreply.github.com> Date: Sat, 6 Dec 2025 16:44:55 +0100 Subject: [PATCH 17/17] Add TBC support --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + WeakAuras/BuffTrigger2.lua | 4 +- WeakAuras/Compatibility.lua | 21 +- WeakAuras/GenericTrigger.lua | 16 +- WeakAuras/Init.lua | 105 +- WeakAuras/Prototypes.lua | 225 +- WeakAuras/RegionTypes/Model.lua | 2 +- WeakAuras/SubRegionTypes/Model.lua | 2 +- WeakAuras/Transmission.lua | 33 +- WeakAuras/Types.lua | 33 +- WeakAuras/Types_TBC.lua | 4041 ++ WeakAuras/WeakAuras.lua | 15 +- WeakAuras/WeakAuras_Cata.toc | 1 + WeakAuras/WeakAuras_Mists.toc | 1 + WeakAuras/WeakAuras_TBC.toc | 6 +- WeakAuras/WeakAuras_Vanilla.toc | 1 + WeakAuras/WeakAuras_Wrath.toc | 4 +- WeakAurasArchive/WeakAurasArchive_Cata.toc | 1 + WeakAurasArchive/WeakAurasArchive_Mists.toc | 1 + WeakAurasArchive/WeakAurasArchive_TBC.toc | 9 + WeakAurasArchive/WeakAurasArchive_Vanilla.toc | 1 + WeakAurasArchive/WeakAurasArchive_Wrath.toc | 1 + .../{ModelPathsBCC.lua => ModelPathsTBC.lua} | 45376 ++++++---------- .../WeakAurasModelPaths_Cata.toc | 1 + .../WeakAurasModelPaths_Mists.toc | 1 + .../WeakAurasModelPaths_TBC.toc | 5 +- .../WeakAurasModelPaths_Vanilla.toc | 1 + .../WeakAurasModelPaths_Wrath.toc | 1 + .../AceGUIWidget-WeakAurasSpinBox.lua | 10 +- WeakAurasOptions/BuffTrigger2.lua | 8 +- WeakAurasOptions/Cache.lua | 11 + .../OptionsFrames/ModelPicker.lua | 2 +- .../OptionsFrames/OptionsFrame.lua | 2 +- WeakAurasOptions/RegionOptions/Model.lua | 2 +- WeakAurasOptions/WeakAurasOptions_Cata.toc | 1 + WeakAurasOptions/WeakAurasOptions_Mists.toc | 1 + WeakAurasOptions/WeakAurasOptions_TBC.toc | 5 +- WeakAurasOptions/WeakAurasOptions_Vanilla.toc | 1 + WeakAurasOptions/WeakAurasOptions_Wrath.toc | 1 + ...ataBCC.lua => TriggerTemplatesDataTBC.lua} | 0 .../WeakAurasTemplates_Cata.toc | 1 + .../WeakAurasTemplates_Mists.toc | 1 + WeakAurasTemplates/WeakAurasTemplates_TBC.toc | 7 +- .../WeakAurasTemplates_Vanilla.toc | 1 + .../WeakAurasTemplates_Wrath.toc | 1 + 45 files changed, 21208 insertions(+), 28756 deletions(-) create mode 100644 WeakAurasArchive/WeakAurasArchive_TBC.toc rename WeakAurasModelPaths/{ModelPathsBCC.lua => ModelPathsTBC.lua} (86%) rename WeakAurasTemplates/{TriggerTemplatesDataBCC.lua => TriggerTemplatesDataTBC.lua} (100%) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index ca5a11ceeb..4e43ebfc2f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -37,6 +37,7 @@ body: - Mists of Pandaria Classic - Cataclysm Classic - Titan Reforged + - Burning Crusade Anniversary - Classic Era validations: required: true diff --git a/WeakAuras/BuffTrigger2.lua b/WeakAuras/BuffTrigger2.lua index bfc7b49e31..2bdd3d667e 100644 --- a/WeakAuras/BuffTrigger2.lua +++ b/WeakAuras/BuffTrigger2.lua @@ -2385,7 +2385,7 @@ Buff2Frame:RegisterEvent("UNIT_PET") Buff2Frame:RegisterEvent("RAID_TARGET_UPDATE") Buff2Frame:RegisterEvent("PLAYER_SOFT_ENEMY_CHANGED") Buff2Frame:RegisterEvent("PLAYER_SOFT_FRIEND_CHANGED") -if WeakAuras.IsWrathOrCataOrMistsOrRetail() then +if WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() then Buff2Frame:RegisterEvent("PLAYER_FOCUS_CHANGED") Buff2Frame:RegisterEvent("ARENA_OPPONENT_UPDATE") Buff2Frame:RegisterEvent("UNIT_ENTERED_VEHICLE") @@ -3182,7 +3182,7 @@ function BuffTrigger.Add(data) local groupTrigger = trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party" local effectiveIgnoreSelf = (groupTrigger or trigger.unit == "nameplate") and trigger.ignoreSelf local effectiveGroupRole = WeakAuras.IsWrathOrCataOrMistsOrRetail() and (groupTrigger and trigger.useGroupRole and trigger.group_role) or nil - local effectiveRaidRole = WeakAuras.IsClassicOrWrathOrCataOrMists() and (groupTrigger and trigger.useRaidRole and trigger.raid_role) or nil + local effectiveRaidRole = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() and (groupTrigger and trigger.useRaidRole and trigger.raid_role) or nil local effectiveClass = groupTrigger and trigger.useClass and trigger.class local effectiveSpecId = WeakAuras.IsCataOrMistsOrRetail() and (groupTrigger and trigger.useActualSpec and trigger.actualSpec) or nil local effectiveArenaSpec = WeakAuras.IsRetail() and (trigger.unit == "arena" and trigger.useArenaSpec and trigger.arena_spec) or nil diff --git a/WeakAuras/Compatibility.lua b/WeakAuras/Compatibility.lua index 1bd9a1b476..48268dc6a3 100644 --- a/WeakAuras/Compatibility.lua +++ b/WeakAuras/Compatibility.lua @@ -78,22 +78,22 @@ end if C_SpecializationInfo and C_SpecializationInfo.GetTalentInfo and not WeakAuras.IsClassicEra() then if WeakAuras.IsTBC() then Private.ExecEnv.GetTalentInfo = function(tabIndex, talentIndex, isInspect, isPet, groupIndex) - local talentInfoQuery = {}; - talentInfoQuery.specializationIndex = tabIndex; - talentInfoQuery.talentIndex = talentIndex; - talentInfoQuery.isInspect = isInspect; - talentInfoQuery.isPet = isPet; - talentInfoQuery.groupIndex = groupIndex; - local talentInfo = C_SpecializationInfo.GetTalentInfo(talentInfoQuery); + local talentInfoQuery = {} + talentInfoQuery.specializationIndex = tabIndex + talentInfoQuery.talentIndex = talentIndex + talentInfoQuery.isInspect = isInspect + talentInfoQuery.isPet = isPet + talentInfoQuery.groupIndex = groupIndex + local talentInfo = C_SpecializationInfo.GetTalentInfo(talentInfoQuery) if not talentInfo then - return nil; + return nil end return talentInfo.name, talentInfo.icon, talentInfo.tier, talentInfo.column, talentInfo.rank, talentInfo.maxRank, talentInfo.meetsPrereq, talentInfo.previewRank, talentInfo.meetsPreviewPrereq, talentInfo.isExceptional, talentInfo.hasGoldBorder, - talentInfo.talentID; - end + talentInfo.talentID + end elseif WeakAuras.IsWrathClassic() then -- copy pasta from Interface/AddOns/Blizzard_DeprecatedSpecialization/Deprecated_Specialization_Wrath.lua Private.ExecEnv.GetTalentInfo = function(tabIndex, talentIndex, isInspect, isPet, groupIndex) @@ -101,6 +101,7 @@ if C_SpecializationInfo and C_SpecializationInfo.GetTalentInfo and not WeakAuras talentInfoQuery.specializationIndex = tabIndex talentInfoQuery.talentIndex = talentIndex talentInfoQuery.isInspect = isInspect + talentInfoQuery.isPet = isPet talentInfoQuery.groupIndex = groupIndex local talentInfo = C_SpecializationInfo.GetTalentInfo(talentInfoQuery) if not talentInfo then diff --git a/WeakAuras/GenericTrigger.lua b/WeakAuras/GenericTrigger.lua index eebcb58fa5..5c09f2d365 100644 --- a/WeakAuras/GenericTrigger.lua +++ b/WeakAuras/GenericTrigger.lua @@ -1998,7 +1998,7 @@ end do local mh = GetInventorySlotInfo("MainHandSlot") local oh = GetInventorySlotInfo("SecondaryHandSlot") - local ranged = WeakAuras.IsClassicOrWrath() and GetInventorySlotInfo("RangedSlot") + local ranged = WeakAuras.IsClassicOrTBCOrWrath() and GetInventorySlotInfo("RangedSlot") local swingTimerFrame; local lastSwingMain, lastSwingOff, lastSwingRange; @@ -2193,7 +2193,7 @@ do end) end if Private.reset_ranged_swing_spells[spell] then - if WeakAuras.IsClassicOrWrath() then + if WeakAuras.IsClassicOrTBCOrWrath() then swingStart("ranged") else swingStart("main") @@ -2226,7 +2226,7 @@ do swingTimerFrame:RegisterEvent("PLAYER_EQUIPMENT_CHANGED"); swingTimerFrame:RegisterUnitEvent("UNIT_ATTACK_SPEED", "player"); swingTimerFrame:RegisterUnitEvent("UNIT_SPELLCAST_SUCCEEDED", "player"); - if WeakAuras.IsClassicOrWrath() then + if WeakAuras.IsClassicOrTBCOrWrath() then swingTimerFrame:RegisterUnitEvent("UNIT_SPELLCAST_START", "player") swingTimerFrame:RegisterUnitEvent("UNIT_SPELLCAST_INTERRUPTED", "player") swingTimerFrame:RegisterUnitEvent("UNIT_SPELLCAST_FAILED", "player") @@ -2288,7 +2288,7 @@ do local function CheckGCD() local event; local startTime, duration, _, modRate - if WeakAuras.IsClassicOrWrath() then + if WeakAuras.IsClassicOrTBCOrWrath() then startTime, duration = GetSpellCooldown(29515); shootStart, shootDuration = GetSpellCooldown(5019) elseif GetSpellCooldown then @@ -2407,7 +2407,7 @@ do if duration > 0 then if (startTime == gcdStart and duration == gcdDuration) - or (WeakAuras.IsClassicOrWrath() and duration == shootDuration and startTime == shootStart) + or (WeakAuras.IsClassicOrTBCOrWrath() and duration == shootDuration and startTime == shootStart) then -- GCD cooldown, this could mean that the spell reset! if self.expirationTime[id] and self.expirationTime[id] > endTime and self.expirationTime[id] ~= 0 then @@ -3764,7 +3764,7 @@ function WeakAuras.WatchUnitChange(unit) end local roleUpdate - if WeakAuras.IsClassicOrWrath() then + if WeakAuras.IsClassicOrTBCOrWrath() then function roleUpdate(unit, eventsToSend) -- For classic check both raid role and group role local oldRaidRole = watchUnitChange.unitRaidRole[unit] @@ -4039,7 +4039,7 @@ function Private.ExecEnv.CheckTotemSpellId(spellId, triggerSpellId, followoverri end -- Queueable Spells -if WeakAuras.IsClassicOrWrath() then +if WeakAuras.IsClassicOrTBCOrWrath() then local queueableSpells local classQueueableSpells = { ["WARRIOR"] = { @@ -4149,7 +4149,7 @@ do tenchFrame:RegisterEvent("WEAPON_ENCHANT_CHANGED") end tenchFrame:RegisterUnitEvent("UNIT_INVENTORY_CHANGED", "player") - if WeakAuras.IsClassicOrWrath() then + if WeakAuras.IsClassicOrTBCOrWrath() then tenchFrame:RegisterEvent("PLAYER_EQUIPMENT_CHANGED"); end diff --git a/WeakAuras/Init.lua b/WeakAuras/Init.lua index f79e8f17bd..ab6779275f 100644 --- a/WeakAuras/Init.lua +++ b/WeakAuras/Init.lua @@ -453,38 +453,69 @@ function WeakAuras.IsRetail() return flavor == 10 end +---@return boolean result +function WeakAuras.IsTWW() + return WeakAuras.BuildInfo >= 110000 +end + +---@return boolean result +function WeakAuras.IsMidnight() + return WeakAuras.BuildInfo >= 120000 +end + +---@return boolean result +function WeakAuras.IsClassicOrTBC() + return WeakAuras.IsClassicEra() or WeakAuras.IsTBC() +end + +---@return boolean result +function WeakAuras.IsClassicOrWrath() + return WeakAuras.IsClassicEra() or WeakAuras.IsWrathClassic() +end + +---@return boolean result +function WeakAuras.IsClassicOrTBCOrWrath() + return WeakAuras.IsClassicEra() or WeakAuras.IsTBC() or WeakAuras.IsWrathClassic() +end + +---@return boolean result +function WeakAuras.IsTBCOrWrath() + return WeakAuras.IsTBC() or WeakAuras.IsWrathClassic() +end + ---@return boolean result function WeakAuras.IsClassicOrCata() return WeakAuras.IsClassicEra() or WeakAuras.IsCataClassic() end ---@return boolean result -function WeakAuras.IsClassicOrCataOrMists() - return WeakAuras.IsClassicOrCata() or WeakAuras.IsMists() +function WeakAuras.IsClassicOrWrathOrCata() + return WeakAuras.IsClassicEra() or WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() end ---@return boolean result -function WeakAuras.IsCataOrMists() - return WeakAuras.IsCataClassic() or WeakAuras.IsMists() +function WeakAuras.IsClassicOrTBCOrWrathOrCata() + return WeakAuras.IsClassicEra() or WeakAuras.IsTBC() or WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() end -function WeakAuras.IsCataOrMistsOrRetail() - return WeakAuras.IsCataClassic() or WeakAuras.IsMists() or WeakAuras.IsRetail() +---@return boolean result +function WeakAuras.IsClassicOrCataOrMists() + return WeakAuras.IsClassicOrCata() or WeakAuras.IsMists() end ---@return boolean result -function WeakAuras.IsMistsOrRetail() - return WeakAuras.IsMists() or WeakAuras.IsRetail() +function WeakAuras.IsClassicOrWrathOrCataOrMists() + return WeakAuras.IsClassicEra() or WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() or WeakAuras.IsMists() end ---@return boolean result -function WeakAuras.IsCataOrRetail() - return WeakAuras.IsCataClassic() or WeakAuras.IsRetail() +function WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() + return WeakAuras.IsClassicEra() or WeakAuras.IsTBC() or WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() or WeakAuras.IsMists() end ---@return boolean result -function WeakAuras.IsClassicOrWrath() - return WeakAuras.IsClassicEra() or WeakAuras.IsWrathClassic() +function WeakAuras.IsTBCOrWrathOrCata() + return WeakAuras.IsTBC() or WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() end ---@return boolean result @@ -503,13 +534,23 @@ function WeakAuras.IsWrathOrCataOrMistsOrRetail() end ---@return boolean result -function WeakAuras.IsClassicOrWrathOrCata() - return WeakAuras.IsClassicEra() or WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() +function WeakAuras.IsTBCOrWrathOrCataOrMists() + return WeakAuras.IsTBC() or WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() or WeakAuras.IsMists() end ---@return boolean result -function WeakAuras.IsClassicOrWrathOrCataOrMists() - return WeakAuras.IsClassicEra() or WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() or WeakAuras.IsMists() +function WeakAuras.IsWrathOrMists() + return WeakAuras.IsWrathClassic() or WeakAuras.IsMists() +end + +---@return boolean result +function WeakAuras.IsTBCOrWrathOrMists() + return WeakAuras.IsTBC() or WeakAuras.IsWrathClassic() or WeakAuras.IsMists() +end + +---@return boolean result +function WeakAuras.IsMistsOrRetail() + return WeakAuras.IsMists() or WeakAuras.IsRetail() end ---@return boolean result @@ -518,22 +559,38 @@ function WeakAuras.IsWrathOrMistsOrRetail() end ---@return boolean result -function WeakAuras.IsWrathOrMists() - return WeakAuras.IsWrathClassic() or WeakAuras.IsMists() +function WeakAuras.IsTBCOrMistsOrRetail() + return WeakAuras.IsTBC() or WeakAuras.IsMists() or WeakAuras.IsRetail() end ---@return boolean result -function WeakAuras.IsWrathOrRetail() - return WeakAuras.IsWrathClassic() or WeakAuras.IsRetail() +function WeakAuras.IsTBCOrWrathOrMistsOrRetail() + return WeakAuras.IsTBC() or WeakAuras.IsWrathClassic() or WeakAuras.IsMists() or WeakAuras.IsRetail() end ---@return boolean result -function WeakAuras.IsTWW() - return WeakAuras.BuildInfo >= 110000 +function WeakAuras.IsCataOrMists() + return WeakAuras.IsCataClassic() or WeakAuras.IsMists() end -function WeakAuras.IsMidnight() - return WeakAuras.BuildInfo >= 120000 +---@return boolean result +function WeakAuras.IsCataOrRetail() + return WeakAuras.IsCataClassic() or WeakAuras.IsRetail() +end + +---@return boolean result +function WeakAuras.IsCataOrMistsOrRetail() + return WeakAuras.IsCataClassic() or WeakAuras.IsMists() or WeakAuras.IsRetail() +end + +---@return boolean result +function WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() + return WeakAuras.IsTBC() or WeakAuras.IsWrathClassic() or WeakAuras.IsCataClassic() or WeakAuras.IsMists() or WeakAuras.IsRetail() +end + +---@return boolean result +function WeakAuras.IsWrathOrRetail() + return WeakAuras.IsWrathClassic() or WeakAuras.IsRetail() end ---@param ... string diff --git a/WeakAuras/Prototypes.lua b/WeakAuras/Prototypes.lua index 6bdb1b3169..e481367611 100644 --- a/WeakAuras/Prototypes.lua +++ b/WeakAuras/Prototypes.lua @@ -146,7 +146,7 @@ local constants = { guildFilterDesc = L["Supports multiple entries, separated by commas. Escape with \\. Prefix with '-' for negation."] } -if WeakAuras.IsClassicOrWrathOrCataOrMists() then +if WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() then ---@param unit UnitToken ---@return string? role WeakAuras.UnitRaidRole = function(unit) @@ -694,7 +694,7 @@ for classID = 1, 20 do -- GetNumClasses not supported by wow classic end table.sort(WeakAuras.classes_sorted) -if WeakAuras.IsClassicOrWrathOrCata() then +if WeakAuras.IsClassicOrTBCOrWrathOrCata() then ---@param index integer ---@param extraOption boolean? ---@return boolean? hasTalent @@ -1263,11 +1263,11 @@ local function valuesForTalentFunction(trigger) -- this should never happen return {} end - elseif WeakAuras.IsWrathOrCata() then + elseif WeakAuras.IsTBCOrWrathOrCata() then return Private.talentInfo[single_class] elseif WeakAuras.IsMists() then return Private.talentInfo[single_class] - else -- classic & tbc + else -- classic if single_class and Private.talent_types_specific[single_class] then return Private.talent_types_specific[single_class] else @@ -1391,11 +1391,11 @@ Private.load_prototype = { name = "pvpmode", display = L["PvP Mode Active"], type = "tristate", - init = WeakAuras.IsWrathClassic() and "arg" or nil, + init = WeakAuras.IsTBCOrWrath() and "arg" or nil, width = WeakAuras.normalWidth, optional = true, - enable = WeakAuras.IsWrathClassic(), - hidden = not WeakAuras.IsWrathClassic(), + enable = WeakAuras.IsTBCOrWrath(), + hidden = not WeakAuras.IsTBCOrWrath(), events = {"PLAYER_FLAGS_CHANGED", "UNIT_FACTION", "ZONE_CHANGED"} }, { @@ -1423,11 +1423,11 @@ Private.load_prototype = { name = "vehicleUi", display = L["Has Vehicle UI"], type = "tristate", - init = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "arg" or nil, + init = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() and "arg" or nil, width = WeakAuras.normalWidth, optional = true, - enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), - hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), + hidden = not WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), events = {"VEHICLE_UPDATE", "UNIT_ENTERED_VEHICLE", "UNIT_EXITED_VEHICLE", "UPDATE_OVERRIDE_ACTIONBAR", "UPDATE_VEHICLE_ACTIONBAR"} }, { @@ -1526,7 +1526,7 @@ Private.load_prototype = { end end end or nil, - events = (WeakAuras.IsClassicOrWrathOrCataOrMists() and {"CHARACTER_POINTS_CHANGED", "PLAYER_TALENT_UPDATE", "ACTIVE_TALENT_GROUP_CHANGED"}) + events = (WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() and {"CHARACTER_POINTS_CHANGED", "PLAYER_TALENT_UPDATE", "ACTIVE_TALENT_GROUP_CHANGED"}) or (WeakAuras.IsRetail() and {"WA_TALENT_UPDATE"}), inverse = function(load) -- Check for multi select! @@ -1538,27 +1538,27 @@ Private.load_prototype = { return Private.talent_extra_option_types end }, - control = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, - multiNoSingle = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- no single mode - multiTristate = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- values can be true/false/nil - multiAll = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- require all tests - orConjunctionGroup = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "talent", - multiUseControlWhenFalse = WeakAuras.IsWrathOrCataOrMistsOrRetail(), + control = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, + multiNoSingle = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), -- no single mode + multiTristate = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), -- values can be true/false/nil + multiAll = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), -- require all tests + orConjunctionGroup = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() and "talent", + multiUseControlWhenFalse = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), enable = function(trigger) return WeakAuras.IsClassicEra() - or (WeakAuras.IsWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) + or (WeakAuras.IsTBCOrWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) or (WeakAuras.IsRetail() and Private.checkForSingleLoadCondition(trigger, "class_and_spec") ~= nil) end, hidden = function(trigger) return not ( WeakAuras.IsClassicEra() - or (WeakAuras.IsWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) + or (WeakAuras.IsTBCOrWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) or (WeakAuras.IsRetail() and Private.checkForSingleLoadCondition(trigger, "class_and_spec") ~= nil)) end, }, { name = "talent2", - display = WeakAuras.IsWrathOrCataOrMistsOrRetail() and L["Or Talent"] or L["And Talent"], + display = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() and L["Or Talent"] or L["And Talent"], type = "multiselect", values = valuesForTalentFunction, test = WeakAuras.IsRetail() and "WeakAuras.CheckTalentId(%d) == (%d == 4)" or "WeakAuras.CheckTalentByIndex(%d, %d)", @@ -1589,7 +1589,7 @@ Private.load_prototype = { end end or nil, events = (WeakAuras.IsClassicEra() and {"CHARACTER_POINTS_CHANGED"}) - or (WeakAuras.IsWrathOrCataOrMists() and {"CHARACTER_POINTS_CHANGED", "PLAYER_TALENT_UPDATE"}) + or (WeakAuras.IsTBCOrWrathOrCataOrMists() and {"CHARACTER_POINTS_CHANGED", "PLAYER_TALENT_UPDATE"}) or (WeakAuras.IsRetail() and {"WA_TALENT_UPDATE"}), inverse = function(load) return WeakAuras.IsClassicEra() and (load.talent2_extraOption == 2 or load.talent2_extraOption == 3) @@ -1600,30 +1600,30 @@ Private.load_prototype = { return Private.talent_extra_option_types end, }, - control = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, - multiNoSingle = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- no single mode - multiTristate = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- values can be true/false/nil - multiAll = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- require all tests - orConjunctionGroup = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "talent", - multiUseControlWhenFalse = WeakAuras.IsWrathOrCataOrMistsOrRetail(), + control = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, + multiNoSingle = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), -- no single mode + multiTristate = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), -- values can be true/false/nil + multiAll = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), -- require all tests + orConjunctionGroup = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() and "talent", + multiUseControlWhenFalse = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), enable = function(trigger) return (trigger.use_talent ~= nil or trigger.use_talent2 ~= nil) and ( WeakAuras.IsClassicEra() - or (WeakAuras.IsWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) + or (WeakAuras.IsTBCOrWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) or (WeakAuras.IsRetail() and Private.checkForSingleLoadCondition(trigger, "class_and_spec") ~= nil) ) end, hidden = function(trigger) return not((trigger.use_talent ~= nil or trigger.use_talent2 ~= nil) and ( WeakAuras.IsClassicEra() - or (WeakAuras.IsWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) + or (WeakAuras.IsTBCOrWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) or (WeakAuras.IsRetail() and Private.checkForSingleLoadCondition(trigger, "class_and_spec") ~= nil)) ) end, }, { name = "talent3", - display = WeakAuras.IsWrathOrCataOrMistsOrRetail() and L["Or Talent"] or L["And Talent"], + display = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() and L["Or Talent"] or L["And Talent"], type = "multiselect", values = valuesForTalentFunction, test = WeakAuras.IsRetail() and "WeakAuras.CheckTalentId(%d) == (%d == 4)" or "WeakAuras.CheckTalentByIndex(%d, %d)", @@ -1654,7 +1654,7 @@ Private.load_prototype = { end end or nil, events = (WeakAuras.IsClassicEra() and {"CHARACTER_POINTS_CHANGED"}) - or (WeakAuras.IsWrathOrCataOrMists() and {"CHARACTER_POINTS_CHANGED", "PLAYER_TALENT_UPDATE"}) + or (WeakAuras.IsTBCOrWrathOrCataOrMists() and {"CHARACTER_POINTS_CHANGED", "PLAYER_TALENT_UPDATE"}) or (WeakAuras.IsRetail() and {"WA_TALENT_UPDATE"}), inverse = function(load) return WeakAuras.IsClassicEra() and (load.talent3_extraOption == 2 or load.talent3_extraOption == 3) @@ -1665,23 +1665,23 @@ Private.load_prototype = { return Private.talent_extra_option_types end, }, - control = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, - multiNoSingle = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- no single mode - multiTristate = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- values can be true/false/nil - multiAll = WeakAuras.IsWrathOrCataOrMistsOrRetail(), -- require all tests - orConjunctionGroup = WeakAuras.IsWrathOrCataOrMistsOrRetail() and "talent", - multiUseControlWhenFalse = WeakAuras.IsWrathOrCataOrMistsOrRetail(), + control = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, + multiNoSingle = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), -- no single mode + multiTristate = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), -- values can be true/false/nil + multiAll = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), -- require all tests + orConjunctionGroup = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() and "talent", + multiUseControlWhenFalse = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), enable = function(trigger) return ((trigger.use_talent ~= nil and trigger.use_talent2 ~= nil) or trigger.use_talent3 ~= nil) and ( WeakAuras.IsClassicEra() - or (WeakAuras.IsWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) + or (WeakAuras.IsTBCOrWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) or (WeakAuras.IsRetail() and Private.checkForSingleLoadCondition(trigger, "class_and_spec") ~= nil) ) end, hidden = function(trigger) return not(((trigger.use_talent ~= nil and trigger.use_talent2 ~= nil) or trigger.use_talent3 ~= nil) and ( WeakAuras.IsClassicEra() - or (WeakAuras.IsWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) + or (WeakAuras.IsTBCOrWrathOrCataOrMists() and Private.checkForSingleLoadCondition(trigger, "class") ~= nil) or (WeakAuras.IsRetail() and Private.checkForSingleLoadCondition(trigger, "class_and_spec") ~= nil) )) end @@ -1935,8 +1935,8 @@ Private.load_prototype = { display = L["Raid Role"], type = "multiselect", values = "raid_role_types", - init = WeakAuras.IsClassicOrWrathOrCataOrMists() and "arg" or nil, - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + init = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() and "arg" or nil, + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), hidden = WeakAuras.IsRetail(), events = {"PLAYER_ROLES_ASSIGNED"} }, @@ -2507,8 +2507,8 @@ Private.event_prototypes = { store = true, sorted = true, conditionType = "select", - enable = WeakAuras.IsWrathOrMistsOrRetail(), - hidden = not WeakAuras.IsWrathOrMistsOrRetail(), + enable = WeakAuras.IsTBCOrWrathOrMistsOrRetail(), + hidden = not WeakAuras.IsTBCOrWrathOrMistsOrRetail(), }, { name = "creatureType", @@ -2517,7 +2517,7 @@ Private.event_prototypes = { store = true, test = "true", hidden = true, - enable = WeakAuras.IsWrathOrMistsOrRetail(), + enable = WeakAuras.IsTBCOrWrathOrMistsOrRetail(), }, { name = "creatureFamilyIndex", @@ -2558,7 +2558,7 @@ Private.event_prototypes = { store = true, conditionType = "select", enable = function(trigger) - return WeakAuras.IsClassicOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") + return WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") end }, { @@ -3223,7 +3223,7 @@ Private.event_prototypes = { events = function(trigger) local unit = trigger.unit local result = {} - if WeakAuras.IsClassicOrWrath() then + if WeakAuras.IsClassicOrTBCOrWrath() then AddUnitEventForEvents(result, unit, "UNIT_HEALTH_FREQUENT") else AddUnitEventForEvents(result, unit, "UNIT_HEALTH") @@ -3561,7 +3561,7 @@ Private.event_prototypes = { store = true, conditionType = "select", enable = function(trigger) - return WeakAuras.IsClassicOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") + return WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") end }, { @@ -3776,7 +3776,7 @@ Private.event_prototypes = { Private.WatchStagger() tinsert(result, "WA_UNIT_STAGGER_CHANGED"); end - if WeakAuras.IsClassicOrWrath() and trigger.use_showCost and trigger.unit == "player" then + if WeakAuras.IsClassicOrTBCOrWrath() and trigger.use_showCost and trigger.unit == "player" then tinsert(result, "WA_UNIT_QUEUED_SPELL_CHANGED"); end if WeakAuras.IsCataOrMists() and trigger.unit == "player" and trigger.use_powertype and trigger.powertype == 26 then @@ -3789,7 +3789,7 @@ Private.event_prototypes = { return result end, loadFunc = function(trigger) - if WeakAuras.IsClassicOrWrath() and trigger.use_showCost and trigger.unit == "player" then + if WeakAuras.IsClassicOrTBCOrWrath() and trigger.use_showCost and trigger.unit == "player" then WeakAuras.WatchForQueuedSpell() end local includePets = trigger.use_includePets == true and trigger.includePets or nil @@ -4165,7 +4165,7 @@ Private.event_prototypes = { store = true, conditionType = "select", enable = function(trigger) - return WeakAuras.IsClassicOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") + return WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") end }, { @@ -4464,7 +4464,7 @@ Private.event_prototypes = { store = true, conditionType = "select", enable = function(trigger) - return WeakAuras.IsClassicOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") + return WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") end }, { @@ -6955,7 +6955,7 @@ Private.event_prototypes = { "CHARACTER_POINTS_CHANGED", "SPELLS_CHANGED" } - elseif WeakAuras.IsWrathOrCataOrMists() then + elseif WeakAuras.IsTBCOrWrathOrCataOrMists() then events = { "CHARACTER_POINTS_CHANGED", "SPELLS_CHANGED", @@ -6972,7 +6972,7 @@ Private.event_prototypes = { force_events = (WeakAuras.IsRetail() and "TRAIT_CONFIG_UPDATED") or "CHARACTER_POINTS_CHANGED", name = L["Talent Known"], init = function(trigger) - local inverse = trigger.use_inverse and not WeakAuras.IsWrathOrMistsOrRetail() + local inverse = trigger.use_inverse and not WeakAuras.IsTBCOrWrathOrMistsOrRetail() local ret = {} table.insert(ret, [[ local active = true @@ -7024,12 +7024,10 @@ Private.event_prototypes = { local name, icon, _, _, rank = Private.ExecEnv.GetTalentInfo(tier, column) if rank and rank > 0 then active = true; - activeName = name; - activeIcon = icon; end end ]]):format(tier, column)) - elseif WeakAuras.IsWrathClassic() then + elseif WeakAuras.IsTBCOrWrath() then local tier = index and math.ceil(index / MAX_NUM_TALENTS) local column = index and ((index - 1) % MAX_NUM_TALENTS + 1) table.insert(ret, ([[ @@ -7165,7 +7163,7 @@ Private.event_prototypes = { end end return {} - elseif WeakAuras.IsWrathOrMists() then + elseif WeakAuras.IsTBCOrWrathOrMists() then return Private.talentInfo[class] else if Private.talent_types_specific[class] then @@ -7175,11 +7173,11 @@ Private.event_prototypes = { end end end, - multiUseControlWhenFalse = WeakAuras.IsWrathOrMistsOrRetail(), - multiAll = WeakAuras.IsWrathOrMistsOrRetail(), - multiNoSingle = WeakAuras.IsWrathOrMistsOrRetail(), - multiTristate = WeakAuras.IsWrathOrMistsOrRetail(), -- values can be true/false/nil - control = WeakAuras.IsWrathOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, + multiUseControlWhenFalse = WeakAuras.IsTBCOrWrathOrMistsOrRetail(), + multiAll = WeakAuras.IsTBCOrWrathOrMistsOrRetail(), + multiNoSingle = WeakAuras.IsTBCOrWrathOrMistsOrRetail(), + multiTristate = WeakAuras.IsTBCOrWrathOrMistsOrRetail(), -- values can be true/false/nil + control = WeakAuras.IsTBCOrWrathOrMistsOrRetail() and "WeakAurasMiniTalent" or nil, multiConvertKey = WeakAuras.IsRetail() and function(trigger, key) local classId for i = 1, GetNumClasses() do @@ -7293,8 +7291,8 @@ Private.event_prototypes = { display = L["Inverse"], type = "toggle", test = "true", - enable = not WeakAuras.IsWrathOrMistsOrRetail(), - hidden = WeakAuras.IsWrathOrMistsOrRetail(), + enable = not WeakAuras.IsTBCOrWrathOrMistsOrRetail(), + hidden = WeakAuras.IsTBCOrWrathOrMistsOrRetail(), }, { hidden = true, @@ -9197,10 +9195,12 @@ Private.event_prototypes = { return L["Set IDs can be found on websites such as wowhead.com/item-sets"] elseif WeakAuras.IsMists() then return L["Set IDs can be found on websites such as wowhead.com/mop-classic/item-sets"] - elseif WeakAuras.IsCataClassic() then + elseif WeakAuras.IsCataClassic() then return L["Set IDs can be found on websites such as wowhead.com/cata/item-sets"] - elseif WeakAuras.IsWotLKClassic() then + elseif WeakAuras.IsWotLKClassic() then return L["Set IDs can be found on websites such as wowhead.com/wotlk/item-sets"] + elseif WeakAuras.IsTBC() then + return L["Set IDs can be found on websites such as wowhead.com/tbc/item-sets"] elseif WeakAuras.IsClassicEra() then return L["Set IDs can be found on websites such as wowhead.com/classic/item-sets"] end @@ -9878,9 +9878,10 @@ Private.event_prototypes = { name = "interruptible", display = L["Interruptible"], type = "tristate", - enable = function(trigger) return not trigger.use_inverse end, + enable = function(trigger) return not (trigger.use_inverse or WeakAuras.IsTBC()) end, store = true, conditionType = "bool", + hidden = WeakAuras.IsTBC() }, { @@ -10059,7 +10060,7 @@ Private.event_prototypes = { store = true, conditionType = "select", enable = function(trigger) - return WeakAuras.IsClassicOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") + return WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") and not trigger.use_inverse end }, @@ -10414,7 +10415,7 @@ Private.event_prototypes = { type = "number", init = "UnitStat('player', LE_UNIT_STAT_STRENGTH)", store = true, - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -10428,7 +10429,7 @@ Private.event_prototypes = { type = "number", init = "UnitStat('player', LE_UNIT_STAT_AGILITY)", store = true, - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -10442,7 +10443,7 @@ Private.event_prototypes = { type = "number", init = "UnitStat('player', LE_UNIT_STAT_INTELLECT)", store = true, - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -10456,7 +10457,7 @@ Private.event_prototypes = { type = "number", init = "UnitStat('player', 5)", store = true, - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -10487,9 +10488,9 @@ Private.event_prototypes = { type = "number", init = "max(GetCombatRating(CR_CRIT_MELEE), GetCombatRating(CR_CRIT_RANGED), GetCombatRating(CR_CRIT_SPELL))", store = true, - enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), conditionType = "number", - hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), + hidden = not WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), multiEntry = { operator = "and", limit = 2 @@ -10514,7 +10515,7 @@ Private.event_prototypes = { type = "number", init = "max(GetCombatRating(CR_HIT_MELEE), GetCombatRating(CR_HIT_RANGED), GetCombatRating(CR_HIT_SPELL))", store = true, - enable = WeakAuras.IsWrathOrCataOrMists(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMists(), conditionType = "number", hidden = not WeakAuras.IsWrathOrCataOrMists(), multiEntry = { @@ -10529,8 +10530,8 @@ Private.event_prototypes = { init = "WeakAuras.GetHitChance()", store = true, conditionType = "number", - enable = WeakAuras.IsWrathOrCataOrMists(), - hidden = not WeakAuras.IsWrathOrCataOrMists(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMists(), + hidden = not WeakAuras.IsTBCOrWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -10543,9 +10544,9 @@ Private.event_prototypes = { type = "number", init = "GetCombatRating(CR_HASTE_SPELL)", store = true, - enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMists(), conditionType = "number", - hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), + hidden = not WeakAuras.IsTBCOrWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -10585,9 +10586,9 @@ Private.event_prototypes = { type = "number", init = "GetCombatRating(CR_EXPERTISE)", store = true, - enable = WeakAuras.IsWrathOrCataOrMists(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMists(), conditionType = "number", - hidden = not WeakAuras.IsWrathOrCataOrMists(), + hidden = not WeakAuras.IsTBCOrWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -10600,8 +10601,8 @@ Private.event_prototypes = { init = "GetCombatRatingBonus(CR_EXPERTISE)", store = true, conditionType = "number", - enable = WeakAuras.IsWrathOrCataOrMists(), - hidden = not WeakAuras.IsWrathOrCataOrMists(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMists(), + hidden = not WeakAuras.IsTBCOrWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -10641,9 +10642,9 @@ Private.event_prototypes = { type = "number", init = "GetSpellPenetration()", store = true, - enable = WeakAuras.IsWrathOrCataOrMists(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMists(), conditionType = "number", - hidden = not WeakAuras.IsWrathOrCataOrMists(), + hidden = not WeakAuras.IsTBCOrWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -10731,8 +10732,8 @@ Private.event_prototypes = { operator = "and", limit = 2 }, - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), - hidden = not WeakAuras.IsClassicOrWrathOrCataOrMists(), + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), + hidden = not WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), }, { type = "header", @@ -10855,9 +10856,9 @@ Private.event_prototypes = { type = "number", init = "UnitDefense('player') + select(2, UnitDefense('player'))", store = true, - enable = WeakAuras.IsWrathClassic(), + enable = WeakAuras.IsTBCOrWrath(), conditionType = "number", - hidden = not WeakAuras.IsWrathClassic(), + hidden = not WeakAuras.IsTBCOrWrath(), multiEntry = { operator = "and", limit = 2 @@ -10869,9 +10870,9 @@ Private.event_prototypes = { type = "number", init = "GetCombatRating(CR_DODGE)", store = true, - enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), conditionType = "number", - hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), + hidden = not WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), multiEntry = { operator = "and", limit = 2 @@ -10896,9 +10897,9 @@ Private.event_prototypes = { type = "number", init = "GetCombatRating(CR_PARRY)", store = true, - enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), conditionType = "number", - hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), + hidden = not WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), multiEntry = { operator = "and", limit = 2 @@ -11005,9 +11006,9 @@ Private.event_prototypes = { type = "number", init = "PaperDollFrame_GetArmorReduction(select(2, UnitArmor('player')), UnitEffectiveLevel and UnitEffectiveLevel('player') or UnitLevel('player'))", store = true, - enable = WeakAuras.IsWrathOrCataOrMistsOrRetail(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), conditionType = "number", - hidden = not WeakAuras.IsWrathOrCataOrMistsOrRetail(), + hidden = not WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail(), multiEntry = { operator = "and", limit = 2 @@ -11033,12 +11034,12 @@ Private.event_prototypes = { name = "resiliencerating", display = L["Resilience Rating"], type = "number", - init = WeakAuras.IsWrathClassic() and "GetCombatRating(CR_RESILIENCE_PLAYER_DAMAGE_TAKEN)" + init = WeakAuras.IsTBCOrWrath() and "GetCombatRating(CR_RESILIENCE_PLAYER_DAMAGE_TAKEN)" or "GetCombatRating(COMBAT_RATING_RESILIENCE_PLAYER_DAMAGE_TAKEN)", store = true, - enable = WeakAuras.IsWrathOrCataOrMists(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMists(), conditionType = "number", - hidden = not WeakAuras.IsWrathOrCataOrMists(), + hidden = not WeakAuras.IsTBCOrWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -11048,12 +11049,12 @@ Private.event_prototypes = { name = "resiliencepercent", display = L["Resilience (%)"], type = "number", - init = WeakAuras.IsWrathClassic() and "GetCombatRatingBonus(CR_RESILIENCE_PLAYER_DAMAGE_TAKEN)" + init = WeakAuras.IsTBCOrWrath() and "GetCombatRatingBonus(CR_RESILIENCE_PLAYER_DAMAGE_TAKEN)" or "GetCombatRatingBonus(COMBAT_RATING_RESILIENCE_PLAYER_DAMAGE_TAKEN)", store = true, - enable = WeakAuras.IsWrathOrCataOrMists(), + enable = WeakAuras.IsTBCOrWrathOrCataOrMists(), conditionType = "number", - hidden = not WeakAuras.IsWrathOrCataOrMists(), + hidden = not WeakAuras.IsTBCOrWrathOrCataOrMists(), multiEntry = { operator = "and", limit = 2 @@ -11065,7 +11066,7 @@ Private.event_prototypes = { name = "resistanceHeader", display = L["Resistances"], hidden = WeakAuras.IsRetail(), - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), }, { name = "resistanceholy", @@ -11073,7 +11074,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 1))", store = true, - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -11087,7 +11088,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 2))", store = true, - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -11101,7 +11102,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 3))", store = true, - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -11115,7 +11116,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 4))", store = true, - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -11129,7 +11130,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 5))", store = true, - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -11143,7 +11144,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 6))", store = true, - enable = WeakAuras.IsClassicOrWrathOrCataOrMists(), + enable = WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists(), conditionType = "number", hidden = WeakAuras.IsRetail(), multiEntry = { @@ -11353,7 +11354,7 @@ Private.event_prototypes = { ["Spell Known"] = { type = "spell", events = { - ["events"] = WeakAuras.IsWrathOrCataOrMists() and {"SPELLS_CHANGED","PLAYER_TALENT_UPDATE"} or {"SPELLS_CHANGED"}, + ["events"] = WeakAuras.IsTBCOrWrathOrCataOrMists() and {"SPELLS_CHANGED","PLAYER_TALENT_UPDATE"} or {"SPELLS_CHANGED"}, ["unit_events"] = { ["player"] = {"UNIT_PET"} } @@ -12372,13 +12373,17 @@ if WeakAuras.IsClassicEra() then Private.event_prototypes["Death Knight Rune"] = nil Private.event_prototypes["Spell Activation Overlay"] = nil end +if WeakAuras.IsTBC() then + Private.event_prototypes["Alternate Power"] = nil + Private.event_prototypes["Death Knight Rune"] = nil +end if WeakAuras.IsWrathClassic() then Private.event_prototypes["Alternate Power"] = nil end if WeakAuras.IsCataOrMists() then Private.event_prototypes["Swing Timer"] = nil end -if WeakAuras.IsClassicOrWrathOrCata() then +if WeakAuras.IsClassicOrTBCOrWrathOrCata() then if not UnitDetailedThreatSituation then Private.event_prototypes["Threat Situation"] = nil end diff --git a/WeakAuras/RegionTypes/Model.lua b/WeakAuras/RegionTypes/Model.lua index db4ac4dfc1..35c3207bb1 100644 --- a/WeakAuras/RegionTypes/Model.lua +++ b/WeakAuras/RegionTypes/Model.lua @@ -9,7 +9,7 @@ local L = WeakAuras.L; -- Default settings local default = { - model_fileId = "122968", -- spells/arcanepower_state_chest.m2 & Creature/Arthaslichking/arthaslichking.m2 + model_fileId = WeakAuras.IsTBC() and "124614" or "122968", -- Creature/illidan/illidandark.m2 / Creature/Arthaslichking/arthaslichking.m2 modelIsUnit = false, api = false, -- false ==> SetPosition + SetFacing; true ==> SetTransform model_x = 0, diff --git a/WeakAuras/SubRegionTypes/Model.lua b/WeakAuras/SubRegionTypes/Model.lua index bde671041b..bac442e1fa 100644 --- a/WeakAuras/SubRegionTypes/Model.lua +++ b/WeakAuras/SubRegionTypes/Model.lua @@ -26,7 +26,7 @@ local default = function(parentType) model_st_rz = 0, model_st_us = 40, - model_fileId = "235338", + model_fileId = WeakAuras.IsTBC() and "124614" or "235338", bar_model_attach = true } end diff --git a/WeakAuras/Transmission.lua b/WeakAuras/Transmission.lua index 57e5097da8..bd3cfc067b 100644 --- a/WeakAuras/Transmission.lua +++ b/WeakAuras/Transmission.lua @@ -197,24 +197,21 @@ local function filterFunc(_, event, msg, player, l, cs, t, flag, channelId, ...) end end -if not WeakAuras.IsTBC() then - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_CHANNEL", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_YELL", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_GUILD", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_OFFICER", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_PARTY", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_PARTY_LEADER", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_RAID", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_RAID_LEADER", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_SAY", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_WHISPER", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_WHISPER_INFORM", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_BN_WHISPER", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_BN_WHISPER_INFORM", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_INSTANCE_CHAT", filterFunc) - ChatFrameUtil.AddMessageEventFilter("CHAT_MSG_INSTANCE_CHAT_LEADER", filterFunc) -end - +ChatFrame_AddMessageEventFilter("CHAT_MSG_CHANNEL", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_YELL", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_GUILD", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_OFFICER", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_PARTY", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_PARTY_LEADER", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_RAID", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_RAID_LEADER", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_SAY", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_WHISPER", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_WHISPER_INFORM", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_BN_WHISPER", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_BN_WHISPER_INFORM", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_INSTANCE_CHAT", filterFunc) +ChatFrame_AddMessageEventFilter("CHAT_MSG_INSTANCE_CHAT_LEADER", filterFunc) local Compresser = LibStub:GetLibrary("LibCompress") local LibDeflate = LibStub:GetLibrary("LibDeflate") diff --git a/WeakAuras/Types.lua b/WeakAuras/Types.lua index 7b49b270de..c14854a606 100644 --- a/WeakAuras/Types.lua +++ b/WeakAuras/Types.lua @@ -1370,7 +1370,7 @@ do [6] = true, [7] = true, [8] = true, - [9] = not WeakAuras.IsClassicOrWrath() and true or nil, -- Goblin + [9] = not WeakAuras.IsClassicOrTBCOrWrath() and true or nil, -- Goblin [10] = true, [11] = true, [22] = true, @@ -1684,9 +1684,9 @@ elseif WeakAuras.IsCataClassic() then for _, k in ipairs{8, 12, 13, 16, 17, 18} do Private.power_types[k] = nil end -elseif WeakAuras.IsWrathClassic() then - for k = 7, 18 do - Private.power_types[k] = nil +elseif WeakAuras.IsTBCOrWrath() then + for i = (WeakAuras.IsTBC() and 6 or 7), 18 do + Private.power_types[i] = nil end end @@ -1812,7 +1812,7 @@ if WeakAuras.IsRetail() then Private.GetCurrencyIDFromLink = C_CurrencyInfo.GetCurrencyIDFromLink Private.ExpandCurrencyList = C_CurrencyInfo.ExpandCurrencyList Private.GetCurrencyListInfo = C_CurrencyInfo.GetCurrencyListInfo -elseif WeakAuras.IsWrathOrCataOrMists() then +elseif WeakAuras.IsTBCOrWrathOrCataOrMists() then Private.GetCurrencyListSize = GetCurrencyListSize ---@type fun(currencyLink: string): number? Private.GetCurrencyIDFromLink = function(currencyLink) @@ -2576,7 +2576,7 @@ if WeakAuras.IsClassicEra() then -- Classic runes[tostring(v)] = nil end end -elseif WeakAuras.IsWrathClassic() then +elseif WeakAuras.IsTBCOrWrath() then Private.texture_types["Blizzard Alerts"] = nil do local beams = Private.texture_types["Beams"] @@ -2890,7 +2890,7 @@ Private.swing_types = { ["off"] = SECONDARYHANDSLOT } -if WeakAuras.IsClassicOrWrath() then +if WeakAuras.IsClassicOrTBCOrWrath() then Private.swing_types["ranged"] = RANGEDSLOT end @@ -3131,7 +3131,7 @@ Private.instance_types = { ratedarena = L["Rated Arena"] } -if WeakAuras.IsClassicOrWrath() then +if WeakAuras.IsClassicOrTBCOrWrath() then Private.instance_types["ratedpvp"] = nil Private.instance_types["ratedarena"] = nil Private.instance_types["flexible"] = nil @@ -3276,7 +3276,7 @@ elseif WeakAuras.IsWrathClassic() then end ---@type table -if WeakAuras.IsClassicOrWrathOrCataOrMists() then +if WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() then Private.raid_role_types = { MAINTANK = "|TInterface\\GroupFrame\\UI-Group-maintankIcon:16:16|t "..MAINTANK, MAINASSIST = "|TInterface\\GroupFrame\\UI-Group-mainassistIcon:16:16|t "..MAINASSIST, @@ -3309,7 +3309,7 @@ Private.classification_types = { minus = L["Minus (Small Nameplate)"] } -if WeakAuras.IsWrathOrMistsOrRetail() then +if WeakAuras.IsTBCOrWrathOrMistsOrRetail() then ---@type table Private.creature_type_types = {} for _, creatureID in ipairs(C_CreatureInfo.GetCreatureTypeIDs()) do @@ -3677,7 +3677,7 @@ Private.pet_behavior_types = { assist = PET_MODE_ASSIST } -if WeakAuras.IsClassicOrWrath() then +if WeakAuras.IsClassicOrTBCOrWrath() then Private.pet_behavior_types.aggressive = PET_MODE_AGGRESSIVE Private.pet_behavior_types.assist = nil end @@ -4323,7 +4323,7 @@ Private.glow_types = { buttonOverlay = L["Action Button Glow"], } -if WeakAuras.IsMistsOrRetail() then +if WeakAuras.IsTBCOrMistsOrRetail() then Private.glow_types.Proc = L["Proc Glow"] end @@ -4384,7 +4384,7 @@ for i = 1, 4 do Private.multiUnitUnits.party["partypet"..i] = true end -if WeakAuras.IsWrathOrCataOrMistsOrRetail() then +if WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() then for i = 1, 10 do Private.baseUnitId["boss"..i] = true Private.multiUnitUnits.boss["boss"..i] = true @@ -4504,7 +4504,7 @@ skippedWeaponTypes[11] = true -- Bear Claws skippedWeaponTypes[12] = true -- Cat Claws skippedWeaponTypes[14] = true -- Misc skippedWeaponTypes[17] = true -- Spears -if WeakAuras.IsClassicOrWrathOrCataOrMists() then +if WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() then skippedWeaponTypes[9] = true -- Glaives else skippedWeaponTypes[16] = true -- Thrown @@ -4572,14 +4572,14 @@ if WeakAuras.IsClassicEra() then end end -if WeakAuras.IsWrathOrCata() then +if WeakAuras.IsTBCOrWrathOrCata() then for slot = 20, 28 do Private.item_slot_types[slot] = nil end Private.talent_extra_option_types[0] = nil Private.talent_extra_option_types[2] = nil - if WeakAuras.IsWrathClassic() then + if WeakAuras.IsTBCOrWrath() then Private.faction_group.Neutral = nil Private.item_slot_types[0] = AMMOSLOT Private.item_slot_types[18] = RANGEDSLOT @@ -4612,6 +4612,7 @@ if WeakAuras.IsWrathOrCata() then for _, spellid in ipairs(reset_ranged_swing_spell_list) do Private.reset_ranged_swing_spells[spellid] = true end + else -- Cata Private.item_slot_types[18] = RELICSLOT end diff --git a/WeakAuras/Types_TBC.lua b/WeakAuras/Types_TBC.lua index 9c313ceb9a..7e2bafbf09 100644 --- a/WeakAuras/Types_TBC.lua +++ b/WeakAuras/Types_TBC.lua @@ -127,3 +127,4044 @@ end function Private.get_zoneId_list() return "" end + +Private.talentInfo = { + ["WARRIOR"] = { + { + 132090, -- [1] + 3, -- [2] + 3, -- [3] + 12867, -- [4] + }, -- [1] + { + 135328, -- [1] + 5, -- [2] + 4, -- [3] + 12815, -- [4] + }, -- [2] + { + 132282, -- [1] + 1, -- [2] + 1, -- [3] + 12664, -- [4] + }, -- [3] + { + 133476, -- [1] + 5, -- [2] + 3, -- [3] + 12704, -- [4] + }, -- [4] + { + 132337, -- [1] + 2, -- [2] + 1, -- [3] + 12697, -- [4] + }, -- [5] + { + 132155, -- [1] + 1, -- [2] + 3, -- [3] + 12659, -- [4] + }, -- [6] + { + 132326, -- [1] + 2, -- [2] + 3, -- [3] + 12666, -- [4] + }, -- [7] + { + 132316, -- [1] + 6, -- [2] + 3, -- [3] + 23695, -- [4] + }, -- [8] + { + 132269, -- [1] + 1, -- [2] + 2, -- [3] + 16466, -- [4] + }, -- [9] + { + 135275, -- [1] + 3, -- [2] + 1, -- [3] + 12963, -- [4] + }, -- [10] + { + 132397, -- [1] + 5, -- [2] + 1, -- [3] + 12785, -- [4] + }, -- [11] + { + 136146, -- [1] + 5, -- [2] + 2, -- [3] + 12292, -- [4] + }, -- [12] + { + 132307, -- [1] + 6, -- [2] + 1, -- [3] + 29889, -- [4] + }, -- [13] + { + 132355, -- [1] + 7, -- [2] + 2, -- [3] + 12294, -- [4] + }, -- [14] + { + 132400, -- [1] + 4, -- [2] + 2, -- [3] + 12714, -- [4] + }, -- [15] + { + 135881, -- [1] + 3, -- [2] + 2, -- [3] + 12296, -- [4] + }, -- [16] + { + 135995, -- [1] + 2, -- [2] + 2, -- [3] + 12962, -- [4] + }, -- [17] + { + 132312, -- [1] + 4, -- [2] + 3, -- [3] + 16494, -- [4] + }, -- [18] + { + 132344, -- [1] + 9, -- [2] + 2, -- [3] + 29623, -- [4] + }, -- [19] + { + 132346, -- [1] + 6, -- [2] + 4, -- [3] + 29725, -- [4] + }, -- [20] + { + 132175, -- [1] + 7, -- [2] + 3, -- [3] + 29838, -- [4] + }, -- [21] + { + 132334, -- [1] + 7, -- [2] + 1, -- [3] + 29859, -- [4] + }, -- [22] + { + 132355, -- [1] + 8, -- [2] + 2, -- [3] + 35451, -- [4] + }, -- [23] + nil, -- [24] + nil, -- [25] + nil, -- [26] + nil, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 136035, -- [1] + 3, -- [2] + 4, -- [3] + 12861, -- [4] + }, -- [41] + { + 136224, -- [1] + 4, -- [2] + 3, -- [3] + 13048, -- [4] + }, -- [42] + { + 132152, -- [1] + 6, -- [2] + 3, -- [3] + 12974, -- [4] + }, -- [43] + { + 132292, -- [1] + 1, -- [2] + 3, -- [3] + 12856, -- [4] + }, -- [44] + { + 136075, -- [1] + 1, -- [2] + 2, -- [3] + 12838, -- [4] + }, -- [45] + { + 136097, -- [1] + 2, -- [2] + 3, -- [3] + 13002, -- [4] + }, -- [46] + { + 136147, -- [1] + 3, -- [2] + 2, -- [3] + 12323, -- [4] + }, -- [47] + { + 132366, -- [1] + 2, -- [2] + 2, -- [3] + 12879, -- [4] + }, -- [48] + { + 132306, -- [1] + 5, -- [2] + 2, -- [3] + 12328, -- [4] + }, -- [49] + { + 132338, -- [1] + 3, -- [2] + 1, -- [3] + 20496, -- [4] + }, -- [50] + { + 136012, -- [1] + 7, -- [2] + 2, -- [3] + 23881, -- [4] + }, -- [51] + { + 132340, -- [1] + 5, -- [2] + 1, -- [3] + 12330, -- [4] + }, -- [52] + { + 136218, -- [1] + 3, -- [2] + 3, -- [3] + 16492, -- [4] + }, -- [53] + { + 136009, -- [1] + 6, -- [2] + 1, -- [3] + 20501, -- [4] + }, -- [54] + { + 135358, -- [1] + 4, -- [2] + 2, -- [3] + 20503, -- [4] + }, -- [55] + { + 132367, -- [1] + 5, -- [2] + 4, -- [3] + 20505, -- [4] + }, -- [56] + { + 132147, -- [1] + 4, -- [2] + 1, -- [3] + 23588, -- [4] + }, -- [57] + { + 132369, -- [1] + 7, -- [2] + 3, -- [3] + 29776, -- [4] + }, -- [58] + { + 132222, -- [1] + 7, -- [2] + 1, -- [3] + 29592, -- [4] + }, -- [59] + { + 132275, -- [1] + 8, -- [2] + 3, -- [3] + 29763, -- [4] + }, -- [60] + { + 132352, -- [1] + 9, -- [2] + 2, -- [3] + 29801, -- [4] + }, -- [61] + nil, -- [62] + nil, -- [63] + nil, -- [64] + nil, -- [65] + nil, -- [66] + nil, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 136056, -- [1] + 1, -- [2] + 3, -- [3] + 12753, -- [4] + }, -- [81] + { + 135892, -- [1] + 2, -- [2] + 3, -- [3] + 12764, -- [4] + }, -- [82] + { + 136031, -- [1] + 1, -- [2] + 2, -- [3] + 12677, -- [4] + }, -- [83] + { + 132277, -- [1] + 1, -- [2] + 1, -- [3] + 12818, -- [4] + }, -- [84] + { + 136080, -- [1] + 4, -- [2] + 3, -- [3] + 12765, -- [4] + }, -- [85] + { + 132347, -- [1] + 3, -- [2] + 4, -- [3] + 12789, -- [4] + }, -- [86] + { + 132110, -- [1] + 3, -- [2] + 2, -- [3] + 12945, -- [4] + }, -- [87] + { + 132363, -- [1] + 4, -- [2] + 1, -- [3] + 12811, -- [4] + }, -- [88] + { + 132353, -- [1] + 3, -- [2] + 3, -- [3] + 12800, -- [4] + }, -- [89] + { + 134951, -- [1] + 7, -- [2] + 2, -- [3] + 23922, -- [4] + }, -- [90] + { + 132357, -- [1] + 5, -- [2] + 3, -- [3] + 12958, -- [4] + }, -- [91] + { + 132362, -- [1] + 5, -- [2] + 1, -- [3] + 12803, -- [4] + }, -- [92] + { + 132343, -- [1] + 4, -- [2] + 2, -- [3] + 12807, -- [4] + }, -- [93] + { + 132325, -- [1] + 5, -- [2] + 2, -- [3] + 12809, -- [4] + }, -- [94] + { + 135871, -- [1] + 3, -- [2] + 1, -- [3] + 12975, -- [4] + }, -- [95] + { + 135321, -- [1] + 6, -- [2] + 3, -- [3] + 16542, -- [4] + }, -- [96] + { + 134952, -- [1] + 2, -- [2] + 2, -- [3] + 12727, -- [4] + }, -- [97] + { + 132341, -- [1] + 7, -- [2] + 1, -- [3] + 29595, -- [4] + }, -- [98] + { + 133123, -- [1] + 8, -- [2] + 2, -- [3] + 29146, -- [4] + }, -- [99] + { + 132360, -- [1] + 6, -- [2] + 1, -- [3] + 29600, -- [4] + }, -- [100] + { + 132345, -- [1] + 7, -- [2] + 3, -- [3] + 29792, -- [4] + }, -- [101] + { + 135291, -- [1] + 9, -- [2] + 2, -- [3] + 20243, -- [4] + }, -- [102] + nil, -- [103] + nil, -- [104] + nil, -- [105] + nil, -- [106] + nil, -- [107] + nil, -- [108] + nil, -- [109] + nil, -- [110] + nil, -- [111] + nil, -- [112] + nil, -- [113] + nil, -- [114] + nil, -- [115] + nil, -- [116] + nil, -- [117] + nil, -- [118] + nil, -- [119] + nil, -- [120] + [121] = { + "WarriorArms", -- [1] + "WarriorFury", -- [2] + "WarriorProtection", -- [3] + }, + }, + ["SHAMAN"] = { + { + 135817, -- [1] + 2, -- [2] + 3, -- [3] + 16161, -- [4] + }, -- [1] + { + 136014, -- [1] + 3, -- [2] + 3, -- [3] + 16120, -- [4] + }, -- [2] + { + 135807, -- [1] + 1, -- [2] + 3, -- [3] + 16108, -- [4] + }, -- [3] + { + 136116, -- [1] + 1, -- [2] + 2, -- [3] + 16112, -- [4] + }, -- [4] + { + 135830, -- [1] + 5, -- [2] + 2, -- [3] + 16089, -- [4] + }, -- [5] + { + 135824, -- [1] + 4, -- [2] + 1, -- [3] + 16544, -- [4] + }, -- [6] + { + 136097, -- [1] + 2, -- [2] + 1, -- [3] + 16130, -- [4] + }, -- [7] + { + 136115, -- [1] + 7, -- [2] + 2, -- [3] + 16166, -- [4] + }, -- [8] + { + 136170, -- [1] + 3, -- [2] + 1, -- [3] + 16164, -- [4] + }, -- [9] + { + 135850, -- [1] + 3, -- [2] + 2, -- [3] + 16116, -- [4] + }, -- [10] + { + 135990, -- [1] + 6, -- [2] + 3, -- [3] + 16582, -- [4] + }, -- [11] + { + 136094, -- [1] + 2, -- [2] + 2, -- [3] + 28998, -- [4] + }, -- [12] + { + 136099, -- [1] + 5, -- [2] + 1, -- [3] + 29000, -- [4] + }, -- [13] + { + 136213, -- [1] + 4, -- [2] + 2, -- [3] + 29065, -- [4] + }, -- [14] + { + 135791, -- [1] + 4, -- [2] + 4, -- [3] + 29180, -- [4] + }, -- [15] + { + 136111, -- [1] + 5, -- [2] + 4, -- [3] + 30668, -- [4] + }, -- [16] + { + 136030, -- [1] + 7, -- [2] + 3, -- [3] + 30671, -- [4] + }, -- [17] + { + 136028, -- [1] + 6, -- [2] + 1, -- [3] + 30674, -- [4] + }, -- [18] + { + 136050, -- [1] + 8, -- [2] + 2, -- [3] + 30681, -- [4] + }, -- [19] + { + 135829, -- [1] + 9, -- [2] + 2, -- [3] + 30706, -- [4] + }, -- [20] + nil, -- [21] + nil, -- [22] + nil, -- [23] + nil, -- [24] + nil, -- [25] + nil, -- [26] + nil, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 136056, -- [1] + 3, -- [2] + 4, -- [3] + 16274, -- [4] + }, -- [41] + { + 132152, -- [1] + 4, -- [2] + 2, -- [3] + 16284, -- [4] + }, -- [42] + { + 136095, -- [1] + 2, -- [2] + 3, -- [3] + 16287, -- [4] + }, -- [43] + { + 136051, -- [1] + 2, -- [2] + 4, -- [3] + 16291, -- [4] + }, -- [44] + { + 136098, -- [1] + 2, -- [2] + 1, -- [3] + 16293, -- [4] + }, -- [45] + { + 136023, -- [1] + 3, -- [2] + 1, -- [3] + 16295, -- [4] + }, -- [46] + { + 135814, -- [1] + 5, -- [2] + 3, -- [3] + 29080, -- [4] + }, -- [47] + { + 134952, -- [1] + 1, -- [2] + 3, -- [3] + 16301, -- [4] + }, -- [48] + { + 132325, -- [1] + 2, -- [2] + 2, -- [3] + 16305, -- [4] + }, -- [49] + { + 136162, -- [1] + 1, -- [2] + 2, -- [3] + 17489, -- [4] + }, -- [50] + { + 135892, -- [1] + 4, -- [2] + 3, -- [3] + 16309, -- [4] + }, -- [51] + { + 132269, -- [1] + 5, -- [2] + 2, -- [3] + 16268, -- [4] + }, -- [52] + { + 136027, -- [1] + 3, -- [2] + 3, -- [3] + 43338, -- [4] + }, -- [53] + { + 132314, -- [1] + 7, -- [2] + 3, -- [3] + 17364, -- [4] + }, -- [54] + { + 132215, -- [1] + 6, -- [2] + 4, -- [3] + 29088, -- [4] + }, -- [55] + { + 135792, -- [1] + 5, -- [2] + 1, -- [3] + 29193, -- [4] + }, -- [56] + { + 136110, -- [1] + 8, -- [2] + 2, -- [3] + 30811, -- [4] + }, -- [57] + { + 132147, -- [1] + 7, -- [2] + 2, -- [3] + 30798, -- [4] + }, -- [58] + { + 136055, -- [1] + 6, -- [2] + 1, -- [3] + 30814, -- [4] + }, -- [59] + { + 132148, -- [1] + 7, -- [2] + 1, -- [3] + 30819, -- [4] + }, -- [60] + { + 136088, -- [1] + 9, -- [2] + 2, -- [3] + 30823, -- [4] + }, -- [61] + nil, -- [62] + nil, -- [63] + nil, -- [64] + nil, -- [65] + nil, -- [66] + nil, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 136109, -- [1] + 2, -- [2] + 2, -- [3] + 16240, -- [4] + }, -- [81] + { + 136069, -- [1] + 3, -- [2] + 3, -- [3] + 16189, -- [4] + }, -- [82] + { + 135860, -- [1] + 3, -- [2] + 1, -- [3] + 16198, -- [4] + }, -- [83] + { + 136052, -- [1] + 1, -- [2] + 2, -- [3] + 16229, -- [4] + }, -- [84] + { + 136043, -- [1] + 3, -- [2] + 2, -- [3] + 16234, -- [4] + }, -- [85] + { + 136053, -- [1] + 4, -- [2] + 2, -- [3] + 16208, -- [4] + }, -- [86] + { + 136080, -- [1] + 2, -- [2] + 1, -- [3] + 16209, -- [4] + }, -- [87] + { + 135861, -- [1] + 7, -- [2] + 2, -- [3] + 16190, -- [4] + }, -- [88] + { + 136076, -- [1] + 5, -- [2] + 3, -- [3] + 16188, -- [4] + }, -- [89] + { + 135865, -- [1] + 6, -- [2] + 3, -- [3] + 16213, -- [4] + }, -- [90] + { + 135859, -- [1] + 1, -- [2] + 3, -- [3] + 16217, -- [4] + }, -- [91] + { + 136107, -- [1] + 4, -- [2] + 3, -- [3] + 16221, -- [4] + }, -- [92] + { + 136057, -- [1] + 2, -- [2] + 3, -- [3] + 16225, -- [4] + }, -- [93] + { + 136041, -- [1] + 3, -- [2] + 4, -- [3] + 29191, -- [4] + }, -- [94] + { + 136044, -- [1] + 5, -- [2] + 1, -- [3] + 29202, -- [4] + }, -- [95] + { + 136035, -- [1] + 5, -- [2] + 4, -- [3] + 30866, -- [4] + }, -- [96] + { + 136059, -- [1] + 8, -- [2] + 2, -- [3] + 30869, -- [4] + }, -- [97] + { + 136042, -- [1] + 8, -- [2] + 3, -- [3] + 30873, -- [4] + }, -- [98] + { + 136089, -- [1] + 9, -- [2] + 2, -- [3] + 974, -- [4] + }, -- [99] + { + 136060, -- [1] + 7, -- [2] + 3, -- [3] + 30886, -- [4] + }, -- [100] + nil, -- [101] + nil, -- [102] + nil, -- [103] + nil, -- [104] + nil, -- [105] + nil, -- [106] + nil, -- [107] + nil, -- [108] + nil, -- [109] + nil, -- [110] + nil, -- [111] + nil, -- [112] + nil, -- [113] + nil, -- [114] + nil, -- [115] + nil, -- [116] + nil, -- [117] + nil, -- [118] + nil, -- [119] + nil, -- [120] + [121] = { + "ShamanElementalCombat", -- [1] + "ShamanEnhancement", -- [2] + "ShamanRestoration", -- [3] + }, + }, + ["MAGE"] = { + { + 135894, -- [1] + 1, -- [2] + 1, -- [3] + 12592, -- [4] + }, -- [1] + { + 136170, -- [1] + 2, -- [2] + 3, -- [3] + 12577, -- [4] + }, -- [2] + { + 135892, -- [1] + 1, -- [2] + 2, -- [3] + 12842, -- [4] + }, -- [3] + { + 136129, -- [1] + 5, -- [2] + 4, -- [3] + 12503, -- [4] + }, -- [4] + { + 135463, -- [1] + 2, -- [2] + 1, -- [3] + 6085, -- [4] + }, -- [5] + { + 136096, -- [1] + 1, -- [2] + 3, -- [3] + 16770, -- [4] + }, -- [6] + { + 136116, -- [1] + 3, -- [2] + 2, -- [3] + 12469, -- [4] + }, -- [7] + { + 136006, -- [1] + 3, -- [2] + 1, -- [3] + 12606, -- [4] + }, -- [8] + { + 136153, -- [1] + 4, -- [2] + 1, -- [3] + 12605, -- [4] + }, -- [9] + { + 135733, -- [1] + 3, -- [2] + 4, -- [3] + 28574, -- [4] + }, -- [10] + { + 136031, -- [1] + 5, -- [2] + 2, -- [3] + 12043, -- [4] + }, -- [11] + { + 136048, -- [1] + 7, -- [2] + 2, -- [3] + 12042, -- [4] + }, -- [12] + { + 135856, -- [1] + 4, -- [2] + 2, -- [3] + 12598, -- [4] + }, -- [13] + { + 136222, -- [1] + 6, -- [2] + 2, -- [3] + 15060, -- [4] + }, -- [14] + { + 136208, -- [1] + 4, -- [2] + 4, -- [3] + 18464, -- [4] + }, -- [15] + { + 136011, -- [1] + 2, -- [2] + 2, -- [3] + 29447, -- [4] + }, -- [16] + { + 135736, -- [1] + 5, -- [2] + 1, -- [3] + 31570, -- [4] + }, -- [17] + { + 135732, -- [1] + 6, -- [2] + 3, -- [3] + 31573, -- [4] + }, -- [18] + { + 135752, -- [1] + 6, -- [2] + 1, -- [3] + 31575, -- [4] + }, -- [19] + { + 136096, -- [1] + 7, -- [2] + 1, -- [3] + 31583, -- [4] + }, -- [20] + { + 135740, -- [1] + 8, -- [2] + 2, -- [3] + 31588, -- [4] + }, -- [21] + { + 136091, -- [1] + 9, -- [2] + 2, -- [3] + 31589, -- [4] + }, -- [22] + { + 135734, -- [1] + 7, -- [2] + 3, -- [3] + 35581, -- [4] + }, -- [23] + nil, -- [24] + nil, -- [25] + nil, -- [26] + nil, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 135805, -- [1] + 3, -- [2] + 4, -- [3] + 12351, -- [4] + }, -- [41] + { + 135806, -- [1] + 4, -- [2] + 2, -- [3] + 13043, -- [4] + }, -- [42] + { + 135827, -- [1] + 4, -- [2] + 1, -- [3] + 12873, -- [4] + }, -- [43] + { + 135812, -- [1] + 1, -- [2] + 2, -- [3] + 12341, -- [4] + }, -- [44] + { + 135807, -- [1] + 2, -- [2] + 3, -- [3] + 12342, -- [4] + }, -- [45] + { + 135815, -- [1] + 2, -- [2] + 2, -- [3] + 12353, -- [4] + }, -- [46] + { + 135808, -- [1] + 3, -- [2] + 3, -- [3] + 11366, -- [4] + }, -- [47] + { + 135821, -- [1] + 1, -- [2] + 3, -- [3] + 12360, -- [4] + }, -- [48] + { + 135826, -- [1] + 3, -- [2] + 2, -- [3] + 12350, -- [4] + }, -- [49] + { + 135903, -- [1] + 5, -- [2] + 3, -- [3] + 11113, -- [4] + }, -- [50] + { + 136115, -- [1] + 5, -- [2] + 2, -- [3] + 11368, -- [4] + }, -- [51] + { + 135818, -- [1] + 2, -- [2] + 1, -- [3] + 12848, -- [4] + }, -- [52] + { + 135817, -- [1] + 6, -- [2] + 3, -- [3] + 12400, -- [4] + }, -- [53] + { + 135824, -- [1] + 7, -- [2] + 2, -- [3] + 11129, -- [4] + }, -- [54] + { + 135813, -- [1] + 3, -- [2] + 1, -- [3] + 18460, -- [4] + }, -- [55] + { + 135820, -- [1] + 4, -- [2] + 4, -- [3] + 29076, -- [4] + }, -- [56] + { + 135823, -- [1] + 5, -- [2] + 1, -- [3] + 31640, -- [4] + }, -- [57] + { + 135788, -- [1] + 6, -- [2] + 1, -- [3] + 31642, -- [4] + }, -- [58] + { + 135822, -- [1] + 7, -- [2] + 3, -- [3] + 31680, -- [4] + }, -- [59] + { + 135789, -- [1] + 7, -- [2] + 1, -- [3] + 34296, -- [4] + }, -- [60] + { + 135812, -- [1] + 8, -- [2] + 3, -- [3] + 31660, -- [4] + }, -- [61] + { + 134153, -- [1] + 9, -- [2] + 2, -- [3] + 31661, -- [4] + }, -- [62] + nil, -- [63] + nil, -- [64] + nil, -- [65] + nil, -- [66] + nil, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 135846, -- [1] + 1, -- [2] + 2, -- [3] + 16766, -- [4] + }, -- [81] + { + 135842, -- [1] + 2, -- [2] + 2, -- [3] + 12497, -- [4] + }, -- [82] + { + 135845, -- [1] + 3, -- [2] + 1, -- [3] + 12953, -- [4] + }, -- [83] + { + 135840, -- [1] + 2, -- [2] + 3, -- [3] + 12475, -- [4] + }, -- [84] + { + 135857, -- [1] + 3, -- [2] + 4, -- [3] + 12488, -- [4] + }, -- [85] + { + 135852, -- [1] + 5, -- [2] + 3, -- [3] + 12490, -- [4] + }, -- [86] + { + 135864, -- [1] + 2, -- [2] + 4, -- [3] + 12571, -- [4] + }, -- [87] + { + 135860, -- [1] + 4, -- [2] + 2, -- [3] + 12519, -- [4] + }, -- [88] + { + 135849, -- [1] + 4, -- [2] + 3, -- [3] + 12985, -- [4] + }, -- [89] + { + 135836, -- [1] + 6, -- [2] + 3, -- [3] + 28595, -- [4] + }, -- [90] + { + 135838, -- [1] + 3, -- [2] + 2, -- [3] + 12472, -- [4] + }, -- [91] + { + 135850, -- [1] + 1, -- [2] + 1, -- [3] + 28332, -- [4] + }, -- [92] + { + 135988, -- [1] + 7, -- [2] + 2, -- [3] + 11426, -- [4] + }, -- [93] + { + 135865, -- [1] + 5, -- [2] + 2, -- [3] + 11958, -- [4] + }, -- [94] + { + 135855, -- [1] + 2, -- [2] + 1, -- [3] + 15053, -- [4] + }, -- [95] + { + 136141, -- [1] + 4, -- [2] + 1, -- [3] + 16758, -- [4] + }, -- [96] + { + 135989, -- [1] + 1, -- [2] + 3, -- [3] + 29440, -- [4] + }, -- [97] + { + 135851, -- [1] + 5, -- [2] + 1, -- [3] + 31669, -- [4] + }, -- [98] + { + 135854, -- [1] + 6, -- [2] + 1, -- [3] + 31672, -- [4] + }, -- [99] + { + 135833, -- [1] + 7, -- [2] + 3, -- [3] + 31678, -- [4] + }, -- [100] + { + 135846, -- [1] + 8, -- [2] + 2, -- [3] + 31686, -- [4] + }, -- [101] + { + 135862, -- [1] + 9, -- [2] + 2, -- [3] + 31687, -- [4] + }, -- [102] + nil, -- [103] + nil, -- [104] + nil, -- [105] + nil, -- [106] + nil, -- [107] + nil, -- [108] + nil, -- [109] + nil, -- [110] + nil, -- [111] + nil, -- [112] + nil, -- [113] + nil, -- [114] + nil, -- [115] + nil, -- [116] + nil, -- [117] + nil, -- [118] + nil, -- [119] + nil, -- [120] + [121] = { + "MageArcane", -- [1] + "MageFire", -- [2] + "MageFrost", -- [3] + }, + }, + ["PRIEST"] = { + { + 136107, -- [1] + 2, -- [2] + 4, -- [3] + 14774, -- [4] + }, -- [1] + { + 135939, -- [1] + 7, -- [2] + 2, -- [3] + 10060, -- [4] + }, -- [2] + { + 132156, -- [1] + 4, -- [2] + 2, -- [3] + 14783, -- [4] + }, -- [3] + { + 135995, -- [1] + 1, -- [2] + 2, -- [3] + 14791, -- [4] + }, -- [4] + { + 135940, -- [1] + 2, -- [2] + 3, -- [3] + 14769, -- [4] + }, -- [5] + { + 135987, -- [1] + 2, -- [2] + 2, -- [3] + 14767, -- [4] + }, -- [6] + { + 135463, -- [1] + 1, -- [2] + 3, -- [3] + 14528, -- [4] + }, -- [7] + { + 135926, -- [1] + 4, -- [2] + 1, -- [3] + 14771, -- [4] + }, -- [8] + { + 136090, -- [1] + 3, -- [2] + 3, -- [3] + 14777, -- [4] + }, -- [9] + { + 135863, -- [1] + 3, -- [2] + 2, -- [3] + 14751, -- [4] + }, -- [10] + { + 136170, -- [1] + 4, -- [2] + 4, -- [3] + 14772, -- [4] + }, -- [11] + { + 135898, -- [1] + 5, -- [2] + 3, -- [3] + 14752, -- [4] + }, -- [12] + { + 136053, -- [1] + 2, -- [2] + 1, -- [3] + 14787, -- [4] + }, -- [13] + { + 136031, -- [1] + 5, -- [2] + 2, -- [3] + 18555, -- [4] + }, -- [14] + { + 136092, -- [1] + 6, -- [2] + 3, -- [3] + 18550, -- [4] + }, -- [15] + { + 135868, -- [1] + 3, -- [2] + 1, -- [3] + 33172, -- [4] + }, -- [16] + { + 135898, -- [1] + 5, -- [2] + 4, -- [3] + 33182, -- [4] + }, -- [17] + { + 136158, -- [1] + 6, -- [2] + 1, -- [3] + 33190, -- [4] + }, -- [18] + { + 135740, -- [1] + 8, -- [2] + 2, -- [3] + 34912, -- [4] + }, -- [19] + { + 135940, -- [1] + 7, -- [2] + 3, -- [3] + 33205, -- [4] + }, -- [20] + { + 135936, -- [1] + 9, -- [2] + 2, -- [3] + 33206, -- [4] + }, -- [21] + { + 135737, -- [1] + 7, -- [2] + 1, -- [3] + 45244, -- [4] + }, -- [22] + nil, -- [23] + nil, -- [24] + nil, -- [25] + nil, -- [26] + nil, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 135928, -- [1] + 3, -- [2] + 4, -- [3] + 15363, -- [4] + }, -- [41] + { + 135967, -- [1] + 1, -- [2] + 3, -- [3] + 15011, -- [4] + }, -- [42] + { + 135977, -- [1] + 5, -- [2] + 3, -- [3] + 15031, -- [4] + }, -- [43] + { + 135973, -- [1] + 4, -- [2] + 3, -- [3] + 15017, -- [4] + }, -- [44] + { + 136057, -- [1] + 6, -- [2] + 3, -- [3] + 15356, -- [4] + }, -- [45] + { + 135953, -- [1] + 1, -- [2] + 2, -- [3] + 17191, -- [4] + }, -- [46] + { + 135916, -- [1] + 4, -- [2] + 2, -- [3] + 15014, -- [4] + }, -- [47] + { + 135918, -- [1] + 1, -- [2] + 1, -- [3] + 15012, -- [4] + }, -- [48] + { + 135976, -- [1] + 2, -- [2] + 2, -- [3] + 27904, -- [4] + }, -- [49] + { + 135943, -- [1] + 5, -- [2] + 1, -- [3] + 15018, -- [4] + }, -- [50] + { + 135922, -- [1] + 3, -- [2] + 1, -- [3] + 15237, -- [4] + }, -- [51] + { + 135971, -- [1] + 2, -- [2] + 3, -- [3] + 18535, -- [4] + }, -- [52] + { + 132864, -- [1] + 5, -- [2] + 2, -- [3] + 20711, -- [4] + }, -- [53] + { + 135949, -- [1] + 4, -- [2] + 1, -- [3] + 27790, -- [4] + }, -- [54] + { + 135877, -- [1] + 3, -- [2] + 2, -- [3] + 27816, -- [4] + }, -- [55] + { + 135980, -- [1] + 7, -- [2] + 2, -- [3] + 724, -- [4] + }, -- [56] + { + 135878, -- [1] + 7, -- [2] + 3, -- [3] + 33146, -- [4] + }, -- [57] + { + 135981, -- [1] + 6, -- [2] + 1, -- [3] + 33154, -- [4] + }, -- [58] + { + 135913, -- [1] + 8, -- [2] + 2, -- [3] + 33162, -- [4] + }, -- [59] + { + 135905, -- [1] + 7, -- [2] + 1, -- [3] + 34860, -- [4] + }, -- [60] + { + 135887, -- [1] + 9, -- [2] + 2, -- [3] + 34861, -- [4] + }, -- [61] + nil, -- [62] + nil, -- [63] + nil, -- [64] + nil, -- [65] + nil, -- [66] + nil, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 136123, -- [1] + 4, -- [2] + 4, -- [3] + 15334, -- [4] + }, -- [81] + { + 136223, -- [1] + 6, -- [2] + 3, -- [3] + 15310, -- [4] + }, -- [82] + { + 136126, -- [1] + 2, -- [2] + 3, -- [3] + 15330, -- [4] + }, -- [83] + { + 136160, -- [1] + 1, -- [2] + 3, -- [3] + 15326, -- [4] + }, -- [84] + { + 136188, -- [1] + 1, -- [2] + 2, -- [3] + 15338, -- [4] + }, -- [85] + { + 136205, -- [1] + 2, -- [2] + 1, -- [3] + 15320, -- [4] + }, -- [86] + { + 136224, -- [1] + 3, -- [2] + 2, -- [3] + 15316, -- [4] + }, -- [87] + { + 136207, -- [1] + 2, -- [2] + 2, -- [3] + 15317, -- [4] + }, -- [88] + { + 135994, -- [1] + 4, -- [2] + 2, -- [3] + 15311, -- [4] + }, -- [89] + { + 136230, -- [1] + 5, -- [2] + 2, -- [3] + 15286, -- [4] + }, -- [90] + { + 136208, -- [1] + 3, -- [2] + 3, -- [3] + 15407, -- [4] + }, -- [91] + { + 136200, -- [1] + 7, -- [2] + 2, -- [3] + 15473, -- [4] + }, -- [92] + { + 136164, -- [1] + 5, -- [2] + 1, -- [3] + 15487, -- [4] + }, -- [93] + { + 136184, -- [1] + 3, -- [2] + 1, -- [3] + 15448, -- [4] + }, -- [94] + { + 136130, -- [1] + 4, -- [2] + 3, -- [3] + 17323, -- [4] + }, -- [95] + { + 136165, -- [1] + 5, -- [2] + 3, -- [3] + 27840, -- [4] + }, -- [96] + { + 136035, -- [1] + 5, -- [2] + 4, -- [3] + 33215, -- [4] + }, -- [97] + { + 136204, -- [1] + 7, -- [2] + 3, -- [3] + 33225, -- [4] + }, -- [98] + { + 135978, -- [1] + 9, -- [2] + 2, -- [3] + 34914, -- [4] + }, -- [99] + { + 136162, -- [1] + 6, -- [2] + 1, -- [3] + 33371, -- [4] + }, -- [100] + { + 136176, -- [1] + 8, -- [2] + 3, -- [3] + 33195, -- [4] + }, -- [101] + nil, -- [102] + nil, -- [103] + nil, -- [104] + nil, -- [105] + nil, -- [106] + nil, -- [107] + nil, -- [108] + nil, -- [109] + nil, -- [110] + nil, -- [111] + nil, -- [112] + nil, -- [113] + nil, -- [114] + nil, -- [115] + nil, -- [116] + nil, -- [117] + nil, -- [118] + nil, -- [119] + nil, -- [120] + [121] = { + "PriestDiscipline", -- [1] + "PriestHoly", -- [2] + "PriestShadow", -- [3] + }, + }, + ["WARLOCK"] = { + { + 136157, -- [1] + 3, -- [2] + 2, -- [3] + 17787, -- [4] + }, -- [1] + { + 136223, -- [1] + 4, -- [2] + 2, -- [3] + 18095, -- [4] + }, -- [2] + { + 136118, -- [1] + 1, -- [2] + 3, -- [3] + 17814, -- [4] + }, -- [3] + { + 136169, -- [1] + 2, -- [2] + 4, -- [3] + 17805, -- [4] + }, -- [4] + { + 136230, -- [1] + 1, -- [2] + 2, -- [3] + 18178, -- [4] + }, -- [5] + { + 136138, -- [1] + 2, -- [2] + 1, -- [3] + 18180, -- [4] + }, -- [6] + { + 136126, -- [1] + 2, -- [2] + 3, -- [3] + 18183, -- [4] + }, -- [7] + { + 136127, -- [1] + 4, -- [2] + 1, -- [3] + 18219, -- [4] + }, -- [8] + { + 136141, -- [1] + 7, -- [2] + 3, -- [3] + 18220, -- [4] + }, -- [9] + { + 136188, -- [1] + 5, -- [2] + 2, -- [3] + 18265, -- [4] + }, -- [10] + { + 136195, -- [1] + 6, -- [2] + 2, -- [3] + 18275, -- [4] + }, -- [11] + { + 136132, -- [1] + 3, -- [2] + 3, -- [3] + 18288, -- [4] + }, -- [12] + { + 136162, -- [1] + 5, -- [2] + 3, -- [3] + 18223, -- [4] + }, -- [13] + { + 136163, -- [1] + 2, -- [2] + 2, -- [3] + 18372, -- [4] + }, -- [14] + { + 136139, -- [1] + 3, -- [2] + 1, -- [3] + 18829, -- [4] + }, -- [15] + { + 136137, -- [1] + 8, -- [2] + 3, -- [3] + 32484, -- [4] + }, -- [16] + { + 136147, -- [1] + 8, -- [2] + 1, -- [3] + 30057, -- [4] + }, -- [17] + { + 136180, -- [1] + 7, -- [2] + 2, -- [3] + 30064, -- [4] + }, -- [18] + { + 136228, -- [1] + 9, -- [2] + 2, -- [3] + 30108, -- [4] + }, -- [19] + { + 136198, -- [1] + 5, -- [2] + 1, -- [3] + 32394, -- [4] + }, -- [20] + { + 136118, -- [1] + 4, -- [2] + 4, -- [3] + 32383, -- [4] + }, -- [21] + nil, -- [22] + nil, -- [23] + nil, -- [24] + nil, -- [25] + nil, -- [26] + nil, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 135230, -- [1] + 1, -- [2] + 1, -- [3] + 18693, -- [4] + }, -- [41] + { + 136218, -- [1] + 1, -- [2] + 2, -- [3] + 18696, -- [4] + }, -- [42] + { + 136172, -- [1] + 1, -- [2] + 3, -- [3] + 18701, -- [4] + }, -- [43] + { + 136168, -- [1] + 2, -- [2] + 1, -- [3] + 18704, -- [4] + }, -- [44] + { + 136221, -- [1] + 2, -- [2] + 2, -- [3] + 18707, -- [4] + }, -- [45] + { + 136082, -- [1] + 3, -- [2] + 2, -- [3] + 18708, -- [4] + }, -- [46] + { + 136164, -- [1] + 4, -- [2] + 2, -- [3] + 18710, -- [4] + }, -- [47] + { + 136121, -- [1] + 3, -- [2] + 3, -- [3] + 18750, -- [4] + }, -- [48] + { + 135932, -- [1] + 2, -- [2] + 3, -- [3] + 18744, -- [4] + }, -- [49] + { + 4352493, -- [1] + 3, -- [2] + 1, -- [3] + 18756, -- [4] + }, -- [50] + { + 136203, -- [1] + 6, -- [2] + 3, -- [3] + 23825, -- [4] + }, -- [51] + { + 132386, -- [1] + 5, -- [2] + 4, -- [3] + 18768, -- [4] + }, -- [52] + { + 136206, -- [1] + 4, -- [2] + 3, -- [3] + 18773, -- [4] + }, -- [53] + { + 136165, -- [1] + 7, -- [2] + 3, -- [3] + 35693, -- [4] + }, -- [54] + { + 136184, -- [1] + 5, -- [2] + 2, -- [3] + 18788, -- [4] + }, -- [55] + { + 136160, -- [1] + 7, -- [2] + 2, -- [3] + 19028, -- [4] + }, -- [56] + { + 136154, -- [1] + 5, -- [2] + 1, -- [3] + 18822, -- [4] + }, -- [57] + { + 136185, -- [1] + 3, -- [2] + 4, -- [3] + 30145, -- [4] + }, -- [58] + { + 136216, -- [1] + 9, -- [2] + 2, -- [3] + 30146, -- [4] + }, -- [59] + { + 136150, -- [1] + 8, -- [2] + 2, -- [3] + 30248, -- [4] + }, -- [60] + { + 136149, -- [1] + 7, -- [2] + 1, -- [3] + 30321, -- [4] + }, -- [61] + { + 136171, -- [1] + 6, -- [2] + 1, -- [3] + 30328, -- [4] + }, -- [62] + nil, -- [63] + nil, -- [64] + nil, -- [65] + nil, -- [66] + nil, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 135831, -- [1] + 1, -- [2] + 3, -- [3] + 17782, -- [4] + }, -- [81] + { + 136146, -- [1] + 2, -- [2] + 2, -- [3] + 17792, -- [4] + }, -- [82] + { + 136197, -- [1] + 1, -- [2] + 2, -- [3] + 17803, -- [4] + }, -- [83] + { + 135817, -- [1] + 5, -- [2] + 2, -- [3] + 17836, -- [4] + }, -- [84] + { + 136191, -- [1] + 3, -- [2] + 4, -- [3] + 17877, -- [4] + }, -- [85] + { + 136133, -- [1] + 4, -- [2] + 2, -- [3] + 17918, -- [4] + }, -- [86] + { + 135827, -- [1] + 4, -- [2] + 4, -- [3] + 17930, -- [4] + }, -- [87] + { + 135826, -- [1] + 6, -- [2] + 3, -- [3] + 17958, -- [4] + }, -- [88] + { + 136207, -- [1] + 5, -- [2] + 3, -- [3] + 17959, -- [4] + }, -- [89] + { + 135807, -- [1] + 7, -- [2] + 2, -- [3] + 17962, -- [4] + }, -- [90] + { + 135813, -- [1] + 3, -- [2] + 3, -- [3] + 18134, -- [4] + }, -- [91] + { + 135805, -- [1] + 2, -- [2] + 3, -- [3] + 18123, -- [4] + }, -- [92] + { + 135809, -- [1] + 3, -- [2] + 1, -- [3] + 18127, -- [4] + }, -- [93] + { + 136136, -- [1] + 3, -- [2] + 2, -- [3] + 18129, -- [4] + }, -- [94] + { + 135819, -- [1] + 4, -- [2] + 1, -- [3] + 18136, -- [4] + }, -- [95] + { + 135830, -- [1] + 5, -- [2] + 1, -- [3] + 18073, -- [4] + }, -- [96] + { + 136201, -- [1] + 9, -- [2] + 2, -- [3] + 30283, -- [4] + }, -- [97] + { + 136196, -- [1] + 8, -- [2] + 2, -- [3] + 30292, -- [4] + }, -- [98] + { + 136214, -- [1] + 7, -- [2] + 3, -- [3] + 30296, -- [4] + }, -- [99] + { + 136178, -- [1] + 6, -- [2] + 1, -- [3] + 30302, -- [4] + }, -- [100] + { + 135823, -- [1] + 7, -- [2] + 1, -- [3] + 34939, -- [4] + }, -- [101] + nil, -- [102] + nil, -- [103] + nil, -- [104] + nil, -- [105] + nil, -- [106] + nil, -- [107] + nil, -- [108] + nil, -- [109] + nil, -- [110] + nil, -- [111] + nil, -- [112] + nil, -- [113] + nil, -- [114] + nil, -- [115] + nil, -- [116] + nil, -- [117] + nil, -- [118] + nil, -- [119] + nil, -- [120] + [121] = { + "WarlockCurses", -- [1] + "WarlockSummoning", -- [2] + "WarlockDestruction", -- [3] + }, + }, + ["HUNTER"] = { + { + 132159, -- [1] + 2, -- [2] + 2, -- [3] + 19551, -- [4] + }, -- [1] + { + 136076, -- [1] + 1, -- [2] + 2, -- [3] + 19556, -- [4] + }, -- [2] + { + 132242, -- [1] + 3, -- [2] + 1, -- [3] + 19560, -- [4] + }, -- [3] + { + 132179, -- [1] + 4, -- [2] + 2, -- [3] + 19573, -- [4] + }, -- [4] + { + 132127, -- [1] + 7, -- [2] + 2, -- [3] + 19574, -- [4] + }, -- [5] + { + 132111, -- [1] + 5, -- [2] + 2, -- [3] + 19577, -- [4] + }, -- [6] + { + 132121, -- [1] + 5, -- [2] + 1, -- [3] + 20895, -- [4] + }, -- [7] + { + 136080, -- [1] + 1, -- [2] + 3, -- [3] + 19587, -- [4] + }, -- [8] + { + 136006, -- [1] + 5, -- [2] + 4, -- [3] + 19592, -- [4] + }, -- [9] + { + 132120, -- [1] + 3, -- [2] + 2, -- [3] + 19596, -- [4] + }, -- [10] + { + 134297, -- [1] + 4, -- [2] + 3, -- [3] + 19602, -- [4] + }, -- [11] + { + 134355, -- [1] + 2, -- [2] + 3, -- [3] + 19612, -- [4] + }, -- [12] + { + 132091, -- [1] + 3, -- [2] + 3, -- [3] + 19620, -- [4] + }, -- [13] + { + 134296, -- [1] + 6, -- [2] + 3, -- [3] + 19625, -- [4] + }, -- [14] + { + 132210, -- [1] + 2, -- [2] + 1, -- [3] + 35030, -- [4] + }, -- [15] + { + 132163, -- [1] + 2, -- [2] + 4, -- [3] + 19575, -- [4] + }, -- [16] + { + 132158, -- [1] + 6, -- [2] + 1, -- [3] + 34454, -- [4] + }, -- [17] + { + 132173, -- [1] + 7, -- [2] + 1, -- [3] + 34460, -- [4] + }, -- [18] + { + 132167, -- [1] + 7, -- [2] + 3, -- [3] + 34465, -- [4] + }, -- [19] + { + 132209, -- [1] + 8, -- [2] + 3, -- [3] + 34470, -- [4] + }, -- [20] + { + 132166, -- [1] + 9, -- [2] + 2, -- [3] + 34692, -- [4] + }, -- [21] + nil, -- [22] + nil, -- [23] + nil, -- [24] + nil, -- [25] + nil, -- [26] + nil, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 135860, -- [1] + 1, -- [2] + 2, -- [3] + 19415, -- [4] + }, -- [41] + { + 135865, -- [1] + 2, -- [2] + 3, -- [3] + 19420, -- [4] + }, -- [42] + { + 132212, -- [1] + 2, -- [2] + 2, -- [3] + 19425, -- [4] + }, -- [43] + { + 132312, -- [1] + 1, -- [2] + 3, -- [3] + 19431, -- [4] + }, -- [44] + { + 135130, -- [1] + 3, -- [2] + 3, -- [3] + 19434, -- [4] + }, -- [45] + { + 132218, -- [1] + 3, -- [2] + 2, -- [3] + 19458, -- [4] + }, -- [46] + { + 132330, -- [1] + 5, -- [2] + 3, -- [3] + 24691, -- [4] + }, -- [47] + { + 132204, -- [1] + 4, -- [2] + 2, -- [3] + 19468, -- [4] + }, -- [48] + { + 132271, -- [1] + 4, -- [2] + 3, -- [3] + 19490, -- [4] + }, -- [49] + { + 135753, -- [1] + 5, -- [2] + 1, -- [3] + 35103, -- [4] + }, -- [50] + { + 132153, -- [1] + 5, -- [2] + 2, -- [3] + 19503, -- [4] + }, -- [51] + { + 132329, -- [1] + 7, -- [2] + 2, -- [3] + 19506, -- [4] + }, -- [52] + { + 135615, -- [1] + 6, -- [2] + 4, -- [3] + 19511, -- [4] + }, -- [53] + { + 132168, -- [1] + 6, -- [2] + 1, -- [3] + 34476, -- [4] + }, -- [54] + { + 132217, -- [1] + 7, -- [2] + 1, -- [3] + 34484, -- [4] + }, -- [55] + { + 132177, -- [1] + 8, -- [2] + 2, -- [3] + 34489, -- [4] + }, -- [56] + { + 132323, -- [1] + 9, -- [2] + 2, -- [3] + 34490, -- [4] + }, -- [57] + { + 132174, -- [1] + 3, -- [2] + 1, -- [3] + 34954, -- [4] + }, -- [58] + { + 132205, -- [1] + 3, -- [2] + 4, -- [3] + 34949, -- [4] + }, -- [59] + { + 132330, -- [1] + 7, -- [2] + 3, -- [3] + 35111, -- [4] + }, -- [60] + nil, -- [61] + nil, -- [62] + nil, -- [63] + nil, -- [64] + nil, -- [65] + nil, -- [66] + nil, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 135942, -- [1] + 1, -- [2] + 2, -- [3] + 19153, -- [4] + }, -- [81] + { + 136047, -- [1] + 6, -- [2] + 3, -- [3] + 24297, -- [4] + }, -- [82] + { + 136100, -- [1] + 2, -- [2] + 1, -- [3] + 19388, -- [4] + }, -- [83] + { + 132309, -- [1] + 2, -- [2] + 3, -- [3] + 19233, -- [4] + }, -- [84] + { + 136106, -- [1] + 3, -- [2] + 1, -- [3] + 19245, -- [4] + }, -- [85] + { + 132369, -- [1] + 3, -- [2] + 3, -- [3] + 19263, -- [4] + }, -- [86] + { + 132293, -- [1] + 4, -- [2] + 4, -- [3] + 19287, -- [4] + }, -- [87] + { + 132219, -- [1] + 4, -- [2] + 2, -- [3] + 24283, -- [4] + }, -- [88] + { + 132269, -- [1] + 2, -- [2] + 2, -- [3] + 19300, -- [4] + }, -- [89] + { + 132336, -- [1] + 5, -- [2] + 3, -- [3] + 19306, -- [4] + }, -- [90] + { + 135881, -- [1] + 5, -- [2] + 2, -- [3] + 19373, -- [4] + }, -- [91] + { + 132149, -- [1] + 4, -- [2] + 1, -- [3] + 19377, -- [4] + }, -- [92] + { + 135125, -- [1] + 7, -- [2] + 2, -- [3] + 19386, -- [4] + }, -- [93] + { + 132277, -- [1] + 1, -- [2] + 4, -- [3] + 19160, -- [4] + }, -- [94] + { + 136223, -- [1] + 3, -- [2] + 2, -- [3] + 19259, -- [4] + }, -- [95] + { + 134154, -- [1] + 1, -- [2] + 1, -- [3] + 24295, -- [4] + }, -- [96] + { + 132207, -- [1] + 6, -- [2] + 1, -- [3] + 34493, -- [4] + }, -- [97] + { + 132214, -- [1] + 5, -- [2] + 1, -- [3] + 34496, -- [4] + }, -- [98] + { + 132216, -- [1] + 7, -- [2] + 1, -- [3] + 34499, -- [4] + }, -- [99] + { + 132295, -- [1] + 7, -- [2] + 3, -- [3] + 34503, -- [4] + }, -- [100] + { + 132178, -- [1] + 8, -- [2] + 2, -- [3] + 34839, -- [4] + }, -- [101] + { + 132206, -- [1] + 9, -- [2] + 2, -- [3] + 23989, -- [4] + }, -- [102] + { + 132327, -- [1] + 1, -- [2] + 3, -- [3] + 19500, -- [4] + }, -- [103] + nil, -- [104] + nil, -- [105] + nil, -- [106] + nil, -- [107] + nil, -- [108] + nil, -- [109] + nil, -- [110] + nil, -- [111] + nil, -- [112] + nil, -- [113] + nil, -- [114] + nil, -- [115] + nil, -- [116] + nil, -- [117] + nil, -- [118] + nil, -- [119] + nil, -- [120] + [121] = { + "HunterBeastMastery", -- [1] + "HunterMarksmanship", -- [2] + "HunterSurvival", -- [3] + }, + }, + ["DRUID"] = { + { + 136063, -- [1] + 1, -- [2] + 2, -- [3] + 16689, -- [4] + }, -- [1] + { + 136006, -- [1] + 1, -- [2] + 1, -- [3] + 16818, -- [4] + }, -- [2] + { + 136096, -- [1] + 2, -- [2] + 3, -- [3] + 16822, -- [4] + }, -- [3] + { + 136065, -- [1] + 3, -- [2] + 4, -- [3] + 16820, -- [4] + }, -- [4] + { + 136104, -- [1] + 3, -- [2] + 1, -- [3] + 16840, -- [4] + }, -- [5] + { + 136087, -- [1] + 5, -- [2] + 3, -- [3] + 16847, -- [4] + }, -- [6] + { + 135753, -- [1] + 4, -- [2] + 3, -- [3] + 16924, -- [4] + }, -- [7] + { + 136100, -- [1] + 2, -- [2] + 1, -- [3] + 16920, -- [4] + }, -- [8] + { + 136045, -- [1] + 3, -- [2] + 3, -- [3] + 5570, -- [4] + }, -- [9] + { + 136062, -- [1] + 5, -- [2] + 2, -- [3] + 16880, -- [4] + }, -- [10] + { + 136057, -- [1] + 6, -- [2] + 2, -- [3] + 16901, -- [4] + }, -- [11] + { + 136075, -- [1] + 4, -- [2] + 2, -- [3] + 16913, -- [4] + }, -- [12] + { + 136036, -- [1] + 7, -- [2] + 2, -- [3] + 24858, -- [4] + }, -- [13] + { + 136063, -- [1] + 1, -- [2] + 3, -- [3] + 17249, -- [4] + }, -- [14] + { + 132132, -- [1] + 5, -- [2] + 1, -- [3] + 33591, -- [4] + }, -- [15] + { + 132113, -- [1] + 6, -- [2] + 3, -- [3] + 33596, -- [4] + }, -- [16] + { + 132123, -- [1] + 7, -- [2] + 1, -- [3] + 33956, -- [4] + }, -- [17] + { + 136033, -- [1] + 7, -- [2] + 3, -- [3] + 33602, -- [4] + }, -- [18] + { + 132146, -- [1] + 8, -- [2] + 2, -- [3] + 33607, -- [4] + }, -- [19] + { + 132129, -- [1] + 9, -- [2] + 2, -- [3] + 33831, -- [4] + }, -- [20] + { + 135138, -- [1] + 2, -- [2] + 2, -- [3] + 35364, -- [4] + }, -- [21] + nil, -- [22] + nil, -- [23] + nil, -- [24] + nil, -- [25] + nil, -- [26] + nil, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 134355, -- [1] + 2, -- [2] + 3, -- [3] + 16931, -- [4] + }, -- [41] + { + 132121, -- [1] + 1, -- [2] + 3, -- [3] + 16862, -- [4] + }, -- [42] + { + 132190, -- [1] + 1, -- [2] + 2, -- [3] + 16938, -- [4] + }, -- [43] + { + 132114, -- [1] + 2, -- [2] + 2, -- [3] + 16941, -- [4] + }, -- [44] + { + 134297, -- [1] + 3, -- [2] + 3, -- [3] + 16944, -- [4] + }, -- [45] + { + 132089, -- [1] + 2, -- [2] + 1, -- [3] + 16949, -- [4] + }, -- [46] + { + 132278, -- [1] + 4, -- [2] + 3, -- [3] + 37117, -- [4] + }, -- [47] + { + 136231, -- [1] + 4, -- [2] + 1, -- [3] + 16968, -- [4] + }, -- [48] + { + 132185, -- [1] + 4, -- [2] + 2, -- [3] + 16975, -- [4] + }, -- [49] + { + 132183, -- [1] + 3, -- [2] + 2, -- [3] + 16979, -- [4] + }, -- [50] + { + 132141, -- [1] + 5, -- [2] + 1, -- [3] + 16999, -- [4] + }, -- [51] + { + 136095, -- [1] + 3, -- [2] + 1, -- [3] + 24866, -- [4] + }, -- [52] + { + 135879, -- [1] + 6, -- [2] + 2, -- [3] + 24894, -- [4] + }, -- [53] + { + 136112, -- [1] + 7, -- [2] + 2, -- [3] + 17007, -- [4] + }, -- [54] + { + 136033, -- [1] + 5, -- [2] + 3, -- [3] + 16857, -- [4] + }, -- [55] + { + 132130, -- [1] + 5, -- [2] + 4, -- [3] + 33873, -- [4] + }, -- [56] + { + 132139, -- [1] + 7, -- [2] + 1, -- [3] + 33957, -- [4] + }, -- [57] + { + 132126, -- [1] + 6, -- [2] + 3, -- [3] + 33856, -- [4] + }, -- [58] + { + 132138, -- [1] + 8, -- [2] + 3, -- [3] + 33869, -- [4] + }, -- [59] + { + 132135, -- [1] + 9, -- [2] + 2, -- [3] + 33917, -- [4] + }, -- [60] + { + 136112, -- [1] + 7, -- [2] + 3, -- [3] + 34300, -- [4] + }, -- [61] + nil, -- [62] + nil, -- [63] + nil, -- [64] + nil, -- [65] + nil, -- [66] + nil, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 136078, -- [1] + 1, -- [2] + 2, -- [3] + 17055, -- [4] + }, -- [81] + { + 135881, -- [1] + 1, -- [2] + 3, -- [3] + 17061, -- [4] + }, -- [82] + { + 136042, -- [1] + 2, -- [2] + 2, -- [3] + 17068, -- [4] + }, -- [83] + { + 136041, -- [1] + 2, -- [2] + 1, -- [3] + 17073, -- [4] + }, -- [84] + { + 136085, -- [1] + 6, -- [2] + 3, -- [3] + 17078, -- [4] + }, -- [85] + { + 136116, -- [1] + 2, -- [2] + 3, -- [3] + 16835, -- [4] + }, -- [86] + { + 136017, -- [1] + 3, -- [2] + 3, -- [3] + 16864, -- [4] + }, -- [87] + { + 136074, -- [1] + 5, -- [2] + 2, -- [3] + 24946, -- [4] + }, -- [88] + { + 135863, -- [1] + 3, -- [2] + 1, -- [3] + 17108, -- [4] + }, -- [89] + { + 136081, -- [1] + 4, -- [2] + 3, -- [3] + 17113, -- [4] + }, -- [90] + { + 136076, -- [1] + 5, -- [2] + 1, -- [3] + 17116, -- [4] + }, -- [91] + { + 132150, -- [1] + 3, -- [2] + 2, -- [3] + 17122, -- [4] + }, -- [92] + { + 136107, -- [1] + 5, -- [2] + 4, -- [3] + 17124, -- [4] + }, -- [93] + { + 135900, -- [1] + 4, -- [2] + 2, -- [3] + 24972, -- [4] + }, -- [94] + { + 134914, -- [1] + 7, -- [2] + 2, -- [3] + 18562, -- [4] + }, -- [95] + { + 132125, -- [1] + 6, -- [2] + 1, -- [3] + 33880, -- [4] + }, -- [96] + { + 132124, -- [1] + 8, -- [2] + 2, -- [3] + 33890, -- [4] + }, -- [97] + { + 132137, -- [1] + 7, -- [2] + 3, -- [3] + 33883, -- [4] + }, -- [98] + { + 132145, -- [1] + 9, -- [2] + 2, -- [3] + 33891, -- [4] + }, -- [99] + { + 136037, -- [1] + 7, -- [2] + 1, -- [3] + 34153, -- [4] + }, -- [100] + nil, -- [101] + nil, -- [102] + nil, -- [103] + nil, -- [104] + nil, -- [105] + nil, -- [106] + nil, -- [107] + nil, -- [108] + nil, -- [109] + nil, -- [110] + nil, -- [111] + nil, -- [112] + nil, -- [113] + nil, -- [114] + nil, -- [115] + nil, -- [116] + nil, -- [117] + nil, -- [118] + nil, -- [119] + nil, -- [120] + [121] = { + "DruidBalance", -- [1] + "DruidFeralCombat", -- [2] + "DruidRestoration", -- [3] + }, + }, + ["PALADIN"] = { + { + 135736, -- [1] + 2, -- [2] + 2, -- [3] + 20208, -- [4] + }, -- [1] + { + 135915, -- [1] + 5, -- [2] + 2, -- [3] + 20216, -- [4] + }, -- [2] + { + 135872, -- [1] + 3, -- [2] + 2, -- [3] + 31821, -- [4] + }, -- [3] + { + 135928, -- [1] + 3, -- [2] + 3, -- [3] + 20235, -- [4] + }, -- [4] + { + 135920, -- [1] + 3, -- [2] + 1, -- [3] + 20239, -- [4] + }, -- [5] + { + 135970, -- [1] + 4, -- [2] + 3, -- [3] + 20245, -- [4] + }, -- [6] + { + 136090, -- [1] + 1, -- [2] + 3, -- [3] + 20261, -- [4] + }, -- [7] + { + 132154, -- [1] + 1, -- [2] + 2, -- [3] + 20266, -- [4] + }, -- [8] + { + 135913, -- [1] + 4, -- [2] + 2, -- [3] + 20215, -- [4] + }, -- [9] + { + 132325, -- [1] + 2, -- [2] + 3, -- [3] + 20332, -- [4] + }, -- [10] + { + 135917, -- [1] + 5, -- [2] + 3, -- [3] + 20361, -- [4] + }, -- [11] + { + 135972, -- [1] + 7, -- [2] + 2, -- [3] + 20473, -- [4] + }, -- [12] + { + 135938, -- [1] + 6, -- [2] + 3, -- [3] + 25829, -- [4] + }, -- [13] + { + 135984, -- [1] + 3, -- [2] + 4, -- [3] + 25836, -- [4] + }, -- [14] + { + 135948, -- [1] + 5, -- [2] + 1, -- [3] + 31824, -- [4] + }, -- [15] + { + 135950, -- [1] + 6, -- [2] + 1, -- [3] + 31826, -- [4] + }, -- [16] + { + 135876, -- [1] + 7, -- [2] + 3, -- [3] + 31830, -- [4] + }, -- [17] + { + 135931, -- [1] + 7, -- [2] + 1, -- [3] + 31836, -- [4] + }, -- [18] + { + 135921, -- [1] + 8, -- [2] + 2, -- [3] + 31841, -- [4] + }, -- [19] + { + 135895, -- [1] + 9, -- [2] + 2, -- [3] + 31842, -- [4] + }, -- [20] + nil, -- [21] + nil, -- [22] + nil, -- [23] + nil, -- [24] + nil, -- [25] + nil, -- [26] + nil, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 132110, -- [1] + 1, -- [2] + 3, -- [3] + 20137, -- [4] + }, -- [41] + { + 135893, -- [1] + 1, -- [2] + 2, -- [3] + 20142, -- [4] + }, -- [42] + { + 135892, -- [1] + 2, -- [2] + 4, -- [3] + 20147, -- [4] + }, -- [43] + { + 134952, -- [1] + 3, -- [2] + 3, -- [3] + 20150, -- [4] + }, -- [44] + { + 135964, -- [1] + 2, -- [2] + 2, -- [3] + 20175, -- [4] + }, -- [45] + { + 135882, -- [1] + 5, -- [2] + 3, -- [3] + 20182, -- [4] + }, -- [46] + { + 135321, -- [1] + 6, -- [2] + 3, -- [3] + 20200, -- [4] + }, -- [47] + { + 135880, -- [1] + 7, -- [2] + 2, -- [3] + 20925, -- [4] + }, -- [48] + { + 136051, -- [1] + 5, -- [2] + 2, -- [3] + 20911, -- [4] + }, -- [49] + { + 135995, -- [1] + 3, -- [2] + 1, -- [3] + 20217, -- [4] + }, -- [50] + { + 135962, -- [1] + 3, -- [2] + 2, -- [3] + 20470, -- [4] + }, -- [51] + { + 135963, -- [1] + 4, -- [2] + 2, -- [3] + 20489, -- [4] + }, -- [52] + { + 135933, -- [1] + 4, -- [2] + 3, -- [3] + 20256, -- [4] + }, -- [53] + { + 135994, -- [1] + 3, -- [2] + 4, -- [3] + 20100, -- [4] + }, -- [54] + { + 132282, -- [1] + 2, -- [2] + 1, -- [3] + 20193, -- [4] + }, -- [55] + { + 135978, -- [1] + 4, -- [2] + 1, -- [3] + 31845, -- [4] + }, -- [56] + { + 135925, -- [1] + 5, -- [2] + 1, -- [3] + 31847, -- [4] + }, -- [57] + { + 135896, -- [1] + 6, -- [2] + 1, -- [3] + 31849, -- [4] + }, -- [58] + { + 135870, -- [1] + 7, -- [2] + 3, -- [3] + 31854, -- [4] + }, -- [59] + { + 135986, -- [1] + 8, -- [2] + 3, -- [3] + 31862, -- [4] + }, -- [60] + { + 135874, -- [1] + 9, -- [2] + 2, -- [3] + 31935, -- [4] + }, -- [61] + { + 135880, -- [1] + 7, -- [2] + 1, -- [3] + 41026, -- [4] + }, -- [62] + nil, -- [63] + nil, -- [64] + nil, -- [65] + nil, -- [66] + nil, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 135906, -- [1] + 1, -- [2] + 2, -- [3] + 20048, -- [4] + }, -- [81] + { + 132275, -- [1] + 6, -- [2] + 2, -- [3] + 20059, -- [4] + }, -- [82] + { + 132269, -- [1] + 2, -- [2] + 3, -- [3] + 20064, -- [4] + }, -- [83] + { + 135873, -- [1] + 4, -- [2] + 3, -- [3] + 20092, -- [4] + }, -- [84] + { + 135863, -- [1] + 1, -- [2] + 3, -- [3] + 20105, -- [4] + }, -- [85] + { + 135934, -- [1] + 5, -- [2] + 3, -- [3] + 20218, -- [4] + }, -- [86] + { + 133041, -- [1] + 5, -- [2] + 1, -- [3] + 20113, -- [4] + }, -- [87] + { + 135957, -- [1] + 3, -- [2] + 2, -- [3] + 20121, -- [4] + }, -- [88] + { + 135942, -- [1] + 7, -- [2] + 2, -- [3] + 20066, -- [4] + }, -- [89] + { + 135924, -- [1] + 2, -- [2] + 2, -- [3] + 20337, -- [4] + }, -- [90] + { + 132347, -- [1] + 3, -- [2] + 3, -- [3] + 20375, -- [4] + }, -- [91] + { + 135959, -- [1] + 2, -- [2] + 1, -- [3] + 25957, -- [4] + }, -- [92] + { + 135904, -- [1] + 4, -- [2] + 1, -- [3] + 25988, -- [4] + }, -- [93] + { + 135985, -- [1] + 3, -- [2] + 1, -- [3] + 26021, -- [4] + }, -- [94] + { + 135937, -- [1] + 3, -- [2] + 4, -- [3] + 44414, -- [4] + }, -- [95] + { + 135889, -- [1] + 4, -- [2] + 4, -- [3] + 31868, -- [4] + }, -- [96] + { + 135934, -- [1] + 5, -- [2] + 4, -- [3] + 31870, -- [4] + }, -- [97] + { + 135897, -- [1] + 7, -- [2] + 3, -- [3] + 31873, -- [4] + }, -- [98] + { + 135959, -- [1] + 6, -- [2] + 3, -- [3] + 31878, -- [4] + }, -- [99] + { + 135905, -- [1] + 8, -- [2] + 2, -- [3] + 31883, -- [4] + }, -- [100] + { + 135924, -- [1] + 7, -- [2] + 1, -- [3] + 35397, -- [4] + }, -- [101] + { + 135891, -- [1] + 9, -- [2] + 2, -- [3] + 35395, -- [4] + }, -- [102] + nil, -- [103] + nil, -- [104] + nil, -- [105] + nil, -- [106] + nil, -- [107] + nil, -- [108] + nil, -- [109] + nil, -- [110] + nil, -- [111] + nil, -- [112] + nil, -- [113] + nil, -- [114] + nil, -- [115] + nil, -- [116] + nil, -- [117] + nil, -- [118] + nil, -- [119] + nil, -- [120] + [121] = { + "PaladinHoly", -- [1] + "PaladinProtection", -- [2] + "PaladinCombat", -- [3] + }, + }, + ["ROGUE"] = { + { + 132273, -- [1] + 4, -- [2] + 3, -- [3] + 14117, -- [4] + }, -- [1] + { + 132109, -- [1] + 3, -- [2] + 3, -- [3] + 14137, -- [4] + }, -- [2] + { + 132277, -- [1] + 1, -- [2] + 3, -- [3] + 14142, -- [4] + }, -- [3] + { + 132151, -- [1] + 1, -- [2] + 2, -- [3] + 14148, -- [4] + }, -- [4] + { + 132122, -- [1] + 2, -- [2] + 1, -- [3] + 14161, -- [4] + }, -- [5] + { + 136147, -- [1] + 2, -- [2] + 2, -- [3] + 14159, -- [4] + }, -- [6] + { + 132292, -- [1] + 1, -- [2] + 1, -- [3] + 14164, -- [4] + }, -- [7] + { + 132090, -- [1] + 2, -- [2] + 4, -- [3] + 13866, -- [4] + }, -- [8] + { + 132354, -- [1] + 3, -- [2] + 2, -- [3] + 14169, -- [4] + }, -- [9] + { + 132298, -- [1] + 5, -- [2] + 3, -- [3] + 14176, -- [4] + }, -- [10] + { + 135988, -- [1] + 5, -- [2] + 2, -- [3] + 14177, -- [4] + }, -- [11] + { + 132340, -- [1] + 3, -- [2] + 1, -- [3] + 14179, -- [4] + }, -- [12] + { + 136130, -- [1] + 6, -- [2] + 2, -- [3] + 14195, -- [4] + }, -- [13] + { + 136023, -- [1] + 7, -- [2] + 2, -- [3] + 14983, -- [4] + }, -- [14] + { + 132293, -- [1] + 4, -- [2] + 2, -- [3] + 16720, -- [4] + }, -- [15] + { + 132108, -- [1] + 6, -- [2] + 3, -- [3] + 31227, -- [4] + }, -- [16] + { + 132295, -- [1] + 8, -- [2] + 3, -- [3] + 31242, -- [4] + }, -- [17] + { + 132304, -- [1] + 9, -- [2] + 2, -- [3] + 1329, -- [4] + }, -- [18] + { + 132296, -- [1] + 5, -- [2] + 1, -- [3] + 31209, -- [4] + }, -- [19] + { + 132286, -- [1] + 7, -- [2] + 3, -- [3] + 31385, -- [4] + }, -- [20] + { + 132301, -- [1] + 5, -- [2] + 4, -- [3] + 31245, -- [4] + }, -- [21] + nil, -- [22] + nil, -- [23] + nil, -- [24] + nil, -- [25] + nil, -- [26] + nil, -- [27] + nil, -- [28] + nil, -- [29] + nil, -- [30] + nil, -- [31] + nil, -- [32] + nil, -- [33] + nil, -- [34] + nil, -- [35] + nil, -- [36] + nil, -- [37] + nil, -- [38] + nil, -- [39] + nil, -- [40] + { + 132222, -- [1] + 2, -- [2] + 3, -- [3] + 13845, -- [4] + }, -- [41] + { + 135641, -- [1] + 4, -- [2] + 2, -- [3] + 13807, -- [4] + }, -- [42] + { + 132938, -- [1] + 5, -- [2] + 4, -- [3] + 13969, -- [4] + }, -- [43] + { + 133476, -- [1] + 5, -- [2] + 1, -- [3] + 13803, -- [4] + }, -- [44] + { + 136047, -- [1] + 1, -- [2] + 3, -- [3] + 13791, -- [4] + }, -- [45] + { + 132269, -- [1] + 2, -- [2] + 2, -- [3] + 13856, -- [4] + }, -- [46] + { + 136189, -- [1] + 1, -- [2] + 2, -- [3] + 13863, -- [4] + }, -- [47] + { + 132155, -- [1] + 1, -- [2] + 1, -- [3] + 13792, -- [4] + }, -- [48] + { + 136205, -- [1] + 3, -- [2] + 1, -- [3] + 13872, -- [4] + }, -- [49] + { + 136206, -- [1] + 7, -- [2] + 2, -- [3] + 13750, -- [4] + }, -- [50] + { + 132219, -- [1] + 4, -- [2] + 1, -- [3] + 13867, -- [4] + }, -- [51] + { + 132147, -- [1] + 4, -- [2] + 3, -- [3] + 13852, -- [4] + }, -- [52] + { + 132307, -- [1] + 3, -- [2] + 4, -- [3] + 13875, -- [4] + }, -- [53] + { + 132350, -- [1] + 5, -- [2] + 2, -- [3] + 13877, -- [4] + }, -- [54] + { + 135328, -- [1] + 5, -- [2] + 3, -- [3] + 13964, -- [4] + }, -- [55] + { + 132336, -- [1] + 3, -- [2] + 2, -- [3] + 14251, -- [4] + }, -- [56] + { + 132275, -- [1] + 6, -- [2] + 3, -- [3] + 18429, -- [4] + }, -- [57] + { + 135882, -- [1] + 6, -- [2] + 2, -- [3] + 30920, -- [4] + }, -- [58] + { + 132353, -- [1] + 7, -- [2] + 1, -- [3] + 31123, -- [4] + }, -- [59] + { + 132283, -- [1] + 6, -- [2] + 1, -- [3] + 31126, -- [4] + }, -- [60] + { + 132300, -- [1] + 7, -- [2] + 3, -- [3] + 31131, -- [4] + }, -- [61] + { + 132308, -- [1] + 9, -- [2] + 2, -- [3] + 32601, -- [4] + }, -- [62] + { + 135673, -- [1] + 8, -- [2] + 3, -- [3] + 35553, -- [4] + }, -- [63] + { + 132306, -- [1] + 2, -- [2] + 1, -- [3] + 14167, -- [4] + }, -- [64] + nil, -- [65] + nil, -- [66] + nil, -- [67] + nil, -- [68] + nil, -- [69] + nil, -- [70] + nil, -- [71] + nil, -- [72] + nil, -- [73] + nil, -- [74] + nil, -- [75] + nil, -- [76] + nil, -- [77] + nil, -- [78] + nil, -- [79] + nil, -- [80] + { + 136129, -- [1] + 1, -- [2] + 2, -- [3] + 13973, -- [4] + }, -- [81] + { + 132320, -- [1] + 2, -- [2] + 3, -- [3] + 14065, -- [4] + }, -- [82] + { + 136159, -- [1] + 3, -- [2] + 1, -- [3] + 13980, -- [4] + }, -- [83] + { + 136056, -- [1] + 4, -- [2] + 1, -- [3] + 14071, -- [4] + }, -- [84] + { + 135994, -- [1] + 4, -- [2] + 2, -- [3] + 14066, -- [4] + }, -- [85] + { + 132366, -- [1] + 1, -- [2] + 3, -- [3] + 14075, -- [4] + }, -- [86] + { + 132310, -- [1] + 2, -- [2] + 2, -- [3] + 14094, -- [4] + }, -- [87] + { + 132282, -- [1] + 3, -- [2] + 3, -- [3] + 14081, -- [4] + }, -- [88] + { + 136220, -- [1] + 5, -- [2] + 3, -- [3] + 14083, -- [4] + }, -- [89] + { + 136121, -- [1] + 5, -- [2] + 2, -- [3] + 14185, -- [4] + }, -- [90] + { + 136136, -- [1] + 3, -- [2] + 2, -- [3] + 14278, -- [4] + }, -- [91] + { + 136183, -- [1] + 7, -- [2] + 2, -- [3] + 14183, -- [4] + }, -- [92] + { + 136168, -- [1] + 5, -- [2] + 4, -- [3] + 16511, -- [4] + }, -- [93] + { + 135315, -- [1] + 4, -- [2] + 3, -- [3] + 14173, -- [4] + }, -- [94] + { + 132294, -- [1] + 2, -- [2] + 1, -- [3] + 30893, -- [4] + }, -- [95] + { + 132089, -- [1] + 5, -- [2] + 1, -- [3] + 30895, -- [4] + }, -- [96] + { + 135540, -- [1] + 6, -- [2] + 3, -- [3] + 30906, -- [4] + }, -- [97] + { + 132291, -- [1] + 7, -- [2] + 1, -- [3] + 31213, -- [4] + }, -- [98] + { + 132305, -- [1] + 8, -- [2] + 2, -- [3] + 31220, -- [4] + }, -- [99] + { + 132299, -- [1] + 6, -- [2] + 1, -- [3] + 31223, -- [4] + }, -- [100] + { + 132303, -- [1] + 9, -- [2] + 2, -- [3] + 36554, -- [4] + }, -- [101] + { + 132285, -- [1] + 7, -- [2] + 3, -- [3] + 31230, -- [4] + }, -- [102] + nil, -- [103] + nil, -- [104] + nil, -- [105] + nil, -- [106] + nil, -- [107] + nil, -- [108] + nil, -- [109] + nil, -- [110] + nil, -- [111] + nil, -- [112] + nil, -- [113] + nil, -- [114] + nil, -- [115] + nil, -- [116] + nil, -- [117] + nil, -- [118] + nil, -- [119] + nil, -- [120] + [121] = { + "RogueAssassination", -- [1] + "RogueCombat", -- [2] + "RogueSubtlety", -- [3] + }, + }, +} \ No newline at end of file diff --git a/WeakAuras/WeakAuras.lua b/WeakAuras/WeakAuras.lua index da38cf946a..6165cc3514 100644 --- a/WeakAuras/WeakAuras.lua +++ b/WeakAuras/WeakAuras.lua @@ -983,7 +983,7 @@ local function CreateTalentCache() Private.talent_types_specific[player_class] = Private.talent_types_specific[player_class] or {}; - if WeakAuras.IsClassicOrWrathOrCata() then + if WeakAuras.IsClassicOrTBCOrWrathOrCata() then for tab = 1, GetNumTalentTabs() do for num_talent = 1, GetNumTalents(tab) do local talentName, talentIcon = Private.ExecEnv.GetTalentInfo(tab, num_talent); @@ -1689,7 +1689,7 @@ local function scanForLoadsImpl(toCheck, event, arg1, ...) end local mounted = IsMounted() - if WeakAuras.IsClassicOrWrathOrCataOrMists() then + if WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() then local raidID = UnitInRaid("player") if raidID then raidRole = select(10, GetRaidRosterInfo(raidID)) @@ -1705,7 +1705,7 @@ local function scanForLoadsImpl(toCheck, event, arg1, ...) if WeakAuras.IsClassicEra() then vehicle = UnitOnTaxi('player') end - if WeakAuras.IsWrathOrCataOrMistsOrRetail() then + if WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() then vehicle = UnitInVehicle('player') or UnitOnTaxi('player') or false vehicleUi = UnitHasVehicleUI('player') or HasOverrideActionBar() or HasVehicleActionBar() or false end @@ -1745,7 +1745,7 @@ local function scanForLoadsImpl(toCheck, event, arg1, ...) end local pvp = false - if WeakAuras.IsWrathClassic() then + if WeakAuras.IsTBCOrWrath() then pvp = UnitIsPVPFreeForAll("player") or UnitIsPVP("player") end @@ -1763,6 +1763,9 @@ local function scanForLoadsImpl(toCheck, event, arg1, ...) if WeakAuras.IsClassicEra() then shouldBeLoaded = loadFunc and loadFunc("ScanForLoads_Auras", inCombat, alive, inEncounter, vehicle, mounted, hardcore, runeEngraving, class, player, realm, guild, race, faction, playerLevel, raidRole, group, groupSize, raidMemberType, zone, zoneId, zonegroupId, instanceId, minimapText, encounter_id, size) couldBeLoaded = loadOpt and loadOpt("ScanForLoads_Auras", inCombat, alive, inEncounter, vehicle, mounted, hardcore, runeEngraving, class, player, realm, guild, race, faction, playerLevel, raidRole, group, groupSize, raidMemberType, zone, zoneId, zonegroupId, instanceId, minimapText, encounter_id, size) + elseif WeakAuras.IsTBC() then + shouldBeLoaded = loadFunc and loadFunc("ScanForLoads_Auras", inCombat, alive, inEncounter, pvp, vehicle, vehicleUi, mounted, class, player, realm, guild, race, faction, playerLevel, role, raidRole, group, groupSize, raidMemberType, zone, zoneId, zonegroupId, instanceId, minimapText, encounter_id, size, difficulty, difficultyIndex) + couldBeLoaded = loadOpt and loadOpt("ScanForLoads_Auras", inCombat, alive, inEncounter, pvp, vehicle, vehicleUi, mounted, class, player, realm, guild, race, faction, playerLevel, role, raidRole, group, groupSize, raidMemberType, zone, zoneId, zonegroupId, instanceId, minimapText, encounter_id, size, difficulty, difficultyIndex) elseif WeakAuras.IsWrathClassic() then shouldBeLoaded = loadFunc and loadFunc("ScanForLoads_Auras", inCombat, alive, inEncounter, pvp, vehicle, vehicleUi, mounted, class, player, realm, guild, race, faction, playerLevel, role, raidRole, group, groupSize, raidMemberType, zone, zoneId, zonegroupId, instanceId, minimapText, encounter_id, size, difficulty, difficultyIndex) couldBeLoaded = loadOpt and loadOpt("ScanForLoads_Auras", inCombat, alive, inEncounter, pvp, vehicle, vehicleUi, mounted, class, player, realm, guild, race, faction, playerLevel, role, raidRole, group, groupSize, raidMemberType, zone, zoneId, zonegroupId, instanceId, minimapText, encounter_id, size, difficulty, difficultyIndex) @@ -1875,7 +1878,7 @@ else loadFrame:RegisterEvent("ACTIVE_TALENT_GROUP_CHANGED"); end -if WeakAuras.IsWrathOrCataOrMists() then +if WeakAuras.IsTBCOrWrathOrCataOrMists() then loadFrame:RegisterEvent("VEHICLE_UPDATE"); loadFrame:RegisterEvent("UPDATE_VEHICLE_ACTIONBAR") loadFrame:RegisterEvent("UPDATE_OVERRIDE_ACTIONBAR"); @@ -1915,7 +1918,7 @@ local unitLoadFrame = CreateFrame("Frame"); Private.frames["Display Load Handling 2"] = unitLoadFrame; unitLoadFrame:RegisterUnitEvent("UNIT_FLAGS", "player"); -if WeakAuras.IsWrathOrCataOrMistsOrRetail() then +if WeakAuras.IsTBCOrWrathOrCataOrMistsOrRetail() then unitLoadFrame:RegisterUnitEvent("UNIT_ENTERED_VEHICLE", "player"); unitLoadFrame:RegisterUnitEvent("UNIT_EXITED_VEHICLE", "player"); unitLoadFrame:RegisterUnitEvent("PLAYER_FLAGS_CHANGED", "player"); diff --git a/WeakAuras/WeakAuras_Cata.toc b/WeakAuras/WeakAuras_Cata.toc index 19d85c9efd..d042cb0002 100644 --- a/WeakAuras/WeakAuras_Cata.toc +++ b/WeakAuras/WeakAuras_Cata.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## X-Flavor: Cata ## Notes: A powerful, comprehensive utility for displaying graphics and information based on buffs, debuffs, and other triggers. ## Notes-esES: Potente y completa aplicación que te permitirá mostrar por pantalla múltiples diseños, basados en beneficios, perjuicios y otros activadores. diff --git a/WeakAuras/WeakAuras_Mists.toc b/WeakAuras/WeakAuras_Mists.toc index 7db9743b6d..f3e8ca23b3 100644 --- a/WeakAuras/WeakAuras_Mists.toc +++ b/WeakAuras/WeakAuras_Mists.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## X-Flavor: Mists ## Notes: A powerful, comprehensive utility for displaying graphics and information based on buffs, debuffs, and other triggers. ## Notes-esES: Potente y completa aplicación que te permitirá mostrar por pantalla múltiples diseños, basados en beneficios, perjuicios y otros activadores. diff --git a/WeakAuras/WeakAuras_TBC.toc b/WeakAuras/WeakAuras_TBC.toc index a3c432a20e..15ba6fb182 100644 --- a/WeakAuras/WeakAuras_TBC.toc +++ b/WeakAuras/WeakAuras_TBC.toc @@ -1,7 +1,8 @@ -## Interface: 205505 +## Interface: 20505 ## Title: WeakAuras ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## X-Flavor: TBC ## Notes: A powerful, comprehensive utility for displaying graphics and information based on buffs, debuffs, and other triggers. ## Notes-esES: Potente y completa aplicación que te permitirá mostrar por pantalla múltiples diseños, basados en beneficios, perjuicios y otros activadores. @@ -27,9 +28,6 @@ embeds.xml # TaintLess Libs\TaintLess\TaintLess.xml -# Client flavor specific libs -Libs\LibSpecialization\LibSpecialization.lua - Init.lua Compatibility.lua locales.xml diff --git a/WeakAuras/WeakAuras_Vanilla.toc b/WeakAuras/WeakAuras_Vanilla.toc index 7a588c7684..28a78bf954 100644 --- a/WeakAuras/WeakAuras_Vanilla.toc +++ b/WeakAuras/WeakAuras_Vanilla.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## X-Flavor: Vanilla ## Notes: A powerful, comprehensive utility for displaying graphics and information based on buffs, debuffs, and other triggers. ## Notes-esES: Potente y completa aplicación que te permitirá mostrar por pantalla múltiples diseños, basados en beneficios, perjuicios y otros activadores. diff --git a/WeakAuras/WeakAuras_Wrath.toc b/WeakAuras/WeakAuras_Wrath.toc index ebc9b450b3..dd3251298c 100644 --- a/WeakAuras/WeakAuras_Wrath.toc +++ b/WeakAuras/WeakAuras_Wrath.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## X-Flavor: Wrath ## Notes: A powerful, comprehensive utility for displaying graphics and information based on buffs, debuffs, and other triggers. ## Notes-esES: Potente y completa aplicación que te permitirá mostrar por pantalla múltiples diseños, basados en beneficios, perjuicios y otros activadores. @@ -27,9 +28,6 @@ embeds.xml # TaintLess Libs\TaintLess\TaintLess.xml -# Client flavor specific libs -Libs\LibSpecialization\LibSpecialization.lua - Init.lua Compatibility.lua locales.xml diff --git a/WeakAurasArchive/WeakAurasArchive_Cata.toc b/WeakAurasArchive/WeakAurasArchive_Cata.toc index c9f3bc9d46..e796f8ef73 100644 --- a/WeakAurasArchive/WeakAurasArchive_Cata.toc +++ b/WeakAurasArchive/WeakAurasArchive_Cata.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Archive ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## LoadOnDemand: 1 ## SavedVariables: WeakAurasArchive ## Dependencies: WeakAuras diff --git a/WeakAurasArchive/WeakAurasArchive_Mists.toc b/WeakAurasArchive/WeakAurasArchive_Mists.toc index 6a1f6cbdc5..c7bfa37a8f 100644 --- a/WeakAurasArchive/WeakAurasArchive_Mists.toc +++ b/WeakAurasArchive/WeakAurasArchive_Mists.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Archive ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## LoadOnDemand: 1 ## SavedVariables: WeakAurasArchive ## Dependencies: WeakAuras diff --git a/WeakAurasArchive/WeakAurasArchive_TBC.toc b/WeakAurasArchive/WeakAurasArchive_TBC.toc new file mode 100644 index 0000000000..6dffcb295e --- /dev/null +++ b/WeakAurasArchive/WeakAurasArchive_TBC.toc @@ -0,0 +1,9 @@ +## Interface: 20505 +## Title: WeakAuras Archive +## Author: The WeakAuras Team +## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp +## LoadOnDemand: 1 +## SavedVariables: WeakAurasArchive +## Dependencies: WeakAuras +## AllowLoadGameType: tbc diff --git a/WeakAurasArchive/WeakAurasArchive_Vanilla.toc b/WeakAurasArchive/WeakAurasArchive_Vanilla.toc index f5a1f85bda..42bc642502 100644 --- a/WeakAurasArchive/WeakAurasArchive_Vanilla.toc +++ b/WeakAurasArchive/WeakAurasArchive_Vanilla.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Archive ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## LoadOnDemand: 1 ## SavedVariables: WeakAurasArchive ## Dependencies: WeakAuras diff --git a/WeakAurasArchive/WeakAurasArchive_Wrath.toc b/WeakAurasArchive/WeakAurasArchive_Wrath.toc index 543eecf464..26e9c78807 100644 --- a/WeakAurasArchive/WeakAurasArchive_Wrath.toc +++ b/WeakAurasArchive/WeakAurasArchive_Wrath.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Archive ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## LoadOnDemand: 1 ## SavedVariables: WeakAurasArchive ## Dependencies: WeakAuras diff --git a/WeakAurasModelPaths/ModelPathsBCC.lua b/WeakAurasModelPaths/ModelPathsTBC.lua similarity index 86% rename from WeakAurasModelPaths/ModelPathsBCC.lua rename to WeakAurasModelPaths/ModelPathsTBC.lua index bdbfe0e3d8..4b185c5b87 100644 --- a/WeakAurasModelPaths/ModelPathsBCC.lua +++ b/WeakAurasModelPaths/ModelPathsTBC.lua @@ -3,102 +3,102 @@ WeakAuras.ModelPaths = { children = { { fileId = "116902", - value = "flybybloodelf.m2", text = "flybybloodelf.m2", + value = "flybybloodelf.m2", }, { fileId = "116903", - value = "flybydraenei.m2", text = "flybydraenei.m2", + value = "flybydraenei.m2", }, { fileId = "116904", - value = "flybydwarf.m2", text = "flybydwarf.m2", + value = "flybydwarf.m2", }, { fileId = "116905", - value = "flybygnome.m2", text = "flybygnome.m2", + value = "flybygnome.m2", }, { fileId = "116906", - value = "flybyhuman.m2", text = "flybyhuman.m2", + value = "flybyhuman.m2", }, { fileId = "116907", - value = "flybynightelf.m2", text = "flybynightelf.m2", + value = "flybynightelf.m2", }, { fileId = "116908", - value = "flybyorc.m2", text = "flybyorc.m2", + value = "flybyorc.m2", }, { fileId = "116909", - value = "flybysunwell5man.m2", text = "flybysunwell5man.m2", + value = "flybysunwell5man.m2", }, { fileId = "116910", - value = "flybytauren.m2", text = "flybytauren.m2", + value = "flybytauren.m2", }, { fileId = "116911", - value = "flybytroll.m2", text = "flybytroll.m2", + value = "flybytroll.m2", }, { fileId = "116912", - value = "flybyundead.m2", text = "flybyundead.m2", + value = "flybyundead.m2", }, { fileId = "116913", - value = "orcintro01.m2", text = "orcintro01.m2", + value = "orcintro01.m2", }, { fileId = "116914", - value = "orcintro02.m2", text = "orcintro02.m2", + value = "orcintro02.m2", }, { fileId = "116915", - value = "orcintro03.m2", text = "orcintro03.m2", + value = "orcintro03.m2", }, { fileId = "116916", - value = "orcintro04.m2", text = "orcintro04.m2", + value = "orcintro04.m2", }, { fileId = "116917", - value = "orcintro05.m2", text = "orcintro05.m2", + value = "orcintro05.m2", }, { fileId = "116918", - value = "orcintro06.m2", text = "orcintro06.m2", + value = "orcintro06.m2", }, { fileId = "116919", - value = "palantirofazora.m2", text = "palantirofazora.m2", + value = "palantirofazora.m2", }, { fileId = "116920", - value = "scry_cam.m2", text = "scry_cam.m2", + value = "scry_cam.m2", }, }, - value = "cameras", text = "cameras", + value = "cameras", }, { children = { @@ -108,27 +108,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "116921", - value = "bloodelffemale.m2", text = "bloodelffemale.m2", + value = "bloodelffemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "117170", - value = "bloodelfmale.m2", text = "bloodelfmale.m2", + value = "bloodelfmale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "bloodelf", text = "bloodelf", + value = "bloodelf", }, { children = { @@ -136,27 +136,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "117400", - value = "brokenfemale.m2", text = "brokenfemale.m2", + value = "brokenfemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "117412", - value = "brokenmale.m2", text = "brokenmale.m2", + value = "brokenmale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "broken", text = "broken", + value = "broken", }, { children = { @@ -164,27 +164,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "117437", - value = "draeneifemale.m2", text = "draeneifemale.m2", + value = "draeneifemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "117721", - value = "draeneimale.m2", text = "draeneimale.m2", + value = "draeneimale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "draenei", text = "draenei", + value = "draenei", }, { children = { @@ -192,27 +192,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "118135", - value = "dwarffemale.m2", text = "dwarffemale.m2", + value = "dwarffemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "118355", - value = "dwarfmale.m2", text = "dwarfmale.m2", + value = "dwarfmale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "dwarf", text = "dwarf", + value = "dwarf", }, { children = { @@ -220,37 +220,37 @@ WeakAuras.ModelPaths = { children = { { fileId = "118652", - value = "felorcfemale.m2", text = "felorcfemale.m2", + value = "felorcfemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "118653", - value = "felorcmale.m2", text = "felorcmale.m2", + value = "felorcmale.m2", }, { fileId = "118654", - value = "felorcmaleaxe.m2", text = "felorcmaleaxe.m2", + value = "felorcmaleaxe.m2", }, { fileId = "118667", - value = "felorcmalesword.m2", text = "felorcmalesword.m2", + value = "felorcmalesword.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "felorc", text = "felorc", + value = "felorc", }, { children = { @@ -258,16 +258,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "118798", - value = "foresttrollmale.m2", text = "foresttrollmale.m2", + value = "foresttrollmale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "foresttroll", text = "foresttroll", + value = "foresttroll", }, { children = { @@ -275,27 +275,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "119063", - value = "gnomefemale.m2", text = "gnomefemale.m2", + value = "gnomefemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "119159", - value = "gnomemale.m2", text = "gnomemale.m2", + value = "gnomemale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "gnome", text = "gnome", + value = "gnome", }, { children = { @@ -303,27 +303,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "119369", - value = "goblinfemale.m2", text = "goblinfemale.m2", + value = "goblinfemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "119376", - value = "goblinmale.m2", text = "goblinmale.m2", + value = "goblinmale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "goblin", text = "goblin", + value = "goblin", }, { children = { @@ -331,27 +331,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "119563", - value = "humanfemale.m2", text = "humanfemale.m2", + value = "humanfemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "119940", - value = "humanmale.m2", text = "humanmale.m2", + value = "humanmale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "human", text = "human", + value = "human", }, { children = { @@ -359,27 +359,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "120263", - value = "naga_female.m2", text = "naga_female.m2", + value = "naga_female.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "120294", - value = "naga_male.m2", text = "naga_male.m2", + value = "naga_male.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "naga_", text = "naga_", + value = "naga_", }, { children = { @@ -387,27 +387,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "120590", - value = "nightelffemale.m2", text = "nightelffemale.m2", + value = "nightelffemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "120791", - value = "nightelfmale.m2", text = "nightelfmale.m2", + value = "nightelfmale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "nightelf", text = "nightelf", + value = "nightelf", }, { children = { @@ -415,27 +415,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "121087", - value = "orcfemale.m2", text = "orcfemale.m2", + value = "orcfemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "121287", - value = "orcmale.m2", text = "orcmale.m2", + value = "orcmale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "orc", text = "orc", + value = "orc", }, { children = { @@ -443,27 +443,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "121608", - value = "scourgefemale.m2", text = "scourgefemale.m2", + value = "scourgefemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "121768", - value = "scourgemale.m2", text = "scourgemale.m2", + value = "scourgemale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "scourge", text = "scourge", + value = "scourge", }, { children = { @@ -471,27 +471,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "121941", - value = "skeletonfemale.m2", text = "skeletonfemale.m2", + value = "skeletonfemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "121942", - value = "skeletonmale.m2", text = "skeletonmale.m2", + value = "skeletonmale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "skeleton", text = "skeleton", + value = "skeleton", }, { children = { @@ -499,27 +499,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "121961", - value = "taurenfemale.m2", text = "taurenfemale.m2", + value = "taurenfemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "122055", - value = "taurenmale.m2", text = "taurenmale.m2", + value = "taurenmale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "tauren", text = "tauren", + value = "tauren", }, { children = { @@ -527,31 +527,31 @@ WeakAuras.ModelPaths = { children = { { fileId = "122414", - value = "trollfemale.m2", text = "trollfemale.m2", + value = "trollfemale.m2", }, }, - value = "female", text = "female", + value = "female", }, { children = { { fileId = "122560", - value = "trollmale.m2", text = "trollmale.m2", + value = "trollmale.m2", }, }, - value = "male", text = "male", + value = "male", }, }, - value = "troll", text = "troll", + value = "troll", }, }, - value = "character", text = "character", + value = "character", }, { children = { @@ -559,6256 +559,6262 @@ WeakAuras.ModelPaths = { children = { { fileId = "122866", - value = "abyssal_illidan.m2", text = "abyssal_illidan.m2", + value = "abyssal_illidan.m2", }, }, - value = "abyssalillidan", text = "abyssalillidan", + value = "abyssalillidan", }, { children = { { fileId = "122870", - value = "abyssal_outland.m2", text = "abyssal_outland.m2", + value = "abyssal_outland.m2", }, }, - value = "abyssaloutland", text = "abyssaloutland", + value = "abyssaloutland", }, { children = { { fileId = "122877", - value = "airelemental.m2", text = "airelemental.m2", + value = "airelemental.m2", }, }, - value = "airelemental", text = "airelemental", + value = "airelemental", }, { children = { { fileId = "122883", - value = "akama.m2", text = "akama.m2", + value = "akama.m2", }, }, - value = "akama", text = "akama", + value = "akama", }, { children = { { fileId = "122886", - value = "alliancerider.m2", text = "alliancerider.m2", + value = "alliancerider.m2", }, }, - value = "alliancerider", text = "alliancerider", + value = "alliancerider", }, { children = { { fileId = "122889", - value = "ancientofarcane.m2", text = "ancientofarcane.m2", + value = "ancientofarcane.m2", }, }, - value = "ancientofarcane", text = "ancientofarcane", + value = "ancientofarcane", }, { children = { { fileId = "122893", - value = "ancientoflore.m2", text = "ancientoflore.m2", + value = "ancientoflore.m2", }, }, - value = "ancientoflore", text = "ancientoflore", + value = "ancientoflore", }, { children = { { fileId = "122895", - value = "ancientofwar.m2", text = "ancientofwar.m2", + value = "ancientofwar.m2", }, }, - value = "ancientofwar", text = "ancientofwar", + value = "ancientofwar", }, { children = { { fileId = "122899", - value = "ancientprotector.m2", text = "ancientprotector.m2", + value = "ancientprotector.m2", }, }, - value = "ancientprotector", text = "ancientprotector", + value = "ancientprotector", }, { children = { { fileId = "122906", - value = "anubisath.m2", text = "anubisath.m2", + value = "anubisath.m2", }, }, - value = "anubisath", text = "anubisath", + value = "anubisath", }, { children = { { fileId = "122910", - value = "arakkoa.m2", text = "arakkoa.m2", + value = "arakkoa.m2", }, { fileId = "122914", - value = "arakkoa_sage.m2", text = "arakkoa_sage.m2", + value = "arakkoa_sage.m2", }, { fileId = "122924", - value = "arakkoa_warrior.m2", text = "arakkoa_warrior.m2", + value = "arakkoa_warrior.m2", }, }, - value = "arakkoa", text = "arakkoa", + value = "arakkoa", }, { children = { { fileId = "122952", - value = "arcanegolem.m2", text = "arcanegolem.m2", + value = "arcanegolem.m2", }, { fileId = "122953", - value = "arcanegolembroken.m2", text = "arcanegolembroken.m2", + value = "arcanegolembroken.m2", }, }, - value = "arcanegolem", text = "arcanegolem", + value = "arcanegolem", }, { children = { { fileId = "122955", - value = "arcanetitan.m2", text = "arcanetitan.m2", + value = "arcanetitan.m2", }, }, - value = "arcanetitan", text = "arcanetitan", + value = "arcanetitan", }, { children = { { fileId = "122957", - value = "arcanevoidwraith.m2", text = "arcanevoidwraith.m2", + value = "arcanevoidwraith.m2", }, }, - value = "arcanevoidwraith", text = "arcanevoidwraith", + value = "arcanevoidwraith", }, { children = { { fileId = "122975", - value = "babybeholder.m2", text = "babybeholder.m2", + value = "babybeholder.m2", }, }, - value = "babybeholder", text = "babybeholder", + value = "babybeholder", }, { children = { { fileId = "122977", - value = "babycrocodile.m2", text = "babycrocodile.m2", + value = "babycrocodile.m2", }, }, - value = "babycrocodile", text = "babycrocodile", + value = "babycrocodile", }, { children = { { fileId = "122982", - value = "babyelekk.m2", text = "babyelekk.m2", + value = "babyelekk.m2", }, }, - value = "babyelekk", text = "babyelekk", + value = "babyelekk", }, { children = { { fileId = "122988", - value = "babyhawkstrider.m2", text = "babyhawkstrider.m2", + value = "babyhawkstrider.m2", }, }, - value = "babyhawkstrider", text = "babyhawkstrider", + value = "babyhawkstrider", }, { children = { { fileId = "122994", - value = "band_drumset.m2", text = "band_drumset.m2", + value = "band_drumset.m2", }, { fileId = "122997", - value = "bandbloodelfmale.m2", text = "bandbloodelfmale.m2", + value = "bandbloodelfmale.m2", }, { fileId = "122999", - value = "bandorcmale.m2", text = "bandorcmale.m2", + value = "bandorcmale.m2", }, { fileId = "123001", - value = "bandtaurenmale.m2", text = "bandtaurenmale.m2", + value = "bandtaurenmale.m2", }, { fileId = "123004", - value = "bandtrollmale.m2", text = "bandtrollmale.m2", + value = "bandtrollmale.m2", }, { fileId = "123005", - value = "bandundeadmale.m2", text = "bandundeadmale.m2", + value = "bandundeadmale.m2", }, }, - value = "band", text = "band", + value = "band", }, { children = { { fileId = "123014", - value = "banshee.m2", text = "banshee.m2", + value = "banshee.m2", }, }, - value = "banshee", text = "banshee", + value = "banshee", }, { children = { { fileId = "123020", - value = "basilisk.m2", text = "basilisk.m2", + value = "basilisk.m2", }, }, - value = "basilisk", text = "basilisk", + value = "basilisk", }, { children = { { fileId = "123035", - value = "basilisk_outland.m2", text = "basilisk_outland.m2", + value = "basilisk_outland.m2", }, }, - value = "basiliskoutland", text = "basiliskoutland", + value = "basiliskoutland", }, { children = { { fileId = "123040", - value = "bear.m2", text = "bear.m2", + value = "bear.m2", }, { fileId = "123051", - value = "polarbearcub.m2", text = "polarbearcub.m2", + value = "polarbearcub.m2", }, }, - value = "bear", text = "bear", + value = "bear", }, { children = { { fileId = "123053", - value = "bearcub.m2", text = "bearcub.m2", + value = "bearcub.m2", }, }, - value = "bearcub", text = "bearcub", + value = "bearcub", }, { children = { { fileId = "123055", - value = "beargod.m2", text = "beargod.m2", + value = "beargod.m2", }, }, - value = "beargod", text = "beargod", + value = "beargod", }, { children = { { fileId = "123058", - value = "bearmount.m2", text = "bearmount.m2", + value = "bearmount.m2", }, }, - value = "bearmount", text = "bearmount", + value = "bearmount", }, { children = { { fileId = "123067", - value = "bearmountalt.m2", text = "bearmountalt.m2", + value = "bearmountalt.m2", }, }, - value = "bearmountalt", text = "bearmountalt", + value = "bearmountalt", }, { children = { { fileId = "123071", - value = "beholder.m2", text = "beholder.m2", + value = "beholder.m2", }, }, - value = "beholder", text = "beholder", + value = "beholder", }, { children = { { fileId = "123079", - value = "bloodelffemalekid.m2", text = "bloodelffemalekid.m2", + value = "bloodelffemalekid.m2", }, }, - value = "bloodelffemalekid", text = "bloodelffemalekid", + value = "bloodelffemalekid", }, { children = { { fileId = "123081", - value = "bloodelfmale_guard.m2", text = "bloodelfmale_guard.m2", + value = "bloodelfmale_guard.m2", }, }, - value = "bloodelfguard", text = "bloodelfguard", + value = "bloodelfguard", }, { children = { { fileId = "123088", - value = "bloodelfmalekid.m2", text = "bloodelfmalekid.m2", + value = "bloodelfmalekid.m2", }, }, - value = "bloodelfmalekid", text = "bloodelfmalekid", + value = "bloodelfmalekid", }, { children = { { fileId = "123090", - value = "boar.m2", text = "boar.m2", + value = "boar.m2", }, { fileId = "123100", - value = "boartruesilver.m2", text = "boartruesilver.m2", + value = "boartruesilver.m2", }, }, - value = "boar", text = "boar", + value = "boar", }, { children = { { fileId = "123101", - value = "bodyofkathune.m2", text = "bodyofkathune.m2", + value = "bodyofkathune.m2", }, }, - value = "bodyofkathune", text = "bodyofkathune", + value = "bodyofkathune", }, { children = { { fileId = "123105", - value = "bogbeast.m2", text = "bogbeast.m2", + value = "bogbeast.m2", }, }, - value = "bogbeast", text = "bogbeast", + value = "bogbeast", }, { children = { { fileId = "123120", - value = "bonegolem.m2", text = "bonegolem.m2", + value = "bonegolem.m2", }, }, - value = "bonegolem", text = "bonegolem", + value = "bonegolem", }, { children = { { fileId = "123124", - value = "boneworm.m2", text = "boneworm.m2", + value = "boneworm.m2", }, }, - value = "boneworm", text = "boneworm", + value = "boneworm", }, { children = { { fileId = "123129", - value = "be_broom01.m2", text = "be_broom01.m2", + value = "be_broom01.m2", }, }, - value = "broom", text = "broom", + value = "broom", }, { children = { { fileId = "123130", - value = "broommount.m2", text = "broommount.m2", + value = "broommount.m2", }, }, - value = "broommount", text = "broommount", + value = "broommount", }, { children = { { fileId = "123133", - value = "brutallus.m2", text = "brutallus.m2", + value = "brutallus.m2", }, }, - value = "brutallus", text = "brutallus", + value = "brutallus", }, { children = { { fileId = "123137", - value = "carrionbird.m2", text = "carrionbird.m2", + value = "carrionbird.m2", }, }, - value = "carrionbird", text = "carrionbird", + value = "carrionbird", }, { children = { { fileId = "123148", - value = "carrionbirdoutland.m2", text = "carrionbirdoutland.m2", + value = "carrionbirdoutland.m2", }, }, - value = "carrionbirdoutland", text = "carrionbirdoutland", + value = "carrionbirdoutland", }, { children = { { fileId = "123162", - value = "cat.m2", text = "cat.m2", + value = "cat.m2", }, }, - value = "cat", text = "cat", + value = "cat", }, { children = { { fileId = "123170", - value = "centaur.m2", text = "centaur.m2", + value = "centaur.m2", }, { fileId = "123171", - value = "centaurcaster.m2", text = "centaurcaster.m2", + value = "centaurcaster.m2", }, { fileId = "123182", - value = "centaurkhan.m2", text = "centaurkhan.m2", + value = "centaurkhan.m2", }, { fileId = "123194", - value = "centaurwarrior.m2", text = "centaurwarrior.m2", + value = "centaurwarrior.m2", }, }, - value = "centaur", text = "centaur", + value = "centaur", }, { children = { { fileId = "123200", - value = "chicken.m2", text = "chicken.m2", + value = "chicken.m2", }, }, - value = "chicken", text = "chicken", + value = "chicken", }, { children = { { fileId = "123205", - value = "chimera.m2", text = "chimera.m2", + value = "chimera.m2", }, }, - value = "chimera", text = "chimera", + value = "chimera", }, { children = { { fileId = "123214", - value = "chimeraoutland.m2", text = "chimeraoutland.m2", + value = "chimeraoutland.m2", }, }, - value = "chimeraoutland", text = "chimeraoutland", + value = "chimeraoutland", }, { children = { { fileId = "123225", - value = "chinesedragon.m2", text = "chinesedragon.m2", + value = "chinesedragon.m2", }, }, - value = "chinesedragon", text = "chinesedragon", + value = "chinesedragon", }, { children = { { fileId = "123235", - value = "clawofkathune.m2", text = "clawofkathune.m2", + value = "clawofkathune.m2", }, }, - value = "clawofkathune", text = "clawofkathune", + value = "clawofkathune", }, { children = { { fileId = "123240", - value = "clefthoove.m2", text = "clefthoove.m2", + value = "clefthoove.m2", }, }, - value = "clefthoove", text = "clefthoove", + value = "clefthoove", }, { children = { { fileId = "2199326", - value = "cloudfire.m2", text = "cloudfire.m2", + value = "cloudfire.m2", }, { fileId = "2199576", - value = "cloudradioactive.m2", text = "cloudradioactive.m2", + value = "cloudradioactive.m2", }, { fileId = "123265", - value = "cloudswampgas.m2", text = "cloudswampgas.m2", + value = "cloudswampgas.m2", }, { fileId = "123266", - value = "cloudswampgas_shadowmoon_white.m2", text = "cloudswampgas_shadowmoon_white.m2", + value = "cloudswampgas_shadowmoon_white.m2", }, }, - value = "cloud", text = "cloud", + value = "cloud", }, { children = { { fileId = "123268", - value = "cockatriceelite.m2", text = "cockatriceelite.m2", + value = "cockatriceelite.m2", }, { fileId = "123275", - value = "cockatricemount.m2", text = "cockatricemount.m2", + value = "cockatricemount.m2", }, }, - value = "cockatrice", text = "cockatrice", + value = "cockatrice", }, { children = { { fileId = "123284", - value = "cockroach.m2", text = "cockroach.m2", + value = "cockroach.m2", }, }, - value = "cockroach", text = "cockroach", + value = "cockroach", }, { children = { { fileId = "123285", - value = "cocoon.m2", text = "cocoon.m2", + value = "cocoon.m2", }, }, - value = "cocoon", text = "cocoon", + value = "cocoon", }, { children = { { fileId = "123288", - value = "cow.m2", text = "cow.m2", + value = "cow.m2", }, }, - value = "cow", text = "cow", + value = "cow", }, { children = { { fileId = "123291", - value = "crab.m2", text = "crab.m2", + value = "crab.m2", }, }, - value = "crab", text = "crab", + value = "crab", }, { children = { { fileId = "123299", - value = "crackelfmale.m2", text = "crackelfmale.m2", + value = "crackelfmale.m2", }, }, - value = "crackelf", text = "crackelf", + value = "crackelf", }, { children = { { fileId = "123304", - value = "cratecreature.m2", text = "cratecreature.m2", + value = "cratecreature.m2", }, { fileId = "123306", - value = "cratecreaturebasic.m2", text = "cratecreaturebasic.m2", + value = "cratecreaturebasic.m2", }, }, - value = "cratecreature", text = "cratecreature", + value = "cratecreature", }, { children = { { fileId = "123307", - value = "crawler.m2", text = "crawler.m2", + value = "crawler.m2", }, }, - value = "crawler", text = "crawler", + value = "crawler", }, { children = { { fileId = "123320", - value = "crawlerelite.m2", text = "crawlerelite.m2", + value = "crawlerelite.m2", }, }, - value = "crawlerelite", text = "crawlerelite", + value = "crawlerelite", }, { children = { { fileId = "123324", - value = "crocodile.m2", text = "crocodile.m2", + value = "crocodile.m2", }, }, - value = "crocodile", text = "crocodile", + value = "crocodile", }, { children = { { fileId = "123329", - value = "cryptfiend.m2", text = "cryptfiend.m2", + value = "cryptfiend.m2", }, }, - value = "cryptfiend", text = "cryptfiend", + value = "cryptfiend", }, { children = { { fileId = "123335", - value = "cryptlord.m2", text = "cryptlord.m2", + value = "cryptlord.m2", }, { fileId = "123337", - value = "cryptlord_underground.m2", text = "cryptlord_underground.m2", + value = "cryptlord_underground.m2", }, }, - value = "cryptlord", text = "cryptlord", + value = "cryptlord", }, { children = { { fileId = "123343", - value = "crypt_scarab.m2", text = "crypt_scarab.m2", + value = "crypt_scarab.m2", }, }, - value = "cryptscarab", text = "cryptscarab", + value = "cryptscarab", }, { children = { { fileId = "123344", - value = "crystalportal.m2", text = "crystalportal.m2", + value = "crystalportal.m2", }, }, - value = "crystalportal", text = "crystalportal", + value = "crystalportal", }, { children = { { fileId = "123345", - value = "cupid.m2", text = "cupid.m2", + value = "cupid.m2", }, }, - value = "cupid", text = "cupid", + value = "cupid", }, { children = { { fileId = "123348", - value = "darkhound.m2", text = "darkhound.m2", + value = "darkhound.m2", }, }, - value = "darkhound", text = "darkhound", + value = "darkhound", }, { children = { { fileId = "123362", - value = "deer.m2", text = "deer.m2", + value = "deer.m2", }, }, - value = "deer", text = "deer", + value = "deer", }, { children = { { fileId = "123372", - value = "demonhunter.m2", text = "demonhunter.m2", + value = "demonhunter.m2", }, }, - value = "demonhunter", text = "demonhunter", + value = "demonhunter", }, { children = { { fileId = "123375", - value = "diablofunsized.m2", text = "diablofunsized.m2", + value = "diablofunsized.m2", }, }, - value = "diablo", text = "diablo", + value = "diablo", }, { children = { { fileId = "123377", - value = "diemetradon.m2", text = "diemetradon.m2", + value = "diemetradon.m2", }, }, - value = "diemetradon", text = "diemetradon", + value = "diemetradon", + }, + { + children = { + { + fileId = "7288557", + text = "dimensionalshippet.m2", + value = "dimensionalshippet.m2", + }, + }, + text = "dimensionalshippet", + value = "dimensionalshippet", }, { children = { { fileId = "123388", - value = "direwolf.m2", text = "direwolf.m2", + value = "direwolf.m2", }, { fileId = "123410", - value = "pvpridingdirewolf.m2", text = "pvpridingdirewolf.m2", + value = "pvpridingdirewolf.m2", }, { fileId = "123418", - value = "ridingdirewolf.m2", text = "ridingdirewolf.m2", + value = "ridingdirewolf.m2", }, }, - value = "direwolf", text = "direwolf", + value = "direwolf", }, { children = { { fileId = "123441", - value = "doomguard.m2", text = "doomguard.m2", + value = "doomguard.m2", }, }, - value = "doomguard", text = "doomguard", + value = "doomguard", }, { children = { { fileId = "123443", - value = "doomguardoutland.m2", text = "doomguardoutland.m2", + value = "doomguardoutland.m2", }, }, - value = "doomguardoutland", text = "doomguardoutland", + value = "doomguardoutland", }, { children = { { fileId = "123455", - value = "draeneifemalekid.m2", text = "draeneifemalekid.m2", + value = "draeneifemalekid.m2", }, }, - value = "draeneifemalekid", text = "draeneifemalekid", + value = "draeneifemalekid", }, { children = { { fileId = "123457", - value = "draeneimalekid.m2", text = "draeneimalekid.m2", + value = "draeneimalekid.m2", }, }, - value = "draeneimalekid", text = "draeneimalekid", + value = "draeneimalekid", }, { children = { { fileId = "123459", - value = "dragon.m2", text = "dragon.m2", + value = "dragon.m2", }, { fileId = "123460", - value = "dragonazurgoz.m2", text = "dragonazurgoz.m2", + value = "dragonazurgoz.m2", }, { fileId = "123461", - value = "dragonnefarian.m2", text = "dragonnefarian.m2", + value = "dragonnefarian.m2", }, { fileId = "123465", - value = "dragononyxia.m2", text = "dragononyxia.m2", + value = "dragononyxia.m2", }, { fileId = "123496", - value = "lethon.m2", text = "lethon.m2", + value = "lethon.m2", }, { fileId = "123498", - value = "taerar.m2", text = "taerar.m2", + value = "taerar.m2", }, { fileId = "123499", - value = "taerar_q.m2", text = "taerar_q.m2", + value = "taerar_q.m2", }, }, - value = "dragon", text = "dragon", + value = "dragon", }, { children = { { fileId = "123500", - value = "dragondarkshade.m2", text = "dragondarkshade.m2", + value = "dragondarkshade.m2", }, }, - value = "dragondarkshade", text = "dragondarkshade", + value = "dragondarkshade", }, { children = { { fileId = "123507", - value = "dragonfootsoldier.m2", text = "dragonfootsoldier.m2", + value = "dragonfootsoldier.m2", }, }, - value = "dragonfootsoldier", text = "dragonfootsoldier", + value = "dragonfootsoldier", }, { children = { { fileId = "123519", - value = "dragonfootsoldierdarkshade.m2", text = "dragonfootsoldierdarkshade.m2", + value = "dragonfootsoldierdarkshade.m2", }, }, - value = "dragonfootsoldierdarkshade", text = "dragonfootsoldierdarkshade", + value = "dragonfootsoldierdarkshade", }, { children = { { fileId = "123522", - value = "dragonhawk.m2", text = "dragonhawk.m2", + value = "dragonhawk.m2", }, }, - value = "dragonhawk", text = "dragonhawk", + value = "dragonhawk", }, { children = { { fileId = "123531", - value = "dragonhawkgod.m2", text = "dragonhawkgod.m2", + value = "dragonhawkgod.m2", }, }, - value = "dragonhawkgod", text = "dragonhawkgod", + value = "dragonhawkgod", }, { children = { { fileId = "123534", - value = "dragonkalecgos.m2", text = "dragonkalecgos.m2", + value = "dragonkalecgos.m2", }, }, - value = "dragonkalecgos", text = "dragonkalecgos", + value = "dragonkalecgos", }, { children = { { fileId = "123538", - value = "dragonkite.m2", text = "dragonkite.m2", + value = "dragonkite.m2", }, }, - value = "dragonkite", text = "dragonkite", + value = "dragonkite", }, { children = { { fileId = "123543", - value = "dragonspawn.m2", text = "dragonspawn.m2", + value = "dragonspawn.m2", }, { fileId = "123544", - value = "dragonspawnarmored.m2", text = "dragonspawnarmored.m2", + value = "dragonspawnarmored.m2", }, { fileId = "123553", - value = "dragonspawngreater.m2", text = "dragonspawngreater.m2", + value = "dragonspawngreater.m2", }, { fileId = "123554", - value = "dragonspawnoverlord.m2", text = "dragonspawnoverlord.m2", + value = "dragonspawnoverlord.m2", }, }, - value = "dragonspawn", text = "dragonspawn", + value = "dragonspawn", }, { children = { { fileId = "123570", - value = "dragonspawnarmoreddarkshade.m2", text = "dragonspawnarmoreddarkshade.m2", + value = "dragonspawnarmoreddarkshade.m2", }, }, - value = "dragonspawnarmoreddarkshade", text = "dragonspawnarmoreddarkshade", + value = "dragonspawnarmoreddarkshade", }, { children = { { fileId = "123577", - value = "dragonspawncaster.m2", text = "dragonspawncaster.m2", + value = "dragonspawncaster.m2", }, }, - value = "dragonspawncaster", text = "dragonspawncaster", + value = "dragonspawncaster", }, { children = { { fileId = "123595", - value = "dragonspawncasterdarkshade.m2", text = "dragonspawncasterdarkshade.m2", + value = "dragonspawncasterdarkshade.m2", }, }, - value = "dragonspawncasterdarkshade", text = "dragonspawncasterdarkshade", + value = "dragonspawncasterdarkshade", }, { children = { { fileId = "123598", - value = "dragonspawndarkshade.m2", text = "dragonspawndarkshade.m2", + value = "dragonspawndarkshade.m2", }, }, - value = "dragonspawndarkshade", text = "dragonspawndarkshade", + value = "dragonspawndarkshade", }, { children = { { fileId = "123603", - value = "dragonspawnoverlorddarkshade.m2", text = "dragonspawnoverlorddarkshade.m2", + value = "dragonspawnoverlorddarkshade.m2", }, }, - value = "dragonspawnoverlorddarkshade", text = "dragonspawnoverlorddarkshade", + value = "dragonspawnoverlorddarkshade", }, { children = { { fileId = "123610", - value = "dragonwhelp.m2", text = "dragonwhelp.m2", + value = "dragonwhelp.m2", }, }, - value = "dragonwhelp", text = "dragonwhelp", + value = "dragonwhelp", }, { children = { { fileId = "123620", - value = "dragonwhelpdarkshade.m2", text = "dragonwhelpdarkshade.m2", + value = "dragonwhelpdarkshade.m2", }, }, - value = "dragonwhelpdarkshade", text = "dragonwhelpdarkshade", + value = "dragonwhelpdarkshade", }, { children = { { fileId = "123622", - value = "dragonwhelpoutland.m2", text = "dragonwhelpoutland.m2", + value = "dragonwhelpoutland.m2", }, }, - value = "dragonwhelpoutland", text = "dragonwhelpoutland", + value = "dragonwhelpoutland", }, { children = { { fileId = "123629", - value = "dragonwhelpoutlandcute.m2", text = "dragonwhelpoutlandcute.m2", + value = "dragonwhelpoutlandcute.m2", }, }, - value = "dragonwhelpoutlandcute", text = "dragonwhelpoutlandcute", + value = "dragonwhelpoutlandcute", }, { children = { { fileId = "123636", - value = "drake.m2", text = "drake.m2", + value = "drake.m2", }, { fileId = "123661", - value = "orcdrakerider.m2", text = "orcdrakerider.m2", + value = "orcdrakerider.m2", }, }, - value = "drake", text = "drake", + value = "drake", }, { children = { { fileId = "123664", - value = "drakeadon.m2", text = "drakeadon.m2", + value = "drakeadon.m2", }, }, - value = "drakeadon", text = "drakeadon", + value = "drakeadon", }, { children = { { fileId = "123666", - value = "drakedarkshade.m2", text = "drakedarkshade.m2", + value = "drakedarkshade.m2", }, }, - value = "drakedarkshade", text = "drakedarkshade", + value = "drakedarkshade", }, { children = { { fileId = "123673", - value = "dreadlord.m2", text = "dreadlord.m2", + value = "dreadlord.m2", }, }, - value = "dreadlord", text = "dreadlord", + value = "dreadlord", }, { children = { { fileId = "123678", - value = "druidbear.m2", text = "druidbear.m2", + value = "druidbear.m2", }, { fileId = "123680", - value = "druidbeartauren.m2", text = "druidbeartauren.m2", + value = "druidbeartauren.m2", }, }, - value = "druidbear", text = "druidbear", + value = "druidbear", }, { children = { { fileId = "123682", - value = "druidcat.m2", text = "druidcat.m2", + value = "druidcat.m2", }, }, - value = "druidcat", text = "druidcat", + value = "druidcat", }, { children = { { fileId = "123688", - value = "druidcattauren.m2", text = "druidcattauren.m2", + value = "druidcattauren.m2", }, }, - value = "druidcattauren", text = "druidcattauren", + value = "druidcattauren", }, { children = { { fileId = "123690", - value = "druidowlbear.m2", text = "druidowlbear.m2", + value = "druidowlbear.m2", }, { fileId = "123695", - value = "druidowlbeartauren.m2", text = "druidowlbeartauren.m2", + value = "druidowlbeartauren.m2", }, }, - value = "druidowlbear", text = "druidowlbear", + value = "druidowlbear", }, { children = { { fileId = "123698", - value = "dryad.m2", text = "dryad.m2", + value = "dryad.m2", }, }, - value = "dryad", text = "dryad", + value = "dryad", }, { children = { { fileId = "123705", - value = "dryder.m2", text = "dryder.m2", + value = "dryder.m2", }, }, - value = "dryder", text = "dryder", + value = "dryder", }, { children = { { fileId = "123708", - value = "dwarfmalewarriorlight.m2", text = "dwarfmalewarriorlight.m2", + value = "dwarfmalewarriorlight.m2", }, { fileId = "123709", - value = "dwarfmalewarriorlight_ghost.m2", text = "dwarfmalewarriorlight_ghost.m2", + value = "dwarfmalewarriorlight_ghost.m2", }, }, - value = "dwarfmalewarriorlight", text = "dwarfmalewarriorlight", + value = "dwarfmalewarriorlight", }, { children = { { fileId = "123715", - value = "eagle.m2", text = "eagle.m2", + value = "eagle.m2", }, }, - value = "eagle", text = "eagle", + value = "eagle", }, { children = { { fileId = "123719", - value = "eaglegod.m2", text = "eaglegod.m2", + value = "eaglegod.m2", }, }, - value = "eaglegod", text = "eaglegod", + value = "eaglegod", }, { children = { { fileId = "123722", - value = "eggcreature.m2", text = "eggcreature.m2", + value = "eggcreature.m2", }, }, - value = "egg", text = "egg", + value = "egg", }, { children = { { fileId = "123729", - value = "elekk.m2", text = "elekk.m2", + value = "elekk.m2", }, { fileId = "123730", - value = "elekkwild.m2", text = "elekkwild.m2", + value = "elekkwild.m2", }, }, - value = "elekk", text = "elekk", + value = "elekk", }, { children = { { fileId = "123747", - value = "elementalearth.m2", text = "elementalearth.m2", + value = "elementalearth.m2", }, }, - value = "elementalearth", text = "elementalearth", + value = "elementalearth", }, { children = { { fileId = "2199352", - value = "poisonelemental.m2", text = "poisonelemental.m2", + value = "poisonelemental.m2", }, }, - value = "elementalpoison", text = "elementalpoison", + value = "elementalpoison", }, { children = { { fileId = "123756", - value = "ent.m2", text = "ent.m2", + value = "ent.m2", }, }, - value = "ent", text = "ent", + value = "ent", }, { children = { { fileId = "123766", - value = "epicdruidflightalliance.m2", text = "epicdruidflightalliance.m2", + value = "epicdruidflightalliance.m2", }, }, - value = "epicdruidflightalliance", text = "epicdruidflightalliance", + value = "epicdruidflightalliance", }, { children = { { fileId = "123767", - value = "epicdruidflighthorde.m2", text = "epicdruidflighthorde.m2", + value = "epicdruidflighthorde.m2", }, }, - value = "epicdruidflighthorde", text = "epicdruidflighthorde", + value = "epicdruidflighthorde", }, { children = { { fileId = "123769", - value = "archimonde.m2", text = "archimonde.m2", + value = "archimonde.m2", }, { fileId = "123772", - value = "eredar.m2", text = "eredar.m2", + value = "eredar.m2", }, }, - value = "eredar", text = "eredar", + value = "eredar", }, { children = { { fileId = "123788", - value = "eredarfemale.m2", text = "eredarfemale.m2", + value = "eredarfemale.m2", }, }, - value = "eredarfemale", text = "eredarfemale", + value = "eredarfemale", }, { children = { { fileId = "123791", - value = "etherial.m2", text = "etherial.m2", + value = "etherial.m2", }, }, - value = "etherial", text = "etherial", + value = "etherial", }, { children = { { fileId = "123799", - value = "etherialrobe.m2", text = "etherialrobe.m2", + value = "etherialrobe.m2", }, }, - value = "etherialrobe", text = "etherialrobe", + value = "etherialrobe", }, { children = { { fileId = "123808", - value = "eyeofkathune.m2", text = "eyeofkathune.m2", + value = "eyeofkathune.m2", }, }, - value = "eyeofkathune", text = "eyeofkathune", + value = "eyeofkathune", }, { children = { { fileId = "123814", - value = "eyestalkofkathune.m2", text = "eyestalkofkathune.m2", + value = "eyestalkofkathune.m2", }, }, - value = "eyestalkofkathune", text = "eyestalkofkathune", + value = "eyestalkofkathune", }, { children = { { fileId = "123816", - value = "faeriedragon.m2", text = "faeriedragon.m2", + value = "faeriedragon.m2", }, { fileId = "123818", - value = "faeriedragon_ghost.m2", text = "faeriedragon_ghost.m2", + value = "faeriedragon_ghost.m2", }, }, - value = "faeriedragon", text = "faeriedragon", + value = "faeriedragon", }, { children = { { fileId = "123821", - value = "batrider.m2", text = "batrider.m2", + value = "batrider.m2", }, { fileId = "123830", - value = "battaxi.m2", text = "battaxi.m2", + value = "battaxi.m2", }, { fileId = "123831", - value = "felbat.m2", text = "felbat.m2", + value = "felbat.m2", }, }, - value = "felbat", text = "felbat", + value = "felbat", }, { children = { { fileId = "123834", - value = "felbeast.m2", text = "felbeast.m2", + value = "felbeast.m2", }, }, - value = "felbeast", text = "felbeast", + value = "felbeast", }, { children = { { fileId = "123837", - value = "felbeastshadowmoon.m2", text = "felbeastshadowmoon.m2", + value = "felbeastshadowmoon.m2", }, }, - value = "felbeastshadowmoon", text = "felbeastshadowmoon", + value = "felbeastshadowmoon", }, { children = { { fileId = "123839", - value = "felboar.m2", text = "felboar.m2", + value = "felboar.m2", }, }, - value = "felboar", text = "felboar", + value = "felboar", }, { children = { { fileId = "123845", - value = "felcannon.m2", text = "felcannon.m2", + value = "felcannon.m2", }, { fileId = "123846", - value = "felcannon_02.m2", text = "felcannon_02.m2", + value = "felcannon_02.m2", }, }, - value = "felcannon", text = "felcannon", + value = "felcannon", }, { children = { { fileId = "123847", - value = "felelfcasterfemale.m2", text = "felelfcasterfemale.m2", + value = "felelfcasterfemale.m2", }, }, - value = "felelfcasterfemale", text = "felelfcasterfemale", + value = "felelfcasterfemale", }, { children = { { fileId = "123852", - value = "felelfcastermale.m2", text = "felelfcastermale.m2", + value = "felelfcastermale.m2", }, }, - value = "felelfcastermale", text = "felelfcastermale", + value = "felelfcastermale", }, { children = { { fileId = "123856", - value = "felelfhunterfemale.m2", text = "felelfhunterfemale.m2", + value = "felelfhunterfemale.m2", }, }, - value = "felelfhunterfemale", text = "felelfhunterfemale", + value = "felelfhunterfemale", }, { children = { { fileId = "123862", - value = "felelfwarriormale.m2", text = "felelfwarriormale.m2", + value = "felelfwarriormale.m2", }, }, - value = "felelfwarriormale", text = "felelfwarriormale", + value = "felelfwarriormale", }, { children = { { fileId = "123869", - value = "felgolem.m2", text = "felgolem.m2", + value = "felgolem.m2", }, }, - value = "felgolem", text = "felgolem", + value = "felgolem", }, { children = { { fileId = "123870", - value = "felguard.m2", text = "felguard.m2", + value = "felguard.m2", }, }, - value = "felguard", text = "felguard", + value = "felguard", }, { children = { { fileId = "123876", - value = "felhorseepic.m2", text = "felhorseepic.m2", + value = "felhorseepic.m2", }, }, - value = "felhorse", text = "felhorse", + value = "felhorse", }, { children = { { fileId = "123878", - value = "felhound.m2", text = "felhound.m2", + value = "felhound.m2", }, }, - value = "felhound", text = "felhound", + value = "felhound", }, { children = { { fileId = "123880", - value = "felorc.m2", text = "felorc.m2", + value = "felorc.m2", }, { fileId = "123882", - value = "felorc_axe.m2", text = "felorc_axe.m2", + value = "felorc_axe.m2", }, { fileId = "123887", - value = "felorc_sword.m2", text = "felorc_sword.m2", + value = "felorc_sword.m2", }, }, - value = "felorc", text = "felorc", + value = "felorc", }, { children = { { fileId = "123893", - value = "felorcwarrioraxe.m2", text = "felorcwarrioraxe.m2", + value = "felorcwarrioraxe.m2", }, }, - value = "felorcaxe", text = "felorcaxe", + value = "felorcaxe", }, { children = { { fileId = "123900", - value = "felorcwarriorboss.m2", text = "felorcwarriorboss.m2", + value = "felorcwarriorboss.m2", }, }, - value = "felorcboss", text = "felorcboss", + value = "felorcboss", }, { children = { { fileId = "123901", - value = "felorcdire.m2", text = "felorcdire.m2", + value = "felorcdire.m2", }, }, - value = "felorcdire", text = "felorcdire", + value = "felorcdire", }, { children = { { fileId = "123906", - value = "felorcnetherdrake.m2", text = "felorcnetherdrake.m2", + value = "felorcnetherdrake.m2", }, { fileId = "123908", - value = "felorcnetherdrakemounted.m2", text = "felorcnetherdrakemounted.m2", + value = "felorcnetherdrakemounted.m2", }, }, - value = "felorcnetherdrake", text = "felorcnetherdrake", + value = "felorcnetherdrake", }, { children = { { fileId = "123915", - value = "felorcwarriorsword.m2", text = "felorcwarriorsword.m2", + value = "felorcwarriorsword.m2", }, }, - value = "felorcsword", text = "felorcsword", + value = "felorcsword", }, { children = { { fileId = "123918", - value = "felorcwarlord.m2", text = "felorcwarlord.m2", + value = "felorcwarlord.m2", }, }, - value = "felorcwarlord", text = "felorcwarlord", + value = "felorcwarlord", }, { children = { { fileId = "123929", - value = "felreaver.m2", text = "felreaver.m2", + value = "felreaver.m2", }, }, - value = "felreaver", text = "felreaver", + value = "felreaver", }, { children = { { fileId = "123931", - value = "firedancer.m2", text = "firedancer.m2", + value = "firedancer.m2", }, }, - value = "firedancer", text = "firedancer", + value = "firedancer", }, { children = { { fileId = "123934", - value = "fireelemental.m2", text = "fireelemental.m2", + value = "fireelemental.m2", }, { fileId = "2199522", - value = "fireelementalgreen.m2", text = "fireelementalgreen.m2", + value = "fireelementalgreen.m2", }, }, - value = "fireelemental", text = "fireelemental", + value = "fireelemental", }, { children = { { fileId = "123939", - value = "fireflygreen.m2", text = "fireflygreen.m2", + value = "fireflygreen.m2", }, }, - value = "firefly", text = "firefly", + value = "firefly", }, { children = { { fileId = "123944", - value = "firesprite.m2", text = "firesprite.m2", + value = "firesprite.m2", }, }, - value = "firesprite", text = "firesprite", + value = "firesprite", }, { children = { { fileId = "123947", - value = "fish.m2", text = "fish.m2", + value = "fish.m2", }, }, - value = "fish", text = "fish", + value = "fish", }, { children = { { fileId = "123949", - value = "fleshbeast.m2", text = "fleshbeast.m2", + value = "fleshbeast.m2", }, }, - value = "fleshbeast", text = "fleshbeast", + value = "fleshbeast", }, { children = { { fileId = "123952", - value = "fleshgiant.m2", text = "fleshgiant.m2", + value = "fleshgiant.m2", }, }, - value = "fleshgiant", text = "fleshgiant", + value = "fleshgiant", }, { children = { { fileId = "123961", - value = "fleshgolem.m2", text = "fleshgolem.m2", + value = "fleshgolem.m2", }, }, - value = "fleshgolem", text = "fleshgolem", + value = "fleshgolem", }, { children = { { fileId = "123972", - value = "fleshtitan.m2", text = "fleshtitan.m2", + value = "fleshtitan.m2", }, }, - value = "fleshtitan", text = "fleshtitan", + value = "fleshtitan", }, { children = { { fileId = "123977", - value = "flyingmachinecreature.m2", text = "flyingmachinecreature.m2", + value = "flyingmachinecreature.m2", }, }, - value = "flyingmachinecreature", text = "flyingmachinecreature", + value = "flyingmachinecreature", }, { children = { { fileId = "123987", - value = "flyingreindeer.m2", text = "flyingreindeer.m2", + value = "flyingreindeer.m2", }, }, - value = "flyingreindeer", text = "flyingreindeer", + value = "flyingreindeer", }, { children = { { fileId = "123990", - value = "forceofnature.m2", text = "forceofnature.m2", + value = "forceofnature.m2", }, }, - value = "forceofnature", text = "forceofnature", + value = "forceofnature", }, { children = { { fileId = "124001", - value = "foresttroll.m2", text = "foresttroll.m2", + value = "foresttroll.m2", }, }, - value = "foresttroll", text = "foresttroll", + value = "foresttroll", }, { children = { { fileId = "124004", - value = "frenzy.m2", text = "frenzy.m2", + value = "frenzy.m2", }, }, - value = "frenzy", text = "frenzy", + value = "frenzy", }, { children = { { fileId = "124008", - value = "frog.m2", text = "frog.m2", + value = "frog.m2", }, }, - value = "frog", text = "frog", + value = "frog", }, { children = { { fileId = "124014", - value = "frostlord.m2", text = "frostlord.m2", + value = "frostlord.m2", }, { fileId = "124022", - value = "frostlordcore.m2", text = "frostlordcore.m2", + value = "frostlordcore.m2", }, }, - value = "frostlord", text = "frostlord", + value = "frostlord", }, { children = { { fileId = "124036", - value = "frostsabre.m2", text = "frostsabre.m2", + value = "frostsabre.m2", }, { fileId = "124038", - value = "pvpridingfrostsabre.m2", text = "pvpridingfrostsabre.m2", + value = "pvpridingfrostsabre.m2", }, { fileId = "124052", - value = "ridingfrostsabre.m2", text = "ridingfrostsabre.m2", + value = "ridingfrostsabre.m2", }, }, - value = "frostsabre", text = "frostsabre", + value = "frostsabre", }, { children = { { fileId = "124077", - value = "frostwurm.m2", text = "frostwurm.m2", + value = "frostwurm.m2", }, { fileId = "124078", - value = "frostwurm_nofrost.m2", text = "frostwurm_nofrost.m2", + value = "frostwurm_nofrost.m2", }, }, - value = "frostwurm", text = "frostwurm", + value = "frostwurm", }, { children = { { fileId = "124084", - value = "frostwurmfellfire.m2", text = "frostwurmfellfire.m2", + value = "frostwurmfellfire.m2", }, }, - value = "frostwurmfellfire", text = "frostwurmfellfire", + value = "frostwurmfellfire", }, { children = { { fileId = "124096", - value = "fungalgiant.m2", text = "fungalgiant.m2", + value = "fungalgiant.m2", }, }, - value = "fungalgiant", text = "fungalgiant", + value = "fungalgiant", }, { children = { { fileId = "124110", - value = "fungalmonster.m2", text = "fungalmonster.m2", + value = "fungalmonster.m2", }, }, - value = "fungalmonster", text = "fungalmonster", + value = "fungalmonster", }, { children = { { fileId = "124118", - value = "furbolg.m2", text = "furbolg.m2", + value = "furbolg.m2", }, }, - value = "furbolg", text = "furbolg", + value = "furbolg", }, { children = { { fileId = "124131", - value = "gargoyle.m2", text = "gargoyle.m2", + value = "gargoyle.m2", }, }, - value = "gargoyle", text = "gargoyle", + value = "gargoyle", }, { children = { { fileId = "124148", - value = "gazelle.m2", text = "gazelle.m2", + value = "gazelle.m2", }, }, - value = "gazelle", text = "gazelle", + value = "gazelle", }, { children = { { fileId = "124155", - value = "ghost.m2", text = "ghost.m2", + value = "ghost.m2", }, }, - value = "ghost", text = "ghost", + value = "ghost", }, { children = { { fileId = "124160", - value = "ghoul.m2", text = "ghoul.m2", + value = "ghoul.m2", }, }, - value = "ghoul", text = "ghoul", + value = "ghoul", }, { children = { { fileId = "124166", - value = "giantspider.m2", text = "giantspider.m2", + value = "giantspider.m2", }, }, - value = "giantspider", text = "giantspider", + value = "giantspider", }, { children = { { fileId = "124169", - value = "giraffe.m2", text = "giraffe.m2", + value = "giraffe.m2", }, }, - value = "giraffe", text = "giraffe", + value = "giraffe", }, { children = { { fileId = "124173", - value = "gnoll.m2", text = "gnoll.m2", + value = "gnoll.m2", }, }, - value = "gnoll", text = "gnoll", + value = "gnoll", }, { children = { { fileId = "124186", - value = "gnollcaster.m2", text = "gnollcaster.m2", + value = "gnollcaster.m2", }, }, - value = "gnollcaster", text = "gnollcaster", + value = "gnollcaster", }, { children = { { fileId = "124192", - value = "gnollmelee.m2", text = "gnollmelee.m2", + value = "gnollmelee.m2", }, }, - value = "gnollmelee", text = "gnollmelee", + value = "gnollmelee", }, { children = { { fileId = "124198", - value = "gnome.m2", text = "gnome.m2", + value = "gnome.m2", }, }, - value = "gnome", text = "gnome", + value = "gnome", }, { children = { { fileId = "124203", - value = "gnomerocketcar.m2", text = "gnomerocketcar.m2", + value = "gnomerocketcar.m2", }, }, - value = "gnomerocketcar", text = "gnomerocketcar", + value = "gnomerocketcar", }, { children = { { fileId = "124204", - value = "gnomealertbot.m2", text = "gnomealertbot.m2", + value = "gnomealertbot.m2", }, { fileId = "124207", - value = "gnomebombot.m2", text = "gnomebombot.m2", + value = "gnomebombot.m2", }, { fileId = "124208", - value = "gnomebot.m2", text = "gnomebot.m2", + value = "gnomebot.m2", }, { fileId = "124209", - value = "gnomepounder.m2", text = "gnomepounder.m2", + value = "gnomepounder.m2", }, { fileId = "124210", - value = "gnomespidertank.m2", text = "gnomespidertank.m2", + value = "gnomespidertank.m2", }, }, - value = "gnomespidertank", text = "gnomespidertank", + value = "gnomespidertank", }, { children = { { fileId = "124224", - value = "goblin.m2", text = "goblin.m2", + value = "goblin.m2", }, { fileId = "124225", - value = "goblinshredder.m2", text = "goblinshredder.m2", + value = "goblinshredder.m2", }, }, - value = "goblin", text = "goblin", + value = "goblin", }, { children = { { fileId = "124234", - value = "goblinrocketcar.m2", text = "goblinrocketcar.m2", + value = "goblinrocketcar.m2", }, }, - value = "goblinrocketcar", text = "goblinrocketcar", + value = "goblinrocketcar", }, { children = { { fileId = "124235", - value = "golemharvest.m2", text = "golemharvest.m2", + value = "golemharvest.m2", }, }, - value = "golemharvest", text = "golemharvest", + value = "golemharvest", }, { children = { { fileId = "124243", - value = "golemharveststage2.m2", text = "golemharveststage2.m2", + value = "golemharveststage2.m2", }, }, - value = "golemharveststage2", text = "golemharveststage2", + value = "golemharveststage2", }, { children = { { fileId = "124247", - value = "golemcannonstone.m2", text = "golemcannonstone.m2", + value = "golemcannonstone.m2", }, { fileId = "124248", - value = "golemstone.m2", text = "golemstone.m2", + value = "golemstone.m2", }, }, - value = "golemstone", text = "golemstone", + value = "golemstone", }, { children = { { fileId = "124263", - value = "gorilla.m2", text = "gorilla.m2", + value = "gorilla.m2", }, { fileId = "124265", - value = "gorillapet.m2", text = "gorillapet.m2", + value = "gorillapet.m2", }, }, - value = "gorilla", text = "gorilla", + value = "gorilla", }, { children = { { fileId = "124272", - value = "grell.m2", text = "grell.m2", + value = "grell.m2", }, }, - value = "grell", text = "grell", + value = "grell", }, { children = { { fileId = "124280", - value = "gronn.m2", text = "gronn.m2", + value = "gronn.m2", }, }, - value = "gronn", text = "gronn", + value = "gronn", }, { children = { { fileId = "124289", - value = "groundflower.m2", text = "groundflower.m2", + value = "groundflower.m2", }, }, - value = "groundflower", text = "groundflower", + value = "groundflower", }, { children = { { fileId = "124290", - value = "gryphon.m2", text = "gryphon.m2", + value = "gryphon.m2", }, { fileId = "124292", - value = "gryphon_armored.m2", text = "gryphon_armored.m2", + value = "gryphon_armored.m2", }, { fileId = "124293", - value = "gryphon_armoredmount.m2", text = "gryphon_armoredmount.m2", + value = "gryphon_armoredmount.m2", }, { fileId = "124297", - value = "gryphon_ghost.m2", text = "gryphon_ghost.m2", + value = "gryphon_ghost.m2", }, { fileId = "124298", - value = "gryphon_mount.m2", text = "gryphon_mount.m2", + value = "gryphon_mount.m2", }, { fileId = "124299", - value = "gryphon_skeletal.m2", text = "gryphon_skeletal.m2", + value = "gryphon_skeletal.m2", }, }, - value = "gryphon", text = "gryphon", + value = "gryphon", }, { children = { { fileId = "124313", - value = "gyrocopter_01.m2", text = "gyrocopter_01.m2", + value = "gyrocopter_01.m2", }, { fileId = "124315", - value = "gyrocopter_02.m2", text = "gyrocopter_02.m2", + value = "gyrocopter_02.m2", }, }, - value = "gyrocopter", text = "gyrocopter", + value = "gyrocopter", }, { children = { { fileId = "124317", - value = "hakkar.m2", text = "hakkar.m2", + value = "hakkar.m2", }, }, - value = "hakkar", text = "hakkar", + value = "hakkar", }, { children = { { fileId = "124324", - value = "halfbodyofkathune.m2", text = "halfbodyofkathune.m2", + value = "halfbodyofkathune.m2", }, }, - value = "halfbodyofkathune", text = "halfbodyofkathune", + value = "halfbodyofkathune", }, { children = { { fileId = "124325", - value = "haremmatron.m2", text = "haremmatron.m2", + value = "haremmatron.m2", }, }, - value = "haremmatron", text = "haremmatron", + value = "haremmatron", }, { children = { { fileId = "124329", - value = "harpy.m2", text = "harpy.m2", + value = "harpy.m2", }, }, - value = "harpy", text = "harpy", + value = "harpy", }, { children = { { fileId = "124342", - value = "headlesshorseman.m2", text = "headlesshorseman.m2", + value = "headlesshorseman.m2", }, }, - value = "headlesshorseman", text = "headlesshorseman", + value = "headlesshorseman", }, { children = { { fileId = "124345", - value = "headlesshorsemanhorse.m2", text = "headlesshorsemanhorse.m2", + value = "headlesshorsemanhorse.m2", }, }, - value = "headlesshorsemanhorse", text = "headlesshorsemanhorse", + value = "headlesshorsemanhorse", }, { children = { { fileId = "124348", - value = "headlesshorsemanmount.m2", text = "headlesshorsemanmount.m2", + value = "headlesshorsemanmount.m2", }, }, - value = "headlesshorsemanmount", text = "headlesshorsemanmount", + value = "headlesshorsemanmount", }, { children = { { fileId = "234664", - value = "hhgroundmount.m2", text = "hhgroundmount.m2", + value = "hhgroundmount.m2", }, }, - value = "hhgroundmount", text = "hhgroundmount", + value = "hhgroundmount", }, { children = { { fileId = "124351", - value = "hhmount.m2", text = "hhmount.m2", + value = "hhmount.m2", }, }, - value = "hhmount", text = "hhmount", + value = "hhmount", }, { children = { { fileId = "124366", - value = "highelffemale_hunter.m2", text = "highelffemale_hunter.m2", + value = "highelffemale_hunter.m2", }, { fileId = "124367", - value = "highelffemale_mage.m2", text = "highelffemale_mage.m2", + value = "highelffemale_mage.m2", }, { fileId = "124368", - value = "highelffemale_priest.m2", text = "highelffemale_priest.m2", + value = "highelffemale_priest.m2", }, { fileId = "124369", - value = "highelffemale_warrior.m2", text = "highelffemale_warrior.m2", + value = "highelffemale_warrior.m2", }, { fileId = "124377", - value = "highelfmale_hunter.m2", text = "highelfmale_hunter.m2", + value = "highelfmale_hunter.m2", }, { fileId = "124378", - value = "highelfmale_mage.m2", text = "highelfmale_mage.m2", + value = "highelfmale_mage.m2", }, { fileId = "124379", - value = "highelfmale_priest.m2", text = "highelfmale_priest.m2", + value = "highelfmale_priest.m2", }, { fileId = "124380", - value = "highelfmale_warrior.m2", text = "highelfmale_warrior.m2", + value = "highelfmale_warrior.m2", }, }, - value = "highelf", text = "highelf", + value = "highelf", }, { children = { { fileId = "124387", - value = "hippogryph.m2", text = "hippogryph.m2", + value = "hippogryph.m2", }, { fileId = "124393", - value = "hippogryphpet.m2", text = "hippogryphpet.m2", + value = "hippogryphpet.m2", }, }, - value = "hippogryph", text = "hippogryph", + value = "hippogryph", }, { children = { { fileId = "124410", - value = "hippogryphmount.m2", text = "hippogryphmount.m2", + value = "hippogryphmount.m2", }, }, - value = "hippogryphmount", text = "hippogryphmount", + value = "hippogryphmount", }, { children = { { fileId = "124417", - value = "holidayrobot.m2", text = "holidayrobot.m2", + value = "holidayrobot.m2", }, }, - value = "holidayrobot", text = "holidayrobot", + value = "holidayrobot", }, { children = { { fileId = "124421", - value = "horderider.m2", text = "horderider.m2", + value = "horderider.m2", }, }, - value = "horderider", text = "horderider", + value = "horderider", }, { children = { { fileId = "124424", - value = "horisath.m2", text = "horisath.m2", + value = "horisath.m2", }, }, - value = "horisath", text = "horisath", + value = "horisath", }, { children = { { fileId = "124427", - value = "horse.m2", text = "horse.m2", + value = "horse.m2", }, }, - value = "horse", text = "horse", + value = "horse", }, { children = { { fileId = "124437", - value = "hufmcitizenlow.m2", text = "hufmcitizenlow.m2", + value = "hufmcitizenlow.m2", }, }, - value = "hufmcitizenlow", text = "hufmcitizenlow", + value = "hufmcitizenlow", }, { children = { { fileId = "124440", - value = "hufmcitizenmid.m2", text = "hufmcitizenmid.m2", + value = "hufmcitizenmid.m2", }, }, - value = "hufmcitizenmid", text = "hufmcitizenmid", + value = "hufmcitizenmid", }, { children = { { fileId = "124442", - value = "hufmmerchant.m2", text = "hufmmerchant.m2", + value = "hufmmerchant.m2", }, }, - value = "hufmmerchant", text = "hufmmerchant", + value = "hufmmerchant", }, { children = { { fileId = "124444", - value = "humanfemaleblacksmith.m2", text = "humanfemaleblacksmith.m2", + value = "humanfemaleblacksmith.m2", }, }, - value = "humanfemaleblacksmith", text = "humanfemaleblacksmith", + value = "humanfemaleblacksmith", }, { children = { { fileId = "124448", - value = "humanfemalecaster.m2", text = "humanfemalecaster.m2", + value = "humanfemalecaster.m2", }, }, - value = "humanfemalecaster", text = "humanfemalecaster", + value = "humanfemalecaster", }, { children = { { fileId = "124452", - value = "humanfemalefarmer.m2", text = "humanfemalefarmer.m2", + value = "humanfemalefarmer.m2", }, }, - value = "humanfemalefarmer", text = "humanfemalefarmer", + value = "humanfemalefarmer", }, { children = { { fileId = "124456", - value = "humanfemalekid.m2", text = "humanfemalekid.m2", + value = "humanfemalekid.m2", }, }, - value = "humanfemalekid", text = "humanfemalekid", + value = "humanfemalekid", }, { children = { { fileId = "124463", - value = "humanfemalemerchantfat.m2", text = "humanfemalemerchantfat.m2", + value = "humanfemalemerchantfat.m2", }, }, - value = "humanfemalemerchantfat", text = "humanfemalemerchantfat", + value = "humanfemalemerchantfat", }, { children = { { fileId = "124467", - value = "humanfemalemerchantthin.m2", text = "humanfemalemerchantthin.m2", + value = "humanfemalemerchantthin.m2", }, }, - value = "humanfemalemerchantthin", text = "humanfemalemerchantthin", + value = "humanfemalemerchantthin", }, { children = { { fileId = "124468", - value = "humanfemalepeasant.m2", text = "humanfemalepeasant.m2", + value = "humanfemalepeasant.m2", }, }, - value = "humanfemalepeasant", text = "humanfemalepeasant", + value = "humanfemalepeasant", }, { children = { { fileId = "124472", - value = "humanfemalewarriorheavy.m2", text = "humanfemalewarriorheavy.m2", + value = "humanfemalewarriorheavy.m2", }, }, - value = "humanfemalewarriorheavy", text = "humanfemalewarriorheavy", + value = "humanfemalewarriorheavy", }, { children = { { fileId = "124475", - value = "humanfemalewarriorlight.m2", text = "humanfemalewarriorlight.m2", + value = "humanfemalewarriorlight.m2", }, }, - value = "humanfemalewarriorlight", text = "humanfemalewarriorlight", + value = "humanfemalewarriorlight", }, { children = { { fileId = "124478", - value = "humanfemalewarriormedium.m2", text = "humanfemalewarriormedium.m2", + value = "humanfemalewarriormedium.m2", }, }, - value = "humanfemalewarriormedium", text = "humanfemalewarriormedium", + value = "humanfemalewarriormedium", }, { children = { { fileId = "124482", - value = "humanmaleblacksmith.m2", text = "humanmaleblacksmith.m2", + value = "humanmaleblacksmith.m2", }, }, - value = "humanmaleblacksmith", text = "humanmaleblacksmith", + value = "humanmaleblacksmith", }, { children = { { fileId = "124485", - value = "humanmalecaster.m2", text = "humanmalecaster.m2", + value = "humanmalecaster.m2", }, }, - value = "humanmalecaster", text = "humanmalecaster", + value = "humanmalecaster", }, { children = { { fileId = "124490", - value = "humanmalefarmer.m2", text = "humanmalefarmer.m2", + value = "humanmalefarmer.m2", }, }, - value = "humanmalefarmer", text = "humanmalefarmer", + value = "humanmalefarmer", }, { children = { { fileId = "124494", - value = "humanmaleguard.m2", text = "humanmaleguard.m2", + value = "humanmaleguard.m2", }, }, - value = "humanmaleguard", text = "humanmaleguard", + value = "humanmaleguard", }, { children = { { fileId = "124495", - value = "humanmalekid.m2", text = "humanmalekid.m2", + value = "humanmalekid.m2", }, { fileId = "124496", - value = "humanmalekid_ghost.m2", text = "humanmalekid_ghost.m2", + value = "humanmalekid_ghost.m2", }, }, - value = "humanmalekid", text = "humanmalekid", + value = "humanmalekid", }, { children = { { fileId = "124500", - value = "humanmalemarshal.m2", text = "humanmalemarshal.m2", + value = "humanmalemarshal.m2", }, }, - value = "humanmalemarshal", text = "humanmalemarshal", + value = "humanmalemarshal", }, { children = { { fileId = "124506", - value = "humanmalenoble.m2", text = "humanmalenoble.m2", + value = "humanmalenoble.m2", }, }, - value = "humanmalenoble", text = "humanmalenoble", + value = "humanmalenoble", }, { children = { { fileId = "124507", - value = "humanmalepeasant.m2", text = "humanmalepeasant.m2", + value = "humanmalepeasant.m2", }, { fileId = "124508", - value = "humanmalepeasantaxe.m2", text = "humanmalepeasantaxe.m2", + value = "humanmalepeasantaxe.m2", }, { fileId = "124509", - value = "humanmalepeasantgold.m2", text = "humanmalepeasantgold.m2", + value = "humanmalepeasantgold.m2", }, { fileId = "124512", - value = "humanmalepeasantpick.m2", text = "humanmalepeasantpick.m2", + value = "humanmalepeasantpick.m2", }, { fileId = "124515", - value = "humanmalepeasantwood.m2", text = "humanmalepeasantwood.m2", + value = "humanmalepeasantwood.m2", }, }, - value = "humanmalepeasant", text = "humanmalepeasant", + value = "humanmalepeasant", }, { children = { { fileId = "124516", - value = "humanmalepiratecaptain.m2", text = "humanmalepiratecaptain.m2", + value = "humanmalepiratecaptain.m2", }, { fileId = "124517", - value = "humanmalepiratecaptain_ghost.m2", text = "humanmalepiratecaptain_ghost.m2", + value = "humanmalepiratecaptain_ghost.m2", }, }, - value = "humanmalepiratecaptain", text = "humanmalepiratecaptain", + value = "humanmalepiratecaptain", }, { children = { { fileId = "124521", - value = "humanmalepiratecrewman.m2", text = "humanmalepiratecrewman.m2", + value = "humanmalepiratecrewman.m2", }, { fileId = "124522", - value = "humanmalepiratecrewman_ghost.m2", text = "humanmalepiratecrewman_ghost.m2", + value = "humanmalepiratecrewman_ghost.m2", }, }, - value = "humanmalepiratecrewman", text = "humanmalepiratecrewman", + value = "humanmalepiratecrewman", }, { children = { { fileId = "124533", - value = "humanmalepirateswashbuckler.m2", text = "humanmalepirateswashbuckler.m2", + value = "humanmalepirateswashbuckler.m2", }, { fileId = "124534", - value = "humanmalepirateswashbuckler_ghost.m2", text = "humanmalepirateswashbuckler_ghost.m2", + value = "humanmalepirateswashbuckler_ghost.m2", }, }, - value = "humanmalepirateswashbuckler", text = "humanmalepirateswashbuckler", + value = "humanmalepirateswashbuckler", }, { children = { { fileId = "124540", - value = "humanmalewarriorheavy.m2", text = "humanmalewarriorheavy.m2", + value = "humanmalewarriorheavy.m2", }, { fileId = "124541", - value = "humanmalewarriorheavy_ghost.m2", text = "humanmalewarriorheavy_ghost.m2", + value = "humanmalewarriorheavy_ghost.m2", }, }, - value = "humanmalewarriorheavy", text = "humanmalewarriorheavy", + value = "humanmalewarriorheavy", }, { children = { { fileId = "124544", - value = "humanmalewarriorlight.m2", text = "humanmalewarriorlight.m2", + value = "humanmalewarriorlight.m2", }, }, - value = "humanmalewarriorlight", text = "humanmalewarriorlight", + value = "humanmalewarriorlight", }, { children = { { fileId = "124547", - value = "humanmalewarriormedium.m2", text = "humanmalewarriormedium.m2", + value = "humanmalewarriormedium.m2", }, }, - value = "humanmalewarriormedium", text = "humanmalewarriormedium", + value = "humanmalewarriormedium", }, { children = { { fileId = "124552", - value = "humanmalewizard.m2", text = "humanmalewizard.m2", + value = "humanmalewizard.m2", }, }, - value = "humanmalewizard", text = "humanmalewizard", + value = "humanmalewizard", }, { children = { { fileId = "124553", - value = "humanthief.m2", text = "humanthief.m2", + value = "humanthief.m2", }, }, - value = "humanthief", text = "humanthief", + value = "humanthief", }, { children = { { fileId = "124565", - value = "humlblacksmith.m2", text = "humlblacksmith.m2", + value = "humlblacksmith.m2", }, }, - value = "humlblacksmith", text = "humlblacksmith", + value = "humlblacksmith", }, { children = { { fileId = "124566", - value = "humlcitizenmid.m2", text = "humlcitizenmid.m2", + value = "humlcitizenmid.m2", }, }, - value = "humlcitizenmid", text = "humlcitizenmid", + value = "humlcitizenmid", }, { children = { { fileId = "124569", - value = "humlmagicsmith.m2", text = "humlmagicsmith.m2", + value = "humlmagicsmith.m2", }, }, - value = "humlmagicsmith", text = "humlmagicsmith", + value = "humlmagicsmith", }, { children = { { fileId = "124571", - value = "humlmerchant.m2", text = "humlmerchant.m2", + value = "humlmerchant.m2", }, }, - value = "humlmerchant", text = "humlmerchant", + value = "humlmerchant", }, { children = { { fileId = "124572", - value = "humluppercitizen.m2", text = "humluppercitizen.m2", + value = "humluppercitizen.m2", }, }, - value = "humluppercitizen", text = "humluppercitizen", + value = "humluppercitizen", }, { children = { { fileId = "124576", - value = "humnguardbig.m2", text = "humnguardbig.m2", + value = "humnguardbig.m2", }, }, - value = "humnguardbig", text = "humnguardbig", + value = "humnguardbig", }, { children = { { fileId = "124578", - value = "humscitizenmid.m2", text = "humscitizenmid.m2", + value = "humscitizenmid.m2", }, }, - value = "humscitizenmid", text = "humscitizenmid", + value = "humscitizenmid", }, { children = { { fileId = "124579", - value = "humsguardbig.m2", text = "humsguardbig.m2", + value = "humsguardbig.m2", }, }, - value = "humsguardbig", text = "humsguardbig", + value = "humsguardbig", }, { children = { { fileId = "124580", - value = "humsmerchant.m2", text = "humsmerchant.m2", + value = "humsmerchant.m2", }, }, - value = "humsmerchant", text = "humsmerchant", + value = "humsmerchant", }, { children = { { fileId = "124581", - value = "hydra.m2", text = "hydra.m2", + value = "hydra.m2", }, }, - value = "hydra", text = "hydra", + value = "hydra", }, { children = { { fileId = "124591", - value = "hydraoutland.m2", text = "hydraoutland.m2", + value = "hydraoutland.m2", }, }, - value = "hydraoutland", text = "hydraoutland", + value = "hydraoutland", }, { children = { { fileId = "124601", - value = "hyena.m2", text = "hyena.m2", + value = "hyena.m2", }, }, - value = "hyena", text = "hyena", + value = "hyena", }, { children = { { fileId = "124612", - value = "illidan.m2", text = "illidan.m2", + value = "illidan.m2", }, { fileId = "124614", - value = "illidandark.m2", text = "illidandark.m2", + value = "illidandark.m2", }, }, - value = "illidan", text = "illidan", + value = "illidan", }, { children = { { fileId = "124618", - value = "creature_illidansglaive.m2", text = "creature_illidansglaive.m2", + value = "creature_illidansglaive.m2", }, }, - value = "illidanglaive", text = "illidanglaive", + value = "illidanglaive", }, { children = { { fileId = "2199501", - value = "fireimp.m2", text = "fireimp.m2", + value = "fireimp.m2", }, { fileId = "124622", - value = "imp.m2", text = "imp.m2", + value = "imp.m2", }, }, - value = "imp", text = "imp", + value = "imp", }, { children = { { fileId = "124630", - value = "impoutland.m2", text = "impoutland.m2", + value = "impoutland.m2", }, }, - value = "impoutland", text = "impoutland", + value = "impoutland", }, { children = { { fileId = "4382565", - value = "incubus_low.m2", text = "incubus_low.m2", + value = "incubus_low.m2", }, }, - value = "incubus_low", text = "incubus_low", + value = "incubus_low", }, { children = { { fileId = "124637", - value = "infernal.m2", text = "infernal.m2", + value = "infernal.m2", }, }, - value = "infernal", text = "infernal", + value = "infernal", }, { children = { { fileId = "124639", - value = "invisibleman.m2", text = "invisibleman.m2", + value = "invisibleman.m2", }, }, - value = "invisibleman", text = "invisibleman", + value = "invisibleman", }, { children = { { fileId = "124640", - value = "invisiblestalker.m2", text = "invisiblestalker.m2", + value = "invisiblestalker.m2", }, { fileId = "124642", - value = "invisiblestalkernoname.m2", text = "invisiblestalkernoname.m2", + value = "invisiblestalkernoname.m2", }, }, - value = "invisiblestalker", text = "invisiblestalker", + value = "invisiblestalker", }, { children = { { fileId = "124652", - value = "kaelthas.m2", text = "kaelthas.m2", + value = "kaelthas.m2", }, }, - value = "kaelthas", text = "kaelthas", + value = "kaelthas", }, { children = { { fileId = "124656", - value = "kaelthasbroken.m2", text = "kaelthasbroken.m2", + value = "kaelthasbroken.m2", }, }, - value = "kaelthas_broken", text = "kaelthas_broken", + value = "kaelthas_broken", }, { children = { { fileId = "124659", - value = "kalecgos.m2", text = "kalecgos.m2", + value = "kalecgos.m2", }, }, - value = "kalecgos", text = "kalecgos", + value = "kalecgos", }, { children = { { fileId = "124667", - value = "kargath.m2", text = "kargath.m2", + value = "kargath.m2", }, }, - value = "kargath", text = "kargath", + value = "kargath", }, { children = { { fileId = "124670", - value = "keeperofthegrove.m2", text = "keeperofthegrove.m2", + value = "keeperofthegrove.m2", }, }, - value = "keeperofthegrove", text = "keeperofthegrove", + value = "keeperofthegrove", }, { children = { { fileId = "124677", - value = "kelthuzad.m2", text = "kelthuzad.m2", + value = "kelthuzad.m2", }, { fileId = "124678", - value = "kelthuzad_window_portal_creature.m2", text = "kelthuzad_window_portal_creature.m2", + value = "kelthuzad_window_portal_creature.m2", }, }, - value = "kelthuzad", text = "kelthuzad", + value = "kelthuzad", }, { children = { { fileId = "124682", - value = "kiljaeden.m2", text = "kiljaeden.m2", + value = "kiljaeden.m2", }, }, - value = "kiljaeden", text = "kiljaeden", + value = "kiljaeden", }, { children = { { fileId = "124691", - value = "kobold.m2", text = "kobold.m2", + value = "kobold.m2", }, }, - value = "kobold", text = "kobold", + value = "kobold", }, { children = { { fileId = "124694", - value = "kodobeast.m2", text = "kodobeast.m2", + value = "kodobeast.m2", }, { fileId = "124695", - value = "kodobeastpack.m2", text = "kodobeastpack.m2", + value = "kodobeastpack.m2", }, { fileId = "124696", - value = "kodobeastpvpt2.m2", text = "kodobeastpvpt2.m2", + value = "kodobeastpvpt2.m2", }, { fileId = "124697", - value = "kodobeasttame.m2", text = "kodobeasttame.m2", + value = "kodobeasttame.m2", }, { fileId = "124711", - value = "ridingkodo.m2", text = "ridingkodo.m2", + value = "ridingkodo.m2", }, }, - value = "kodobeast", text = "kodobeast", + value = "kodobeast", }, { children = { { fileId = "2198638", - value = "kodobeastpack.m2", text = "kodobeastpack.m2", + value = "kodobeastpack.m2", }, }, - value = "kodobeastpack", text = "kodobeastpack", + value = "kodobeastpack", }, { children = { { fileId = "2198601", - value = "kodobeasttame.m2", text = "kodobeasttame.m2", + value = "kodobeasttame.m2", }, }, - value = "kodobeasttame", text = "kodobeasttame", + value = "kodobeasttame", }, { children = { { fileId = "124727", - value = "krakken.m2", text = "krakken.m2", + value = "krakken.m2", }, }, - value = "krakken", text = "krakken", + value = "krakken", }, { children = { { fileId = "124735", - value = "ladyvashj.m2", text = "ladyvashj.m2", + value = "ladyvashj.m2", }, }, - value = "ladyvashj", text = "ladyvashj", + value = "ladyvashj", }, { children = { { fileId = "124738", - value = "landro.m2", text = "landro.m2", + value = "landro.m2", }, }, - value = "landro", text = "landro", + value = "landro", }, { children = { { fileId = "124739", - value = "larva.m2", text = "larva.m2", + value = "larva.m2", }, }, - value = "larva", text = "larva", + value = "larva", }, { children = { { fileId = "124747", - value = "larvaoutland.m2", text = "larvaoutland.m2", + value = "larvaoutland.m2", }, }, - value = "larvaoutland", text = "larvaoutland", + value = "larvaoutland", }, { children = { { fileId = "124753", - value = "lasher.m2", text = "lasher.m2", + value = "lasher.m2", }, }, - value = "lasher", text = "lasher", + value = "lasher", }, { children = { { fileId = "124765", - value = "lasherorchid.m2", text = "lasherorchid.m2", + value = "lasherorchid.m2", }, }, - value = "lasherorchid", text = "lasherorchid", + value = "lasherorchid", }, { children = { { fileId = "124777", - value = "lessermanafiend.m2", text = "lessermanafiend.m2", + value = "lessermanafiend.m2", }, { fileId = "2199322", - value = "lessermanafiend_blue.m2", text = "lessermanafiend_blue.m2", + value = "lessermanafiend_blue.m2", }, { fileId = "2199340", - value = "lessermanafiend_red.m2", text = "lessermanafiend_red.m2", + value = "lessermanafiend_red.m2", }, { fileId = "2199333", - value = "lessermanafiend_violet.m2", text = "lessermanafiend_violet.m2", + value = "lessermanafiend_violet.m2", }, { fileId = "2199348", - value = "lessermanafiend_white.m2", text = "lessermanafiend_white.m2", + value = "lessermanafiend_white.m2", }, }, - value = "lessermanafiend", text = "lessermanafiend", + value = "lessermanafiend", }, { children = { { fileId = "124779", - value = "lich.m2", text = "lich.m2", + value = "lich.m2", }, }, - value = "lich", text = "lich", + value = "lich", }, { children = { { fileId = "124781", - value = "lion.m2", text = "lion.m2", + value = "lion.m2", }, }, - value = "lion", text = "lion", + value = "lion", }, { children = { { fileId = "124790", - value = "lobstrok.m2", text = "lobstrok.m2", + value = "lobstrok.m2", }, }, - value = "lobstrok", text = "lobstrok", + value = "lobstrok", }, { children = { { fileId = "124801", - value = "lobstrokoutland.m2", text = "lobstrokoutland.m2", + value = "lobstrokoutland.m2", }, }, - value = "lobstrokoutland", text = "lobstrokoutland", - }, - { - children = { - { - fileId = "124802", - value = "lordkezzak.m2", - text = "lordkezzak.m2", - }, - { - fileId = "124804", - value = "lordkezzak_armored.m2", - text = "lordkezzak_armored.m2", - }, - }, - value = "lord kezzak", - text = "lord kezzak", + value = "lobstrokoutland", }, { children = { { fileId = "124809", - value = "lostone.m2", text = "lostone.m2", + value = "lostone.m2", }, }, - value = "lostone", text = "lostone", + value = "lostone", }, { children = { { fileId = "124824", - value = "lynxgod.m2", text = "lynxgod.m2", + value = "lynxgod.m2", }, }, - value = "lynxgod", text = "lynxgod", - }, - { - children = { - { - fileId = "4323001", - value = "mace_1h_incubus_whip_a_01.m2", - text = "mace_1h_incubus_whip_a_01.m2", - }, - }, - value = "mace_1h_incubus_whip_a_01", - text = "mace_1h_incubus_whip_a_01", + value = "lynxgod", }, { children = { { fileId = "124827", - value = "madscientist.m2", text = "madscientist.m2", + value = "madscientist.m2", }, }, - value = "madscientist", text = "madscientist", + value = "madscientist", }, { children = { { fileId = "124850", - value = "manafiend.m2", text = "manafiend.m2", + value = "manafiend.m2", }, }, - value = "manafiend", text = "manafiend", + value = "manafiend", }, { children = { { fileId = "124853", - value = "manafiendgreen.m2", text = "manafiendgreen.m2", + value = "manafiendgreen.m2", }, }, - value = "manafiendgreen", text = "manafiendgreen", + value = "manafiendgreen", }, { children = { { fileId = "124857", - value = "manawurm.m2", text = "manawurm.m2", + value = "manawurm.m2", }, }, - value = "manawurm", text = "manawurm", + value = "manawurm", }, { children = { { fileId = "124865", - value = "gnomemechastrider.m2", text = "gnomemechastrider.m2", + value = "gnomemechastrider.m2", }, { fileId = "124872", - value = "mechastrider.m2", text = "mechastrider.m2", + value = "mechastrider.m2", }, { fileId = "124880", - value = "pvpmechastrider.m2", text = "pvpmechastrider.m2", + value = "pvpmechastrider.m2", }, }, - value = "mechastrider", text = "mechastrider", + value = "mechastrider", }, { children = { { fileId = "124890", - value = "medivh.m2", text = "medivh.m2", + value = "medivh.m2", }, }, - value = "medivh", text = "medivh", + value = "medivh", }, { children = { { fileId = "124898", - value = "miev.m2", text = "miev.m2", + value = "miev.m2", }, }, - value = "miev", text = "miev", + value = "miev", }, { children = { { fileId = "124903", - value = "minespider.m2", text = "minespider.m2", + value = "minespider.m2", }, { fileId = "124904", - value = "minespiderboss.m2", text = "minespiderboss.m2", + value = "minespiderboss.m2", }, }, - value = "minespider", text = "minespider", + value = "minespider", }, { children = { { fileId = "124915", - value = "moarg1.m2", text = "moarg1.m2", + value = "moarg1.m2", }, { fileId = "124916", - value = "moarg2.m2", text = "moarg2.m2", + value = "moarg2.m2", }, { fileId = "124917", - value = "moarg3.m2", text = "moarg3.m2", + value = "moarg3.m2", }, { fileId = "124918", - value = "moarg4.m2", text = "moarg4.m2", + value = "moarg4.m2", }, { fileId = "124919", - value = "moarg5.m2", text = "moarg5.m2", + value = "moarg5.m2", }, { fileId = "124920", - value = "moarg6.m2", text = "moarg6.m2", + value = "moarg6.m2", }, }, - value = "moarg", text = "moarg", + value = "moarg", }, { children = { { fileId = "124923", - value = "moargminion.m2", text = "moargminion.m2", + value = "moargminion.m2", }, }, - value = "moargminion", text = "moargminion", + value = "moargminion", }, { children = { { fileId = "124928", - value = "mobat.m2", text = "mobat.m2", + value = "mobat.m2", }, }, - value = "mobat", text = "mobat", + value = "mobat", }, { children = { { fileId = "124932", - value = "moth.m2", text = "moth.m2", + value = "moth.m2", }, }, - value = "moth", text = "moth", + value = "moth", }, { children = { { fileId = "124945", - value = "mothpet.m2", text = "mothpet.m2", + value = "mothpet.m2", }, }, - value = "mothpet", text = "mothpet", + value = "mothpet", }, { children = { { fileId = "124952", - value = "mountaingiant.m2", text = "mountaingiant.m2", + value = "mountaingiant.m2", }, }, - value = "mountaingiant", text = "mountaingiant", + value = "mountaingiant", }, { children = { { fileId = "124956", - value = "mountaingiantcrystal.m2", text = "mountaingiantcrystal.m2", + value = "mountaingiantcrystal.m2", }, { fileId = "124957", - value = "mountaingiantcrystal_boss.m2", text = "mountaingiantcrystal_boss.m2", + value = "mountaingiantcrystal_boss.m2", }, }, - value = "mountaingiantcrystal", text = "mountaingiantcrystal", + value = "mountaingiantcrystal", }, { children = { { fileId = "124972", - value = "mountaingiantcrystalogrila.m2", text = "mountaingiantcrystalogrila.m2", + value = "mountaingiantcrystalogrila.m2", }, }, - value = "mountaingiantcrystalogrila", text = "mountaingiantcrystalogrila", + value = "mountaingiantcrystalogrila", }, { children = { { fileId = "124977", - value = "mountaingiant_bladesedge.m2", text = "mountaingiant_bladesedge.m2", + value = "mountaingiant_bladesedge.m2", }, { fileId = "124979", - value = "mountaingiant_netherstorm.m2", text = "mountaingiant_netherstorm.m2", + value = "mountaingiant_netherstorm.m2", }, { fileId = "124981", - value = "mountaingiant_zangarmarsh.m2", text = "mountaingiant_zangarmarsh.m2", + value = "mountaingiant_zangarmarsh.m2", }, }, - value = "mountaingiantoutland", text = "mountaingiantoutland", + value = "mountaingiantoutland", }, { children = { { fileId = "124984", - value = "mounteddeathknight.m2", text = "mounteddeathknight.m2", + value = "mounteddeathknight.m2", }, { fileId = "124985", - value = "mounteddeathknight_blaumeux.m2", text = "mounteddeathknight_blaumeux.m2", + value = "mounteddeathknight_blaumeux.m2", }, { fileId = "124986", - value = "mounteddeathknight_korthazz.m2", text = "mounteddeathknight_korthazz.m2", + value = "mounteddeathknight_korthazz.m2", }, { fileId = "124987", - value = "mounteddeathknight_mograine.m2", text = "mounteddeathknight_mograine.m2", + value = "mounteddeathknight_mograine.m2", }, { fileId = "124988", - value = "mounteddeathknight_zeliek.m2", text = "mounteddeathknight_zeliek.m2", + value = "mounteddeathknight_zeliek.m2", }, { fileId = "125009", - value = "ridingundeadwarhorse.m2", text = "ridingundeadwarhorse.m2", + value = "ridingundeadwarhorse.m2", }, { fileId = "125012", - value = "unmounteddeathknight.m2", text = "unmounteddeathknight.m2", + value = "unmounteddeathknight.m2", }, }, - value = "mounteddeathknight", text = "mounteddeathknight", + value = "mounteddeathknight", }, { children = { { fileId = "125013", - value = "mounteddemonknight.m2", text = "mounteddemonknight.m2", + value = "mounteddemonknight.m2", }, }, - value = "mounteddemonknight", text = "mounteddemonknight", + value = "mounteddemonknight", }, { children = { { fileId = "125017", - value = "mountedknight.m2", text = "mountedknight.m2", + value = "mountedknight.m2", }, }, - value = "mountedknight", text = "mountedknight", + value = "mountedknight", }, { children = { { fileId = "125021", - value = "mouthofkathune01.m2", text = "mouthofkathune01.m2", + value = "mouthofkathune01.m2", }, }, - value = "mouthofkathune01", text = "mouthofkathune01", + value = "mouthofkathune01", }, { children = { { fileId = "125023", - value = "babymurloc.m2", text = "babymurloc.m2", + value = "babymurloc.m2", }, { fileId = "125024", - value = "murloc.m2", text = "murloc.m2", + value = "murloc.m2", }, }, - value = "murloc", text = "murloc", + value = "murloc", }, { children = { { fileId = "125041", - value = "murloccostume.m2", text = "murloccostume.m2", + value = "murloccostume.m2", }, }, - value = "murloccostume", text = "murloccostume", + value = "murloccostume", }, { children = { { fileId = "125049", - value = "murmur.m2", text = "murmur.m2", + value = "murmur.m2", }, }, - value = "murmur", text = "murmur", + value = "murmur", }, { children = { { fileId = "125051", - value = "muru.m2", text = "muru.m2", + value = "muru.m2", }, }, - value = "muru", text = "muru", + value = "muru", }, { children = { { fileId = "125059", - value = "naaru.m2", text = "naaru.m2", + value = "naaru.m2", }, }, - value = "naaru", text = "naaru", + value = "naaru", }, { children = { { fileId = "125069", - value = "siren.m2", text = "siren.m2", + value = "siren.m2", }, }, - value = "nagafemale", text = "nagafemale", + value = "nagafemale", }, { children = { { fileId = "125075", - value = "nagalordmale.m2", text = "nagalordmale.m2", + value = "nagalordmale.m2", }, }, - value = "nagalordmale", text = "nagalordmale", + value = "nagalordmale", }, { children = { { fileId = "125078", - value = "nagamale.m2", text = "nagamale.m2", + value = "nagamale.m2", }, }, - value = "nagamale", text = "nagamale", + value = "nagamale", }, { children = { { fileId = "125092", - value = "necromancer.m2", text = "necromancer.m2", + value = "necromancer.m2", }, }, - value = "necromancer", text = "necromancer", + value = "necromancer", }, { children = { { fileId = "2198559", - value = "dragonnefarian.m2", text = "dragonnefarian.m2", + value = "dragonnefarian.m2", }, }, - value = "nefarian", text = "nefarian", + value = "nefarian", }, { children = { { fileId = "125140", - value = "netherdragon.m2", text = "netherdragon.m2", + value = "netherdragon.m2", }, }, - value = "netherdragon", text = "netherdragon", + value = "netherdragon", }, { children = { { fileId = "125168", - value = "netherdrake.m2", text = "netherdrake.m2", + value = "netherdrake.m2", }, { fileId = "125170", - value = "netherdrakeelite.m2", text = "netherdrakeelite.m2", + value = "netherdrakeelite.m2", }, { fileId = "125178", - value = "netherdrakeoutland.m2", text = "netherdrakeoutland.m2", + value = "netherdrakeoutland.m2", }, }, - value = "netherdrake", text = "netherdrake", + value = "netherdrake", }, { children = { { fileId = "125197", - value = "netherdrakonid.m2", text = "netherdrakonid.m2", + value = "netherdrakonid.m2", }, }, - value = "netherdrakonid", text = "netherdrakonid", + value = "netherdrakonid", }, { children = { { fileId = "125203", - value = "netherdrakonidboss.m2", text = "netherdrakonidboss.m2", + value = "netherdrakonidboss.m2", }, }, - value = "netherdrakonidboss", text = "netherdrakonidboss", + value = "netherdrakonidboss", }, { children = { { fileId = "125208", - value = "netherray.m2", text = "netherray.m2", + value = "netherray.m2", }, }, - value = "netherray", text = "netherray", + value = "netherray", + }, + { + children = { + { + fileId = "7287070", + text = "netherwingmountclassic.m2", + value = "netherwingmountclassic.m2", + }, + }, + text = "netherwingmountclassic", + value = "netherwingmountclassic", + }, + { + children = { + { + fileId = "7276845", + text = "netherwingpet.m2", + value = "netherwingpet.m2", + }, + }, + text = "netherwingpet", + value = "netherwingpet", }, { children = { { fileId = "125217", - value = "nian.m2", text = "nian.m2", + value = "nian.m2", }, }, - value = "nian", text = "nian", + value = "nian", }, { children = { { fileId = "125218", - value = "nightbane.m2", text = "nightbane.m2", + value = "nightbane.m2", }, }, - value = "nightbane", text = "nightbane", + value = "nightbane", }, { children = { { fileId = "125223", - value = "gorgon101.m2", text = "gorgon101.m2", + value = "gorgon101.m2", }, { fileId = "125227", - value = "nightmare.m2", text = "nightmare.m2", + value = "nightmare.m2", }, }, - value = "nightmare", text = "nightmare", + value = "nightmare", }, { children = { { fileId = "125254", - value = "archerytarget.m2", text = "archerytarget.m2", + value = "archerytarget.m2", }, { fileId = "125257", - value = "cannon.m2", text = "cannon.m2", + value = "cannon.m2", }, { fileId = "125259", - value = "woodendummy.m2", text = "woodendummy.m2", + value = "woodendummy.m2", }, }, - value = "object", text = "object", + value = "object", }, { children = { { fileId = "125260", - value = "obsidiandestroyer.m2", text = "obsidiandestroyer.m2", + value = "obsidiandestroyer.m2", }, }, - value = "obsidiandestroyer", text = "obsidiandestroyer", + value = "obsidiandestroyer", }, { children = { { fileId = "125263", - value = "ogre.m2", text = "ogre.m2", + value = "ogre.m2", }, { fileId = "125264", - value = "ogremage.m2", text = "ogremage.m2", + value = "ogremage.m2", }, { fileId = "125293", - value = "ogrewarlord.m2", text = "ogrewarlord.m2", + value = "ogrewarlord.m2", }, }, - value = "ogre", text = "ogre", + value = "ogre", }, { children = { { fileId = "125300", - value = "ogre02.m2", text = "ogre02.m2", + value = "ogre02.m2", }, }, - value = "ogre02", text = "ogre02", + value = "ogre02", }, { children = { { fileId = "125313", - value = "ogreking.m2", text = "ogreking.m2", + value = "ogreking.m2", }, }, - value = "ogreking", text = "ogreking", + value = "ogreking", }, { children = { { fileId = "125317", - value = "ogremage02.m2", text = "ogremage02.m2", + value = "ogremage02.m2", }, }, - value = "ogremage02", text = "ogremage02", + value = "ogremage02", }, { children = { { fileId = "125336", - value = "ogremagelord.m2", text = "ogremagelord.m2", + value = "ogremagelord.m2", }, }, - value = "ogremagelord", text = "ogremagelord", + value = "ogremagelord", }, { children = { { fileId = "125358", - value = "orca.m2", text = "orca.m2", + value = "orca.m2", }, }, - value = "orca", text = "orca", + value = "orca", }, { children = { { fileId = "125362", - value = "orcfemalekid.m2", text = "orcfemalekid.m2", + value = "orcfemalekid.m2", }, }, - value = "orcfemalekid", text = "orcfemalekid", + value = "orcfemalekid", }, { children = { { fileId = "125365", - value = "orcfemalekidbrown.m2", text = "orcfemalekidbrown.m2", + value = "orcfemalekidbrown.m2", }, }, - value = "orcfemalekidbrown", text = "orcfemalekidbrown", + value = "orcfemalekidbrown", }, { children = { { fileId = "2198642", - value = "orcfemale.m2", text = "orcfemale.m2", + value = "orcfemale.m2", }, }, - value = "orcfemalewarriorlight", text = "orcfemalewarriorlight", + value = "orcfemalewarriorlight", }, { children = { { fileId = "125367", - value = "orcmalekid.m2", text = "orcmalekid.m2", + value = "orcmalekid.m2", }, }, - value = "orcmalekid", text = "orcmalekid", + value = "orcmalekid", }, { children = { { fileId = "125370", - value = "orcmalekidbrown.m2", text = "orcmalekidbrown.m2", + value = "orcmalekidbrown.m2", }, }, - value = "orcmalekidbrown", text = "orcmalekidbrown", + value = "orcmalekidbrown", }, { children = { { fileId = "125372", - value = "orcmalemerchantlight.m2", text = "orcmalemerchantlight.m2", + value = "orcmalemerchantlight.m2", }, }, - value = "orcmalemerchantlight", text = "orcmalemerchantlight", + value = "orcmalemerchantlight", }, { children = { { fileId = "125374", - value = "orcmalewarriorheavy.m2", text = "orcmalewarriorheavy.m2", + value = "orcmalewarriorheavy.m2", }, }, - value = "orcmalewarriorheavy", text = "orcmalewarriorheavy", + value = "orcmalewarriorheavy", }, { children = { { fileId = "125377", - value = "orcmalewarriorlight.m2", text = "orcmalewarriorlight.m2", + value = "orcmalewarriorlight.m2", }, }, - value = "orcmalewarriorlight", text = "orcmalewarriorlight", + value = "orcmalewarriorlight", }, { children = { { fileId = "125378", - value = "owl.m2", text = "owl.m2", + value = "owl.m2", }, }, - value = "owl", text = "owl", + value = "owl", }, { children = { { fileId = "125389", - value = "pandacub.m2", text = "pandacub.m2", + value = "pandacub.m2", }, }, - value = "panda", text = "panda", + value = "panda", }, { children = { { fileId = "125392", - value = "paperairplane_gyro.m2", text = "paperairplane_gyro.m2", + value = "paperairplane_gyro.m2", }, }, - value = "paperairplane_gyro", text = "paperairplane_gyro", + value = "paperairplane_gyro", }, { children = { { fileId = "125394", - value = "paperairplane_zeppelin.m2", text = "paperairplane_zeppelin.m2", + value = "paperairplane_zeppelin.m2", }, }, - value = "paperairplane_zeppelin", text = "paperairplane_zeppelin", + value = "paperairplane_zeppelin", }, { children = { { fileId = "125395", - value = "parrot.m2", text = "parrot.m2", + value = "parrot.m2", }, }, - value = "parrot", text = "parrot", + value = "parrot", }, { children = { { fileId = "125407", - value = "phoenix.m2", text = "phoenix.m2", + value = "phoenix.m2", }, }, - value = "phoenix", text = "phoenix", + value = "phoenix", }, { children = { { fileId = "125417", - value = "phoenixpet.m2", text = "phoenixpet.m2", + value = "phoenixpet.m2", }, }, - value = "phoenixpet", text = "phoenixpet", + value = "phoenixpet", }, { children = { { fileId = "125420", - value = "pig.m2", text = "pig.m2", + value = "pig.m2", }, }, - value = "pig", text = "pig", + value = "pig", }, { children = { { fileId = "125426", - value = "magtheridon.m2", text = "magtheridon.m2", + value = "magtheridon.m2", }, { fileId = "125427", - value = "pitlord.m2", text = "pitlord.m2", + value = "pitlord.m2", }, }, - value = "pitlord", text = "pitlord", + value = "pitlord", }, { children = { { fileId = "125432", - value = "portalofkathune.m2", text = "portalofkathune.m2", + value = "portalofkathune.m2", }, }, - value = "portalofkathune", text = "portalofkathune", + value = "portalofkathune", }, { children = { { fileId = "125434", - value = "prariedog.m2", text = "prariedog.m2", + value = "prariedog.m2", }, }, - value = "prariedog", text = "prariedog", + value = "prariedog", }, { children = { { fileId = "125437", - value = "pterrordax.m2", text = "pterrordax.m2", + value = "pterrordax.m2", }, }, - value = "pterrordax", text = "pterrordax", + value = "pterrordax", }, { children = { { fileId = "125444", - value = "pumpkinsoldier.m2", text = "pumpkinsoldier.m2", + value = "pumpkinsoldier.m2", }, }, - value = "pumpkinsoldier", text = "pumpkinsoldier", + value = "pumpkinsoldier", }, { children = { { fileId = "125446", - value = "creature_burningash.m2", text = "creature_burningash.m2", + value = "creature_burningash.m2", }, { fileId = "125447", - value = "creature_burninglegioncannon.m2", text = "creature_burninglegioncannon.m2", + value = "creature_burninglegioncannon.m2", }, { fileId = "125448", - value = "creature_demoncrystal_02.m2", text = "creature_demoncrystal_02.m2", + value = "creature_demoncrystal_02.m2", }, { fileId = "125449", - value = "creature_etherealstorm.m2", text = "creature_etherealstorm.m2", + value = "creature_etherealstorm.m2", }, { fileId = "125450", - value = "creature_nagadistiller.m2", text = "creature_nagadistiller.m2", + value = "creature_nagadistiller.m2", }, { fileId = "125451", - value = "creature_powercrystal.m2", text = "creature_powercrystal.m2", + value = "creature_powercrystal.m2", }, { fileId = "125452", - value = "creature_scourgecrystal.m2", text = "creature_scourgecrystal.m2", + value = "creature_scourgecrystal.m2", }, { fileId = "125454", - value = "creature_scourgecrystaldamaged.m2", text = "creature_scourgecrystaldamaged.m2", + value = "creature_scourgecrystaldamaged.m2", }, }, - value = "questobjects", text = "questobjects", + value = "questobjects", }, { children = { { fileId = "125497", - value = "quillboar.m2", text = "quillboar.m2", + value = "quillboar.m2", }, { fileId = "125498", - value = "quillboarcaster.m2", text = "quillboarcaster.m2", + value = "quillboarcaster.m2", }, { fileId = "125499", - value = "quillboarwarrior.m2", text = "quillboarwarrior.m2", + value = "quillboarwarrior.m2", }, }, - value = "quillboar", text = "quillboar", + value = "quillboar", }, { children = { { fileId = "125500", - value = "battleguard.m2", text = "battleguard.m2", + value = "battleguard.m2", }, }, - value = "quirajbattleguard", text = "quirajbattleguard", + value = "quirajbattleguard", }, { children = { { fileId = "125504", - value = "quirajgladiator.m2", text = "quirajgladiator.m2", + value = "quirajgladiator.m2", }, }, - value = "quirajgladiator", text = "quirajgladiator", + value = "quirajgladiator", }, { children = { { fileId = "125508", - value = "quirajprophet.m2", text = "quirajprophet.m2", + value = "quirajprophet.m2", }, }, - value = "quirajprophet", text = "quirajprophet", + value = "quirajprophet", }, { children = { { fileId = "125512", - value = "rabbit.m2", text = "rabbit.m2", + value = "rabbit.m2", }, { fileId = "125513", - value = "rabbitgold.m2", text = "rabbitgold.m2", + value = "rabbitgold.m2", }, }, - value = "rabbit", text = "rabbit", + value = "rabbit", }, { children = { { fileId = "125518", - value = "raccoon.m2", text = "raccoon.m2", + value = "raccoon.m2", }, }, - value = "raccoon", text = "raccoon", + value = "raccoon", }, { children = { { fileId = "125519", - value = "ragnaros.m2", text = "ragnaros.m2", + value = "ragnaros.m2", }, }, - value = "ragnaros", text = "ragnaros", + value = "ragnaros", }, { children = { { fileId = "125522", - value = "pvpridingram.m2", text = "pvpridingram.m2", + value = "pvpridingram.m2", }, { fileId = "125531", - value = "ram.m2", text = "ram.m2", + value = "ram.m2", }, { fileId = "125546", - value = "ridingram.m2", text = "ridingram.m2", + value = "ridingram.m2", }, }, - value = "ram", text = "ram", + value = "ram", }, { children = { { fileId = "125559", - value = "raptor.m2", text = "raptor.m2", + value = "raptor.m2", }, }, - value = "raptor", text = "raptor", + value = "raptor", }, { children = { { fileId = "125568", - value = "raptor_outland.m2", text = "raptor_outland.m2", + value = "raptor_outland.m2", }, }, - value = "raptoroutland", text = "raptoroutland", + value = "raptoroutland", }, { children = { { fileId = "125576", - value = "rat.m2", text = "rat.m2", + value = "rat.m2", }, }, - value = "rat", text = "rat", + value = "rat", }, { children = { { fileId = "125578", - value = "ravengod.m2", text = "ravengod.m2", + value = "ravengod.m2", }, }, - value = "ravengod", text = "ravengod", + value = "ravengod", }, { children = { { fileId = "125581", - value = "reindeer.m2", text = "reindeer.m2", + value = "reindeer.m2", }, { fileId = "125583", - value = "reindeermount.m2", text = "reindeermount.m2", + value = "reindeermount.m2", }, }, - value = "reindeer", text = "reindeer", + value = "reindeer", }, { children = { { fileId = "125589", - value = "rexxar.m2", text = "rexxar.m2", + value = "rexxar.m2", }, }, - value = "rexxar", text = "rexxar", + value = "rexxar", }, { children = { { fileId = "125593", - value = "ridingelekk.m2", text = "ridingelekk.m2", + value = "ridingelekk.m2", }, { fileId = "125595", - value = "ridingelekkelite.m2", text = "ridingelekkelite.m2", + value = "ridingelekkelite.m2", }, }, - value = "ridingelekk", text = "ridingelekk", + value = "ridingelekk", }, { children = { { fileId = "125603", - value = "packmule.m2", text = "packmule.m2", + value = "packmule.m2", }, { fileId = "125614", - value = "ridinghorse.m2", text = "ridinghorse.m2", + value = "ridinghorse.m2", }, { fileId = "125620", - value = "ridinghorsepvpt2.m2", text = "ridinghorsepvpt2.m2", + value = "ridinghorsepvpt2.m2", }, }, - value = "ridinghorse", text = "ridinghorse", + value = "ridinghorse", }, { children = { { fileId = "125632", - value = "ridingnetherray.m2", text = "ridingnetherray.m2", + value = "ridingnetherray.m2", }, }, - value = "ridingnetherray", text = "ridingnetherray", + value = "ridingnetherray", }, { children = { { fileId = "125644", - value = "ridingphoenix.m2", text = "ridingphoenix.m2", + value = "ridingphoenix.m2", }, }, - value = "ridingphoenix", text = "ridingphoenix", + value = "ridingphoenix", }, { children = { { fileId = "125649", - value = "pvpridingraptor.m2", text = "pvpridingraptor.m2", + value = "pvpridingraptor.m2", }, { fileId = "125680", - value = "ridingraptor.m2", text = "ridingraptor.m2", + value = "ridingraptor.m2", }, }, - value = "ridingraptor", text = "ridingraptor", + value = "ridingraptor", }, { children = { { fileId = "125687", - value = "ridingsilithid.m2", text = "ridingsilithid.m2", + value = "ridingsilithid.m2", }, }, - value = "ridingsilithid", text = "ridingsilithid", + value = "ridingsilithid", }, { children = { { fileId = "125698", - value = "ridingtalbuk.m2", text = "ridingtalbuk.m2", + value = "ridingtalbuk.m2", }, { fileId = "125699", - value = "ridingtalbukepic.m2", text = "ridingtalbukepic.m2", + value = "ridingtalbukepic.m2", }, }, - value = "ridingtalbuk", text = "ridingtalbuk", + value = "ridingtalbuk", }, { children = { { fileId = "125715", - value = "ridingturtle.m2", text = "ridingturtle.m2", + value = "ridingturtle.m2", }, }, - value = "ridingturtle", text = "ridingturtle", + value = "ridingturtle", }, { children = { { fileId = "125718", - value = "ridingwyvern.m2", text = "ridingwyvern.m2", + value = "ridingwyvern.m2", }, }, - value = "ridingwyvern", text = "ridingwyvern", + value = "ridingwyvern", }, { children = { { fileId = "125729", - value = "ridingwyvernarmored.m2", text = "ridingwyvernarmored.m2", + value = "ridingwyvernarmored.m2", }, }, - value = "ridingwyvernarmored", text = "ridingwyvernarmored", + value = "ridingwyvernarmored", }, { children = { { fileId = "125741", - value = "rocketchicken.m2", text = "rocketchicken.m2", + value = "rocketchicken.m2", }, }, - value = "rocketchicken", text = "rocketchicken", + value = "rocketchicken", }, { children = { { fileId = "125743", - value = "rocketmount.m2", text = "rocketmount.m2", + value = "rocketmount.m2", }, }, - value = "rocketmount", text = "rocketmount", + value = "rocketmount", }, { children = { { fileId = "125747", - value = "rockflayer.m2", text = "rockflayer.m2", + value = "rockflayer.m2", }, { fileId = "125763", - value = "rockflayercrystal.m2", text = "rockflayercrystal.m2", + value = "rockflayercrystal.m2", }, { fileId = "125764", - value = "rockflayerelite.m2", text = "rockflayerelite.m2", + value = "rockflayerelite.m2", }, }, - value = "rockflayer", text = "rockflayer", + value = "rockflayer", }, { children = { { fileId = "125777", - value = "salamandermale.m2", text = "salamandermale.m2", + value = "salamandermale.m2", }, }, - value = "salamander", text = "salamander", + value = "salamander", }, { children = { { fileId = "125782", - value = "sandreaver.m2", text = "sandreaver.m2", + value = "sandreaver.m2", }, }, - value = "sandreaver", text = "sandreaver", + value = "sandreaver", }, { children = { { fileId = "125790", - value = "sandvortex.m2", text = "sandvortex.m2", + value = "sandvortex.m2", }, }, - value = "sandvortex", text = "sandvortex", + value = "sandvortex", }, { children = { { fileId = "125795", - value = "sandworm.m2", text = "sandworm.m2", + value = "sandworm.m2", }, }, - value = "sandworm", text = "sandworm", + value = "sandworm", }, { children = { { fileId = "125796", - value = "satyr.m2", text = "satyr.m2", + value = "satyr.m2", }, }, - value = "satyr", text = "satyr", + value = "satyr", }, { children = { { fileId = "125815", - value = "scorpion.m2", text = "scorpion.m2", + value = "scorpion.m2", }, }, - value = "scorpion", text = "scorpion", + value = "scorpion", }, { children = { { fileId = "125830", - value = "seagiant.m2", text = "seagiant.m2", + value = "seagiant.m2", }, }, - value = "seagiant", text = "seagiant", + value = "seagiant", }, { children = { { fileId = "125835", - value = "sealion.m2", text = "sealion.m2", + value = "sealion.m2", }, }, - value = "sealion", text = "sealion", + value = "sealion", }, { children = { { fileId = "125837", - value = "seaturtle.m2", text = "seaturtle.m2", + value = "seaturtle.m2", }, }, - value = "seaturtle", text = "seaturtle", + value = "seaturtle", }, { children = { { fileId = "125851", - value = "serpent.m2", text = "serpent.m2", + value = "serpent.m2", }, { fileId = "125852", - value = "serpentruby.m2", text = "serpentruby.m2", + value = "serpentruby.m2", }, }, - value = "serpent", text = "serpent", + value = "serpent", }, { children = { { fileId = "125854", - value = "shade.m2", text = "shade.m2", + value = "shade.m2", }, { fileId = "2199329", - value = "shadewhite.m2", text = "shadewhite.m2", + value = "shadewhite.m2", }, }, - value = "shade", text = "shade", + value = "shade", }, { children = { { fileId = "125859", - value = "hammerhead.m2", text = "hammerhead.m2", + value = "hammerhead.m2", }, { fileId = "125860", - value = "shark.m2", text = "shark.m2", + value = "shark.m2", }, }, - value = "shark", text = "shark", + value = "shark", }, { children = { { fileId = "125865", - value = "sheep.m2", text = "sheep.m2", + value = "sheep.m2", }, }, - value = "sheep", text = "sheep", + value = "sheep", }, { children = { { fileId = "125869", - value = "shivan.m2", text = "shivan.m2", + value = "shivan.m2", }, }, - value = "shivan", text = "shivan", + value = "shivan", }, { children = { { fileId = "125891", - value = "silithid.m2", text = "silithid.m2", + value = "silithid.m2", }, }, - value = "silithid", text = "silithid", + value = "silithid", }, { children = { { fileId = "125892", - value = "silithidscarab.m2", text = "silithidscarab.m2", + value = "silithidscarab.m2", }, }, - value = "silithidscarab", text = "silithidscarab", + value = "silithidscarab", }, { children = { { fileId = "125902", - value = "silithidtank.m2", text = "silithidtank.m2", + value = "silithidtank.m2", }, }, - value = "silithidtank", text = "silithidtank", + value = "silithidtank", }, { children = { { fileId = "125912", - value = "silithidtankboss.m2", text = "silithidtankboss.m2", + value = "silithidtankboss.m2", }, { fileId = "125913", - value = "silithidtankboss_damaged.m2", text = "silithidtankboss_damaged.m2", + value = "silithidtankboss_damaged.m2", }, }, - value = "silithidtankboss", text = "silithidtankboss", + value = "silithidtankboss", }, { children = { { fileId = "125931", - value = "silithidwasp.m2", text = "silithidwasp.m2", + value = "silithidwasp.m2", }, }, - value = "silithidwasp", text = "silithidwasp", + value = "silithidwasp", }, { children = { { fileId = "125932", - value = "silithidwaspboss.m2", text = "silithidwaspboss.m2", + value = "silithidwaspboss.m2", }, }, - value = "silithidwaspboss", text = "silithidwaspboss", + value = "silithidwaspboss", }, { children = { { fileId = "125938", - value = "skeletalserpent.m2", text = "skeletalserpent.m2", + value = "skeletalserpent.m2", }, }, - value = "skeletalserpent", text = "skeletalserpent", + value = "skeletalserpent", }, { children = { { fileId = "125942", - value = "skeleton.m2", text = "skeleton.m2", + value = "skeleton.m2", }, }, - value = "skeleton", text = "skeleton", + value = "skeleton", }, { children = { { fileId = "125947", - value = "skeletonmage.m2", text = "skeletonmage.m2", + value = "skeletonmage.m2", }, }, - value = "skeletonmage", text = "skeletonmage", + value = "skeletonmage", }, { children = { { fileId = "125948", - value = "skeletonnaked.m2", text = "skeletonnaked.m2", + value = "skeletonnaked.m2", }, }, - value = "skeletonnaked", text = "skeletonnaked", + value = "skeletonnaked", }, { children = { { fileId = "125956", - value = "skunk.m2", text = "skunk.m2", + value = "skunk.m2", }, }, - value = "skunk", text = "skunk", + value = "skunk", }, { children = { { fileId = "125957", - value = "slime.m2", text = "slime.m2", + value = "slime.m2", }, { fileId = "125958", - value = "slimelesser.m2", text = "slimelesser.m2", + value = "slimelesser.m2", }, }, - value = "slime", text = "slime", + value = "slime", }, { children = { { fileId = "125965", - value = "giantslime.m2", text = "giantslime.m2", + value = "giantslime.m2", }, }, - value = "slimegiant", text = "slimegiant", + value = "slimegiant", }, { children = { { fileId = "125967", - value = "slith.m2", text = "slith.m2", + value = "slith.m2", }, }, - value = "slith", text = "slith", + value = "slith", }, { children = { { fileId = "125969", - value = "snake.m2", text = "snake.m2", + value = "snake.m2", }, }, - value = "snake", text = "snake", + value = "snake", }, { children = { { fileId = "125984", - value = "snowman.m2", text = "snowman.m2", + value = "snowman.m2", }, }, - value = "snowman", text = "snowman", + value = "snowman", }, { children = { { fileId = "125988", - value = "spectraltiger.m2", text = "spectraltiger.m2", + value = "spectraltiger.m2", }, { fileId = "125989", - value = "spectraltigerepic.m2", text = "spectraltigerepic.m2", + value = "spectraltigerepic.m2", }, }, - value = "spectraltiger", text = "spectraltiger", + value = "spectraltiger", }, { children = { { fileId = "125990", - value = "airelementaltotem.m2", text = "airelementaltotem.m2", + value = "airelementaltotem.m2", }, { fileId = "125991", - value = "battlestandard_alliance.m2", text = "battlestandard_alliance.m2", + value = "battlestandard_alliance.m2", }, { fileId = "125993", - value = "battlestandard_horde.m2", text = "battlestandard_horde.m2", + value = "battlestandard_horde.m2", }, { fileId = "125995", - value = "creature_spellportal.m2", text = "creature_spellportal.m2", + value = "creature_spellportal.m2", }, { fileId = "126004", - value = "draeneitotem_air.m2", text = "draeneitotem_air.m2", + value = "draeneitotem_air.m2", }, { fileId = "126005", - value = "draeneitotem_earth.m2", text = "draeneitotem_earth.m2", + value = "draeneitotem_earth.m2", }, { fileId = "126006", - value = "draeneitotem_fire.m2", text = "draeneitotem_fire.m2", + value = "draeneitotem_fire.m2", }, { fileId = "126007", - value = "draeneitotem_water.m2", text = "draeneitotem_water.m2", + value = "draeneitotem_water.m2", }, { fileId = "126009", - value = "earthelementaltotem.m2", text = "earthelementaltotem.m2", + value = "earthelementaltotem.m2", }, { fileId = "126011", - value = "eyeofkilrog.m2", text = "eyeofkilrog.m2", + value = "eyeofkilrog.m2", }, { fileId = "126012", - value = "fireelementaltotem.m2", text = "fireelementaltotem.m2", + value = "fireelementaltotem.m2", }, { fileId = "126013", - value = "firelighttotem.m2", text = "firelighttotem.m2", + value = "firelighttotem.m2", }, { fileId = "126014", - value = "firetotem.m2", text = "firetotem.m2", + value = "firetotem.m2", }, { fileId = "126016", - value = "flameturret.m2", text = "flameturret.m2", + value = "flameturret.m2", }, { fileId = "126018", - value = "healingtotem.m2", text = "healingtotem.m2", + value = "healingtotem.m2", }, { fileId = "126020", - value = "invisibilitytotem.m2", text = "invisibilitytotem.m2", + value = "invisibilitytotem.m2", }, { fileId = "126022", - value = "landmine01.m2", text = "landmine01.m2", + value = "landmine01.m2", }, { fileId = "126024", - value = "manatotem.m2", text = "manatotem.m2", + value = "manatotem.m2", }, { fileId = "126026", - value = "monsterlure01.m2", text = "monsterlure01.m2", + value = "monsterlure01.m2", }, { fileId = "126032", - value = "sentrytotem.m2", text = "sentrytotem.m2", + value = "sentrytotem.m2", }, { fileId = "126033", - value = "serpent_totem.m2", text = "serpent_totem.m2", + value = "serpent_totem.m2", }, { fileId = "126036", - value = "stasistotem.m2", text = "stasistotem.m2", + value = "stasistotem.m2", }, { fileId = "126040", - value = "valentinesdummy.m2", text = "valentinesdummy.m2", + value = "valentinesdummy.m2", }, { fileId = "126041", - value = "waterelementaltotem.m2", text = "waterelementaltotem.m2", + value = "waterelementaltotem.m2", }, }, - value = "spells", text = "spells", + value = "spells", }, { children = { { fileId = "126042", - value = "spirithealer.m2", text = "spirithealer.m2", + value = "spirithealer.m2", }, }, - value = "spirithealer", text = "spirithealer", + value = "spirithealer", }, { children = { { fileId = "126045", - value = "spiritofredemption.m2", text = "spiritofredemption.m2", + value = "spiritofredemption.m2", }, }, - value = "spiritofredemption", text = "spiritofredemption", + value = "spiritofredemption", }, { children = { { fileId = "126047", - value = "sporebat.m2", text = "sporebat.m2", + value = "sporebat.m2", }, }, - value = "sporebat", text = "sporebat", + value = "sporebat", }, { children = { { fileId = "126052", - value = "sporecreature.m2", text = "sporecreature.m2", + value = "sporecreature.m2", }, }, - value = "sporecreature", text = "sporecreature", + value = "sporecreature", }, { children = { { fileId = "126055", - value = "sporeling.m2", text = "sporeling.m2", + value = "sporeling.m2", }, }, - value = "sporeling", text = "sporeling", + value = "sporeling", }, { children = { { fileId = "126061", - value = "squirrel.m2", text = "squirrel.m2", + value = "squirrel.m2", }, }, - value = "squirrel", text = "squirrel", + value = "squirrel", }, { children = { { fileId = "126065", - value = "stag.m2", text = "stag.m2", + value = "stag.m2", }, }, - value = "stag", text = "stag", + value = "stag", }, { children = { { fileId = "126069", - value = "steamtonk.m2", text = "steamtonk.m2", + value = "steamtonk.m2", }, }, - value = "steamtonk", text = "steamtonk", + value = "steamtonk", }, { children = { { fileId = "126072", - value = "stonekeeper.m2", text = "stonekeeper.m2", + value = "stonekeeper.m2", }, }, - value = "stonekeeper", text = "stonekeeper", + value = "stonekeeper", }, { children = { { fileId = "126075", - value = "stormcrow.m2", text = "stormcrow.m2", + value = "stormcrow.m2", }, }, - value = "stormcrow", text = "stormcrow", + value = "stormcrow", }, { children = { { fileId = "126077", - value = "stormcrowdruid.m2", text = "stormcrowdruid.m2", + value = "stormcrowdruid.m2", }, }, - value = "stormcrowdruid", text = "stormcrowdruid", + value = "stormcrowdruid", }, { children = { { fileId = "126081", - value = "succubus.m2", text = "succubus.m2", + value = "succubus.m2", }, }, - value = "succubus", text = "succubus", + value = "succubus", }, { children = { { fileId = "126106", - value = "talbuk.m2", text = "talbuk.m2", + value = "talbuk.m2", }, }, - value = "talbuk", text = "talbuk", + value = "talbuk", }, { children = { { fileId = "126117", - value = "tallstrider.m2", text = "tallstrider.m2", + value = "tallstrider.m2", }, }, - value = "tallstrider", text = "tallstrider", + value = "tallstrider", }, { children = { { fileId = "126124", - value = "tarantula.m2", text = "tarantula.m2", + value = "tarantula.m2", }, }, - value = "tarantula", text = "tarantula", + value = "tarantula", }, { children = { { fileId = "126131", - value = "deathguard.m2", text = "deathguard.m2", + value = "deathguard.m2", }, }, - value = "tempdeathguard", text = "tempdeathguard", + value = "tempdeathguard", }, { children = { { fileId = "126133", - value = "scarletcrusaderheavy.m2", text = "scarletcrusaderheavy.m2", + value = "scarletcrusaderheavy.m2", }, }, - value = "tempscarletcrusaderheavy", text = "tempscarletcrusaderheavy", + value = "tempscarletcrusaderheavy", }, { children = { { fileId = "126136", - value = "scarletcrusaderlight.m2", text = "scarletcrusaderlight.m2", + value = "scarletcrusaderlight.m2", }, }, - value = "tempscarletcrusaderlight", text = "tempscarletcrusaderlight", + value = "tempscarletcrusaderlight", }, { children = { { fileId = "126137", - value = "scourgemalenpc.m2", text = "scourgemalenpc.m2", + value = "scourgemalenpc.m2", }, }, - value = "tempscourgemalenpc", text = "tempscourgemalenpc", + value = "tempscourgemalenpc", }, { children = { { fileId = "126143", - value = "terongorefiend.m2", text = "terongorefiend.m2", + value = "terongorefiend.m2", }, }, - value = "terongorefiend", text = "terongorefiend", + value = "terongorefiend", }, { children = { { fileId = "126149", - value = "terongorefiend_mounted.m2", text = "terongorefiend_mounted.m2", + value = "terongorefiend_mounted.m2", }, }, - value = "terongorefiend_mounted", text = "terongorefiend_mounted", + value = "terongorefiend_mounted", }, { children = { { fileId = "126150", - value = "tharazun.m2", text = "tharazun.m2", + value = "tharazun.m2", }, }, - value = "tharazun", text = "tharazun", + value = "tharazun", }, { children = { { fileId = "126153", - value = "threshadon.m2", text = "threshadon.m2", + value = "threshadon.m2", }, }, - value = "threshadon", text = "threshadon", + value = "threshadon", }, { children = { { fileId = "126158", - value = "thunderaan.m2", text = "thunderaan.m2", + value = "thunderaan.m2", }, }, - value = "thunderaan", text = "thunderaan", + value = "thunderaan", }, { children = { { fileId = "126169", - value = "thunderlizard.m2", text = "thunderlizard.m2", + value = "thunderlizard.m2", }, }, - value = "thunderlizard", text = "thunderlizard", + value = "thunderlizard", }, { children = { { fileId = "126171", - value = "tiger.m2", text = "tiger.m2", + value = "tiger.m2", }, { fileId = "126172", - value = "tiger_ghost.m2", text = "tiger_ghost.m2", + value = "tiger_ghost.m2", }, { fileId = "126173", - value = "tigercub.m2", text = "tigercub.m2", + value = "tigercub.m2", }, { fileId = "126174", - value = "tigergem.m2", text = "tigergem.m2", + value = "tigergem.m2", }, }, - value = "tiger", text = "tiger", + value = "tiger", }, { children = { { fileId = "2199505", - value = "tigon.m2", text = "tigon.m2", + value = "tigon.m2", }, { fileId = "126194", - value = "tigonfemale.m2", text = "tigonfemale.m2", + value = "tigonfemale.m2", }, { fileId = "126195", - value = "tigonmale.m2", text = "tigonmale.m2", + value = "tigonmale.m2", }, }, - value = "tigon", text = "tigon", + value = "tigon", }, { children = { { fileId = "126198", - value = "time_rift1.m2", text = "time_rift1.m2", + value = "time_rift1.m2", }, }, - value = "timerift", text = "timerift", + value = "timerift", }, { children = { { fileId = "126199", - value = "titanfemale.m2", text = "titanfemale.m2", + value = "titanfemale.m2", }, }, - value = "titanfemale", text = "titanfemale", + value = "titanfemale", }, { children = { { fileId = "126214", - value = "titanmale.m2", text = "titanmale.m2", + value = "titanmale.m2", }, { fileId = "126215", - value = "titanmale_ghost.m2", text = "titanmale_ghost.m2", + value = "titanmale_ghost.m2", }, }, - value = "titanmale", text = "titanmale", + value = "titanmale", }, { children = { { fileId = "126223", - value = "ashenvaletreefalling01.m2", text = "ashenvaletreefalling01.m2", + value = "ashenvaletreefalling01.m2", }, }, - value = "tree", text = "tree", + value = "tree", }, { children = { { fileId = "126225", - value = "trex.m2", text = "trex.m2", + value = "trex.m2", }, }, - value = "trex", text = "trex", + value = "trex", }, { children = { { fileId = "126235", - value = "tripod.m2", text = "tripod.m2", + value = "tripod.m2", }, }, - value = "tripod", text = "tripod", + value = "tripod", }, { children = { { fileId = "126239", - value = "troglodyte.m2", text = "troglodyte.m2", + value = "troglodyte.m2", }, }, - value = "troglodyte", text = "troglodyte", + value = "troglodyte", }, { children = { { fileId = "126244", - value = "troll.m2", text = "troll.m2", + value = "troll.m2", }, { fileId = "126245", - value = "trollforestboss.m2", text = "trollforestboss.m2", + value = "trollforestboss.m2", }, { fileId = "126246", - value = "trollforestcaster.m2", text = "trollforestcaster.m2", + value = "trollforestcaster.m2", }, { fileId = "126247", - value = "trolljungleboss.m2", text = "trolljungleboss.m2", + value = "trolljungleboss.m2", }, { fileId = "126248", - value = "trolljunglecaster.m2", text = "trolljunglecaster.m2", + value = "trolljunglecaster.m2", }, { fileId = "126249", - value = "trollmelee.m2", text = "trollmelee.m2", + value = "trollmelee.m2", }, { fileId = "126267", - value = "trollwhelp.m2", text = "trollwhelp.m2", + value = "trollwhelp.m2", }, }, - value = "troll", text = "troll", + value = "troll", }, { children = { { fileId = "126277", - value = "trolldire.m2", text = "trolldire.m2", + value = "trolldire.m2", }, }, - value = "trolldire", text = "trolldire", + value = "trolldire", }, { children = { { fileId = "126278", - value = "turkey.m2", text = "turkey.m2", + value = "turkey.m2", }, }, - value = "turkey", text = "turkey", + value = "turkey", }, { children = { { fileId = "126281", - value = "turtle.m2", text = "turtle.m2", + value = "turtle.m2", }, }, - value = "turtle", text = "turtle", + value = "turtle", }, { children = { { fileId = "126289", - value = "twinemperor.m2", text = "twinemperor.m2", + value = "twinemperor.m2", }, }, - value = "twinemperor", text = "twinemperor", + value = "twinemperor", }, { children = { { fileId = "234866", - value = "tyraelpet.m2", text = "tyraelpet.m2", + value = "tyraelpet.m2", }, }, - value = "tyraelpet", text = "tyraelpet", + value = "tyraelpet", }, { children = { { fileId = "126302", - value = "undeadbeast.m2", text = "undeadbeast.m2", + value = "undeadbeast.m2", }, }, - value = "undeadbeast", text = "undeadbeast", + value = "undeadbeast", }, { children = { { fileId = "126304", - value = "ridingundeadhorse.m2", text = "ridingundeadhorse.m2", + value = "ridingundeadhorse.m2", }, { fileId = "126306", - value = "undeadhorse.m2", text = "undeadhorse.m2", + value = "undeadhorse.m2", }, }, - value = "undeadhorse", text = "undeadhorse", + value = "undeadhorse", }, { children = { { fileId = "126320", - value = "unicorn.m2", text = "unicorn.m2", + value = "unicorn.m2", }, }, - value = "unicorn", text = "unicorn", + value = "unicorn", }, { children = { { fileId = "126337", - value = "velen.m2", text = "velen.m2", + value = "velen.m2", }, }, - value = "velen", text = "velen", + value = "velen", }, { children = { { fileId = "126342", - value = "voidcaller.m2", text = "voidcaller.m2", + value = "voidcaller.m2", }, }, - value = "voidcaller", text = "voidcaller", + value = "voidcaller", }, { children = { { fileId = "126350", - value = "voidgod.m2", text = "voidgod.m2", + value = "voidgod.m2", }, }, - value = "voidgod", text = "voidgod", + value = "voidgod", }, { children = { { fileId = "126353", - value = "voidlord.m2", text = "voidlord.m2", + value = "voidlord.m2", }, }, - value = "voidlord", text = "voidlord", + value = "voidlord", }, { children = { { fileId = "126363", - value = "voidterror.m2", text = "voidterror.m2", + value = "voidterror.m2", }, }, - value = "voidterror", text = "voidterror", + value = "voidterror", }, { children = { { fileId = "126369", - value = "voidwalker.m2", text = "voidwalker.m2", + value = "voidwalker.m2", }, }, - value = "voidwalker", text = "voidwalker", + value = "voidwalker", }, { children = { { fileId = "126371", - value = "voidwalker_outland.m2", text = "voidwalker_outland.m2", + value = "voidwalker_outland.m2", }, }, - value = "voidwalkeroutland", text = "voidwalkeroutland", + value = "voidwalkeroutland", }, { children = { { fileId = "126382", - value = "voidwraith.m2", text = "voidwraith.m2", + value = "voidwraith.m2", }, }, - value = "voidwraith", text = "voidwraith", + value = "voidwraith", }, { children = { { fileId = "126403", - value = "pvpwarhorse.m2", text = "pvpwarhorse.m2", + value = "pvpwarhorse.m2", }, { fileId = "126407", - value = "warhorse.m2", text = "warhorse.m2", + value = "warhorse.m2", }, }, - value = "warhorse", text = "warhorse", + value = "warhorse", }, { children = { { fileId = "126410", - value = "warpstalker.m2", text = "warpstalker.m2", + value = "warpstalker.m2", }, }, - value = "warpstalker", text = "warpstalker", + value = "warpstalker", }, { children = { { fileId = "3940778", - value = "warpstalkermountbc.m2", text = "warpstalkermountbc.m2", + value = "warpstalkermountbc.m2", }, }, - value = "warpstalkermountbc", text = "warpstalkermountbc", + value = "warpstalkermountbc", }, { children = { { fileId = "126418", - value = "warpstorm.m2", text = "warpstorm.m2", + value = "warpstorm.m2", }, { fileId = "126419", - value = "warpstorm_large.m2", text = "warpstorm_large.m2", + value = "warpstorm_large.m2", }, { fileId = "126420", - value = "warpstorm_xlarge.m2", text = "warpstorm_xlarge.m2", + value = "warpstorm_xlarge.m2", }, }, - value = "warpstorm", text = "warpstorm", + value = "warpstorm", }, { children = { { fileId = "126423", - value = "waterbubblecreature.m2", text = "waterbubblecreature.m2", + value = "waterbubblecreature.m2", }, { fileId = "126424", - value = "waterbubblecreature_nosound.m2", text = "waterbubblecreature_nosound.m2", + value = "waterbubblecreature_nosound.m2", }, }, - value = "waterbubblecreature", text = "waterbubblecreature", + value = "waterbubblecreature", }, { children = { { fileId = "126426", - value = "waterelemental.m2", text = "waterelemental.m2", + value = "waterelemental.m2", }, }, - value = "waterelemental", text = "waterelemental", + value = "waterelemental", }, { children = { { fileId = "126437", - value = "wellofsouls.m2", text = "wellofsouls.m2", + value = "wellofsouls.m2", }, { fileId = "126440", - value = "wellofsoulsgrief.m2", text = "wellofsoulsgrief.m2", + value = "wellofsoulsgrief.m2", }, { fileId = "126441", - value = "wellofsoulspain.m2", text = "wellofsoulspain.m2", + value = "wellofsoulspain.m2", }, { fileId = "126443", - value = "wellofsoulsseduction.m2", text = "wellofsoulsseduction.m2", + value = "wellofsoulsseduction.m2", }, }, - value = "wellofsouls", text = "wellofsouls", + value = "wellofsouls", }, { children = { { fileId = "126444", - value = "wendigo.m2", text = "wendigo.m2", + value = "wendigo.m2", }, }, - value = "wendigo", text = "wendigo", + value = "wendigo", }, { children = { { fileId = "126449", - value = "wight.m2", text = "wight.m2", + value = "wight.m2", }, }, - value = "wight", text = "wight", + value = "wight", }, { children = { { fileId = "126452", - value = "windserpent.m2", text = "windserpent.m2", + value = "windserpent.m2", }, }, - value = "windserpent", text = "windserpent", + value = "windserpent", }, { children = { { fileId = "126465", - value = "windserpentoutland.m2", text = "windserpentoutland.m2", + value = "windserpentoutland.m2", }, }, - value = "windserpentoutland", text = "windserpentoutland", + value = "windserpentoutland", }, { children = { { fileId = "126483", - value = "wisp.m2", text = "wisp.m2", + value = "wisp.m2", }, { fileId = "2199512", - value = "wispred.m2", text = "wispred.m2", + value = "wispred.m2", }, }, - value = "wisp", text = "wisp", + value = "wisp", }, { children = { { fileId = "126487", - value = "wolf.m2", text = "wolf.m2", + value = "wolf.m2", }, { fileId = "126488", - value = "wolf_ghost.m2", text = "wolf_ghost.m2", + value = "wolf_ghost.m2", }, }, - value = "wolf", text = "wolf", + value = "wolf", }, { children = { { fileId = "126501", - value = "wolpertinger.m2", text = "wolpertinger.m2", + value = "wolpertinger.m2", }, }, - value = "wolpertinger", text = "wolpertinger", + value = "wolpertinger", }, { children = { { fileId = "126511", - value = "worgen.m2", text = "worgen.m2", + value = "worgen.m2", }, }, - value = "worgen", text = "worgen", + value = "worgen", }, { children = { { fileId = "126512", - value = "worm.m2", text = "worm.m2", + value = "worm.m2", }, }, - value = "worm", text = "worm", + value = "worm", }, { children = { { fileId = "126521", - value = "wrathguard.m2", text = "wrathguard.m2", + value = "wrathguard.m2", }, }, - value = "wrathguard", text = "wrathguard", + value = "wrathguard", }, { children = { { fileId = "126530", - value = "wyvern.m2", text = "wyvern.m2", + value = "wyvern.m2", }, { fileId = "126532", - value = "wyvern_armored.m2", text = "wyvern_armored.m2", + value = "wyvern_armored.m2", }, { fileId = "126540", - value = "wyvern_mount.m2", text = "wyvern_mount.m2", + value = "wyvern_mount.m2", }, }, - value = "wyvern", text = "wyvern", + value = "wyvern", }, { children = { { fileId = "126560", - value = "zebramount.m2", text = "zebramount.m2", + value = "zebramount.m2", }, }, - value = "zebramount", text = "zebramount", + value = "zebramount", }, { children = { { fileId = "126561", - value = "zerglingpet.m2", text = "zerglingpet.m2", + value = "zerglingpet.m2", }, }, - value = "zergling", text = "zergling", + value = "zergling", }, { children = { { fileId = "126565", - value = "zigguratcrystal.m2", text = "zigguratcrystal.m2", + value = "zigguratcrystal.m2", }, }, - value = "zigguratcrystal", text = "zigguratcrystal", + value = "zigguratcrystal", }, { children = { { fileId = "126568", - value = "zippelin.m2", text = "zippelin.m2", + value = "zippelin.m2", }, }, - value = "zippelin", text = "zippelin", + value = "zippelin", }, { children = { { fileId = "126570", - value = "zombie.m2", text = "zombie.m2", + value = "zombie.m2", }, { fileId = "126571", - value = "zombiearm.m2", text = "zombiearm.m2", + value = "zombiearm.m2", }, { fileId = "126575", - value = "zombiesword.m2", text = "zombiesword.m2", + value = "zombiesword.m2", }, }, - value = "zombie", text = "zombie", + value = "zombie", }, { children = { { fileId = "126597", - value = "zuljin.m2", text = "zuljin.m2", + value = "zuljin.m2", }, }, - value = "zuljin", text = "zuljin", + value = "zuljin", }, }, - value = "creature", text = "creature", + value = "creature", }, { children = { @@ -6816,91 +6822,91 @@ WeakAuras.ModelPaths = { children = { { fileId = "130465", - value = "bladesedgeforestskybox.m2", text = "bladesedgeforestskybox.m2", + value = "bladesedgeforestskybox.m2", }, { fileId = "130469", - value = "bladesedgenightelfskybox.m2", text = "bladesedgenightelfskybox.m2", + value = "bladesedgenightelfskybox.m2", }, { fileId = "130476", - value = "bladesedgeskybox.m2", text = "bladesedgeskybox.m2", + value = "bladesedgeskybox.m2", }, { fileId = "130481", - value = "bonewastesskybox.m2", text = "bonewastesskybox.m2", + value = "bonewastesskybox.m2", }, { fileId = "130482", - value = "cavernsoftimesky.m2", text = "cavernsoftimesky.m2", + value = "cavernsoftimesky.m2", }, { fileId = "130493", - value = "cot_sky01.m2", text = "cot_sky01.m2", + value = "cot_sky01.m2", }, { fileId = "130495", - value = "deathclouds.m2", text = "deathclouds.m2", + value = "deathclouds.m2", }, { fileId = "130497", - value = "diremaulskybox.m2", text = "diremaulskybox.m2", + value = "diremaulskybox.m2", }, { fileId = "130525", - value = "hellfireskybox.m2", text = "hellfireskybox.m2", + value = "hellfireskybox.m2", }, { fileId = "130575", - value = "nagrandskybox.m2", text = "nagrandskybox.m2", + value = "nagrandskybox.m2", }, { fileId = "130593", - value = "netherstormskybox.m2", text = "netherstormskybox.m2", + value = "netherstormskybox.m2", }, { fileId = "130609", - value = "portalworldlegionsky.m2", text = "portalworldlegionsky.m2", + value = "portalworldlegionsky.m2", }, { fileId = "130616", - value = "shadowmoonillidan.m2", text = "shadowmoonillidan.m2", + value = "shadowmoonillidan.m2", }, { fileId = "130623", - value = "shadowmoonskybox.m2", text = "shadowmoonskybox.m2", + value = "shadowmoonskybox.m2", }, { fileId = "130629", - value = "stars.m2", text = "stars.m2", + value = "stars.m2", }, { fileId = "130636", - value = "stratholmeskybox.m2", text = "stratholmeskybox.m2", + value = "stratholmeskybox.m2", }, }, - value = "stars", text = "stars", + value = "stars", }, }, - value = "environments", text = "environments", + value = "environments", }, { children = { @@ -6908,123 +6914,123 @@ WeakAuras.ModelPaths = { children = { { fileId = "130731", - value = "talktome.m2", text = "talktome.m2", + value = "talktome.m2", }, { fileId = "587741", - value = "talktome_chat.m2", text = "talktome_chat.m2", + value = "talktome_chat.m2", }, { fileId = "587744", - value = "talktome_gears.m2", text = "talktome_gears.m2", + value = "talktome_gears.m2", }, { fileId = "650616", - value = "talktome_legendary.m2", text = "talktome_legendary.m2", + value = "talktome_legendary.m2", }, { fileId = "650036", - value = "talktome_petbattles.m2", text = "talktome_petbattles.m2", + value = "talktome_petbattles.m2", }, { fileId = "667489", - value = "talktome_petbattles_gold.m2", text = "talktome_petbattles_gold.m2", + value = "talktome_petbattles_gold.m2", }, { fileId = "650619", - value = "talktome_questionlegendary.m2", text = "talktome_questionlegendary.m2", + value = "talktome_questionlegendary.m2", }, { fileId = "130732", - value = "talktomeblue.m2", text = "talktomeblue.m2", + value = "talktomeblue.m2", }, { fileId = "1444889", - value = "talktomeblue_faded.m2", text = "talktomeblue_faded.m2", + value = "talktomeblue_faded.m2", }, { fileId = "1417649", - value = "talktomefaded.m2", text = "talktomefaded.m2", + value = "talktomefaded.m2", }, { fileId = "130733", - value = "talktomegreen.m2", text = "talktomegreen.m2", + value = "talktomegreen.m2", }, { fileId = "130734", - value = "talktomegrey.m2", text = "talktomegrey.m2", + value = "talktomegrey.m2", }, { fileId = "130735", - value = "talktomequestion_grey.m2", text = "talktomequestion_grey.m2", + value = "talktomequestion_grey.m2", }, { fileId = "130736", - value = "talktomequestion_ltblue.m2", text = "talktomequestion_ltblue.m2", + value = "talktomequestion_ltblue.m2", }, { fileId = "130737", - value = "talktomequestion_white.m2", text = "talktomequestion_white.m2", + value = "talktomequestion_white.m2", }, { fileId = "1444892", - value = "talktomequestionltblue_faded.m2", text = "talktomequestionltblue_faded.m2", + value = "talktomequestionltblue_faded.m2", }, { fileId = "130738", - value = "talktomequestionmark.m2", text = "talktomequestionmark.m2", + value = "talktomequestionmark.m2", }, { fileId = "433904", - value = "talktomered.m2", text = "talktomered.m2", + value = "talktomered.m2", }, { fileId = "523824", - value = "talktometrainerclass.m2", text = "talktometrainerclass.m2", + value = "talktometrainerclass.m2", }, { fileId = "130745", - value = "ui-autocastbutton.m2", text = "ui-autocastbutton.m2", + value = "ui-autocastbutton.m2", }, { fileId = "130746", - value = "ui-buffon.m2", text = "ui-buffon.m2", + value = "ui-buffon.m2", }, }, - value = "buttons", text = "buttons", + value = "buttons", }, { children = { { fileId = "131012", - value = "ui-cooldown-indicator.m2", text = "ui-cooldown-indicator.m2", + value = "ui-cooldown-indicator.m2", }, }, - value = "cooldown", text = "cooldown", + value = "cooldown", }, { children = { @@ -7034,610 +7040,610 @@ WeakAuras.ModelPaths = { children = { { fileId = "623712", - value = "ui_alliance.m2", text = "ui_alliance.m2", + value = "ui_alliance.m2", }, }, - value = "ui_alliance", text = "ui_alliance", + value = "ui_alliance", }, { children = { { fileId = "651555", - value = "ui_alliance_lowres.m2", text = "ui_alliance_lowres.m2", + value = "ui_alliance_lowres.m2", }, }, - value = "ui_alliance_lowres", text = "ui_alliance_lowres", + value = "ui_alliance_lowres", }, { children = { { fileId = "131921", - value = "ui_bloodelf.m2", text = "ui_bloodelf.m2", + value = "ui_bloodelf.m2", }, }, - value = "ui_bloodelf", text = "ui_bloodelf", + value = "ui_bloodelf", }, { children = { { fileId = "343630", - value = "ui_characterselect.m2", text = "ui_characterselect.m2", + value = "ui_characterselect.m2", }, }, - value = "ui_characterselect", text = "ui_characterselect", + value = "ui_characterselect", }, { children = { { fileId = "236082", - value = "ui_deathknight.m2", text = "ui_deathknight.m2", + value = "ui_deathknight.m2", }, { fileId = "1560617", - value = "ui_deathknight_lowres.m2", text = "ui_deathknight_lowres.m2", + value = "ui_deathknight_lowres.m2", }, }, - value = "ui_deathknight", text = "ui_deathknight", + value = "ui_deathknight", }, { children = { { fileId = "1305036", - value = "ui_demonhunter.m2", text = "ui_demonhunter.m2", + value = "ui_demonhunter.m2", }, { fileId = "1560446", - value = "ui_demonhunter_lowres.m2", text = "ui_demonhunter_lowres.m2", + value = "ui_demonhunter_lowres.m2", }, }, - value = "ui_demonhunter", text = "ui_demonhunter", + value = "ui_demonhunter", }, { children = { { fileId = "131934", - value = "ui_draenei.m2", text = "ui_draenei.m2", + value = "ui_draenei.m2", }, }, - value = "ui_draenei", text = "ui_draenei", + value = "ui_draenei", }, { children = { { fileId = "131940", - value = "ui_dwarf.m2", text = "ui_dwarf.m2", + value = "ui_dwarf.m2", }, }, - value = "ui_dwarf", text = "ui_dwarf", + value = "ui_dwarf", }, { children = { { fileId = "430171", - value = "ui_gnome.m2", text = "ui_gnome.m2", + value = "ui_gnome.m2", }, }, - value = "ui_gnome", text = "ui_gnome", + value = "ui_gnome", }, { children = { { fileId = "319097", - value = "ui_goblin.m2", text = "ui_goblin.m2", + value = "ui_goblin.m2", }, }, - value = "ui_goblin", text = "ui_goblin", + value = "ui_goblin", }, { children = { { fileId = "1662239", - value = "ui_highmountaintauren.m2", text = "ui_highmountaintauren.m2", + value = "ui_highmountaintauren.m2", }, }, - value = "ui_highmountaintauren", text = "ui_highmountaintauren", + value = "ui_highmountaintauren", }, { children = { { fileId = "623714", - value = "ui_horde.m2", text = "ui_horde.m2", + value = "ui_horde.m2", }, }, - value = "ui_horde", text = "ui_horde", + value = "ui_horde", }, { children = { { fileId = "651558", - value = "ui_horde_lowres.m2", text = "ui_horde_lowres.m2", + value = "ui_horde_lowres.m2", }, }, - value = "ui_horde_lowres", text = "ui_horde_lowres", + value = "ui_horde_lowres", }, { children = { { fileId = "131948", - value = "ui_human.m2", text = "ui_human.m2", + value = "ui_human.m2", }, }, - value = "ui_human", text = "ui_human", + value = "ui_human", }, { children = { { fileId = "1662241", - value = "ui_lightforgeddraenei.m2", text = "ui_lightforgeddraenei.m2", + value = "ui_lightforgeddraenei.m2", }, }, - value = "ui_lightforgeddraenei", text = "ui_lightforgeddraenei", + value = "ui_lightforgeddraenei", }, { children = { { fileId = "131970", - value = "ui_mainmenu.m2", text = "ui_mainmenu.m2", + value = "ui_mainmenu.m2", }, }, - value = "ui_mainmenu", text = "ui_mainmenu", + value = "ui_mainmenu", }, { children = { { fileId = "131982", - value = "ui_mainmenu_burningcrusade.m2", text = "ui_mainmenu_burningcrusade.m2", + value = "ui_mainmenu_burningcrusade.m2", }, }, - value = "ui_mainmenu_burningcrusade", text = "ui_mainmenu_burningcrusade", + value = "ui_mainmenu_burningcrusade", }, { children = { { fileId = "653518", - value = "ui_mainmenu_cata_lowbandwidth.m2", text = "ui_mainmenu_cata_lowbandwidth.m2", + value = "ui_mainmenu_cata_lowbandwidth.m2", }, }, - value = "ui_mainmenu_cata_lowbandwidth", text = "ui_mainmenu_cata_lowbandwidth", + value = "ui_mainmenu_cata_lowbandwidth", }, { children = { { fileId = "466614", - value = "ui_mainmenu_cataclysm.m2", text = "ui_mainmenu_cataclysm.m2", + value = "ui_mainmenu_cataclysm.m2", }, }, - value = "ui_mainmenu_cataclysm", text = "ui_mainmenu_cataclysm", + value = "ui_mainmenu_cataclysm", }, { children = { { fileId = "1396280", - value = "ui_mainmenu_legion.m2", text = "ui_mainmenu_legion.m2", + value = "ui_mainmenu_legion.m2", }, { fileId = "1396283", - value = "ui_mainmenu_legion_lowbandwidth.m2", text = "ui_mainmenu_legion_lowbandwidth.m2", + value = "ui_mainmenu_legion_lowbandwidth.m2", }, }, - value = "ui_mainmenu_legion", text = "ui_mainmenu_legion", + value = "ui_mainmenu_legion", }, { children = { { fileId = "467804", - value = "ui_mainmenu_lowbandwidth.m2", text = "ui_mainmenu_lowbandwidth.m2", + value = "ui_mainmenu_lowbandwidth.m2", }, }, - value = "ui_mainmenu_lowbandwidth", text = "ui_mainmenu_lowbandwidth", + value = "ui_mainmenu_lowbandwidth", }, { children = { { fileId = "236122", - value = "ui_mainmenu_northrend.m2", text = "ui_mainmenu_northrend.m2", + value = "ui_mainmenu_northrend.m2", }, }, - value = "ui_mainmenu_northrend", text = "ui_mainmenu_northrend", + value = "ui_mainmenu_northrend", }, { children = { { fileId = "631713", - value = "ui_mainmenu_pandaria.m2", text = "ui_mainmenu_pandaria.m2", + value = "ui_mainmenu_pandaria.m2", }, }, - value = "ui_mainmenu_pandaria", text = "ui_mainmenu_pandaria", + value = "ui_mainmenu_pandaria", }, { children = { { fileId = "1067592", - value = "ui_mainmenu_warlords.m2", text = "ui_mainmenu_warlords.m2", + value = "ui_mainmenu_warlords.m2", }, { fileId = "1067658", - value = "ui_mainmenu_warlords_lowbandwidth.m2", text = "ui_mainmenu_warlords_lowbandwidth.m2", + value = "ui_mainmenu_warlords_lowbandwidth.m2", }, }, - value = "ui_mainmenu_warlords", text = "ui_mainmenu_warlords", + value = "ui_mainmenu_warlords", }, { children = { { fileId = "1662240", - value = "ui_nightborneelf.m2", text = "ui_nightborneelf.m2", + value = "ui_nightborneelf.m2", }, }, - value = "ui_nightborneelf", text = "ui_nightborneelf", + value = "ui_nightborneelf", }, { children = { { fileId = "131993", - value = "ui_nightelf.m2", text = "ui_nightelf.m2", + value = "ui_nightelf.m2", }, }, - value = "ui_nightelf", text = "ui_nightelf", + value = "ui_nightelf", }, { children = { { fileId = "132003", - value = "ui_orc.m2", text = "ui_orc.m2", + value = "ui_orc.m2", }, }, - value = "ui_orc", text = "ui_orc", + value = "ui_orc", }, { children = { { fileId = "574549", - value = "ui_pandaren.m2", text = "ui_pandaren.m2", + value = "ui_pandaren.m2", }, }, - value = "ui_pandaren", text = "ui_pandaren", + value = "ui_pandaren", }, { children = { { fileId = "623716", - value = "ui_pandarencharacterselect.m2", text = "ui_pandarencharacterselect.m2", + value = "ui_pandarencharacterselect.m2", }, }, - value = "ui_pandarencharacterselect", text = "ui_pandarencharacterselect", + value = "ui_pandarencharacterselect", }, { children = { { fileId = "651561", - value = "ui_pandarencharacterselect_lowres.m2", text = "ui_pandarencharacterselect_lowres.m2", + value = "ui_pandarencharacterselect_lowres.m2", }, }, - value = "ui_pandarencharacterselect_lowres", text = "ui_pandarencharacterselect_lowres", + value = "ui_pandarencharacterselect_lowres", }, { children = { { fileId = "132005", - value = "ui_rs_dwarf.m2", text = "ui_rs_dwarf.m2", + value = "ui_rs_dwarf.m2", }, }, - value = "ui_rs_dwarf", text = "ui_rs_dwarf", + value = "ui_rs_dwarf", }, { children = { { fileId = "132007", - value = "ui_rs_human.m2", text = "ui_rs_human.m2", + value = "ui_rs_human.m2", }, }, - value = "ui_rs_human", text = "ui_rs_human", + value = "ui_rs_human", }, { children = { { fileId = "132010", - value = "ui_rs_nightelf.m2", text = "ui_rs_nightelf.m2", + value = "ui_rs_nightelf.m2", }, }, - value = "ui_rs_nightelf", text = "ui_rs_nightelf", + value = "ui_rs_nightelf", }, { children = { { fileId = "132016", - value = "ui_rs_orc.m2", text = "ui_rs_orc.m2", + value = "ui_rs_orc.m2", }, }, - value = "ui_rs_orc", text = "ui_rs_orc", + value = "ui_rs_orc", }, { children = { { fileId = "132020", - value = "ui_rs_scourge.m2", text = "ui_rs_scourge.m2", + value = "ui_rs_scourge.m2", }, }, - value = "ui_rs_scourge", text = "ui_rs_scourge", + value = "ui_rs_scourge", }, { children = { { fileId = "132025", - value = "ui_rs_tauren.m2", text = "ui_rs_tauren.m2", + value = "ui_rs_tauren.m2", }, }, - value = "ui_rs_tauren", text = "ui_rs_tauren", + value = "ui_rs_tauren", }, { children = { { fileId = "132035", - value = "ui_scourge.m2", text = "ui_scourge.m2", + value = "ui_scourge.m2", }, }, - value = "ui_scourge", text = "ui_scourge", + value = "ui_scourge", }, { children = { { fileId = "132046", - value = "ui_tauren.m2", text = "ui_tauren.m2", + value = "ui_tauren.m2", }, }, - value = "ui_tauren", text = "ui_tauren", + value = "ui_tauren", }, { children = { { fileId = "429097", - value = "ui_troll.m2", text = "ui_troll.m2", + value = "ui_troll.m2", }, }, - value = "ui_troll", text = "ui_troll", + value = "ui_troll", }, { children = { { fileId = "1662242", - value = "ui_voidelf.m2", text = "ui_voidelf.m2", + value = "ui_voidelf.m2", }, }, - value = "ui_voidelf", text = "ui_voidelf", + value = "ui_voidelf", }, { children = { { fileId = "313254", - value = "ui_worgen.m2", text = "ui_worgen.m2", + value = "ui_worgen.m2", }, }, - value = "ui_worgen", text = "ui_worgen", + value = "ui_worgen", }, }, - value = "models", text = "models", + value = "models", }, }, - value = "glues", text = "glues", + value = "glues", }, { children = { { fileId = "2198609", - value = "inventoryartgeometry.m2", text = "inventoryartgeometry.m2", + value = "inventoryartgeometry.m2", }, { fileId = "2198630", - value = "inventoryartgeometryold.m2", text = "inventoryartgeometryold.m2", + value = "inventoryartgeometryold.m2", }, { fileId = "2198512", - value = "invnoart.m2", text = "invnoart.m2", + value = "invnoart.m2", }, }, - value = "inventoryitems", text = "inventoryitems", + value = "inventoryitems", }, { children = { { fileId = "136255", - value = "forcedbackpackitem.m2", text = "forcedbackpackitem.m2", + value = "forcedbackpackitem.m2", }, }, - value = "itemanimations", text = "itemanimations", + value = "itemanimations", }, { children = { { fileId = "136432", - value = "minimaparrow.m2", text = "minimaparrow.m2", + value = "minimaparrow.m2", }, { fileId = "136433", - value = "minimapcompassring.m2", text = "minimapcompassring.m2", + value = "minimapcompassring.m2", }, { children = { { fileId = "136436", - value = "minimapping.m2", text = "minimapping.m2", + value = "minimapping.m2", }, }, - value = "ping", text = "ping", + value = "ping", }, { fileId = "136444", - value = "rotating-minimaparrow.m2", text = "rotating-minimaparrow.m2", + value = "rotating-minimaparrow.m2", }, { fileId = "136447", - value = "rotating-minimapgrouparrow.m2", text = "rotating-minimapgrouparrow.m2", + value = "rotating-minimapgrouparrow.m2", }, }, - value = "minimap", text = "minimap", + value = "minimap", }, { children = { { fileId = "1068226", - value = "6hu_title_garrison.m2", text = "6hu_title_garrison.m2", + value = "6hu_title_garrison.m2", }, { fileId = "1068263", - value = "6ih_title_blackhand.m2", text = "6ih_title_blackhand.m2", + value = "6ih_title_blackhand.m2", }, { fileId = "1068262", - value = "6ih_title_guldan.m2", text = "6ih_title_guldan.m2", + value = "6ih_title_guldan.m2", }, { fileId = "1068259", - value = "6ih_title_kargath.m2", text = "6ih_title_kargath.m2", + value = "6ih_title_kargath.m2", }, { fileId = "1068258", - value = "6ih_title_kilrogg.m2", text = "6ih_title_kilrogg.m2", + value = "6ih_title_kilrogg.m2", }, { fileId = "1068253", - value = "6ih_title_nerzhul.m2", text = "6ih_title_nerzhul.m2", + value = "6ih_title_nerzhul.m2", }, { fileId = "1068227", - value = "6or_title_garrison.m2", text = "6or_title_garrison.m2", + value = "6or_title_garrison.m2", }, }, - value = "titlecards", text = "titlecards", + value = "titlecards", }, { children = { { fileId = "237714", - value = "vehicle_target_01.m2", text = "vehicle_target_01.m2", + value = "vehicle_target_01.m2", }, { fileId = "237715", - value = "vehicle_target_02.m2", text = "vehicle_target_02.m2", + value = "vehicle_target_02.m2", }, }, - value = "vehicles", text = "vehicles", + value = "vehicles", }, }, - value = "interface", text = "interface", + value = "interface", }, { children = { @@ -7647,37 +7653,37 @@ WeakAuras.ModelPaths = { children = { { fileId = "137238", - value = "arrowacidflight_01.m2", text = "arrowacidflight_01.m2", + value = "arrowacidflight_01.m2", }, { fileId = "137239", - value = "arrowfireflight_01.m2", text = "arrowfireflight_01.m2", + value = "arrowfireflight_01.m2", }, { fileId = "137240", - value = "arrowflight_01.m2", text = "arrowflight_01.m2", + value = "arrowflight_01.m2", }, { fileId = "137241", - value = "arrowiceflight_01.m2", text = "arrowiceflight_01.m2", + value = "arrowiceflight_01.m2", }, { fileId = "137242", - value = "arrowmagicflight_01.m2", text = "arrowmagicflight_01.m2", + value = "arrowmagicflight_01.m2", }, { fileId = "137245", - value = "bulletflight_01.m2", text = "bulletflight_01.m2", + value = "bulletflight_01.m2", }, }, - value = "ammo", text = "ammo", + value = "ammo", }, { children = { @@ -7685,25996 +7691,26001 @@ WeakAuras.ModelPaths = { children = { { fileId = "137247", - value = "battlestandard_alliance_a_01.m2", text = "battlestandard_alliance_a_01.m2", + value = "battlestandard_alliance_a_01.m2", }, { fileId = "2198613", - value = "battlestandard_stormpike_a_01.m2", text = "battlestandard_stormpike_a_01.m2", + value = "battlestandard_stormpike_a_01.m2", }, }, - value = "battlestandard_alliance_a_01", text = "battlestandard_alliance_a_01", + value = "battlestandard_alliance_a_01", }, { children = { { fileId = "2199527", - value = "battlestandard_frostwolf_a_01.m2", text = "battlestandard_frostwolf_a_01.m2", + value = "battlestandard_frostwolf_a_01.m2", }, { fileId = "137253", - value = "battlestandard_horde_a_01.m2", text = "battlestandard_horde_a_01.m2", + value = "battlestandard_horde_a_01.m2", }, }, - value = "battlestandard_horde_a_01", text = "battlestandard_horde_a_01", + value = "battlestandard_horde_a_01", }, }, - value = "battlestandards", text = "battlestandards", + value = "battlestandards", }, { children = { { fileId = "137443", - value = "helm_blindfold_a_01_bef.m2", text = "helm_blindfold_a_01_bef.m2", + value = "helm_blindfold_a_01_bef.m2", }, { fileId = "137444", - value = "helm_blindfold_a_01_bem.m2", text = "helm_blindfold_a_01_bem.m2", + value = "helm_blindfold_a_01_bem.m2", }, { fileId = "137445", - value = "helm_blindfold_a_01_drf.m2", text = "helm_blindfold_a_01_drf.m2", + value = "helm_blindfold_a_01_drf.m2", }, { fileId = "137446", - value = "helm_blindfold_a_01_drm.m2", text = "helm_blindfold_a_01_drm.m2", + value = "helm_blindfold_a_01_drm.m2", }, { fileId = "137447", - value = "helm_blindfold_a_01_dwf.m2", text = "helm_blindfold_a_01_dwf.m2", + value = "helm_blindfold_a_01_dwf.m2", }, { fileId = "137448", - value = "helm_blindfold_a_01_dwm.m2", text = "helm_blindfold_a_01_dwm.m2", + value = "helm_blindfold_a_01_dwm.m2", }, { fileId = "137449", - value = "helm_blindfold_a_01_gnf.m2", text = "helm_blindfold_a_01_gnf.m2", + value = "helm_blindfold_a_01_gnf.m2", }, { fileId = "137450", - value = "helm_blindfold_a_01_gnm.m2", text = "helm_blindfold_a_01_gnm.m2", + value = "helm_blindfold_a_01_gnm.m2", }, { fileId = "137451", - value = "helm_blindfold_a_01_gof.m2", text = "helm_blindfold_a_01_gof.m2", + value = "helm_blindfold_a_01_gof.m2", }, { fileId = "137452", - value = "helm_blindfold_a_01_gom.m2", text = "helm_blindfold_a_01_gom.m2", + value = "helm_blindfold_a_01_gom.m2", }, { fileId = "137453", - value = "helm_blindfold_a_01_huf.m2", text = "helm_blindfold_a_01_huf.m2", + value = "helm_blindfold_a_01_huf.m2", }, { fileId = "137454", - value = "helm_blindfold_a_01_hum.m2", text = "helm_blindfold_a_01_hum.m2", + value = "helm_blindfold_a_01_hum.m2", }, { fileId = "137455", - value = "helm_blindfold_a_01_nif.m2", text = "helm_blindfold_a_01_nif.m2", + value = "helm_blindfold_a_01_nif.m2", }, { fileId = "137456", - value = "helm_blindfold_a_01_nim.m2", text = "helm_blindfold_a_01_nim.m2", + value = "helm_blindfold_a_01_nim.m2", }, { fileId = "137457", - value = "helm_blindfold_a_01_orf.m2", text = "helm_blindfold_a_01_orf.m2", + value = "helm_blindfold_a_01_orf.m2", }, { fileId = "137458", - value = "helm_blindfold_a_01_orm.m2", text = "helm_blindfold_a_01_orm.m2", + value = "helm_blindfold_a_01_orm.m2", }, { fileId = "137459", - value = "helm_blindfold_a_01_scf.m2", text = "helm_blindfold_a_01_scf.m2", + value = "helm_blindfold_a_01_scf.m2", }, { fileId = "137460", - value = "helm_blindfold_a_01_scm.m2", text = "helm_blindfold_a_01_scm.m2", + value = "helm_blindfold_a_01_scm.m2", }, { fileId = "137461", - value = "helm_blindfold_a_01_taf.m2", text = "helm_blindfold_a_01_taf.m2", + value = "helm_blindfold_a_01_taf.m2", }, { fileId = "137462", - value = "helm_blindfold_a_01_tam.m2", text = "helm_blindfold_a_01_tam.m2", + value = "helm_blindfold_a_01_tam.m2", }, { fileId = "137463", - value = "helm_blindfold_a_01_trf.m2", text = "helm_blindfold_a_01_trf.m2", + value = "helm_blindfold_a_01_trf.m2", }, { fileId = "137464", - value = "helm_blindfold_a_01_trm.m2", text = "helm_blindfold_a_01_trm.m2", + value = "helm_blindfold_a_01_trm.m2", }, { fileId = "137467", - value = "helm_circlet_a_01_bef.m2", text = "helm_circlet_a_01_bef.m2", + value = "helm_circlet_a_01_bef.m2", }, { fileId = "137468", - value = "helm_circlet_a_01_bem.m2", text = "helm_circlet_a_01_bem.m2", + value = "helm_circlet_a_01_bem.m2", }, { fileId = "137469", - value = "helm_circlet_a_01_drf.m2", text = "helm_circlet_a_01_drf.m2", + value = "helm_circlet_a_01_drf.m2", }, { fileId = "137470", - value = "helm_circlet_a_01_drm.m2", text = "helm_circlet_a_01_drm.m2", + value = "helm_circlet_a_01_drm.m2", }, { fileId = "137471", - value = "helm_circlet_a_01_dwf.m2", text = "helm_circlet_a_01_dwf.m2", + value = "helm_circlet_a_01_dwf.m2", }, { fileId = "137472", - value = "helm_circlet_a_01_dwm.m2", text = "helm_circlet_a_01_dwm.m2", + value = "helm_circlet_a_01_dwm.m2", }, { fileId = "137473", - value = "helm_circlet_a_01_gnf.m2", text = "helm_circlet_a_01_gnf.m2", + value = "helm_circlet_a_01_gnf.m2", }, { fileId = "137474", - value = "helm_circlet_a_01_gnm.m2", text = "helm_circlet_a_01_gnm.m2", + value = "helm_circlet_a_01_gnm.m2", }, { fileId = "137475", - value = "helm_circlet_a_01_gof.m2", text = "helm_circlet_a_01_gof.m2", + value = "helm_circlet_a_01_gof.m2", }, { fileId = "137476", - value = "helm_circlet_a_01_gom.m2", text = "helm_circlet_a_01_gom.m2", + value = "helm_circlet_a_01_gom.m2", }, { fileId = "137477", - value = "helm_circlet_a_01_huf.m2", text = "helm_circlet_a_01_huf.m2", + value = "helm_circlet_a_01_huf.m2", }, { fileId = "137478", - value = "helm_circlet_a_01_hum.m2", text = "helm_circlet_a_01_hum.m2", + value = "helm_circlet_a_01_hum.m2", }, { fileId = "137479", - value = "helm_circlet_a_01_nif.m2", text = "helm_circlet_a_01_nif.m2", + value = "helm_circlet_a_01_nif.m2", }, { fileId = "137480", - value = "helm_circlet_a_01_nim.m2", text = "helm_circlet_a_01_nim.m2", + value = "helm_circlet_a_01_nim.m2", }, { fileId = "137481", - value = "helm_circlet_a_01_orf.m2", text = "helm_circlet_a_01_orf.m2", + value = "helm_circlet_a_01_orf.m2", }, { fileId = "137482", - value = "helm_circlet_a_01_orm.m2", text = "helm_circlet_a_01_orm.m2", + value = "helm_circlet_a_01_orm.m2", }, { fileId = "137483", - value = "helm_circlet_a_01_scf.m2", text = "helm_circlet_a_01_scf.m2", + value = "helm_circlet_a_01_scf.m2", }, { fileId = "137484", - value = "helm_circlet_a_01_scm.m2", text = "helm_circlet_a_01_scm.m2", + value = "helm_circlet_a_01_scm.m2", }, { fileId = "137485", - value = "helm_circlet_a_01_taf.m2", text = "helm_circlet_a_01_taf.m2", + value = "helm_circlet_a_01_taf.m2", }, { fileId = "137486", - value = "helm_circlet_a_01_tam.m2", text = "helm_circlet_a_01_tam.m2", + value = "helm_circlet_a_01_tam.m2", }, { fileId = "137487", - value = "helm_circlet_a_01_trf.m2", text = "helm_circlet_a_01_trf.m2", + value = "helm_circlet_a_01_trf.m2", }, { fileId = "137488", - value = "helm_circlet_a_01_trm.m2", text = "helm_circlet_a_01_trm.m2", + value = "helm_circlet_a_01_trm.m2", }, { fileId = "137491", - value = "helm_circlet_b_01_bef.m2", text = "helm_circlet_b_01_bef.m2", + value = "helm_circlet_b_01_bef.m2", }, { fileId = "137492", - value = "helm_circlet_b_01_bem.m2", text = "helm_circlet_b_01_bem.m2", + value = "helm_circlet_b_01_bem.m2", }, { fileId = "137493", - value = "helm_circlet_b_01_drf.m2", text = "helm_circlet_b_01_drf.m2", + value = "helm_circlet_b_01_drf.m2", }, { fileId = "137494", - value = "helm_circlet_b_01_drm.m2", text = "helm_circlet_b_01_drm.m2", + value = "helm_circlet_b_01_drm.m2", }, { fileId = "137495", - value = "helm_circlet_b_01_dwf.m2", text = "helm_circlet_b_01_dwf.m2", + value = "helm_circlet_b_01_dwf.m2", }, { fileId = "137496", - value = "helm_circlet_b_01_dwm.m2", text = "helm_circlet_b_01_dwm.m2", + value = "helm_circlet_b_01_dwm.m2", }, { fileId = "137497", - value = "helm_circlet_b_01_gnf.m2", text = "helm_circlet_b_01_gnf.m2", + value = "helm_circlet_b_01_gnf.m2", }, { fileId = "137498", - value = "helm_circlet_b_01_gnm.m2", text = "helm_circlet_b_01_gnm.m2", + value = "helm_circlet_b_01_gnm.m2", }, { fileId = "137499", - value = "helm_circlet_b_01_gof.m2", text = "helm_circlet_b_01_gof.m2", + value = "helm_circlet_b_01_gof.m2", }, { fileId = "137500", - value = "helm_circlet_b_01_gom.m2", text = "helm_circlet_b_01_gom.m2", + value = "helm_circlet_b_01_gom.m2", }, { fileId = "137501", - value = "helm_circlet_b_01_huf.m2", text = "helm_circlet_b_01_huf.m2", + value = "helm_circlet_b_01_huf.m2", }, { fileId = "137502", - value = "helm_circlet_b_01_hum.m2", text = "helm_circlet_b_01_hum.m2", + value = "helm_circlet_b_01_hum.m2", }, { fileId = "137503", - value = "helm_circlet_b_01_nif.m2", text = "helm_circlet_b_01_nif.m2", + value = "helm_circlet_b_01_nif.m2", }, { fileId = "137504", - value = "helm_circlet_b_01_nim.m2", text = "helm_circlet_b_01_nim.m2", + value = "helm_circlet_b_01_nim.m2", }, { fileId = "137505", - value = "helm_circlet_b_01_orf.m2", text = "helm_circlet_b_01_orf.m2", + value = "helm_circlet_b_01_orf.m2", }, { fileId = "137506", - value = "helm_circlet_b_01_orm.m2", text = "helm_circlet_b_01_orm.m2", + value = "helm_circlet_b_01_orm.m2", }, { fileId = "137507", - value = "helm_circlet_b_01_scf.m2", text = "helm_circlet_b_01_scf.m2", + value = "helm_circlet_b_01_scf.m2", }, { fileId = "137508", - value = "helm_circlet_b_01_scm.m2", text = "helm_circlet_b_01_scm.m2", + value = "helm_circlet_b_01_scm.m2", }, { fileId = "137509", - value = "helm_circlet_b_01_taf.m2", text = "helm_circlet_b_01_taf.m2", + value = "helm_circlet_b_01_taf.m2", }, { fileId = "137510", - value = "helm_circlet_b_01_tam.m2", text = "helm_circlet_b_01_tam.m2", + value = "helm_circlet_b_01_tam.m2", }, { fileId = "137511", - value = "helm_circlet_b_01_trf.m2", text = "helm_circlet_b_01_trf.m2", + value = "helm_circlet_b_01_trf.m2", }, { fileId = "137512", - value = "helm_circlet_b_01_trm.m2", text = "helm_circlet_b_01_trm.m2", + value = "helm_circlet_b_01_trm.m2", }, { fileId = "137520", - value = "helm_circlet_b_02_bef.m2", text = "helm_circlet_b_02_bef.m2", + value = "helm_circlet_b_02_bef.m2", }, { fileId = "137521", - value = "helm_circlet_b_02_bem.m2", text = "helm_circlet_b_02_bem.m2", + value = "helm_circlet_b_02_bem.m2", }, { fileId = "137522", - value = "helm_circlet_b_02_drf.m2", text = "helm_circlet_b_02_drf.m2", + value = "helm_circlet_b_02_drf.m2", }, { fileId = "137523", - value = "helm_circlet_b_02_drm.m2", text = "helm_circlet_b_02_drm.m2", + value = "helm_circlet_b_02_drm.m2", }, { fileId = "137524", - value = "helm_circlet_b_02_dwf.m2", text = "helm_circlet_b_02_dwf.m2", + value = "helm_circlet_b_02_dwf.m2", }, { fileId = "137525", - value = "helm_circlet_b_02_dwm.m2", text = "helm_circlet_b_02_dwm.m2", + value = "helm_circlet_b_02_dwm.m2", }, { fileId = "137526", - value = "helm_circlet_b_02_gnf.m2", text = "helm_circlet_b_02_gnf.m2", + value = "helm_circlet_b_02_gnf.m2", }, { fileId = "137527", - value = "helm_circlet_b_02_gnm.m2", text = "helm_circlet_b_02_gnm.m2", + value = "helm_circlet_b_02_gnm.m2", }, { fileId = "137528", - value = "helm_circlet_b_02_gof.m2", text = "helm_circlet_b_02_gof.m2", + value = "helm_circlet_b_02_gof.m2", }, { fileId = "137529", - value = "helm_circlet_b_02_gom.m2", text = "helm_circlet_b_02_gom.m2", + value = "helm_circlet_b_02_gom.m2", }, { fileId = "137530", - value = "helm_circlet_b_02_huf.m2", text = "helm_circlet_b_02_huf.m2", + value = "helm_circlet_b_02_huf.m2", }, { fileId = "137531", - value = "helm_circlet_b_02_hum.m2", text = "helm_circlet_b_02_hum.m2", + value = "helm_circlet_b_02_hum.m2", }, { fileId = "137532", - value = "helm_circlet_b_02_nif.m2", text = "helm_circlet_b_02_nif.m2", + value = "helm_circlet_b_02_nif.m2", }, { fileId = "137533", - value = "helm_circlet_b_02_nim.m2", text = "helm_circlet_b_02_nim.m2", + value = "helm_circlet_b_02_nim.m2", }, { fileId = "137534", - value = "helm_circlet_b_02_orf.m2", text = "helm_circlet_b_02_orf.m2", + value = "helm_circlet_b_02_orf.m2", }, { fileId = "137535", - value = "helm_circlet_b_02_orm.m2", text = "helm_circlet_b_02_orm.m2", + value = "helm_circlet_b_02_orm.m2", }, { fileId = "137536", - value = "helm_circlet_b_02_scf.m2", text = "helm_circlet_b_02_scf.m2", + value = "helm_circlet_b_02_scf.m2", }, { fileId = "137537", - value = "helm_circlet_b_02_scm.m2", text = "helm_circlet_b_02_scm.m2", + value = "helm_circlet_b_02_scm.m2", }, { fileId = "137538", - value = "helm_circlet_b_02_taf.m2", text = "helm_circlet_b_02_taf.m2", + value = "helm_circlet_b_02_taf.m2", }, { fileId = "137539", - value = "helm_circlet_b_02_tam.m2", text = "helm_circlet_b_02_tam.m2", + value = "helm_circlet_b_02_tam.m2", }, { fileId = "137540", - value = "helm_circlet_b_02_trf.m2", text = "helm_circlet_b_02_trf.m2", + value = "helm_circlet_b_02_trf.m2", }, { fileId = "137541", - value = "helm_circlet_b_02_trm.m2", text = "helm_circlet_b_02_trm.m2", + value = "helm_circlet_b_02_trm.m2", }, { fileId = "137548", - value = "helm_circlet_c_01_bef.m2", text = "helm_circlet_c_01_bef.m2", + value = "helm_circlet_c_01_bef.m2", }, { fileId = "137549", - value = "helm_circlet_c_01_bem.m2", text = "helm_circlet_c_01_bem.m2", + value = "helm_circlet_c_01_bem.m2", }, { fileId = "137550", - value = "helm_circlet_c_01_drf.m2", text = "helm_circlet_c_01_drf.m2", + value = "helm_circlet_c_01_drf.m2", }, { fileId = "137551", - value = "helm_circlet_c_01_drm.m2", text = "helm_circlet_c_01_drm.m2", + value = "helm_circlet_c_01_drm.m2", }, { fileId = "137552", - value = "helm_circlet_c_01_dwf.m2", text = "helm_circlet_c_01_dwf.m2", + value = "helm_circlet_c_01_dwf.m2", }, { fileId = "137553", - value = "helm_circlet_c_01_dwm.m2", text = "helm_circlet_c_01_dwm.m2", + value = "helm_circlet_c_01_dwm.m2", }, { fileId = "137554", - value = "helm_circlet_c_01_gnf.m2", text = "helm_circlet_c_01_gnf.m2", + value = "helm_circlet_c_01_gnf.m2", }, { fileId = "137555", - value = "helm_circlet_c_01_gnm.m2", text = "helm_circlet_c_01_gnm.m2", + value = "helm_circlet_c_01_gnm.m2", }, { fileId = "137556", - value = "helm_circlet_c_01_gof.m2", text = "helm_circlet_c_01_gof.m2", + value = "helm_circlet_c_01_gof.m2", }, { fileId = "137557", - value = "helm_circlet_c_01_gom.m2", text = "helm_circlet_c_01_gom.m2", + value = "helm_circlet_c_01_gom.m2", }, { fileId = "137558", - value = "helm_circlet_c_01_huf.m2", text = "helm_circlet_c_01_huf.m2", + value = "helm_circlet_c_01_huf.m2", }, { fileId = "137559", - value = "helm_circlet_c_01_hum.m2", text = "helm_circlet_c_01_hum.m2", + value = "helm_circlet_c_01_hum.m2", }, { fileId = "137560", - value = "helm_circlet_c_01_nif.m2", text = "helm_circlet_c_01_nif.m2", + value = "helm_circlet_c_01_nif.m2", }, { fileId = "137561", - value = "helm_circlet_c_01_nim.m2", text = "helm_circlet_c_01_nim.m2", + value = "helm_circlet_c_01_nim.m2", }, { fileId = "137562", - value = "helm_circlet_c_01_orf.m2", text = "helm_circlet_c_01_orf.m2", + value = "helm_circlet_c_01_orf.m2", }, { fileId = "137563", - value = "helm_circlet_c_01_orm.m2", text = "helm_circlet_c_01_orm.m2", + value = "helm_circlet_c_01_orm.m2", }, { fileId = "137564", - value = "helm_circlet_c_01_scf.m2", text = "helm_circlet_c_01_scf.m2", + value = "helm_circlet_c_01_scf.m2", }, { fileId = "137565", - value = "helm_circlet_c_01_scm.m2", text = "helm_circlet_c_01_scm.m2", + value = "helm_circlet_c_01_scm.m2", }, { fileId = "137566", - value = "helm_circlet_c_01_taf.m2", text = "helm_circlet_c_01_taf.m2", + value = "helm_circlet_c_01_taf.m2", }, { fileId = "137567", - value = "helm_circlet_c_01_tam.m2", text = "helm_circlet_c_01_tam.m2", + value = "helm_circlet_c_01_tam.m2", }, { fileId = "137568", - value = "helm_circlet_c_01_trf.m2", text = "helm_circlet_c_01_trf.m2", + value = "helm_circlet_c_01_trf.m2", }, { fileId = "137569", - value = "helm_circlet_c_01_trm.m2", text = "helm_circlet_c_01_trm.m2", + value = "helm_circlet_c_01_trm.m2", }, { fileId = "137573", - value = "helm_cloth_a_01_bef.m2", text = "helm_cloth_a_01_bef.m2", + value = "helm_cloth_a_01_bef.m2", }, { fileId = "137574", - value = "helm_cloth_a_01_bem.m2", text = "helm_cloth_a_01_bem.m2", + value = "helm_cloth_a_01_bem.m2", }, { fileId = "137575", - value = "helm_cloth_a_01_drf.m2", text = "helm_cloth_a_01_drf.m2", + value = "helm_cloth_a_01_drf.m2", }, { fileId = "137576", - value = "helm_cloth_a_01_drm.m2", text = "helm_cloth_a_01_drm.m2", + value = "helm_cloth_a_01_drm.m2", }, { fileId = "137577", - value = "helm_cloth_a_01_dwf.m2", text = "helm_cloth_a_01_dwf.m2", + value = "helm_cloth_a_01_dwf.m2", }, { fileId = "137578", - value = "helm_cloth_a_01_dwm.m2", text = "helm_cloth_a_01_dwm.m2", + value = "helm_cloth_a_01_dwm.m2", }, { fileId = "137579", - value = "helm_cloth_a_01_gnf.m2", text = "helm_cloth_a_01_gnf.m2", + value = "helm_cloth_a_01_gnf.m2", }, { fileId = "137580", - value = "helm_cloth_a_01_gnm.m2", text = "helm_cloth_a_01_gnm.m2", + value = "helm_cloth_a_01_gnm.m2", }, { fileId = "137581", - value = "helm_cloth_a_01_gof.m2", text = "helm_cloth_a_01_gof.m2", + value = "helm_cloth_a_01_gof.m2", }, { fileId = "137582", - value = "helm_cloth_a_01_gom.m2", text = "helm_cloth_a_01_gom.m2", + value = "helm_cloth_a_01_gom.m2", }, { fileId = "137583", - value = "helm_cloth_a_01_huf.m2", text = "helm_cloth_a_01_huf.m2", + value = "helm_cloth_a_01_huf.m2", }, { fileId = "137584", - value = "helm_cloth_a_01_hum.m2", text = "helm_cloth_a_01_hum.m2", + value = "helm_cloth_a_01_hum.m2", }, { fileId = "137585", - value = "helm_cloth_a_01_nif.m2", text = "helm_cloth_a_01_nif.m2", + value = "helm_cloth_a_01_nif.m2", }, { fileId = "137586", - value = "helm_cloth_a_01_nim.m2", text = "helm_cloth_a_01_nim.m2", + value = "helm_cloth_a_01_nim.m2", }, { fileId = "137587", - value = "helm_cloth_a_01_orf.m2", text = "helm_cloth_a_01_orf.m2", + value = "helm_cloth_a_01_orf.m2", }, { fileId = "137588", - value = "helm_cloth_a_01_orm.m2", text = "helm_cloth_a_01_orm.m2", + value = "helm_cloth_a_01_orm.m2", }, { fileId = "137589", - value = "helm_cloth_a_01_scf.m2", text = "helm_cloth_a_01_scf.m2", + value = "helm_cloth_a_01_scf.m2", }, { fileId = "137590", - value = "helm_cloth_a_01_scm.m2", text = "helm_cloth_a_01_scm.m2", + value = "helm_cloth_a_01_scm.m2", }, { fileId = "137591", - value = "helm_cloth_a_01_taf.m2", text = "helm_cloth_a_01_taf.m2", + value = "helm_cloth_a_01_taf.m2", }, { fileId = "137592", - value = "helm_cloth_a_01_tam.m2", text = "helm_cloth_a_01_tam.m2", + value = "helm_cloth_a_01_tam.m2", }, { fileId = "137593", - value = "helm_cloth_a_01_trf.m2", text = "helm_cloth_a_01_trf.m2", + value = "helm_cloth_a_01_trf.m2", }, { fileId = "137594", - value = "helm_cloth_a_01_trm.m2", text = "helm_cloth_a_01_trm.m2", + value = "helm_cloth_a_01_trm.m2", }, { fileId = "137625", - value = "helm_cloth_a_02_bef.m2", text = "helm_cloth_a_02_bef.m2", + value = "helm_cloth_a_02_bef.m2", }, { fileId = "137626", - value = "helm_cloth_a_02_bem.m2", text = "helm_cloth_a_02_bem.m2", + value = "helm_cloth_a_02_bem.m2", }, { fileId = "137627", - value = "helm_cloth_a_02_drf.m2", text = "helm_cloth_a_02_drf.m2", + value = "helm_cloth_a_02_drf.m2", }, { fileId = "137628", - value = "helm_cloth_a_02_drm.m2", text = "helm_cloth_a_02_drm.m2", + value = "helm_cloth_a_02_drm.m2", }, { fileId = "137629", - value = "helm_cloth_a_02_dwf.m2", text = "helm_cloth_a_02_dwf.m2", + value = "helm_cloth_a_02_dwf.m2", }, { fileId = "137630", - value = "helm_cloth_a_02_dwm.m2", text = "helm_cloth_a_02_dwm.m2", + value = "helm_cloth_a_02_dwm.m2", }, { fileId = "137631", - value = "helm_cloth_a_02_gnf.m2", text = "helm_cloth_a_02_gnf.m2", + value = "helm_cloth_a_02_gnf.m2", }, { fileId = "137632", - value = "helm_cloth_a_02_gnm.m2", text = "helm_cloth_a_02_gnm.m2", + value = "helm_cloth_a_02_gnm.m2", }, { fileId = "137633", - value = "helm_cloth_a_02_gof.m2", text = "helm_cloth_a_02_gof.m2", + value = "helm_cloth_a_02_gof.m2", }, { fileId = "137634", - value = "helm_cloth_a_02_gom.m2", text = "helm_cloth_a_02_gom.m2", + value = "helm_cloth_a_02_gom.m2", }, { fileId = "137635", - value = "helm_cloth_a_02_huf.m2", text = "helm_cloth_a_02_huf.m2", + value = "helm_cloth_a_02_huf.m2", }, { fileId = "137636", - value = "helm_cloth_a_02_hum.m2", text = "helm_cloth_a_02_hum.m2", + value = "helm_cloth_a_02_hum.m2", }, { fileId = "137637", - value = "helm_cloth_a_02_nif.m2", text = "helm_cloth_a_02_nif.m2", + value = "helm_cloth_a_02_nif.m2", }, { fileId = "137638", - value = "helm_cloth_a_02_nim.m2", text = "helm_cloth_a_02_nim.m2", + value = "helm_cloth_a_02_nim.m2", }, { fileId = "137639", - value = "helm_cloth_a_02_orf.m2", text = "helm_cloth_a_02_orf.m2", + value = "helm_cloth_a_02_orf.m2", }, { fileId = "137640", - value = "helm_cloth_a_02_orm.m2", text = "helm_cloth_a_02_orm.m2", + value = "helm_cloth_a_02_orm.m2", }, { fileId = "137641", - value = "helm_cloth_a_02_scf.m2", text = "helm_cloth_a_02_scf.m2", + value = "helm_cloth_a_02_scf.m2", }, { fileId = "137642", - value = "helm_cloth_a_02_scm.m2", text = "helm_cloth_a_02_scm.m2", + value = "helm_cloth_a_02_scm.m2", }, { fileId = "137643", - value = "helm_cloth_a_02_taf.m2", text = "helm_cloth_a_02_taf.m2", + value = "helm_cloth_a_02_taf.m2", }, { fileId = "137644", - value = "helm_cloth_a_02_tam.m2", text = "helm_cloth_a_02_tam.m2", + value = "helm_cloth_a_02_tam.m2", }, { fileId = "137645", - value = "helm_cloth_a_02_trf.m2", text = "helm_cloth_a_02_trf.m2", + value = "helm_cloth_a_02_trf.m2", }, { fileId = "137646", - value = "helm_cloth_a_02_trm.m2", text = "helm_cloth_a_02_trm.m2", + value = "helm_cloth_a_02_trm.m2", }, { fileId = "137647", - value = "helm_cloth_b_01pirate_bef.m2", text = "helm_cloth_b_01pirate_bef.m2", + value = "helm_cloth_b_01pirate_bef.m2", }, { fileId = "137648", - value = "helm_cloth_b_01pirate_bem.m2", text = "helm_cloth_b_01pirate_bem.m2", + value = "helm_cloth_b_01pirate_bem.m2", }, { fileId = "137649", - value = "helm_cloth_b_01pirate_drf.m2", text = "helm_cloth_b_01pirate_drf.m2", + value = "helm_cloth_b_01pirate_drf.m2", }, { fileId = "137650", - value = "helm_cloth_b_01pirate_drm.m2", text = "helm_cloth_b_01pirate_drm.m2", + value = "helm_cloth_b_01pirate_drm.m2", }, { fileId = "137651", - value = "helm_cloth_b_01pirate_dwf.m2", text = "helm_cloth_b_01pirate_dwf.m2", + value = "helm_cloth_b_01pirate_dwf.m2", }, { fileId = "137652", - value = "helm_cloth_b_01pirate_dwm.m2", text = "helm_cloth_b_01pirate_dwm.m2", + value = "helm_cloth_b_01pirate_dwm.m2", }, { fileId = "137653", - value = "helm_cloth_b_01pirate_gnf.m2", text = "helm_cloth_b_01pirate_gnf.m2", + value = "helm_cloth_b_01pirate_gnf.m2", }, { fileId = "137654", - value = "helm_cloth_b_01pirate_gnm.m2", text = "helm_cloth_b_01pirate_gnm.m2", + value = "helm_cloth_b_01pirate_gnm.m2", }, { fileId = "137655", - value = "helm_cloth_b_01pirate_gof.m2", text = "helm_cloth_b_01pirate_gof.m2", + value = "helm_cloth_b_01pirate_gof.m2", }, { fileId = "137656", - value = "helm_cloth_b_01pirate_gom.m2", text = "helm_cloth_b_01pirate_gom.m2", + value = "helm_cloth_b_01pirate_gom.m2", }, { fileId = "137657", - value = "helm_cloth_b_01pirate_huf.m2", text = "helm_cloth_b_01pirate_huf.m2", + value = "helm_cloth_b_01pirate_huf.m2", }, { fileId = "137658", - value = "helm_cloth_b_01pirate_hum.m2", text = "helm_cloth_b_01pirate_hum.m2", + value = "helm_cloth_b_01pirate_hum.m2", }, { fileId = "137659", - value = "helm_cloth_b_01pirate_nif.m2", text = "helm_cloth_b_01pirate_nif.m2", + value = "helm_cloth_b_01pirate_nif.m2", }, { fileId = "137660", - value = "helm_cloth_b_01pirate_nim.m2", text = "helm_cloth_b_01pirate_nim.m2", + value = "helm_cloth_b_01pirate_nim.m2", }, { fileId = "137661", - value = "helm_cloth_b_01pirate_orf.m2", text = "helm_cloth_b_01pirate_orf.m2", + value = "helm_cloth_b_01pirate_orf.m2", }, { fileId = "137662", - value = "helm_cloth_b_01pirate_orm.m2", text = "helm_cloth_b_01pirate_orm.m2", + value = "helm_cloth_b_01pirate_orm.m2", }, { fileId = "137663", - value = "helm_cloth_b_01pirate_scf.m2", text = "helm_cloth_b_01pirate_scf.m2", + value = "helm_cloth_b_01pirate_scf.m2", }, { fileId = "137664", - value = "helm_cloth_b_01pirate_scm.m2", text = "helm_cloth_b_01pirate_scm.m2", + value = "helm_cloth_b_01pirate_scm.m2", }, { fileId = "137665", - value = "helm_cloth_b_01pirate_taf.m2", text = "helm_cloth_b_01pirate_taf.m2", + value = "helm_cloth_b_01pirate_taf.m2", }, { fileId = "137666", - value = "helm_cloth_b_01pirate_tam.m2", text = "helm_cloth_b_01pirate_tam.m2", + value = "helm_cloth_b_01pirate_tam.m2", }, { fileId = "137667", - value = "helm_cloth_b_01pirate_trf.m2", text = "helm_cloth_b_01pirate_trf.m2", + value = "helm_cloth_b_01pirate_trf.m2", }, { fileId = "137668", - value = "helm_cloth_b_01pirate_trm.m2", text = "helm_cloth_b_01pirate_trm.m2", + value = "helm_cloth_b_01pirate_trm.m2", }, { fileId = "137672", - value = "helm_cloth_b_03admiral_bef.m2", text = "helm_cloth_b_03admiral_bef.m2", + value = "helm_cloth_b_03admiral_bef.m2", }, { fileId = "137673", - value = "helm_cloth_b_03admiral_bem.m2", text = "helm_cloth_b_03admiral_bem.m2", + value = "helm_cloth_b_03admiral_bem.m2", }, { fileId = "137674", - value = "helm_cloth_b_03admiral_drf.m2", text = "helm_cloth_b_03admiral_drf.m2", + value = "helm_cloth_b_03admiral_drf.m2", }, { fileId = "137675", - value = "helm_cloth_b_03admiral_drm.m2", text = "helm_cloth_b_03admiral_drm.m2", + value = "helm_cloth_b_03admiral_drm.m2", }, { fileId = "137676", - value = "helm_cloth_b_03admiral_dwf.m2", text = "helm_cloth_b_03admiral_dwf.m2", + value = "helm_cloth_b_03admiral_dwf.m2", }, { fileId = "137677", - value = "helm_cloth_b_03admiral_dwm.m2", text = "helm_cloth_b_03admiral_dwm.m2", + value = "helm_cloth_b_03admiral_dwm.m2", }, { fileId = "137678", - value = "helm_cloth_b_03admiral_gnf.m2", text = "helm_cloth_b_03admiral_gnf.m2", + value = "helm_cloth_b_03admiral_gnf.m2", }, { fileId = "137679", - value = "helm_cloth_b_03admiral_gnm.m2", text = "helm_cloth_b_03admiral_gnm.m2", + value = "helm_cloth_b_03admiral_gnm.m2", }, { fileId = "137680", - value = "helm_cloth_b_03admiral_gof.m2", text = "helm_cloth_b_03admiral_gof.m2", + value = "helm_cloth_b_03admiral_gof.m2", }, { fileId = "137681", - value = "helm_cloth_b_03admiral_gom.m2", text = "helm_cloth_b_03admiral_gom.m2", + value = "helm_cloth_b_03admiral_gom.m2", }, { fileId = "137682", - value = "helm_cloth_b_03admiral_huf.m2", text = "helm_cloth_b_03admiral_huf.m2", + value = "helm_cloth_b_03admiral_huf.m2", }, { fileId = "137683", - value = "helm_cloth_b_03admiral_hum.m2", text = "helm_cloth_b_03admiral_hum.m2", + value = "helm_cloth_b_03admiral_hum.m2", }, { fileId = "137684", - value = "helm_cloth_b_03admiral_nif.m2", text = "helm_cloth_b_03admiral_nif.m2", + value = "helm_cloth_b_03admiral_nif.m2", }, { fileId = "137685", - value = "helm_cloth_b_03admiral_nim.m2", text = "helm_cloth_b_03admiral_nim.m2", + value = "helm_cloth_b_03admiral_nim.m2", }, { fileId = "137686", - value = "helm_cloth_b_03admiral_orf.m2", text = "helm_cloth_b_03admiral_orf.m2", + value = "helm_cloth_b_03admiral_orf.m2", }, { fileId = "137687", - value = "helm_cloth_b_03admiral_orm.m2", text = "helm_cloth_b_03admiral_orm.m2", + value = "helm_cloth_b_03admiral_orm.m2", }, { fileId = "137688", - value = "helm_cloth_b_03admiral_scf.m2", text = "helm_cloth_b_03admiral_scf.m2", + value = "helm_cloth_b_03admiral_scf.m2", }, { fileId = "137689", - value = "helm_cloth_b_03admiral_scm.m2", text = "helm_cloth_b_03admiral_scm.m2", + value = "helm_cloth_b_03admiral_scm.m2", }, { fileId = "137690", - value = "helm_cloth_b_03admiral_taf.m2", text = "helm_cloth_b_03admiral_taf.m2", + value = "helm_cloth_b_03admiral_taf.m2", }, { fileId = "137691", - value = "helm_cloth_b_03admiral_tam.m2", text = "helm_cloth_b_03admiral_tam.m2", + value = "helm_cloth_b_03admiral_tam.m2", }, { fileId = "137692", - value = "helm_cloth_b_03admiral_trf.m2", text = "helm_cloth_b_03admiral_trf.m2", + value = "helm_cloth_b_03admiral_trf.m2", }, { fileId = "137693", - value = "helm_cloth_b_03admiral_trm.m2", text = "helm_cloth_b_03admiral_trm.m2", + value = "helm_cloth_b_03admiral_trm.m2", }, { fileId = "137696", - value = "helm_cloth_b_04widebrim_bef.m2", text = "helm_cloth_b_04widebrim_bef.m2", + value = "helm_cloth_b_04widebrim_bef.m2", }, { fileId = "137697", - value = "helm_cloth_b_04widebrim_bem.m2", text = "helm_cloth_b_04widebrim_bem.m2", + value = "helm_cloth_b_04widebrim_bem.m2", }, { fileId = "137698", - value = "helm_cloth_b_04widebrim_drf.m2", text = "helm_cloth_b_04widebrim_drf.m2", + value = "helm_cloth_b_04widebrim_drf.m2", }, { fileId = "137699", - value = "helm_cloth_b_04widebrim_drm.m2", text = "helm_cloth_b_04widebrim_drm.m2", + value = "helm_cloth_b_04widebrim_drm.m2", }, { fileId = "137700", - value = "helm_cloth_b_04widebrim_dwf.m2", text = "helm_cloth_b_04widebrim_dwf.m2", + value = "helm_cloth_b_04widebrim_dwf.m2", }, { fileId = "137701", - value = "helm_cloth_b_04widebrim_dwm.m2", text = "helm_cloth_b_04widebrim_dwm.m2", + value = "helm_cloth_b_04widebrim_dwm.m2", }, { fileId = "137702", - value = "helm_cloth_b_04widebrim_gnf.m2", text = "helm_cloth_b_04widebrim_gnf.m2", + value = "helm_cloth_b_04widebrim_gnf.m2", }, { fileId = "137703", - value = "helm_cloth_b_04widebrim_gnm.m2", text = "helm_cloth_b_04widebrim_gnm.m2", + value = "helm_cloth_b_04widebrim_gnm.m2", }, { fileId = "137704", - value = "helm_cloth_b_04widebrim_gof.m2", text = "helm_cloth_b_04widebrim_gof.m2", + value = "helm_cloth_b_04widebrim_gof.m2", }, { fileId = "137705", - value = "helm_cloth_b_04widebrim_gom.m2", text = "helm_cloth_b_04widebrim_gom.m2", + value = "helm_cloth_b_04widebrim_gom.m2", }, { fileId = "137706", - value = "helm_cloth_b_04widebrim_huf.m2", text = "helm_cloth_b_04widebrim_huf.m2", + value = "helm_cloth_b_04widebrim_huf.m2", }, { fileId = "137707", - value = "helm_cloth_b_04widebrim_hum.m2", text = "helm_cloth_b_04widebrim_hum.m2", + value = "helm_cloth_b_04widebrim_hum.m2", }, { fileId = "137708", - value = "helm_cloth_b_04widebrim_nif.m2", text = "helm_cloth_b_04widebrim_nif.m2", + value = "helm_cloth_b_04widebrim_nif.m2", }, { fileId = "137709", - value = "helm_cloth_b_04widebrim_nim.m2", text = "helm_cloth_b_04widebrim_nim.m2", + value = "helm_cloth_b_04widebrim_nim.m2", }, { fileId = "137710", - value = "helm_cloth_b_04widebrim_orf.m2", text = "helm_cloth_b_04widebrim_orf.m2", + value = "helm_cloth_b_04widebrim_orf.m2", }, { fileId = "137711", - value = "helm_cloth_b_04widebrim_orm.m2", text = "helm_cloth_b_04widebrim_orm.m2", + value = "helm_cloth_b_04widebrim_orm.m2", }, { fileId = "137712", - value = "helm_cloth_b_04widebrim_scf.m2", text = "helm_cloth_b_04widebrim_scf.m2", + value = "helm_cloth_b_04widebrim_scf.m2", }, { fileId = "137713", - value = "helm_cloth_b_04widebrim_scm.m2", text = "helm_cloth_b_04widebrim_scm.m2", + value = "helm_cloth_b_04widebrim_scm.m2", }, { fileId = "137714", - value = "helm_cloth_b_04widebrim_taf.m2", text = "helm_cloth_b_04widebrim_taf.m2", + value = "helm_cloth_b_04widebrim_taf.m2", }, { fileId = "137715", - value = "helm_cloth_b_04widebrim_tam.m2", text = "helm_cloth_b_04widebrim_tam.m2", + value = "helm_cloth_b_04widebrim_tam.m2", }, { fileId = "137716", - value = "helm_cloth_b_04widebrim_trf.m2", text = "helm_cloth_b_04widebrim_trf.m2", + value = "helm_cloth_b_04widebrim_trf.m2", }, { fileId = "137717", - value = "helm_cloth_b_04widebrim_trm.m2", text = "helm_cloth_b_04widebrim_trm.m2", + value = "helm_cloth_b_04widebrim_trm.m2", }, { fileId = "137726", - value = "helm_cloth_b_05_bef.m2", text = "helm_cloth_b_05_bef.m2", + value = "helm_cloth_b_05_bef.m2", }, { fileId = "137727", - value = "helm_cloth_b_05_bem.m2", text = "helm_cloth_b_05_bem.m2", + value = "helm_cloth_b_05_bem.m2", }, { fileId = "137728", - value = "helm_cloth_b_05_drf.m2", text = "helm_cloth_b_05_drf.m2", + value = "helm_cloth_b_05_drf.m2", }, { fileId = "137729", - value = "helm_cloth_b_05_drm.m2", text = "helm_cloth_b_05_drm.m2", + value = "helm_cloth_b_05_drm.m2", }, { fileId = "137730", - value = "helm_cloth_b_05_dwf.m2", text = "helm_cloth_b_05_dwf.m2", + value = "helm_cloth_b_05_dwf.m2", }, { fileId = "137731", - value = "helm_cloth_b_05_dwm.m2", text = "helm_cloth_b_05_dwm.m2", + value = "helm_cloth_b_05_dwm.m2", }, { fileId = "137732", - value = "helm_cloth_b_05_gnf.m2", text = "helm_cloth_b_05_gnf.m2", + value = "helm_cloth_b_05_gnf.m2", }, { fileId = "137733", - value = "helm_cloth_b_05_gnm.m2", text = "helm_cloth_b_05_gnm.m2", + value = "helm_cloth_b_05_gnm.m2", }, { fileId = "137734", - value = "helm_cloth_b_05_gof.m2", text = "helm_cloth_b_05_gof.m2", + value = "helm_cloth_b_05_gof.m2", }, { fileId = "137735", - value = "helm_cloth_b_05_gom.m2", text = "helm_cloth_b_05_gom.m2", + value = "helm_cloth_b_05_gom.m2", }, { fileId = "137736", - value = "helm_cloth_b_05_huf.m2", text = "helm_cloth_b_05_huf.m2", + value = "helm_cloth_b_05_huf.m2", }, { fileId = "137737", - value = "helm_cloth_b_05_hum.m2", text = "helm_cloth_b_05_hum.m2", + value = "helm_cloth_b_05_hum.m2", }, { fileId = "137738", - value = "helm_cloth_b_05_nif.m2", text = "helm_cloth_b_05_nif.m2", + value = "helm_cloth_b_05_nif.m2", }, { fileId = "137739", - value = "helm_cloth_b_05_nim.m2", text = "helm_cloth_b_05_nim.m2", + value = "helm_cloth_b_05_nim.m2", }, { fileId = "137740", - value = "helm_cloth_b_05_orf.m2", text = "helm_cloth_b_05_orf.m2", + value = "helm_cloth_b_05_orf.m2", }, { fileId = "137741", - value = "helm_cloth_b_05_orm.m2", text = "helm_cloth_b_05_orm.m2", + value = "helm_cloth_b_05_orm.m2", }, { fileId = "137742", - value = "helm_cloth_b_05_scf.m2", text = "helm_cloth_b_05_scf.m2", + value = "helm_cloth_b_05_scf.m2", }, { fileId = "137743", - value = "helm_cloth_b_05_scm.m2", text = "helm_cloth_b_05_scm.m2", + value = "helm_cloth_b_05_scm.m2", }, { fileId = "137744", - value = "helm_cloth_b_05_taf.m2", text = "helm_cloth_b_05_taf.m2", + value = "helm_cloth_b_05_taf.m2", }, { fileId = "137745", - value = "helm_cloth_b_05_tam.m2", text = "helm_cloth_b_05_tam.m2", + value = "helm_cloth_b_05_tam.m2", }, { fileId = "137746", - value = "helm_cloth_b_05_trf.m2", text = "helm_cloth_b_05_trf.m2", + value = "helm_cloth_b_05_trf.m2", }, { fileId = "137747", - value = "helm_cloth_b_05_trm.m2", text = "helm_cloth_b_05_trm.m2", + value = "helm_cloth_b_05_trm.m2", }, { fileId = "137751", - value = "helm_cloth_b_06_bef.m2", text = "helm_cloth_b_06_bef.m2", + value = "helm_cloth_b_06_bef.m2", }, { fileId = "137752", - value = "helm_cloth_b_06_bem.m2", text = "helm_cloth_b_06_bem.m2", + value = "helm_cloth_b_06_bem.m2", }, { fileId = "137753", - value = "helm_cloth_b_06_drf.m2", text = "helm_cloth_b_06_drf.m2", + value = "helm_cloth_b_06_drf.m2", }, { fileId = "137754", - value = "helm_cloth_b_06_drm.m2", text = "helm_cloth_b_06_drm.m2", + value = "helm_cloth_b_06_drm.m2", }, { fileId = "137755", - value = "helm_cloth_b_06_dwf.m2", text = "helm_cloth_b_06_dwf.m2", + value = "helm_cloth_b_06_dwf.m2", }, { fileId = "137756", - value = "helm_cloth_b_06_dwm.m2", text = "helm_cloth_b_06_dwm.m2", + value = "helm_cloth_b_06_dwm.m2", }, { fileId = "137757", - value = "helm_cloth_b_06_gnf.m2", text = "helm_cloth_b_06_gnf.m2", + value = "helm_cloth_b_06_gnf.m2", }, { fileId = "137758", - value = "helm_cloth_b_06_gnm.m2", text = "helm_cloth_b_06_gnm.m2", + value = "helm_cloth_b_06_gnm.m2", }, { fileId = "137759", - value = "helm_cloth_b_06_gof.m2", text = "helm_cloth_b_06_gof.m2", + value = "helm_cloth_b_06_gof.m2", }, { fileId = "137760", - value = "helm_cloth_b_06_gom.m2", text = "helm_cloth_b_06_gom.m2", + value = "helm_cloth_b_06_gom.m2", }, { fileId = "137761", - value = "helm_cloth_b_06_huf.m2", text = "helm_cloth_b_06_huf.m2", + value = "helm_cloth_b_06_huf.m2", }, { fileId = "137762", - value = "helm_cloth_b_06_hum.m2", text = "helm_cloth_b_06_hum.m2", + value = "helm_cloth_b_06_hum.m2", }, { fileId = "137763", - value = "helm_cloth_b_06_nif.m2", text = "helm_cloth_b_06_nif.m2", + value = "helm_cloth_b_06_nif.m2", }, { fileId = "137764", - value = "helm_cloth_b_06_nim.m2", text = "helm_cloth_b_06_nim.m2", + value = "helm_cloth_b_06_nim.m2", }, { fileId = "137765", - value = "helm_cloth_b_06_orf.m2", text = "helm_cloth_b_06_orf.m2", + value = "helm_cloth_b_06_orf.m2", }, { fileId = "137766", - value = "helm_cloth_b_06_orm.m2", text = "helm_cloth_b_06_orm.m2", + value = "helm_cloth_b_06_orm.m2", }, { fileId = "137767", - value = "helm_cloth_b_06_scf.m2", text = "helm_cloth_b_06_scf.m2", + value = "helm_cloth_b_06_scf.m2", }, { fileId = "137768", - value = "helm_cloth_b_06_scm.m2", text = "helm_cloth_b_06_scm.m2", + value = "helm_cloth_b_06_scm.m2", }, { fileId = "137769", - value = "helm_cloth_b_06_taf.m2", text = "helm_cloth_b_06_taf.m2", + value = "helm_cloth_b_06_taf.m2", }, { fileId = "137770", - value = "helm_cloth_b_06_tam.m2", text = "helm_cloth_b_06_tam.m2", + value = "helm_cloth_b_06_tam.m2", }, { fileId = "137771", - value = "helm_cloth_b_06_trf.m2", text = "helm_cloth_b_06_trf.m2", + value = "helm_cloth_b_06_trf.m2", }, { fileId = "137772", - value = "helm_cloth_b_06_trm.m2", text = "helm_cloth_b_06_trm.m2", + value = "helm_cloth_b_06_trm.m2", }, { fileId = "137782", - value = "helm_cloth_c_01mitre_bef.m2", text = "helm_cloth_c_01mitre_bef.m2", + value = "helm_cloth_c_01mitre_bef.m2", }, { fileId = "137783", - value = "helm_cloth_c_01mitre_bem.m2", text = "helm_cloth_c_01mitre_bem.m2", + value = "helm_cloth_c_01mitre_bem.m2", }, { fileId = "137784", - value = "helm_cloth_c_01mitre_drf.m2", text = "helm_cloth_c_01mitre_drf.m2", + value = "helm_cloth_c_01mitre_drf.m2", }, { fileId = "137785", - value = "helm_cloth_c_01mitre_drm.m2", text = "helm_cloth_c_01mitre_drm.m2", + value = "helm_cloth_c_01mitre_drm.m2", }, { fileId = "137786", - value = "helm_cloth_c_01mitre_dwf.m2", text = "helm_cloth_c_01mitre_dwf.m2", + value = "helm_cloth_c_01mitre_dwf.m2", }, { fileId = "137787", - value = "helm_cloth_c_01mitre_dwm.m2", text = "helm_cloth_c_01mitre_dwm.m2", + value = "helm_cloth_c_01mitre_dwm.m2", }, { fileId = "137788", - value = "helm_cloth_c_01mitre_gnf.m2", text = "helm_cloth_c_01mitre_gnf.m2", + value = "helm_cloth_c_01mitre_gnf.m2", }, { fileId = "137789", - value = "helm_cloth_c_01mitre_gnm.m2", text = "helm_cloth_c_01mitre_gnm.m2", + value = "helm_cloth_c_01mitre_gnm.m2", }, { fileId = "137790", - value = "helm_cloth_c_01mitre_gof.m2", text = "helm_cloth_c_01mitre_gof.m2", + value = "helm_cloth_c_01mitre_gof.m2", }, { fileId = "137791", - value = "helm_cloth_c_01mitre_gom.m2", text = "helm_cloth_c_01mitre_gom.m2", + value = "helm_cloth_c_01mitre_gom.m2", }, { fileId = "137792", - value = "helm_cloth_c_01mitre_huf.m2", text = "helm_cloth_c_01mitre_huf.m2", + value = "helm_cloth_c_01mitre_huf.m2", }, { fileId = "137793", - value = "helm_cloth_c_01mitre_hum.m2", text = "helm_cloth_c_01mitre_hum.m2", + value = "helm_cloth_c_01mitre_hum.m2", }, { fileId = "137794", - value = "helm_cloth_c_01mitre_nif.m2", text = "helm_cloth_c_01mitre_nif.m2", + value = "helm_cloth_c_01mitre_nif.m2", }, { fileId = "137795", - value = "helm_cloth_c_01mitre_nim.m2", text = "helm_cloth_c_01mitre_nim.m2", + value = "helm_cloth_c_01mitre_nim.m2", }, { fileId = "137796", - value = "helm_cloth_c_01mitre_orf.m2", text = "helm_cloth_c_01mitre_orf.m2", + value = "helm_cloth_c_01mitre_orf.m2", }, { fileId = "137797", - value = "helm_cloth_c_01mitre_orm.m2", text = "helm_cloth_c_01mitre_orm.m2", + value = "helm_cloth_c_01mitre_orm.m2", }, { fileId = "137798", - value = "helm_cloth_c_01mitre_scf.m2", text = "helm_cloth_c_01mitre_scf.m2", + value = "helm_cloth_c_01mitre_scf.m2", }, { fileId = "137799", - value = "helm_cloth_c_01mitre_scm.m2", text = "helm_cloth_c_01mitre_scm.m2", + value = "helm_cloth_c_01mitre_scm.m2", }, { fileId = "137800", - value = "helm_cloth_c_01mitre_taf.m2", text = "helm_cloth_c_01mitre_taf.m2", + value = "helm_cloth_c_01mitre_taf.m2", }, { fileId = "137801", - value = "helm_cloth_c_01mitre_tam.m2", text = "helm_cloth_c_01mitre_tam.m2", + value = "helm_cloth_c_01mitre_tam.m2", }, { fileId = "137802", - value = "helm_cloth_c_01mitre_trf.m2", text = "helm_cloth_c_01mitre_trf.m2", + value = "helm_cloth_c_01mitre_trf.m2", }, { fileId = "137803", - value = "helm_cloth_c_01mitre_trm.m2", text = "helm_cloth_c_01mitre_trm.m2", + value = "helm_cloth_c_01mitre_trm.m2", }, { fileId = "137805", - value = "helm_cloth_holiday_christmas_a_01_bef.m2", text = "helm_cloth_holiday_christmas_a_01_bef.m2", + value = "helm_cloth_holiday_christmas_a_01_bef.m2", }, { fileId = "137806", - value = "helm_cloth_holiday_christmas_a_01_bem.m2", text = "helm_cloth_holiday_christmas_a_01_bem.m2", + value = "helm_cloth_holiday_christmas_a_01_bem.m2", }, { fileId = "137807", - value = "helm_cloth_holiday_christmas_a_01_drf.m2", text = "helm_cloth_holiday_christmas_a_01_drf.m2", + value = "helm_cloth_holiday_christmas_a_01_drf.m2", }, { fileId = "137808", - value = "helm_cloth_holiday_christmas_a_01_drm.m2", text = "helm_cloth_holiday_christmas_a_01_drm.m2", + value = "helm_cloth_holiday_christmas_a_01_drm.m2", }, { fileId = "137809", - value = "helm_cloth_holiday_christmas_a_01_dwf.m2", text = "helm_cloth_holiday_christmas_a_01_dwf.m2", + value = "helm_cloth_holiday_christmas_a_01_dwf.m2", }, { fileId = "137810", - value = "helm_cloth_holiday_christmas_a_01_dwm.m2", text = "helm_cloth_holiday_christmas_a_01_dwm.m2", + value = "helm_cloth_holiday_christmas_a_01_dwm.m2", }, { fileId = "137811", - value = "helm_cloth_holiday_christmas_a_01_gnf.m2", text = "helm_cloth_holiday_christmas_a_01_gnf.m2", + value = "helm_cloth_holiday_christmas_a_01_gnf.m2", }, { fileId = "137812", - value = "helm_cloth_holiday_christmas_a_01_gnm.m2", text = "helm_cloth_holiday_christmas_a_01_gnm.m2", + value = "helm_cloth_holiday_christmas_a_01_gnm.m2", }, { fileId = "137813", - value = "helm_cloth_holiday_christmas_a_01_gof.m2", text = "helm_cloth_holiday_christmas_a_01_gof.m2", + value = "helm_cloth_holiday_christmas_a_01_gof.m2", }, { fileId = "137814", - value = "helm_cloth_holiday_christmas_a_01_gom.m2", text = "helm_cloth_holiday_christmas_a_01_gom.m2", + value = "helm_cloth_holiday_christmas_a_01_gom.m2", }, { fileId = "137815", - value = "helm_cloth_holiday_christmas_a_01_huf.m2", text = "helm_cloth_holiday_christmas_a_01_huf.m2", + value = "helm_cloth_holiday_christmas_a_01_huf.m2", }, { fileId = "137816", - value = "helm_cloth_holiday_christmas_a_01_hum.m2", text = "helm_cloth_holiday_christmas_a_01_hum.m2", + value = "helm_cloth_holiday_christmas_a_01_hum.m2", }, { fileId = "137817", - value = "helm_cloth_holiday_christmas_a_01_nif.m2", text = "helm_cloth_holiday_christmas_a_01_nif.m2", + value = "helm_cloth_holiday_christmas_a_01_nif.m2", }, { fileId = "137818", - value = "helm_cloth_holiday_christmas_a_01_nim.m2", text = "helm_cloth_holiday_christmas_a_01_nim.m2", + value = "helm_cloth_holiday_christmas_a_01_nim.m2", }, { fileId = "137819", - value = "helm_cloth_holiday_christmas_a_01_orf.m2", text = "helm_cloth_holiday_christmas_a_01_orf.m2", + value = "helm_cloth_holiday_christmas_a_01_orf.m2", }, { fileId = "137820", - value = "helm_cloth_holiday_christmas_a_01_orm.m2", text = "helm_cloth_holiday_christmas_a_01_orm.m2", + value = "helm_cloth_holiday_christmas_a_01_orm.m2", }, { fileId = "137821", - value = "helm_cloth_holiday_christmas_a_01_scf.m2", text = "helm_cloth_holiday_christmas_a_01_scf.m2", + value = "helm_cloth_holiday_christmas_a_01_scf.m2", }, { fileId = "137822", - value = "helm_cloth_holiday_christmas_a_01_scm.m2", text = "helm_cloth_holiday_christmas_a_01_scm.m2", + value = "helm_cloth_holiday_christmas_a_01_scm.m2", }, { fileId = "137823", - value = "helm_cloth_holiday_christmas_a_01_taf.m2", text = "helm_cloth_holiday_christmas_a_01_taf.m2", + value = "helm_cloth_holiday_christmas_a_01_taf.m2", }, { fileId = "137824", - value = "helm_cloth_holiday_christmas_a_01_tam.m2", text = "helm_cloth_holiday_christmas_a_01_tam.m2", + value = "helm_cloth_holiday_christmas_a_01_tam.m2", }, { fileId = "137825", - value = "helm_cloth_holiday_christmas_a_01_trf.m2", text = "helm_cloth_holiday_christmas_a_01_trf.m2", + value = "helm_cloth_holiday_christmas_a_01_trf.m2", }, { fileId = "137826", - value = "helm_cloth_holiday_christmas_a_01_trm.m2", text = "helm_cloth_holiday_christmas_a_01_trm.m2", + value = "helm_cloth_holiday_christmas_a_01_trm.m2", }, { fileId = "137828", - value = "helm_cloth_mexico_a_01_bef.m2", text = "helm_cloth_mexico_a_01_bef.m2", + value = "helm_cloth_mexico_a_01_bef.m2", }, { fileId = "137829", - value = "helm_cloth_mexico_a_01_bem.m2", text = "helm_cloth_mexico_a_01_bem.m2", + value = "helm_cloth_mexico_a_01_bem.m2", }, { fileId = "137830", - value = "helm_cloth_mexico_a_01_drf.m2", text = "helm_cloth_mexico_a_01_drf.m2", + value = "helm_cloth_mexico_a_01_drf.m2", }, { fileId = "137831", - value = "helm_cloth_mexico_a_01_drm.m2", text = "helm_cloth_mexico_a_01_drm.m2", + value = "helm_cloth_mexico_a_01_drm.m2", }, { fileId = "137832", - value = "helm_cloth_mexico_a_01_dwf.m2", text = "helm_cloth_mexico_a_01_dwf.m2", + value = "helm_cloth_mexico_a_01_dwf.m2", }, { fileId = "137833", - value = "helm_cloth_mexico_a_01_dwm.m2", text = "helm_cloth_mexico_a_01_dwm.m2", + value = "helm_cloth_mexico_a_01_dwm.m2", }, { fileId = "137834", - value = "helm_cloth_mexico_a_01_gnf.m2", text = "helm_cloth_mexico_a_01_gnf.m2", + value = "helm_cloth_mexico_a_01_gnf.m2", }, { fileId = "137835", - value = "helm_cloth_mexico_a_01_gnm.m2", text = "helm_cloth_mexico_a_01_gnm.m2", + value = "helm_cloth_mexico_a_01_gnm.m2", }, { fileId = "137836", - value = "helm_cloth_mexico_a_01_gof.m2", text = "helm_cloth_mexico_a_01_gof.m2", + value = "helm_cloth_mexico_a_01_gof.m2", }, { fileId = "137837", - value = "helm_cloth_mexico_a_01_gom.m2", text = "helm_cloth_mexico_a_01_gom.m2", + value = "helm_cloth_mexico_a_01_gom.m2", }, { fileId = "137838", - value = "helm_cloth_mexico_a_01_huf.m2", text = "helm_cloth_mexico_a_01_huf.m2", + value = "helm_cloth_mexico_a_01_huf.m2", }, { fileId = "137839", - value = "helm_cloth_mexico_a_01_hum.m2", text = "helm_cloth_mexico_a_01_hum.m2", + value = "helm_cloth_mexico_a_01_hum.m2", }, { fileId = "137840", - value = "helm_cloth_mexico_a_01_nif.m2", text = "helm_cloth_mexico_a_01_nif.m2", + value = "helm_cloth_mexico_a_01_nif.m2", }, { fileId = "137841", - value = "helm_cloth_mexico_a_01_nim.m2", text = "helm_cloth_mexico_a_01_nim.m2", + value = "helm_cloth_mexico_a_01_nim.m2", }, { fileId = "137842", - value = "helm_cloth_mexico_a_01_orf.m2", text = "helm_cloth_mexico_a_01_orf.m2", + value = "helm_cloth_mexico_a_01_orf.m2", }, { fileId = "137843", - value = "helm_cloth_mexico_a_01_orm.m2", text = "helm_cloth_mexico_a_01_orm.m2", + value = "helm_cloth_mexico_a_01_orm.m2", }, { fileId = "137844", - value = "helm_cloth_mexico_a_01_scf.m2", text = "helm_cloth_mexico_a_01_scf.m2", + value = "helm_cloth_mexico_a_01_scf.m2", }, { fileId = "137845", - value = "helm_cloth_mexico_a_01_scm.m2", text = "helm_cloth_mexico_a_01_scm.m2", + value = "helm_cloth_mexico_a_01_scm.m2", }, { fileId = "137846", - value = "helm_cloth_mexico_a_01_taf.m2", text = "helm_cloth_mexico_a_01_taf.m2", + value = "helm_cloth_mexico_a_01_taf.m2", }, { fileId = "137847", - value = "helm_cloth_mexico_a_01_tam.m2", text = "helm_cloth_mexico_a_01_tam.m2", + value = "helm_cloth_mexico_a_01_tam.m2", }, { fileId = "137848", - value = "helm_cloth_mexico_a_01_trf.m2", text = "helm_cloth_mexico_a_01_trf.m2", + value = "helm_cloth_mexico_a_01_trf.m2", }, { fileId = "137849", - value = "helm_cloth_mexico_a_01_trm.m2", text = "helm_cloth_mexico_a_01_trm.m2", + value = "helm_cloth_mexico_a_01_trm.m2", }, { fileId = "137850", - value = "helm_cloth_sunfest_a_01_bef.m2", text = "helm_cloth_sunfest_a_01_bef.m2", + value = "helm_cloth_sunfest_a_01_bef.m2", }, { fileId = "137851", - value = "helm_cloth_sunfest_a_01_bem.m2", text = "helm_cloth_sunfest_a_01_bem.m2", + value = "helm_cloth_sunfest_a_01_bem.m2", }, { fileId = "137852", - value = "helm_cloth_sunfest_a_01_drf.m2", text = "helm_cloth_sunfest_a_01_drf.m2", + value = "helm_cloth_sunfest_a_01_drf.m2", }, { fileId = "137853", - value = "helm_cloth_sunfest_a_01_drm.m2", text = "helm_cloth_sunfest_a_01_drm.m2", + value = "helm_cloth_sunfest_a_01_drm.m2", }, { fileId = "137854", - value = "helm_cloth_sunfest_a_01_dwf.m2", text = "helm_cloth_sunfest_a_01_dwf.m2", + value = "helm_cloth_sunfest_a_01_dwf.m2", }, { fileId = "137855", - value = "helm_cloth_sunfest_a_01_dwm.m2", text = "helm_cloth_sunfest_a_01_dwm.m2", + value = "helm_cloth_sunfest_a_01_dwm.m2", }, { fileId = "137856", - value = "helm_cloth_sunfest_a_01_gnf.m2", text = "helm_cloth_sunfest_a_01_gnf.m2", + value = "helm_cloth_sunfest_a_01_gnf.m2", }, { fileId = "137857", - value = "helm_cloth_sunfest_a_01_gnm.m2", text = "helm_cloth_sunfest_a_01_gnm.m2", + value = "helm_cloth_sunfest_a_01_gnm.m2", }, { fileId = "137858", - value = "helm_cloth_sunfest_a_01_gof.m2", text = "helm_cloth_sunfest_a_01_gof.m2", + value = "helm_cloth_sunfest_a_01_gof.m2", }, { fileId = "137859", - value = "helm_cloth_sunfest_a_01_gom.m2", text = "helm_cloth_sunfest_a_01_gom.m2", + value = "helm_cloth_sunfest_a_01_gom.m2", }, { fileId = "137860", - value = "helm_cloth_sunfest_a_01_huf.m2", text = "helm_cloth_sunfest_a_01_huf.m2", + value = "helm_cloth_sunfest_a_01_huf.m2", }, { fileId = "137861", - value = "helm_cloth_sunfest_a_01_hum.m2", text = "helm_cloth_sunfest_a_01_hum.m2", + value = "helm_cloth_sunfest_a_01_hum.m2", }, { fileId = "137862", - value = "helm_cloth_sunfest_a_01_nif.m2", text = "helm_cloth_sunfest_a_01_nif.m2", + value = "helm_cloth_sunfest_a_01_nif.m2", }, { fileId = "137863", - value = "helm_cloth_sunfest_a_01_nim.m2", text = "helm_cloth_sunfest_a_01_nim.m2", + value = "helm_cloth_sunfest_a_01_nim.m2", }, { fileId = "137864", - value = "helm_cloth_sunfest_a_01_orf.m2", text = "helm_cloth_sunfest_a_01_orf.m2", + value = "helm_cloth_sunfest_a_01_orf.m2", }, { fileId = "137865", - value = "helm_cloth_sunfest_a_01_orm.m2", text = "helm_cloth_sunfest_a_01_orm.m2", + value = "helm_cloth_sunfest_a_01_orm.m2", }, { fileId = "137866", - value = "helm_cloth_sunfest_a_01_scf.m2", text = "helm_cloth_sunfest_a_01_scf.m2", + value = "helm_cloth_sunfest_a_01_scf.m2", }, { fileId = "137867", - value = "helm_cloth_sunfest_a_01_scm.m2", text = "helm_cloth_sunfest_a_01_scm.m2", + value = "helm_cloth_sunfest_a_01_scm.m2", }, { fileId = "137868", - value = "helm_cloth_sunfest_a_01_taf.m2", text = "helm_cloth_sunfest_a_01_taf.m2", + value = "helm_cloth_sunfest_a_01_taf.m2", }, { fileId = "137869", - value = "helm_cloth_sunfest_a_01_tam.m2", text = "helm_cloth_sunfest_a_01_tam.m2", + value = "helm_cloth_sunfest_a_01_tam.m2", }, { fileId = "137870", - value = "helm_cloth_sunfest_a_01_trf.m2", text = "helm_cloth_sunfest_a_01_trf.m2", + value = "helm_cloth_sunfest_a_01_trf.m2", }, { fileId = "137871", - value = "helm_cloth_sunfest_a_01_trm.m2", text = "helm_cloth_sunfest_a_01_trm.m2", + value = "helm_cloth_sunfest_a_01_trm.m2", }, { fileId = "137874", - value = "helm_engi_b_01_bef.m2", text = "helm_engi_b_01_bef.m2", + value = "helm_engi_b_01_bef.m2", }, { fileId = "137875", - value = "helm_engi_b_01_bem.m2", text = "helm_engi_b_01_bem.m2", + value = "helm_engi_b_01_bem.m2", }, { fileId = "137876", - value = "helm_engi_b_01_drf.m2", text = "helm_engi_b_01_drf.m2", + value = "helm_engi_b_01_drf.m2", }, { fileId = "137877", - value = "helm_engi_b_01_drm.m2", text = "helm_engi_b_01_drm.m2", + value = "helm_engi_b_01_drm.m2", }, { fileId = "137878", - value = "helm_engi_b_01_dwf.m2", text = "helm_engi_b_01_dwf.m2", + value = "helm_engi_b_01_dwf.m2", }, { fileId = "137879", - value = "helm_engi_b_01_dwm.m2", text = "helm_engi_b_01_dwm.m2", + value = "helm_engi_b_01_dwm.m2", }, { fileId = "137880", - value = "helm_engi_b_01_gnf.m2", text = "helm_engi_b_01_gnf.m2", + value = "helm_engi_b_01_gnf.m2", }, { fileId = "137881", - value = "helm_engi_b_01_gnm.m2", text = "helm_engi_b_01_gnm.m2", + value = "helm_engi_b_01_gnm.m2", }, { fileId = "137882", - value = "helm_engi_b_01_gof.m2", text = "helm_engi_b_01_gof.m2", + value = "helm_engi_b_01_gof.m2", }, { fileId = "137883", - value = "helm_engi_b_01_gom.m2", text = "helm_engi_b_01_gom.m2", + value = "helm_engi_b_01_gom.m2", }, { fileId = "137884", - value = "helm_engi_b_01_huf.m2", text = "helm_engi_b_01_huf.m2", + value = "helm_engi_b_01_huf.m2", }, { fileId = "137885", - value = "helm_engi_b_01_hum.m2", text = "helm_engi_b_01_hum.m2", + value = "helm_engi_b_01_hum.m2", }, { fileId = "137886", - value = "helm_engi_b_01_nif.m2", text = "helm_engi_b_01_nif.m2", + value = "helm_engi_b_01_nif.m2", }, { fileId = "137887", - value = "helm_engi_b_01_nim.m2", text = "helm_engi_b_01_nim.m2", + value = "helm_engi_b_01_nim.m2", }, { fileId = "137888", - value = "helm_engi_b_01_orf.m2", text = "helm_engi_b_01_orf.m2", + value = "helm_engi_b_01_orf.m2", }, { fileId = "137889", - value = "helm_engi_b_01_orm.m2", text = "helm_engi_b_01_orm.m2", + value = "helm_engi_b_01_orm.m2", }, { fileId = "137890", - value = "helm_engi_b_01_scf.m2", text = "helm_engi_b_01_scf.m2", + value = "helm_engi_b_01_scf.m2", }, { fileId = "137891", - value = "helm_engi_b_01_scm.m2", text = "helm_engi_b_01_scm.m2", + value = "helm_engi_b_01_scm.m2", }, { fileId = "137892", - value = "helm_engi_b_01_taf.m2", text = "helm_engi_b_01_taf.m2", + value = "helm_engi_b_01_taf.m2", }, { fileId = "137893", - value = "helm_engi_b_01_tam.m2", text = "helm_engi_b_01_tam.m2", + value = "helm_engi_b_01_tam.m2", }, { fileId = "137894", - value = "helm_engi_b_01_trf.m2", text = "helm_engi_b_01_trf.m2", + value = "helm_engi_b_01_trf.m2", }, { fileId = "137895", - value = "helm_engi_b_01_trm.m2", text = "helm_engi_b_01_trm.m2", + value = "helm_engi_b_01_trm.m2", }, { fileId = "137897", - value = "helm_engi_b_02_bef.m2", text = "helm_engi_b_02_bef.m2", + value = "helm_engi_b_02_bef.m2", }, { fileId = "137898", - value = "helm_engi_b_02_bem.m2", text = "helm_engi_b_02_bem.m2", + value = "helm_engi_b_02_bem.m2", }, { fileId = "137899", - value = "helm_engi_b_02_drf.m2", text = "helm_engi_b_02_drf.m2", + value = "helm_engi_b_02_drf.m2", }, { fileId = "137900", - value = "helm_engi_b_02_drm.m2", text = "helm_engi_b_02_drm.m2", + value = "helm_engi_b_02_drm.m2", }, { fileId = "137901", - value = "helm_engi_b_02_dwf.m2", text = "helm_engi_b_02_dwf.m2", + value = "helm_engi_b_02_dwf.m2", }, { fileId = "137902", - value = "helm_engi_b_02_dwm.m2", text = "helm_engi_b_02_dwm.m2", + value = "helm_engi_b_02_dwm.m2", }, { fileId = "137903", - value = "helm_engi_b_02_gnf.m2", text = "helm_engi_b_02_gnf.m2", + value = "helm_engi_b_02_gnf.m2", }, { fileId = "137904", - value = "helm_engi_b_02_gnm.m2", text = "helm_engi_b_02_gnm.m2", + value = "helm_engi_b_02_gnm.m2", }, { fileId = "137905", - value = "helm_engi_b_02_gof.m2", text = "helm_engi_b_02_gof.m2", + value = "helm_engi_b_02_gof.m2", }, { fileId = "137906", - value = "helm_engi_b_02_gom.m2", text = "helm_engi_b_02_gom.m2", + value = "helm_engi_b_02_gom.m2", }, { fileId = "137907", - value = "helm_engi_b_02_huf.m2", text = "helm_engi_b_02_huf.m2", + value = "helm_engi_b_02_huf.m2", }, { fileId = "137908", - value = "helm_engi_b_02_hum.m2", text = "helm_engi_b_02_hum.m2", + value = "helm_engi_b_02_hum.m2", }, { fileId = "137909", - value = "helm_engi_b_02_nif.m2", text = "helm_engi_b_02_nif.m2", + value = "helm_engi_b_02_nif.m2", }, { fileId = "137910", - value = "helm_engi_b_02_nim.m2", text = "helm_engi_b_02_nim.m2", + value = "helm_engi_b_02_nim.m2", }, { fileId = "137911", - value = "helm_engi_b_02_orf.m2", text = "helm_engi_b_02_orf.m2", + value = "helm_engi_b_02_orf.m2", }, { fileId = "137912", - value = "helm_engi_b_02_orm.m2", text = "helm_engi_b_02_orm.m2", + value = "helm_engi_b_02_orm.m2", }, { fileId = "137913", - value = "helm_engi_b_02_scf.m2", text = "helm_engi_b_02_scf.m2", + value = "helm_engi_b_02_scf.m2", }, { fileId = "137914", - value = "helm_engi_b_02_scm.m2", text = "helm_engi_b_02_scm.m2", + value = "helm_engi_b_02_scm.m2", }, { fileId = "137915", - value = "helm_engi_b_02_taf.m2", text = "helm_engi_b_02_taf.m2", + value = "helm_engi_b_02_taf.m2", }, { fileId = "137916", - value = "helm_engi_b_02_tam.m2", text = "helm_engi_b_02_tam.m2", + value = "helm_engi_b_02_tam.m2", }, { fileId = "137917", - value = "helm_engi_b_02_trf.m2", text = "helm_engi_b_02_trf.m2", + value = "helm_engi_b_02_trf.m2", }, { fileId = "137918", - value = "helm_engi_b_02_trm.m2", text = "helm_engi_b_02_trm.m2", + value = "helm_engi_b_02_trm.m2", }, { fileId = "2199344", - value = "helm_engi_c_01diver.m2", text = "helm_engi_c_01diver.m2", + value = "helm_engi_c_01diver.m2", }, { fileId = "137921", - value = "helm_engi_c_01diver_bef.m2", text = "helm_engi_c_01diver_bef.m2", + value = "helm_engi_c_01diver_bef.m2", }, { fileId = "137922", - value = "helm_engi_c_01diver_bem.m2", text = "helm_engi_c_01diver_bem.m2", + value = "helm_engi_c_01diver_bem.m2", }, { fileId = "137923", - value = "helm_engi_c_01diver_drf.m2", text = "helm_engi_c_01diver_drf.m2", + value = "helm_engi_c_01diver_drf.m2", }, { fileId = "137924", - value = "helm_engi_c_01diver_drm.m2", text = "helm_engi_c_01diver_drm.m2", + value = "helm_engi_c_01diver_drm.m2", }, { fileId = "137925", - value = "helm_engi_c_01diver_dwf.m2", text = "helm_engi_c_01diver_dwf.m2", + value = "helm_engi_c_01diver_dwf.m2", }, { fileId = "137926", - value = "helm_engi_c_01diver_dwm.m2", text = "helm_engi_c_01diver_dwm.m2", + value = "helm_engi_c_01diver_dwm.m2", }, { fileId = "137927", - value = "helm_engi_c_01diver_gnf.m2", text = "helm_engi_c_01diver_gnf.m2", + value = "helm_engi_c_01diver_gnf.m2", }, { fileId = "137928", - value = "helm_engi_c_01diver_gnm.m2", text = "helm_engi_c_01diver_gnm.m2", + value = "helm_engi_c_01diver_gnm.m2", }, { fileId = "137929", - value = "helm_engi_c_01diver_gof.m2", text = "helm_engi_c_01diver_gof.m2", + value = "helm_engi_c_01diver_gof.m2", }, { fileId = "137930", - value = "helm_engi_c_01diver_gom.m2", text = "helm_engi_c_01diver_gom.m2", + value = "helm_engi_c_01diver_gom.m2", }, { fileId = "137931", - value = "helm_engi_c_01diver_huf.m2", text = "helm_engi_c_01diver_huf.m2", + value = "helm_engi_c_01diver_huf.m2", }, { fileId = "137932", - value = "helm_engi_c_01diver_hum.m2", text = "helm_engi_c_01diver_hum.m2", + value = "helm_engi_c_01diver_hum.m2", }, { fileId = "137933", - value = "helm_engi_c_01diver_nif.m2", text = "helm_engi_c_01diver_nif.m2", + value = "helm_engi_c_01diver_nif.m2", }, { fileId = "137934", - value = "helm_engi_c_01diver_nim.m2", text = "helm_engi_c_01diver_nim.m2", + value = "helm_engi_c_01diver_nim.m2", }, { fileId = "137935", - value = "helm_engi_c_01diver_orf.m2", text = "helm_engi_c_01diver_orf.m2", + value = "helm_engi_c_01diver_orf.m2", }, { fileId = "137936", - value = "helm_engi_c_01diver_orm.m2", text = "helm_engi_c_01diver_orm.m2", + value = "helm_engi_c_01diver_orm.m2", }, { fileId = "137937", - value = "helm_engi_c_01diver_scf.m2", text = "helm_engi_c_01diver_scf.m2", + value = "helm_engi_c_01diver_scf.m2", }, { fileId = "137938", - value = "helm_engi_c_01diver_scm.m2", text = "helm_engi_c_01diver_scm.m2", + value = "helm_engi_c_01diver_scm.m2", }, { fileId = "137939", - value = "helm_engi_c_01diver_taf.m2", text = "helm_engi_c_01diver_taf.m2", + value = "helm_engi_c_01diver_taf.m2", }, { fileId = "137940", - value = "helm_engi_c_01diver_tam.m2", text = "helm_engi_c_01diver_tam.m2", + value = "helm_engi_c_01diver_tam.m2", }, { fileId = "137941", - value = "helm_engi_c_01diver_trf.m2", text = "helm_engi_c_01diver_trf.m2", + value = "helm_engi_c_01diver_trf.m2", }, { fileId = "137942", - value = "helm_engi_c_01diver_trm.m2", text = "helm_engi_c_01diver_trm.m2", + value = "helm_engi_c_01diver_trm.m2", }, { fileId = "137946", - value = "helm_engi_c_02space_bef.m2", text = "helm_engi_c_02space_bef.m2", + value = "helm_engi_c_02space_bef.m2", }, { fileId = "137947", - value = "helm_engi_c_02space_bem.m2", text = "helm_engi_c_02space_bem.m2", + value = "helm_engi_c_02space_bem.m2", }, { fileId = "137948", - value = "helm_engi_c_02space_drf.m2", text = "helm_engi_c_02space_drf.m2", + value = "helm_engi_c_02space_drf.m2", }, { fileId = "137949", - value = "helm_engi_c_02space_drm.m2", text = "helm_engi_c_02space_drm.m2", + value = "helm_engi_c_02space_drm.m2", }, { fileId = "137950", - value = "helm_engi_c_02space_dwf.m2", text = "helm_engi_c_02space_dwf.m2", + value = "helm_engi_c_02space_dwf.m2", }, { fileId = "137951", - value = "helm_engi_c_02space_dwm.m2", text = "helm_engi_c_02space_dwm.m2", + value = "helm_engi_c_02space_dwm.m2", }, { fileId = "137952", - value = "helm_engi_c_02space_gnf.m2", text = "helm_engi_c_02space_gnf.m2", + value = "helm_engi_c_02space_gnf.m2", }, { fileId = "137953", - value = "helm_engi_c_02space_gnm.m2", text = "helm_engi_c_02space_gnm.m2", + value = "helm_engi_c_02space_gnm.m2", }, { fileId = "137954", - value = "helm_engi_c_02space_gof.m2", text = "helm_engi_c_02space_gof.m2", + value = "helm_engi_c_02space_gof.m2", }, { fileId = "137955", - value = "helm_engi_c_02space_gom.m2", text = "helm_engi_c_02space_gom.m2", + value = "helm_engi_c_02space_gom.m2", }, { fileId = "137956", - value = "helm_engi_c_02space_huf.m2", text = "helm_engi_c_02space_huf.m2", + value = "helm_engi_c_02space_huf.m2", }, { fileId = "137957", - value = "helm_engi_c_02space_hum.m2", text = "helm_engi_c_02space_hum.m2", + value = "helm_engi_c_02space_hum.m2", }, { fileId = "137958", - value = "helm_engi_c_02space_nif.m2", text = "helm_engi_c_02space_nif.m2", + value = "helm_engi_c_02space_nif.m2", }, { fileId = "137959", - value = "helm_engi_c_02space_nim.m2", text = "helm_engi_c_02space_nim.m2", + value = "helm_engi_c_02space_nim.m2", }, { fileId = "137960", - value = "helm_engi_c_02space_orf.m2", text = "helm_engi_c_02space_orf.m2", + value = "helm_engi_c_02space_orf.m2", }, { fileId = "137961", - value = "helm_engi_c_02space_orm.m2", text = "helm_engi_c_02space_orm.m2", + value = "helm_engi_c_02space_orm.m2", }, { fileId = "137962", - value = "helm_engi_c_02space_scf.m2", text = "helm_engi_c_02space_scf.m2", + value = "helm_engi_c_02space_scf.m2", }, { fileId = "137963", - value = "helm_engi_c_02space_scm.m2", text = "helm_engi_c_02space_scm.m2", + value = "helm_engi_c_02space_scm.m2", }, { fileId = "137964", - value = "helm_engi_c_02space_taf.m2", text = "helm_engi_c_02space_taf.m2", + value = "helm_engi_c_02space_taf.m2", }, { fileId = "137965", - value = "helm_engi_c_02space_tam.m2", text = "helm_engi_c_02space_tam.m2", + value = "helm_engi_c_02space_tam.m2", }, { fileId = "137966", - value = "helm_engi_c_02space_trf.m2", text = "helm_engi_c_02space_trf.m2", + value = "helm_engi_c_02space_trf.m2", }, { fileId = "137967", - value = "helm_engi_c_02space_trm.m2", text = "helm_engi_c_02space_trm.m2", + value = "helm_engi_c_02space_trm.m2", }, { fileId = "137968", - value = "helm_eyepatch_a_01_bef.m2", text = "helm_eyepatch_a_01_bef.m2", + value = "helm_eyepatch_a_01_bef.m2", }, { fileId = "137969", - value = "helm_eyepatch_a_01_bem.m2", text = "helm_eyepatch_a_01_bem.m2", + value = "helm_eyepatch_a_01_bem.m2", }, { fileId = "137970", - value = "helm_eyepatch_a_01_drf.m2", text = "helm_eyepatch_a_01_drf.m2", + value = "helm_eyepatch_a_01_drf.m2", }, { fileId = "137971", - value = "helm_eyepatch_a_01_drm.m2", text = "helm_eyepatch_a_01_drm.m2", + value = "helm_eyepatch_a_01_drm.m2", }, { fileId = "137972", - value = "helm_eyepatch_a_01_dwf.m2", text = "helm_eyepatch_a_01_dwf.m2", + value = "helm_eyepatch_a_01_dwf.m2", }, { fileId = "137973", - value = "helm_eyepatch_a_01_dwm.m2", text = "helm_eyepatch_a_01_dwm.m2", + value = "helm_eyepatch_a_01_dwm.m2", }, { fileId = "137974", - value = "helm_eyepatch_a_01_gnf.m2", text = "helm_eyepatch_a_01_gnf.m2", + value = "helm_eyepatch_a_01_gnf.m2", }, { fileId = "137975", - value = "helm_eyepatch_a_01_gnm.m2", text = "helm_eyepatch_a_01_gnm.m2", + value = "helm_eyepatch_a_01_gnm.m2", }, { fileId = "137976", - value = "helm_eyepatch_a_01_gof.m2", text = "helm_eyepatch_a_01_gof.m2", + value = "helm_eyepatch_a_01_gof.m2", }, { fileId = "137977", - value = "helm_eyepatch_a_01_gom.m2", text = "helm_eyepatch_a_01_gom.m2", + value = "helm_eyepatch_a_01_gom.m2", }, { fileId = "137978", - value = "helm_eyepatch_a_01_huf.m2", text = "helm_eyepatch_a_01_huf.m2", + value = "helm_eyepatch_a_01_huf.m2", }, { fileId = "137979", - value = "helm_eyepatch_a_01_hum.m2", text = "helm_eyepatch_a_01_hum.m2", + value = "helm_eyepatch_a_01_hum.m2", }, { fileId = "137980", - value = "helm_eyepatch_a_01_nif.m2", text = "helm_eyepatch_a_01_nif.m2", + value = "helm_eyepatch_a_01_nif.m2", }, { fileId = "137981", - value = "helm_eyepatch_a_01_nim.m2", text = "helm_eyepatch_a_01_nim.m2", + value = "helm_eyepatch_a_01_nim.m2", }, { fileId = "137982", - value = "helm_eyepatch_a_01_orf.m2", text = "helm_eyepatch_a_01_orf.m2", + value = "helm_eyepatch_a_01_orf.m2", }, { fileId = "137983", - value = "helm_eyepatch_a_01_orm.m2", text = "helm_eyepatch_a_01_orm.m2", + value = "helm_eyepatch_a_01_orm.m2", }, { fileId = "137984", - value = "helm_eyepatch_a_01_scf.m2", text = "helm_eyepatch_a_01_scf.m2", + value = "helm_eyepatch_a_01_scf.m2", }, { fileId = "137985", - value = "helm_eyepatch_a_01_scm.m2", text = "helm_eyepatch_a_01_scm.m2", + value = "helm_eyepatch_a_01_scm.m2", }, { fileId = "137986", - value = "helm_eyepatch_a_01_taf.m2", text = "helm_eyepatch_a_01_taf.m2", + value = "helm_eyepatch_a_01_taf.m2", }, { fileId = "137987", - value = "helm_eyepatch_a_01_tam.m2", text = "helm_eyepatch_a_01_tam.m2", + value = "helm_eyepatch_a_01_tam.m2", }, { fileId = "137988", - value = "helm_eyepatch_a_01_trf.m2", text = "helm_eyepatch_a_01_trf.m2", + value = "helm_eyepatch_a_01_trf.m2", }, { fileId = "137989", - value = "helm_eyepatch_a_01_trm.m2", text = "helm_eyepatch_a_01_trm.m2", + value = "helm_eyepatch_a_01_trm.m2", }, { fileId = "137996", - value = "helm_eyepatch_a_02_bem.m2", text = "helm_eyepatch_a_02_bem.m2", + value = "helm_eyepatch_a_02_bem.m2", }, { fileId = "137998", - value = "helm_goggles_b_01_bef.m2", text = "helm_goggles_b_01_bef.m2", + value = "helm_goggles_b_01_bef.m2", }, { fileId = "137999", - value = "helm_goggles_b_01_bem.m2", text = "helm_goggles_b_01_bem.m2", + value = "helm_goggles_b_01_bem.m2", }, { fileId = "138000", - value = "helm_goggles_b_01_drf.m2", text = "helm_goggles_b_01_drf.m2", + value = "helm_goggles_b_01_drf.m2", }, { fileId = "138001", - value = "helm_goggles_b_01_drm.m2", text = "helm_goggles_b_01_drm.m2", + value = "helm_goggles_b_01_drm.m2", }, { fileId = "138002", - value = "helm_goggles_b_01_dwf.m2", text = "helm_goggles_b_01_dwf.m2", + value = "helm_goggles_b_01_dwf.m2", }, { fileId = "138003", - value = "helm_goggles_b_01_dwm.m2", text = "helm_goggles_b_01_dwm.m2", + value = "helm_goggles_b_01_dwm.m2", }, { fileId = "138004", - value = "helm_goggles_b_01_gnf.m2", text = "helm_goggles_b_01_gnf.m2", + value = "helm_goggles_b_01_gnf.m2", }, { fileId = "138005", - value = "helm_goggles_b_01_gnm.m2", text = "helm_goggles_b_01_gnm.m2", + value = "helm_goggles_b_01_gnm.m2", }, { fileId = "138006", - value = "helm_goggles_b_01_gom.m2", text = "helm_goggles_b_01_gom.m2", + value = "helm_goggles_b_01_gom.m2", }, { fileId = "138007", - value = "helm_goggles_b_01_huf.m2", text = "helm_goggles_b_01_huf.m2", + value = "helm_goggles_b_01_huf.m2", }, { fileId = "138008", - value = "helm_goggles_b_01_hum.m2", text = "helm_goggles_b_01_hum.m2", + value = "helm_goggles_b_01_hum.m2", }, { fileId = "138009", - value = "helm_goggles_b_01_nif.m2", text = "helm_goggles_b_01_nif.m2", + value = "helm_goggles_b_01_nif.m2", }, { fileId = "138010", - value = "helm_goggles_b_01_nim.m2", text = "helm_goggles_b_01_nim.m2", + value = "helm_goggles_b_01_nim.m2", }, { fileId = "138011", - value = "helm_goggles_b_01_orf.m2", text = "helm_goggles_b_01_orf.m2", + value = "helm_goggles_b_01_orf.m2", }, { fileId = "138012", - value = "helm_goggles_b_01_orm.m2", text = "helm_goggles_b_01_orm.m2", + value = "helm_goggles_b_01_orm.m2", }, { fileId = "138013", - value = "helm_goggles_b_01_scf.m2", text = "helm_goggles_b_01_scf.m2", + value = "helm_goggles_b_01_scf.m2", }, { fileId = "138014", - value = "helm_goggles_b_01_scm.m2", text = "helm_goggles_b_01_scm.m2", + value = "helm_goggles_b_01_scm.m2", }, { fileId = "138015", - value = "helm_goggles_b_01_taf.m2", text = "helm_goggles_b_01_taf.m2", + value = "helm_goggles_b_01_taf.m2", }, { fileId = "138016", - value = "helm_goggles_b_01_tam.m2", text = "helm_goggles_b_01_tam.m2", + value = "helm_goggles_b_01_tam.m2", }, { fileId = "138017", - value = "helm_goggles_b_01_trf.m2", text = "helm_goggles_b_01_trf.m2", + value = "helm_goggles_b_01_trf.m2", }, { fileId = "138018", - value = "helm_goggles_b_01_trm.m2", text = "helm_goggles_b_01_trm.m2", + value = "helm_goggles_b_01_trm.m2", }, { fileId = "138028", - value = "helm_goggles_b_02engi_bef.m2", text = "helm_goggles_b_02engi_bef.m2", + value = "helm_goggles_b_02engi_bef.m2", }, { fileId = "138029", - value = "helm_goggles_b_02engi_bem.m2", text = "helm_goggles_b_02engi_bem.m2", + value = "helm_goggles_b_02engi_bem.m2", }, { fileId = "138030", - value = "helm_goggles_b_02engi_drf.m2", text = "helm_goggles_b_02engi_drf.m2", + value = "helm_goggles_b_02engi_drf.m2", }, { fileId = "138031", - value = "helm_goggles_b_02engi_drm.m2", text = "helm_goggles_b_02engi_drm.m2", + value = "helm_goggles_b_02engi_drm.m2", }, { fileId = "138032", - value = "helm_goggles_b_02engi_dwf.m2", text = "helm_goggles_b_02engi_dwf.m2", + value = "helm_goggles_b_02engi_dwf.m2", }, { fileId = "138033", - value = "helm_goggles_b_02engi_dwm.m2", text = "helm_goggles_b_02engi_dwm.m2", + value = "helm_goggles_b_02engi_dwm.m2", }, { fileId = "138034", - value = "helm_goggles_b_02engi_gnf.m2", text = "helm_goggles_b_02engi_gnf.m2", + value = "helm_goggles_b_02engi_gnf.m2", }, { fileId = "138035", - value = "helm_goggles_b_02engi_gnm.m2", text = "helm_goggles_b_02engi_gnm.m2", + value = "helm_goggles_b_02engi_gnm.m2", }, { fileId = "138036", - value = "helm_goggles_b_02engi_gof.m2", text = "helm_goggles_b_02engi_gof.m2", + value = "helm_goggles_b_02engi_gof.m2", }, { fileId = "138037", - value = "helm_goggles_b_02engi_gom.m2", text = "helm_goggles_b_02engi_gom.m2", + value = "helm_goggles_b_02engi_gom.m2", }, { fileId = "138038", - value = "helm_goggles_b_02engi_huf.m2", text = "helm_goggles_b_02engi_huf.m2", + value = "helm_goggles_b_02engi_huf.m2", }, { fileId = "138039", - value = "helm_goggles_b_02engi_hum.m2", text = "helm_goggles_b_02engi_hum.m2", + value = "helm_goggles_b_02engi_hum.m2", }, { fileId = "138040", - value = "helm_goggles_b_02engi_nif.m2", text = "helm_goggles_b_02engi_nif.m2", + value = "helm_goggles_b_02engi_nif.m2", }, { fileId = "138041", - value = "helm_goggles_b_02engi_nim.m2", text = "helm_goggles_b_02engi_nim.m2", + value = "helm_goggles_b_02engi_nim.m2", }, { fileId = "138042", - value = "helm_goggles_b_02engi_orf.m2", text = "helm_goggles_b_02engi_orf.m2", + value = "helm_goggles_b_02engi_orf.m2", }, { fileId = "138043", - value = "helm_goggles_b_02engi_orm.m2", text = "helm_goggles_b_02engi_orm.m2", + value = "helm_goggles_b_02engi_orm.m2", }, { fileId = "138044", - value = "helm_goggles_b_02engi_scf.m2", text = "helm_goggles_b_02engi_scf.m2", + value = "helm_goggles_b_02engi_scf.m2", }, { fileId = "138045", - value = "helm_goggles_b_02engi_scm.m2", text = "helm_goggles_b_02engi_scm.m2", + value = "helm_goggles_b_02engi_scm.m2", }, { fileId = "138046", - value = "helm_goggles_b_02engi_taf.m2", text = "helm_goggles_b_02engi_taf.m2", + value = "helm_goggles_b_02engi_taf.m2", }, { fileId = "138047", - value = "helm_goggles_b_02engi_tam.m2", text = "helm_goggles_b_02engi_tam.m2", + value = "helm_goggles_b_02engi_tam.m2", }, { fileId = "138048", - value = "helm_goggles_b_02engi_trf.m2", text = "helm_goggles_b_02engi_trf.m2", + value = "helm_goggles_b_02engi_trf.m2", }, { fileId = "138049", - value = "helm_goggles_b_02engi_trm.m2", text = "helm_goggles_b_02engi_trm.m2", + value = "helm_goggles_b_02engi_trm.m2", }, { fileId = "138051", - value = "helm_goggles_b_03_bef.m2", text = "helm_goggles_b_03_bef.m2", + value = "helm_goggles_b_03_bef.m2", }, { fileId = "138052", - value = "helm_goggles_b_03_bem.m2", text = "helm_goggles_b_03_bem.m2", + value = "helm_goggles_b_03_bem.m2", }, { fileId = "138053", - value = "helm_goggles_b_03_drf.m2", text = "helm_goggles_b_03_drf.m2", + value = "helm_goggles_b_03_drf.m2", }, { fileId = "138054", - value = "helm_goggles_b_03_drm.m2", text = "helm_goggles_b_03_drm.m2", + value = "helm_goggles_b_03_drm.m2", }, { fileId = "138055", - value = "helm_goggles_b_03_dwf.m2", text = "helm_goggles_b_03_dwf.m2", + value = "helm_goggles_b_03_dwf.m2", }, { fileId = "138056", - value = "helm_goggles_b_03_dwm.m2", text = "helm_goggles_b_03_dwm.m2", + value = "helm_goggles_b_03_dwm.m2", }, { fileId = "138057", - value = "helm_goggles_b_03_gnf.m2", text = "helm_goggles_b_03_gnf.m2", + value = "helm_goggles_b_03_gnf.m2", }, { fileId = "138058", - value = "helm_goggles_b_03_gnm.m2", text = "helm_goggles_b_03_gnm.m2", + value = "helm_goggles_b_03_gnm.m2", }, { fileId = "138059", - value = "helm_goggles_b_03_gof.m2", text = "helm_goggles_b_03_gof.m2", + value = "helm_goggles_b_03_gof.m2", }, { fileId = "138060", - value = "helm_goggles_b_03_gom.m2", text = "helm_goggles_b_03_gom.m2", + value = "helm_goggles_b_03_gom.m2", }, { fileId = "138061", - value = "helm_goggles_b_03_huf.m2", text = "helm_goggles_b_03_huf.m2", + value = "helm_goggles_b_03_huf.m2", }, { fileId = "138062", - value = "helm_goggles_b_03_hum.m2", text = "helm_goggles_b_03_hum.m2", + value = "helm_goggles_b_03_hum.m2", }, { fileId = "138063", - value = "helm_goggles_b_03_nif.m2", text = "helm_goggles_b_03_nif.m2", + value = "helm_goggles_b_03_nif.m2", }, { fileId = "138064", - value = "helm_goggles_b_03_nim.m2", text = "helm_goggles_b_03_nim.m2", + value = "helm_goggles_b_03_nim.m2", }, { fileId = "138065", - value = "helm_goggles_b_03_orf.m2", text = "helm_goggles_b_03_orf.m2", + value = "helm_goggles_b_03_orf.m2", }, { fileId = "138066", - value = "helm_goggles_b_03_orm.m2", text = "helm_goggles_b_03_orm.m2", + value = "helm_goggles_b_03_orm.m2", }, { fileId = "138067", - value = "helm_goggles_b_03_scf.m2", text = "helm_goggles_b_03_scf.m2", + value = "helm_goggles_b_03_scf.m2", }, { fileId = "138068", - value = "helm_goggles_b_03_scm.m2", text = "helm_goggles_b_03_scm.m2", + value = "helm_goggles_b_03_scm.m2", }, { fileId = "138069", - value = "helm_goggles_b_03_taf.m2", text = "helm_goggles_b_03_taf.m2", + value = "helm_goggles_b_03_taf.m2", }, { fileId = "138070", - value = "helm_goggles_b_03_tam.m2", text = "helm_goggles_b_03_tam.m2", + value = "helm_goggles_b_03_tam.m2", }, { fileId = "138071", - value = "helm_goggles_b_03_trf.m2", text = "helm_goggles_b_03_trf.m2", + value = "helm_goggles_b_03_trf.m2", }, { fileId = "138072", - value = "helm_goggles_b_03_trm.m2", text = "helm_goggles_b_03_trm.m2", + value = "helm_goggles_b_03_trm.m2", }, { fileId = "138074", - value = "helm_goggles_b_04.m2", text = "helm_goggles_b_04.m2", + value = "helm_goggles_b_04.m2", }, { fileId = "138075", - value = "helm_goggles_b_04_dwf.m2", text = "helm_goggles_b_04_dwf.m2", + value = "helm_goggles_b_04_dwf.m2", }, { fileId = "138076", - value = "helm_goggles_b_04_dwm.m2", text = "helm_goggles_b_04_dwm.m2", + value = "helm_goggles_b_04_dwm.m2", }, { fileId = "138078", - value = "helm_goggles_c_01_bef.m2", text = "helm_goggles_c_01_bef.m2", + value = "helm_goggles_c_01_bef.m2", }, { fileId = "138079", - value = "helm_goggles_c_01_bem.m2", text = "helm_goggles_c_01_bem.m2", + value = "helm_goggles_c_01_bem.m2", }, { fileId = "138080", - value = "helm_goggles_c_01_drf.m2", text = "helm_goggles_c_01_drf.m2", + value = "helm_goggles_c_01_drf.m2", }, { fileId = "138081", - value = "helm_goggles_c_01_drm.m2", text = "helm_goggles_c_01_drm.m2", + value = "helm_goggles_c_01_drm.m2", }, { fileId = "138082", - value = "helm_goggles_c_01_dwf.m2", text = "helm_goggles_c_01_dwf.m2", + value = "helm_goggles_c_01_dwf.m2", }, { fileId = "138083", - value = "helm_goggles_c_01_dwm.m2", text = "helm_goggles_c_01_dwm.m2", + value = "helm_goggles_c_01_dwm.m2", }, { fileId = "138084", - value = "helm_goggles_c_01_gnf.m2", text = "helm_goggles_c_01_gnf.m2", + value = "helm_goggles_c_01_gnf.m2", }, { fileId = "138085", - value = "helm_goggles_c_01_gnm.m2", text = "helm_goggles_c_01_gnm.m2", + value = "helm_goggles_c_01_gnm.m2", }, { fileId = "138086", - value = "helm_goggles_c_01_gof.m2", text = "helm_goggles_c_01_gof.m2", + value = "helm_goggles_c_01_gof.m2", }, { fileId = "138087", - value = "helm_goggles_c_01_gom.m2", text = "helm_goggles_c_01_gom.m2", + value = "helm_goggles_c_01_gom.m2", }, { fileId = "138088", - value = "helm_goggles_c_01_huf.m2", text = "helm_goggles_c_01_huf.m2", + value = "helm_goggles_c_01_huf.m2", }, { fileId = "138089", - value = "helm_goggles_c_01_hum.m2", text = "helm_goggles_c_01_hum.m2", + value = "helm_goggles_c_01_hum.m2", }, { fileId = "138090", - value = "helm_goggles_c_01_nif.m2", text = "helm_goggles_c_01_nif.m2", + value = "helm_goggles_c_01_nif.m2", }, { fileId = "138091", - value = "helm_goggles_c_01_nim.m2", text = "helm_goggles_c_01_nim.m2", + value = "helm_goggles_c_01_nim.m2", }, { fileId = "138092", - value = "helm_goggles_c_01_orf.m2", text = "helm_goggles_c_01_orf.m2", + value = "helm_goggles_c_01_orf.m2", }, { fileId = "138093", - value = "helm_goggles_c_01_orm.m2", text = "helm_goggles_c_01_orm.m2", + value = "helm_goggles_c_01_orm.m2", }, { fileId = "138094", - value = "helm_goggles_c_01_scf.m2", text = "helm_goggles_c_01_scf.m2", + value = "helm_goggles_c_01_scf.m2", }, { fileId = "138095", - value = "helm_goggles_c_01_scm.m2", text = "helm_goggles_c_01_scm.m2", + value = "helm_goggles_c_01_scm.m2", }, { fileId = "138096", - value = "helm_goggles_c_01_taf.m2", text = "helm_goggles_c_01_taf.m2", + value = "helm_goggles_c_01_taf.m2", }, { fileId = "138097", - value = "helm_goggles_c_01_tam.m2", text = "helm_goggles_c_01_tam.m2", + value = "helm_goggles_c_01_tam.m2", }, { fileId = "138098", - value = "helm_goggles_c_01_trf.m2", text = "helm_goggles_c_01_trf.m2", + value = "helm_goggles_c_01_trf.m2", }, { fileId = "138099", - value = "helm_goggles_c_01_trm.m2", text = "helm_goggles_c_01_trm.m2", + value = "helm_goggles_c_01_trm.m2", }, { fileId = "138104", - value = "helm_goggles_d_01_bef.m2", text = "helm_goggles_d_01_bef.m2", + value = "helm_goggles_d_01_bef.m2", }, { fileId = "138105", - value = "helm_goggles_d_01_bem.m2", text = "helm_goggles_d_01_bem.m2", + value = "helm_goggles_d_01_bem.m2", }, { fileId = "138106", - value = "helm_goggles_d_01_drf.m2", text = "helm_goggles_d_01_drf.m2", + value = "helm_goggles_d_01_drf.m2", }, { fileId = "138107", - value = "helm_goggles_d_01_drm.m2", text = "helm_goggles_d_01_drm.m2", + value = "helm_goggles_d_01_drm.m2", }, { fileId = "138108", - value = "helm_goggles_d_01_dwf.m2", text = "helm_goggles_d_01_dwf.m2", + value = "helm_goggles_d_01_dwf.m2", }, { fileId = "138109", - value = "helm_goggles_d_01_dwm.m2", text = "helm_goggles_d_01_dwm.m2", + value = "helm_goggles_d_01_dwm.m2", }, { fileId = "138110", - value = "helm_goggles_d_01_gnf.m2", text = "helm_goggles_d_01_gnf.m2", + value = "helm_goggles_d_01_gnf.m2", }, { fileId = "138111", - value = "helm_goggles_d_01_gnm.m2", text = "helm_goggles_d_01_gnm.m2", + value = "helm_goggles_d_01_gnm.m2", }, { fileId = "138112", - value = "helm_goggles_d_01_gof.m2", text = "helm_goggles_d_01_gof.m2", + value = "helm_goggles_d_01_gof.m2", }, { fileId = "138113", - value = "helm_goggles_d_01_gom.m2", text = "helm_goggles_d_01_gom.m2", + value = "helm_goggles_d_01_gom.m2", }, { fileId = "138114", - value = "helm_goggles_d_01_huf.m2", text = "helm_goggles_d_01_huf.m2", + value = "helm_goggles_d_01_huf.m2", }, { fileId = "138115", - value = "helm_goggles_d_01_hum.m2", text = "helm_goggles_d_01_hum.m2", + value = "helm_goggles_d_01_hum.m2", }, { fileId = "138116", - value = "helm_goggles_d_01_nif.m2", text = "helm_goggles_d_01_nif.m2", + value = "helm_goggles_d_01_nif.m2", }, { fileId = "138117", - value = "helm_goggles_d_01_nim.m2", text = "helm_goggles_d_01_nim.m2", + value = "helm_goggles_d_01_nim.m2", }, { fileId = "138118", - value = "helm_goggles_d_01_orf.m2", text = "helm_goggles_d_01_orf.m2", + value = "helm_goggles_d_01_orf.m2", }, { fileId = "138119", - value = "helm_goggles_d_01_orm.m2", text = "helm_goggles_d_01_orm.m2", + value = "helm_goggles_d_01_orm.m2", }, { fileId = "138120", - value = "helm_goggles_d_01_scf.m2", text = "helm_goggles_d_01_scf.m2", + value = "helm_goggles_d_01_scf.m2", }, { fileId = "138121", - value = "helm_goggles_d_01_scm.m2", text = "helm_goggles_d_01_scm.m2", + value = "helm_goggles_d_01_scm.m2", }, { fileId = "138122", - value = "helm_goggles_d_01_taf.m2", text = "helm_goggles_d_01_taf.m2", + value = "helm_goggles_d_01_taf.m2", }, { fileId = "138123", - value = "helm_goggles_d_01_tam.m2", text = "helm_goggles_d_01_tam.m2", + value = "helm_goggles_d_01_tam.m2", }, { fileId = "138124", - value = "helm_goggles_d_01_trf.m2", text = "helm_goggles_d_01_trf.m2", + value = "helm_goggles_d_01_trf.m2", }, { fileId = "138125", - value = "helm_goggles_d_01_trm.m2", text = "helm_goggles_d_01_trm.m2", + value = "helm_goggles_d_01_trm.m2", }, { fileId = "138137", - value = "helm_leather_a_01_bef.m2", text = "helm_leather_a_01_bef.m2", + value = "helm_leather_a_01_bef.m2", }, { fileId = "138138", - value = "helm_leather_a_01_bem.m2", text = "helm_leather_a_01_bem.m2", + value = "helm_leather_a_01_bem.m2", }, { fileId = "138139", - value = "helm_leather_a_01_drf.m2", text = "helm_leather_a_01_drf.m2", + value = "helm_leather_a_01_drf.m2", }, { fileId = "138140", - value = "helm_leather_a_01_drm.m2", text = "helm_leather_a_01_drm.m2", + value = "helm_leather_a_01_drm.m2", }, { fileId = "138141", - value = "helm_leather_a_01_dwf.m2", text = "helm_leather_a_01_dwf.m2", + value = "helm_leather_a_01_dwf.m2", }, { fileId = "138142", - value = "helm_leather_a_01_dwm.m2", text = "helm_leather_a_01_dwm.m2", + value = "helm_leather_a_01_dwm.m2", }, { fileId = "138143", - value = "helm_leather_a_01_gnf.m2", text = "helm_leather_a_01_gnf.m2", + value = "helm_leather_a_01_gnf.m2", }, { fileId = "138144", - value = "helm_leather_a_01_gnm.m2", text = "helm_leather_a_01_gnm.m2", + value = "helm_leather_a_01_gnm.m2", }, { fileId = "138145", - value = "helm_leather_a_01_gof.m2", text = "helm_leather_a_01_gof.m2", + value = "helm_leather_a_01_gof.m2", }, { fileId = "138146", - value = "helm_leather_a_01_gom.m2", text = "helm_leather_a_01_gom.m2", + value = "helm_leather_a_01_gom.m2", }, { fileId = "138147", - value = "helm_leather_a_01_huf.m2", text = "helm_leather_a_01_huf.m2", + value = "helm_leather_a_01_huf.m2", }, { fileId = "138148", - value = "helm_leather_a_01_hum.m2", text = "helm_leather_a_01_hum.m2", + value = "helm_leather_a_01_hum.m2", }, { fileId = "138149", - value = "helm_leather_a_01_nif.m2", text = "helm_leather_a_01_nif.m2", + value = "helm_leather_a_01_nif.m2", }, { fileId = "138150", - value = "helm_leather_a_01_nim.m2", text = "helm_leather_a_01_nim.m2", + value = "helm_leather_a_01_nim.m2", }, { fileId = "138151", - value = "helm_leather_a_01_orf.m2", text = "helm_leather_a_01_orf.m2", + value = "helm_leather_a_01_orf.m2", }, { fileId = "138152", - value = "helm_leather_a_01_orm.m2", text = "helm_leather_a_01_orm.m2", + value = "helm_leather_a_01_orm.m2", }, { fileId = "138153", - value = "helm_leather_a_01_scf.m2", text = "helm_leather_a_01_scf.m2", + value = "helm_leather_a_01_scf.m2", }, { fileId = "138154", - value = "helm_leather_a_01_scm.m2", text = "helm_leather_a_01_scm.m2", + value = "helm_leather_a_01_scm.m2", }, { fileId = "138155", - value = "helm_leather_a_01_taf.m2", text = "helm_leather_a_01_taf.m2", + value = "helm_leather_a_01_taf.m2", }, { fileId = "138156", - value = "helm_leather_a_01_tam.m2", text = "helm_leather_a_01_tam.m2", + value = "helm_leather_a_01_tam.m2", }, { fileId = "138157", - value = "helm_leather_a_01_trf.m2", text = "helm_leather_a_01_trf.m2", + value = "helm_leather_a_01_trf.m2", }, { fileId = "138158", - value = "helm_leather_a_01_trm.m2", text = "helm_leather_a_01_trm.m2", + value = "helm_leather_a_01_trm.m2", }, { fileId = "138167", - value = "helm_leather_a_02_bef.m2", text = "helm_leather_a_02_bef.m2", + value = "helm_leather_a_02_bef.m2", }, { fileId = "138168", - value = "helm_leather_a_02_bem.m2", text = "helm_leather_a_02_bem.m2", + value = "helm_leather_a_02_bem.m2", }, { fileId = "138169", - value = "helm_leather_a_02_drf.m2", text = "helm_leather_a_02_drf.m2", + value = "helm_leather_a_02_drf.m2", }, { fileId = "138170", - value = "helm_leather_a_02_drm.m2", text = "helm_leather_a_02_drm.m2", + value = "helm_leather_a_02_drm.m2", }, { fileId = "138171", - value = "helm_leather_a_02_dwf.m2", text = "helm_leather_a_02_dwf.m2", + value = "helm_leather_a_02_dwf.m2", }, { fileId = "138172", - value = "helm_leather_a_02_dwm.m2", text = "helm_leather_a_02_dwm.m2", + value = "helm_leather_a_02_dwm.m2", }, { fileId = "138173", - value = "helm_leather_a_02_gnf.m2", text = "helm_leather_a_02_gnf.m2", + value = "helm_leather_a_02_gnf.m2", }, { fileId = "138174", - value = "helm_leather_a_02_gnm.m2", text = "helm_leather_a_02_gnm.m2", + value = "helm_leather_a_02_gnm.m2", }, { fileId = "138175", - value = "helm_leather_a_02_gof.m2", text = "helm_leather_a_02_gof.m2", + value = "helm_leather_a_02_gof.m2", }, { fileId = "138176", - value = "helm_leather_a_02_gom.m2", text = "helm_leather_a_02_gom.m2", + value = "helm_leather_a_02_gom.m2", }, { fileId = "138177", - value = "helm_leather_a_02_huf.m2", text = "helm_leather_a_02_huf.m2", + value = "helm_leather_a_02_huf.m2", }, { fileId = "138178", - value = "helm_leather_a_02_hum.m2", text = "helm_leather_a_02_hum.m2", + value = "helm_leather_a_02_hum.m2", }, { fileId = "138179", - value = "helm_leather_a_02_nif.m2", text = "helm_leather_a_02_nif.m2", + value = "helm_leather_a_02_nif.m2", }, { fileId = "138180", - value = "helm_leather_a_02_nim.m2", text = "helm_leather_a_02_nim.m2", + value = "helm_leather_a_02_nim.m2", }, { fileId = "138181", - value = "helm_leather_a_02_orf.m2", text = "helm_leather_a_02_orf.m2", + value = "helm_leather_a_02_orf.m2", }, { fileId = "138182", - value = "helm_leather_a_02_orm.m2", text = "helm_leather_a_02_orm.m2", + value = "helm_leather_a_02_orm.m2", }, { fileId = "138183", - value = "helm_leather_a_02_scf.m2", text = "helm_leather_a_02_scf.m2", + value = "helm_leather_a_02_scf.m2", }, { fileId = "138184", - value = "helm_leather_a_02_scm.m2", text = "helm_leather_a_02_scm.m2", + value = "helm_leather_a_02_scm.m2", }, { fileId = "138185", - value = "helm_leather_a_02_taf.m2", text = "helm_leather_a_02_taf.m2", + value = "helm_leather_a_02_taf.m2", }, { fileId = "138186", - value = "helm_leather_a_02_tam.m2", text = "helm_leather_a_02_tam.m2", + value = "helm_leather_a_02_tam.m2", }, { fileId = "138187", - value = "helm_leather_a_02_trf.m2", text = "helm_leather_a_02_trf.m2", + value = "helm_leather_a_02_trf.m2", }, { fileId = "138188", - value = "helm_leather_a_02_trm.m2", text = "helm_leather_a_02_trm.m2", + value = "helm_leather_a_02_trm.m2", }, { fileId = "138194", - value = "helm_leather_a_03defias_bef.m2", text = "helm_leather_a_03defias_bef.m2", + value = "helm_leather_a_03defias_bef.m2", }, { fileId = "138195", - value = "helm_leather_a_03defias_bem.m2", text = "helm_leather_a_03defias_bem.m2", + value = "helm_leather_a_03defias_bem.m2", }, { fileId = "138196", - value = "helm_leather_a_03defias_drf.m2", text = "helm_leather_a_03defias_drf.m2", + value = "helm_leather_a_03defias_drf.m2", }, { fileId = "138197", - value = "helm_leather_a_03defias_drm.m2", text = "helm_leather_a_03defias_drm.m2", + value = "helm_leather_a_03defias_drm.m2", }, { fileId = "138198", - value = "helm_leather_a_03defias_dwf.m2", text = "helm_leather_a_03defias_dwf.m2", + value = "helm_leather_a_03defias_dwf.m2", }, { fileId = "138199", - value = "helm_leather_a_03defias_dwm.m2", text = "helm_leather_a_03defias_dwm.m2", + value = "helm_leather_a_03defias_dwm.m2", }, { fileId = "138200", - value = "helm_leather_a_03defias_gnf.m2", text = "helm_leather_a_03defias_gnf.m2", + value = "helm_leather_a_03defias_gnf.m2", }, { fileId = "138201", - value = "helm_leather_a_03defias_gnm.m2", text = "helm_leather_a_03defias_gnm.m2", + value = "helm_leather_a_03defias_gnm.m2", }, { fileId = "138202", - value = "helm_leather_a_03defias_gof.m2", text = "helm_leather_a_03defias_gof.m2", + value = "helm_leather_a_03defias_gof.m2", }, { fileId = "138203", - value = "helm_leather_a_03defias_gom.m2", text = "helm_leather_a_03defias_gom.m2", + value = "helm_leather_a_03defias_gom.m2", }, { fileId = "138204", - value = "helm_leather_a_03defias_huf.m2", text = "helm_leather_a_03defias_huf.m2", + value = "helm_leather_a_03defias_huf.m2", }, { fileId = "138205", - value = "helm_leather_a_03defias_hum.m2", text = "helm_leather_a_03defias_hum.m2", + value = "helm_leather_a_03defias_hum.m2", }, { fileId = "138206", - value = "helm_leather_a_03defias_nif.m2", text = "helm_leather_a_03defias_nif.m2", + value = "helm_leather_a_03defias_nif.m2", }, { fileId = "138207", - value = "helm_leather_a_03defias_nim.m2", text = "helm_leather_a_03defias_nim.m2", + value = "helm_leather_a_03defias_nim.m2", }, { fileId = "138208", - value = "helm_leather_a_03defias_orf.m2", text = "helm_leather_a_03defias_orf.m2", + value = "helm_leather_a_03defias_orf.m2", }, { fileId = "138209", - value = "helm_leather_a_03defias_orm.m2", text = "helm_leather_a_03defias_orm.m2", + value = "helm_leather_a_03defias_orm.m2", }, { fileId = "138210", - value = "helm_leather_a_03defias_scf.m2", text = "helm_leather_a_03defias_scf.m2", + value = "helm_leather_a_03defias_scf.m2", }, { fileId = "138211", - value = "helm_leather_a_03defias_scm.m2", text = "helm_leather_a_03defias_scm.m2", + value = "helm_leather_a_03defias_scm.m2", }, { fileId = "138212", - value = "helm_leather_a_03defias_taf.m2", text = "helm_leather_a_03defias_taf.m2", + value = "helm_leather_a_03defias_taf.m2", }, { fileId = "138213", - value = "helm_leather_a_03defias_tam.m2", text = "helm_leather_a_03defias_tam.m2", + value = "helm_leather_a_03defias_tam.m2", }, { fileId = "138214", - value = "helm_leather_a_03defias_trf.m2", text = "helm_leather_a_03defias_trf.m2", + value = "helm_leather_a_03defias_trf.m2", }, { fileId = "138215", - value = "helm_leather_a_03defias_trm.m2", text = "helm_leather_a_03defias_trm.m2", + value = "helm_leather_a_03defias_trm.m2", }, { fileId = "138223", - value = "helm_leather_ahnqiraj_a_01_bef.m2", text = "helm_leather_ahnqiraj_a_01_bef.m2", + value = "helm_leather_ahnqiraj_a_01_bef.m2", }, { fileId = "138224", - value = "helm_leather_ahnqiraj_a_01_bem.m2", text = "helm_leather_ahnqiraj_a_01_bem.m2", + value = "helm_leather_ahnqiraj_a_01_bem.m2", }, { fileId = "138225", - value = "helm_leather_ahnqiraj_a_01_drf.m2", text = "helm_leather_ahnqiraj_a_01_drf.m2", + value = "helm_leather_ahnqiraj_a_01_drf.m2", }, { fileId = "138226", - value = "helm_leather_ahnqiraj_a_01_drm.m2", text = "helm_leather_ahnqiraj_a_01_drm.m2", + value = "helm_leather_ahnqiraj_a_01_drm.m2", }, { fileId = "138227", - value = "helm_leather_ahnqiraj_a_01_dwf.m2", text = "helm_leather_ahnqiraj_a_01_dwf.m2", + value = "helm_leather_ahnqiraj_a_01_dwf.m2", }, { fileId = "138228", - value = "helm_leather_ahnqiraj_a_01_dwm.m2", text = "helm_leather_ahnqiraj_a_01_dwm.m2", + value = "helm_leather_ahnqiraj_a_01_dwm.m2", }, { fileId = "138229", - value = "helm_leather_ahnqiraj_a_01_gnf.m2", text = "helm_leather_ahnqiraj_a_01_gnf.m2", + value = "helm_leather_ahnqiraj_a_01_gnf.m2", }, { fileId = "138230", - value = "helm_leather_ahnqiraj_a_01_gnm.m2", text = "helm_leather_ahnqiraj_a_01_gnm.m2", + value = "helm_leather_ahnqiraj_a_01_gnm.m2", }, { fileId = "138231", - value = "helm_leather_ahnqiraj_a_01_gof.m2", text = "helm_leather_ahnqiraj_a_01_gof.m2", + value = "helm_leather_ahnqiraj_a_01_gof.m2", }, { fileId = "138232", - value = "helm_leather_ahnqiraj_a_01_gom.m2", text = "helm_leather_ahnqiraj_a_01_gom.m2", + value = "helm_leather_ahnqiraj_a_01_gom.m2", }, { fileId = "138233", - value = "helm_leather_ahnqiraj_a_01_huf.m2", text = "helm_leather_ahnqiraj_a_01_huf.m2", + value = "helm_leather_ahnqiraj_a_01_huf.m2", }, { fileId = "138234", - value = "helm_leather_ahnqiraj_a_01_hum.m2", text = "helm_leather_ahnqiraj_a_01_hum.m2", + value = "helm_leather_ahnqiraj_a_01_hum.m2", }, { fileId = "138235", - value = "helm_leather_ahnqiraj_a_01_nif.m2", text = "helm_leather_ahnqiraj_a_01_nif.m2", + value = "helm_leather_ahnqiraj_a_01_nif.m2", }, { fileId = "138236", - value = "helm_leather_ahnqiraj_a_01_nim.m2", text = "helm_leather_ahnqiraj_a_01_nim.m2", + value = "helm_leather_ahnqiraj_a_01_nim.m2", }, { fileId = "138237", - value = "helm_leather_ahnqiraj_a_01_orf.m2", text = "helm_leather_ahnqiraj_a_01_orf.m2", + value = "helm_leather_ahnqiraj_a_01_orf.m2", }, { fileId = "138238", - value = "helm_leather_ahnqiraj_a_01_orm.m2", text = "helm_leather_ahnqiraj_a_01_orm.m2", + value = "helm_leather_ahnqiraj_a_01_orm.m2", }, { fileId = "138239", - value = "helm_leather_ahnqiraj_a_01_scf.m2", text = "helm_leather_ahnqiraj_a_01_scf.m2", + value = "helm_leather_ahnqiraj_a_01_scf.m2", }, { fileId = "138240", - value = "helm_leather_ahnqiraj_a_01_scm.m2", text = "helm_leather_ahnqiraj_a_01_scm.m2", + value = "helm_leather_ahnqiraj_a_01_scm.m2", }, { fileId = "138241", - value = "helm_leather_ahnqiraj_a_01_taf.m2", text = "helm_leather_ahnqiraj_a_01_taf.m2", + value = "helm_leather_ahnqiraj_a_01_taf.m2", }, { fileId = "138242", - value = "helm_leather_ahnqiraj_a_01_tam.m2", text = "helm_leather_ahnqiraj_a_01_tam.m2", + value = "helm_leather_ahnqiraj_a_01_tam.m2", }, { fileId = "138243", - value = "helm_leather_ahnqiraj_a_01_trf.m2", text = "helm_leather_ahnqiraj_a_01_trf.m2", + value = "helm_leather_ahnqiraj_a_01_trf.m2", }, { fileId = "138244", - value = "helm_leather_ahnqiraj_a_01_trm.m2", text = "helm_leather_ahnqiraj_a_01_trm.m2", + value = "helm_leather_ahnqiraj_a_01_trm.m2", }, { fileId = "138248", - value = "helm_leather_b_01_bef.m2", text = "helm_leather_b_01_bef.m2", + value = "helm_leather_b_01_bef.m2", }, { fileId = "138249", - value = "helm_leather_b_01_bem.m2", text = "helm_leather_b_01_bem.m2", + value = "helm_leather_b_01_bem.m2", }, { fileId = "138250", - value = "helm_leather_b_01_drf.m2", text = "helm_leather_b_01_drf.m2", + value = "helm_leather_b_01_drf.m2", }, { fileId = "138251", - value = "helm_leather_b_01_drm.m2", text = "helm_leather_b_01_drm.m2", + value = "helm_leather_b_01_drm.m2", }, { fileId = "138252", - value = "helm_leather_b_01_dwf.m2", text = "helm_leather_b_01_dwf.m2", + value = "helm_leather_b_01_dwf.m2", }, { fileId = "138253", - value = "helm_leather_b_01_dwm.m2", text = "helm_leather_b_01_dwm.m2", + value = "helm_leather_b_01_dwm.m2", }, { fileId = "138254", - value = "helm_leather_b_01_gnf.m2", text = "helm_leather_b_01_gnf.m2", + value = "helm_leather_b_01_gnf.m2", }, { fileId = "138255", - value = "helm_leather_b_01_gnm.m2", text = "helm_leather_b_01_gnm.m2", + value = "helm_leather_b_01_gnm.m2", }, { fileId = "138256", - value = "helm_leather_b_01_gof.m2", text = "helm_leather_b_01_gof.m2", + value = "helm_leather_b_01_gof.m2", }, { fileId = "138257", - value = "helm_leather_b_01_gom.m2", text = "helm_leather_b_01_gom.m2", + value = "helm_leather_b_01_gom.m2", }, { fileId = "138258", - value = "helm_leather_b_01_huf.m2", text = "helm_leather_b_01_huf.m2", + value = "helm_leather_b_01_huf.m2", }, { fileId = "138259", - value = "helm_leather_b_01_hum.m2", text = "helm_leather_b_01_hum.m2", + value = "helm_leather_b_01_hum.m2", }, { fileId = "138260", - value = "helm_leather_b_01_nif.m2", text = "helm_leather_b_01_nif.m2", + value = "helm_leather_b_01_nif.m2", }, { fileId = "138261", - value = "helm_leather_b_01_nim.m2", text = "helm_leather_b_01_nim.m2", + value = "helm_leather_b_01_nim.m2", }, { fileId = "138262", - value = "helm_leather_b_01_orf.m2", text = "helm_leather_b_01_orf.m2", + value = "helm_leather_b_01_orf.m2", }, { fileId = "138263", - value = "helm_leather_b_01_orm.m2", text = "helm_leather_b_01_orm.m2", + value = "helm_leather_b_01_orm.m2", }, { fileId = "138264", - value = "helm_leather_b_01_scf.m2", text = "helm_leather_b_01_scf.m2", + value = "helm_leather_b_01_scf.m2", }, { fileId = "138265", - value = "helm_leather_b_01_scm.m2", text = "helm_leather_b_01_scm.m2", + value = "helm_leather_b_01_scm.m2", }, { fileId = "138266", - value = "helm_leather_b_01_taf.m2", text = "helm_leather_b_01_taf.m2", + value = "helm_leather_b_01_taf.m2", }, { fileId = "138267", - value = "helm_leather_b_01_tam.m2", text = "helm_leather_b_01_tam.m2", + value = "helm_leather_b_01_tam.m2", }, { fileId = "138268", - value = "helm_leather_b_01_trf.m2", text = "helm_leather_b_01_trf.m2", + value = "helm_leather_b_01_trf.m2", }, { fileId = "138269", - value = "helm_leather_b_01_trm.m2", text = "helm_leather_b_01_trm.m2", + value = "helm_leather_b_01_trm.m2", }, { fileId = "138279", - value = "helm_leather_b_03venture_bef.m2", text = "helm_leather_b_03venture_bef.m2", + value = "helm_leather_b_03venture_bef.m2", }, { fileId = "138280", - value = "helm_leather_b_03venture_bem.m2", text = "helm_leather_b_03venture_bem.m2", + value = "helm_leather_b_03venture_bem.m2", }, { fileId = "138281", - value = "helm_leather_b_03venture_drf.m2", text = "helm_leather_b_03venture_drf.m2", + value = "helm_leather_b_03venture_drf.m2", }, { fileId = "138282", - value = "helm_leather_b_03venture_drm.m2", text = "helm_leather_b_03venture_drm.m2", + value = "helm_leather_b_03venture_drm.m2", }, { fileId = "138283", - value = "helm_leather_b_03venture_dwf.m2", text = "helm_leather_b_03venture_dwf.m2", + value = "helm_leather_b_03venture_dwf.m2", }, { fileId = "138284", - value = "helm_leather_b_03venture_dwm.m2", text = "helm_leather_b_03venture_dwm.m2", + value = "helm_leather_b_03venture_dwm.m2", }, { fileId = "138286", - value = "helm_leather_b_03venture_gnf.m2", text = "helm_leather_b_03venture_gnf.m2", + value = "helm_leather_b_03venture_gnf.m2", }, { fileId = "138287", - value = "helm_leather_b_03venture_gnm.m2", text = "helm_leather_b_03venture_gnm.m2", + value = "helm_leather_b_03venture_gnm.m2", }, { fileId = "138288", - value = "helm_leather_b_03venture_gof.m2", text = "helm_leather_b_03venture_gof.m2", + value = "helm_leather_b_03venture_gof.m2", }, { fileId = "138289", - value = "helm_leather_b_03venture_gom.m2", text = "helm_leather_b_03venture_gom.m2", + value = "helm_leather_b_03venture_gom.m2", }, { fileId = "138290", - value = "helm_leather_b_03venture_huf.m2", text = "helm_leather_b_03venture_huf.m2", + value = "helm_leather_b_03venture_huf.m2", }, { fileId = "138291", - value = "helm_leather_b_03venture_hum.m2", text = "helm_leather_b_03venture_hum.m2", + value = "helm_leather_b_03venture_hum.m2", }, { fileId = "138292", - value = "helm_leather_b_03venture_nif.m2", text = "helm_leather_b_03venture_nif.m2", + value = "helm_leather_b_03venture_nif.m2", }, { fileId = "138293", - value = "helm_leather_b_03venture_nim.m2", text = "helm_leather_b_03venture_nim.m2", + value = "helm_leather_b_03venture_nim.m2", }, { fileId = "138294", - value = "helm_leather_b_03venture_orf.m2", text = "helm_leather_b_03venture_orf.m2", + value = "helm_leather_b_03venture_orf.m2", }, { fileId = "138295", - value = "helm_leather_b_03venture_orm.m2", text = "helm_leather_b_03venture_orm.m2", + value = "helm_leather_b_03venture_orm.m2", }, { fileId = "138296", - value = "helm_leather_b_03venture_scf.m2", text = "helm_leather_b_03venture_scf.m2", + value = "helm_leather_b_03venture_scf.m2", }, { fileId = "138297", - value = "helm_leather_b_03venture_scm.m2", text = "helm_leather_b_03venture_scm.m2", + value = "helm_leather_b_03venture_scm.m2", }, { fileId = "138298", - value = "helm_leather_b_03venture_taf.m2", text = "helm_leather_b_03venture_taf.m2", + value = "helm_leather_b_03venture_taf.m2", }, { fileId = "138299", - value = "helm_leather_b_03venture_tam.m2", text = "helm_leather_b_03venture_tam.m2", + value = "helm_leather_b_03venture_tam.m2", }, { fileId = "138300", - value = "helm_leather_b_03venture_trf.m2", text = "helm_leather_b_03venture_trf.m2", + value = "helm_leather_b_03venture_trf.m2", }, { fileId = "138301", - value = "helm_leather_b_03venture_trm.m2", text = "helm_leather_b_03venture_trm.m2", + value = "helm_leather_b_03venture_trm.m2", }, { fileId = "138302", - value = "helm_leather_b_06_bef.m2", text = "helm_leather_b_06_bef.m2", + value = "helm_leather_b_06_bef.m2", }, { fileId = "138303", - value = "helm_leather_b_06_bem.m2", text = "helm_leather_b_06_bem.m2", + value = "helm_leather_b_06_bem.m2", }, { fileId = "138304", - value = "helm_leather_b_06_drf.m2", text = "helm_leather_b_06_drf.m2", + value = "helm_leather_b_06_drf.m2", }, { fileId = "138305", - value = "helm_leather_b_06_drm.m2", text = "helm_leather_b_06_drm.m2", + value = "helm_leather_b_06_drm.m2", }, { fileId = "138306", - value = "helm_leather_b_06_dwf.m2", text = "helm_leather_b_06_dwf.m2", + value = "helm_leather_b_06_dwf.m2", }, { fileId = "138307", - value = "helm_leather_b_06_dwm.m2", text = "helm_leather_b_06_dwm.m2", + value = "helm_leather_b_06_dwm.m2", }, { fileId = "138308", - value = "helm_leather_b_06_gnf.m2", text = "helm_leather_b_06_gnf.m2", + value = "helm_leather_b_06_gnf.m2", }, { fileId = "138309", - value = "helm_leather_b_06_gnm.m2", text = "helm_leather_b_06_gnm.m2", + value = "helm_leather_b_06_gnm.m2", }, { fileId = "138310", - value = "helm_leather_b_06_gof.m2", text = "helm_leather_b_06_gof.m2", + value = "helm_leather_b_06_gof.m2", }, { fileId = "138311", - value = "helm_leather_b_06_huf.m2", text = "helm_leather_b_06_huf.m2", + value = "helm_leather_b_06_huf.m2", }, { fileId = "138312", - value = "helm_leather_b_06_hum.m2", text = "helm_leather_b_06_hum.m2", + value = "helm_leather_b_06_hum.m2", }, { fileId = "138313", - value = "helm_leather_b_06_nif.m2", text = "helm_leather_b_06_nif.m2", + value = "helm_leather_b_06_nif.m2", }, { fileId = "138314", - value = "helm_leather_b_06_nim.m2", text = "helm_leather_b_06_nim.m2", + value = "helm_leather_b_06_nim.m2", }, { fileId = "138315", - value = "helm_leather_b_06_orf.m2", text = "helm_leather_b_06_orf.m2", + value = "helm_leather_b_06_orf.m2", }, { fileId = "138316", - value = "helm_leather_b_06_orm.m2", text = "helm_leather_b_06_orm.m2", + value = "helm_leather_b_06_orm.m2", }, { fileId = "138317", - value = "helm_leather_b_06_scf.m2", text = "helm_leather_b_06_scf.m2", + value = "helm_leather_b_06_scf.m2", }, { fileId = "138318", - value = "helm_leather_b_06_scm.m2", text = "helm_leather_b_06_scm.m2", + value = "helm_leather_b_06_scm.m2", }, { fileId = "138319", - value = "helm_leather_b_06_taf.m2", text = "helm_leather_b_06_taf.m2", + value = "helm_leather_b_06_taf.m2", }, { fileId = "138320", - value = "helm_leather_b_06_tam.m2", text = "helm_leather_b_06_tam.m2", + value = "helm_leather_b_06_tam.m2", }, { fileId = "138321", - value = "helm_leather_b_06_trf.m2", text = "helm_leather_b_06_trf.m2", + value = "helm_leather_b_06_trf.m2", }, { fileId = "138322", - value = "helm_leather_b_06_trm.m2", text = "helm_leather_b_06_trm.m2", + value = "helm_leather_b_06_trm.m2", }, { fileId = "138336", - value = "helm_leather_blood_c_02_bef.m2", text = "helm_leather_blood_c_02_bef.m2", + value = "helm_leather_blood_c_02_bef.m2", }, { fileId = "138337", - value = "helm_leather_blood_c_02_bem.m2", text = "helm_leather_blood_c_02_bem.m2", + value = "helm_leather_blood_c_02_bem.m2", }, { fileId = "138338", - value = "helm_leather_blood_c_02_drf.m2", text = "helm_leather_blood_c_02_drf.m2", + value = "helm_leather_blood_c_02_drf.m2", }, { fileId = "138339", - value = "helm_leather_blood_c_02_drm.m2", text = "helm_leather_blood_c_02_drm.m2", + value = "helm_leather_blood_c_02_drm.m2", }, { fileId = "138340", - value = "helm_leather_blood_c_02_dwf.m2", text = "helm_leather_blood_c_02_dwf.m2", + value = "helm_leather_blood_c_02_dwf.m2", }, { fileId = "138341", - value = "helm_leather_blood_c_02_dwm.m2", text = "helm_leather_blood_c_02_dwm.m2", + value = "helm_leather_blood_c_02_dwm.m2", }, { fileId = "138342", - value = "helm_leather_blood_c_02_gnf.m2", text = "helm_leather_blood_c_02_gnf.m2", + value = "helm_leather_blood_c_02_gnf.m2", }, { fileId = "138343", - value = "helm_leather_blood_c_02_gnm.m2", text = "helm_leather_blood_c_02_gnm.m2", + value = "helm_leather_blood_c_02_gnm.m2", }, { fileId = "138344", - value = "helm_leather_blood_c_02_gof.m2", text = "helm_leather_blood_c_02_gof.m2", + value = "helm_leather_blood_c_02_gof.m2", }, { fileId = "138345", - value = "helm_leather_blood_c_02_gom.m2", text = "helm_leather_blood_c_02_gom.m2", + value = "helm_leather_blood_c_02_gom.m2", }, { fileId = "138346", - value = "helm_leather_blood_c_02_huf.m2", text = "helm_leather_blood_c_02_huf.m2", + value = "helm_leather_blood_c_02_huf.m2", }, { fileId = "138347", - value = "helm_leather_blood_c_02_hum.m2", text = "helm_leather_blood_c_02_hum.m2", + value = "helm_leather_blood_c_02_hum.m2", }, { fileId = "138348", - value = "helm_leather_blood_c_02_nif.m2", text = "helm_leather_blood_c_02_nif.m2", + value = "helm_leather_blood_c_02_nif.m2", }, { fileId = "138349", - value = "helm_leather_blood_c_02_nim.m2", text = "helm_leather_blood_c_02_nim.m2", + value = "helm_leather_blood_c_02_nim.m2", }, { fileId = "138350", - value = "helm_leather_blood_c_02_orf.m2", text = "helm_leather_blood_c_02_orf.m2", + value = "helm_leather_blood_c_02_orf.m2", }, { fileId = "138351", - value = "helm_leather_blood_c_02_orm.m2", text = "helm_leather_blood_c_02_orm.m2", + value = "helm_leather_blood_c_02_orm.m2", }, { fileId = "138352", - value = "helm_leather_blood_c_02_scf.m2", text = "helm_leather_blood_c_02_scf.m2", + value = "helm_leather_blood_c_02_scf.m2", }, { fileId = "138353", - value = "helm_leather_blood_c_02_scm.m2", text = "helm_leather_blood_c_02_scm.m2", + value = "helm_leather_blood_c_02_scm.m2", }, { fileId = "138354", - value = "helm_leather_blood_c_02_taf.m2", text = "helm_leather_blood_c_02_taf.m2", + value = "helm_leather_blood_c_02_taf.m2", }, { fileId = "138355", - value = "helm_leather_blood_c_02_tam.m2", text = "helm_leather_blood_c_02_tam.m2", + value = "helm_leather_blood_c_02_tam.m2", }, { fileId = "138356", - value = "helm_leather_blood_c_02_trf.m2", text = "helm_leather_blood_c_02_trf.m2", + value = "helm_leather_blood_c_02_trf.m2", }, { fileId = "138357", - value = "helm_leather_blood_c_02_trm.m2", text = "helm_leather_blood_c_02_trm.m2", + value = "helm_leather_blood_c_02_trm.m2", }, { fileId = "138358", - value = "helm_leather_d_01_bef.m2", text = "helm_leather_d_01_bef.m2", + value = "helm_leather_d_01_bef.m2", }, { fileId = "138359", - value = "helm_leather_d_01_bem.m2", text = "helm_leather_d_01_bem.m2", + value = "helm_leather_d_01_bem.m2", }, { fileId = "138360", - value = "helm_leather_d_01_drf.m2", text = "helm_leather_d_01_drf.m2", + value = "helm_leather_d_01_drf.m2", }, { fileId = "138361", - value = "helm_leather_d_01_drm.m2", text = "helm_leather_d_01_drm.m2", + value = "helm_leather_d_01_drm.m2", }, { fileId = "138362", - value = "helm_leather_d_01_dwf.m2", text = "helm_leather_d_01_dwf.m2", + value = "helm_leather_d_01_dwf.m2", }, { fileId = "138363", - value = "helm_leather_d_01_dwm.m2", text = "helm_leather_d_01_dwm.m2", + value = "helm_leather_d_01_dwm.m2", }, { fileId = "138364", - value = "helm_leather_d_01_gnf.m2", text = "helm_leather_d_01_gnf.m2", + value = "helm_leather_d_01_gnf.m2", }, { fileId = "138365", - value = "helm_leather_d_01_gnm.m2", text = "helm_leather_d_01_gnm.m2", + value = "helm_leather_d_01_gnm.m2", }, { fileId = "138366", - value = "helm_leather_d_01_gof.m2", text = "helm_leather_d_01_gof.m2", + value = "helm_leather_d_01_gof.m2", }, { fileId = "138367", - value = "helm_leather_d_01_gom.m2", text = "helm_leather_d_01_gom.m2", + value = "helm_leather_d_01_gom.m2", }, { fileId = "138368", - value = "helm_leather_d_01_huf.m2", text = "helm_leather_d_01_huf.m2", + value = "helm_leather_d_01_huf.m2", }, { fileId = "138369", - value = "helm_leather_d_01_hum.m2", text = "helm_leather_d_01_hum.m2", + value = "helm_leather_d_01_hum.m2", }, { fileId = "138370", - value = "helm_leather_d_01_nif.m2", text = "helm_leather_d_01_nif.m2", + value = "helm_leather_d_01_nif.m2", }, { fileId = "138371", - value = "helm_leather_d_01_nim.m2", text = "helm_leather_d_01_nim.m2", + value = "helm_leather_d_01_nim.m2", }, { fileId = "138372", - value = "helm_leather_d_01_orf.m2", text = "helm_leather_d_01_orf.m2", + value = "helm_leather_d_01_orf.m2", }, { fileId = "138373", - value = "helm_leather_d_01_orm.m2", text = "helm_leather_d_01_orm.m2", + value = "helm_leather_d_01_orm.m2", }, { fileId = "138374", - value = "helm_leather_d_01_scf.m2", text = "helm_leather_d_01_scf.m2", + value = "helm_leather_d_01_scf.m2", }, { fileId = "138375", - value = "helm_leather_d_01_scm.m2", text = "helm_leather_d_01_scm.m2", + value = "helm_leather_d_01_scm.m2", }, { fileId = "138376", - value = "helm_leather_d_01_taf.m2", text = "helm_leather_d_01_taf.m2", + value = "helm_leather_d_01_taf.m2", }, { fileId = "138377", - value = "helm_leather_d_01_tam.m2", text = "helm_leather_d_01_tam.m2", + value = "helm_leather_d_01_tam.m2", }, { fileId = "138378", - value = "helm_leather_d_01_trf.m2", text = "helm_leather_d_01_trf.m2", + value = "helm_leather_d_01_trf.m2", }, { fileId = "138379", - value = "helm_leather_d_01_trm.m2", text = "helm_leather_d_01_trm.m2", + value = "helm_leather_d_01_trm.m2", }, { fileId = "138389", - value = "helm_leather_d_02_bef.m2", text = "helm_leather_d_02_bef.m2", + value = "helm_leather_d_02_bef.m2", }, { fileId = "138390", - value = "helm_leather_d_02_bem.m2", text = "helm_leather_d_02_bem.m2", + value = "helm_leather_d_02_bem.m2", }, { fileId = "138391", - value = "helm_leather_d_02_drf.m2", text = "helm_leather_d_02_drf.m2", + value = "helm_leather_d_02_drf.m2", }, { fileId = "138392", - value = "helm_leather_d_02_drm.m2", text = "helm_leather_d_02_drm.m2", + value = "helm_leather_d_02_drm.m2", }, { fileId = "138393", - value = "helm_leather_d_02_dwf.m2", text = "helm_leather_d_02_dwf.m2", + value = "helm_leather_d_02_dwf.m2", }, { fileId = "138394", - value = "helm_leather_d_02_dwm.m2", text = "helm_leather_d_02_dwm.m2", + value = "helm_leather_d_02_dwm.m2", }, { fileId = "138395", - value = "helm_leather_d_02_gnf.m2", text = "helm_leather_d_02_gnf.m2", + value = "helm_leather_d_02_gnf.m2", }, { fileId = "138396", - value = "helm_leather_d_02_gnm.m2", text = "helm_leather_d_02_gnm.m2", + value = "helm_leather_d_02_gnm.m2", }, { fileId = "138397", - value = "helm_leather_d_02_gof.m2", text = "helm_leather_d_02_gof.m2", + value = "helm_leather_d_02_gof.m2", }, { fileId = "138398", - value = "helm_leather_d_02_gom.m2", text = "helm_leather_d_02_gom.m2", + value = "helm_leather_d_02_gom.m2", }, { fileId = "138399", - value = "helm_leather_d_02_huf.m2", text = "helm_leather_d_02_huf.m2", + value = "helm_leather_d_02_huf.m2", }, { fileId = "138400", - value = "helm_leather_d_02_hum.m2", text = "helm_leather_d_02_hum.m2", + value = "helm_leather_d_02_hum.m2", }, { fileId = "138401", - value = "helm_leather_d_02_nif.m2", text = "helm_leather_d_02_nif.m2", + value = "helm_leather_d_02_nif.m2", }, { fileId = "138402", - value = "helm_leather_d_02_nim.m2", text = "helm_leather_d_02_nim.m2", + value = "helm_leather_d_02_nim.m2", }, { fileId = "138403", - value = "helm_leather_d_02_orf.m2", text = "helm_leather_d_02_orf.m2", + value = "helm_leather_d_02_orf.m2", }, { fileId = "138404", - value = "helm_leather_d_02_orm.m2", text = "helm_leather_d_02_orm.m2", + value = "helm_leather_d_02_orm.m2", }, { fileId = "138405", - value = "helm_leather_d_02_scf.m2", text = "helm_leather_d_02_scf.m2", + value = "helm_leather_d_02_scf.m2", }, { fileId = "138406", - value = "helm_leather_d_02_scm.m2", text = "helm_leather_d_02_scm.m2", + value = "helm_leather_d_02_scm.m2", }, { fileId = "138407", - value = "helm_leather_d_02_taf.m2", text = "helm_leather_d_02_taf.m2", + value = "helm_leather_d_02_taf.m2", }, { fileId = "138408", - value = "helm_leather_d_02_tam.m2", text = "helm_leather_d_02_tam.m2", + value = "helm_leather_d_02_tam.m2", }, { fileId = "138409", - value = "helm_leather_d_02_trf.m2", text = "helm_leather_d_02_trf.m2", + value = "helm_leather_d_02_trf.m2", }, { fileId = "138410", - value = "helm_leather_d_02_trm.m2", text = "helm_leather_d_02_trm.m2", + value = "helm_leather_d_02_trm.m2", }, { fileId = "138419", - value = "helm_leather_dungeondruid_a_01_bef.m2", text = "helm_leather_dungeondruid_a_01_bef.m2", + value = "helm_leather_dungeondruid_a_01_bef.m2", }, { fileId = "138420", - value = "helm_leather_dungeondruid_a_01_bem.m2", text = "helm_leather_dungeondruid_a_01_bem.m2", + value = "helm_leather_dungeondruid_a_01_bem.m2", }, { fileId = "138421", - value = "helm_leather_dungeondruid_a_01_drf.m2", text = "helm_leather_dungeondruid_a_01_drf.m2", + value = "helm_leather_dungeondruid_a_01_drf.m2", }, { fileId = "138422", - value = "helm_leather_dungeondruid_a_01_drm.m2", text = "helm_leather_dungeondruid_a_01_drm.m2", + value = "helm_leather_dungeondruid_a_01_drm.m2", }, { fileId = "138423", - value = "helm_leather_dungeondruid_a_01_dwf.m2", text = "helm_leather_dungeondruid_a_01_dwf.m2", + value = "helm_leather_dungeondruid_a_01_dwf.m2", }, { fileId = "138424", - value = "helm_leather_dungeondruid_a_01_dwm.m2", text = "helm_leather_dungeondruid_a_01_dwm.m2", + value = "helm_leather_dungeondruid_a_01_dwm.m2", }, { fileId = "138425", - value = "helm_leather_dungeondruid_a_01_gnf.m2", text = "helm_leather_dungeondruid_a_01_gnf.m2", + value = "helm_leather_dungeondruid_a_01_gnf.m2", }, { fileId = "138426", - value = "helm_leather_dungeondruid_a_01_gnm.m2", text = "helm_leather_dungeondruid_a_01_gnm.m2", + value = "helm_leather_dungeondruid_a_01_gnm.m2", }, { fileId = "138427", - value = "helm_leather_dungeondruid_a_01_gom.m2", text = "helm_leather_dungeondruid_a_01_gom.m2", + value = "helm_leather_dungeondruid_a_01_gom.m2", }, { fileId = "138428", - value = "helm_leather_dungeondruid_a_01_huf.m2", text = "helm_leather_dungeondruid_a_01_huf.m2", + value = "helm_leather_dungeondruid_a_01_huf.m2", }, { fileId = "138429", - value = "helm_leather_dungeondruid_a_01_hum.m2", text = "helm_leather_dungeondruid_a_01_hum.m2", + value = "helm_leather_dungeondruid_a_01_hum.m2", }, { fileId = "138430", - value = "helm_leather_dungeondruid_a_01_nif.m2", text = "helm_leather_dungeondruid_a_01_nif.m2", + value = "helm_leather_dungeondruid_a_01_nif.m2", }, { fileId = "138431", - value = "helm_leather_dungeondruid_a_01_nim.m2", text = "helm_leather_dungeondruid_a_01_nim.m2", + value = "helm_leather_dungeondruid_a_01_nim.m2", }, { fileId = "138432", - value = "helm_leather_dungeondruid_a_01_orf.m2", text = "helm_leather_dungeondruid_a_01_orf.m2", + value = "helm_leather_dungeondruid_a_01_orf.m2", }, { fileId = "138433", - value = "helm_leather_dungeondruid_a_01_orm.m2", text = "helm_leather_dungeondruid_a_01_orm.m2", + value = "helm_leather_dungeondruid_a_01_orm.m2", }, { fileId = "138435", - value = "helm_leather_dungeondruid_a_01_scf.m2", text = "helm_leather_dungeondruid_a_01_scf.m2", + value = "helm_leather_dungeondruid_a_01_scf.m2", }, { fileId = "138436", - value = "helm_leather_dungeondruid_a_01_scm.m2", text = "helm_leather_dungeondruid_a_01_scm.m2", + value = "helm_leather_dungeondruid_a_01_scm.m2", }, { fileId = "138437", - value = "helm_leather_dungeondruid_a_01_taf.m2", text = "helm_leather_dungeondruid_a_01_taf.m2", + value = "helm_leather_dungeondruid_a_01_taf.m2", }, { fileId = "138438", - value = "helm_leather_dungeondruid_a_01_tam.m2", text = "helm_leather_dungeondruid_a_01_tam.m2", + value = "helm_leather_dungeondruid_a_01_tam.m2", }, { fileId = "138439", - value = "helm_leather_dungeondruid_a_01_trf.m2", text = "helm_leather_dungeondruid_a_01_trf.m2", + value = "helm_leather_dungeondruid_a_01_trf.m2", }, { fileId = "138440", - value = "helm_leather_dungeondruid_a_01_trm.m2", text = "helm_leather_dungeondruid_a_01_trm.m2", + value = "helm_leather_dungeondruid_a_01_trm.m2", }, { fileId = "138445", - value = "helm_leather_dungeondruid_b_01_bef.m2", text = "helm_leather_dungeondruid_b_01_bef.m2", + value = "helm_leather_dungeondruid_b_01_bef.m2", }, { fileId = "138446", - value = "helm_leather_dungeondruid_b_01_bem.m2", text = "helm_leather_dungeondruid_b_01_bem.m2", + value = "helm_leather_dungeondruid_b_01_bem.m2", }, { fileId = "138447", - value = "helm_leather_dungeondruid_b_01_drf.m2", text = "helm_leather_dungeondruid_b_01_drf.m2", + value = "helm_leather_dungeondruid_b_01_drf.m2", }, { fileId = "138448", - value = "helm_leather_dungeondruid_b_01_drm.m2", text = "helm_leather_dungeondruid_b_01_drm.m2", + value = "helm_leather_dungeondruid_b_01_drm.m2", }, { fileId = "138449", - value = "helm_leather_dungeondruid_b_01_dwf.m2", text = "helm_leather_dungeondruid_b_01_dwf.m2", + value = "helm_leather_dungeondruid_b_01_dwf.m2", }, { fileId = "138450", - value = "helm_leather_dungeondruid_b_01_dwm.m2", text = "helm_leather_dungeondruid_b_01_dwm.m2", + value = "helm_leather_dungeondruid_b_01_dwm.m2", }, { fileId = "138451", - value = "helm_leather_dungeondruid_b_01_gnf.m2", text = "helm_leather_dungeondruid_b_01_gnf.m2", + value = "helm_leather_dungeondruid_b_01_gnf.m2", }, { fileId = "138452", - value = "helm_leather_dungeondruid_b_01_gnm.m2", text = "helm_leather_dungeondruid_b_01_gnm.m2", + value = "helm_leather_dungeondruid_b_01_gnm.m2", }, { fileId = "138453", - value = "helm_leather_dungeondruid_b_01_gof.m2", text = "helm_leather_dungeondruid_b_01_gof.m2", + value = "helm_leather_dungeondruid_b_01_gof.m2", }, { fileId = "138454", - value = "helm_leather_dungeondruid_b_01_gom.m2", text = "helm_leather_dungeondruid_b_01_gom.m2", + value = "helm_leather_dungeondruid_b_01_gom.m2", }, { fileId = "138455", - value = "helm_leather_dungeondruid_b_01_huf.m2", text = "helm_leather_dungeondruid_b_01_huf.m2", + value = "helm_leather_dungeondruid_b_01_huf.m2", }, { fileId = "138456", - value = "helm_leather_dungeondruid_b_01_hum.m2", text = "helm_leather_dungeondruid_b_01_hum.m2", + value = "helm_leather_dungeondruid_b_01_hum.m2", }, { fileId = "138457", - value = "helm_leather_dungeondruid_b_01_nif.m2", text = "helm_leather_dungeondruid_b_01_nif.m2", + value = "helm_leather_dungeondruid_b_01_nif.m2", }, { fileId = "138458", - value = "helm_leather_dungeondruid_b_01_nim.m2", text = "helm_leather_dungeondruid_b_01_nim.m2", + value = "helm_leather_dungeondruid_b_01_nim.m2", }, { fileId = "138459", - value = "helm_leather_dungeondruid_b_01_orf.m2", text = "helm_leather_dungeondruid_b_01_orf.m2", + value = "helm_leather_dungeondruid_b_01_orf.m2", }, { fileId = "138460", - value = "helm_leather_dungeondruid_b_01_orm.m2", text = "helm_leather_dungeondruid_b_01_orm.m2", + value = "helm_leather_dungeondruid_b_01_orm.m2", }, { fileId = "138461", - value = "helm_leather_dungeondruid_b_01_scf.m2", text = "helm_leather_dungeondruid_b_01_scf.m2", + value = "helm_leather_dungeondruid_b_01_scf.m2", }, { fileId = "138462", - value = "helm_leather_dungeondruid_b_01_scm.m2", text = "helm_leather_dungeondruid_b_01_scm.m2", + value = "helm_leather_dungeondruid_b_01_scm.m2", }, { fileId = "138463", - value = "helm_leather_dungeondruid_b_01_taf.m2", text = "helm_leather_dungeondruid_b_01_taf.m2", + value = "helm_leather_dungeondruid_b_01_taf.m2", }, { fileId = "138464", - value = "helm_leather_dungeondruid_b_01_tam.m2", text = "helm_leather_dungeondruid_b_01_tam.m2", + value = "helm_leather_dungeondruid_b_01_tam.m2", }, { fileId = "138465", - value = "helm_leather_dungeondruid_b_01_trf.m2", text = "helm_leather_dungeondruid_b_01_trf.m2", + value = "helm_leather_dungeondruid_b_01_trf.m2", }, { fileId = "138466", - value = "helm_leather_dungeondruid_b_01_trm.m2", text = "helm_leather_dungeondruid_b_01_trm.m2", + value = "helm_leather_dungeondruid_b_01_trm.m2", }, { fileId = "138471", - value = "helm_leather_dungeonrogue_b_01_bef.m2", text = "helm_leather_dungeonrogue_b_01_bef.m2", + value = "helm_leather_dungeonrogue_b_01_bef.m2", }, { fileId = "138472", - value = "helm_leather_dungeonrogue_b_01_bem.m2", text = "helm_leather_dungeonrogue_b_01_bem.m2", + value = "helm_leather_dungeonrogue_b_01_bem.m2", }, { fileId = "138473", - value = "helm_leather_dungeonrogue_b_01_drf.m2", text = "helm_leather_dungeonrogue_b_01_drf.m2", + value = "helm_leather_dungeonrogue_b_01_drf.m2", }, { fileId = "138474", - value = "helm_leather_dungeonrogue_b_01_drm.m2", text = "helm_leather_dungeonrogue_b_01_drm.m2", + value = "helm_leather_dungeonrogue_b_01_drm.m2", }, { fileId = "138475", - value = "helm_leather_dungeonrogue_b_01_dwf.m2", text = "helm_leather_dungeonrogue_b_01_dwf.m2", + value = "helm_leather_dungeonrogue_b_01_dwf.m2", }, { fileId = "138476", - value = "helm_leather_dungeonrogue_b_01_dwm.m2", text = "helm_leather_dungeonrogue_b_01_dwm.m2", + value = "helm_leather_dungeonrogue_b_01_dwm.m2", }, { fileId = "138477", - value = "helm_leather_dungeonrogue_b_01_gnf.m2", text = "helm_leather_dungeonrogue_b_01_gnf.m2", + value = "helm_leather_dungeonrogue_b_01_gnf.m2", }, { fileId = "138478", - value = "helm_leather_dungeonrogue_b_01_gnm.m2", text = "helm_leather_dungeonrogue_b_01_gnm.m2", + value = "helm_leather_dungeonrogue_b_01_gnm.m2", }, { fileId = "138479", - value = "helm_leather_dungeonrogue_b_01_gof.m2", text = "helm_leather_dungeonrogue_b_01_gof.m2", + value = "helm_leather_dungeonrogue_b_01_gof.m2", }, { fileId = "138480", - value = "helm_leather_dungeonrogue_b_01_gom.m2", text = "helm_leather_dungeonrogue_b_01_gom.m2", + value = "helm_leather_dungeonrogue_b_01_gom.m2", }, { fileId = "138481", - value = "helm_leather_dungeonrogue_b_01_huf.m2", text = "helm_leather_dungeonrogue_b_01_huf.m2", + value = "helm_leather_dungeonrogue_b_01_huf.m2", }, { fileId = "138482", - value = "helm_leather_dungeonrogue_b_01_hum.m2", text = "helm_leather_dungeonrogue_b_01_hum.m2", + value = "helm_leather_dungeonrogue_b_01_hum.m2", }, { fileId = "138483", - value = "helm_leather_dungeonrogue_b_01_nif.m2", text = "helm_leather_dungeonrogue_b_01_nif.m2", + value = "helm_leather_dungeonrogue_b_01_nif.m2", }, { fileId = "138484", - value = "helm_leather_dungeonrogue_b_01_nim.m2", text = "helm_leather_dungeonrogue_b_01_nim.m2", + value = "helm_leather_dungeonrogue_b_01_nim.m2", }, { fileId = "138485", - value = "helm_leather_dungeonrogue_b_01_orf.m2", text = "helm_leather_dungeonrogue_b_01_orf.m2", + value = "helm_leather_dungeonrogue_b_01_orf.m2", }, { fileId = "138486", - value = "helm_leather_dungeonrogue_b_01_orm.m2", text = "helm_leather_dungeonrogue_b_01_orm.m2", + value = "helm_leather_dungeonrogue_b_01_orm.m2", }, { fileId = "138487", - value = "helm_leather_dungeonrogue_b_01_scf.m2", text = "helm_leather_dungeonrogue_b_01_scf.m2", + value = "helm_leather_dungeonrogue_b_01_scf.m2", }, { fileId = "138488", - value = "helm_leather_dungeonrogue_b_01_scm.m2", text = "helm_leather_dungeonrogue_b_01_scm.m2", + value = "helm_leather_dungeonrogue_b_01_scm.m2", }, { fileId = "138489", - value = "helm_leather_dungeonrogue_b_01_taf.m2", text = "helm_leather_dungeonrogue_b_01_taf.m2", + value = "helm_leather_dungeonrogue_b_01_taf.m2", }, { fileId = "138490", - value = "helm_leather_dungeonrogue_b_01_tam.m2", text = "helm_leather_dungeonrogue_b_01_tam.m2", + value = "helm_leather_dungeonrogue_b_01_tam.m2", }, { fileId = "138491", - value = "helm_leather_dungeonrogue_b_01_trf.m2", text = "helm_leather_dungeonrogue_b_01_trf.m2", + value = "helm_leather_dungeonrogue_b_01_trf.m2", }, { fileId = "138492", - value = "helm_leather_dungeonrogue_b_01_trm.m2", text = "helm_leather_dungeonrogue_b_01_trm.m2", + value = "helm_leather_dungeonrogue_b_01_trm.m2", }, { fileId = "138618", - value = "helm_leather_pvpalliance_a_01_bef.m2", text = "helm_leather_pvpalliance_a_01_bef.m2", + value = "helm_leather_pvpalliance_a_01_bef.m2", }, { fileId = "138619", - value = "helm_leather_pvpalliance_a_01_bem.m2", text = "helm_leather_pvpalliance_a_01_bem.m2", + value = "helm_leather_pvpalliance_a_01_bem.m2", }, { fileId = "138620", - value = "helm_leather_pvpalliance_a_01_drf.m2", text = "helm_leather_pvpalliance_a_01_drf.m2", + value = "helm_leather_pvpalliance_a_01_drf.m2", }, { fileId = "138621", - value = "helm_leather_pvpalliance_a_01_drm.m2", text = "helm_leather_pvpalliance_a_01_drm.m2", + value = "helm_leather_pvpalliance_a_01_drm.m2", }, { fileId = "138622", - value = "helm_leather_pvpalliance_a_01_dwf.m2", text = "helm_leather_pvpalliance_a_01_dwf.m2", + value = "helm_leather_pvpalliance_a_01_dwf.m2", }, { fileId = "138623", - value = "helm_leather_pvpalliance_a_01_dwm.m2", text = "helm_leather_pvpalliance_a_01_dwm.m2", + value = "helm_leather_pvpalliance_a_01_dwm.m2", }, { fileId = "138624", - value = "helm_leather_pvpalliance_a_01_gnf.m2", text = "helm_leather_pvpalliance_a_01_gnf.m2", + value = "helm_leather_pvpalliance_a_01_gnf.m2", }, { fileId = "138625", - value = "helm_leather_pvpalliance_a_01_gnm.m2", text = "helm_leather_pvpalliance_a_01_gnm.m2", + value = "helm_leather_pvpalliance_a_01_gnm.m2", }, { fileId = "138626", - value = "helm_leather_pvpalliance_a_01_gof.m2", text = "helm_leather_pvpalliance_a_01_gof.m2", + value = "helm_leather_pvpalliance_a_01_gof.m2", }, { fileId = "138627", - value = "helm_leather_pvpalliance_a_01_gom.m2", text = "helm_leather_pvpalliance_a_01_gom.m2", + value = "helm_leather_pvpalliance_a_01_gom.m2", }, { fileId = "138628", - value = "helm_leather_pvpalliance_a_01_huf.m2", text = "helm_leather_pvpalliance_a_01_huf.m2", + value = "helm_leather_pvpalliance_a_01_huf.m2", }, { fileId = "138629", - value = "helm_leather_pvpalliance_a_01_hum.m2", text = "helm_leather_pvpalliance_a_01_hum.m2", + value = "helm_leather_pvpalliance_a_01_hum.m2", }, { fileId = "138630", - value = "helm_leather_pvpalliance_a_01_nif.m2", text = "helm_leather_pvpalliance_a_01_nif.m2", + value = "helm_leather_pvpalliance_a_01_nif.m2", }, { fileId = "138631", - value = "helm_leather_pvpalliance_a_01_nim.m2", text = "helm_leather_pvpalliance_a_01_nim.m2", + value = "helm_leather_pvpalliance_a_01_nim.m2", }, { fileId = "138632", - value = "helm_leather_pvpalliance_a_01_orf.m2", text = "helm_leather_pvpalliance_a_01_orf.m2", + value = "helm_leather_pvpalliance_a_01_orf.m2", }, { fileId = "138633", - value = "helm_leather_pvpalliance_a_01_orm.m2", text = "helm_leather_pvpalliance_a_01_orm.m2", + value = "helm_leather_pvpalliance_a_01_orm.m2", }, { fileId = "138634", - value = "helm_leather_pvpalliance_a_01_scf.m2", text = "helm_leather_pvpalliance_a_01_scf.m2", + value = "helm_leather_pvpalliance_a_01_scf.m2", }, { fileId = "138635", - value = "helm_leather_pvpalliance_a_01_scm.m2", text = "helm_leather_pvpalliance_a_01_scm.m2", + value = "helm_leather_pvpalliance_a_01_scm.m2", }, { fileId = "138636", - value = "helm_leather_pvpalliance_a_01_taf.m2", text = "helm_leather_pvpalliance_a_01_taf.m2", + value = "helm_leather_pvpalliance_a_01_taf.m2", }, { fileId = "138637", - value = "helm_leather_pvpalliance_a_01_tam.m2", text = "helm_leather_pvpalliance_a_01_tam.m2", + value = "helm_leather_pvpalliance_a_01_tam.m2", }, { fileId = "138638", - value = "helm_leather_pvpalliance_a_01_trf.m2", text = "helm_leather_pvpalliance_a_01_trf.m2", + value = "helm_leather_pvpalliance_a_01_trf.m2", }, { fileId = "138639", - value = "helm_leather_pvpalliance_a_01_trm.m2", text = "helm_leather_pvpalliance_a_01_trm.m2", + value = "helm_leather_pvpalliance_a_01_trm.m2", }, { fileId = "138642", - value = "helm_leather_pvpalliance_c_01_bef.m2", text = "helm_leather_pvpalliance_c_01_bef.m2", + value = "helm_leather_pvpalliance_c_01_bef.m2", }, { fileId = "138643", - value = "helm_leather_pvpalliance_c_01_drf.m2", text = "helm_leather_pvpalliance_c_01_drf.m2", + value = "helm_leather_pvpalliance_c_01_drf.m2", }, { fileId = "138644", - value = "helm_leather_pvpalliance_c_01_drm.m2", text = "helm_leather_pvpalliance_c_01_drm.m2", + value = "helm_leather_pvpalliance_c_01_drm.m2", }, { fileId = "138645", - value = "helm_leather_pvpalliance_c_01_gof.m2", text = "helm_leather_pvpalliance_c_01_gof.m2", + value = "helm_leather_pvpalliance_c_01_gof.m2", }, { fileId = "138646", - value = "helm_leather_pvphorde_a_01_bef.m2", text = "helm_leather_pvphorde_a_01_bef.m2", + value = "helm_leather_pvphorde_a_01_bef.m2", }, { fileId = "138647", - value = "helm_leather_pvphorde_a_01_bem.m2", text = "helm_leather_pvphorde_a_01_bem.m2", + value = "helm_leather_pvphorde_a_01_bem.m2", }, { fileId = "138648", - value = "helm_leather_pvphorde_a_01_drf.m2", text = "helm_leather_pvphorde_a_01_drf.m2", + value = "helm_leather_pvphorde_a_01_drf.m2", }, { fileId = "138649", - value = "helm_leather_pvphorde_a_01_drm.m2", text = "helm_leather_pvphorde_a_01_drm.m2", + value = "helm_leather_pvphorde_a_01_drm.m2", }, { fileId = "138650", - value = "helm_leather_pvphorde_a_01_dwf.m2", text = "helm_leather_pvphorde_a_01_dwf.m2", + value = "helm_leather_pvphorde_a_01_dwf.m2", }, { fileId = "138651", - value = "helm_leather_pvphorde_a_01_dwm.m2", text = "helm_leather_pvphorde_a_01_dwm.m2", + value = "helm_leather_pvphorde_a_01_dwm.m2", }, { fileId = "138652", - value = "helm_leather_pvphorde_a_01_gnf.m2", text = "helm_leather_pvphorde_a_01_gnf.m2", + value = "helm_leather_pvphorde_a_01_gnf.m2", }, { fileId = "138653", - value = "helm_leather_pvphorde_a_01_gnm.m2", text = "helm_leather_pvphorde_a_01_gnm.m2", + value = "helm_leather_pvphorde_a_01_gnm.m2", }, { fileId = "138654", - value = "helm_leather_pvphorde_a_01_gof.m2", text = "helm_leather_pvphorde_a_01_gof.m2", + value = "helm_leather_pvphorde_a_01_gof.m2", }, { fileId = "138655", - value = "helm_leather_pvphorde_a_01_gom.m2", text = "helm_leather_pvphorde_a_01_gom.m2", + value = "helm_leather_pvphorde_a_01_gom.m2", }, { fileId = "138656", - value = "helm_leather_pvphorde_a_01_huf.m2", text = "helm_leather_pvphorde_a_01_huf.m2", + value = "helm_leather_pvphorde_a_01_huf.m2", }, { fileId = "138657", - value = "helm_leather_pvphorde_a_01_hum.m2", text = "helm_leather_pvphorde_a_01_hum.m2", + value = "helm_leather_pvphorde_a_01_hum.m2", }, { fileId = "138658", - value = "helm_leather_pvphorde_a_01_nif.m2", text = "helm_leather_pvphorde_a_01_nif.m2", + value = "helm_leather_pvphorde_a_01_nif.m2", }, { fileId = "138659", - value = "helm_leather_pvphorde_a_01_nim.m2", text = "helm_leather_pvphorde_a_01_nim.m2", + value = "helm_leather_pvphorde_a_01_nim.m2", }, { fileId = "138660", - value = "helm_leather_pvphorde_a_01_orf.m2", text = "helm_leather_pvphorde_a_01_orf.m2", + value = "helm_leather_pvphorde_a_01_orf.m2", }, { fileId = "138661", - value = "helm_leather_pvphorde_a_01_orm.m2", text = "helm_leather_pvphorde_a_01_orm.m2", + value = "helm_leather_pvphorde_a_01_orm.m2", }, { fileId = "138662", - value = "helm_leather_pvphorde_a_01_scf.m2", text = "helm_leather_pvphorde_a_01_scf.m2", + value = "helm_leather_pvphorde_a_01_scf.m2", }, { fileId = "138663", - value = "helm_leather_pvphorde_a_01_scm.m2", text = "helm_leather_pvphorde_a_01_scm.m2", + value = "helm_leather_pvphorde_a_01_scm.m2", }, { fileId = "138664", - value = "helm_leather_pvphorde_a_01_taf.m2", text = "helm_leather_pvphorde_a_01_taf.m2", + value = "helm_leather_pvphorde_a_01_taf.m2", }, { fileId = "138665", - value = "helm_leather_pvphorde_a_01_tam.m2", text = "helm_leather_pvphorde_a_01_tam.m2", + value = "helm_leather_pvphorde_a_01_tam.m2", }, { fileId = "138666", - value = "helm_leather_pvphorde_a_01_trf.m2", text = "helm_leather_pvphorde_a_01_trf.m2", + value = "helm_leather_pvphorde_a_01_trf.m2", }, { fileId = "138667", - value = "helm_leather_pvphorde_a_01_trm.m2", text = "helm_leather_pvphorde_a_01_trm.m2", + value = "helm_leather_pvphorde_a_01_trm.m2", }, { fileId = "138670", - value = "helm_leather_pvphorde_c_01_bef.m2", text = "helm_leather_pvphorde_c_01_bef.m2", + value = "helm_leather_pvphorde_c_01_bef.m2", }, { fileId = "138671", - value = "helm_leather_pvphorde_c_01_bem.m2", text = "helm_leather_pvphorde_c_01_bem.m2", + value = "helm_leather_pvphorde_c_01_bem.m2", }, { fileId = "138672", - value = "helm_leather_pvphorde_c_01_drf.m2", text = "helm_leather_pvphorde_c_01_drf.m2", + value = "helm_leather_pvphorde_c_01_drf.m2", }, { fileId = "138673", - value = "helm_leather_pvphorde_c_01_drm.m2", text = "helm_leather_pvphorde_c_01_drm.m2", + value = "helm_leather_pvphorde_c_01_drm.m2", }, { fileId = "138674", - value = "helm_leather_pvphorde_c_01_dwf.m2", text = "helm_leather_pvphorde_c_01_dwf.m2", + value = "helm_leather_pvphorde_c_01_dwf.m2", }, { fileId = "138675", - value = "helm_leather_pvphorde_c_01_dwm.m2", text = "helm_leather_pvphorde_c_01_dwm.m2", + value = "helm_leather_pvphorde_c_01_dwm.m2", }, { fileId = "138676", - value = "helm_leather_pvphorde_c_01_gnf.m2", text = "helm_leather_pvphorde_c_01_gnf.m2", + value = "helm_leather_pvphorde_c_01_gnf.m2", }, { fileId = "138677", - value = "helm_leather_pvphorde_c_01_gnm.m2", text = "helm_leather_pvphorde_c_01_gnm.m2", + value = "helm_leather_pvphorde_c_01_gnm.m2", }, { fileId = "138678", - value = "helm_leather_pvphorde_c_01_gof.m2", text = "helm_leather_pvphorde_c_01_gof.m2", + value = "helm_leather_pvphorde_c_01_gof.m2", }, { fileId = "138679", - value = "helm_leather_pvphorde_c_01_gom.m2", text = "helm_leather_pvphorde_c_01_gom.m2", + value = "helm_leather_pvphorde_c_01_gom.m2", }, { fileId = "138680", - value = "helm_leather_pvphorde_c_01_huf.m2", text = "helm_leather_pvphorde_c_01_huf.m2", + value = "helm_leather_pvphorde_c_01_huf.m2", }, { fileId = "138681", - value = "helm_leather_pvphorde_c_01_hum.m2", text = "helm_leather_pvphorde_c_01_hum.m2", + value = "helm_leather_pvphorde_c_01_hum.m2", }, { fileId = "138682", - value = "helm_leather_pvphorde_c_01_nif.m2", text = "helm_leather_pvphorde_c_01_nif.m2", + value = "helm_leather_pvphorde_c_01_nif.m2", }, { fileId = "138683", - value = "helm_leather_pvphorde_c_01_nim.m2", text = "helm_leather_pvphorde_c_01_nim.m2", + value = "helm_leather_pvphorde_c_01_nim.m2", }, { fileId = "138684", - value = "helm_leather_pvphorde_c_01_orf.m2", text = "helm_leather_pvphorde_c_01_orf.m2", + value = "helm_leather_pvphorde_c_01_orf.m2", }, { fileId = "138685", - value = "helm_leather_pvphorde_c_01_orm.m2", text = "helm_leather_pvphorde_c_01_orm.m2", + value = "helm_leather_pvphorde_c_01_orm.m2", }, { fileId = "138686", - value = "helm_leather_pvphorde_c_01_scf.m2", text = "helm_leather_pvphorde_c_01_scf.m2", + value = "helm_leather_pvphorde_c_01_scf.m2", }, { fileId = "138687", - value = "helm_leather_pvphorde_c_01_scm.m2", text = "helm_leather_pvphorde_c_01_scm.m2", + value = "helm_leather_pvphorde_c_01_scm.m2", }, { fileId = "138688", - value = "helm_leather_pvphorde_c_01_taf.m2", text = "helm_leather_pvphorde_c_01_taf.m2", + value = "helm_leather_pvphorde_c_01_taf.m2", }, { fileId = "138689", - value = "helm_leather_pvphorde_c_01_tam.m2", text = "helm_leather_pvphorde_c_01_tam.m2", + value = "helm_leather_pvphorde_c_01_tam.m2", }, { fileId = "138690", - value = "helm_leather_pvphorde_c_01_trf.m2", text = "helm_leather_pvphorde_c_01_trf.m2", + value = "helm_leather_pvphorde_c_01_trf.m2", }, { fileId = "138691", - value = "helm_leather_pvphorde_c_01_trm.m2", text = "helm_leather_pvphorde_c_01_trm.m2", + value = "helm_leather_pvphorde_c_01_trm.m2", }, { fileId = "138695", - value = "helm_leather_raiddruid_a_01_bef.m2", text = "helm_leather_raiddruid_a_01_bef.m2", + value = "helm_leather_raiddruid_a_01_bef.m2", }, { fileId = "138696", - value = "helm_leather_raiddruid_a_01_bem.m2", text = "helm_leather_raiddruid_a_01_bem.m2", + value = "helm_leather_raiddruid_a_01_bem.m2", }, { fileId = "138697", - value = "helm_leather_raiddruid_a_01_drf.m2", text = "helm_leather_raiddruid_a_01_drf.m2", + value = "helm_leather_raiddruid_a_01_drf.m2", }, { fileId = "138698", - value = "helm_leather_raiddruid_a_01_drm.m2", text = "helm_leather_raiddruid_a_01_drm.m2", + value = "helm_leather_raiddruid_a_01_drm.m2", }, { fileId = "138699", - value = "helm_leather_raiddruid_a_01_dwf.m2", text = "helm_leather_raiddruid_a_01_dwf.m2", + value = "helm_leather_raiddruid_a_01_dwf.m2", }, { fileId = "138700", - value = "helm_leather_raiddruid_a_01_dwm.m2", text = "helm_leather_raiddruid_a_01_dwm.m2", + value = "helm_leather_raiddruid_a_01_dwm.m2", }, { fileId = "138701", - value = "helm_leather_raiddruid_a_01_gnf.m2", text = "helm_leather_raiddruid_a_01_gnf.m2", + value = "helm_leather_raiddruid_a_01_gnf.m2", }, { fileId = "138702", - value = "helm_leather_raiddruid_a_01_gnm.m2", text = "helm_leather_raiddruid_a_01_gnm.m2", + value = "helm_leather_raiddruid_a_01_gnm.m2", }, { fileId = "138703", - value = "helm_leather_raiddruid_a_01_gof.m2", text = "helm_leather_raiddruid_a_01_gof.m2", + value = "helm_leather_raiddruid_a_01_gof.m2", }, { fileId = "138704", - value = "helm_leather_raiddruid_a_01_huf.m2", text = "helm_leather_raiddruid_a_01_huf.m2", + value = "helm_leather_raiddruid_a_01_huf.m2", }, { fileId = "138705", - value = "helm_leather_raiddruid_a_01_hum.m2", text = "helm_leather_raiddruid_a_01_hum.m2", + value = "helm_leather_raiddruid_a_01_hum.m2", }, { fileId = "138706", - value = "helm_leather_raiddruid_a_01_nif.m2", text = "helm_leather_raiddruid_a_01_nif.m2", + value = "helm_leather_raiddruid_a_01_nif.m2", }, { fileId = "138707", - value = "helm_leather_raiddruid_a_01_nim.m2", text = "helm_leather_raiddruid_a_01_nim.m2", + value = "helm_leather_raiddruid_a_01_nim.m2", }, { fileId = "138708", - value = "helm_leather_raiddruid_a_01_orf.m2", text = "helm_leather_raiddruid_a_01_orf.m2", + value = "helm_leather_raiddruid_a_01_orf.m2", }, { fileId = "138709", - value = "helm_leather_raiddruid_a_01_orm.m2", text = "helm_leather_raiddruid_a_01_orm.m2", + value = "helm_leather_raiddruid_a_01_orm.m2", }, { fileId = "138710", - value = "helm_leather_raiddruid_a_01_scf.m2", text = "helm_leather_raiddruid_a_01_scf.m2", + value = "helm_leather_raiddruid_a_01_scf.m2", }, { fileId = "138711", - value = "helm_leather_raiddruid_a_01_scm.m2", text = "helm_leather_raiddruid_a_01_scm.m2", + value = "helm_leather_raiddruid_a_01_scm.m2", }, { fileId = "138712", - value = "helm_leather_raiddruid_a_01_taf.m2", text = "helm_leather_raiddruid_a_01_taf.m2", + value = "helm_leather_raiddruid_a_01_taf.m2", }, { fileId = "138713", - value = "helm_leather_raiddruid_a_01_tam.m2", text = "helm_leather_raiddruid_a_01_tam.m2", + value = "helm_leather_raiddruid_a_01_tam.m2", }, { fileId = "138714", - value = "helm_leather_raiddruid_a_01_trf.m2", text = "helm_leather_raiddruid_a_01_trf.m2", + value = "helm_leather_raiddruid_a_01_trf.m2", }, { fileId = "138715", - value = "helm_leather_raiddruid_a_01_trm.m2", text = "helm_leather_raiddruid_a_01_trm.m2", + value = "helm_leather_raiddruid_a_01_trm.m2", }, { fileId = "138720", - value = "helm_leather_raiddruid_b_01_bef.m2", text = "helm_leather_raiddruid_b_01_bef.m2", + value = "helm_leather_raiddruid_b_01_bef.m2", }, { fileId = "138721", - value = "helm_leather_raiddruid_b_01_bem.m2", text = "helm_leather_raiddruid_b_01_bem.m2", + value = "helm_leather_raiddruid_b_01_bem.m2", }, { fileId = "138722", - value = "helm_leather_raiddruid_b_01_drf.m2", text = "helm_leather_raiddruid_b_01_drf.m2", + value = "helm_leather_raiddruid_b_01_drf.m2", }, { fileId = "138723", - value = "helm_leather_raiddruid_b_01_drm.m2", text = "helm_leather_raiddruid_b_01_drm.m2", + value = "helm_leather_raiddruid_b_01_drm.m2", }, { fileId = "138724", - value = "helm_leather_raiddruid_b_01_dwf.m2", text = "helm_leather_raiddruid_b_01_dwf.m2", + value = "helm_leather_raiddruid_b_01_dwf.m2", }, { fileId = "138725", - value = "helm_leather_raiddruid_b_01_dwm.m2", text = "helm_leather_raiddruid_b_01_dwm.m2", + value = "helm_leather_raiddruid_b_01_dwm.m2", }, { fileId = "138726", - value = "helm_leather_raiddruid_b_01_gnf.m2", text = "helm_leather_raiddruid_b_01_gnf.m2", + value = "helm_leather_raiddruid_b_01_gnf.m2", }, { fileId = "138727", - value = "helm_leather_raiddruid_b_01_gnm.m2", text = "helm_leather_raiddruid_b_01_gnm.m2", + value = "helm_leather_raiddruid_b_01_gnm.m2", }, { fileId = "138728", - value = "helm_leather_raiddruid_b_01_gof.m2", text = "helm_leather_raiddruid_b_01_gof.m2", + value = "helm_leather_raiddruid_b_01_gof.m2", }, { fileId = "138729", - value = "helm_leather_raiddruid_b_01_gom.m2", text = "helm_leather_raiddruid_b_01_gom.m2", + value = "helm_leather_raiddruid_b_01_gom.m2", }, { fileId = "138730", - value = "helm_leather_raiddruid_b_01_huf.m2", text = "helm_leather_raiddruid_b_01_huf.m2", + value = "helm_leather_raiddruid_b_01_huf.m2", }, { fileId = "138731", - value = "helm_leather_raiddruid_b_01_hum.m2", text = "helm_leather_raiddruid_b_01_hum.m2", + value = "helm_leather_raiddruid_b_01_hum.m2", }, { fileId = "138732", - value = "helm_leather_raiddruid_b_01_nif.m2", text = "helm_leather_raiddruid_b_01_nif.m2", + value = "helm_leather_raiddruid_b_01_nif.m2", }, { fileId = "138733", - value = "helm_leather_raiddruid_b_01_nim.m2", text = "helm_leather_raiddruid_b_01_nim.m2", + value = "helm_leather_raiddruid_b_01_nim.m2", }, { fileId = "138734", - value = "helm_leather_raiddruid_b_01_orf.m2", text = "helm_leather_raiddruid_b_01_orf.m2", + value = "helm_leather_raiddruid_b_01_orf.m2", }, { fileId = "138735", - value = "helm_leather_raiddruid_b_01_orm.m2", text = "helm_leather_raiddruid_b_01_orm.m2", + value = "helm_leather_raiddruid_b_01_orm.m2", }, { fileId = "138736", - value = "helm_leather_raiddruid_b_01_scf.m2", text = "helm_leather_raiddruid_b_01_scf.m2", + value = "helm_leather_raiddruid_b_01_scf.m2", }, { fileId = "138737", - value = "helm_leather_raiddruid_b_01_scm.m2", text = "helm_leather_raiddruid_b_01_scm.m2", + value = "helm_leather_raiddruid_b_01_scm.m2", }, { fileId = "138738", - value = "helm_leather_raiddruid_b_01_taf.m2", text = "helm_leather_raiddruid_b_01_taf.m2", + value = "helm_leather_raiddruid_b_01_taf.m2", }, { fileId = "138739", - value = "helm_leather_raiddruid_b_01_tam.m2", text = "helm_leather_raiddruid_b_01_tam.m2", + value = "helm_leather_raiddruid_b_01_tam.m2", }, { fileId = "138740", - value = "helm_leather_raiddruid_b_01_trf.m2", text = "helm_leather_raiddruid_b_01_trf.m2", + value = "helm_leather_raiddruid_b_01_trf.m2", }, { fileId = "138741", - value = "helm_leather_raiddruid_b_01_trm.m2", text = "helm_leather_raiddruid_b_01_trm.m2", + value = "helm_leather_raiddruid_b_01_trm.m2", }, { fileId = "138746", - value = "helm_leather_raiddruid_c_01_bef.m2", text = "helm_leather_raiddruid_c_01_bef.m2", + value = "helm_leather_raiddruid_c_01_bef.m2", }, { fileId = "138747", - value = "helm_leather_raiddruid_c_01_bem.m2", text = "helm_leather_raiddruid_c_01_bem.m2", + value = "helm_leather_raiddruid_c_01_bem.m2", }, { fileId = "138748", - value = "helm_leather_raiddruid_c_01_drf.m2", text = "helm_leather_raiddruid_c_01_drf.m2", + value = "helm_leather_raiddruid_c_01_drf.m2", }, { fileId = "138749", - value = "helm_leather_raiddruid_c_01_drm.m2", text = "helm_leather_raiddruid_c_01_drm.m2", + value = "helm_leather_raiddruid_c_01_drm.m2", }, { fileId = "138750", - value = "helm_leather_raiddruid_c_01_dwf.m2", text = "helm_leather_raiddruid_c_01_dwf.m2", + value = "helm_leather_raiddruid_c_01_dwf.m2", }, { fileId = "138751", - value = "helm_leather_raiddruid_c_01_dwm.m2", text = "helm_leather_raiddruid_c_01_dwm.m2", + value = "helm_leather_raiddruid_c_01_dwm.m2", }, { fileId = "138752", - value = "helm_leather_raiddruid_c_01_gnf.m2", text = "helm_leather_raiddruid_c_01_gnf.m2", + value = "helm_leather_raiddruid_c_01_gnf.m2", }, { fileId = "138753", - value = "helm_leather_raiddruid_c_01_gnm.m2", text = "helm_leather_raiddruid_c_01_gnm.m2", + value = "helm_leather_raiddruid_c_01_gnm.m2", }, { fileId = "138754", - value = "helm_leather_raiddruid_c_01_gof.m2", text = "helm_leather_raiddruid_c_01_gof.m2", + value = "helm_leather_raiddruid_c_01_gof.m2", }, { fileId = "138755", - value = "helm_leather_raiddruid_c_01_gom.m2", text = "helm_leather_raiddruid_c_01_gom.m2", + value = "helm_leather_raiddruid_c_01_gom.m2", }, { fileId = "138756", - value = "helm_leather_raiddruid_c_01_huf.m2", text = "helm_leather_raiddruid_c_01_huf.m2", + value = "helm_leather_raiddruid_c_01_huf.m2", }, { fileId = "138757", - value = "helm_leather_raiddruid_c_01_hum.m2", text = "helm_leather_raiddruid_c_01_hum.m2", + value = "helm_leather_raiddruid_c_01_hum.m2", }, { fileId = "138758", - value = "helm_leather_raiddruid_c_01_nif.m2", text = "helm_leather_raiddruid_c_01_nif.m2", + value = "helm_leather_raiddruid_c_01_nif.m2", }, { fileId = "138759", - value = "helm_leather_raiddruid_c_01_nim.m2", text = "helm_leather_raiddruid_c_01_nim.m2", + value = "helm_leather_raiddruid_c_01_nim.m2", }, { fileId = "138760", - value = "helm_leather_raiddruid_c_01_orf.m2", text = "helm_leather_raiddruid_c_01_orf.m2", + value = "helm_leather_raiddruid_c_01_orf.m2", }, { fileId = "138761", - value = "helm_leather_raiddruid_c_01_orm.m2", text = "helm_leather_raiddruid_c_01_orm.m2", + value = "helm_leather_raiddruid_c_01_orm.m2", }, { fileId = "138762", - value = "helm_leather_raiddruid_c_01_scf.m2", text = "helm_leather_raiddruid_c_01_scf.m2", + value = "helm_leather_raiddruid_c_01_scf.m2", }, { fileId = "138763", - value = "helm_leather_raiddruid_c_01_scm.m2", text = "helm_leather_raiddruid_c_01_scm.m2", + value = "helm_leather_raiddruid_c_01_scm.m2", }, { fileId = "138764", - value = "helm_leather_raiddruid_c_01_taf.m2", text = "helm_leather_raiddruid_c_01_taf.m2", + value = "helm_leather_raiddruid_c_01_taf.m2", }, { fileId = "138765", - value = "helm_leather_raiddruid_c_01_tam.m2", text = "helm_leather_raiddruid_c_01_tam.m2", + value = "helm_leather_raiddruid_c_01_tam.m2", }, { fileId = "138766", - value = "helm_leather_raiddruid_c_01_trf.m2", text = "helm_leather_raiddruid_c_01_trf.m2", + value = "helm_leather_raiddruid_c_01_trf.m2", }, { fileId = "138767", - value = "helm_leather_raiddruid_c_01_trm.m2", text = "helm_leather_raiddruid_c_01_trm.m2", + value = "helm_leather_raiddruid_c_01_trm.m2", }, { fileId = "138769", - value = "helm_leather_raiddruid_d_01_bef.m2", text = "helm_leather_raiddruid_d_01_bef.m2", + value = "helm_leather_raiddruid_d_01_bef.m2", }, { fileId = "138770", - value = "helm_leather_raiddruid_d_01_bem.m2", text = "helm_leather_raiddruid_d_01_bem.m2", + value = "helm_leather_raiddruid_d_01_bem.m2", }, { fileId = "138771", - value = "helm_leather_raiddruid_d_01_drf.m2", text = "helm_leather_raiddruid_d_01_drf.m2", + value = "helm_leather_raiddruid_d_01_drf.m2", }, { fileId = "138772", - value = "helm_leather_raiddruid_d_01_drm.m2", text = "helm_leather_raiddruid_d_01_drm.m2", + value = "helm_leather_raiddruid_d_01_drm.m2", }, { fileId = "138773", - value = "helm_leather_raiddruid_d_01_dwf.m2", text = "helm_leather_raiddruid_d_01_dwf.m2", + value = "helm_leather_raiddruid_d_01_dwf.m2", }, { fileId = "138774", - value = "helm_leather_raiddruid_d_01_dwm.m2", text = "helm_leather_raiddruid_d_01_dwm.m2", + value = "helm_leather_raiddruid_d_01_dwm.m2", }, { fileId = "138775", - value = "helm_leather_raiddruid_d_01_gnf.m2", text = "helm_leather_raiddruid_d_01_gnf.m2", + value = "helm_leather_raiddruid_d_01_gnf.m2", }, { fileId = "138776", - value = "helm_leather_raiddruid_d_01_gnm.m2", text = "helm_leather_raiddruid_d_01_gnm.m2", + value = "helm_leather_raiddruid_d_01_gnm.m2", }, { fileId = "138777", - value = "helm_leather_raiddruid_d_01_huf.m2", text = "helm_leather_raiddruid_d_01_huf.m2", + value = "helm_leather_raiddruid_d_01_huf.m2", }, { fileId = "138778", - value = "helm_leather_raiddruid_d_01_hum.m2", text = "helm_leather_raiddruid_d_01_hum.m2", + value = "helm_leather_raiddruid_d_01_hum.m2", }, { fileId = "138779", - value = "helm_leather_raiddruid_d_01_nif.m2", text = "helm_leather_raiddruid_d_01_nif.m2", + value = "helm_leather_raiddruid_d_01_nif.m2", }, { fileId = "138780", - value = "helm_leather_raiddruid_d_01_nim.m2", text = "helm_leather_raiddruid_d_01_nim.m2", + value = "helm_leather_raiddruid_d_01_nim.m2", }, { fileId = "138781", - value = "helm_leather_raiddruid_d_01_orf.m2", text = "helm_leather_raiddruid_d_01_orf.m2", + value = "helm_leather_raiddruid_d_01_orf.m2", }, { fileId = "138782", - value = "helm_leather_raiddruid_d_01_orm.m2", text = "helm_leather_raiddruid_d_01_orm.m2", + value = "helm_leather_raiddruid_d_01_orm.m2", }, { fileId = "138783", - value = "helm_leather_raiddruid_d_01_scf.m2", text = "helm_leather_raiddruid_d_01_scf.m2", + value = "helm_leather_raiddruid_d_01_scf.m2", }, { fileId = "138784", - value = "helm_leather_raiddruid_d_01_scm.m2", text = "helm_leather_raiddruid_d_01_scm.m2", + value = "helm_leather_raiddruid_d_01_scm.m2", }, { fileId = "138785", - value = "helm_leather_raiddruid_d_01_taf.m2", text = "helm_leather_raiddruid_d_01_taf.m2", + value = "helm_leather_raiddruid_d_01_taf.m2", }, { fileId = "138786", - value = "helm_leather_raiddruid_d_01_tam.m2", text = "helm_leather_raiddruid_d_01_tam.m2", + value = "helm_leather_raiddruid_d_01_tam.m2", }, { fileId = "138787", - value = "helm_leather_raiddruid_d_01_trf.m2", text = "helm_leather_raiddruid_d_01_trf.m2", + value = "helm_leather_raiddruid_d_01_trf.m2", }, { fileId = "138788", - value = "helm_leather_raiddruid_d_01_trm.m2", text = "helm_leather_raiddruid_d_01_trm.m2", + value = "helm_leather_raiddruid_d_01_trm.m2", }, { fileId = "138791", - value = "helm_leather_raiddruid_e_01_bef.m2", text = "helm_leather_raiddruid_e_01_bef.m2", + value = "helm_leather_raiddruid_e_01_bef.m2", }, { fileId = "138792", - value = "helm_leather_raiddruid_e_01_bem.m2", text = "helm_leather_raiddruid_e_01_bem.m2", + value = "helm_leather_raiddruid_e_01_bem.m2", }, { fileId = "138793", - value = "helm_leather_raiddruid_e_01_drf.m2", text = "helm_leather_raiddruid_e_01_drf.m2", + value = "helm_leather_raiddruid_e_01_drf.m2", }, { fileId = "138794", - value = "helm_leather_raiddruid_e_01_drm.m2", text = "helm_leather_raiddruid_e_01_drm.m2", + value = "helm_leather_raiddruid_e_01_drm.m2", }, { fileId = "138795", - value = "helm_leather_raiddruid_e_01_dwf.m2", text = "helm_leather_raiddruid_e_01_dwf.m2", + value = "helm_leather_raiddruid_e_01_dwf.m2", }, { fileId = "138796", - value = "helm_leather_raiddruid_e_01_dwm.m2", text = "helm_leather_raiddruid_e_01_dwm.m2", + value = "helm_leather_raiddruid_e_01_dwm.m2", }, { fileId = "138797", - value = "helm_leather_raiddruid_e_01_gnf.m2", text = "helm_leather_raiddruid_e_01_gnf.m2", + value = "helm_leather_raiddruid_e_01_gnf.m2", }, { fileId = "138798", - value = "helm_leather_raiddruid_e_01_gnm.m2", text = "helm_leather_raiddruid_e_01_gnm.m2", + value = "helm_leather_raiddruid_e_01_gnm.m2", }, { fileId = "138799", - value = "helm_leather_raiddruid_e_01_gof.m2", text = "helm_leather_raiddruid_e_01_gof.m2", + value = "helm_leather_raiddruid_e_01_gof.m2", }, { fileId = "138800", - value = "helm_leather_raiddruid_e_01_gom.m2", text = "helm_leather_raiddruid_e_01_gom.m2", + value = "helm_leather_raiddruid_e_01_gom.m2", }, { fileId = "138801", - value = "helm_leather_raiddruid_e_01_huf.m2", text = "helm_leather_raiddruid_e_01_huf.m2", + value = "helm_leather_raiddruid_e_01_huf.m2", }, { fileId = "138802", - value = "helm_leather_raiddruid_e_01_hum.m2", text = "helm_leather_raiddruid_e_01_hum.m2", + value = "helm_leather_raiddruid_e_01_hum.m2", }, { fileId = "138803", - value = "helm_leather_raiddruid_e_01_nif.m2", text = "helm_leather_raiddruid_e_01_nif.m2", + value = "helm_leather_raiddruid_e_01_nif.m2", }, { fileId = "138804", - value = "helm_leather_raiddruid_e_01_nim.m2", text = "helm_leather_raiddruid_e_01_nim.m2", + value = "helm_leather_raiddruid_e_01_nim.m2", }, { fileId = "138805", - value = "helm_leather_raiddruid_e_01_orf.m2", text = "helm_leather_raiddruid_e_01_orf.m2", + value = "helm_leather_raiddruid_e_01_orf.m2", }, { fileId = "138806", - value = "helm_leather_raiddruid_e_01_orm.m2", text = "helm_leather_raiddruid_e_01_orm.m2", + value = "helm_leather_raiddruid_e_01_orm.m2", }, { fileId = "138807", - value = "helm_leather_raiddruid_e_01_scf.m2", text = "helm_leather_raiddruid_e_01_scf.m2", + value = "helm_leather_raiddruid_e_01_scf.m2", }, { fileId = "138808", - value = "helm_leather_raiddruid_e_01_scm.m2", text = "helm_leather_raiddruid_e_01_scm.m2", + value = "helm_leather_raiddruid_e_01_scm.m2", }, { fileId = "138809", - value = "helm_leather_raiddruid_e_01_taf.m2", text = "helm_leather_raiddruid_e_01_taf.m2", + value = "helm_leather_raiddruid_e_01_taf.m2", }, { fileId = "138810", - value = "helm_leather_raiddruid_e_01_tam.m2", text = "helm_leather_raiddruid_e_01_tam.m2", + value = "helm_leather_raiddruid_e_01_tam.m2", }, { fileId = "138811", - value = "helm_leather_raiddruid_e_01_trf.m2", text = "helm_leather_raiddruid_e_01_trf.m2", + value = "helm_leather_raiddruid_e_01_trf.m2", }, { fileId = "138812", - value = "helm_leather_raiddruid_e_01_trm.m2", text = "helm_leather_raiddruid_e_01_trm.m2", + value = "helm_leather_raiddruid_e_01_trm.m2", }, { fileId = "138816", - value = "helm_leather_raiddruid_f_01_bef.m2", text = "helm_leather_raiddruid_f_01_bef.m2", + value = "helm_leather_raiddruid_f_01_bef.m2", }, { fileId = "138817", - value = "helm_leather_raiddruid_f_01_bem.m2", text = "helm_leather_raiddruid_f_01_bem.m2", + value = "helm_leather_raiddruid_f_01_bem.m2", }, { fileId = "138818", - value = "helm_leather_raiddruid_f_01_drf.m2", text = "helm_leather_raiddruid_f_01_drf.m2", + value = "helm_leather_raiddruid_f_01_drf.m2", }, { fileId = "138819", - value = "helm_leather_raiddruid_f_01_drm.m2", text = "helm_leather_raiddruid_f_01_drm.m2", + value = "helm_leather_raiddruid_f_01_drm.m2", }, { fileId = "138820", - value = "helm_leather_raiddruid_f_01_dwf.m2", text = "helm_leather_raiddruid_f_01_dwf.m2", + value = "helm_leather_raiddruid_f_01_dwf.m2", }, { fileId = "138821", - value = "helm_leather_raiddruid_f_01_dwm.m2", text = "helm_leather_raiddruid_f_01_dwm.m2", + value = "helm_leather_raiddruid_f_01_dwm.m2", }, { fileId = "138822", - value = "helm_leather_raiddruid_f_01_gnf.m2", text = "helm_leather_raiddruid_f_01_gnf.m2", + value = "helm_leather_raiddruid_f_01_gnf.m2", }, { fileId = "138823", - value = "helm_leather_raiddruid_f_01_gnm.m2", text = "helm_leather_raiddruid_f_01_gnm.m2", + value = "helm_leather_raiddruid_f_01_gnm.m2", }, { fileId = "138824", - value = "helm_leather_raiddruid_f_01_gof.m2", text = "helm_leather_raiddruid_f_01_gof.m2", + value = "helm_leather_raiddruid_f_01_gof.m2", }, { fileId = "138825", - value = "helm_leather_raiddruid_f_01_gom.m2", text = "helm_leather_raiddruid_f_01_gom.m2", + value = "helm_leather_raiddruid_f_01_gom.m2", }, { fileId = "138826", - value = "helm_leather_raiddruid_f_01_huf.m2", text = "helm_leather_raiddruid_f_01_huf.m2", + value = "helm_leather_raiddruid_f_01_huf.m2", }, { fileId = "138827", - value = "helm_leather_raiddruid_f_01_hum.m2", text = "helm_leather_raiddruid_f_01_hum.m2", + value = "helm_leather_raiddruid_f_01_hum.m2", }, { fileId = "138828", - value = "helm_leather_raiddruid_f_01_nif.m2", text = "helm_leather_raiddruid_f_01_nif.m2", + value = "helm_leather_raiddruid_f_01_nif.m2", }, { fileId = "138829", - value = "helm_leather_raiddruid_f_01_nim.m2", text = "helm_leather_raiddruid_f_01_nim.m2", + value = "helm_leather_raiddruid_f_01_nim.m2", }, { fileId = "138830", - value = "helm_leather_raiddruid_f_01_orf.m2", text = "helm_leather_raiddruid_f_01_orf.m2", + value = "helm_leather_raiddruid_f_01_orf.m2", }, { fileId = "138831", - value = "helm_leather_raiddruid_f_01_orm.m2", text = "helm_leather_raiddruid_f_01_orm.m2", + value = "helm_leather_raiddruid_f_01_orm.m2", }, { fileId = "138832", - value = "helm_leather_raiddruid_f_01_scf.m2", text = "helm_leather_raiddruid_f_01_scf.m2", + value = "helm_leather_raiddruid_f_01_scf.m2", }, { fileId = "138833", - value = "helm_leather_raiddruid_f_01_scm.m2", text = "helm_leather_raiddruid_f_01_scm.m2", + value = "helm_leather_raiddruid_f_01_scm.m2", }, { fileId = "138834", - value = "helm_leather_raiddruid_f_01_taf.m2", text = "helm_leather_raiddruid_f_01_taf.m2", + value = "helm_leather_raiddruid_f_01_taf.m2", }, { fileId = "138835", - value = "helm_leather_raiddruid_f_01_tam.m2", text = "helm_leather_raiddruid_f_01_tam.m2", + value = "helm_leather_raiddruid_f_01_tam.m2", }, { fileId = "138836", - value = "helm_leather_raiddruid_f_01_trf.m2", text = "helm_leather_raiddruid_f_01_trf.m2", + value = "helm_leather_raiddruid_f_01_trf.m2", }, { fileId = "138837", - value = "helm_leather_raiddruid_f_01_trm.m2", text = "helm_leather_raiddruid_f_01_trm.m2", + value = "helm_leather_raiddruid_f_01_trm.m2", }, { fileId = "138842", - value = "helm_leather_raidrogue_a_01_bef.m2", text = "helm_leather_raidrogue_a_01_bef.m2", + value = "helm_leather_raidrogue_a_01_bef.m2", }, { fileId = "138843", - value = "helm_leather_raidrogue_a_01_bem.m2", text = "helm_leather_raidrogue_a_01_bem.m2", + value = "helm_leather_raidrogue_a_01_bem.m2", }, { fileId = "138844", - value = "helm_leather_raidrogue_a_01_drf.m2", text = "helm_leather_raidrogue_a_01_drf.m2", + value = "helm_leather_raidrogue_a_01_drf.m2", }, { fileId = "138845", - value = "helm_leather_raidrogue_a_01_drm.m2", text = "helm_leather_raidrogue_a_01_drm.m2", + value = "helm_leather_raidrogue_a_01_drm.m2", }, { fileId = "138846", - value = "helm_leather_raidrogue_a_01_dwf.m2", text = "helm_leather_raidrogue_a_01_dwf.m2", + value = "helm_leather_raidrogue_a_01_dwf.m2", }, { fileId = "138847", - value = "helm_leather_raidrogue_a_01_dwm.m2", text = "helm_leather_raidrogue_a_01_dwm.m2", + value = "helm_leather_raidrogue_a_01_dwm.m2", }, { fileId = "138848", - value = "helm_leather_raidrogue_a_01_gnf.m2", text = "helm_leather_raidrogue_a_01_gnf.m2", + value = "helm_leather_raidrogue_a_01_gnf.m2", }, { fileId = "138849", - value = "helm_leather_raidrogue_a_01_gnm.m2", text = "helm_leather_raidrogue_a_01_gnm.m2", + value = "helm_leather_raidrogue_a_01_gnm.m2", }, { fileId = "138850", - value = "helm_leather_raidrogue_a_01_gof.m2", text = "helm_leather_raidrogue_a_01_gof.m2", + value = "helm_leather_raidrogue_a_01_gof.m2", }, { fileId = "138851", - value = "helm_leather_raidrogue_a_01_gom.m2", text = "helm_leather_raidrogue_a_01_gom.m2", + value = "helm_leather_raidrogue_a_01_gom.m2", }, { fileId = "138852", - value = "helm_leather_raidrogue_a_01_huf.m2", text = "helm_leather_raidrogue_a_01_huf.m2", + value = "helm_leather_raidrogue_a_01_huf.m2", }, { fileId = "138853", - value = "helm_leather_raidrogue_a_01_hum.m2", text = "helm_leather_raidrogue_a_01_hum.m2", + value = "helm_leather_raidrogue_a_01_hum.m2", }, { fileId = "138854", - value = "helm_leather_raidrogue_a_01_nif.m2", text = "helm_leather_raidrogue_a_01_nif.m2", + value = "helm_leather_raidrogue_a_01_nif.m2", }, { fileId = "138855", - value = "helm_leather_raidrogue_a_01_nim.m2", text = "helm_leather_raidrogue_a_01_nim.m2", + value = "helm_leather_raidrogue_a_01_nim.m2", }, { fileId = "138856", - value = "helm_leather_raidrogue_a_01_orf.m2", text = "helm_leather_raidrogue_a_01_orf.m2", + value = "helm_leather_raidrogue_a_01_orf.m2", }, { fileId = "138857", - value = "helm_leather_raidrogue_a_01_orm.m2", text = "helm_leather_raidrogue_a_01_orm.m2", + value = "helm_leather_raidrogue_a_01_orm.m2", }, { fileId = "138858", - value = "helm_leather_raidrogue_a_01_scf.m2", text = "helm_leather_raidrogue_a_01_scf.m2", + value = "helm_leather_raidrogue_a_01_scf.m2", }, { fileId = "138859", - value = "helm_leather_raidrogue_a_01_scm.m2", text = "helm_leather_raidrogue_a_01_scm.m2", + value = "helm_leather_raidrogue_a_01_scm.m2", }, { fileId = "138860", - value = "helm_leather_raidrogue_a_01_taf.m2", text = "helm_leather_raidrogue_a_01_taf.m2", + value = "helm_leather_raidrogue_a_01_taf.m2", }, { fileId = "138861", - value = "helm_leather_raidrogue_a_01_tam.m2", text = "helm_leather_raidrogue_a_01_tam.m2", + value = "helm_leather_raidrogue_a_01_tam.m2", }, { fileId = "138862", - value = "helm_leather_raidrogue_a_01_trf.m2", text = "helm_leather_raidrogue_a_01_trf.m2", + value = "helm_leather_raidrogue_a_01_trf.m2", }, { fileId = "138863", - value = "helm_leather_raidrogue_a_01_trm.m2", text = "helm_leather_raidrogue_a_01_trm.m2", + value = "helm_leather_raidrogue_a_01_trm.m2", }, { fileId = "138867", - value = "helm_leather_raidrogue_b_01_bef.m2", text = "helm_leather_raidrogue_b_01_bef.m2", + value = "helm_leather_raidrogue_b_01_bef.m2", }, { fileId = "138868", - value = "helm_leather_raidrogue_b_01_bem.m2", text = "helm_leather_raidrogue_b_01_bem.m2", + value = "helm_leather_raidrogue_b_01_bem.m2", }, { fileId = "138869", - value = "helm_leather_raidrogue_b_01_drf.m2", text = "helm_leather_raidrogue_b_01_drf.m2", + value = "helm_leather_raidrogue_b_01_drf.m2", }, { fileId = "138870", - value = "helm_leather_raidrogue_b_01_drm.m2", text = "helm_leather_raidrogue_b_01_drm.m2", + value = "helm_leather_raidrogue_b_01_drm.m2", }, { fileId = "138871", - value = "helm_leather_raidrogue_b_01_dwf.m2", text = "helm_leather_raidrogue_b_01_dwf.m2", + value = "helm_leather_raidrogue_b_01_dwf.m2", }, { fileId = "138872", - value = "helm_leather_raidrogue_b_01_dwm.m2", text = "helm_leather_raidrogue_b_01_dwm.m2", + value = "helm_leather_raidrogue_b_01_dwm.m2", }, { fileId = "138873", - value = "helm_leather_raidrogue_b_01_gnf.m2", text = "helm_leather_raidrogue_b_01_gnf.m2", + value = "helm_leather_raidrogue_b_01_gnf.m2", }, { fileId = "138874", - value = "helm_leather_raidrogue_b_01_gnm.m2", text = "helm_leather_raidrogue_b_01_gnm.m2", + value = "helm_leather_raidrogue_b_01_gnm.m2", }, { fileId = "138875", - value = "helm_leather_raidrogue_b_01_gof.m2", text = "helm_leather_raidrogue_b_01_gof.m2", + value = "helm_leather_raidrogue_b_01_gof.m2", }, { fileId = "138876", - value = "helm_leather_raidrogue_b_01_gom.m2", text = "helm_leather_raidrogue_b_01_gom.m2", + value = "helm_leather_raidrogue_b_01_gom.m2", }, { fileId = "138877", - value = "helm_leather_raidrogue_b_01_huf.m2", text = "helm_leather_raidrogue_b_01_huf.m2", + value = "helm_leather_raidrogue_b_01_huf.m2", }, { fileId = "138878", - value = "helm_leather_raidrogue_b_01_hum.m2", text = "helm_leather_raidrogue_b_01_hum.m2", + value = "helm_leather_raidrogue_b_01_hum.m2", }, { fileId = "138879", - value = "helm_leather_raidrogue_b_01_nif.m2", text = "helm_leather_raidrogue_b_01_nif.m2", + value = "helm_leather_raidrogue_b_01_nif.m2", }, { fileId = "138880", - value = "helm_leather_raidrogue_b_01_nim.m2", text = "helm_leather_raidrogue_b_01_nim.m2", + value = "helm_leather_raidrogue_b_01_nim.m2", }, { fileId = "138881", - value = "helm_leather_raidrogue_b_01_orf.m2", text = "helm_leather_raidrogue_b_01_orf.m2", + value = "helm_leather_raidrogue_b_01_orf.m2", }, { fileId = "138882", - value = "helm_leather_raidrogue_b_01_orm.m2", text = "helm_leather_raidrogue_b_01_orm.m2", + value = "helm_leather_raidrogue_b_01_orm.m2", }, { fileId = "138883", - value = "helm_leather_raidrogue_b_01_scf.m2", text = "helm_leather_raidrogue_b_01_scf.m2", + value = "helm_leather_raidrogue_b_01_scf.m2", }, { fileId = "138884", - value = "helm_leather_raidrogue_b_01_scm.m2", text = "helm_leather_raidrogue_b_01_scm.m2", + value = "helm_leather_raidrogue_b_01_scm.m2", }, { fileId = "138885", - value = "helm_leather_raidrogue_b_01_taf.m2", text = "helm_leather_raidrogue_b_01_taf.m2", + value = "helm_leather_raidrogue_b_01_taf.m2", }, { fileId = "138886", - value = "helm_leather_raidrogue_b_01_tam.m2", text = "helm_leather_raidrogue_b_01_tam.m2", + value = "helm_leather_raidrogue_b_01_tam.m2", }, { fileId = "138887", - value = "helm_leather_raidrogue_b_01_trf.m2", text = "helm_leather_raidrogue_b_01_trf.m2", + value = "helm_leather_raidrogue_b_01_trf.m2", }, { fileId = "138888", - value = "helm_leather_raidrogue_b_01_trm.m2", text = "helm_leather_raidrogue_b_01_trm.m2", + value = "helm_leather_raidrogue_b_01_trm.m2", }, { fileId = "138893", - value = "helm_leather_raidrogue_c_01_bef.m2", text = "helm_leather_raidrogue_c_01_bef.m2", + value = "helm_leather_raidrogue_c_01_bef.m2", }, { fileId = "138894", - value = "helm_leather_raidrogue_c_01_bem.m2", text = "helm_leather_raidrogue_c_01_bem.m2", + value = "helm_leather_raidrogue_c_01_bem.m2", }, { fileId = "138895", - value = "helm_leather_raidrogue_c_01_drf.m2", text = "helm_leather_raidrogue_c_01_drf.m2", + value = "helm_leather_raidrogue_c_01_drf.m2", }, { fileId = "138896", - value = "helm_leather_raidrogue_c_01_drm.m2", text = "helm_leather_raidrogue_c_01_drm.m2", + value = "helm_leather_raidrogue_c_01_drm.m2", }, { fileId = "138897", - value = "helm_leather_raidrogue_c_01_dwf.m2", text = "helm_leather_raidrogue_c_01_dwf.m2", + value = "helm_leather_raidrogue_c_01_dwf.m2", }, { fileId = "138898", - value = "helm_leather_raidrogue_c_01_dwm.m2", text = "helm_leather_raidrogue_c_01_dwm.m2", + value = "helm_leather_raidrogue_c_01_dwm.m2", }, { fileId = "138899", - value = "helm_leather_raidrogue_c_01_gnf.m2", text = "helm_leather_raidrogue_c_01_gnf.m2", + value = "helm_leather_raidrogue_c_01_gnf.m2", }, { fileId = "138900", - value = "helm_leather_raidrogue_c_01_gnm.m2", text = "helm_leather_raidrogue_c_01_gnm.m2", + value = "helm_leather_raidrogue_c_01_gnm.m2", }, { fileId = "138901", - value = "helm_leather_raidrogue_c_01_gof.m2", text = "helm_leather_raidrogue_c_01_gof.m2", + value = "helm_leather_raidrogue_c_01_gof.m2", }, { fileId = "138902", - value = "helm_leather_raidrogue_c_01_gom.m2", text = "helm_leather_raidrogue_c_01_gom.m2", + value = "helm_leather_raidrogue_c_01_gom.m2", }, { fileId = "138903", - value = "helm_leather_raidrogue_c_01_huf.m2", text = "helm_leather_raidrogue_c_01_huf.m2", + value = "helm_leather_raidrogue_c_01_huf.m2", }, { fileId = "138904", - value = "helm_leather_raidrogue_c_01_hum.m2", text = "helm_leather_raidrogue_c_01_hum.m2", + value = "helm_leather_raidrogue_c_01_hum.m2", }, { fileId = "138905", - value = "helm_leather_raidrogue_c_01_nif.m2", text = "helm_leather_raidrogue_c_01_nif.m2", + value = "helm_leather_raidrogue_c_01_nif.m2", }, { fileId = "138906", - value = "helm_leather_raidrogue_c_01_nim.m2", text = "helm_leather_raidrogue_c_01_nim.m2", + value = "helm_leather_raidrogue_c_01_nim.m2", }, { fileId = "138907", - value = "helm_leather_raidrogue_c_01_orf.m2", text = "helm_leather_raidrogue_c_01_orf.m2", + value = "helm_leather_raidrogue_c_01_orf.m2", }, { fileId = "138908", - value = "helm_leather_raidrogue_c_01_orm.m2", text = "helm_leather_raidrogue_c_01_orm.m2", + value = "helm_leather_raidrogue_c_01_orm.m2", }, { fileId = "138909", - value = "helm_leather_raidrogue_c_01_scf.m2", text = "helm_leather_raidrogue_c_01_scf.m2", + value = "helm_leather_raidrogue_c_01_scf.m2", }, { fileId = "138910", - value = "helm_leather_raidrogue_c_01_scm.m2", text = "helm_leather_raidrogue_c_01_scm.m2", + value = "helm_leather_raidrogue_c_01_scm.m2", }, { fileId = "138911", - value = "helm_leather_raidrogue_c_01_taf.m2", text = "helm_leather_raidrogue_c_01_taf.m2", + value = "helm_leather_raidrogue_c_01_taf.m2", }, { fileId = "138912", - value = "helm_leather_raidrogue_c_01_tam.m2", text = "helm_leather_raidrogue_c_01_tam.m2", + value = "helm_leather_raidrogue_c_01_tam.m2", }, { fileId = "138913", - value = "helm_leather_raidrogue_c_01_trf.m2", text = "helm_leather_raidrogue_c_01_trf.m2", + value = "helm_leather_raidrogue_c_01_trf.m2", }, { fileId = "138914", - value = "helm_leather_raidrogue_c_01_trm.m2", text = "helm_leather_raidrogue_c_01_trm.m2", + value = "helm_leather_raidrogue_c_01_trm.m2", }, { fileId = "138918", - value = "helm_leather_raidrogue_d_01_bef.m2", text = "helm_leather_raidrogue_d_01_bef.m2", + value = "helm_leather_raidrogue_d_01_bef.m2", }, { fileId = "138919", - value = "helm_leather_raidrogue_d_01_bem.m2", text = "helm_leather_raidrogue_d_01_bem.m2", + value = "helm_leather_raidrogue_d_01_bem.m2", }, { fileId = "138920", - value = "helm_leather_raidrogue_d_01_drf.m2", text = "helm_leather_raidrogue_d_01_drf.m2", + value = "helm_leather_raidrogue_d_01_drf.m2", }, { fileId = "138921", - value = "helm_leather_raidrogue_d_01_drm.m2", text = "helm_leather_raidrogue_d_01_drm.m2", + value = "helm_leather_raidrogue_d_01_drm.m2", }, { fileId = "138922", - value = "helm_leather_raidrogue_d_01_dwf.m2", text = "helm_leather_raidrogue_d_01_dwf.m2", + value = "helm_leather_raidrogue_d_01_dwf.m2", }, { fileId = "138923", - value = "helm_leather_raidrogue_d_01_dwm.m2", text = "helm_leather_raidrogue_d_01_dwm.m2", + value = "helm_leather_raidrogue_d_01_dwm.m2", }, { fileId = "138924", - value = "helm_leather_raidrogue_d_01_gnf.m2", text = "helm_leather_raidrogue_d_01_gnf.m2", + value = "helm_leather_raidrogue_d_01_gnf.m2", }, { fileId = "138925", - value = "helm_leather_raidrogue_d_01_gnm.m2", text = "helm_leather_raidrogue_d_01_gnm.m2", + value = "helm_leather_raidrogue_d_01_gnm.m2", }, { fileId = "138926", - value = "helm_leather_raidrogue_d_01_gof.m2", text = "helm_leather_raidrogue_d_01_gof.m2", + value = "helm_leather_raidrogue_d_01_gof.m2", }, { fileId = "138927", - value = "helm_leather_raidrogue_d_01_gom.m2", text = "helm_leather_raidrogue_d_01_gom.m2", + value = "helm_leather_raidrogue_d_01_gom.m2", }, { fileId = "138928", - value = "helm_leather_raidrogue_d_01_huf.m2", text = "helm_leather_raidrogue_d_01_huf.m2", + value = "helm_leather_raidrogue_d_01_huf.m2", }, { fileId = "138929", - value = "helm_leather_raidrogue_d_01_hum.m2", text = "helm_leather_raidrogue_d_01_hum.m2", + value = "helm_leather_raidrogue_d_01_hum.m2", }, { fileId = "138930", - value = "helm_leather_raidrogue_d_01_nif.m2", text = "helm_leather_raidrogue_d_01_nif.m2", + value = "helm_leather_raidrogue_d_01_nif.m2", }, { fileId = "138931", - value = "helm_leather_raidrogue_d_01_nim.m2", text = "helm_leather_raidrogue_d_01_nim.m2", + value = "helm_leather_raidrogue_d_01_nim.m2", }, { fileId = "138932", - value = "helm_leather_raidrogue_d_01_orf.m2", text = "helm_leather_raidrogue_d_01_orf.m2", + value = "helm_leather_raidrogue_d_01_orf.m2", }, { fileId = "138933", - value = "helm_leather_raidrogue_d_01_orm.m2", text = "helm_leather_raidrogue_d_01_orm.m2", + value = "helm_leather_raidrogue_d_01_orm.m2", }, { fileId = "138934", - value = "helm_leather_raidrogue_d_01_scf.m2", text = "helm_leather_raidrogue_d_01_scf.m2", + value = "helm_leather_raidrogue_d_01_scf.m2", }, { fileId = "138935", - value = "helm_leather_raidrogue_d_01_scm.m2", text = "helm_leather_raidrogue_d_01_scm.m2", + value = "helm_leather_raidrogue_d_01_scm.m2", }, { fileId = "138936", - value = "helm_leather_raidrogue_d_01_taf.m2", text = "helm_leather_raidrogue_d_01_taf.m2", + value = "helm_leather_raidrogue_d_01_taf.m2", }, { fileId = "138937", - value = "helm_leather_raidrogue_d_01_tam.m2", text = "helm_leather_raidrogue_d_01_tam.m2", + value = "helm_leather_raidrogue_d_01_tam.m2", }, { fileId = "138938", - value = "helm_leather_raidrogue_d_01_trf.m2", text = "helm_leather_raidrogue_d_01_trf.m2", + value = "helm_leather_raidrogue_d_01_trf.m2", }, { fileId = "138939", - value = "helm_leather_raidrogue_d_01_trm.m2", text = "helm_leather_raidrogue_d_01_trm.m2", + value = "helm_leather_raidrogue_d_01_trm.m2", }, { fileId = "138941", - value = "helm_leather_raidrogue_e_01_bef.m2", text = "helm_leather_raidrogue_e_01_bef.m2", + value = "helm_leather_raidrogue_e_01_bef.m2", }, { fileId = "138942", - value = "helm_leather_raidrogue_e_01_bem.m2", text = "helm_leather_raidrogue_e_01_bem.m2", + value = "helm_leather_raidrogue_e_01_bem.m2", }, { fileId = "138943", - value = "helm_leather_raidrogue_e_01_drf.m2", text = "helm_leather_raidrogue_e_01_drf.m2", + value = "helm_leather_raidrogue_e_01_drf.m2", }, { fileId = "138944", - value = "helm_leather_raidrogue_e_01_drm.m2", text = "helm_leather_raidrogue_e_01_drm.m2", + value = "helm_leather_raidrogue_e_01_drm.m2", }, { fileId = "138945", - value = "helm_leather_raidrogue_e_01_dwf.m2", text = "helm_leather_raidrogue_e_01_dwf.m2", + value = "helm_leather_raidrogue_e_01_dwf.m2", }, { fileId = "138946", - value = "helm_leather_raidrogue_e_01_dwm.m2", text = "helm_leather_raidrogue_e_01_dwm.m2", + value = "helm_leather_raidrogue_e_01_dwm.m2", }, { fileId = "138947", - value = "helm_leather_raidrogue_e_01_gnf.m2", text = "helm_leather_raidrogue_e_01_gnf.m2", + value = "helm_leather_raidrogue_e_01_gnf.m2", }, { fileId = "138948", - value = "helm_leather_raidrogue_e_01_gnm.m2", text = "helm_leather_raidrogue_e_01_gnm.m2", + value = "helm_leather_raidrogue_e_01_gnm.m2", }, { fileId = "138949", - value = "helm_leather_raidrogue_e_01_gof.m2", text = "helm_leather_raidrogue_e_01_gof.m2", + value = "helm_leather_raidrogue_e_01_gof.m2", }, { fileId = "138950", - value = "helm_leather_raidrogue_e_01_gom.m2", text = "helm_leather_raidrogue_e_01_gom.m2", + value = "helm_leather_raidrogue_e_01_gom.m2", }, { fileId = "138951", - value = "helm_leather_raidrogue_e_01_huf.m2", text = "helm_leather_raidrogue_e_01_huf.m2", + value = "helm_leather_raidrogue_e_01_huf.m2", }, { fileId = "138952", - value = "helm_leather_raidrogue_e_01_hum.m2", text = "helm_leather_raidrogue_e_01_hum.m2", + value = "helm_leather_raidrogue_e_01_hum.m2", }, { fileId = "138953", - value = "helm_leather_raidrogue_e_01_nif.m2", text = "helm_leather_raidrogue_e_01_nif.m2", + value = "helm_leather_raidrogue_e_01_nif.m2", }, { fileId = "138954", - value = "helm_leather_raidrogue_e_01_nim.m2", text = "helm_leather_raidrogue_e_01_nim.m2", + value = "helm_leather_raidrogue_e_01_nim.m2", }, { fileId = "138955", - value = "helm_leather_raidrogue_e_01_orf.m2", text = "helm_leather_raidrogue_e_01_orf.m2", + value = "helm_leather_raidrogue_e_01_orf.m2", }, { fileId = "138956", - value = "helm_leather_raidrogue_e_01_orm.m2", text = "helm_leather_raidrogue_e_01_orm.m2", + value = "helm_leather_raidrogue_e_01_orm.m2", }, { fileId = "138957", - value = "helm_leather_raidrogue_e_01_scf.m2", text = "helm_leather_raidrogue_e_01_scf.m2", + value = "helm_leather_raidrogue_e_01_scf.m2", }, { fileId = "138958", - value = "helm_leather_raidrogue_e_01_scm.m2", text = "helm_leather_raidrogue_e_01_scm.m2", + value = "helm_leather_raidrogue_e_01_scm.m2", }, { fileId = "138959", - value = "helm_leather_raidrogue_e_01_taf.m2", text = "helm_leather_raidrogue_e_01_taf.m2", + value = "helm_leather_raidrogue_e_01_taf.m2", }, { fileId = "138960", - value = "helm_leather_raidrogue_e_01_tam.m2", text = "helm_leather_raidrogue_e_01_tam.m2", + value = "helm_leather_raidrogue_e_01_tam.m2", }, { fileId = "138961", - value = "helm_leather_raidrogue_e_01_trf.m2", text = "helm_leather_raidrogue_e_01_trf.m2", + value = "helm_leather_raidrogue_e_01_trf.m2", }, { fileId = "138962", - value = "helm_leather_raidrogue_e_01_trm.m2", text = "helm_leather_raidrogue_e_01_trm.m2", + value = "helm_leather_raidrogue_e_01_trm.m2", }, { fileId = "138967", - value = "helm_leather_raidrogue_f_01_bef.m2", text = "helm_leather_raidrogue_f_01_bef.m2", + value = "helm_leather_raidrogue_f_01_bef.m2", }, { fileId = "138968", - value = "helm_leather_raidrogue_f_01_bem.m2", text = "helm_leather_raidrogue_f_01_bem.m2", + value = "helm_leather_raidrogue_f_01_bem.m2", }, { fileId = "138969", - value = "helm_leather_raidrogue_f_01_drf.m2", text = "helm_leather_raidrogue_f_01_drf.m2", + value = "helm_leather_raidrogue_f_01_drf.m2", }, { fileId = "138970", - value = "helm_leather_raidrogue_f_01_drm.m2", text = "helm_leather_raidrogue_f_01_drm.m2", + value = "helm_leather_raidrogue_f_01_drm.m2", }, { fileId = "138971", - value = "helm_leather_raidrogue_f_01_dwf.m2", text = "helm_leather_raidrogue_f_01_dwf.m2", + value = "helm_leather_raidrogue_f_01_dwf.m2", }, { fileId = "138972", - value = "helm_leather_raidrogue_f_01_dwm.m2", text = "helm_leather_raidrogue_f_01_dwm.m2", + value = "helm_leather_raidrogue_f_01_dwm.m2", }, { fileId = "138973", - value = "helm_leather_raidrogue_f_01_gnf.m2", text = "helm_leather_raidrogue_f_01_gnf.m2", + value = "helm_leather_raidrogue_f_01_gnf.m2", }, { fileId = "138974", - value = "helm_leather_raidrogue_f_01_gnm.m2", text = "helm_leather_raidrogue_f_01_gnm.m2", + value = "helm_leather_raidrogue_f_01_gnm.m2", }, { fileId = "138975", - value = "helm_leather_raidrogue_f_01_gom.m2", text = "helm_leather_raidrogue_f_01_gom.m2", + value = "helm_leather_raidrogue_f_01_gom.m2", }, { fileId = "138976", - value = "helm_leather_raidrogue_f_01_huf.m2", text = "helm_leather_raidrogue_f_01_huf.m2", + value = "helm_leather_raidrogue_f_01_huf.m2", }, { fileId = "138977", - value = "helm_leather_raidrogue_f_01_hum.m2", text = "helm_leather_raidrogue_f_01_hum.m2", + value = "helm_leather_raidrogue_f_01_hum.m2", }, { fileId = "138978", - value = "helm_leather_raidrogue_f_01_nif.m2", text = "helm_leather_raidrogue_f_01_nif.m2", + value = "helm_leather_raidrogue_f_01_nif.m2", }, { fileId = "138979", - value = "helm_leather_raidrogue_f_01_nim.m2", text = "helm_leather_raidrogue_f_01_nim.m2", + value = "helm_leather_raidrogue_f_01_nim.m2", }, { fileId = "138980", - value = "helm_leather_raidrogue_f_01_orf.m2", text = "helm_leather_raidrogue_f_01_orf.m2", + value = "helm_leather_raidrogue_f_01_orf.m2", }, { fileId = "138981", - value = "helm_leather_raidrogue_f_01_orm.m2", text = "helm_leather_raidrogue_f_01_orm.m2", + value = "helm_leather_raidrogue_f_01_orm.m2", }, { fileId = "138982", - value = "helm_leather_raidrogue_f_01_scf.m2", text = "helm_leather_raidrogue_f_01_scf.m2", + value = "helm_leather_raidrogue_f_01_scf.m2", }, { fileId = "138983", - value = "helm_leather_raidrogue_f_01_scm.m2", text = "helm_leather_raidrogue_f_01_scm.m2", + value = "helm_leather_raidrogue_f_01_scm.m2", }, { fileId = "138984", - value = "helm_leather_raidrogue_f_01_taf.m2", text = "helm_leather_raidrogue_f_01_taf.m2", + value = "helm_leather_raidrogue_f_01_taf.m2", }, { fileId = "138985", - value = "helm_leather_raidrogue_f_01_tam.m2", text = "helm_leather_raidrogue_f_01_tam.m2", + value = "helm_leather_raidrogue_f_01_tam.m2", }, { fileId = "138986", - value = "helm_leather_raidrogue_f_01_trf.m2", text = "helm_leather_raidrogue_f_01_trf.m2", + value = "helm_leather_raidrogue_f_01_trf.m2", }, { fileId = "138987", - value = "helm_leather_raidrogue_f_01_trm.m2", text = "helm_leather_raidrogue_f_01_trm.m2", + value = "helm_leather_raidrogue_f_01_trm.m2", }, { fileId = "139018", - value = "helm_leather_sunwell_d_01_bef.m2", text = "helm_leather_sunwell_d_01_bef.m2", + value = "helm_leather_sunwell_d_01_bef.m2", }, { fileId = "139019", - value = "helm_leather_sunwell_d_01_bem.m2", text = "helm_leather_sunwell_d_01_bem.m2", + value = "helm_leather_sunwell_d_01_bem.m2", }, { fileId = "139020", - value = "helm_leather_sunwell_d_01_drf.m2", text = "helm_leather_sunwell_d_01_drf.m2", + value = "helm_leather_sunwell_d_01_drf.m2", }, { fileId = "139021", - value = "helm_leather_sunwell_d_01_drm.m2", text = "helm_leather_sunwell_d_01_drm.m2", + value = "helm_leather_sunwell_d_01_drm.m2", }, { fileId = "139022", - value = "helm_leather_sunwell_d_01_dwf.m2", text = "helm_leather_sunwell_d_01_dwf.m2", + value = "helm_leather_sunwell_d_01_dwf.m2", }, { fileId = "139023", - value = "helm_leather_sunwell_d_01_dwm.m2", text = "helm_leather_sunwell_d_01_dwm.m2", + value = "helm_leather_sunwell_d_01_dwm.m2", }, { fileId = "139024", - value = "helm_leather_sunwell_d_01_gnf.m2", text = "helm_leather_sunwell_d_01_gnf.m2", + value = "helm_leather_sunwell_d_01_gnf.m2", }, { fileId = "139025", - value = "helm_leather_sunwell_d_01_gnm.m2", text = "helm_leather_sunwell_d_01_gnm.m2", + value = "helm_leather_sunwell_d_01_gnm.m2", }, { fileId = "139026", - value = "helm_leather_sunwell_d_01_gof.m2", text = "helm_leather_sunwell_d_01_gof.m2", + value = "helm_leather_sunwell_d_01_gof.m2", }, { fileId = "139027", - value = "helm_leather_sunwell_d_01_gom.m2", text = "helm_leather_sunwell_d_01_gom.m2", + value = "helm_leather_sunwell_d_01_gom.m2", }, { fileId = "139028", - value = "helm_leather_sunwell_d_01_huf.m2", text = "helm_leather_sunwell_d_01_huf.m2", + value = "helm_leather_sunwell_d_01_huf.m2", }, { fileId = "139029", - value = "helm_leather_sunwell_d_01_hum.m2", text = "helm_leather_sunwell_d_01_hum.m2", + value = "helm_leather_sunwell_d_01_hum.m2", }, { fileId = "139030", - value = "helm_leather_sunwell_d_01_nif.m2", text = "helm_leather_sunwell_d_01_nif.m2", + value = "helm_leather_sunwell_d_01_nif.m2", }, { fileId = "139031", - value = "helm_leather_sunwell_d_01_nim.m2", text = "helm_leather_sunwell_d_01_nim.m2", + value = "helm_leather_sunwell_d_01_nim.m2", }, { fileId = "139032", - value = "helm_leather_sunwell_d_01_orf.m2", text = "helm_leather_sunwell_d_01_orf.m2", + value = "helm_leather_sunwell_d_01_orf.m2", }, { fileId = "139033", - value = "helm_leather_sunwell_d_01_orm.m2", text = "helm_leather_sunwell_d_01_orm.m2", + value = "helm_leather_sunwell_d_01_orm.m2", }, { fileId = "139034", - value = "helm_leather_sunwell_d_01_scf.m2", text = "helm_leather_sunwell_d_01_scf.m2", + value = "helm_leather_sunwell_d_01_scf.m2", }, { fileId = "139035", - value = "helm_leather_sunwell_d_01_scm.m2", text = "helm_leather_sunwell_d_01_scm.m2", + value = "helm_leather_sunwell_d_01_scm.m2", }, { fileId = "139036", - value = "helm_leather_sunwell_d_01_taf.m2", text = "helm_leather_sunwell_d_01_taf.m2", + value = "helm_leather_sunwell_d_01_taf.m2", }, { fileId = "139037", - value = "helm_leather_sunwell_d_01_tam.m2", text = "helm_leather_sunwell_d_01_tam.m2", + value = "helm_leather_sunwell_d_01_tam.m2", }, { fileId = "139038", - value = "helm_leather_sunwell_d_01_trf.m2", text = "helm_leather_sunwell_d_01_trf.m2", + value = "helm_leather_sunwell_d_01_trf.m2", }, { fileId = "139039", - value = "helm_leather_sunwell_d_01_trm.m2", text = "helm_leather_sunwell_d_01_trm.m2", + value = "helm_leather_sunwell_d_01_trm.m2", }, { fileId = "139044", - value = "helm_leather_zulaman_d_01_bef.m2", text = "helm_leather_zulaman_d_01_bef.m2", + value = "helm_leather_zulaman_d_01_bef.m2", }, { fileId = "139045", - value = "helm_leather_zulaman_d_01_bem.m2", text = "helm_leather_zulaman_d_01_bem.m2", + value = "helm_leather_zulaman_d_01_bem.m2", }, { fileId = "139046", - value = "helm_leather_zulaman_d_01_drf.m2", text = "helm_leather_zulaman_d_01_drf.m2", + value = "helm_leather_zulaman_d_01_drf.m2", }, { fileId = "139047", - value = "helm_leather_zulaman_d_01_drm.m2", text = "helm_leather_zulaman_d_01_drm.m2", + value = "helm_leather_zulaman_d_01_drm.m2", }, { fileId = "139048", - value = "helm_leather_zulaman_d_01_dwf.m2", text = "helm_leather_zulaman_d_01_dwf.m2", + value = "helm_leather_zulaman_d_01_dwf.m2", }, { fileId = "139049", - value = "helm_leather_zulaman_d_01_dwm.m2", text = "helm_leather_zulaman_d_01_dwm.m2", + value = "helm_leather_zulaman_d_01_dwm.m2", }, { fileId = "139050", - value = "helm_leather_zulaman_d_01_gnf.m2", text = "helm_leather_zulaman_d_01_gnf.m2", + value = "helm_leather_zulaman_d_01_gnf.m2", }, { fileId = "139051", - value = "helm_leather_zulaman_d_01_gnm.m2", text = "helm_leather_zulaman_d_01_gnm.m2", + value = "helm_leather_zulaman_d_01_gnm.m2", }, { fileId = "139052", - value = "helm_leather_zulaman_d_01_huf.m2", text = "helm_leather_zulaman_d_01_huf.m2", + value = "helm_leather_zulaman_d_01_huf.m2", }, { fileId = "139053", - value = "helm_leather_zulaman_d_01_hum.m2", text = "helm_leather_zulaman_d_01_hum.m2", + value = "helm_leather_zulaman_d_01_hum.m2", }, { fileId = "139054", - value = "helm_leather_zulaman_d_01_nif.m2", text = "helm_leather_zulaman_d_01_nif.m2", + value = "helm_leather_zulaman_d_01_nif.m2", }, { fileId = "139055", - value = "helm_leather_zulaman_d_01_nim.m2", text = "helm_leather_zulaman_d_01_nim.m2", + value = "helm_leather_zulaman_d_01_nim.m2", }, { fileId = "139056", - value = "helm_leather_zulaman_d_01_orf.m2", text = "helm_leather_zulaman_d_01_orf.m2", + value = "helm_leather_zulaman_d_01_orf.m2", }, { fileId = "139057", - value = "helm_leather_zulaman_d_01_orm.m2", text = "helm_leather_zulaman_d_01_orm.m2", + value = "helm_leather_zulaman_d_01_orm.m2", }, { fileId = "139058", - value = "helm_leather_zulaman_d_01_scf.m2", text = "helm_leather_zulaman_d_01_scf.m2", + value = "helm_leather_zulaman_d_01_scf.m2", }, { fileId = "139059", - value = "helm_leather_zulaman_d_01_scm.m2", text = "helm_leather_zulaman_d_01_scm.m2", + value = "helm_leather_zulaman_d_01_scm.m2", }, { fileId = "139060", - value = "helm_leather_zulaman_d_01_taf.m2", text = "helm_leather_zulaman_d_01_taf.m2", + value = "helm_leather_zulaman_d_01_taf.m2", }, { fileId = "139061", - value = "helm_leather_zulaman_d_01_tam.m2", text = "helm_leather_zulaman_d_01_tam.m2", + value = "helm_leather_zulaman_d_01_tam.m2", }, { fileId = "139062", - value = "helm_leather_zulaman_d_01_trf.m2", text = "helm_leather_zulaman_d_01_trf.m2", + value = "helm_leather_zulaman_d_01_trf.m2", }, { fileId = "139063", - value = "helm_leather_zulaman_d_01_trm.m2", text = "helm_leather_zulaman_d_01_trm.m2", + value = "helm_leather_zulaman_d_01_trm.m2", }, { fileId = "139067", - value = "helm_leather_zulaman_d_02_bef.m2", text = "helm_leather_zulaman_d_02_bef.m2", + value = "helm_leather_zulaman_d_02_bef.m2", }, { fileId = "139068", - value = "helm_leather_zulaman_d_02_bem.m2", text = "helm_leather_zulaman_d_02_bem.m2", + value = "helm_leather_zulaman_d_02_bem.m2", }, { fileId = "139069", - value = "helm_leather_zulaman_d_02_drf.m2", text = "helm_leather_zulaman_d_02_drf.m2", + value = "helm_leather_zulaman_d_02_drf.m2", }, { fileId = "139070", - value = "helm_leather_zulaman_d_02_drm.m2", text = "helm_leather_zulaman_d_02_drm.m2", + value = "helm_leather_zulaman_d_02_drm.m2", }, { fileId = "139071", - value = "helm_leather_zulaman_d_02_dwf.m2", text = "helm_leather_zulaman_d_02_dwf.m2", + value = "helm_leather_zulaman_d_02_dwf.m2", }, { fileId = "139072", - value = "helm_leather_zulaman_d_02_dwm.m2", text = "helm_leather_zulaman_d_02_dwm.m2", + value = "helm_leather_zulaman_d_02_dwm.m2", }, { fileId = "139073", - value = "helm_leather_zulaman_d_02_gnf.m2", text = "helm_leather_zulaman_d_02_gnf.m2", + value = "helm_leather_zulaman_d_02_gnf.m2", }, { fileId = "139074", - value = "helm_leather_zulaman_d_02_gnm.m2", text = "helm_leather_zulaman_d_02_gnm.m2", + value = "helm_leather_zulaman_d_02_gnm.m2", }, { fileId = "139075", - value = "helm_leather_zulaman_d_02_gof.m2", text = "helm_leather_zulaman_d_02_gof.m2", + value = "helm_leather_zulaman_d_02_gof.m2", }, { fileId = "139076", - value = "helm_leather_zulaman_d_02_gom.m2", text = "helm_leather_zulaman_d_02_gom.m2", + value = "helm_leather_zulaman_d_02_gom.m2", }, { fileId = "139077", - value = "helm_leather_zulaman_d_02_huf.m2", text = "helm_leather_zulaman_d_02_huf.m2", + value = "helm_leather_zulaman_d_02_huf.m2", }, { fileId = "139078", - value = "helm_leather_zulaman_d_02_hum.m2", text = "helm_leather_zulaman_d_02_hum.m2", + value = "helm_leather_zulaman_d_02_hum.m2", }, { fileId = "139079", - value = "helm_leather_zulaman_d_02_nif.m2", text = "helm_leather_zulaman_d_02_nif.m2", + value = "helm_leather_zulaman_d_02_nif.m2", }, { fileId = "139080", - value = "helm_leather_zulaman_d_02_nim.m2", text = "helm_leather_zulaman_d_02_nim.m2", + value = "helm_leather_zulaman_d_02_nim.m2", }, { fileId = "139081", - value = "helm_leather_zulaman_d_02_orf.m2", text = "helm_leather_zulaman_d_02_orf.m2", + value = "helm_leather_zulaman_d_02_orf.m2", }, { fileId = "139082", - value = "helm_leather_zulaman_d_02_orm.m2", text = "helm_leather_zulaman_d_02_orm.m2", + value = "helm_leather_zulaman_d_02_orm.m2", }, { fileId = "139083", - value = "helm_leather_zulaman_d_02_scf.m2", text = "helm_leather_zulaman_d_02_scf.m2", + value = "helm_leather_zulaman_d_02_scf.m2", }, { fileId = "139084", - value = "helm_leather_zulaman_d_02_scm.m2", text = "helm_leather_zulaman_d_02_scm.m2", + value = "helm_leather_zulaman_d_02_scm.m2", }, { fileId = "139085", - value = "helm_leather_zulaman_d_02_taf.m2", text = "helm_leather_zulaman_d_02_taf.m2", + value = "helm_leather_zulaman_d_02_taf.m2", }, { fileId = "139086", - value = "helm_leather_zulaman_d_02_tam.m2", text = "helm_leather_zulaman_d_02_tam.m2", + value = "helm_leather_zulaman_d_02_tam.m2", }, { fileId = "139087", - value = "helm_leather_zulaman_d_02_trf.m2", text = "helm_leather_zulaman_d_02_trf.m2", + value = "helm_leather_zulaman_d_02_trf.m2", }, { fileId = "139088", - value = "helm_leather_zulaman_d_02_trm.m2", text = "helm_leather_zulaman_d_02_trm.m2", + value = "helm_leather_zulaman_d_02_trm.m2", }, { fileId = "139093", - value = "helm_magic_b_01_bef.m2", text = "helm_magic_b_01_bef.m2", + value = "helm_magic_b_01_bef.m2", }, { fileId = "139094", - value = "helm_magic_b_01_bem.m2", text = "helm_magic_b_01_bem.m2", + value = "helm_magic_b_01_bem.m2", }, { fileId = "139095", - value = "helm_magic_b_01_drf.m2", text = "helm_magic_b_01_drf.m2", + value = "helm_magic_b_01_drf.m2", }, { fileId = "139096", - value = "helm_magic_b_01_drm.m2", text = "helm_magic_b_01_drm.m2", + value = "helm_magic_b_01_drm.m2", }, { fileId = "139097", - value = "helm_magic_b_01_dwf.m2", text = "helm_magic_b_01_dwf.m2", + value = "helm_magic_b_01_dwf.m2", }, { fileId = "139098", - value = "helm_magic_b_01_dwm.m2", text = "helm_magic_b_01_dwm.m2", + value = "helm_magic_b_01_dwm.m2", }, { fileId = "139099", - value = "helm_magic_b_01_gnf.m2", text = "helm_magic_b_01_gnf.m2", + value = "helm_magic_b_01_gnf.m2", }, { fileId = "139100", - value = "helm_magic_b_01_gnm.m2", text = "helm_magic_b_01_gnm.m2", + value = "helm_magic_b_01_gnm.m2", }, { fileId = "139101", - value = "helm_magic_b_01_gof.m2", text = "helm_magic_b_01_gof.m2", + value = "helm_magic_b_01_gof.m2", }, { fileId = "139102", - value = "helm_magic_b_01_gom.m2", text = "helm_magic_b_01_gom.m2", + value = "helm_magic_b_01_gom.m2", }, { fileId = "139103", - value = "helm_magic_b_01_huf.m2", text = "helm_magic_b_01_huf.m2", + value = "helm_magic_b_01_huf.m2", }, { fileId = "139104", - value = "helm_magic_b_01_hum.m2", text = "helm_magic_b_01_hum.m2", + value = "helm_magic_b_01_hum.m2", }, { fileId = "139105", - value = "helm_magic_b_01_nif.m2", text = "helm_magic_b_01_nif.m2", + value = "helm_magic_b_01_nif.m2", }, { fileId = "139106", - value = "helm_magic_b_01_nim.m2", text = "helm_magic_b_01_nim.m2", + value = "helm_magic_b_01_nim.m2", }, { fileId = "139107", - value = "helm_magic_b_01_orf.m2", text = "helm_magic_b_01_orf.m2", + value = "helm_magic_b_01_orf.m2", }, { fileId = "139108", - value = "helm_magic_b_01_orm.m2", text = "helm_magic_b_01_orm.m2", + value = "helm_magic_b_01_orm.m2", }, { fileId = "139109", - value = "helm_magic_b_01_scf.m2", text = "helm_magic_b_01_scf.m2", + value = "helm_magic_b_01_scf.m2", }, { fileId = "139110", - value = "helm_magic_b_01_scm.m2", text = "helm_magic_b_01_scm.m2", + value = "helm_magic_b_01_scm.m2", }, { fileId = "139111", - value = "helm_magic_b_01_taf.m2", text = "helm_magic_b_01_taf.m2", + value = "helm_magic_b_01_taf.m2", }, { fileId = "139112", - value = "helm_magic_b_01_tam.m2", text = "helm_magic_b_01_tam.m2", + value = "helm_magic_b_01_tam.m2", }, { fileId = "139113", - value = "helm_magic_b_01_trf.m2", text = "helm_magic_b_01_trf.m2", + value = "helm_magic_b_01_trf.m2", }, { fileId = "139114", - value = "helm_magic_b_01_trm.m2", text = "helm_magic_b_01_trm.m2", + value = "helm_magic_b_01_trm.m2", }, { fileId = "139116", - value = "helm_magic_b_02_bef.m2", text = "helm_magic_b_02_bef.m2", + value = "helm_magic_b_02_bef.m2", }, { fileId = "139117", - value = "helm_magic_b_02_bem.m2", text = "helm_magic_b_02_bem.m2", + value = "helm_magic_b_02_bem.m2", }, { fileId = "139118", - value = "helm_magic_b_02_drf.m2", text = "helm_magic_b_02_drf.m2", + value = "helm_magic_b_02_drf.m2", }, { fileId = "139119", - value = "helm_magic_b_02_drm.m2", text = "helm_magic_b_02_drm.m2", + value = "helm_magic_b_02_drm.m2", }, { fileId = "139120", - value = "helm_magic_b_02_dwf.m2", text = "helm_magic_b_02_dwf.m2", + value = "helm_magic_b_02_dwf.m2", }, { fileId = "139121", - value = "helm_magic_b_02_dwm.m2", text = "helm_magic_b_02_dwm.m2", + value = "helm_magic_b_02_dwm.m2", }, { fileId = "139122", - value = "helm_magic_b_02_gnf.m2", text = "helm_magic_b_02_gnf.m2", + value = "helm_magic_b_02_gnf.m2", }, { fileId = "139123", - value = "helm_magic_b_02_gnm.m2", text = "helm_magic_b_02_gnm.m2", + value = "helm_magic_b_02_gnm.m2", }, { fileId = "139124", - value = "helm_magic_b_02_gof.m2", text = "helm_magic_b_02_gof.m2", + value = "helm_magic_b_02_gof.m2", }, { fileId = "139125", - value = "helm_magic_b_02_gom.m2", text = "helm_magic_b_02_gom.m2", + value = "helm_magic_b_02_gom.m2", }, { fileId = "139126", - value = "helm_magic_b_02_huf.m2", text = "helm_magic_b_02_huf.m2", + value = "helm_magic_b_02_huf.m2", }, { fileId = "139127", - value = "helm_magic_b_02_hum.m2", text = "helm_magic_b_02_hum.m2", + value = "helm_magic_b_02_hum.m2", }, { fileId = "139128", - value = "helm_magic_b_02_nif.m2", text = "helm_magic_b_02_nif.m2", + value = "helm_magic_b_02_nif.m2", }, { fileId = "139129", - value = "helm_magic_b_02_nim.m2", text = "helm_magic_b_02_nim.m2", + value = "helm_magic_b_02_nim.m2", }, { fileId = "139130", - value = "helm_magic_b_02_orf.m2", text = "helm_magic_b_02_orf.m2", + value = "helm_magic_b_02_orf.m2", }, { fileId = "139131", - value = "helm_magic_b_02_orm.m2", text = "helm_magic_b_02_orm.m2", + value = "helm_magic_b_02_orm.m2", }, { fileId = "139132", - value = "helm_magic_b_02_scf.m2", text = "helm_magic_b_02_scf.m2", + value = "helm_magic_b_02_scf.m2", }, { fileId = "139133", - value = "helm_magic_b_02_scm.m2", text = "helm_magic_b_02_scm.m2", + value = "helm_magic_b_02_scm.m2", }, { fileId = "139134", - value = "helm_magic_b_02_taf.m2", text = "helm_magic_b_02_taf.m2", + value = "helm_magic_b_02_taf.m2", }, { fileId = "139135", - value = "helm_magic_b_02_tam.m2", text = "helm_magic_b_02_tam.m2", + value = "helm_magic_b_02_tam.m2", }, { fileId = "139136", - value = "helm_magic_b_02_trf.m2", text = "helm_magic_b_02_trf.m2", + value = "helm_magic_b_02_trf.m2", }, { fileId = "139137", - value = "helm_magic_b_02_trm.m2", text = "helm_magic_b_02_trm.m2", + value = "helm_magic_b_02_trm.m2", }, { fileId = "139139", - value = "helm_magic_c_01_bef.m2", text = "helm_magic_c_01_bef.m2", + value = "helm_magic_c_01_bef.m2", }, { fileId = "139140", - value = "helm_magic_c_01_bem.m2", text = "helm_magic_c_01_bem.m2", + value = "helm_magic_c_01_bem.m2", }, { fileId = "139141", - value = "helm_magic_c_01_drf.m2", text = "helm_magic_c_01_drf.m2", + value = "helm_magic_c_01_drf.m2", }, { fileId = "139142", - value = "helm_magic_c_01_drm.m2", text = "helm_magic_c_01_drm.m2", + value = "helm_magic_c_01_drm.m2", }, { fileId = "139143", - value = "helm_magic_c_01_dwf.m2", text = "helm_magic_c_01_dwf.m2", + value = "helm_magic_c_01_dwf.m2", }, { fileId = "139144", - value = "helm_magic_c_01_dwm.m2", text = "helm_magic_c_01_dwm.m2", + value = "helm_magic_c_01_dwm.m2", }, { fileId = "139145", - value = "helm_magic_c_01_gnf.m2", text = "helm_magic_c_01_gnf.m2", + value = "helm_magic_c_01_gnf.m2", }, { fileId = "139146", - value = "helm_magic_c_01_gnm.m2", text = "helm_magic_c_01_gnm.m2", + value = "helm_magic_c_01_gnm.m2", }, { fileId = "139147", - value = "helm_magic_c_01_gof.m2", text = "helm_magic_c_01_gof.m2", + value = "helm_magic_c_01_gof.m2", }, { fileId = "139148", - value = "helm_magic_c_01_gom.m2", text = "helm_magic_c_01_gom.m2", + value = "helm_magic_c_01_gom.m2", }, { fileId = "139149", - value = "helm_magic_c_01_huf.m2", text = "helm_magic_c_01_huf.m2", + value = "helm_magic_c_01_huf.m2", }, { fileId = "139150", - value = "helm_magic_c_01_hum.m2", text = "helm_magic_c_01_hum.m2", + value = "helm_magic_c_01_hum.m2", }, { fileId = "139151", - value = "helm_magic_c_01_nif.m2", text = "helm_magic_c_01_nif.m2", + value = "helm_magic_c_01_nif.m2", }, { fileId = "139152", - value = "helm_magic_c_01_nim.m2", text = "helm_magic_c_01_nim.m2", + value = "helm_magic_c_01_nim.m2", }, { fileId = "139153", - value = "helm_magic_c_01_orf.m2", text = "helm_magic_c_01_orf.m2", + value = "helm_magic_c_01_orf.m2", }, { fileId = "139154", - value = "helm_magic_c_01_orm.m2", text = "helm_magic_c_01_orm.m2", + value = "helm_magic_c_01_orm.m2", }, { fileId = "139155", - value = "helm_magic_c_01_scf.m2", text = "helm_magic_c_01_scf.m2", + value = "helm_magic_c_01_scf.m2", }, { fileId = "139156", - value = "helm_magic_c_01_scm.m2", text = "helm_magic_c_01_scm.m2", + value = "helm_magic_c_01_scm.m2", }, { fileId = "139157", - value = "helm_magic_c_01_taf.m2", text = "helm_magic_c_01_taf.m2", + value = "helm_magic_c_01_taf.m2", }, { fileId = "139158", - value = "helm_magic_c_01_tam.m2", text = "helm_magic_c_01_tam.m2", + value = "helm_magic_c_01_tam.m2", }, { fileId = "139159", - value = "helm_magic_c_01_trf.m2", text = "helm_magic_c_01_trf.m2", + value = "helm_magic_c_01_trf.m2", }, { fileId = "139160", - value = "helm_magic_c_01_trm.m2", text = "helm_magic_c_01_trm.m2", + value = "helm_magic_c_01_trm.m2", }, { fileId = "139163", - value = "helm_mail_a_01_bef.m2", text = "helm_mail_a_01_bef.m2", + value = "helm_mail_a_01_bef.m2", }, { fileId = "139164", - value = "helm_mail_a_01_bem.m2", text = "helm_mail_a_01_bem.m2", + value = "helm_mail_a_01_bem.m2", }, { fileId = "139165", - value = "helm_mail_a_01_drf.m2", text = "helm_mail_a_01_drf.m2", + value = "helm_mail_a_01_drf.m2", }, { fileId = "139166", - value = "helm_mail_a_01_drm.m2", text = "helm_mail_a_01_drm.m2", + value = "helm_mail_a_01_drm.m2", }, { fileId = "139167", - value = "helm_mail_a_01_dwf.m2", text = "helm_mail_a_01_dwf.m2", + value = "helm_mail_a_01_dwf.m2", }, { fileId = "139168", - value = "helm_mail_a_01_dwm.m2", text = "helm_mail_a_01_dwm.m2", + value = "helm_mail_a_01_dwm.m2", }, { fileId = "139169", - value = "helm_mail_a_01_gnf.m2", text = "helm_mail_a_01_gnf.m2", + value = "helm_mail_a_01_gnf.m2", }, { fileId = "139170", - value = "helm_mail_a_01_gnm.m2", text = "helm_mail_a_01_gnm.m2", + value = "helm_mail_a_01_gnm.m2", }, { fileId = "139171", - value = "helm_mail_a_01_gof.m2", text = "helm_mail_a_01_gof.m2", + value = "helm_mail_a_01_gof.m2", }, { fileId = "139172", - value = "helm_mail_a_01_gom.m2", text = "helm_mail_a_01_gom.m2", + value = "helm_mail_a_01_gom.m2", }, { fileId = "139173", - value = "helm_mail_a_01_huf.m2", text = "helm_mail_a_01_huf.m2", + value = "helm_mail_a_01_huf.m2", }, { fileId = "139174", - value = "helm_mail_a_01_hum.m2", text = "helm_mail_a_01_hum.m2", + value = "helm_mail_a_01_hum.m2", }, { fileId = "139175", - value = "helm_mail_a_01_nif.m2", text = "helm_mail_a_01_nif.m2", + value = "helm_mail_a_01_nif.m2", }, { fileId = "139176", - value = "helm_mail_a_01_nim.m2", text = "helm_mail_a_01_nim.m2", + value = "helm_mail_a_01_nim.m2", }, { fileId = "139177", - value = "helm_mail_a_01_orf.m2", text = "helm_mail_a_01_orf.m2", + value = "helm_mail_a_01_orf.m2", }, { fileId = "139178", - value = "helm_mail_a_01_orm.m2", text = "helm_mail_a_01_orm.m2", + value = "helm_mail_a_01_orm.m2", }, { fileId = "139179", - value = "helm_mail_a_01_scf.m2", text = "helm_mail_a_01_scf.m2", + value = "helm_mail_a_01_scf.m2", }, { fileId = "139180", - value = "helm_mail_a_01_scm.m2", text = "helm_mail_a_01_scm.m2", + value = "helm_mail_a_01_scm.m2", }, { fileId = "139181", - value = "helm_mail_a_01_taf.m2", text = "helm_mail_a_01_taf.m2", + value = "helm_mail_a_01_taf.m2", }, { fileId = "139182", - value = "helm_mail_a_01_tam.m2", text = "helm_mail_a_01_tam.m2", + value = "helm_mail_a_01_tam.m2", }, { fileId = "139183", - value = "helm_mail_a_01_trf.m2", text = "helm_mail_a_01_trf.m2", + value = "helm_mail_a_01_trf.m2", }, { fileId = "139184", - value = "helm_mail_a_01_trm.m2", text = "helm_mail_a_01_trm.m2", + value = "helm_mail_a_01_trm.m2", }, { fileId = "139191", - value = "helm_mail_a_02_bef.m2", text = "helm_mail_a_02_bef.m2", + value = "helm_mail_a_02_bef.m2", }, { fileId = "139192", - value = "helm_mail_a_02_bem.m2", text = "helm_mail_a_02_bem.m2", + value = "helm_mail_a_02_bem.m2", }, { fileId = "139193", - value = "helm_mail_a_02_drf.m2", text = "helm_mail_a_02_drf.m2", + value = "helm_mail_a_02_drf.m2", }, { fileId = "139194", - value = "helm_mail_a_02_drm.m2", text = "helm_mail_a_02_drm.m2", + value = "helm_mail_a_02_drm.m2", }, { fileId = "139195", - value = "helm_mail_a_02_dwf.m2", text = "helm_mail_a_02_dwf.m2", + value = "helm_mail_a_02_dwf.m2", }, { fileId = "139196", - value = "helm_mail_a_02_dwm.m2", text = "helm_mail_a_02_dwm.m2", + value = "helm_mail_a_02_dwm.m2", }, { fileId = "139197", - value = "helm_mail_a_02_gnf.m2", text = "helm_mail_a_02_gnf.m2", + value = "helm_mail_a_02_gnf.m2", }, { fileId = "139198", - value = "helm_mail_a_02_gnm.m2", text = "helm_mail_a_02_gnm.m2", + value = "helm_mail_a_02_gnm.m2", }, { fileId = "139199", - value = "helm_mail_a_02_gof.m2", text = "helm_mail_a_02_gof.m2", + value = "helm_mail_a_02_gof.m2", }, { fileId = "139200", - value = "helm_mail_a_02_gom.m2", text = "helm_mail_a_02_gom.m2", + value = "helm_mail_a_02_gom.m2", }, { fileId = "139201", - value = "helm_mail_a_02_huf.m2", text = "helm_mail_a_02_huf.m2", + value = "helm_mail_a_02_huf.m2", }, { fileId = "139202", - value = "helm_mail_a_02_hum.m2", text = "helm_mail_a_02_hum.m2", + value = "helm_mail_a_02_hum.m2", }, { fileId = "139203", - value = "helm_mail_a_02_nif.m2", text = "helm_mail_a_02_nif.m2", + value = "helm_mail_a_02_nif.m2", }, { fileId = "139204", - value = "helm_mail_a_02_nim.m2", text = "helm_mail_a_02_nim.m2", + value = "helm_mail_a_02_nim.m2", }, { fileId = "139205", - value = "helm_mail_a_02_orf.m2", text = "helm_mail_a_02_orf.m2", + value = "helm_mail_a_02_orf.m2", }, { fileId = "139206", - value = "helm_mail_a_02_orm.m2", text = "helm_mail_a_02_orm.m2", + value = "helm_mail_a_02_orm.m2", }, { fileId = "139207", - value = "helm_mail_a_02_scf.m2", text = "helm_mail_a_02_scf.m2", + value = "helm_mail_a_02_scf.m2", }, { fileId = "139208", - value = "helm_mail_a_02_scm.m2", text = "helm_mail_a_02_scm.m2", + value = "helm_mail_a_02_scm.m2", }, { fileId = "139209", - value = "helm_mail_a_02_taf.m2", text = "helm_mail_a_02_taf.m2", + value = "helm_mail_a_02_taf.m2", }, { fileId = "139210", - value = "helm_mail_a_02_tam.m2", text = "helm_mail_a_02_tam.m2", + value = "helm_mail_a_02_tam.m2", }, { fileId = "139211", - value = "helm_mail_a_02_trf.m2", text = "helm_mail_a_02_trf.m2", + value = "helm_mail_a_02_trf.m2", }, { fileId = "139212", - value = "helm_mail_a_02_trm.m2", text = "helm_mail_a_02_trm.m2", + value = "helm_mail_a_02_trm.m2", }, { fileId = "139217", - value = "helm_mail_ahnqiraj_a_01_bef.m2", text = "helm_mail_ahnqiraj_a_01_bef.m2", + value = "helm_mail_ahnqiraj_a_01_bef.m2", }, { fileId = "139218", - value = "helm_mail_ahnqiraj_a_01_bem.m2", text = "helm_mail_ahnqiraj_a_01_bem.m2", + value = "helm_mail_ahnqiraj_a_01_bem.m2", }, { fileId = "139219", - value = "helm_mail_ahnqiraj_a_01_drf.m2", text = "helm_mail_ahnqiraj_a_01_drf.m2", + value = "helm_mail_ahnqiraj_a_01_drf.m2", }, { fileId = "139220", - value = "helm_mail_ahnqiraj_a_01_drm.m2", text = "helm_mail_ahnqiraj_a_01_drm.m2", + value = "helm_mail_ahnqiraj_a_01_drm.m2", }, { fileId = "139221", - value = "helm_mail_ahnqiraj_a_01_dwf.m2", text = "helm_mail_ahnqiraj_a_01_dwf.m2", + value = "helm_mail_ahnqiraj_a_01_dwf.m2", }, { fileId = "139222", - value = "helm_mail_ahnqiraj_a_01_dwm.m2", text = "helm_mail_ahnqiraj_a_01_dwm.m2", + value = "helm_mail_ahnqiraj_a_01_dwm.m2", }, { fileId = "139223", - value = "helm_mail_ahnqiraj_a_01_gnf.m2", text = "helm_mail_ahnqiraj_a_01_gnf.m2", + value = "helm_mail_ahnqiraj_a_01_gnf.m2", }, { fileId = "139224", - value = "helm_mail_ahnqiraj_a_01_gnm.m2", text = "helm_mail_ahnqiraj_a_01_gnm.m2", + value = "helm_mail_ahnqiraj_a_01_gnm.m2", }, { fileId = "139225", - value = "helm_mail_ahnqiraj_a_01_gof.m2", text = "helm_mail_ahnqiraj_a_01_gof.m2", + value = "helm_mail_ahnqiraj_a_01_gof.m2", }, { fileId = "139226", - value = "helm_mail_ahnqiraj_a_01_gom.m2", text = "helm_mail_ahnqiraj_a_01_gom.m2", + value = "helm_mail_ahnqiraj_a_01_gom.m2", }, { fileId = "139227", - value = "helm_mail_ahnqiraj_a_01_huf.m2", text = "helm_mail_ahnqiraj_a_01_huf.m2", + value = "helm_mail_ahnqiraj_a_01_huf.m2", }, { fileId = "139228", - value = "helm_mail_ahnqiraj_a_01_hum.m2", text = "helm_mail_ahnqiraj_a_01_hum.m2", + value = "helm_mail_ahnqiraj_a_01_hum.m2", }, { fileId = "139229", - value = "helm_mail_ahnqiraj_a_01_nif.m2", text = "helm_mail_ahnqiraj_a_01_nif.m2", + value = "helm_mail_ahnqiraj_a_01_nif.m2", }, { fileId = "139230", - value = "helm_mail_ahnqiraj_a_01_nim.m2", text = "helm_mail_ahnqiraj_a_01_nim.m2", + value = "helm_mail_ahnqiraj_a_01_nim.m2", }, { fileId = "139231", - value = "helm_mail_ahnqiraj_a_01_orf.m2", text = "helm_mail_ahnqiraj_a_01_orf.m2", + value = "helm_mail_ahnqiraj_a_01_orf.m2", }, { fileId = "139232", - value = "helm_mail_ahnqiraj_a_01_orm.m2", text = "helm_mail_ahnqiraj_a_01_orm.m2", + value = "helm_mail_ahnqiraj_a_01_orm.m2", }, { fileId = "139233", - value = "helm_mail_ahnqiraj_a_01_scf.m2", text = "helm_mail_ahnqiraj_a_01_scf.m2", + value = "helm_mail_ahnqiraj_a_01_scf.m2", }, { fileId = "139234", - value = "helm_mail_ahnqiraj_a_01_scm.m2", text = "helm_mail_ahnqiraj_a_01_scm.m2", + value = "helm_mail_ahnqiraj_a_01_scm.m2", }, { fileId = "139235", - value = "helm_mail_ahnqiraj_a_01_taf.m2", text = "helm_mail_ahnqiraj_a_01_taf.m2", + value = "helm_mail_ahnqiraj_a_01_taf.m2", }, { fileId = "139236", - value = "helm_mail_ahnqiraj_a_01_tam.m2", text = "helm_mail_ahnqiraj_a_01_tam.m2", + value = "helm_mail_ahnqiraj_a_01_tam.m2", }, { fileId = "139237", - value = "helm_mail_ahnqiraj_a_01_trf.m2", text = "helm_mail_ahnqiraj_a_01_trf.m2", + value = "helm_mail_ahnqiraj_a_01_trf.m2", }, { fileId = "139238", - value = "helm_mail_ahnqiraj_a_01_trm.m2", text = "helm_mail_ahnqiraj_a_01_trm.m2", + value = "helm_mail_ahnqiraj_a_01_trm.m2", }, { fileId = "139243", - value = "helm_mail_b_01_bef.m2", text = "helm_mail_b_01_bef.m2", + value = "helm_mail_b_01_bef.m2", }, { fileId = "139244", - value = "helm_mail_b_01_bem.m2", text = "helm_mail_b_01_bem.m2", + value = "helm_mail_b_01_bem.m2", }, { fileId = "139245", - value = "helm_mail_b_01_drf.m2", text = "helm_mail_b_01_drf.m2", + value = "helm_mail_b_01_drf.m2", }, { fileId = "139246", - value = "helm_mail_b_01_drm.m2", text = "helm_mail_b_01_drm.m2", + value = "helm_mail_b_01_drm.m2", }, { fileId = "139247", - value = "helm_mail_b_01_dwf.m2", text = "helm_mail_b_01_dwf.m2", + value = "helm_mail_b_01_dwf.m2", }, { fileId = "139248", - value = "helm_mail_b_01_dwm.m2", text = "helm_mail_b_01_dwm.m2", + value = "helm_mail_b_01_dwm.m2", }, { fileId = "139249", - value = "helm_mail_b_01_gnf.m2", text = "helm_mail_b_01_gnf.m2", + value = "helm_mail_b_01_gnf.m2", }, { fileId = "139250", - value = "helm_mail_b_01_gnm.m2", text = "helm_mail_b_01_gnm.m2", + value = "helm_mail_b_01_gnm.m2", }, { fileId = "139251", - value = "helm_mail_b_01_gof.m2", text = "helm_mail_b_01_gof.m2", + value = "helm_mail_b_01_gof.m2", }, { fileId = "139252", - value = "helm_mail_b_01_gom.m2", text = "helm_mail_b_01_gom.m2", + value = "helm_mail_b_01_gom.m2", }, { fileId = "139253", - value = "helm_mail_b_01_huf.m2", text = "helm_mail_b_01_huf.m2", + value = "helm_mail_b_01_huf.m2", }, { fileId = "139254", - value = "helm_mail_b_01_hum.m2", text = "helm_mail_b_01_hum.m2", + value = "helm_mail_b_01_hum.m2", }, { fileId = "139255", - value = "helm_mail_b_01_nif.m2", text = "helm_mail_b_01_nif.m2", + value = "helm_mail_b_01_nif.m2", }, { fileId = "139256", - value = "helm_mail_b_01_nim.m2", text = "helm_mail_b_01_nim.m2", + value = "helm_mail_b_01_nim.m2", }, { fileId = "139257", - value = "helm_mail_b_01_orf.m2", text = "helm_mail_b_01_orf.m2", + value = "helm_mail_b_01_orf.m2", }, { fileId = "139258", - value = "helm_mail_b_01_orm.m2", text = "helm_mail_b_01_orm.m2", + value = "helm_mail_b_01_orm.m2", }, { fileId = "139259", - value = "helm_mail_b_01_scf.m2", text = "helm_mail_b_01_scf.m2", + value = "helm_mail_b_01_scf.m2", }, { fileId = "139260", - value = "helm_mail_b_01_scm.m2", text = "helm_mail_b_01_scm.m2", + value = "helm_mail_b_01_scm.m2", }, { fileId = "139261", - value = "helm_mail_b_01_taf.m2", text = "helm_mail_b_01_taf.m2", + value = "helm_mail_b_01_taf.m2", }, { fileId = "139262", - value = "helm_mail_b_01_tam.m2", text = "helm_mail_b_01_tam.m2", + value = "helm_mail_b_01_tam.m2", }, { fileId = "139263", - value = "helm_mail_b_01_trf.m2", text = "helm_mail_b_01_trf.m2", + value = "helm_mail_b_01_trf.m2", }, { fileId = "139264", - value = "helm_mail_b_01_trm.m2", text = "helm_mail_b_01_trm.m2", + value = "helm_mail_b_01_trm.m2", }, { fileId = "139265", - value = "helm_mail_c_01_bem.m2", text = "helm_mail_c_01_bem.m2", + value = "helm_mail_c_01_bem.m2", }, { fileId = "139266", - value = "helm_mail_c_01_drm.m2", text = "helm_mail_c_01_drm.m2", + value = "helm_mail_c_01_drm.m2", }, { fileId = "139267", - value = "helm_mail_c_01_gof.m2", text = "helm_mail_c_01_gof.m2", + value = "helm_mail_c_01_gof.m2", }, { fileId = "139268", - value = "helm_mail_c_02_bef.m2", text = "helm_mail_c_02_bef.m2", + value = "helm_mail_c_02_bef.m2", }, { fileId = "139269", - value = "helm_mail_c_02_bem.m2", text = "helm_mail_c_02_bem.m2", + value = "helm_mail_c_02_bem.m2", }, { fileId = "139270", - value = "helm_mail_c_02_drf.m2", text = "helm_mail_c_02_drf.m2", + value = "helm_mail_c_02_drf.m2", }, { fileId = "139271", - value = "helm_mail_c_02_drm.m2", text = "helm_mail_c_02_drm.m2", + value = "helm_mail_c_02_drm.m2", }, { fileId = "139272", - value = "helm_mail_c_02_dwf.m2", text = "helm_mail_c_02_dwf.m2", + value = "helm_mail_c_02_dwf.m2", }, { fileId = "139273", - value = "helm_mail_c_02_dwm.m2", text = "helm_mail_c_02_dwm.m2", + value = "helm_mail_c_02_dwm.m2", }, { fileId = "139274", - value = "helm_mail_c_02_gnf.m2", text = "helm_mail_c_02_gnf.m2", + value = "helm_mail_c_02_gnf.m2", }, { fileId = "139275", - value = "helm_mail_c_02_gnm.m2", text = "helm_mail_c_02_gnm.m2", + value = "helm_mail_c_02_gnm.m2", }, { fileId = "139276", - value = "helm_mail_c_02_gof.m2", text = "helm_mail_c_02_gof.m2", + value = "helm_mail_c_02_gof.m2", }, { fileId = "139277", - value = "helm_mail_c_02_huf.m2", text = "helm_mail_c_02_huf.m2", + value = "helm_mail_c_02_huf.m2", }, { fileId = "139278", - value = "helm_mail_c_02_hum.m2", text = "helm_mail_c_02_hum.m2", + value = "helm_mail_c_02_hum.m2", }, { fileId = "139279", - value = "helm_mail_c_02_nif.m2", text = "helm_mail_c_02_nif.m2", + value = "helm_mail_c_02_nif.m2", }, { fileId = "139280", - value = "helm_mail_c_02_nim.m2", text = "helm_mail_c_02_nim.m2", + value = "helm_mail_c_02_nim.m2", }, { fileId = "139281", - value = "helm_mail_c_02_orf.m2", text = "helm_mail_c_02_orf.m2", + value = "helm_mail_c_02_orf.m2", }, { fileId = "139282", - value = "helm_mail_c_02_orm.m2", text = "helm_mail_c_02_orm.m2", + value = "helm_mail_c_02_orm.m2", }, { fileId = "139283", - value = "helm_mail_c_02_scf.m2", text = "helm_mail_c_02_scf.m2", + value = "helm_mail_c_02_scf.m2", }, { fileId = "139284", - value = "helm_mail_c_02_scm.m2", text = "helm_mail_c_02_scm.m2", + value = "helm_mail_c_02_scm.m2", }, { fileId = "139285", - value = "helm_mail_c_02_taf.m2", text = "helm_mail_c_02_taf.m2", + value = "helm_mail_c_02_taf.m2", }, { fileId = "139286", - value = "helm_mail_c_02_tam.m2", text = "helm_mail_c_02_tam.m2", + value = "helm_mail_c_02_tam.m2", }, { fileId = "139287", - value = "helm_mail_c_02_trf.m2", text = "helm_mail_c_02_trf.m2", + value = "helm_mail_c_02_trf.m2", }, { fileId = "139288", - value = "helm_mail_c_02_trm.m2", text = "helm_mail_c_02_trm.m2", + value = "helm_mail_c_02_trm.m2", }, { fileId = "139293", - value = "helm_mail_d_01_bef.m2", text = "helm_mail_d_01_bef.m2", + value = "helm_mail_d_01_bef.m2", }, { fileId = "139294", - value = "helm_mail_d_01_bem.m2", text = "helm_mail_d_01_bem.m2", + value = "helm_mail_d_01_bem.m2", }, { fileId = "139295", - value = "helm_mail_d_01_drf.m2", text = "helm_mail_d_01_drf.m2", + value = "helm_mail_d_01_drf.m2", }, { fileId = "139296", - value = "helm_mail_d_01_drm.m2", text = "helm_mail_d_01_drm.m2", + value = "helm_mail_d_01_drm.m2", }, { fileId = "139297", - value = "helm_mail_d_01_dwf.m2", text = "helm_mail_d_01_dwf.m2", + value = "helm_mail_d_01_dwf.m2", }, { fileId = "139298", - value = "helm_mail_d_01_dwm.m2", text = "helm_mail_d_01_dwm.m2", + value = "helm_mail_d_01_dwm.m2", }, { fileId = "139299", - value = "helm_mail_d_01_gnf.m2", text = "helm_mail_d_01_gnf.m2", + value = "helm_mail_d_01_gnf.m2", }, { fileId = "139300", - value = "helm_mail_d_01_gnm.m2", text = "helm_mail_d_01_gnm.m2", + value = "helm_mail_d_01_gnm.m2", }, { fileId = "139301", - value = "helm_mail_d_01_gof.m2", text = "helm_mail_d_01_gof.m2", + value = "helm_mail_d_01_gof.m2", }, { fileId = "139302", - value = "helm_mail_d_01_gom.m2", text = "helm_mail_d_01_gom.m2", + value = "helm_mail_d_01_gom.m2", }, { fileId = "139303", - value = "helm_mail_d_01_huf.m2", text = "helm_mail_d_01_huf.m2", + value = "helm_mail_d_01_huf.m2", }, { fileId = "139304", - value = "helm_mail_d_01_hum.m2", text = "helm_mail_d_01_hum.m2", + value = "helm_mail_d_01_hum.m2", }, { fileId = "139305", - value = "helm_mail_d_01_nif.m2", text = "helm_mail_d_01_nif.m2", + value = "helm_mail_d_01_nif.m2", }, { fileId = "139306", - value = "helm_mail_d_01_nim.m2", text = "helm_mail_d_01_nim.m2", + value = "helm_mail_d_01_nim.m2", }, { fileId = "139307", - value = "helm_mail_d_01_orf.m2", text = "helm_mail_d_01_orf.m2", + value = "helm_mail_d_01_orf.m2", }, { fileId = "139308", - value = "helm_mail_d_01_orm.m2", text = "helm_mail_d_01_orm.m2", + value = "helm_mail_d_01_orm.m2", }, { fileId = "139309", - value = "helm_mail_d_01_scf.m2", text = "helm_mail_d_01_scf.m2", + value = "helm_mail_d_01_scf.m2", }, { fileId = "139310", - value = "helm_mail_d_01_scm.m2", text = "helm_mail_d_01_scm.m2", + value = "helm_mail_d_01_scm.m2", }, { fileId = "139311", - value = "helm_mail_d_01_taf.m2", text = "helm_mail_d_01_taf.m2", + value = "helm_mail_d_01_taf.m2", }, { fileId = "139312", - value = "helm_mail_d_01_tam.m2", text = "helm_mail_d_01_tam.m2", + value = "helm_mail_d_01_tam.m2", }, { fileId = "139313", - value = "helm_mail_d_01_trf.m2", text = "helm_mail_d_01_trf.m2", + value = "helm_mail_d_01_trf.m2", }, { fileId = "139314", - value = "helm_mail_d_01_trm.m2", text = "helm_mail_d_01_trm.m2", + value = "helm_mail_d_01_trm.m2", }, { fileId = "139321", - value = "helm_mail_dungeonhunter_a_01_bef.m2", text = "helm_mail_dungeonhunter_a_01_bef.m2", + value = "helm_mail_dungeonhunter_a_01_bef.m2", }, { fileId = "139322", - value = "helm_mail_dungeonhunter_a_01_bem.m2", text = "helm_mail_dungeonhunter_a_01_bem.m2", + value = "helm_mail_dungeonhunter_a_01_bem.m2", }, { fileId = "139323", - value = "helm_mail_dungeonhunter_a_01_drf.m2", text = "helm_mail_dungeonhunter_a_01_drf.m2", + value = "helm_mail_dungeonhunter_a_01_drf.m2", }, { fileId = "139324", - value = "helm_mail_dungeonhunter_a_01_drm.m2", text = "helm_mail_dungeonhunter_a_01_drm.m2", + value = "helm_mail_dungeonhunter_a_01_drm.m2", }, { fileId = "139325", - value = "helm_mail_dungeonhunter_a_01_dwf.m2", text = "helm_mail_dungeonhunter_a_01_dwf.m2", + value = "helm_mail_dungeonhunter_a_01_dwf.m2", }, { fileId = "139326", - value = "helm_mail_dungeonhunter_a_01_dwm.m2", text = "helm_mail_dungeonhunter_a_01_dwm.m2", + value = "helm_mail_dungeonhunter_a_01_dwm.m2", }, { fileId = "139327", - value = "helm_mail_dungeonhunter_a_01_gnf.m2", text = "helm_mail_dungeonhunter_a_01_gnf.m2", + value = "helm_mail_dungeonhunter_a_01_gnf.m2", }, { fileId = "139328", - value = "helm_mail_dungeonhunter_a_01_gnm.m2", text = "helm_mail_dungeonhunter_a_01_gnm.m2", + value = "helm_mail_dungeonhunter_a_01_gnm.m2", }, { fileId = "139329", - value = "helm_mail_dungeonhunter_a_01_gof.m2", text = "helm_mail_dungeonhunter_a_01_gof.m2", + value = "helm_mail_dungeonhunter_a_01_gof.m2", }, { fileId = "139330", - value = "helm_mail_dungeonhunter_a_01_huf.m2", text = "helm_mail_dungeonhunter_a_01_huf.m2", + value = "helm_mail_dungeonhunter_a_01_huf.m2", }, { fileId = "139331", - value = "helm_mail_dungeonhunter_a_01_hum.m2", text = "helm_mail_dungeonhunter_a_01_hum.m2", + value = "helm_mail_dungeonhunter_a_01_hum.m2", }, { fileId = "139332", - value = "helm_mail_dungeonhunter_a_01_nif.m2", text = "helm_mail_dungeonhunter_a_01_nif.m2", + value = "helm_mail_dungeonhunter_a_01_nif.m2", }, { fileId = "139333", - value = "helm_mail_dungeonhunter_a_01_nim.m2", text = "helm_mail_dungeonhunter_a_01_nim.m2", + value = "helm_mail_dungeonhunter_a_01_nim.m2", }, { fileId = "139334", - value = "helm_mail_dungeonhunter_a_01_orf.m2", text = "helm_mail_dungeonhunter_a_01_orf.m2", + value = "helm_mail_dungeonhunter_a_01_orf.m2", }, { fileId = "139335", - value = "helm_mail_dungeonhunter_a_01_orm.m2", text = "helm_mail_dungeonhunter_a_01_orm.m2", + value = "helm_mail_dungeonhunter_a_01_orm.m2", }, { fileId = "139336", - value = "helm_mail_dungeonhunter_a_01_scf.m2", text = "helm_mail_dungeonhunter_a_01_scf.m2", + value = "helm_mail_dungeonhunter_a_01_scf.m2", }, { fileId = "139337", - value = "helm_mail_dungeonhunter_a_01_scm.m2", text = "helm_mail_dungeonhunter_a_01_scm.m2", + value = "helm_mail_dungeonhunter_a_01_scm.m2", }, { fileId = "139338", - value = "helm_mail_dungeonhunter_a_01_taf.m2", text = "helm_mail_dungeonhunter_a_01_taf.m2", + value = "helm_mail_dungeonhunter_a_01_taf.m2", }, { fileId = "139339", - value = "helm_mail_dungeonhunter_a_01_tam.m2", text = "helm_mail_dungeonhunter_a_01_tam.m2", + value = "helm_mail_dungeonhunter_a_01_tam.m2", }, { fileId = "139340", - value = "helm_mail_dungeonhunter_a_01_trf.m2", text = "helm_mail_dungeonhunter_a_01_trf.m2", + value = "helm_mail_dungeonhunter_a_01_trf.m2", }, { fileId = "139341", - value = "helm_mail_dungeonhunter_a_01_trm.m2", text = "helm_mail_dungeonhunter_a_01_trm.m2", + value = "helm_mail_dungeonhunter_a_01_trm.m2", }, { fileId = "139346", - value = "helm_mail_dungeonhunter_b_02_bef.m2", text = "helm_mail_dungeonhunter_b_02_bef.m2", + value = "helm_mail_dungeonhunter_b_02_bef.m2", }, { fileId = "139347", - value = "helm_mail_dungeonhunter_b_02_bem.m2", text = "helm_mail_dungeonhunter_b_02_bem.m2", + value = "helm_mail_dungeonhunter_b_02_bem.m2", }, { fileId = "139348", - value = "helm_mail_dungeonhunter_b_02_drf.m2", text = "helm_mail_dungeonhunter_b_02_drf.m2", + value = "helm_mail_dungeonhunter_b_02_drf.m2", }, { fileId = "139349", - value = "helm_mail_dungeonhunter_b_02_drm.m2", text = "helm_mail_dungeonhunter_b_02_drm.m2", + value = "helm_mail_dungeonhunter_b_02_drm.m2", }, { fileId = "139350", - value = "helm_mail_dungeonhunter_b_02_dwf.m2", text = "helm_mail_dungeonhunter_b_02_dwf.m2", + value = "helm_mail_dungeonhunter_b_02_dwf.m2", }, { fileId = "139351", - value = "helm_mail_dungeonhunter_b_02_dwm.m2", text = "helm_mail_dungeonhunter_b_02_dwm.m2", + value = "helm_mail_dungeonhunter_b_02_dwm.m2", }, { fileId = "139352", - value = "helm_mail_dungeonhunter_b_02_gnf.m2", text = "helm_mail_dungeonhunter_b_02_gnf.m2", + value = "helm_mail_dungeonhunter_b_02_gnf.m2", }, { fileId = "139353", - value = "helm_mail_dungeonhunter_b_02_gnm.m2", text = "helm_mail_dungeonhunter_b_02_gnm.m2", + value = "helm_mail_dungeonhunter_b_02_gnm.m2", }, { fileId = "139354", - value = "helm_mail_dungeonhunter_b_02_gof.m2", text = "helm_mail_dungeonhunter_b_02_gof.m2", + value = "helm_mail_dungeonhunter_b_02_gof.m2", }, { fileId = "139355", - value = "helm_mail_dungeonhunter_b_02_gom.m2", text = "helm_mail_dungeonhunter_b_02_gom.m2", + value = "helm_mail_dungeonhunter_b_02_gom.m2", }, { fileId = "139356", - value = "helm_mail_dungeonhunter_b_02_huf.m2", text = "helm_mail_dungeonhunter_b_02_huf.m2", + value = "helm_mail_dungeonhunter_b_02_huf.m2", }, { fileId = "139357", - value = "helm_mail_dungeonhunter_b_02_hum.m2", text = "helm_mail_dungeonhunter_b_02_hum.m2", + value = "helm_mail_dungeonhunter_b_02_hum.m2", }, { fileId = "139358", - value = "helm_mail_dungeonhunter_b_02_nif.m2", text = "helm_mail_dungeonhunter_b_02_nif.m2", + value = "helm_mail_dungeonhunter_b_02_nif.m2", }, { fileId = "139359", - value = "helm_mail_dungeonhunter_b_02_nim.m2", text = "helm_mail_dungeonhunter_b_02_nim.m2", + value = "helm_mail_dungeonhunter_b_02_nim.m2", }, { fileId = "139360", - value = "helm_mail_dungeonhunter_b_02_orf.m2", text = "helm_mail_dungeonhunter_b_02_orf.m2", + value = "helm_mail_dungeonhunter_b_02_orf.m2", }, { fileId = "139361", - value = "helm_mail_dungeonhunter_b_02_orm.m2", text = "helm_mail_dungeonhunter_b_02_orm.m2", + value = "helm_mail_dungeonhunter_b_02_orm.m2", }, { fileId = "139362", - value = "helm_mail_dungeonhunter_b_02_scf.m2", text = "helm_mail_dungeonhunter_b_02_scf.m2", + value = "helm_mail_dungeonhunter_b_02_scf.m2", }, { fileId = "139363", - value = "helm_mail_dungeonhunter_b_02_scm.m2", text = "helm_mail_dungeonhunter_b_02_scm.m2", + value = "helm_mail_dungeonhunter_b_02_scm.m2", }, { fileId = "139364", - value = "helm_mail_dungeonhunter_b_02_taf.m2", text = "helm_mail_dungeonhunter_b_02_taf.m2", + value = "helm_mail_dungeonhunter_b_02_taf.m2", }, { fileId = "139365", - value = "helm_mail_dungeonhunter_b_02_tam.m2", text = "helm_mail_dungeonhunter_b_02_tam.m2", + value = "helm_mail_dungeonhunter_b_02_tam.m2", }, { fileId = "139366", - value = "helm_mail_dungeonhunter_b_02_trf.m2", text = "helm_mail_dungeonhunter_b_02_trf.m2", + value = "helm_mail_dungeonhunter_b_02_trf.m2", }, { fileId = "139367", - value = "helm_mail_dungeonhunter_b_02_trm.m2", text = "helm_mail_dungeonhunter_b_02_trm.m2", + value = "helm_mail_dungeonhunter_b_02_trm.m2", }, { fileId = "139373", - value = "helm_mail_dungeonshaman_a_01_bef.m2", text = "helm_mail_dungeonshaman_a_01_bef.m2", + value = "helm_mail_dungeonshaman_a_01_bef.m2", }, { fileId = "139374", - value = "helm_mail_dungeonshaman_a_01_bem.m2", text = "helm_mail_dungeonshaman_a_01_bem.m2", + value = "helm_mail_dungeonshaman_a_01_bem.m2", }, { fileId = "139375", - value = "helm_mail_dungeonshaman_a_01_drf.m2", text = "helm_mail_dungeonshaman_a_01_drf.m2", + value = "helm_mail_dungeonshaman_a_01_drf.m2", }, { fileId = "139376", - value = "helm_mail_dungeonshaman_a_01_drm.m2", text = "helm_mail_dungeonshaman_a_01_drm.m2", + value = "helm_mail_dungeonshaman_a_01_drm.m2", }, { fileId = "139377", - value = "helm_mail_dungeonshaman_a_01_dwf.m2", text = "helm_mail_dungeonshaman_a_01_dwf.m2", + value = "helm_mail_dungeonshaman_a_01_dwf.m2", }, { fileId = "139378", - value = "helm_mail_dungeonshaman_a_01_dwm.m2", text = "helm_mail_dungeonshaman_a_01_dwm.m2", + value = "helm_mail_dungeonshaman_a_01_dwm.m2", }, { fileId = "139379", - value = "helm_mail_dungeonshaman_a_01_gnf.m2", text = "helm_mail_dungeonshaman_a_01_gnf.m2", + value = "helm_mail_dungeonshaman_a_01_gnf.m2", }, { fileId = "139380", - value = "helm_mail_dungeonshaman_a_01_gnm.m2", text = "helm_mail_dungeonshaman_a_01_gnm.m2", + value = "helm_mail_dungeonshaman_a_01_gnm.m2", }, { fileId = "139381", - value = "helm_mail_dungeonshaman_a_01_gof.m2", text = "helm_mail_dungeonshaman_a_01_gof.m2", + value = "helm_mail_dungeonshaman_a_01_gof.m2", }, { fileId = "139382", - value = "helm_mail_dungeonshaman_a_01_gom.m2", text = "helm_mail_dungeonshaman_a_01_gom.m2", + value = "helm_mail_dungeonshaman_a_01_gom.m2", }, { fileId = "139383", - value = "helm_mail_dungeonshaman_a_01_huf.m2", text = "helm_mail_dungeonshaman_a_01_huf.m2", + value = "helm_mail_dungeonshaman_a_01_huf.m2", }, { fileId = "139384", - value = "helm_mail_dungeonshaman_a_01_hum.m2", text = "helm_mail_dungeonshaman_a_01_hum.m2", + value = "helm_mail_dungeonshaman_a_01_hum.m2", }, { fileId = "139385", - value = "helm_mail_dungeonshaman_a_01_nif.m2", text = "helm_mail_dungeonshaman_a_01_nif.m2", + value = "helm_mail_dungeonshaman_a_01_nif.m2", }, { fileId = "139386", - value = "helm_mail_dungeonshaman_a_01_nim.m2", text = "helm_mail_dungeonshaman_a_01_nim.m2", + value = "helm_mail_dungeonshaman_a_01_nim.m2", }, { fileId = "139387", - value = "helm_mail_dungeonshaman_a_01_orf.m2", text = "helm_mail_dungeonshaman_a_01_orf.m2", + value = "helm_mail_dungeonshaman_a_01_orf.m2", }, { fileId = "139388", - value = "helm_mail_dungeonshaman_a_01_orm.m2", text = "helm_mail_dungeonshaman_a_01_orm.m2", + value = "helm_mail_dungeonshaman_a_01_orm.m2", }, { fileId = "139389", - value = "helm_mail_dungeonshaman_a_01_scf.m2", text = "helm_mail_dungeonshaman_a_01_scf.m2", + value = "helm_mail_dungeonshaman_a_01_scf.m2", }, { fileId = "139390", - value = "helm_mail_dungeonshaman_a_01_scm.m2", text = "helm_mail_dungeonshaman_a_01_scm.m2", + value = "helm_mail_dungeonshaman_a_01_scm.m2", }, { fileId = "139391", - value = "helm_mail_dungeonshaman_a_01_taf.m2", text = "helm_mail_dungeonshaman_a_01_taf.m2", + value = "helm_mail_dungeonshaman_a_01_taf.m2", }, { fileId = "139392", - value = "helm_mail_dungeonshaman_a_01_tam.m2", text = "helm_mail_dungeonshaman_a_01_tam.m2", + value = "helm_mail_dungeonshaman_a_01_tam.m2", }, { fileId = "139393", - value = "helm_mail_dungeonshaman_a_01_trf.m2", text = "helm_mail_dungeonshaman_a_01_trf.m2", + value = "helm_mail_dungeonshaman_a_01_trf.m2", }, { fileId = "139394", - value = "helm_mail_dungeonshaman_a_01_trm.m2", text = "helm_mail_dungeonshaman_a_01_trm.m2", + value = "helm_mail_dungeonshaman_a_01_trm.m2", }, { fileId = "139400", - value = "helm_mail_dungeonshaman_b_01_bef.m2", text = "helm_mail_dungeonshaman_b_01_bef.m2", + value = "helm_mail_dungeonshaman_b_01_bef.m2", }, { fileId = "139401", - value = "helm_mail_dungeonshaman_b_01_bem.m2", text = "helm_mail_dungeonshaman_b_01_bem.m2", + value = "helm_mail_dungeonshaman_b_01_bem.m2", }, { fileId = "139402", - value = "helm_mail_dungeonshaman_b_01_drf.m2", text = "helm_mail_dungeonshaman_b_01_drf.m2", + value = "helm_mail_dungeonshaman_b_01_drf.m2", }, { fileId = "139403", - value = "helm_mail_dungeonshaman_b_01_drm.m2", text = "helm_mail_dungeonshaman_b_01_drm.m2", + value = "helm_mail_dungeonshaman_b_01_drm.m2", }, { fileId = "139404", - value = "helm_mail_dungeonshaman_b_01_dwf.m2", text = "helm_mail_dungeonshaman_b_01_dwf.m2", + value = "helm_mail_dungeonshaman_b_01_dwf.m2", }, { fileId = "139405", - value = "helm_mail_dungeonshaman_b_01_dwm.m2", text = "helm_mail_dungeonshaman_b_01_dwm.m2", + value = "helm_mail_dungeonshaman_b_01_dwm.m2", }, { fileId = "139406", - value = "helm_mail_dungeonshaman_b_01_gnf.m2", text = "helm_mail_dungeonshaman_b_01_gnf.m2", + value = "helm_mail_dungeonshaman_b_01_gnf.m2", }, { fileId = "139407", - value = "helm_mail_dungeonshaman_b_01_gnm.m2", text = "helm_mail_dungeonshaman_b_01_gnm.m2", + value = "helm_mail_dungeonshaman_b_01_gnm.m2", }, { fileId = "139408", - value = "helm_mail_dungeonshaman_b_01_gof.m2", text = "helm_mail_dungeonshaman_b_01_gof.m2", + value = "helm_mail_dungeonshaman_b_01_gof.m2", }, { fileId = "139409", - value = "helm_mail_dungeonshaman_b_01_gom.m2", text = "helm_mail_dungeonshaman_b_01_gom.m2", + value = "helm_mail_dungeonshaman_b_01_gom.m2", }, { fileId = "139410", - value = "helm_mail_dungeonshaman_b_01_huf.m2", text = "helm_mail_dungeonshaman_b_01_huf.m2", + value = "helm_mail_dungeonshaman_b_01_huf.m2", }, { fileId = "139411", - value = "helm_mail_dungeonshaman_b_01_hum.m2", text = "helm_mail_dungeonshaman_b_01_hum.m2", + value = "helm_mail_dungeonshaman_b_01_hum.m2", }, { fileId = "139412", - value = "helm_mail_dungeonshaman_b_01_nif.m2", text = "helm_mail_dungeonshaman_b_01_nif.m2", + value = "helm_mail_dungeonshaman_b_01_nif.m2", }, { fileId = "139413", - value = "helm_mail_dungeonshaman_b_01_nim.m2", text = "helm_mail_dungeonshaman_b_01_nim.m2", + value = "helm_mail_dungeonshaman_b_01_nim.m2", }, { fileId = "139414", - value = "helm_mail_dungeonshaman_b_01_orf.m2", text = "helm_mail_dungeonshaman_b_01_orf.m2", + value = "helm_mail_dungeonshaman_b_01_orf.m2", }, { fileId = "139415", - value = "helm_mail_dungeonshaman_b_01_orm.m2", text = "helm_mail_dungeonshaman_b_01_orm.m2", + value = "helm_mail_dungeonshaman_b_01_orm.m2", }, { fileId = "139416", - value = "helm_mail_dungeonshaman_b_01_scf.m2", text = "helm_mail_dungeonshaman_b_01_scf.m2", + value = "helm_mail_dungeonshaman_b_01_scf.m2", }, { fileId = "139417", - value = "helm_mail_dungeonshaman_b_01_scm.m2", text = "helm_mail_dungeonshaman_b_01_scm.m2", + value = "helm_mail_dungeonshaman_b_01_scm.m2", }, { fileId = "139418", - value = "helm_mail_dungeonshaman_b_01_taf.m2", text = "helm_mail_dungeonshaman_b_01_taf.m2", + value = "helm_mail_dungeonshaman_b_01_taf.m2", }, { fileId = "139419", - value = "helm_mail_dungeonshaman_b_01_tam.m2", text = "helm_mail_dungeonshaman_b_01_tam.m2", + value = "helm_mail_dungeonshaman_b_01_tam.m2", }, { fileId = "139420", - value = "helm_mail_dungeonshaman_b_01_trf.m2", text = "helm_mail_dungeonshaman_b_01_trf.m2", + value = "helm_mail_dungeonshaman_b_01_trf.m2", }, { fileId = "139421", - value = "helm_mail_dungeonshaman_b_01_trm.m2", text = "helm_mail_dungeonshaman_b_01_trm.m2", + value = "helm_mail_dungeonshaman_b_01_trm.m2", }, { fileId = "139526", - value = "helm_mail_pvpalliance_a_01_bef.m2", text = "helm_mail_pvpalliance_a_01_bef.m2", + value = "helm_mail_pvpalliance_a_01_bef.m2", }, { fileId = "139527", - value = "helm_mail_pvpalliance_a_01_bem.m2", text = "helm_mail_pvpalliance_a_01_bem.m2", + value = "helm_mail_pvpalliance_a_01_bem.m2", }, { fileId = "139528", - value = "helm_mail_pvpalliance_a_01_drf.m2", text = "helm_mail_pvpalliance_a_01_drf.m2", + value = "helm_mail_pvpalliance_a_01_drf.m2", }, { fileId = "139529", - value = "helm_mail_pvpalliance_a_01_drm.m2", text = "helm_mail_pvpalliance_a_01_drm.m2", + value = "helm_mail_pvpalliance_a_01_drm.m2", }, { fileId = "139530", - value = "helm_mail_pvpalliance_a_01_dwf.m2", text = "helm_mail_pvpalliance_a_01_dwf.m2", + value = "helm_mail_pvpalliance_a_01_dwf.m2", }, { fileId = "139531", - value = "helm_mail_pvpalliance_a_01_dwm.m2", text = "helm_mail_pvpalliance_a_01_dwm.m2", + value = "helm_mail_pvpalliance_a_01_dwm.m2", }, { fileId = "139532", - value = "helm_mail_pvpalliance_a_01_gnf.m2", text = "helm_mail_pvpalliance_a_01_gnf.m2", + value = "helm_mail_pvpalliance_a_01_gnf.m2", }, { fileId = "139533", - value = "helm_mail_pvpalliance_a_01_gnm.m2", text = "helm_mail_pvpalliance_a_01_gnm.m2", + value = "helm_mail_pvpalliance_a_01_gnm.m2", }, { fileId = "139534", - value = "helm_mail_pvpalliance_a_01_gof.m2", text = "helm_mail_pvpalliance_a_01_gof.m2", + value = "helm_mail_pvpalliance_a_01_gof.m2", }, { fileId = "139535", - value = "helm_mail_pvpalliance_a_01_gom.m2", text = "helm_mail_pvpalliance_a_01_gom.m2", + value = "helm_mail_pvpalliance_a_01_gom.m2", }, { fileId = "139536", - value = "helm_mail_pvpalliance_a_01_huf.m2", text = "helm_mail_pvpalliance_a_01_huf.m2", + value = "helm_mail_pvpalliance_a_01_huf.m2", }, { fileId = "139537", - value = "helm_mail_pvpalliance_a_01_hum.m2", text = "helm_mail_pvpalliance_a_01_hum.m2", + value = "helm_mail_pvpalliance_a_01_hum.m2", }, { fileId = "139538", - value = "helm_mail_pvpalliance_a_01_nif.m2", text = "helm_mail_pvpalliance_a_01_nif.m2", + value = "helm_mail_pvpalliance_a_01_nif.m2", }, { fileId = "139539", - value = "helm_mail_pvpalliance_a_01_nim.m2", text = "helm_mail_pvpalliance_a_01_nim.m2", + value = "helm_mail_pvpalliance_a_01_nim.m2", }, { fileId = "139540", - value = "helm_mail_pvpalliance_a_01_orf.m2", text = "helm_mail_pvpalliance_a_01_orf.m2", + value = "helm_mail_pvpalliance_a_01_orf.m2", }, { fileId = "139541", - value = "helm_mail_pvpalliance_a_01_orm.m2", text = "helm_mail_pvpalliance_a_01_orm.m2", + value = "helm_mail_pvpalliance_a_01_orm.m2", }, { fileId = "139542", - value = "helm_mail_pvpalliance_a_01_scf.m2", text = "helm_mail_pvpalliance_a_01_scf.m2", + value = "helm_mail_pvpalliance_a_01_scf.m2", }, { fileId = "139543", - value = "helm_mail_pvpalliance_a_01_scm.m2", text = "helm_mail_pvpalliance_a_01_scm.m2", + value = "helm_mail_pvpalliance_a_01_scm.m2", }, { fileId = "139544", - value = "helm_mail_pvpalliance_a_01_taf.m2", text = "helm_mail_pvpalliance_a_01_taf.m2", + value = "helm_mail_pvpalliance_a_01_taf.m2", }, { fileId = "139545", - value = "helm_mail_pvpalliance_a_01_tam.m2", text = "helm_mail_pvpalliance_a_01_tam.m2", + value = "helm_mail_pvpalliance_a_01_tam.m2", }, { fileId = "139546", - value = "helm_mail_pvpalliance_a_01_trf.m2", text = "helm_mail_pvpalliance_a_01_trf.m2", + value = "helm_mail_pvpalliance_a_01_trf.m2", }, { fileId = "139547", - value = "helm_mail_pvpalliance_a_01_trm.m2", text = "helm_mail_pvpalliance_a_01_trm.m2", + value = "helm_mail_pvpalliance_a_01_trm.m2", }, { fileId = "139551", - value = "helm_mail_pvpalliance_c_01_bef.m2", text = "helm_mail_pvpalliance_c_01_bef.m2", + value = "helm_mail_pvpalliance_c_01_bef.m2", }, { fileId = "139552", - value = "helm_mail_pvpalliance_c_01_bem.m2", text = "helm_mail_pvpalliance_c_01_bem.m2", + value = "helm_mail_pvpalliance_c_01_bem.m2", }, { fileId = "139553", - value = "helm_mail_pvpalliance_c_01_drf.m2", text = "helm_mail_pvpalliance_c_01_drf.m2", + value = "helm_mail_pvpalliance_c_01_drf.m2", }, { fileId = "139554", - value = "helm_mail_pvpalliance_c_01_drm.m2", text = "helm_mail_pvpalliance_c_01_drm.m2", + value = "helm_mail_pvpalliance_c_01_drm.m2", }, { fileId = "139555", - value = "helm_mail_pvpalliance_c_01_dwf.m2", text = "helm_mail_pvpalliance_c_01_dwf.m2", + value = "helm_mail_pvpalliance_c_01_dwf.m2", }, { fileId = "139556", - value = "helm_mail_pvpalliance_c_01_dwm.m2", text = "helm_mail_pvpalliance_c_01_dwm.m2", + value = "helm_mail_pvpalliance_c_01_dwm.m2", }, { fileId = "139557", - value = "helm_mail_pvpalliance_c_01_gnf.m2", text = "helm_mail_pvpalliance_c_01_gnf.m2", + value = "helm_mail_pvpalliance_c_01_gnf.m2", }, { fileId = "139558", - value = "helm_mail_pvpalliance_c_01_gnm.m2", text = "helm_mail_pvpalliance_c_01_gnm.m2", + value = "helm_mail_pvpalliance_c_01_gnm.m2", }, { fileId = "139559", - value = "helm_mail_pvpalliance_c_01_gof.m2", text = "helm_mail_pvpalliance_c_01_gof.m2", + value = "helm_mail_pvpalliance_c_01_gof.m2", }, { fileId = "139560", - value = "helm_mail_pvpalliance_c_01_gom.m2", text = "helm_mail_pvpalliance_c_01_gom.m2", + value = "helm_mail_pvpalliance_c_01_gom.m2", }, { fileId = "139561", - value = "helm_mail_pvpalliance_c_01_huf.m2", text = "helm_mail_pvpalliance_c_01_huf.m2", + value = "helm_mail_pvpalliance_c_01_huf.m2", }, { fileId = "139562", - value = "helm_mail_pvpalliance_c_01_hum.m2", text = "helm_mail_pvpalliance_c_01_hum.m2", + value = "helm_mail_pvpalliance_c_01_hum.m2", }, { fileId = "139563", - value = "helm_mail_pvpalliance_c_01_nif.m2", text = "helm_mail_pvpalliance_c_01_nif.m2", + value = "helm_mail_pvpalliance_c_01_nif.m2", }, { fileId = "139564", - value = "helm_mail_pvpalliance_c_01_nim.m2", text = "helm_mail_pvpalliance_c_01_nim.m2", + value = "helm_mail_pvpalliance_c_01_nim.m2", }, { fileId = "139565", - value = "helm_mail_pvpalliance_c_01_orf.m2", text = "helm_mail_pvpalliance_c_01_orf.m2", + value = "helm_mail_pvpalliance_c_01_orf.m2", }, { fileId = "139566", - value = "helm_mail_pvpalliance_c_01_orm.m2", text = "helm_mail_pvpalliance_c_01_orm.m2", + value = "helm_mail_pvpalliance_c_01_orm.m2", }, { fileId = "139567", - value = "helm_mail_pvpalliance_c_01_scf.m2", text = "helm_mail_pvpalliance_c_01_scf.m2", + value = "helm_mail_pvpalliance_c_01_scf.m2", }, { fileId = "139568", - value = "helm_mail_pvpalliance_c_01_scm.m2", text = "helm_mail_pvpalliance_c_01_scm.m2", + value = "helm_mail_pvpalliance_c_01_scm.m2", }, { fileId = "139569", - value = "helm_mail_pvpalliance_c_01_taf.m2", text = "helm_mail_pvpalliance_c_01_taf.m2", + value = "helm_mail_pvpalliance_c_01_taf.m2", }, { fileId = "139570", - value = "helm_mail_pvpalliance_c_01_tam.m2", text = "helm_mail_pvpalliance_c_01_tam.m2", + value = "helm_mail_pvpalliance_c_01_tam.m2", }, { fileId = "139571", - value = "helm_mail_pvpalliance_c_01_trf.m2", text = "helm_mail_pvpalliance_c_01_trf.m2", + value = "helm_mail_pvpalliance_c_01_trf.m2", }, { fileId = "139572", - value = "helm_mail_pvpalliance_c_01_trm.m2", text = "helm_mail_pvpalliance_c_01_trm.m2", + value = "helm_mail_pvpalliance_c_01_trm.m2", }, { fileId = "139573", - value = "helm_mail_pvphorde_a_01_bef.m2", text = "helm_mail_pvphorde_a_01_bef.m2", + value = "helm_mail_pvphorde_a_01_bef.m2", }, { fileId = "139574", - value = "helm_mail_pvphorde_a_01_bem.m2", text = "helm_mail_pvphorde_a_01_bem.m2", + value = "helm_mail_pvphorde_a_01_bem.m2", }, { fileId = "139575", - value = "helm_mail_pvphorde_a_01_drf.m2", text = "helm_mail_pvphorde_a_01_drf.m2", + value = "helm_mail_pvphorde_a_01_drf.m2", }, { fileId = "139576", - value = "helm_mail_pvphorde_a_01_drm.m2", text = "helm_mail_pvphorde_a_01_drm.m2", + value = "helm_mail_pvphorde_a_01_drm.m2", }, { fileId = "139577", - value = "helm_mail_pvphorde_a_01_dwf.m2", text = "helm_mail_pvphorde_a_01_dwf.m2", + value = "helm_mail_pvphorde_a_01_dwf.m2", }, { fileId = "139578", - value = "helm_mail_pvphorde_a_01_dwm.m2", text = "helm_mail_pvphorde_a_01_dwm.m2", + value = "helm_mail_pvphorde_a_01_dwm.m2", }, { fileId = "139579", - value = "helm_mail_pvphorde_a_01_gnf.m2", text = "helm_mail_pvphorde_a_01_gnf.m2", + value = "helm_mail_pvphorde_a_01_gnf.m2", }, { fileId = "139580", - value = "helm_mail_pvphorde_a_01_gnm.m2", text = "helm_mail_pvphorde_a_01_gnm.m2", + value = "helm_mail_pvphorde_a_01_gnm.m2", }, { fileId = "139581", - value = "helm_mail_pvphorde_a_01_gof.m2", text = "helm_mail_pvphorde_a_01_gof.m2", + value = "helm_mail_pvphorde_a_01_gof.m2", }, { fileId = "139582", - value = "helm_mail_pvphorde_a_01_huf.m2", text = "helm_mail_pvphorde_a_01_huf.m2", + value = "helm_mail_pvphorde_a_01_huf.m2", }, { fileId = "139583", - value = "helm_mail_pvphorde_a_01_hum.m2", text = "helm_mail_pvphorde_a_01_hum.m2", + value = "helm_mail_pvphorde_a_01_hum.m2", }, { fileId = "139584", - value = "helm_mail_pvphorde_a_01_nif.m2", text = "helm_mail_pvphorde_a_01_nif.m2", + value = "helm_mail_pvphorde_a_01_nif.m2", }, { fileId = "139585", - value = "helm_mail_pvphorde_a_01_nim.m2", text = "helm_mail_pvphorde_a_01_nim.m2", + value = "helm_mail_pvphorde_a_01_nim.m2", }, { fileId = "139586", - value = "helm_mail_pvphorde_a_01_orf.m2", text = "helm_mail_pvphorde_a_01_orf.m2", + value = "helm_mail_pvphorde_a_01_orf.m2", }, { fileId = "139587", - value = "helm_mail_pvphorde_a_01_orm.m2", text = "helm_mail_pvphorde_a_01_orm.m2", + value = "helm_mail_pvphorde_a_01_orm.m2", }, { fileId = "139588", - value = "helm_mail_pvphorde_a_01_scf.m2", text = "helm_mail_pvphorde_a_01_scf.m2", + value = "helm_mail_pvphorde_a_01_scf.m2", }, { fileId = "139589", - value = "helm_mail_pvphorde_a_01_scm.m2", text = "helm_mail_pvphorde_a_01_scm.m2", + value = "helm_mail_pvphorde_a_01_scm.m2", }, { fileId = "139590", - value = "helm_mail_pvphorde_a_01_taf.m2", text = "helm_mail_pvphorde_a_01_taf.m2", + value = "helm_mail_pvphorde_a_01_taf.m2", }, { fileId = "139591", - value = "helm_mail_pvphorde_a_01_tam.m2", text = "helm_mail_pvphorde_a_01_tam.m2", + value = "helm_mail_pvphorde_a_01_tam.m2", }, { fileId = "139592", - value = "helm_mail_pvphorde_a_01_trf.m2", text = "helm_mail_pvphorde_a_01_trf.m2", + value = "helm_mail_pvphorde_a_01_trf.m2", }, { fileId = "139593", - value = "helm_mail_pvphorde_a_01_trm.m2", text = "helm_mail_pvphorde_a_01_trm.m2", + value = "helm_mail_pvphorde_a_01_trm.m2", }, { fileId = "139596", - value = "helm_mail_pvphorde_c_01_bef.m2", text = "helm_mail_pvphorde_c_01_bef.m2", + value = "helm_mail_pvphorde_c_01_bef.m2", }, { fileId = "139597", - value = "helm_mail_pvphorde_c_01_bem.m2", text = "helm_mail_pvphorde_c_01_bem.m2", + value = "helm_mail_pvphorde_c_01_bem.m2", }, { fileId = "139598", - value = "helm_mail_pvphorde_c_01_drf.m2", text = "helm_mail_pvphorde_c_01_drf.m2", + value = "helm_mail_pvphorde_c_01_drf.m2", }, { fileId = "139599", - value = "helm_mail_pvphorde_c_01_drm.m2", text = "helm_mail_pvphorde_c_01_drm.m2", + value = "helm_mail_pvphorde_c_01_drm.m2", }, { fileId = "139600", - value = "helm_mail_pvphorde_c_01_dwf.m2", text = "helm_mail_pvphorde_c_01_dwf.m2", + value = "helm_mail_pvphorde_c_01_dwf.m2", }, { fileId = "139601", - value = "helm_mail_pvphorde_c_01_dwm.m2", text = "helm_mail_pvphorde_c_01_dwm.m2", + value = "helm_mail_pvphorde_c_01_dwm.m2", }, { fileId = "139602", - value = "helm_mail_pvphorde_c_01_gnf.m2", text = "helm_mail_pvphorde_c_01_gnf.m2", + value = "helm_mail_pvphorde_c_01_gnf.m2", }, { fileId = "139603", - value = "helm_mail_pvphorde_c_01_gnm.m2", text = "helm_mail_pvphorde_c_01_gnm.m2", + value = "helm_mail_pvphorde_c_01_gnm.m2", }, { fileId = "139604", - value = "helm_mail_pvphorde_c_01_gof.m2", text = "helm_mail_pvphorde_c_01_gof.m2", + value = "helm_mail_pvphorde_c_01_gof.m2", }, { fileId = "139605", - value = "helm_mail_pvphorde_c_01_gom.m2", text = "helm_mail_pvphorde_c_01_gom.m2", + value = "helm_mail_pvphorde_c_01_gom.m2", }, { fileId = "139606", - value = "helm_mail_pvphorde_c_01_huf.m2", text = "helm_mail_pvphorde_c_01_huf.m2", + value = "helm_mail_pvphorde_c_01_huf.m2", }, { fileId = "139607", - value = "helm_mail_pvphorde_c_01_hum.m2", text = "helm_mail_pvphorde_c_01_hum.m2", + value = "helm_mail_pvphorde_c_01_hum.m2", }, { fileId = "139608", - value = "helm_mail_pvphorde_c_01_nif.m2", text = "helm_mail_pvphorde_c_01_nif.m2", + value = "helm_mail_pvphorde_c_01_nif.m2", }, { fileId = "139609", - value = "helm_mail_pvphorde_c_01_nim.m2", text = "helm_mail_pvphorde_c_01_nim.m2", + value = "helm_mail_pvphorde_c_01_nim.m2", }, { fileId = "139610", - value = "helm_mail_pvphorde_c_01_orf.m2", text = "helm_mail_pvphorde_c_01_orf.m2", + value = "helm_mail_pvphorde_c_01_orf.m2", }, { fileId = "139611", - value = "helm_mail_pvphorde_c_01_orm.m2", text = "helm_mail_pvphorde_c_01_orm.m2", + value = "helm_mail_pvphorde_c_01_orm.m2", }, { fileId = "139612", - value = "helm_mail_pvphorde_c_01_scf.m2", text = "helm_mail_pvphorde_c_01_scf.m2", + value = "helm_mail_pvphorde_c_01_scf.m2", }, { fileId = "139613", - value = "helm_mail_pvphorde_c_01_scm.m2", text = "helm_mail_pvphorde_c_01_scm.m2", + value = "helm_mail_pvphorde_c_01_scm.m2", }, { fileId = "139614", - value = "helm_mail_pvphorde_c_01_taf.m2", text = "helm_mail_pvphorde_c_01_taf.m2", + value = "helm_mail_pvphorde_c_01_taf.m2", }, { fileId = "139615", - value = "helm_mail_pvphorde_c_01_tam.m2", text = "helm_mail_pvphorde_c_01_tam.m2", + value = "helm_mail_pvphorde_c_01_tam.m2", }, { fileId = "139616", - value = "helm_mail_pvphorde_c_01_trf.m2", text = "helm_mail_pvphorde_c_01_trf.m2", + value = "helm_mail_pvphorde_c_01_trf.m2", }, { fileId = "139617", - value = "helm_mail_pvphorde_c_01_trm.m2", text = "helm_mail_pvphorde_c_01_trm.m2", + value = "helm_mail_pvphorde_c_01_trm.m2", }, { fileId = "139621", - value = "helm_mail_raidhunter_a_01_bef.m2", text = "helm_mail_raidhunter_a_01_bef.m2", + value = "helm_mail_raidhunter_a_01_bef.m2", }, { fileId = "139622", - value = "helm_mail_raidhunter_a_01_bem.m2", text = "helm_mail_raidhunter_a_01_bem.m2", + value = "helm_mail_raidhunter_a_01_bem.m2", }, { fileId = "139623", - value = "helm_mail_raidhunter_a_01_drf.m2", text = "helm_mail_raidhunter_a_01_drf.m2", + value = "helm_mail_raidhunter_a_01_drf.m2", }, { fileId = "139624", - value = "helm_mail_raidhunter_a_01_drm.m2", text = "helm_mail_raidhunter_a_01_drm.m2", + value = "helm_mail_raidhunter_a_01_drm.m2", }, { fileId = "139625", - value = "helm_mail_raidhunter_a_01_dwf.m2", text = "helm_mail_raidhunter_a_01_dwf.m2", + value = "helm_mail_raidhunter_a_01_dwf.m2", }, { fileId = "139626", - value = "helm_mail_raidhunter_a_01_dwm.m2", text = "helm_mail_raidhunter_a_01_dwm.m2", + value = "helm_mail_raidhunter_a_01_dwm.m2", }, { fileId = "139627", - value = "helm_mail_raidhunter_a_01_gnf.m2", text = "helm_mail_raidhunter_a_01_gnf.m2", + value = "helm_mail_raidhunter_a_01_gnf.m2", }, { fileId = "139628", - value = "helm_mail_raidhunter_a_01_gnm.m2", text = "helm_mail_raidhunter_a_01_gnm.m2", + value = "helm_mail_raidhunter_a_01_gnm.m2", }, { fileId = "139629", - value = "helm_mail_raidhunter_a_01_huf.m2", text = "helm_mail_raidhunter_a_01_huf.m2", + value = "helm_mail_raidhunter_a_01_huf.m2", }, { fileId = "139630", - value = "helm_mail_raidhunter_a_01_hum.m2", text = "helm_mail_raidhunter_a_01_hum.m2", + value = "helm_mail_raidhunter_a_01_hum.m2", }, { fileId = "139631", - value = "helm_mail_raidhunter_a_01_nif.m2", text = "helm_mail_raidhunter_a_01_nif.m2", + value = "helm_mail_raidhunter_a_01_nif.m2", }, { fileId = "139632", - value = "helm_mail_raidhunter_a_01_nim.m2", text = "helm_mail_raidhunter_a_01_nim.m2", + value = "helm_mail_raidhunter_a_01_nim.m2", }, { fileId = "139633", - value = "helm_mail_raidhunter_a_01_orf.m2", text = "helm_mail_raidhunter_a_01_orf.m2", + value = "helm_mail_raidhunter_a_01_orf.m2", }, { fileId = "139634", - value = "helm_mail_raidhunter_a_01_orm.m2", text = "helm_mail_raidhunter_a_01_orm.m2", + value = "helm_mail_raidhunter_a_01_orm.m2", }, { fileId = "139635", - value = "helm_mail_raidhunter_a_01_scf.m2", text = "helm_mail_raidhunter_a_01_scf.m2", + value = "helm_mail_raidhunter_a_01_scf.m2", }, { fileId = "139636", - value = "helm_mail_raidhunter_a_01_scm.m2", text = "helm_mail_raidhunter_a_01_scm.m2", + value = "helm_mail_raidhunter_a_01_scm.m2", }, { fileId = "139637", - value = "helm_mail_raidhunter_a_01_taf.m2", text = "helm_mail_raidhunter_a_01_taf.m2", + value = "helm_mail_raidhunter_a_01_taf.m2", }, { fileId = "139638", - value = "helm_mail_raidhunter_a_01_tam.m2", text = "helm_mail_raidhunter_a_01_tam.m2", + value = "helm_mail_raidhunter_a_01_tam.m2", }, { fileId = "139639", - value = "helm_mail_raidhunter_a_01_trf.m2", text = "helm_mail_raidhunter_a_01_trf.m2", + value = "helm_mail_raidhunter_a_01_trf.m2", }, { fileId = "139640", - value = "helm_mail_raidhunter_a_01_trm.m2", text = "helm_mail_raidhunter_a_01_trm.m2", + value = "helm_mail_raidhunter_a_01_trm.m2", }, { fileId = "139645", - value = "helm_mail_raidhunter_b_01_bef.m2", text = "helm_mail_raidhunter_b_01_bef.m2", + value = "helm_mail_raidhunter_b_01_bef.m2", }, { fileId = "139646", - value = "helm_mail_raidhunter_b_01_bem.m2", text = "helm_mail_raidhunter_b_01_bem.m2", + value = "helm_mail_raidhunter_b_01_bem.m2", }, { fileId = "139647", - value = "helm_mail_raidhunter_b_01_drf.m2", text = "helm_mail_raidhunter_b_01_drf.m2", + value = "helm_mail_raidhunter_b_01_drf.m2", }, { fileId = "139648", - value = "helm_mail_raidhunter_b_01_drm.m2", text = "helm_mail_raidhunter_b_01_drm.m2", + value = "helm_mail_raidhunter_b_01_drm.m2", }, { fileId = "139649", - value = "helm_mail_raidhunter_b_01_dwf.m2", text = "helm_mail_raidhunter_b_01_dwf.m2", + value = "helm_mail_raidhunter_b_01_dwf.m2", }, { fileId = "139650", - value = "helm_mail_raidhunter_b_01_dwm.m2", text = "helm_mail_raidhunter_b_01_dwm.m2", + value = "helm_mail_raidhunter_b_01_dwm.m2", }, { fileId = "139651", - value = "helm_mail_raidhunter_b_01_gnf.m2", text = "helm_mail_raidhunter_b_01_gnf.m2", + value = "helm_mail_raidhunter_b_01_gnf.m2", }, { fileId = "139652", - value = "helm_mail_raidhunter_b_01_gnm.m2", text = "helm_mail_raidhunter_b_01_gnm.m2", + value = "helm_mail_raidhunter_b_01_gnm.m2", }, { fileId = "139653", - value = "helm_mail_raidhunter_b_01_gof.m2", text = "helm_mail_raidhunter_b_01_gof.m2", + value = "helm_mail_raidhunter_b_01_gof.m2", }, { fileId = "139654", - value = "helm_mail_raidhunter_b_01_gom.m2", text = "helm_mail_raidhunter_b_01_gom.m2", + value = "helm_mail_raidhunter_b_01_gom.m2", }, { fileId = "139655", - value = "helm_mail_raidhunter_b_01_huf.m2", text = "helm_mail_raidhunter_b_01_huf.m2", + value = "helm_mail_raidhunter_b_01_huf.m2", }, { fileId = "139656", - value = "helm_mail_raidhunter_b_01_hum.m2", text = "helm_mail_raidhunter_b_01_hum.m2", + value = "helm_mail_raidhunter_b_01_hum.m2", }, { fileId = "139657", - value = "helm_mail_raidhunter_b_01_nif.m2", text = "helm_mail_raidhunter_b_01_nif.m2", + value = "helm_mail_raidhunter_b_01_nif.m2", }, { fileId = "139658", - value = "helm_mail_raidhunter_b_01_nim.m2", text = "helm_mail_raidhunter_b_01_nim.m2", + value = "helm_mail_raidhunter_b_01_nim.m2", }, { fileId = "139659", - value = "helm_mail_raidhunter_b_01_orf.m2", text = "helm_mail_raidhunter_b_01_orf.m2", + value = "helm_mail_raidhunter_b_01_orf.m2", }, { fileId = "139660", - value = "helm_mail_raidhunter_b_01_orm.m2", text = "helm_mail_raidhunter_b_01_orm.m2", + value = "helm_mail_raidhunter_b_01_orm.m2", }, { fileId = "139661", - value = "helm_mail_raidhunter_b_01_scf.m2", text = "helm_mail_raidhunter_b_01_scf.m2", + value = "helm_mail_raidhunter_b_01_scf.m2", }, { fileId = "139662", - value = "helm_mail_raidhunter_b_01_scm.m2", text = "helm_mail_raidhunter_b_01_scm.m2", + value = "helm_mail_raidhunter_b_01_scm.m2", }, { fileId = "139663", - value = "helm_mail_raidhunter_b_01_taf.m2", text = "helm_mail_raidhunter_b_01_taf.m2", + value = "helm_mail_raidhunter_b_01_taf.m2", }, { fileId = "139664", - value = "helm_mail_raidhunter_b_01_tam.m2", text = "helm_mail_raidhunter_b_01_tam.m2", + value = "helm_mail_raidhunter_b_01_tam.m2", }, { fileId = "139665", - value = "helm_mail_raidhunter_b_01_trf.m2", text = "helm_mail_raidhunter_b_01_trf.m2", + value = "helm_mail_raidhunter_b_01_trf.m2", }, { fileId = "139666", - value = "helm_mail_raidhunter_b_01_trm.m2", text = "helm_mail_raidhunter_b_01_trm.m2", + value = "helm_mail_raidhunter_b_01_trm.m2", }, { fileId = "139672", - value = "helm_mail_raidhunter_c_01_bef.m2", text = "helm_mail_raidhunter_c_01_bef.m2", + value = "helm_mail_raidhunter_c_01_bef.m2", }, { fileId = "139673", - value = "helm_mail_raidhunter_c_01_bem.m2", text = "helm_mail_raidhunter_c_01_bem.m2", + value = "helm_mail_raidhunter_c_01_bem.m2", }, { fileId = "139674", - value = "helm_mail_raidhunter_c_01_drf.m2", text = "helm_mail_raidhunter_c_01_drf.m2", + value = "helm_mail_raidhunter_c_01_drf.m2", }, { fileId = "139675", - value = "helm_mail_raidhunter_c_01_drm.m2", text = "helm_mail_raidhunter_c_01_drm.m2", + value = "helm_mail_raidhunter_c_01_drm.m2", }, { fileId = "139676", - value = "helm_mail_raidhunter_c_01_dwf.m2", text = "helm_mail_raidhunter_c_01_dwf.m2", + value = "helm_mail_raidhunter_c_01_dwf.m2", }, { fileId = "139677", - value = "helm_mail_raidhunter_c_01_dwm.m2", text = "helm_mail_raidhunter_c_01_dwm.m2", + value = "helm_mail_raidhunter_c_01_dwm.m2", }, { fileId = "139678", - value = "helm_mail_raidhunter_c_01_gnf.m2", text = "helm_mail_raidhunter_c_01_gnf.m2", + value = "helm_mail_raidhunter_c_01_gnf.m2", }, { fileId = "139679", - value = "helm_mail_raidhunter_c_01_gnm.m2", text = "helm_mail_raidhunter_c_01_gnm.m2", + value = "helm_mail_raidhunter_c_01_gnm.m2", }, { fileId = "139680", - value = "helm_mail_raidhunter_c_01_gof.m2", text = "helm_mail_raidhunter_c_01_gof.m2", + value = "helm_mail_raidhunter_c_01_gof.m2", }, { fileId = "139681", - value = "helm_mail_raidhunter_c_01_gom.m2", text = "helm_mail_raidhunter_c_01_gom.m2", + value = "helm_mail_raidhunter_c_01_gom.m2", }, { fileId = "139682", - value = "helm_mail_raidhunter_c_01_huf.m2", text = "helm_mail_raidhunter_c_01_huf.m2", + value = "helm_mail_raidhunter_c_01_huf.m2", }, { fileId = "139683", - value = "helm_mail_raidhunter_c_01_hum.m2", text = "helm_mail_raidhunter_c_01_hum.m2", + value = "helm_mail_raidhunter_c_01_hum.m2", }, { fileId = "139684", - value = "helm_mail_raidhunter_c_01_nif.m2", text = "helm_mail_raidhunter_c_01_nif.m2", + value = "helm_mail_raidhunter_c_01_nif.m2", }, { fileId = "139685", - value = "helm_mail_raidhunter_c_01_nim.m2", text = "helm_mail_raidhunter_c_01_nim.m2", + value = "helm_mail_raidhunter_c_01_nim.m2", }, { fileId = "139686", - value = "helm_mail_raidhunter_c_01_orf.m2", text = "helm_mail_raidhunter_c_01_orf.m2", + value = "helm_mail_raidhunter_c_01_orf.m2", }, { fileId = "139687", - value = "helm_mail_raidhunter_c_01_orm.m2", text = "helm_mail_raidhunter_c_01_orm.m2", + value = "helm_mail_raidhunter_c_01_orm.m2", }, { fileId = "139688", - value = "helm_mail_raidhunter_c_01_scf.m2", text = "helm_mail_raidhunter_c_01_scf.m2", + value = "helm_mail_raidhunter_c_01_scf.m2", }, { fileId = "139689", - value = "helm_mail_raidhunter_c_01_scm.m2", text = "helm_mail_raidhunter_c_01_scm.m2", + value = "helm_mail_raidhunter_c_01_scm.m2", }, { fileId = "139690", - value = "helm_mail_raidhunter_c_01_taf.m2", text = "helm_mail_raidhunter_c_01_taf.m2", + value = "helm_mail_raidhunter_c_01_taf.m2", }, { fileId = "139691", - value = "helm_mail_raidhunter_c_01_tam.m2", text = "helm_mail_raidhunter_c_01_tam.m2", + value = "helm_mail_raidhunter_c_01_tam.m2", }, { fileId = "139692", - value = "helm_mail_raidhunter_c_01_trf.m2", text = "helm_mail_raidhunter_c_01_trf.m2", + value = "helm_mail_raidhunter_c_01_trf.m2", }, { fileId = "139693", - value = "helm_mail_raidhunter_c_01_trm.m2", text = "helm_mail_raidhunter_c_01_trm.m2", + value = "helm_mail_raidhunter_c_01_trm.m2", }, { fileId = "139696", - value = "helm_mail_raidhunter_d_01_bef.m2", text = "helm_mail_raidhunter_d_01_bef.m2", + value = "helm_mail_raidhunter_d_01_bef.m2", }, { fileId = "139697", - value = "helm_mail_raidhunter_d_01_bem.m2", text = "helm_mail_raidhunter_d_01_bem.m2", + value = "helm_mail_raidhunter_d_01_bem.m2", }, { fileId = "139698", - value = "helm_mail_raidhunter_d_01_drf.m2", text = "helm_mail_raidhunter_d_01_drf.m2", + value = "helm_mail_raidhunter_d_01_drf.m2", }, { fileId = "139699", - value = "helm_mail_raidhunter_d_01_drm.m2", text = "helm_mail_raidhunter_d_01_drm.m2", + value = "helm_mail_raidhunter_d_01_drm.m2", }, { fileId = "139700", - value = "helm_mail_raidhunter_d_01_dwf.m2", text = "helm_mail_raidhunter_d_01_dwf.m2", + value = "helm_mail_raidhunter_d_01_dwf.m2", }, { fileId = "139701", - value = "helm_mail_raidhunter_d_01_dwm.m2", text = "helm_mail_raidhunter_d_01_dwm.m2", + value = "helm_mail_raidhunter_d_01_dwm.m2", }, { fileId = "139702", - value = "helm_mail_raidhunter_d_01_gnf.m2", text = "helm_mail_raidhunter_d_01_gnf.m2", + value = "helm_mail_raidhunter_d_01_gnf.m2", }, { fileId = "139703", - value = "helm_mail_raidhunter_d_01_gnm.m2", text = "helm_mail_raidhunter_d_01_gnm.m2", + value = "helm_mail_raidhunter_d_01_gnm.m2", }, { fileId = "139704", - value = "helm_mail_raidhunter_d_01_gom.m2", text = "helm_mail_raidhunter_d_01_gom.m2", + value = "helm_mail_raidhunter_d_01_gom.m2", }, { fileId = "139705", - value = "helm_mail_raidhunter_d_01_huf.m2", text = "helm_mail_raidhunter_d_01_huf.m2", + value = "helm_mail_raidhunter_d_01_huf.m2", }, { fileId = "139706", - value = "helm_mail_raidhunter_d_01_hum.m2", text = "helm_mail_raidhunter_d_01_hum.m2", + value = "helm_mail_raidhunter_d_01_hum.m2", }, { fileId = "139707", - value = "helm_mail_raidhunter_d_01_nif.m2", text = "helm_mail_raidhunter_d_01_nif.m2", + value = "helm_mail_raidhunter_d_01_nif.m2", }, { fileId = "139708", - value = "helm_mail_raidhunter_d_01_nim.m2", text = "helm_mail_raidhunter_d_01_nim.m2", + value = "helm_mail_raidhunter_d_01_nim.m2", }, { fileId = "139709", - value = "helm_mail_raidhunter_d_01_orf.m2", text = "helm_mail_raidhunter_d_01_orf.m2", + value = "helm_mail_raidhunter_d_01_orf.m2", }, { fileId = "139710", - value = "helm_mail_raidhunter_d_01_orm.m2", text = "helm_mail_raidhunter_d_01_orm.m2", + value = "helm_mail_raidhunter_d_01_orm.m2", }, { fileId = "139711", - value = "helm_mail_raidhunter_d_01_scf.m2", text = "helm_mail_raidhunter_d_01_scf.m2", + value = "helm_mail_raidhunter_d_01_scf.m2", }, { fileId = "139712", - value = "helm_mail_raidhunter_d_01_scm.m2", text = "helm_mail_raidhunter_d_01_scm.m2", + value = "helm_mail_raidhunter_d_01_scm.m2", }, { fileId = "139713", - value = "helm_mail_raidhunter_d_01_taf.m2", text = "helm_mail_raidhunter_d_01_taf.m2", + value = "helm_mail_raidhunter_d_01_taf.m2", }, { fileId = "139714", - value = "helm_mail_raidhunter_d_01_tam.m2", text = "helm_mail_raidhunter_d_01_tam.m2", + value = "helm_mail_raidhunter_d_01_tam.m2", }, { fileId = "139715", - value = "helm_mail_raidhunter_d_01_trf.m2", text = "helm_mail_raidhunter_d_01_trf.m2", + value = "helm_mail_raidhunter_d_01_trf.m2", }, { fileId = "139716", - value = "helm_mail_raidhunter_d_01_trm.m2", text = "helm_mail_raidhunter_d_01_trm.m2", + value = "helm_mail_raidhunter_d_01_trm.m2", }, { fileId = "139719", - value = "helm_mail_raidhunter_e_01_bef.m2", text = "helm_mail_raidhunter_e_01_bef.m2", + value = "helm_mail_raidhunter_e_01_bef.m2", }, { fileId = "139720", - value = "helm_mail_raidhunter_e_01_bem.m2", text = "helm_mail_raidhunter_e_01_bem.m2", + value = "helm_mail_raidhunter_e_01_bem.m2", }, { fileId = "139721", - value = "helm_mail_raidhunter_e_01_drf.m2", text = "helm_mail_raidhunter_e_01_drf.m2", + value = "helm_mail_raidhunter_e_01_drf.m2", }, { fileId = "139722", - value = "helm_mail_raidhunter_e_01_drm.m2", text = "helm_mail_raidhunter_e_01_drm.m2", + value = "helm_mail_raidhunter_e_01_drm.m2", }, { fileId = "139723", - value = "helm_mail_raidhunter_e_01_dwf.m2", text = "helm_mail_raidhunter_e_01_dwf.m2", + value = "helm_mail_raidhunter_e_01_dwf.m2", }, { fileId = "139724", - value = "helm_mail_raidhunter_e_01_dwm.m2", text = "helm_mail_raidhunter_e_01_dwm.m2", + value = "helm_mail_raidhunter_e_01_dwm.m2", }, { fileId = "139725", - value = "helm_mail_raidhunter_e_01_gnf.m2", text = "helm_mail_raidhunter_e_01_gnf.m2", + value = "helm_mail_raidhunter_e_01_gnf.m2", }, { fileId = "139726", - value = "helm_mail_raidhunter_e_01_gnm.m2", text = "helm_mail_raidhunter_e_01_gnm.m2", + value = "helm_mail_raidhunter_e_01_gnm.m2", }, { fileId = "139727", - value = "helm_mail_raidhunter_e_01_gof.m2", text = "helm_mail_raidhunter_e_01_gof.m2", + value = "helm_mail_raidhunter_e_01_gof.m2", }, { fileId = "139728", - value = "helm_mail_raidhunter_e_01_gom.m2", text = "helm_mail_raidhunter_e_01_gom.m2", + value = "helm_mail_raidhunter_e_01_gom.m2", }, { fileId = "139729", - value = "helm_mail_raidhunter_e_01_huf.m2", text = "helm_mail_raidhunter_e_01_huf.m2", + value = "helm_mail_raidhunter_e_01_huf.m2", }, { fileId = "139730", - value = "helm_mail_raidhunter_e_01_hum.m2", text = "helm_mail_raidhunter_e_01_hum.m2", + value = "helm_mail_raidhunter_e_01_hum.m2", }, { fileId = "139731", - value = "helm_mail_raidhunter_e_01_nif.m2", text = "helm_mail_raidhunter_e_01_nif.m2", + value = "helm_mail_raidhunter_e_01_nif.m2", }, { fileId = "139732", - value = "helm_mail_raidhunter_e_01_nim.m2", text = "helm_mail_raidhunter_e_01_nim.m2", + value = "helm_mail_raidhunter_e_01_nim.m2", }, { fileId = "139733", - value = "helm_mail_raidhunter_e_01_orf.m2", text = "helm_mail_raidhunter_e_01_orf.m2", + value = "helm_mail_raidhunter_e_01_orf.m2", }, { fileId = "139734", - value = "helm_mail_raidhunter_e_01_orm.m2", text = "helm_mail_raidhunter_e_01_orm.m2", + value = "helm_mail_raidhunter_e_01_orm.m2", }, { fileId = "139735", - value = "helm_mail_raidhunter_e_01_scf.m2", text = "helm_mail_raidhunter_e_01_scf.m2", + value = "helm_mail_raidhunter_e_01_scf.m2", }, { fileId = "139736", - value = "helm_mail_raidhunter_e_01_scm.m2", text = "helm_mail_raidhunter_e_01_scm.m2", + value = "helm_mail_raidhunter_e_01_scm.m2", }, { fileId = "139737", - value = "helm_mail_raidhunter_e_01_taf.m2", text = "helm_mail_raidhunter_e_01_taf.m2", + value = "helm_mail_raidhunter_e_01_taf.m2", }, { fileId = "139738", - value = "helm_mail_raidhunter_e_01_tam.m2", text = "helm_mail_raidhunter_e_01_tam.m2", + value = "helm_mail_raidhunter_e_01_tam.m2", }, { fileId = "139739", - value = "helm_mail_raidhunter_e_01_trf.m2", text = "helm_mail_raidhunter_e_01_trf.m2", + value = "helm_mail_raidhunter_e_01_trf.m2", }, { fileId = "139740", - value = "helm_mail_raidhunter_e_01_trm.m2", text = "helm_mail_raidhunter_e_01_trm.m2", + value = "helm_mail_raidhunter_e_01_trm.m2", }, { fileId = "139743", - value = "helm_mail_raidhunter_f_01_bef.m2", text = "helm_mail_raidhunter_f_01_bef.m2", + value = "helm_mail_raidhunter_f_01_bef.m2", }, { fileId = "139744", - value = "helm_mail_raidhunter_f_01_bem.m2", text = "helm_mail_raidhunter_f_01_bem.m2", + value = "helm_mail_raidhunter_f_01_bem.m2", }, { fileId = "139745", - value = "helm_mail_raidhunter_f_01_drf.m2", text = "helm_mail_raidhunter_f_01_drf.m2", + value = "helm_mail_raidhunter_f_01_drf.m2", }, { fileId = "139746", - value = "helm_mail_raidhunter_f_01_drm.m2", text = "helm_mail_raidhunter_f_01_drm.m2", + value = "helm_mail_raidhunter_f_01_drm.m2", }, { fileId = "139747", - value = "helm_mail_raidhunter_f_01_dwf.m2", text = "helm_mail_raidhunter_f_01_dwf.m2", + value = "helm_mail_raidhunter_f_01_dwf.m2", }, { fileId = "139748", - value = "helm_mail_raidhunter_f_01_dwm.m2", text = "helm_mail_raidhunter_f_01_dwm.m2", + value = "helm_mail_raidhunter_f_01_dwm.m2", }, { fileId = "139749", - value = "helm_mail_raidhunter_f_01_gnf.m2", text = "helm_mail_raidhunter_f_01_gnf.m2", + value = "helm_mail_raidhunter_f_01_gnf.m2", }, { fileId = "139750", - value = "helm_mail_raidhunter_f_01_gnm.m2", text = "helm_mail_raidhunter_f_01_gnm.m2", + value = "helm_mail_raidhunter_f_01_gnm.m2", }, { fileId = "139751", - value = "helm_mail_raidhunter_f_01_gof.m2", text = "helm_mail_raidhunter_f_01_gof.m2", + value = "helm_mail_raidhunter_f_01_gof.m2", }, { fileId = "139752", - value = "helm_mail_raidhunter_f_01_gom.m2", text = "helm_mail_raidhunter_f_01_gom.m2", + value = "helm_mail_raidhunter_f_01_gom.m2", }, { fileId = "139753", - value = "helm_mail_raidhunter_f_01_huf.m2", text = "helm_mail_raidhunter_f_01_huf.m2", + value = "helm_mail_raidhunter_f_01_huf.m2", }, { fileId = "139754", - value = "helm_mail_raidhunter_f_01_hum.m2", text = "helm_mail_raidhunter_f_01_hum.m2", + value = "helm_mail_raidhunter_f_01_hum.m2", }, { fileId = "139755", - value = "helm_mail_raidhunter_f_01_nif.m2", text = "helm_mail_raidhunter_f_01_nif.m2", + value = "helm_mail_raidhunter_f_01_nif.m2", }, { fileId = "139756", - value = "helm_mail_raidhunter_f_01_nim.m2", text = "helm_mail_raidhunter_f_01_nim.m2", + value = "helm_mail_raidhunter_f_01_nim.m2", }, { fileId = "139757", - value = "helm_mail_raidhunter_f_01_orf.m2", text = "helm_mail_raidhunter_f_01_orf.m2", + value = "helm_mail_raidhunter_f_01_orf.m2", }, { fileId = "139758", - value = "helm_mail_raidhunter_f_01_orm.m2", text = "helm_mail_raidhunter_f_01_orm.m2", + value = "helm_mail_raidhunter_f_01_orm.m2", }, { fileId = "139759", - value = "helm_mail_raidhunter_f_01_scf.m2", text = "helm_mail_raidhunter_f_01_scf.m2", + value = "helm_mail_raidhunter_f_01_scf.m2", }, { fileId = "139760", - value = "helm_mail_raidhunter_f_01_scm.m2", text = "helm_mail_raidhunter_f_01_scm.m2", + value = "helm_mail_raidhunter_f_01_scm.m2", }, { fileId = "139761", - value = "helm_mail_raidhunter_f_01_taf.m2", text = "helm_mail_raidhunter_f_01_taf.m2", + value = "helm_mail_raidhunter_f_01_taf.m2", }, { fileId = "139762", - value = "helm_mail_raidhunter_f_01_tam.m2", text = "helm_mail_raidhunter_f_01_tam.m2", + value = "helm_mail_raidhunter_f_01_tam.m2", }, { fileId = "139763", - value = "helm_mail_raidhunter_f_01_trf.m2", text = "helm_mail_raidhunter_f_01_trf.m2", + value = "helm_mail_raidhunter_f_01_trf.m2", }, { fileId = "139764", - value = "helm_mail_raidhunter_f_01_trm.m2", text = "helm_mail_raidhunter_f_01_trm.m2", + value = "helm_mail_raidhunter_f_01_trm.m2", }, { fileId = "139796", - value = "helm_mail_raidshaman_a_01_bef.m2", text = "helm_mail_raidshaman_a_01_bef.m2", + value = "helm_mail_raidshaman_a_01_bef.m2", }, { fileId = "139797", - value = "helm_mail_raidshaman_a_01_bem.m2", text = "helm_mail_raidshaman_a_01_bem.m2", + value = "helm_mail_raidshaman_a_01_bem.m2", }, { fileId = "139798", - value = "helm_mail_raidshaman_a_01_drf.m2", text = "helm_mail_raidshaman_a_01_drf.m2", + value = "helm_mail_raidshaman_a_01_drf.m2", }, { fileId = "139799", - value = "helm_mail_raidshaman_a_01_drm.m2", text = "helm_mail_raidshaman_a_01_drm.m2", + value = "helm_mail_raidshaman_a_01_drm.m2", }, { fileId = "139800", - value = "helm_mail_raidshaman_a_01_dwf.m2", text = "helm_mail_raidshaman_a_01_dwf.m2", + value = "helm_mail_raidshaman_a_01_dwf.m2", }, { fileId = "139801", - value = "helm_mail_raidshaman_a_01_dwm.m2", text = "helm_mail_raidshaman_a_01_dwm.m2", + value = "helm_mail_raidshaman_a_01_dwm.m2", }, { fileId = "139802", - value = "helm_mail_raidshaman_a_01_gnf.m2", text = "helm_mail_raidshaman_a_01_gnf.m2", + value = "helm_mail_raidshaman_a_01_gnf.m2", }, { fileId = "139803", - value = "helm_mail_raidshaman_a_01_gnm.m2", text = "helm_mail_raidshaman_a_01_gnm.m2", + value = "helm_mail_raidshaman_a_01_gnm.m2", }, { fileId = "139804", - value = "helm_mail_raidshaman_a_01_gof.m2", text = "helm_mail_raidshaman_a_01_gof.m2", + value = "helm_mail_raidshaman_a_01_gof.m2", }, { fileId = "139805", - value = "helm_mail_raidshaman_a_01_gom.m2", text = "helm_mail_raidshaman_a_01_gom.m2", + value = "helm_mail_raidshaman_a_01_gom.m2", }, { fileId = "139806", - value = "helm_mail_raidshaman_a_01_huf.m2", text = "helm_mail_raidshaman_a_01_huf.m2", + value = "helm_mail_raidshaman_a_01_huf.m2", }, { fileId = "139807", - value = "helm_mail_raidshaman_a_01_hum.m2", text = "helm_mail_raidshaman_a_01_hum.m2", + value = "helm_mail_raidshaman_a_01_hum.m2", }, { fileId = "139808", - value = "helm_mail_raidshaman_a_01_nif.m2", text = "helm_mail_raidshaman_a_01_nif.m2", + value = "helm_mail_raidshaman_a_01_nif.m2", }, { fileId = "139809", - value = "helm_mail_raidshaman_a_01_nim.m2", text = "helm_mail_raidshaman_a_01_nim.m2", + value = "helm_mail_raidshaman_a_01_nim.m2", }, { fileId = "139810", - value = "helm_mail_raidshaman_a_01_orf.m2", text = "helm_mail_raidshaman_a_01_orf.m2", + value = "helm_mail_raidshaman_a_01_orf.m2", }, { fileId = "139811", - value = "helm_mail_raidshaman_a_01_orm.m2", text = "helm_mail_raidshaman_a_01_orm.m2", + value = "helm_mail_raidshaman_a_01_orm.m2", }, { fileId = "139812", - value = "helm_mail_raidshaman_a_01_scf.m2", text = "helm_mail_raidshaman_a_01_scf.m2", + value = "helm_mail_raidshaman_a_01_scf.m2", }, { fileId = "139813", - value = "helm_mail_raidshaman_a_01_scm.m2", text = "helm_mail_raidshaman_a_01_scm.m2", + value = "helm_mail_raidshaman_a_01_scm.m2", }, { fileId = "139814", - value = "helm_mail_raidshaman_a_01_taf.m2", text = "helm_mail_raidshaman_a_01_taf.m2", + value = "helm_mail_raidshaman_a_01_taf.m2", }, { fileId = "139815", - value = "helm_mail_raidshaman_a_01_tam.m2", text = "helm_mail_raidshaman_a_01_tam.m2", + value = "helm_mail_raidshaman_a_01_tam.m2", }, { fileId = "139816", - value = "helm_mail_raidshaman_a_01_trf.m2", text = "helm_mail_raidshaman_a_01_trf.m2", + value = "helm_mail_raidshaman_a_01_trf.m2", }, { fileId = "139817", - value = "helm_mail_raidshaman_a_01_trm.m2", text = "helm_mail_raidshaman_a_01_trm.m2", + value = "helm_mail_raidshaman_a_01_trm.m2", }, { fileId = "139824", - value = "helm_mail_raidshaman_b_01_bef.m2", text = "helm_mail_raidshaman_b_01_bef.m2", + value = "helm_mail_raidshaman_b_01_bef.m2", }, { fileId = "139825", - value = "helm_mail_raidshaman_b_01_bem.m2", text = "helm_mail_raidshaman_b_01_bem.m2", + value = "helm_mail_raidshaman_b_01_bem.m2", }, { fileId = "139826", - value = "helm_mail_raidshaman_b_01_drf.m2", text = "helm_mail_raidshaman_b_01_drf.m2", + value = "helm_mail_raidshaman_b_01_drf.m2", }, { fileId = "139827", - value = "helm_mail_raidshaman_b_01_drm.m2", text = "helm_mail_raidshaman_b_01_drm.m2", + value = "helm_mail_raidshaman_b_01_drm.m2", }, { fileId = "139828", - value = "helm_mail_raidshaman_b_01_dwf.m2", text = "helm_mail_raidshaman_b_01_dwf.m2", + value = "helm_mail_raidshaman_b_01_dwf.m2", }, { fileId = "139829", - value = "helm_mail_raidshaman_b_01_dwm.m2", text = "helm_mail_raidshaman_b_01_dwm.m2", + value = "helm_mail_raidshaman_b_01_dwm.m2", }, { fileId = "139830", - value = "helm_mail_raidshaman_b_01_gnf.m2", text = "helm_mail_raidshaman_b_01_gnf.m2", + value = "helm_mail_raidshaman_b_01_gnf.m2", }, { fileId = "139831", - value = "helm_mail_raidshaman_b_01_gnm.m2", text = "helm_mail_raidshaman_b_01_gnm.m2", + value = "helm_mail_raidshaman_b_01_gnm.m2", }, { fileId = "139832", - value = "helm_mail_raidshaman_b_01_gof.m2", text = "helm_mail_raidshaman_b_01_gof.m2", + value = "helm_mail_raidshaman_b_01_gof.m2", }, { fileId = "139833", - value = "helm_mail_raidshaman_b_01_gom.m2", text = "helm_mail_raidshaman_b_01_gom.m2", + value = "helm_mail_raidshaman_b_01_gom.m2", }, { fileId = "139834", - value = "helm_mail_raidshaman_b_01_huf.m2", text = "helm_mail_raidshaman_b_01_huf.m2", + value = "helm_mail_raidshaman_b_01_huf.m2", }, { fileId = "139835", - value = "helm_mail_raidshaman_b_01_hum.m2", text = "helm_mail_raidshaman_b_01_hum.m2", + value = "helm_mail_raidshaman_b_01_hum.m2", }, { fileId = "139836", - value = "helm_mail_raidshaman_b_01_nif.m2", text = "helm_mail_raidshaman_b_01_nif.m2", + value = "helm_mail_raidshaman_b_01_nif.m2", }, { fileId = "139837", - value = "helm_mail_raidshaman_b_01_nim.m2", text = "helm_mail_raidshaman_b_01_nim.m2", + value = "helm_mail_raidshaman_b_01_nim.m2", }, { fileId = "139838", - value = "helm_mail_raidshaman_b_01_orf.m2", text = "helm_mail_raidshaman_b_01_orf.m2", + value = "helm_mail_raidshaman_b_01_orf.m2", }, { fileId = "139839", - value = "helm_mail_raidshaman_b_01_orm.m2", text = "helm_mail_raidshaman_b_01_orm.m2", + value = "helm_mail_raidshaman_b_01_orm.m2", }, { fileId = "139840", - value = "helm_mail_raidshaman_b_01_scf.m2", text = "helm_mail_raidshaman_b_01_scf.m2", + value = "helm_mail_raidshaman_b_01_scf.m2", }, { fileId = "139841", - value = "helm_mail_raidshaman_b_01_scm.m2", text = "helm_mail_raidshaman_b_01_scm.m2", + value = "helm_mail_raidshaman_b_01_scm.m2", }, { fileId = "139842", - value = "helm_mail_raidshaman_b_01_taf.m2", text = "helm_mail_raidshaman_b_01_taf.m2", + value = "helm_mail_raidshaman_b_01_taf.m2", }, { fileId = "139843", - value = "helm_mail_raidshaman_b_01_tam.m2", text = "helm_mail_raidshaman_b_01_tam.m2", + value = "helm_mail_raidshaman_b_01_tam.m2", }, { fileId = "139844", - value = "helm_mail_raidshaman_b_01_trf.m2", text = "helm_mail_raidshaman_b_01_trf.m2", + value = "helm_mail_raidshaman_b_01_trf.m2", }, { fileId = "139845", - value = "helm_mail_raidshaman_b_01_trm.m2", text = "helm_mail_raidshaman_b_01_trm.m2", + value = "helm_mail_raidshaman_b_01_trm.m2", }, { fileId = "139851", - value = "helm_mail_raidshaman_d_01_bef.m2", text = "helm_mail_raidshaman_d_01_bef.m2", + value = "helm_mail_raidshaman_d_01_bef.m2", }, { fileId = "139852", - value = "helm_mail_raidshaman_d_01_bem.m2", text = "helm_mail_raidshaman_d_01_bem.m2", + value = "helm_mail_raidshaman_d_01_bem.m2", }, { fileId = "139853", - value = "helm_mail_raidshaman_d_01_drf.m2", text = "helm_mail_raidshaman_d_01_drf.m2", + value = "helm_mail_raidshaman_d_01_drf.m2", }, { fileId = "139854", - value = "helm_mail_raidshaman_d_01_drm.m2", text = "helm_mail_raidshaman_d_01_drm.m2", + value = "helm_mail_raidshaman_d_01_drm.m2", }, { fileId = "139855", - value = "helm_mail_raidshaman_d_01_dwf.m2", text = "helm_mail_raidshaman_d_01_dwf.m2", + value = "helm_mail_raidshaman_d_01_dwf.m2", }, { fileId = "139856", - value = "helm_mail_raidshaman_d_01_dwm.m2", text = "helm_mail_raidshaman_d_01_dwm.m2", + value = "helm_mail_raidshaman_d_01_dwm.m2", }, { fileId = "139857", - value = "helm_mail_raidshaman_d_01_gnf.m2", text = "helm_mail_raidshaman_d_01_gnf.m2", + value = "helm_mail_raidshaman_d_01_gnf.m2", }, { fileId = "139858", - value = "helm_mail_raidshaman_d_01_gnm.m2", text = "helm_mail_raidshaman_d_01_gnm.m2", + value = "helm_mail_raidshaman_d_01_gnm.m2", }, { fileId = "139859", - value = "helm_mail_raidshaman_d_01_gof.m2", text = "helm_mail_raidshaman_d_01_gof.m2", + value = "helm_mail_raidshaman_d_01_gof.m2", }, { fileId = "139860", - value = "helm_mail_raidshaman_d_01_gom.m2", text = "helm_mail_raidshaman_d_01_gom.m2", + value = "helm_mail_raidshaman_d_01_gom.m2", }, { fileId = "139862", - value = "helm_mail_raidshaman_d_01_huf.m2", text = "helm_mail_raidshaman_d_01_huf.m2", + value = "helm_mail_raidshaman_d_01_huf.m2", }, { fileId = "139863", - value = "helm_mail_raidshaman_d_01_hum.m2", text = "helm_mail_raidshaman_d_01_hum.m2", + value = "helm_mail_raidshaman_d_01_hum.m2", }, { fileId = "139864", - value = "helm_mail_raidshaman_d_01_nif.m2", text = "helm_mail_raidshaman_d_01_nif.m2", + value = "helm_mail_raidshaman_d_01_nif.m2", }, { fileId = "139865", - value = "helm_mail_raidshaman_d_01_nim.m2", text = "helm_mail_raidshaman_d_01_nim.m2", + value = "helm_mail_raidshaman_d_01_nim.m2", }, { fileId = "139866", - value = "helm_mail_raidshaman_d_01_orf.m2", text = "helm_mail_raidshaman_d_01_orf.m2", + value = "helm_mail_raidshaman_d_01_orf.m2", }, { fileId = "139867", - value = "helm_mail_raidshaman_d_01_orm.m2", text = "helm_mail_raidshaman_d_01_orm.m2", + value = "helm_mail_raidshaman_d_01_orm.m2", }, { fileId = "139868", - value = "helm_mail_raidshaman_d_01_scf.m2", text = "helm_mail_raidshaman_d_01_scf.m2", + value = "helm_mail_raidshaman_d_01_scf.m2", }, { fileId = "139869", - value = "helm_mail_raidshaman_d_01_scm.m2", text = "helm_mail_raidshaman_d_01_scm.m2", + value = "helm_mail_raidshaman_d_01_scm.m2", }, { fileId = "139870", - value = "helm_mail_raidshaman_d_01_taf.m2", text = "helm_mail_raidshaman_d_01_taf.m2", + value = "helm_mail_raidshaman_d_01_taf.m2", }, { fileId = "139871", - value = "helm_mail_raidshaman_d_01_tam.m2", text = "helm_mail_raidshaman_d_01_tam.m2", + value = "helm_mail_raidshaman_d_01_tam.m2", }, { fileId = "139872", - value = "helm_mail_raidshaman_d_01_trf.m2", text = "helm_mail_raidshaman_d_01_trf.m2", + value = "helm_mail_raidshaman_d_01_trf.m2", }, { fileId = "139873", - value = "helm_mail_raidshaman_d_01_trm.m2", text = "helm_mail_raidshaman_d_01_trm.m2", + value = "helm_mail_raidshaman_d_01_trm.m2", }, { fileId = "139876", - value = "helm_mail_raidshaman_e_01_bef.m2", text = "helm_mail_raidshaman_e_01_bef.m2", + value = "helm_mail_raidshaman_e_01_bef.m2", }, { fileId = "139877", - value = "helm_mail_raidshaman_e_01_bem.m2", text = "helm_mail_raidshaman_e_01_bem.m2", + value = "helm_mail_raidshaman_e_01_bem.m2", }, { fileId = "139878", - value = "helm_mail_raidshaman_e_01_drf.m2", text = "helm_mail_raidshaman_e_01_drf.m2", + value = "helm_mail_raidshaman_e_01_drf.m2", }, { fileId = "139879", - value = "helm_mail_raidshaman_e_01_drm.m2", text = "helm_mail_raidshaman_e_01_drm.m2", + value = "helm_mail_raidshaman_e_01_drm.m2", }, { fileId = "139880", - value = "helm_mail_raidshaman_e_01_dwf.m2", text = "helm_mail_raidshaman_e_01_dwf.m2", + value = "helm_mail_raidshaman_e_01_dwf.m2", }, { fileId = "139881", - value = "helm_mail_raidshaman_e_01_dwm.m2", text = "helm_mail_raidshaman_e_01_dwm.m2", + value = "helm_mail_raidshaman_e_01_dwm.m2", }, { fileId = "139882", - value = "helm_mail_raidshaman_e_01_gnf.m2", text = "helm_mail_raidshaman_e_01_gnf.m2", + value = "helm_mail_raidshaman_e_01_gnf.m2", }, { fileId = "139883", - value = "helm_mail_raidshaman_e_01_gnm.m2", text = "helm_mail_raidshaman_e_01_gnm.m2", + value = "helm_mail_raidshaman_e_01_gnm.m2", }, { fileId = "139884", - value = "helm_mail_raidshaman_e_01_gof.m2", text = "helm_mail_raidshaman_e_01_gof.m2", + value = "helm_mail_raidshaman_e_01_gof.m2", }, { fileId = "139885", - value = "helm_mail_raidshaman_e_01_gom.m2", text = "helm_mail_raidshaman_e_01_gom.m2", + value = "helm_mail_raidshaman_e_01_gom.m2", }, { fileId = "139886", - value = "helm_mail_raidshaman_e_01_huf.m2", text = "helm_mail_raidshaman_e_01_huf.m2", + value = "helm_mail_raidshaman_e_01_huf.m2", }, { fileId = "139887", - value = "helm_mail_raidshaman_e_01_hum.m2", text = "helm_mail_raidshaman_e_01_hum.m2", + value = "helm_mail_raidshaman_e_01_hum.m2", }, { fileId = "139888", - value = "helm_mail_raidshaman_e_01_nif.m2", text = "helm_mail_raidshaman_e_01_nif.m2", + value = "helm_mail_raidshaman_e_01_nif.m2", }, { fileId = "139889", - value = "helm_mail_raidshaman_e_01_nim.m2", text = "helm_mail_raidshaman_e_01_nim.m2", + value = "helm_mail_raidshaman_e_01_nim.m2", }, { fileId = "139890", - value = "helm_mail_raidshaman_e_01_orf.m2", text = "helm_mail_raidshaman_e_01_orf.m2", + value = "helm_mail_raidshaman_e_01_orf.m2", }, { fileId = "139891", - value = "helm_mail_raidshaman_e_01_orm.m2", text = "helm_mail_raidshaman_e_01_orm.m2", + value = "helm_mail_raidshaman_e_01_orm.m2", }, { fileId = "139892", - value = "helm_mail_raidshaman_e_01_scf.m2", text = "helm_mail_raidshaman_e_01_scf.m2", + value = "helm_mail_raidshaman_e_01_scf.m2", }, { fileId = "139893", - value = "helm_mail_raidshaman_e_01_scm.m2", text = "helm_mail_raidshaman_e_01_scm.m2", + value = "helm_mail_raidshaman_e_01_scm.m2", }, { fileId = "139894", - value = "helm_mail_raidshaman_e_01_taf.m2", text = "helm_mail_raidshaman_e_01_taf.m2", + value = "helm_mail_raidshaman_e_01_taf.m2", }, { fileId = "139895", - value = "helm_mail_raidshaman_e_01_tam.m2", text = "helm_mail_raidshaman_e_01_tam.m2", + value = "helm_mail_raidshaman_e_01_tam.m2", }, { fileId = "139896", - value = "helm_mail_raidshaman_e_01_trf.m2", text = "helm_mail_raidshaman_e_01_trf.m2", + value = "helm_mail_raidshaman_e_01_trf.m2", }, { fileId = "139897", - value = "helm_mail_raidshaman_e_01_trm.m2", text = "helm_mail_raidshaman_e_01_trm.m2", + value = "helm_mail_raidshaman_e_01_trm.m2", }, { fileId = "139900", - value = "helm_mail_raidshaman_f_01_bef.m2", text = "helm_mail_raidshaman_f_01_bef.m2", + value = "helm_mail_raidshaman_f_01_bef.m2", }, { fileId = "139901", - value = "helm_mail_raidshaman_f_01_bem.m2", text = "helm_mail_raidshaman_f_01_bem.m2", + value = "helm_mail_raidshaman_f_01_bem.m2", }, { fileId = "139902", - value = "helm_mail_raidshaman_f_01_drf.m2", text = "helm_mail_raidshaman_f_01_drf.m2", + value = "helm_mail_raidshaman_f_01_drf.m2", }, { fileId = "139903", - value = "helm_mail_raidshaman_f_01_drm.m2", text = "helm_mail_raidshaman_f_01_drm.m2", + value = "helm_mail_raidshaman_f_01_drm.m2", }, { fileId = "139904", - value = "helm_mail_raidshaman_f_01_dwf.m2", text = "helm_mail_raidshaman_f_01_dwf.m2", + value = "helm_mail_raidshaman_f_01_dwf.m2", }, { fileId = "139905", - value = "helm_mail_raidshaman_f_01_dwm.m2", text = "helm_mail_raidshaman_f_01_dwm.m2", + value = "helm_mail_raidshaman_f_01_dwm.m2", }, { fileId = "139906", - value = "helm_mail_raidshaman_f_01_gnf.m2", text = "helm_mail_raidshaman_f_01_gnf.m2", + value = "helm_mail_raidshaman_f_01_gnf.m2", }, { fileId = "139907", - value = "helm_mail_raidshaman_f_01_gnm.m2", text = "helm_mail_raidshaman_f_01_gnm.m2", + value = "helm_mail_raidshaman_f_01_gnm.m2", }, { fileId = "139908", - value = "helm_mail_raidshaman_f_01_gof.m2", text = "helm_mail_raidshaman_f_01_gof.m2", + value = "helm_mail_raidshaman_f_01_gof.m2", }, { fileId = "139909", - value = "helm_mail_raidshaman_f_01_gom.m2", text = "helm_mail_raidshaman_f_01_gom.m2", + value = "helm_mail_raidshaman_f_01_gom.m2", }, { fileId = "139910", - value = "helm_mail_raidshaman_f_01_huf.m2", text = "helm_mail_raidshaman_f_01_huf.m2", + value = "helm_mail_raidshaman_f_01_huf.m2", }, { fileId = "139911", - value = "helm_mail_raidshaman_f_01_hum.m2", text = "helm_mail_raidshaman_f_01_hum.m2", + value = "helm_mail_raidshaman_f_01_hum.m2", }, { fileId = "139912", - value = "helm_mail_raidshaman_f_01_nif.m2", text = "helm_mail_raidshaman_f_01_nif.m2", + value = "helm_mail_raidshaman_f_01_nif.m2", }, { fileId = "139913", - value = "helm_mail_raidshaman_f_01_nim.m2", text = "helm_mail_raidshaman_f_01_nim.m2", + value = "helm_mail_raidshaman_f_01_nim.m2", }, { fileId = "139914", - value = "helm_mail_raidshaman_f_01_orf.m2", text = "helm_mail_raidshaman_f_01_orf.m2", + value = "helm_mail_raidshaman_f_01_orf.m2", }, { fileId = "139915", - value = "helm_mail_raidshaman_f_01_orm.m2", text = "helm_mail_raidshaman_f_01_orm.m2", + value = "helm_mail_raidshaman_f_01_orm.m2", }, { fileId = "139916", - value = "helm_mail_raidshaman_f_01_scf.m2", text = "helm_mail_raidshaman_f_01_scf.m2", + value = "helm_mail_raidshaman_f_01_scf.m2", }, { fileId = "139917", - value = "helm_mail_raidshaman_f_01_scm.m2", text = "helm_mail_raidshaman_f_01_scm.m2", + value = "helm_mail_raidshaman_f_01_scm.m2", }, { fileId = "139918", - value = "helm_mail_raidshaman_f_01_taf.m2", text = "helm_mail_raidshaman_f_01_taf.m2", + value = "helm_mail_raidshaman_f_01_taf.m2", }, { fileId = "139919", - value = "helm_mail_raidshaman_f_01_tam.m2", text = "helm_mail_raidshaman_f_01_tam.m2", + value = "helm_mail_raidshaman_f_01_tam.m2", }, { fileId = "139920", - value = "helm_mail_raidshaman_f_01_trf.m2", text = "helm_mail_raidshaman_f_01_trf.m2", + value = "helm_mail_raidshaman_f_01_trf.m2", }, { fileId = "139921", - value = "helm_mail_raidshaman_f_01_trm.m2", text = "helm_mail_raidshaman_f_01_trm.m2", + value = "helm_mail_raidshaman_f_01_trm.m2", }, { fileId = "139926", - value = "helm_mail_sunwell_d_01_bef.m2", text = "helm_mail_sunwell_d_01_bef.m2", + value = "helm_mail_sunwell_d_01_bef.m2", }, { fileId = "139927", - value = "helm_mail_sunwell_d_01_bem.m2", text = "helm_mail_sunwell_d_01_bem.m2", + value = "helm_mail_sunwell_d_01_bem.m2", }, { fileId = "139928", - value = "helm_mail_sunwell_d_01_drf.m2", text = "helm_mail_sunwell_d_01_drf.m2", + value = "helm_mail_sunwell_d_01_drf.m2", }, { fileId = "139929", - value = "helm_mail_sunwell_d_01_drm.m2", text = "helm_mail_sunwell_d_01_drm.m2", + value = "helm_mail_sunwell_d_01_drm.m2", }, { fileId = "139930", - value = "helm_mail_sunwell_d_01_dwf.m2", text = "helm_mail_sunwell_d_01_dwf.m2", + value = "helm_mail_sunwell_d_01_dwf.m2", }, { fileId = "139931", - value = "helm_mail_sunwell_d_01_dwm.m2", text = "helm_mail_sunwell_d_01_dwm.m2", + value = "helm_mail_sunwell_d_01_dwm.m2", }, { fileId = "139932", - value = "helm_mail_sunwell_d_01_gnf.m2", text = "helm_mail_sunwell_d_01_gnf.m2", + value = "helm_mail_sunwell_d_01_gnf.m2", }, { fileId = "139933", - value = "helm_mail_sunwell_d_01_gnm.m2", text = "helm_mail_sunwell_d_01_gnm.m2", + value = "helm_mail_sunwell_d_01_gnm.m2", }, { fileId = "139934", - value = "helm_mail_sunwell_d_01_gof.m2", text = "helm_mail_sunwell_d_01_gof.m2", + value = "helm_mail_sunwell_d_01_gof.m2", }, { fileId = "139935", - value = "helm_mail_sunwell_d_01_gom.m2", text = "helm_mail_sunwell_d_01_gom.m2", + value = "helm_mail_sunwell_d_01_gom.m2", }, { fileId = "139936", - value = "helm_mail_sunwell_d_01_huf.m2", text = "helm_mail_sunwell_d_01_huf.m2", + value = "helm_mail_sunwell_d_01_huf.m2", }, { fileId = "139937", - value = "helm_mail_sunwell_d_01_hum.m2", text = "helm_mail_sunwell_d_01_hum.m2", + value = "helm_mail_sunwell_d_01_hum.m2", }, { fileId = "139938", - value = "helm_mail_sunwell_d_01_nif.m2", text = "helm_mail_sunwell_d_01_nif.m2", + value = "helm_mail_sunwell_d_01_nif.m2", }, { fileId = "139939", - value = "helm_mail_sunwell_d_01_nim.m2", text = "helm_mail_sunwell_d_01_nim.m2", + value = "helm_mail_sunwell_d_01_nim.m2", }, { fileId = "139940", - value = "helm_mail_sunwell_d_01_orf.m2", text = "helm_mail_sunwell_d_01_orf.m2", + value = "helm_mail_sunwell_d_01_orf.m2", }, { fileId = "139941", - value = "helm_mail_sunwell_d_01_orm.m2", text = "helm_mail_sunwell_d_01_orm.m2", + value = "helm_mail_sunwell_d_01_orm.m2", }, { fileId = "139942", - value = "helm_mail_sunwell_d_01_scf.m2", text = "helm_mail_sunwell_d_01_scf.m2", + value = "helm_mail_sunwell_d_01_scf.m2", }, { fileId = "139943", - value = "helm_mail_sunwell_d_01_scm.m2", text = "helm_mail_sunwell_d_01_scm.m2", + value = "helm_mail_sunwell_d_01_scm.m2", }, { fileId = "139944", - value = "helm_mail_sunwell_d_01_taf.m2", text = "helm_mail_sunwell_d_01_taf.m2", + value = "helm_mail_sunwell_d_01_taf.m2", }, { fileId = "139945", - value = "helm_mail_sunwell_d_01_tam.m2", text = "helm_mail_sunwell_d_01_tam.m2", + value = "helm_mail_sunwell_d_01_tam.m2", }, { fileId = "139946", - value = "helm_mail_sunwell_d_01_trf.m2", text = "helm_mail_sunwell_d_01_trf.m2", + value = "helm_mail_sunwell_d_01_trf.m2", }, { fileId = "139947", - value = "helm_mail_sunwell_d_01_trm.m2", text = "helm_mail_sunwell_d_01_trm.m2", + value = "helm_mail_sunwell_d_01_trm.m2", }, { fileId = "139953", - value = "helm_mail_zulaman_d_01_bef.m2", text = "helm_mail_zulaman_d_01_bef.m2", + value = "helm_mail_zulaman_d_01_bef.m2", }, { fileId = "139954", - value = "helm_mail_zulaman_d_01_bem.m2", text = "helm_mail_zulaman_d_01_bem.m2", + value = "helm_mail_zulaman_d_01_bem.m2", }, { fileId = "139955", - value = "helm_mail_zulaman_d_01_drf.m2", text = "helm_mail_zulaman_d_01_drf.m2", + value = "helm_mail_zulaman_d_01_drf.m2", }, { fileId = "139956", - value = "helm_mail_zulaman_d_01_drm.m2", text = "helm_mail_zulaman_d_01_drm.m2", + value = "helm_mail_zulaman_d_01_drm.m2", }, { fileId = "139957", - value = "helm_mail_zulaman_d_01_dwf.m2", text = "helm_mail_zulaman_d_01_dwf.m2", + value = "helm_mail_zulaman_d_01_dwf.m2", }, { fileId = "139958", - value = "helm_mail_zulaman_d_01_dwm.m2", text = "helm_mail_zulaman_d_01_dwm.m2", + value = "helm_mail_zulaman_d_01_dwm.m2", }, { fileId = "139959", - value = "helm_mail_zulaman_d_01_gnf.m2", text = "helm_mail_zulaman_d_01_gnf.m2", + value = "helm_mail_zulaman_d_01_gnf.m2", }, { fileId = "139960", - value = "helm_mail_zulaman_d_01_gnm.m2", text = "helm_mail_zulaman_d_01_gnm.m2", + value = "helm_mail_zulaman_d_01_gnm.m2", }, { fileId = "139961", - value = "helm_mail_zulaman_d_01_huf.m2", text = "helm_mail_zulaman_d_01_huf.m2", + value = "helm_mail_zulaman_d_01_huf.m2", }, { fileId = "139962", - value = "helm_mail_zulaman_d_01_hum.m2", text = "helm_mail_zulaman_d_01_hum.m2", + value = "helm_mail_zulaman_d_01_hum.m2", }, { fileId = "139963", - value = "helm_mail_zulaman_d_01_nif.m2", text = "helm_mail_zulaman_d_01_nif.m2", + value = "helm_mail_zulaman_d_01_nif.m2", }, { fileId = "139964", - value = "helm_mail_zulaman_d_01_nim.m2", text = "helm_mail_zulaman_d_01_nim.m2", + value = "helm_mail_zulaman_d_01_nim.m2", }, { fileId = "139965", - value = "helm_mail_zulaman_d_01_orf.m2", text = "helm_mail_zulaman_d_01_orf.m2", + value = "helm_mail_zulaman_d_01_orf.m2", }, { fileId = "139966", - value = "helm_mail_zulaman_d_01_orm.m2", text = "helm_mail_zulaman_d_01_orm.m2", + value = "helm_mail_zulaman_d_01_orm.m2", }, { fileId = "139967", - value = "helm_mail_zulaman_d_01_scf.m2", text = "helm_mail_zulaman_d_01_scf.m2", + value = "helm_mail_zulaman_d_01_scf.m2", }, { fileId = "139968", - value = "helm_mail_zulaman_d_01_scm.m2", text = "helm_mail_zulaman_d_01_scm.m2", + value = "helm_mail_zulaman_d_01_scm.m2", }, { fileId = "139969", - value = "helm_mail_zulaman_d_01_taf.m2", text = "helm_mail_zulaman_d_01_taf.m2", + value = "helm_mail_zulaman_d_01_taf.m2", }, { fileId = "139970", - value = "helm_mail_zulaman_d_01_tam.m2", text = "helm_mail_zulaman_d_01_tam.m2", + value = "helm_mail_zulaman_d_01_tam.m2", }, { fileId = "139971", - value = "helm_mail_zulaman_d_01_trf.m2", text = "helm_mail_zulaman_d_01_trf.m2", + value = "helm_mail_zulaman_d_01_trf.m2", }, { fileId = "139972", - value = "helm_mail_zulaman_d_01_trm.m2", text = "helm_mail_zulaman_d_01_trm.m2", + value = "helm_mail_zulaman_d_01_trm.m2", }, { fileId = "139978", - value = "helm_mail_zulaman_d_02_bef.m2", text = "helm_mail_zulaman_d_02_bef.m2", + value = "helm_mail_zulaman_d_02_bef.m2", }, { fileId = "139979", - value = "helm_mail_zulaman_d_02_bem.m2", text = "helm_mail_zulaman_d_02_bem.m2", + value = "helm_mail_zulaman_d_02_bem.m2", }, { fileId = "139980", - value = "helm_mail_zulaman_d_02_drf.m2", text = "helm_mail_zulaman_d_02_drf.m2", + value = "helm_mail_zulaman_d_02_drf.m2", }, { fileId = "139981", - value = "helm_mail_zulaman_d_02_drm.m2", text = "helm_mail_zulaman_d_02_drm.m2", + value = "helm_mail_zulaman_d_02_drm.m2", }, { fileId = "139982", - value = "helm_mail_zulaman_d_02_dwf.m2", text = "helm_mail_zulaman_d_02_dwf.m2", + value = "helm_mail_zulaman_d_02_dwf.m2", }, { fileId = "139983", - value = "helm_mail_zulaman_d_02_dwm.m2", text = "helm_mail_zulaman_d_02_dwm.m2", + value = "helm_mail_zulaman_d_02_dwm.m2", }, { fileId = "139984", - value = "helm_mail_zulaman_d_02_gnf.m2", text = "helm_mail_zulaman_d_02_gnf.m2", + value = "helm_mail_zulaman_d_02_gnf.m2", }, { fileId = "139985", - value = "helm_mail_zulaman_d_02_gnm.m2", text = "helm_mail_zulaman_d_02_gnm.m2", + value = "helm_mail_zulaman_d_02_gnm.m2", }, { fileId = "139986", - value = "helm_mail_zulaman_d_02_huf.m2", text = "helm_mail_zulaman_d_02_huf.m2", + value = "helm_mail_zulaman_d_02_huf.m2", }, { fileId = "139987", - value = "helm_mail_zulaman_d_02_hum.m2", text = "helm_mail_zulaman_d_02_hum.m2", + value = "helm_mail_zulaman_d_02_hum.m2", }, { fileId = "139988", - value = "helm_mail_zulaman_d_02_nif.m2", text = "helm_mail_zulaman_d_02_nif.m2", + value = "helm_mail_zulaman_d_02_nif.m2", }, { fileId = "139989", - value = "helm_mail_zulaman_d_02_nim.m2", text = "helm_mail_zulaman_d_02_nim.m2", + value = "helm_mail_zulaman_d_02_nim.m2", }, { fileId = "139990", - value = "helm_mail_zulaman_d_02_orf.m2", text = "helm_mail_zulaman_d_02_orf.m2", + value = "helm_mail_zulaman_d_02_orf.m2", }, { fileId = "139991", - value = "helm_mail_zulaman_d_02_orm.m2", text = "helm_mail_zulaman_d_02_orm.m2", + value = "helm_mail_zulaman_d_02_orm.m2", }, { fileId = "139992", - value = "helm_mail_zulaman_d_02_scf.m2", text = "helm_mail_zulaman_d_02_scf.m2", + value = "helm_mail_zulaman_d_02_scf.m2", }, { fileId = "139993", - value = "helm_mail_zulaman_d_02_scm.m2", text = "helm_mail_zulaman_d_02_scm.m2", + value = "helm_mail_zulaman_d_02_scm.m2", }, { fileId = "139994", - value = "helm_mail_zulaman_d_02_taf.m2", text = "helm_mail_zulaman_d_02_taf.m2", + value = "helm_mail_zulaman_d_02_taf.m2", }, { fileId = "139995", - value = "helm_mail_zulaman_d_02_tam.m2", text = "helm_mail_zulaman_d_02_tam.m2", + value = "helm_mail_zulaman_d_02_tam.m2", }, { fileId = "139996", - value = "helm_mail_zulaman_d_02_trf.m2", text = "helm_mail_zulaman_d_02_trf.m2", + value = "helm_mail_zulaman_d_02_trf.m2", }, { fileId = "139997", - value = "helm_mail_zulaman_d_02_trm.m2", text = "helm_mail_zulaman_d_02_trm.m2", + value = "helm_mail_zulaman_d_02_trm.m2", }, { fileId = "140002", - value = "helm_mask_a_01troll_bef.m2", text = "helm_mask_a_01troll_bef.m2", + value = "helm_mask_a_01troll_bef.m2", }, { fileId = "140003", - value = "helm_mask_a_01troll_bem.m2", text = "helm_mask_a_01troll_bem.m2", + value = "helm_mask_a_01troll_bem.m2", }, { fileId = "140004", - value = "helm_mask_a_01troll_drf.m2", text = "helm_mask_a_01troll_drf.m2", + value = "helm_mask_a_01troll_drf.m2", }, { fileId = "140005", - value = "helm_mask_a_01troll_drm.m2", text = "helm_mask_a_01troll_drm.m2", + value = "helm_mask_a_01troll_drm.m2", }, { fileId = "140006", - value = "helm_mask_a_01troll_dwf.m2", text = "helm_mask_a_01troll_dwf.m2", + value = "helm_mask_a_01troll_dwf.m2", }, { fileId = "140007", - value = "helm_mask_a_01troll_dwm.m2", text = "helm_mask_a_01troll_dwm.m2", + value = "helm_mask_a_01troll_dwm.m2", }, { fileId = "140008", - value = "helm_mask_a_01troll_gnf.m2", text = "helm_mask_a_01troll_gnf.m2", + value = "helm_mask_a_01troll_gnf.m2", }, { fileId = "140009", - value = "helm_mask_a_01troll_gnm.m2", text = "helm_mask_a_01troll_gnm.m2", + value = "helm_mask_a_01troll_gnm.m2", }, { fileId = "140010", - value = "helm_mask_a_01troll_gof.m2", text = "helm_mask_a_01troll_gof.m2", + value = "helm_mask_a_01troll_gof.m2", }, { fileId = "140011", - value = "helm_mask_a_01troll_gom.m2", text = "helm_mask_a_01troll_gom.m2", + value = "helm_mask_a_01troll_gom.m2", }, { fileId = "140012", - value = "helm_mask_a_01troll_huf.m2", text = "helm_mask_a_01troll_huf.m2", + value = "helm_mask_a_01troll_huf.m2", }, { fileId = "140013", - value = "helm_mask_a_01troll_hum.m2", text = "helm_mask_a_01troll_hum.m2", + value = "helm_mask_a_01troll_hum.m2", }, { fileId = "140014", - value = "helm_mask_a_01troll_nif.m2", text = "helm_mask_a_01troll_nif.m2", + value = "helm_mask_a_01troll_nif.m2", }, { fileId = "140015", - value = "helm_mask_a_01troll_nim.m2", text = "helm_mask_a_01troll_nim.m2", + value = "helm_mask_a_01troll_nim.m2", }, { fileId = "140016", - value = "helm_mask_a_01troll_orf.m2", text = "helm_mask_a_01troll_orf.m2", + value = "helm_mask_a_01troll_orf.m2", }, { fileId = "140017", - value = "helm_mask_a_01troll_orm.m2", text = "helm_mask_a_01troll_orm.m2", + value = "helm_mask_a_01troll_orm.m2", }, { fileId = "140018", - value = "helm_mask_a_01troll_scf.m2", text = "helm_mask_a_01troll_scf.m2", + value = "helm_mask_a_01troll_scf.m2", }, { fileId = "140019", - value = "helm_mask_a_01troll_scm.m2", text = "helm_mask_a_01troll_scm.m2", + value = "helm_mask_a_01troll_scm.m2", }, { fileId = "140020", - value = "helm_mask_a_01troll_taf.m2", text = "helm_mask_a_01troll_taf.m2", + value = "helm_mask_a_01troll_taf.m2", }, { fileId = "140021", - value = "helm_mask_a_01troll_tam.m2", text = "helm_mask_a_01troll_tam.m2", + value = "helm_mask_a_01troll_tam.m2", }, { fileId = "140022", - value = "helm_mask_a_01troll_trf.m2", text = "helm_mask_a_01troll_trf.m2", + value = "helm_mask_a_01troll_trf.m2", }, { fileId = "140023", - value = "helm_mask_a_01troll_trm.m2", text = "helm_mask_a_01troll_trm.m2", + value = "helm_mask_a_01troll_trm.m2", }, { fileId = "140024", - value = "helm_mask_b_01mirror_bef.m2", text = "helm_mask_b_01mirror_bef.m2", + value = "helm_mask_b_01mirror_bef.m2", }, { fileId = "140025", - value = "helm_mask_b_01mirror_bem.m2", text = "helm_mask_b_01mirror_bem.m2", + value = "helm_mask_b_01mirror_bem.m2", }, { fileId = "140026", - value = "helm_mask_b_01mirror_drf.m2", text = "helm_mask_b_01mirror_drf.m2", + value = "helm_mask_b_01mirror_drf.m2", }, { fileId = "140027", - value = "helm_mask_b_01mirror_drm.m2", text = "helm_mask_b_01mirror_drm.m2", + value = "helm_mask_b_01mirror_drm.m2", }, { fileId = "140028", - value = "helm_mask_b_01mirror_gof.m2", text = "helm_mask_b_01mirror_gof.m2", + value = "helm_mask_b_01mirror_gof.m2", }, { fileId = "140029", - value = "helm_mask_b_01mirror_gom.m2", text = "helm_mask_b_01mirror_gom.m2", + value = "helm_mask_b_01mirror_gom.m2", }, { fileId = "140031", - value = "helm_mask_halloween_bef.m2", text = "helm_mask_halloween_bef.m2", + value = "helm_mask_halloween_bef.m2", }, { fileId = "140032", - value = "helm_mask_halloween_bem.m2", text = "helm_mask_halloween_bem.m2", + value = "helm_mask_halloween_bem.m2", }, { fileId = "140036", - value = "helm_mask_halloween_drf.m2", text = "helm_mask_halloween_drf.m2", + value = "helm_mask_halloween_drf.m2", }, { fileId = "140038", - value = "helm_mask_halloween_drm.m2", text = "helm_mask_halloween_drm.m2", + value = "helm_mask_halloween_drm.m2", }, { fileId = "140040", - value = "helm_mask_halloween_dwf.m2", text = "helm_mask_halloween_dwf.m2", + value = "helm_mask_halloween_dwf.m2", }, { fileId = "140042", - value = "helm_mask_halloween_dwm.m2", text = "helm_mask_halloween_dwm.m2", + value = "helm_mask_halloween_dwm.m2", }, { fileId = "140044", - value = "helm_mask_halloween_gnf.m2", text = "helm_mask_halloween_gnf.m2", + value = "helm_mask_halloween_gnf.m2", }, { fileId = "140046", - value = "helm_mask_halloween_gnm.m2", text = "helm_mask_halloween_gnm.m2", + value = "helm_mask_halloween_gnm.m2", }, { fileId = "140047", - value = "helm_mask_halloween_gof.m2", text = "helm_mask_halloween_gof.m2", + value = "helm_mask_halloween_gof.m2", }, { fileId = "140048", - value = "helm_mask_halloween_gom.m2", text = "helm_mask_halloween_gom.m2", + value = "helm_mask_halloween_gom.m2", }, { fileId = "140050", - value = "helm_mask_halloween_huf.m2", text = "helm_mask_halloween_huf.m2", + value = "helm_mask_halloween_huf.m2", }, { fileId = "140052", - value = "helm_mask_halloween_hum.m2", text = "helm_mask_halloween_hum.m2", + value = "helm_mask_halloween_hum.m2", }, { fileId = "140054", - value = "helm_mask_halloween_nif.m2", text = "helm_mask_halloween_nif.m2", + value = "helm_mask_halloween_nif.m2", }, { fileId = "140056", - value = "helm_mask_halloween_nim.m2", text = "helm_mask_halloween_nim.m2", + value = "helm_mask_halloween_nim.m2", }, { fileId = "140058", - value = "helm_mask_halloween_orf.m2", text = "helm_mask_halloween_orf.m2", + value = "helm_mask_halloween_orf.m2", }, { fileId = "140060", - value = "helm_mask_halloween_orm.m2", text = "helm_mask_halloween_orm.m2", + value = "helm_mask_halloween_orm.m2", }, { fileId = "140062", - value = "helm_mask_halloween_scf.m2", text = "helm_mask_halloween_scf.m2", + value = "helm_mask_halloween_scf.m2", }, { fileId = "140064", - value = "helm_mask_halloween_scm.m2", text = "helm_mask_halloween_scm.m2", + value = "helm_mask_halloween_scm.m2", }, { fileId = "140066", - value = "helm_mask_halloween_taf.m2", text = "helm_mask_halloween_taf.m2", + value = "helm_mask_halloween_taf.m2", }, { fileId = "140068", - value = "helm_mask_halloween_tam.m2", text = "helm_mask_halloween_tam.m2", + value = "helm_mask_halloween_tam.m2", }, { fileId = "140070", - value = "helm_mask_halloween_trf.m2", text = "helm_mask_halloween_trf.m2", + value = "helm_mask_halloween_trf.m2", }, { fileId = "140072", - value = "helm_mask_halloween_trm.m2", text = "helm_mask_halloween_trm.m2", + value = "helm_mask_halloween_trm.m2", }, { fileId = "140097", - value = "helm_mask_pumpkin_bef.m2", text = "helm_mask_pumpkin_bef.m2", + value = "helm_mask_pumpkin_bef.m2", }, { fileId = "140098", - value = "helm_mask_pumpkin_bem.m2", text = "helm_mask_pumpkin_bem.m2", + value = "helm_mask_pumpkin_bem.m2", }, { fileId = "140099", - value = "helm_mask_pumpkin_drf.m2", text = "helm_mask_pumpkin_drf.m2", + value = "helm_mask_pumpkin_drf.m2", }, { fileId = "140100", - value = "helm_mask_pumpkin_drm.m2", text = "helm_mask_pumpkin_drm.m2", + value = "helm_mask_pumpkin_drm.m2", }, { fileId = "140101", - value = "helm_mask_pumpkin_dwf.m2", text = "helm_mask_pumpkin_dwf.m2", + value = "helm_mask_pumpkin_dwf.m2", }, { fileId = "140102", - value = "helm_mask_pumpkin_dwm.m2", text = "helm_mask_pumpkin_dwm.m2", + value = "helm_mask_pumpkin_dwm.m2", }, { fileId = "140103", - value = "helm_mask_pumpkin_gnf.m2", text = "helm_mask_pumpkin_gnf.m2", + value = "helm_mask_pumpkin_gnf.m2", }, { fileId = "140104", - value = "helm_mask_pumpkin_gnm.m2", text = "helm_mask_pumpkin_gnm.m2", + value = "helm_mask_pumpkin_gnm.m2", }, { fileId = "140105", - value = "helm_mask_pumpkin_gof.m2", text = "helm_mask_pumpkin_gof.m2", + value = "helm_mask_pumpkin_gof.m2", }, { fileId = "140106", - value = "helm_mask_pumpkin_gom.m2", text = "helm_mask_pumpkin_gom.m2", + value = "helm_mask_pumpkin_gom.m2", }, { fileId = "140107", - value = "helm_mask_pumpkin_huf.m2", text = "helm_mask_pumpkin_huf.m2", + value = "helm_mask_pumpkin_huf.m2", }, { fileId = "140108", - value = "helm_mask_pumpkin_hum.m2", text = "helm_mask_pumpkin_hum.m2", + value = "helm_mask_pumpkin_hum.m2", }, { fileId = "140109", - value = "helm_mask_pumpkin_nif.m2", text = "helm_mask_pumpkin_nif.m2", + value = "helm_mask_pumpkin_nif.m2", }, { fileId = "140110", - value = "helm_mask_pumpkin_nim.m2", text = "helm_mask_pumpkin_nim.m2", + value = "helm_mask_pumpkin_nim.m2", }, { fileId = "140111", - value = "helm_mask_pumpkin_orf.m2", text = "helm_mask_pumpkin_orf.m2", + value = "helm_mask_pumpkin_orf.m2", }, { fileId = "140112", - value = "helm_mask_pumpkin_orm.m2", text = "helm_mask_pumpkin_orm.m2", + value = "helm_mask_pumpkin_orm.m2", }, { fileId = "140113", - value = "helm_mask_pumpkin_scf.m2", text = "helm_mask_pumpkin_scf.m2", + value = "helm_mask_pumpkin_scf.m2", }, { fileId = "140114", - value = "helm_mask_pumpkin_scm.m2", text = "helm_mask_pumpkin_scm.m2", + value = "helm_mask_pumpkin_scm.m2", }, { fileId = "140115", - value = "helm_mask_pumpkin_taf.m2", text = "helm_mask_pumpkin_taf.m2", + value = "helm_mask_pumpkin_taf.m2", }, { fileId = "140116", - value = "helm_mask_pumpkin_tam.m2", text = "helm_mask_pumpkin_tam.m2", + value = "helm_mask_pumpkin_tam.m2", }, { fileId = "140117", - value = "helm_mask_pumpkin_trf.m2", text = "helm_mask_pumpkin_trf.m2", + value = "helm_mask_pumpkin_trf.m2", }, { fileId = "140118", - value = "helm_mask_pumpkin_trm.m2", text = "helm_mask_pumpkin_trm.m2", + value = "helm_mask_pumpkin_trm.m2", }, { fileId = "140119", - value = "helm_mask_zulgurub_d_01_bef.m2", text = "helm_mask_zulgurub_d_01_bef.m2", + value = "helm_mask_zulgurub_d_01_bef.m2", }, { fileId = "140120", - value = "helm_mask_zulgurub_d_01_bem.m2", text = "helm_mask_zulgurub_d_01_bem.m2", + value = "helm_mask_zulgurub_d_01_bem.m2", }, { fileId = "140121", - value = "helm_mask_zulgurub_d_01_drf.m2", text = "helm_mask_zulgurub_d_01_drf.m2", + value = "helm_mask_zulgurub_d_01_drf.m2", }, { fileId = "140122", - value = "helm_mask_zulgurub_d_01_drm.m2", text = "helm_mask_zulgurub_d_01_drm.m2", + value = "helm_mask_zulgurub_d_01_drm.m2", }, { fileId = "140123", - value = "helm_mask_zulgurub_d_01_dwf.m2", text = "helm_mask_zulgurub_d_01_dwf.m2", + value = "helm_mask_zulgurub_d_01_dwf.m2", }, { fileId = "140124", - value = "helm_mask_zulgurub_d_01_dwm.m2", text = "helm_mask_zulgurub_d_01_dwm.m2", + value = "helm_mask_zulgurub_d_01_dwm.m2", }, { fileId = "140125", - value = "helm_mask_zulgurub_d_01_gnf.m2", text = "helm_mask_zulgurub_d_01_gnf.m2", + value = "helm_mask_zulgurub_d_01_gnf.m2", }, { fileId = "140126", - value = "helm_mask_zulgurub_d_01_gnm.m2", text = "helm_mask_zulgurub_d_01_gnm.m2", + value = "helm_mask_zulgurub_d_01_gnm.m2", }, { fileId = "140127", - value = "helm_mask_zulgurub_d_01_gof.m2", text = "helm_mask_zulgurub_d_01_gof.m2", + value = "helm_mask_zulgurub_d_01_gof.m2", }, { fileId = "140128", - value = "helm_mask_zulgurub_d_01_gom.m2", text = "helm_mask_zulgurub_d_01_gom.m2", + value = "helm_mask_zulgurub_d_01_gom.m2", }, { fileId = "140129", - value = "helm_mask_zulgurub_d_01_huf.m2", text = "helm_mask_zulgurub_d_01_huf.m2", + value = "helm_mask_zulgurub_d_01_huf.m2", }, { fileId = "140130", - value = "helm_mask_zulgurub_d_01_hum.m2", text = "helm_mask_zulgurub_d_01_hum.m2", + value = "helm_mask_zulgurub_d_01_hum.m2", }, { fileId = "140131", - value = "helm_mask_zulgurub_d_01_nif.m2", text = "helm_mask_zulgurub_d_01_nif.m2", + value = "helm_mask_zulgurub_d_01_nif.m2", }, { fileId = "140132", - value = "helm_mask_zulgurub_d_01_nim.m2", text = "helm_mask_zulgurub_d_01_nim.m2", + value = "helm_mask_zulgurub_d_01_nim.m2", }, { fileId = "140133", - value = "helm_mask_zulgurub_d_01_orf.m2", text = "helm_mask_zulgurub_d_01_orf.m2", + value = "helm_mask_zulgurub_d_01_orf.m2", }, { fileId = "140134", - value = "helm_mask_zulgurub_d_01_orm.m2", text = "helm_mask_zulgurub_d_01_orm.m2", + value = "helm_mask_zulgurub_d_01_orm.m2", }, { fileId = "140135", - value = "helm_mask_zulgurub_d_01_scf.m2", text = "helm_mask_zulgurub_d_01_scf.m2", + value = "helm_mask_zulgurub_d_01_scf.m2", }, { fileId = "140136", - value = "helm_mask_zulgurub_d_01_scm.m2", text = "helm_mask_zulgurub_d_01_scm.m2", + value = "helm_mask_zulgurub_d_01_scm.m2", }, { fileId = "140137", - value = "helm_mask_zulgurub_d_01_taf.m2", text = "helm_mask_zulgurub_d_01_taf.m2", + value = "helm_mask_zulgurub_d_01_taf.m2", }, { fileId = "140138", - value = "helm_mask_zulgurub_d_01_tam.m2", text = "helm_mask_zulgurub_d_01_tam.m2", + value = "helm_mask_zulgurub_d_01_tam.m2", }, { fileId = "140139", - value = "helm_mask_zulgurub_d_01_trf.m2", text = "helm_mask_zulgurub_d_01_trf.m2", + value = "helm_mask_zulgurub_d_01_trf.m2", }, { fileId = "140140", - value = "helm_mask_zulgurub_d_01_trm.m2", text = "helm_mask_zulgurub_d_01_trm.m2", + value = "helm_mask_zulgurub_d_01_trm.m2", }, { fileId = "140142", - value = "helm_monocle_a_01_bef.m2", text = "helm_monocle_a_01_bef.m2", + value = "helm_monocle_a_01_bef.m2", }, { fileId = "140143", - value = "helm_monocle_a_01_bem.m2", text = "helm_monocle_a_01_bem.m2", + value = "helm_monocle_a_01_bem.m2", }, { fileId = "140144", - value = "helm_monocle_a_01_drf.m2", text = "helm_monocle_a_01_drf.m2", + value = "helm_monocle_a_01_drf.m2", }, { fileId = "140145", - value = "helm_monocle_a_01_drm.m2", text = "helm_monocle_a_01_drm.m2", + value = "helm_monocle_a_01_drm.m2", }, { fileId = "140146", - value = "helm_monocle_a_01_dwf.m2", text = "helm_monocle_a_01_dwf.m2", + value = "helm_monocle_a_01_dwf.m2", }, { fileId = "140147", - value = "helm_monocle_a_01_dwm.m2", text = "helm_monocle_a_01_dwm.m2", + value = "helm_monocle_a_01_dwm.m2", }, { fileId = "140148", - value = "helm_monocle_a_01_gnf.m2", text = "helm_monocle_a_01_gnf.m2", + value = "helm_monocle_a_01_gnf.m2", }, { fileId = "140149", - value = "helm_monocle_a_01_gnm.m2", text = "helm_monocle_a_01_gnm.m2", + value = "helm_monocle_a_01_gnm.m2", }, { fileId = "140150", - value = "helm_monocle_a_01_gof.m2", text = "helm_monocle_a_01_gof.m2", + value = "helm_monocle_a_01_gof.m2", }, { fileId = "140151", - value = "helm_monocle_a_01_gom.m2", text = "helm_monocle_a_01_gom.m2", + value = "helm_monocle_a_01_gom.m2", }, { fileId = "140152", - value = "helm_monocle_a_01_huf.m2", text = "helm_monocle_a_01_huf.m2", + value = "helm_monocle_a_01_huf.m2", }, { fileId = "140153", - value = "helm_monocle_a_01_hum.m2", text = "helm_monocle_a_01_hum.m2", + value = "helm_monocle_a_01_hum.m2", }, { fileId = "140154", - value = "helm_monocle_a_01_nif.m2", text = "helm_monocle_a_01_nif.m2", + value = "helm_monocle_a_01_nif.m2", }, { fileId = "140155", - value = "helm_monocle_a_01_nim.m2", text = "helm_monocle_a_01_nim.m2", + value = "helm_monocle_a_01_nim.m2", }, { fileId = "140156", - value = "helm_monocle_a_01_orf.m2", text = "helm_monocle_a_01_orf.m2", + value = "helm_monocle_a_01_orf.m2", }, { fileId = "140157", - value = "helm_monocle_a_01_orm.m2", text = "helm_monocle_a_01_orm.m2", + value = "helm_monocle_a_01_orm.m2", }, { fileId = "140158", - value = "helm_monocle_a_01_scf.m2", text = "helm_monocle_a_01_scf.m2", + value = "helm_monocle_a_01_scf.m2", }, { fileId = "140159", - value = "helm_monocle_a_01_scm.m2", text = "helm_monocle_a_01_scm.m2", + value = "helm_monocle_a_01_scm.m2", }, { fileId = "140160", - value = "helm_monocle_a_01_taf.m2", text = "helm_monocle_a_01_taf.m2", + value = "helm_monocle_a_01_taf.m2", }, { fileId = "140161", - value = "helm_monocle_a_01_tam.m2", text = "helm_monocle_a_01_tam.m2", + value = "helm_monocle_a_01_tam.m2", }, { fileId = "140162", - value = "helm_monocle_a_01_trf.m2", text = "helm_monocle_a_01_trf.m2", + value = "helm_monocle_a_01_trf.m2", }, { fileId = "140163", - value = "helm_monocle_a_01_trm.m2", text = "helm_monocle_a_01_trm.m2", + value = "helm_monocle_a_01_trm.m2", }, { fileId = "140167", - value = "helm_monocle_b_01_bef.m2", text = "helm_monocle_b_01_bef.m2", + value = "helm_monocle_b_01_bef.m2", }, { fileId = "140168", - value = "helm_monocle_b_01_bem.m2", text = "helm_monocle_b_01_bem.m2", + value = "helm_monocle_b_01_bem.m2", }, { fileId = "140169", - value = "helm_monocle_b_01_drf.m2", text = "helm_monocle_b_01_drf.m2", + value = "helm_monocle_b_01_drf.m2", }, { fileId = "140170", - value = "helm_monocle_b_01_drm.m2", text = "helm_monocle_b_01_drm.m2", + value = "helm_monocle_b_01_drm.m2", }, { fileId = "140171", - value = "helm_monocle_b_01_dwf.m2", text = "helm_monocle_b_01_dwf.m2", + value = "helm_monocle_b_01_dwf.m2", }, { fileId = "140172", - value = "helm_monocle_b_01_dwm.m2", text = "helm_monocle_b_01_dwm.m2", + value = "helm_monocle_b_01_dwm.m2", }, { fileId = "140173", - value = "helm_monocle_b_01_gnf.m2", text = "helm_monocle_b_01_gnf.m2", + value = "helm_monocle_b_01_gnf.m2", }, { fileId = "140174", - value = "helm_monocle_b_01_gnm.m2", text = "helm_monocle_b_01_gnm.m2", + value = "helm_monocle_b_01_gnm.m2", }, { fileId = "140175", - value = "helm_monocle_b_01_gof.m2", text = "helm_monocle_b_01_gof.m2", + value = "helm_monocle_b_01_gof.m2", }, { fileId = "140176", - value = "helm_monocle_b_01_gom.m2", text = "helm_monocle_b_01_gom.m2", + value = "helm_monocle_b_01_gom.m2", }, { fileId = "140177", - value = "helm_monocle_b_01_huf.m2", text = "helm_monocle_b_01_huf.m2", + value = "helm_monocle_b_01_huf.m2", }, { fileId = "140178", - value = "helm_monocle_b_01_hum.m2", text = "helm_monocle_b_01_hum.m2", + value = "helm_monocle_b_01_hum.m2", }, { fileId = "140179", - value = "helm_monocle_b_01_nif.m2", text = "helm_monocle_b_01_nif.m2", + value = "helm_monocle_b_01_nif.m2", }, { fileId = "140180", - value = "helm_monocle_b_01_nim.m2", text = "helm_monocle_b_01_nim.m2", + value = "helm_monocle_b_01_nim.m2", }, { fileId = "140181", - value = "helm_monocle_b_01_orf.m2", text = "helm_monocle_b_01_orf.m2", + value = "helm_monocle_b_01_orf.m2", }, { fileId = "140182", - value = "helm_monocle_b_01_orm.m2", text = "helm_monocle_b_01_orm.m2", + value = "helm_monocle_b_01_orm.m2", }, { fileId = "140183", - value = "helm_monocle_b_01_scf.m2", text = "helm_monocle_b_01_scf.m2", + value = "helm_monocle_b_01_scf.m2", }, { fileId = "140184", - value = "helm_monocle_b_01_scm.m2", text = "helm_monocle_b_01_scm.m2", + value = "helm_monocle_b_01_scm.m2", }, { fileId = "140185", - value = "helm_monocle_b_01_taf.m2", text = "helm_monocle_b_01_taf.m2", + value = "helm_monocle_b_01_taf.m2", }, { fileId = "140186", - value = "helm_monocle_b_01_tam.m2", text = "helm_monocle_b_01_tam.m2", + value = "helm_monocle_b_01_tam.m2", }, { fileId = "140187", - value = "helm_monocle_b_01_trf.m2", text = "helm_monocle_b_01_trf.m2", + value = "helm_monocle_b_01_trf.m2", }, { fileId = "140188", - value = "helm_monocle_b_01_trm.m2", text = "helm_monocle_b_01_trm.m2", + value = "helm_monocle_b_01_trm.m2", }, { fileId = "140189", - value = "helm_monocle_b_02engi_bef.m2", text = "helm_monocle_b_02engi_bef.m2", + value = "helm_monocle_b_02engi_bef.m2", }, { fileId = "140190", - value = "helm_monocle_b_02engi_bem.m2", text = "helm_monocle_b_02engi_bem.m2", + value = "helm_monocle_b_02engi_bem.m2", }, { fileId = "140191", - value = "helm_monocle_b_02engi_drf.m2", text = "helm_monocle_b_02engi_drf.m2", + value = "helm_monocle_b_02engi_drf.m2", }, { fileId = "140192", - value = "helm_monocle_b_02engi_drm.m2", text = "helm_monocle_b_02engi_drm.m2", + value = "helm_monocle_b_02engi_drm.m2", }, { fileId = "140193", - value = "helm_monocle_b_02engi_dwf.m2", text = "helm_monocle_b_02engi_dwf.m2", + value = "helm_monocle_b_02engi_dwf.m2", }, { fileId = "140194", - value = "helm_monocle_b_02engi_dwm.m2", text = "helm_monocle_b_02engi_dwm.m2", + value = "helm_monocle_b_02engi_dwm.m2", }, { fileId = "140195", - value = "helm_monocle_b_02engi_gnf.m2", text = "helm_monocle_b_02engi_gnf.m2", + value = "helm_monocle_b_02engi_gnf.m2", }, { fileId = "140196", - value = "helm_monocle_b_02engi_gnm.m2", text = "helm_monocle_b_02engi_gnm.m2", + value = "helm_monocle_b_02engi_gnm.m2", }, { fileId = "140197", - value = "helm_monocle_b_02engi_gof.m2", text = "helm_monocle_b_02engi_gof.m2", + value = "helm_monocle_b_02engi_gof.m2", }, { fileId = "140198", - value = "helm_monocle_b_02engi_gom.m2", text = "helm_monocle_b_02engi_gom.m2", + value = "helm_monocle_b_02engi_gom.m2", }, { fileId = "140199", - value = "helm_monocle_b_02engi_huf.m2", text = "helm_monocle_b_02engi_huf.m2", + value = "helm_monocle_b_02engi_huf.m2", }, { fileId = "140200", - value = "helm_monocle_b_02engi_hum.m2", text = "helm_monocle_b_02engi_hum.m2", + value = "helm_monocle_b_02engi_hum.m2", }, { fileId = "140201", - value = "helm_monocle_b_02engi_nif.m2", text = "helm_monocle_b_02engi_nif.m2", + value = "helm_monocle_b_02engi_nif.m2", }, { fileId = "140202", - value = "helm_monocle_b_02engi_nim.m2", text = "helm_monocle_b_02engi_nim.m2", + value = "helm_monocle_b_02engi_nim.m2", }, { fileId = "140203", - value = "helm_monocle_b_02engi_orf.m2", text = "helm_monocle_b_02engi_orf.m2", + value = "helm_monocle_b_02engi_orf.m2", }, { fileId = "140204", - value = "helm_monocle_b_02engi_orm.m2", text = "helm_monocle_b_02engi_orm.m2", + value = "helm_monocle_b_02engi_orm.m2", }, { fileId = "140205", - value = "helm_monocle_b_02engi_scf.m2", text = "helm_monocle_b_02engi_scf.m2", + value = "helm_monocle_b_02engi_scf.m2", }, { fileId = "140206", - value = "helm_monocle_b_02engi_scm.m2", text = "helm_monocle_b_02engi_scm.m2", + value = "helm_monocle_b_02engi_scm.m2", }, { fileId = "140207", - value = "helm_monocle_b_02engi_taf.m2", text = "helm_monocle_b_02engi_taf.m2", + value = "helm_monocle_b_02engi_taf.m2", }, { fileId = "140208", - value = "helm_monocle_b_02engi_tam.m2", text = "helm_monocle_b_02engi_tam.m2", + value = "helm_monocle_b_02engi_tam.m2", }, { fileId = "140209", - value = "helm_monocle_b_02engi_trf.m2", text = "helm_monocle_b_02engi_trf.m2", + value = "helm_monocle_b_02engi_trf.m2", }, { fileId = "140210", - value = "helm_monocle_b_02engi_trm.m2", text = "helm_monocle_b_02engi_trm.m2", + value = "helm_monocle_b_02engi_trm.m2", }, { fileId = "140211", - value = "helm_monocle_c_01_bef.m2", text = "helm_monocle_c_01_bef.m2", + value = "helm_monocle_c_01_bef.m2", }, { fileId = "140212", - value = "helm_monocle_c_01_bem.m2", text = "helm_monocle_c_01_bem.m2", + value = "helm_monocle_c_01_bem.m2", }, { fileId = "140213", - value = "helm_monocle_c_01_drf.m2", text = "helm_monocle_c_01_drf.m2", + value = "helm_monocle_c_01_drf.m2", }, { fileId = "140214", - value = "helm_monocle_c_01_drm.m2", text = "helm_monocle_c_01_drm.m2", + value = "helm_monocle_c_01_drm.m2", }, { fileId = "140215", - value = "helm_monocle_c_01_dwf.m2", text = "helm_monocle_c_01_dwf.m2", + value = "helm_monocle_c_01_dwf.m2", }, { fileId = "140216", - value = "helm_monocle_c_01_dwm.m2", text = "helm_monocle_c_01_dwm.m2", + value = "helm_monocle_c_01_dwm.m2", }, { fileId = "140217", - value = "helm_monocle_c_01_gnf.m2", text = "helm_monocle_c_01_gnf.m2", + value = "helm_monocle_c_01_gnf.m2", }, { fileId = "140218", - value = "helm_monocle_c_01_gnm.m2", text = "helm_monocle_c_01_gnm.m2", + value = "helm_monocle_c_01_gnm.m2", }, { fileId = "140219", - value = "helm_monocle_c_01_gof.m2", text = "helm_monocle_c_01_gof.m2", + value = "helm_monocle_c_01_gof.m2", }, { fileId = "140220", - value = "helm_monocle_c_01_gom.m2", text = "helm_monocle_c_01_gom.m2", + value = "helm_monocle_c_01_gom.m2", }, { fileId = "140221", - value = "helm_monocle_c_01_huf.m2", text = "helm_monocle_c_01_huf.m2", + value = "helm_monocle_c_01_huf.m2", }, { fileId = "140222", - value = "helm_monocle_c_01_hum.m2", text = "helm_monocle_c_01_hum.m2", + value = "helm_monocle_c_01_hum.m2", }, { fileId = "140223", - value = "helm_monocle_c_01_nif.m2", text = "helm_monocle_c_01_nif.m2", + value = "helm_monocle_c_01_nif.m2", }, { fileId = "140224", - value = "helm_monocle_c_01_nim.m2", text = "helm_monocle_c_01_nim.m2", + value = "helm_monocle_c_01_nim.m2", }, { fileId = "140225", - value = "helm_monocle_c_01_orf.m2", text = "helm_monocle_c_01_orf.m2", + value = "helm_monocle_c_01_orf.m2", }, { fileId = "140226", - value = "helm_monocle_c_01_orm.m2", text = "helm_monocle_c_01_orm.m2", + value = "helm_monocle_c_01_orm.m2", }, { fileId = "140227", - value = "helm_monocle_c_01_scf.m2", text = "helm_monocle_c_01_scf.m2", + value = "helm_monocle_c_01_scf.m2", }, { fileId = "140228", - value = "helm_monocle_c_01_scm.m2", text = "helm_monocle_c_01_scm.m2", + value = "helm_monocle_c_01_scm.m2", }, { fileId = "140229", - value = "helm_monocle_c_01_taf.m2", text = "helm_monocle_c_01_taf.m2", + value = "helm_monocle_c_01_taf.m2", }, { fileId = "140230", - value = "helm_monocle_c_01_tam.m2", text = "helm_monocle_c_01_tam.m2", + value = "helm_monocle_c_01_tam.m2", }, { fileId = "140231", - value = "helm_monocle_c_01_trf.m2", text = "helm_monocle_c_01_trf.m2", + value = "helm_monocle_c_01_trf.m2", }, { fileId = "140232", - value = "helm_monocle_c_01_trm.m2", text = "helm_monocle_c_01_trm.m2", + value = "helm_monocle_c_01_trm.m2", }, { fileId = "140235", - value = "helm_plate_a_01crusader_bef.m2", text = "helm_plate_a_01crusader_bef.m2", + value = "helm_plate_a_01crusader_bef.m2", }, { fileId = "140236", - value = "helm_plate_a_01crusader_bem.m2", text = "helm_plate_a_01crusader_bem.m2", + value = "helm_plate_a_01crusader_bem.m2", }, { fileId = "140237", - value = "helm_plate_a_01crusader_drf.m2", text = "helm_plate_a_01crusader_drf.m2", + value = "helm_plate_a_01crusader_drf.m2", }, { fileId = "140238", - value = "helm_plate_a_01crusader_drm.m2", text = "helm_plate_a_01crusader_drm.m2", + value = "helm_plate_a_01crusader_drm.m2", }, { fileId = "140239", - value = "helm_plate_a_01crusader_dwf.m2", text = "helm_plate_a_01crusader_dwf.m2", + value = "helm_plate_a_01crusader_dwf.m2", }, { fileId = "140240", - value = "helm_plate_a_01crusader_dwm.m2", text = "helm_plate_a_01crusader_dwm.m2", + value = "helm_plate_a_01crusader_dwm.m2", }, { fileId = "140241", - value = "helm_plate_a_01crusader_gnf.m2", text = "helm_plate_a_01crusader_gnf.m2", + value = "helm_plate_a_01crusader_gnf.m2", }, { fileId = "140242", - value = "helm_plate_a_01crusader_gnm.m2", text = "helm_plate_a_01crusader_gnm.m2", + value = "helm_plate_a_01crusader_gnm.m2", }, { fileId = "140243", - value = "helm_plate_a_01crusader_gof.m2", text = "helm_plate_a_01crusader_gof.m2", + value = "helm_plate_a_01crusader_gof.m2", }, { fileId = "140244", - value = "helm_plate_a_01crusader_gom.m2", text = "helm_plate_a_01crusader_gom.m2", + value = "helm_plate_a_01crusader_gom.m2", }, { fileId = "140245", - value = "helm_plate_a_01crusader_huf.m2", text = "helm_plate_a_01crusader_huf.m2", + value = "helm_plate_a_01crusader_huf.m2", }, { fileId = "140246", - value = "helm_plate_a_01crusader_hum.m2", text = "helm_plate_a_01crusader_hum.m2", + value = "helm_plate_a_01crusader_hum.m2", }, { fileId = "140247", - value = "helm_plate_a_01crusader_nif.m2", text = "helm_plate_a_01crusader_nif.m2", + value = "helm_plate_a_01crusader_nif.m2", }, { fileId = "140248", - value = "helm_plate_a_01crusader_nim.m2", text = "helm_plate_a_01crusader_nim.m2", + value = "helm_plate_a_01crusader_nim.m2", }, { fileId = "140249", - value = "helm_plate_a_01crusader_orf.m2", text = "helm_plate_a_01crusader_orf.m2", + value = "helm_plate_a_01crusader_orf.m2", }, { fileId = "140250", - value = "helm_plate_a_01crusader_orm.m2", text = "helm_plate_a_01crusader_orm.m2", + value = "helm_plate_a_01crusader_orm.m2", }, { fileId = "140251", - value = "helm_plate_a_01crusader_scf.m2", text = "helm_plate_a_01crusader_scf.m2", + value = "helm_plate_a_01crusader_scf.m2", }, { fileId = "140252", - value = "helm_plate_a_01crusader_scm.m2", text = "helm_plate_a_01crusader_scm.m2", + value = "helm_plate_a_01crusader_scm.m2", }, { fileId = "140253", - value = "helm_plate_a_01crusader_taf.m2", text = "helm_plate_a_01crusader_taf.m2", + value = "helm_plate_a_01crusader_taf.m2", }, { fileId = "140254", - value = "helm_plate_a_01crusader_tam.m2", text = "helm_plate_a_01crusader_tam.m2", + value = "helm_plate_a_01crusader_tam.m2", }, { fileId = "140255", - value = "helm_plate_a_01crusader_trf.m2", text = "helm_plate_a_01crusader_trf.m2", + value = "helm_plate_a_01crusader_trf.m2", }, { fileId = "140256", - value = "helm_plate_a_01crusader_trm.m2", text = "helm_plate_a_01crusader_trm.m2", + value = "helm_plate_a_01crusader_trm.m2", }, { fileId = "140263", - value = "helm_plate_a_02ironforgeguard_bef.m2", text = "helm_plate_a_02ironforgeguard_bef.m2", + value = "helm_plate_a_02ironforgeguard_bef.m2", }, { fileId = "140264", - value = "helm_plate_a_02ironforgeguard_bem.m2", text = "helm_plate_a_02ironforgeguard_bem.m2", + value = "helm_plate_a_02ironforgeguard_bem.m2", }, { fileId = "140265", - value = "helm_plate_a_02ironforgeguard_drf.m2", text = "helm_plate_a_02ironforgeguard_drf.m2", + value = "helm_plate_a_02ironforgeguard_drf.m2", }, { fileId = "140266", - value = "helm_plate_a_02ironforgeguard_drm.m2", text = "helm_plate_a_02ironforgeguard_drm.m2", + value = "helm_plate_a_02ironforgeguard_drm.m2", }, { fileId = "140267", - value = "helm_plate_a_02ironforgeguard_dwf.m2", text = "helm_plate_a_02ironforgeguard_dwf.m2", + value = "helm_plate_a_02ironforgeguard_dwf.m2", }, { fileId = "140268", - value = "helm_plate_a_02ironforgeguard_dwm.m2", text = "helm_plate_a_02ironforgeguard_dwm.m2", + value = "helm_plate_a_02ironforgeguard_dwm.m2", }, { fileId = "140269", - value = "helm_plate_a_02ironforgeguard_gnf.m2", text = "helm_plate_a_02ironforgeguard_gnf.m2", + value = "helm_plate_a_02ironforgeguard_gnf.m2", }, { fileId = "140270", - value = "helm_plate_a_02ironforgeguard_gnm.m2", text = "helm_plate_a_02ironforgeguard_gnm.m2", + value = "helm_plate_a_02ironforgeguard_gnm.m2", }, { fileId = "140271", - value = "helm_plate_a_02ironforgeguard_gof.m2", text = "helm_plate_a_02ironforgeguard_gof.m2", + value = "helm_plate_a_02ironforgeguard_gof.m2", }, { fileId = "140272", - value = "helm_plate_a_02ironforgeguard_huf.m2", text = "helm_plate_a_02ironforgeguard_huf.m2", + value = "helm_plate_a_02ironforgeguard_huf.m2", }, { fileId = "140273", - value = "helm_plate_a_02ironforgeguard_hum.m2", text = "helm_plate_a_02ironforgeguard_hum.m2", + value = "helm_plate_a_02ironforgeguard_hum.m2", }, { fileId = "140274", - value = "helm_plate_a_02ironforgeguard_nif.m2", text = "helm_plate_a_02ironforgeguard_nif.m2", + value = "helm_plate_a_02ironforgeguard_nif.m2", }, { fileId = "140275", - value = "helm_plate_a_02ironforgeguard_nim.m2", text = "helm_plate_a_02ironforgeguard_nim.m2", + value = "helm_plate_a_02ironforgeguard_nim.m2", }, { fileId = "140276", - value = "helm_plate_a_02ironforgeguard_orf.m2", text = "helm_plate_a_02ironforgeguard_orf.m2", + value = "helm_plate_a_02ironforgeguard_orf.m2", }, { fileId = "140277", - value = "helm_plate_a_02ironforgeguard_orm.m2", text = "helm_plate_a_02ironforgeguard_orm.m2", + value = "helm_plate_a_02ironforgeguard_orm.m2", }, { fileId = "140278", - value = "helm_plate_a_02ironforgeguard_scf.m2", text = "helm_plate_a_02ironforgeguard_scf.m2", + value = "helm_plate_a_02ironforgeguard_scf.m2", }, { fileId = "140279", - value = "helm_plate_a_02ironforgeguard_scm.m2", text = "helm_plate_a_02ironforgeguard_scm.m2", + value = "helm_plate_a_02ironforgeguard_scm.m2", }, { fileId = "140280", - value = "helm_plate_a_02ironforgeguard_taf.m2", text = "helm_plate_a_02ironforgeguard_taf.m2", + value = "helm_plate_a_02ironforgeguard_taf.m2", }, { fileId = "140281", - value = "helm_plate_a_02ironforgeguard_tam.m2", text = "helm_plate_a_02ironforgeguard_tam.m2", + value = "helm_plate_a_02ironforgeguard_tam.m2", }, { fileId = "140282", - value = "helm_plate_a_02ironforgeguard_trf.m2", text = "helm_plate_a_02ironforgeguard_trf.m2", + value = "helm_plate_a_02ironforgeguard_trf.m2", }, { fileId = "140283", - value = "helm_plate_a_02ironforgeguard_trm.m2", text = "helm_plate_a_02ironforgeguard_trm.m2", + value = "helm_plate_a_02ironforgeguard_trm.m2", }, { fileId = "140285", - value = "helm_plate_ahnqiraj_a_01_bef.m2", text = "helm_plate_ahnqiraj_a_01_bef.m2", + value = "helm_plate_ahnqiraj_a_01_bef.m2", }, { fileId = "140286", - value = "helm_plate_ahnqiraj_a_01_bem.m2", text = "helm_plate_ahnqiraj_a_01_bem.m2", + value = "helm_plate_ahnqiraj_a_01_bem.m2", }, { fileId = "140287", - value = "helm_plate_ahnqiraj_a_01_drf.m2", text = "helm_plate_ahnqiraj_a_01_drf.m2", + value = "helm_plate_ahnqiraj_a_01_drf.m2", }, { fileId = "140288", - value = "helm_plate_ahnqiraj_a_01_drm.m2", text = "helm_plate_ahnqiraj_a_01_drm.m2", + value = "helm_plate_ahnqiraj_a_01_drm.m2", }, { fileId = "140289", - value = "helm_plate_ahnqiraj_a_01_dwf.m2", text = "helm_plate_ahnqiraj_a_01_dwf.m2", + value = "helm_plate_ahnqiraj_a_01_dwf.m2", }, { fileId = "140290", - value = "helm_plate_ahnqiraj_a_01_dwm.m2", text = "helm_plate_ahnqiraj_a_01_dwm.m2", + value = "helm_plate_ahnqiraj_a_01_dwm.m2", }, { fileId = "140291", - value = "helm_plate_ahnqiraj_a_01_gnf.m2", text = "helm_plate_ahnqiraj_a_01_gnf.m2", + value = "helm_plate_ahnqiraj_a_01_gnf.m2", }, { fileId = "140292", - value = "helm_plate_ahnqiraj_a_01_gnm.m2", text = "helm_plate_ahnqiraj_a_01_gnm.m2", + value = "helm_plate_ahnqiraj_a_01_gnm.m2", }, { fileId = "140293", - value = "helm_plate_ahnqiraj_a_01_gof.m2", text = "helm_plate_ahnqiraj_a_01_gof.m2", + value = "helm_plate_ahnqiraj_a_01_gof.m2", }, { fileId = "140294", - value = "helm_plate_ahnqiraj_a_01_gom.m2", text = "helm_plate_ahnqiraj_a_01_gom.m2", + value = "helm_plate_ahnqiraj_a_01_gom.m2", }, { fileId = "140295", - value = "helm_plate_ahnqiraj_a_01_huf.m2", text = "helm_plate_ahnqiraj_a_01_huf.m2", + value = "helm_plate_ahnqiraj_a_01_huf.m2", }, { fileId = "140296", - value = "helm_plate_ahnqiraj_a_01_hum.m2", text = "helm_plate_ahnqiraj_a_01_hum.m2", + value = "helm_plate_ahnqiraj_a_01_hum.m2", }, { fileId = "140297", - value = "helm_plate_ahnqiraj_a_01_nif.m2", text = "helm_plate_ahnqiraj_a_01_nif.m2", + value = "helm_plate_ahnqiraj_a_01_nif.m2", }, { fileId = "140298", - value = "helm_plate_ahnqiraj_a_01_nim.m2", text = "helm_plate_ahnqiraj_a_01_nim.m2", + value = "helm_plate_ahnqiraj_a_01_nim.m2", }, { fileId = "140299", - value = "helm_plate_ahnqiraj_a_01_orf.m2", text = "helm_plate_ahnqiraj_a_01_orf.m2", + value = "helm_plate_ahnqiraj_a_01_orf.m2", }, { fileId = "140300", - value = "helm_plate_ahnqiraj_a_01_orm.m2", text = "helm_plate_ahnqiraj_a_01_orm.m2", + value = "helm_plate_ahnqiraj_a_01_orm.m2", }, { fileId = "140301", - value = "helm_plate_ahnqiraj_a_01_scf.m2", text = "helm_plate_ahnqiraj_a_01_scf.m2", + value = "helm_plate_ahnqiraj_a_01_scf.m2", }, { fileId = "140302", - value = "helm_plate_ahnqiraj_a_01_scm.m2", text = "helm_plate_ahnqiraj_a_01_scm.m2", + value = "helm_plate_ahnqiraj_a_01_scm.m2", }, { fileId = "140303", - value = "helm_plate_ahnqiraj_a_01_taf.m2", text = "helm_plate_ahnqiraj_a_01_taf.m2", + value = "helm_plate_ahnqiraj_a_01_taf.m2", }, { fileId = "140304", - value = "helm_plate_ahnqiraj_a_01_tam.m2", text = "helm_plate_ahnqiraj_a_01_tam.m2", + value = "helm_plate_ahnqiraj_a_01_tam.m2", }, { fileId = "140305", - value = "helm_plate_ahnqiraj_a_01_trf.m2", text = "helm_plate_ahnqiraj_a_01_trf.m2", + value = "helm_plate_ahnqiraj_a_01_trf.m2", }, { fileId = "140306", - value = "helm_plate_ahnqiraj_a_01_trm.m2", text = "helm_plate_ahnqiraj_a_01_trm.m2", + value = "helm_plate_ahnqiraj_a_01_trm.m2", }, { fileId = "140315", - value = "helm_plate_b_01stormwind_bef.m2", text = "helm_plate_b_01stormwind_bef.m2", + value = "helm_plate_b_01stormwind_bef.m2", }, { fileId = "140316", - value = "helm_plate_b_01stormwind_bem.m2", text = "helm_plate_b_01stormwind_bem.m2", + value = "helm_plate_b_01stormwind_bem.m2", }, { fileId = "140317", - value = "helm_plate_b_01stormwind_drf.m2", text = "helm_plate_b_01stormwind_drf.m2", + value = "helm_plate_b_01stormwind_drf.m2", }, { fileId = "140318", - value = "helm_plate_b_01stormwind_drm.m2", text = "helm_plate_b_01stormwind_drm.m2", + value = "helm_plate_b_01stormwind_drm.m2", }, { fileId = "140319", - value = "helm_plate_b_01stormwind_dwf.m2", text = "helm_plate_b_01stormwind_dwf.m2", + value = "helm_plate_b_01stormwind_dwf.m2", }, { fileId = "140320", - value = "helm_plate_b_01stormwind_dwm.m2", text = "helm_plate_b_01stormwind_dwm.m2", + value = "helm_plate_b_01stormwind_dwm.m2", }, { fileId = "140321", - value = "helm_plate_b_01stormwind_gnf.m2", text = "helm_plate_b_01stormwind_gnf.m2", + value = "helm_plate_b_01stormwind_gnf.m2", }, { fileId = "140322", - value = "helm_plate_b_01stormwind_gnm.m2", text = "helm_plate_b_01stormwind_gnm.m2", + value = "helm_plate_b_01stormwind_gnm.m2", }, { fileId = "140323", - value = "helm_plate_b_01stormwind_gof.m2", text = "helm_plate_b_01stormwind_gof.m2", + value = "helm_plate_b_01stormwind_gof.m2", }, { fileId = "140324", - value = "helm_plate_b_01stormwind_gom.m2", text = "helm_plate_b_01stormwind_gom.m2", + value = "helm_plate_b_01stormwind_gom.m2", }, { fileId = "140325", - value = "helm_plate_b_01stormwind_huf.m2", text = "helm_plate_b_01stormwind_huf.m2", + value = "helm_plate_b_01stormwind_huf.m2", }, { fileId = "140326", - value = "helm_plate_b_01stormwind_hum.m2", text = "helm_plate_b_01stormwind_hum.m2", + value = "helm_plate_b_01stormwind_hum.m2", }, { fileId = "140327", - value = "helm_plate_b_01stormwind_nif.m2", text = "helm_plate_b_01stormwind_nif.m2", + value = "helm_plate_b_01stormwind_nif.m2", }, { fileId = "140328", - value = "helm_plate_b_01stormwind_nim.m2", text = "helm_plate_b_01stormwind_nim.m2", + value = "helm_plate_b_01stormwind_nim.m2", }, { fileId = "140329", - value = "helm_plate_b_01stormwind_orf.m2", text = "helm_plate_b_01stormwind_orf.m2", + value = "helm_plate_b_01stormwind_orf.m2", }, { fileId = "140330", - value = "helm_plate_b_01stormwind_orm.m2", text = "helm_plate_b_01stormwind_orm.m2", + value = "helm_plate_b_01stormwind_orm.m2", }, { fileId = "140331", - value = "helm_plate_b_01stormwind_scf.m2", text = "helm_plate_b_01stormwind_scf.m2", + value = "helm_plate_b_01stormwind_scf.m2", }, { fileId = "140332", - value = "helm_plate_b_01stormwind_scm.m2", text = "helm_plate_b_01stormwind_scm.m2", + value = "helm_plate_b_01stormwind_scm.m2", }, { fileId = "140333", - value = "helm_plate_b_01stormwind_taf.m2", text = "helm_plate_b_01stormwind_taf.m2", + value = "helm_plate_b_01stormwind_taf.m2", }, { fileId = "140334", - value = "helm_plate_b_01stormwind_tam.m2", text = "helm_plate_b_01stormwind_tam.m2", + value = "helm_plate_b_01stormwind_tam.m2", }, { fileId = "140335", - value = "helm_plate_b_01stormwind_trf.m2", text = "helm_plate_b_01stormwind_trf.m2", + value = "helm_plate_b_01stormwind_trf.m2", }, { fileId = "140336", - value = "helm_plate_b_01stormwind_trm.m2", text = "helm_plate_b_01stormwind_trm.m2", + value = "helm_plate_b_01stormwind_trm.m2", }, { fileId = "140340", - value = "helm_plate_b_03sentinel_bef.m2", text = "helm_plate_b_03sentinel_bef.m2", + value = "helm_plate_b_03sentinel_bef.m2", }, { fileId = "140341", - value = "helm_plate_b_03sentinel_bem.m2", text = "helm_plate_b_03sentinel_bem.m2", + value = "helm_plate_b_03sentinel_bem.m2", }, { fileId = "140342", - value = "helm_plate_b_03sentinel_drf.m2", text = "helm_plate_b_03sentinel_drf.m2", + value = "helm_plate_b_03sentinel_drf.m2", }, { fileId = "140343", - value = "helm_plate_b_03sentinel_drm.m2", text = "helm_plate_b_03sentinel_drm.m2", + value = "helm_plate_b_03sentinel_drm.m2", }, { fileId = "140344", - value = "helm_plate_b_03sentinel_dwf.m2", text = "helm_plate_b_03sentinel_dwf.m2", + value = "helm_plate_b_03sentinel_dwf.m2", }, { fileId = "140345", - value = "helm_plate_b_03sentinel_dwm.m2", text = "helm_plate_b_03sentinel_dwm.m2", + value = "helm_plate_b_03sentinel_dwm.m2", }, { fileId = "140346", - value = "helm_plate_b_03sentinel_gnf.m2", text = "helm_plate_b_03sentinel_gnf.m2", + value = "helm_plate_b_03sentinel_gnf.m2", }, { fileId = "140347", - value = "helm_plate_b_03sentinel_gnm.m2", text = "helm_plate_b_03sentinel_gnm.m2", + value = "helm_plate_b_03sentinel_gnm.m2", }, { fileId = "140348", - value = "helm_plate_b_03sentinel_gof.m2", text = "helm_plate_b_03sentinel_gof.m2", + value = "helm_plate_b_03sentinel_gof.m2", }, { fileId = "140349", - value = "helm_plate_b_03sentinel_gom.m2", text = "helm_plate_b_03sentinel_gom.m2", + value = "helm_plate_b_03sentinel_gom.m2", }, { fileId = "140350", - value = "helm_plate_b_03sentinel_huf.m2", text = "helm_plate_b_03sentinel_huf.m2", + value = "helm_plate_b_03sentinel_huf.m2", }, { fileId = "140351", - value = "helm_plate_b_03sentinel_hum.m2", text = "helm_plate_b_03sentinel_hum.m2", + value = "helm_plate_b_03sentinel_hum.m2", }, { fileId = "140352", - value = "helm_plate_b_03sentinel_nif.m2", text = "helm_plate_b_03sentinel_nif.m2", + value = "helm_plate_b_03sentinel_nif.m2", }, { fileId = "140353", - value = "helm_plate_b_03sentinel_nim.m2", text = "helm_plate_b_03sentinel_nim.m2", + value = "helm_plate_b_03sentinel_nim.m2", }, { fileId = "140354", - value = "helm_plate_b_03sentinel_orf.m2", text = "helm_plate_b_03sentinel_orf.m2", + value = "helm_plate_b_03sentinel_orf.m2", }, { fileId = "140355", - value = "helm_plate_b_03sentinel_orm.m2", text = "helm_plate_b_03sentinel_orm.m2", + value = "helm_plate_b_03sentinel_orm.m2", }, { fileId = "140356", - value = "helm_plate_b_03sentinel_scf.m2", text = "helm_plate_b_03sentinel_scf.m2", + value = "helm_plate_b_03sentinel_scf.m2", }, { fileId = "140357", - value = "helm_plate_b_03sentinel_scm.m2", text = "helm_plate_b_03sentinel_scm.m2", + value = "helm_plate_b_03sentinel_scm.m2", }, { fileId = "140358", - value = "helm_plate_b_03sentinel_taf.m2", text = "helm_plate_b_03sentinel_taf.m2", + value = "helm_plate_b_03sentinel_taf.m2", }, { fileId = "140359", - value = "helm_plate_b_03sentinel_tam.m2", text = "helm_plate_b_03sentinel_tam.m2", + value = "helm_plate_b_03sentinel_tam.m2", }, { fileId = "140360", - value = "helm_plate_b_03sentinel_trf.m2", text = "helm_plate_b_03sentinel_trf.m2", + value = "helm_plate_b_03sentinel_trf.m2", }, { fileId = "140361", - value = "helm_plate_b_03sentinel_trm.m2", text = "helm_plate_b_03sentinel_trm.m2", + value = "helm_plate_b_03sentinel_trm.m2", }, { fileId = "140362", - value = "helm_plate_b_04_bef.m2", text = "helm_plate_b_04_bef.m2", + value = "helm_plate_b_04_bef.m2", }, { fileId = "140363", - value = "helm_plate_b_04_bem.m2", text = "helm_plate_b_04_bem.m2", + value = "helm_plate_b_04_bem.m2", }, { fileId = "140364", - value = "helm_plate_b_04_drf.m2", text = "helm_plate_b_04_drf.m2", + value = "helm_plate_b_04_drf.m2", }, { fileId = "140365", - value = "helm_plate_b_04_drm.m2", text = "helm_plate_b_04_drm.m2", + value = "helm_plate_b_04_drm.m2", }, { fileId = "140366", - value = "helm_plate_b_04_dwf.m2", text = "helm_plate_b_04_dwf.m2", + value = "helm_plate_b_04_dwf.m2", }, { fileId = "140367", - value = "helm_plate_b_04_dwm.m2", text = "helm_plate_b_04_dwm.m2", + value = "helm_plate_b_04_dwm.m2", }, { fileId = "140368", - value = "helm_plate_b_04_gnf.m2", text = "helm_plate_b_04_gnf.m2", + value = "helm_plate_b_04_gnf.m2", }, { fileId = "140369", - value = "helm_plate_b_04_gnm.m2", text = "helm_plate_b_04_gnm.m2", + value = "helm_plate_b_04_gnm.m2", }, { fileId = "140370", - value = "helm_plate_b_04_gof.m2", text = "helm_plate_b_04_gof.m2", + value = "helm_plate_b_04_gof.m2", }, { fileId = "140371", - value = "helm_plate_b_04_gom.m2", text = "helm_plate_b_04_gom.m2", + value = "helm_plate_b_04_gom.m2", }, { fileId = "140372", - value = "helm_plate_b_04_huf.m2", text = "helm_plate_b_04_huf.m2", + value = "helm_plate_b_04_huf.m2", }, { fileId = "140373", - value = "helm_plate_b_04_hum.m2", text = "helm_plate_b_04_hum.m2", + value = "helm_plate_b_04_hum.m2", }, { fileId = "140374", - value = "helm_plate_b_04_nif.m2", text = "helm_plate_b_04_nif.m2", + value = "helm_plate_b_04_nif.m2", }, { fileId = "140375", - value = "helm_plate_b_04_nim.m2", text = "helm_plate_b_04_nim.m2", + value = "helm_plate_b_04_nim.m2", }, { fileId = "140376", - value = "helm_plate_b_04_orf.m2", text = "helm_plate_b_04_orf.m2", + value = "helm_plate_b_04_orf.m2", }, { fileId = "140377", - value = "helm_plate_b_04_orm.m2", text = "helm_plate_b_04_orm.m2", + value = "helm_plate_b_04_orm.m2", }, { fileId = "140378", - value = "helm_plate_b_04_scf.m2", text = "helm_plate_b_04_scf.m2", + value = "helm_plate_b_04_scf.m2", }, { fileId = "140379", - value = "helm_plate_b_04_scm.m2", text = "helm_plate_b_04_scm.m2", + value = "helm_plate_b_04_scm.m2", }, { fileId = "140380", - value = "helm_plate_b_04_taf.m2", text = "helm_plate_b_04_taf.m2", + value = "helm_plate_b_04_taf.m2", }, { fileId = "140381", - value = "helm_plate_b_04_tam.m2", text = "helm_plate_b_04_tam.m2", + value = "helm_plate_b_04_tam.m2", }, { fileId = "140382", - value = "helm_plate_b_04_trf.m2", text = "helm_plate_b_04_trf.m2", + value = "helm_plate_b_04_trf.m2", }, { fileId = "140383", - value = "helm_plate_b_04_trm.m2", text = "helm_plate_b_04_trm.m2", + value = "helm_plate_b_04_trm.m2", }, { fileId = "140387", - value = "helm_plate_bloodknight_d_02_bef.m2", text = "helm_plate_bloodknight_d_02_bef.m2", + value = "helm_plate_bloodknight_d_02_bef.m2", }, { fileId = "140388", - value = "helm_plate_bloodknight_d_02_bem.m2", text = "helm_plate_bloodknight_d_02_bem.m2", + value = "helm_plate_bloodknight_d_02_bem.m2", }, { fileId = "140389", - value = "helm_plate_bloodknight_d_02_drf.m2", text = "helm_plate_bloodknight_d_02_drf.m2", + value = "helm_plate_bloodknight_d_02_drf.m2", }, { fileId = "140390", - value = "helm_plate_bloodknight_d_02_drm.m2", text = "helm_plate_bloodknight_d_02_drm.m2", + value = "helm_plate_bloodknight_d_02_drm.m2", }, { fileId = "140391", - value = "helm_plate_bloodknight_d_02_dwf.m2", text = "helm_plate_bloodknight_d_02_dwf.m2", + value = "helm_plate_bloodknight_d_02_dwf.m2", }, { fileId = "140392", - value = "helm_plate_bloodknight_d_02_dwm.m2", text = "helm_plate_bloodknight_d_02_dwm.m2", + value = "helm_plate_bloodknight_d_02_dwm.m2", }, { fileId = "140393", - value = "helm_plate_bloodknight_d_02_gnf.m2", text = "helm_plate_bloodknight_d_02_gnf.m2", + value = "helm_plate_bloodknight_d_02_gnf.m2", }, { fileId = "140394", - value = "helm_plate_bloodknight_d_02_gnm.m2", text = "helm_plate_bloodknight_d_02_gnm.m2", + value = "helm_plate_bloodknight_d_02_gnm.m2", }, { fileId = "140395", - value = "helm_plate_bloodknight_d_02_gof.m2", text = "helm_plate_bloodknight_d_02_gof.m2", + value = "helm_plate_bloodknight_d_02_gof.m2", }, { fileId = "140396", - value = "helm_plate_bloodknight_d_02_gom.m2", text = "helm_plate_bloodknight_d_02_gom.m2", + value = "helm_plate_bloodknight_d_02_gom.m2", }, { fileId = "140397", - value = "helm_plate_bloodknight_d_02_huf.m2", text = "helm_plate_bloodknight_d_02_huf.m2", + value = "helm_plate_bloodknight_d_02_huf.m2", }, { fileId = "140398", - value = "helm_plate_bloodknight_d_02_hum.m2", text = "helm_plate_bloodknight_d_02_hum.m2", + value = "helm_plate_bloodknight_d_02_hum.m2", }, { fileId = "140399", - value = "helm_plate_bloodknight_d_02_nif.m2", text = "helm_plate_bloodknight_d_02_nif.m2", + value = "helm_plate_bloodknight_d_02_nif.m2", }, { fileId = "140400", - value = "helm_plate_bloodknight_d_02_nim.m2", text = "helm_plate_bloodknight_d_02_nim.m2", + value = "helm_plate_bloodknight_d_02_nim.m2", }, { fileId = "140401", - value = "helm_plate_bloodknight_d_02_orf.m2", text = "helm_plate_bloodknight_d_02_orf.m2", + value = "helm_plate_bloodknight_d_02_orf.m2", }, { fileId = "140402", - value = "helm_plate_bloodknight_d_02_orm.m2", text = "helm_plate_bloodknight_d_02_orm.m2", + value = "helm_plate_bloodknight_d_02_orm.m2", }, { fileId = "140403", - value = "helm_plate_bloodknight_d_02_scf.m2", text = "helm_plate_bloodknight_d_02_scf.m2", + value = "helm_plate_bloodknight_d_02_scf.m2", }, { fileId = "140404", - value = "helm_plate_bloodknight_d_02_scm.m2", text = "helm_plate_bloodknight_d_02_scm.m2", + value = "helm_plate_bloodknight_d_02_scm.m2", }, { fileId = "140405", - value = "helm_plate_bloodknight_d_02_taf.m2", text = "helm_plate_bloodknight_d_02_taf.m2", + value = "helm_plate_bloodknight_d_02_taf.m2", }, { fileId = "140406", - value = "helm_plate_bloodknight_d_02_tam.m2", text = "helm_plate_bloodknight_d_02_tam.m2", + value = "helm_plate_bloodknight_d_02_tam.m2", }, { fileId = "140407", - value = "helm_plate_bloodknight_d_02_trf.m2", text = "helm_plate_bloodknight_d_02_trf.m2", + value = "helm_plate_bloodknight_d_02_trf.m2", }, { fileId = "140408", - value = "helm_plate_bloodknight_d_02_trm.m2", text = "helm_plate_bloodknight_d_02_trm.m2", + value = "helm_plate_bloodknight_d_02_trm.m2", }, { fileId = "140409", - value = "helm_plate_d_01_bef.m2", text = "helm_plate_d_01_bef.m2", + value = "helm_plate_d_01_bef.m2", }, { fileId = "140410", - value = "helm_plate_d_01_bem.m2", text = "helm_plate_d_01_bem.m2", + value = "helm_plate_d_01_bem.m2", }, { fileId = "140411", - value = "helm_plate_d_01_drf.m2", text = "helm_plate_d_01_drf.m2", + value = "helm_plate_d_01_drf.m2", }, { fileId = "140412", - value = "helm_plate_d_01_drm.m2", text = "helm_plate_d_01_drm.m2", + value = "helm_plate_d_01_drm.m2", }, { fileId = "140413", - value = "helm_plate_d_01_dwf.m2", text = "helm_plate_d_01_dwf.m2", + value = "helm_plate_d_01_dwf.m2", }, { fileId = "140414", - value = "helm_plate_d_01_dwm.m2", text = "helm_plate_d_01_dwm.m2", + value = "helm_plate_d_01_dwm.m2", }, { fileId = "140415", - value = "helm_plate_d_01_gnf.m2", text = "helm_plate_d_01_gnf.m2", + value = "helm_plate_d_01_gnf.m2", }, { fileId = "140416", - value = "helm_plate_d_01_gnm.m2", text = "helm_plate_d_01_gnm.m2", + value = "helm_plate_d_01_gnm.m2", }, { fileId = "140417", - value = "helm_plate_d_01_gof.m2", text = "helm_plate_d_01_gof.m2", + value = "helm_plate_d_01_gof.m2", }, { fileId = "140418", - value = "helm_plate_d_01_gom.m2", text = "helm_plate_d_01_gom.m2", + value = "helm_plate_d_01_gom.m2", }, { fileId = "140419", - value = "helm_plate_d_01_huf.m2", text = "helm_plate_d_01_huf.m2", + value = "helm_plate_d_01_huf.m2", }, { fileId = "140420", - value = "helm_plate_d_01_hum.m2", text = "helm_plate_d_01_hum.m2", + value = "helm_plate_d_01_hum.m2", }, { fileId = "140421", - value = "helm_plate_d_01_nif.m2", text = "helm_plate_d_01_nif.m2", + value = "helm_plate_d_01_nif.m2", }, { fileId = "140422", - value = "helm_plate_d_01_nim.m2", text = "helm_plate_d_01_nim.m2", + value = "helm_plate_d_01_nim.m2", }, { fileId = "140423", - value = "helm_plate_d_01_orf.m2", text = "helm_plate_d_01_orf.m2", + value = "helm_plate_d_01_orf.m2", }, { fileId = "140424", - value = "helm_plate_d_01_orm.m2", text = "helm_plate_d_01_orm.m2", + value = "helm_plate_d_01_orm.m2", }, { fileId = "140425", - value = "helm_plate_d_01_scf.m2", text = "helm_plate_d_01_scf.m2", + value = "helm_plate_d_01_scf.m2", }, { fileId = "140426", - value = "helm_plate_d_01_scm.m2", text = "helm_plate_d_01_scm.m2", + value = "helm_plate_d_01_scm.m2", }, { fileId = "140427", - value = "helm_plate_d_01_taf.m2", text = "helm_plate_d_01_taf.m2", + value = "helm_plate_d_01_taf.m2", }, { fileId = "140428", - value = "helm_plate_d_01_tam.m2", text = "helm_plate_d_01_tam.m2", + value = "helm_plate_d_01_tam.m2", }, { fileId = "140429", - value = "helm_plate_d_01_trf.m2", text = "helm_plate_d_01_trf.m2", + value = "helm_plate_d_01_trf.m2", }, { fileId = "140430", - value = "helm_plate_d_01_trm.m2", text = "helm_plate_d_01_trm.m2", + value = "helm_plate_d_01_trm.m2", }, { fileId = "140432", - value = "helm_plate_d_02_bef.m2", text = "helm_plate_d_02_bef.m2", + value = "helm_plate_d_02_bef.m2", }, { fileId = "140433", - value = "helm_plate_d_02_bem.m2", text = "helm_plate_d_02_bem.m2", + value = "helm_plate_d_02_bem.m2", }, { fileId = "140434", - value = "helm_plate_d_02_drf.m2", text = "helm_plate_d_02_drf.m2", + value = "helm_plate_d_02_drf.m2", }, { fileId = "140435", - value = "helm_plate_d_02_drm.m2", text = "helm_plate_d_02_drm.m2", + value = "helm_plate_d_02_drm.m2", }, { fileId = "140436", - value = "helm_plate_d_02_dwf.m2", text = "helm_plate_d_02_dwf.m2", + value = "helm_plate_d_02_dwf.m2", }, { fileId = "140437", - value = "helm_plate_d_02_dwm.m2", text = "helm_plate_d_02_dwm.m2", + value = "helm_plate_d_02_dwm.m2", }, { fileId = "140438", - value = "helm_plate_d_02_gnf.m2", text = "helm_plate_d_02_gnf.m2", + value = "helm_plate_d_02_gnf.m2", }, { fileId = "140439", - value = "helm_plate_d_02_gnm.m2", text = "helm_plate_d_02_gnm.m2", + value = "helm_plate_d_02_gnm.m2", }, { fileId = "140440", - value = "helm_plate_d_02_gof.m2", text = "helm_plate_d_02_gof.m2", + value = "helm_plate_d_02_gof.m2", }, { fileId = "140441", - value = "helm_plate_d_02_gom.m2", text = "helm_plate_d_02_gom.m2", + value = "helm_plate_d_02_gom.m2", }, { fileId = "140442", - value = "helm_plate_d_02_huf.m2", text = "helm_plate_d_02_huf.m2", + value = "helm_plate_d_02_huf.m2", }, { fileId = "140443", - value = "helm_plate_d_02_hum.m2", text = "helm_plate_d_02_hum.m2", + value = "helm_plate_d_02_hum.m2", }, { fileId = "140444", - value = "helm_plate_d_02_nif.m2", text = "helm_plate_d_02_nif.m2", + value = "helm_plate_d_02_nif.m2", }, { fileId = "140445", - value = "helm_plate_d_02_nim.m2", text = "helm_plate_d_02_nim.m2", + value = "helm_plate_d_02_nim.m2", }, { fileId = "140446", - value = "helm_plate_d_02_orf.m2", text = "helm_plate_d_02_orf.m2", + value = "helm_plate_d_02_orf.m2", }, { fileId = "140447", - value = "helm_plate_d_02_orm.m2", text = "helm_plate_d_02_orm.m2", + value = "helm_plate_d_02_orm.m2", }, { fileId = "140448", - value = "helm_plate_d_02_scf.m2", text = "helm_plate_d_02_scf.m2", + value = "helm_plate_d_02_scf.m2", }, { fileId = "140449", - value = "helm_plate_d_02_scm.m2", text = "helm_plate_d_02_scm.m2", + value = "helm_plate_d_02_scm.m2", }, { fileId = "140450", - value = "helm_plate_d_02_taf.m2", text = "helm_plate_d_02_taf.m2", + value = "helm_plate_d_02_taf.m2", }, { fileId = "140451", - value = "helm_plate_d_02_tam.m2", text = "helm_plate_d_02_tam.m2", + value = "helm_plate_d_02_tam.m2", }, { fileId = "140452", - value = "helm_plate_d_02_trf.m2", text = "helm_plate_d_02_trf.m2", + value = "helm_plate_d_02_trf.m2", }, { fileId = "140453", - value = "helm_plate_d_02_trm.m2", text = "helm_plate_d_02_trm.m2", + value = "helm_plate_d_02_trm.m2", }, { fileId = "140456", - value = "helm_plate_d_03_bef.m2", text = "helm_plate_d_03_bef.m2", + value = "helm_plate_d_03_bef.m2", }, { fileId = "140457", - value = "helm_plate_d_03_bem.m2", text = "helm_plate_d_03_bem.m2", + value = "helm_plate_d_03_bem.m2", }, { fileId = "140458", - value = "helm_plate_d_03_drf.m2", text = "helm_plate_d_03_drf.m2", + value = "helm_plate_d_03_drf.m2", }, { fileId = "140459", - value = "helm_plate_d_03_drm.m2", text = "helm_plate_d_03_drm.m2", + value = "helm_plate_d_03_drm.m2", }, { fileId = "140460", - value = "helm_plate_d_03_dwf.m2", text = "helm_plate_d_03_dwf.m2", + value = "helm_plate_d_03_dwf.m2", }, { fileId = "140461", - value = "helm_plate_d_03_dwm.m2", text = "helm_plate_d_03_dwm.m2", + value = "helm_plate_d_03_dwm.m2", }, { fileId = "140462", - value = "helm_plate_d_03_gnf.m2", text = "helm_plate_d_03_gnf.m2", + value = "helm_plate_d_03_gnf.m2", }, { fileId = "140463", - value = "helm_plate_d_03_gnm.m2", text = "helm_plate_d_03_gnm.m2", + value = "helm_plate_d_03_gnm.m2", }, { fileId = "140464", - value = "helm_plate_d_03_gof.m2", text = "helm_plate_d_03_gof.m2", + value = "helm_plate_d_03_gof.m2", }, { fileId = "140465", - value = "helm_plate_d_03_gom.m2", text = "helm_plate_d_03_gom.m2", + value = "helm_plate_d_03_gom.m2", }, { fileId = "140466", - value = "helm_plate_d_03_huf.m2", text = "helm_plate_d_03_huf.m2", + value = "helm_plate_d_03_huf.m2", }, { fileId = "140467", - value = "helm_plate_d_03_hum.m2", text = "helm_plate_d_03_hum.m2", + value = "helm_plate_d_03_hum.m2", }, { fileId = "140468", - value = "helm_plate_d_03_nif.m2", text = "helm_plate_d_03_nif.m2", + value = "helm_plate_d_03_nif.m2", }, { fileId = "140469", - value = "helm_plate_d_03_nim.m2", text = "helm_plate_d_03_nim.m2", + value = "helm_plate_d_03_nim.m2", }, { fileId = "140470", - value = "helm_plate_d_03_orf.m2", text = "helm_plate_d_03_orf.m2", + value = "helm_plate_d_03_orf.m2", }, { fileId = "140471", - value = "helm_plate_d_03_orm.m2", text = "helm_plate_d_03_orm.m2", + value = "helm_plate_d_03_orm.m2", }, { fileId = "140472", - value = "helm_plate_d_03_scf.m2", text = "helm_plate_d_03_scf.m2", + value = "helm_plate_d_03_scf.m2", }, { fileId = "140473", - value = "helm_plate_d_03_scm.m2", text = "helm_plate_d_03_scm.m2", + value = "helm_plate_d_03_scm.m2", }, { fileId = "140474", - value = "helm_plate_d_03_taf.m2", text = "helm_plate_d_03_taf.m2", + value = "helm_plate_d_03_taf.m2", }, { fileId = "140475", - value = "helm_plate_d_03_tam.m2", text = "helm_plate_d_03_tam.m2", + value = "helm_plate_d_03_tam.m2", }, { fileId = "140476", - value = "helm_plate_d_03_trf.m2", text = "helm_plate_d_03_trf.m2", + value = "helm_plate_d_03_trf.m2", }, { fileId = "140477", - value = "helm_plate_d_03_trm.m2", text = "helm_plate_d_03_trm.m2", + value = "helm_plate_d_03_trm.m2", }, { fileId = "140493", - value = "helm_plate_d_04_bef.m2", text = "helm_plate_d_04_bef.m2", + value = "helm_plate_d_04_bef.m2", }, { fileId = "140494", - value = "helm_plate_d_04_bem.m2", text = "helm_plate_d_04_bem.m2", + value = "helm_plate_d_04_bem.m2", }, { fileId = "140495", - value = "helm_plate_d_04_drf.m2", text = "helm_plate_d_04_drf.m2", + value = "helm_plate_d_04_drf.m2", }, { fileId = "140496", - value = "helm_plate_d_04_drm.m2", text = "helm_plate_d_04_drm.m2", + value = "helm_plate_d_04_drm.m2", }, { fileId = "140497", - value = "helm_plate_d_04_dwf.m2", text = "helm_plate_d_04_dwf.m2", + value = "helm_plate_d_04_dwf.m2", }, { fileId = "140498", - value = "helm_plate_d_04_dwm.m2", text = "helm_plate_d_04_dwm.m2", + value = "helm_plate_d_04_dwm.m2", }, { fileId = "140499", - value = "helm_plate_d_04_gnf.m2", text = "helm_plate_d_04_gnf.m2", + value = "helm_plate_d_04_gnf.m2", }, { fileId = "140500", - value = "helm_plate_d_04_gnm.m2", text = "helm_plate_d_04_gnm.m2", + value = "helm_plate_d_04_gnm.m2", }, { fileId = "140501", - value = "helm_plate_d_04_gof.m2", text = "helm_plate_d_04_gof.m2", + value = "helm_plate_d_04_gof.m2", }, { fileId = "140502", - value = "helm_plate_d_04_gom.m2", text = "helm_plate_d_04_gom.m2", + value = "helm_plate_d_04_gom.m2", }, { fileId = "140503", - value = "helm_plate_d_04_huf.m2", text = "helm_plate_d_04_huf.m2", + value = "helm_plate_d_04_huf.m2", }, { fileId = "140504", - value = "helm_plate_d_04_hum.m2", text = "helm_plate_d_04_hum.m2", + value = "helm_plate_d_04_hum.m2", }, { fileId = "140505", - value = "helm_plate_d_04_nif.m2", text = "helm_plate_d_04_nif.m2", + value = "helm_plate_d_04_nif.m2", }, { fileId = "140506", - value = "helm_plate_d_04_nim.m2", text = "helm_plate_d_04_nim.m2", + value = "helm_plate_d_04_nim.m2", }, { fileId = "140507", - value = "helm_plate_d_04_orf.m2", text = "helm_plate_d_04_orf.m2", + value = "helm_plate_d_04_orf.m2", }, { fileId = "140508", - value = "helm_plate_d_04_orm.m2", text = "helm_plate_d_04_orm.m2", + value = "helm_plate_d_04_orm.m2", }, { fileId = "140509", - value = "helm_plate_d_04_scf.m2", text = "helm_plate_d_04_scf.m2", + value = "helm_plate_d_04_scf.m2", }, { fileId = "140510", - value = "helm_plate_d_04_scm.m2", text = "helm_plate_d_04_scm.m2", + value = "helm_plate_d_04_scm.m2", }, { fileId = "140511", - value = "helm_plate_d_04_taf.m2", text = "helm_plate_d_04_taf.m2", + value = "helm_plate_d_04_taf.m2", }, { fileId = "140512", - value = "helm_plate_d_04_tam.m2", text = "helm_plate_d_04_tam.m2", + value = "helm_plate_d_04_tam.m2", }, { fileId = "140513", - value = "helm_plate_d_04_trf.m2", text = "helm_plate_d_04_trf.m2", + value = "helm_plate_d_04_trf.m2", }, { fileId = "140514", - value = "helm_plate_d_04_trm.m2", text = "helm_plate_d_04_trm.m2", + value = "helm_plate_d_04_trm.m2", }, { fileId = "140535", - value = "helm_plate_dungeonpaladin_a_01_bef.m2", text = "helm_plate_dungeonpaladin_a_01_bef.m2", + value = "helm_plate_dungeonpaladin_a_01_bef.m2", }, { fileId = "140536", - value = "helm_plate_dungeonpaladin_a_01_bem.m2", text = "helm_plate_dungeonpaladin_a_01_bem.m2", + value = "helm_plate_dungeonpaladin_a_01_bem.m2", }, { fileId = "140537", - value = "helm_plate_dungeonpaladin_a_01_drf.m2", text = "helm_plate_dungeonpaladin_a_01_drf.m2", + value = "helm_plate_dungeonpaladin_a_01_drf.m2", }, { fileId = "140538", - value = "helm_plate_dungeonpaladin_a_01_drm.m2", text = "helm_plate_dungeonpaladin_a_01_drm.m2", + value = "helm_plate_dungeonpaladin_a_01_drm.m2", }, { fileId = "140539", - value = "helm_plate_dungeonpaladin_a_01_dwf.m2", text = "helm_plate_dungeonpaladin_a_01_dwf.m2", + value = "helm_plate_dungeonpaladin_a_01_dwf.m2", }, { fileId = "140540", - value = "helm_plate_dungeonpaladin_a_01_dwm.m2", text = "helm_plate_dungeonpaladin_a_01_dwm.m2", + value = "helm_plate_dungeonpaladin_a_01_dwm.m2", }, { fileId = "140541", - value = "helm_plate_dungeonpaladin_a_01_gnf.m2", text = "helm_plate_dungeonpaladin_a_01_gnf.m2", + value = "helm_plate_dungeonpaladin_a_01_gnf.m2", }, { fileId = "140542", - value = "helm_plate_dungeonpaladin_a_01_gnm.m2", text = "helm_plate_dungeonpaladin_a_01_gnm.m2", + value = "helm_plate_dungeonpaladin_a_01_gnm.m2", }, { fileId = "140543", - value = "helm_plate_dungeonpaladin_a_01_gof.m2", text = "helm_plate_dungeonpaladin_a_01_gof.m2", + value = "helm_plate_dungeonpaladin_a_01_gof.m2", }, { fileId = "140544", - value = "helm_plate_dungeonpaladin_a_01_gom.m2", text = "helm_plate_dungeonpaladin_a_01_gom.m2", + value = "helm_plate_dungeonpaladin_a_01_gom.m2", }, { fileId = "140545", - value = "helm_plate_dungeonpaladin_a_01_huf.m2", text = "helm_plate_dungeonpaladin_a_01_huf.m2", + value = "helm_plate_dungeonpaladin_a_01_huf.m2", }, { fileId = "140546", - value = "helm_plate_dungeonpaladin_a_01_hum.m2", text = "helm_plate_dungeonpaladin_a_01_hum.m2", + value = "helm_plate_dungeonpaladin_a_01_hum.m2", }, { fileId = "140547", - value = "helm_plate_dungeonpaladin_a_01_nif.m2", text = "helm_plate_dungeonpaladin_a_01_nif.m2", + value = "helm_plate_dungeonpaladin_a_01_nif.m2", }, { fileId = "140548", - value = "helm_plate_dungeonpaladin_a_01_nim.m2", text = "helm_plate_dungeonpaladin_a_01_nim.m2", + value = "helm_plate_dungeonpaladin_a_01_nim.m2", }, { fileId = "140549", - value = "helm_plate_dungeonpaladin_a_01_orf.m2", text = "helm_plate_dungeonpaladin_a_01_orf.m2", + value = "helm_plate_dungeonpaladin_a_01_orf.m2", }, { fileId = "140550", - value = "helm_plate_dungeonpaladin_a_01_orm.m2", text = "helm_plate_dungeonpaladin_a_01_orm.m2", + value = "helm_plate_dungeonpaladin_a_01_orm.m2", }, { fileId = "140551", - value = "helm_plate_dungeonpaladin_a_01_scf.m2", text = "helm_plate_dungeonpaladin_a_01_scf.m2", + value = "helm_plate_dungeonpaladin_a_01_scf.m2", }, { fileId = "140552", - value = "helm_plate_dungeonpaladin_a_01_scm.m2", text = "helm_plate_dungeonpaladin_a_01_scm.m2", + value = "helm_plate_dungeonpaladin_a_01_scm.m2", }, { fileId = "140553", - value = "helm_plate_dungeonpaladin_a_01_taf.m2", text = "helm_plate_dungeonpaladin_a_01_taf.m2", + value = "helm_plate_dungeonpaladin_a_01_taf.m2", }, { fileId = "140554", - value = "helm_plate_dungeonpaladin_a_01_tam.m2", text = "helm_plate_dungeonpaladin_a_01_tam.m2", + value = "helm_plate_dungeonpaladin_a_01_tam.m2", }, { fileId = "140555", - value = "helm_plate_dungeonpaladin_a_01_trf.m2", text = "helm_plate_dungeonpaladin_a_01_trf.m2", + value = "helm_plate_dungeonpaladin_a_01_trf.m2", }, { fileId = "140556", - value = "helm_plate_dungeonpaladin_a_01_trm.m2", text = "helm_plate_dungeonpaladin_a_01_trm.m2", + value = "helm_plate_dungeonpaladin_a_01_trm.m2", }, { fileId = "140560", - value = "helm_plate_dungeonpaladin_b_01_bef.m2", text = "helm_plate_dungeonpaladin_b_01_bef.m2", + value = "helm_plate_dungeonpaladin_b_01_bef.m2", }, { fileId = "140561", - value = "helm_plate_dungeonpaladin_b_01_bem.m2", text = "helm_plate_dungeonpaladin_b_01_bem.m2", + value = "helm_plate_dungeonpaladin_b_01_bem.m2", }, { fileId = "140562", - value = "helm_plate_dungeonpaladin_b_01_drf.m2", text = "helm_plate_dungeonpaladin_b_01_drf.m2", + value = "helm_plate_dungeonpaladin_b_01_drf.m2", }, { fileId = "140563", - value = "helm_plate_dungeonpaladin_b_01_drm.m2", text = "helm_plate_dungeonpaladin_b_01_drm.m2", + value = "helm_plate_dungeonpaladin_b_01_drm.m2", }, { fileId = "140564", - value = "helm_plate_dungeonpaladin_b_01_dwf.m2", text = "helm_plate_dungeonpaladin_b_01_dwf.m2", + value = "helm_plate_dungeonpaladin_b_01_dwf.m2", }, { fileId = "140565", - value = "helm_plate_dungeonpaladin_b_01_dwm.m2", text = "helm_plate_dungeonpaladin_b_01_dwm.m2", + value = "helm_plate_dungeonpaladin_b_01_dwm.m2", }, { fileId = "140566", - value = "helm_plate_dungeonpaladin_b_01_gnf.m2", text = "helm_plate_dungeonpaladin_b_01_gnf.m2", + value = "helm_plate_dungeonpaladin_b_01_gnf.m2", }, { fileId = "140567", - value = "helm_plate_dungeonpaladin_b_01_gnm.m2", text = "helm_plate_dungeonpaladin_b_01_gnm.m2", + value = "helm_plate_dungeonpaladin_b_01_gnm.m2", }, { fileId = "140568", - value = "helm_plate_dungeonpaladin_b_01_gof.m2", text = "helm_plate_dungeonpaladin_b_01_gof.m2", + value = "helm_plate_dungeonpaladin_b_01_gof.m2", }, { fileId = "140569", - value = "helm_plate_dungeonpaladin_b_01_gom.m2", text = "helm_plate_dungeonpaladin_b_01_gom.m2", + value = "helm_plate_dungeonpaladin_b_01_gom.m2", }, { fileId = "140570", - value = "helm_plate_dungeonpaladin_b_01_huf.m2", text = "helm_plate_dungeonpaladin_b_01_huf.m2", + value = "helm_plate_dungeonpaladin_b_01_huf.m2", }, { fileId = "140571", - value = "helm_plate_dungeonpaladin_b_01_hum.m2", text = "helm_plate_dungeonpaladin_b_01_hum.m2", + value = "helm_plate_dungeonpaladin_b_01_hum.m2", }, { fileId = "140572", - value = "helm_plate_dungeonpaladin_b_01_nif.m2", text = "helm_plate_dungeonpaladin_b_01_nif.m2", + value = "helm_plate_dungeonpaladin_b_01_nif.m2", }, { fileId = "140573", - value = "helm_plate_dungeonpaladin_b_01_nim.m2", text = "helm_plate_dungeonpaladin_b_01_nim.m2", + value = "helm_plate_dungeonpaladin_b_01_nim.m2", }, { fileId = "140574", - value = "helm_plate_dungeonpaladin_b_01_orf.m2", text = "helm_plate_dungeonpaladin_b_01_orf.m2", + value = "helm_plate_dungeonpaladin_b_01_orf.m2", }, { fileId = "140575", - value = "helm_plate_dungeonpaladin_b_01_orm.m2", text = "helm_plate_dungeonpaladin_b_01_orm.m2", + value = "helm_plate_dungeonpaladin_b_01_orm.m2", }, { fileId = "140576", - value = "helm_plate_dungeonpaladin_b_01_scf.m2", text = "helm_plate_dungeonpaladin_b_01_scf.m2", + value = "helm_plate_dungeonpaladin_b_01_scf.m2", }, { fileId = "140577", - value = "helm_plate_dungeonpaladin_b_01_scm.m2", text = "helm_plate_dungeonpaladin_b_01_scm.m2", + value = "helm_plate_dungeonpaladin_b_01_scm.m2", }, { fileId = "140578", - value = "helm_plate_dungeonpaladin_b_01_taf.m2", text = "helm_plate_dungeonpaladin_b_01_taf.m2", + value = "helm_plate_dungeonpaladin_b_01_taf.m2", }, { fileId = "140579", - value = "helm_plate_dungeonpaladin_b_01_tam.m2", text = "helm_plate_dungeonpaladin_b_01_tam.m2", + value = "helm_plate_dungeonpaladin_b_01_tam.m2", }, { fileId = "140580", - value = "helm_plate_dungeonpaladin_b_01_trf.m2", text = "helm_plate_dungeonpaladin_b_01_trf.m2", + value = "helm_plate_dungeonpaladin_b_01_trf.m2", }, { fileId = "140581", - value = "helm_plate_dungeonpaladin_b_01_trm.m2", text = "helm_plate_dungeonpaladin_b_01_trm.m2", + value = "helm_plate_dungeonpaladin_b_01_trm.m2", }, { fileId = "140612", - value = "helm_plate_dungeonwarrior_a_01_bef.m2", text = "helm_plate_dungeonwarrior_a_01_bef.m2", + value = "helm_plate_dungeonwarrior_a_01_bef.m2", }, { fileId = "140613", - value = "helm_plate_dungeonwarrior_a_01_bem.m2", text = "helm_plate_dungeonwarrior_a_01_bem.m2", + value = "helm_plate_dungeonwarrior_a_01_bem.m2", }, { fileId = "140614", - value = "helm_plate_dungeonwarrior_a_01_drf.m2", text = "helm_plate_dungeonwarrior_a_01_drf.m2", + value = "helm_plate_dungeonwarrior_a_01_drf.m2", }, { fileId = "140615", - value = "helm_plate_dungeonwarrior_a_01_drm.m2", text = "helm_plate_dungeonwarrior_a_01_drm.m2", + value = "helm_plate_dungeonwarrior_a_01_drm.m2", }, { fileId = "140616", - value = "helm_plate_dungeonwarrior_a_01_dwf.m2", text = "helm_plate_dungeonwarrior_a_01_dwf.m2", + value = "helm_plate_dungeonwarrior_a_01_dwf.m2", }, { fileId = "140617", - value = "helm_plate_dungeonwarrior_a_01_dwm.m2", text = "helm_plate_dungeonwarrior_a_01_dwm.m2", + value = "helm_plate_dungeonwarrior_a_01_dwm.m2", }, { fileId = "140618", - value = "helm_plate_dungeonwarrior_a_01_gnf.m2", text = "helm_plate_dungeonwarrior_a_01_gnf.m2", + value = "helm_plate_dungeonwarrior_a_01_gnf.m2", }, { fileId = "140619", - value = "helm_plate_dungeonwarrior_a_01_gnm.m2", text = "helm_plate_dungeonwarrior_a_01_gnm.m2", + value = "helm_plate_dungeonwarrior_a_01_gnm.m2", }, { fileId = "140620", - value = "helm_plate_dungeonwarrior_a_01_gof.m2", text = "helm_plate_dungeonwarrior_a_01_gof.m2", + value = "helm_plate_dungeonwarrior_a_01_gof.m2", }, { fileId = "140621", - value = "helm_plate_dungeonwarrior_a_01_gom.m2", text = "helm_plate_dungeonwarrior_a_01_gom.m2", + value = "helm_plate_dungeonwarrior_a_01_gom.m2", }, { fileId = "140622", - value = "helm_plate_dungeonwarrior_a_01_huf.m2", text = "helm_plate_dungeonwarrior_a_01_huf.m2", + value = "helm_plate_dungeonwarrior_a_01_huf.m2", }, { fileId = "140623", - value = "helm_plate_dungeonwarrior_a_01_hum.m2", text = "helm_plate_dungeonwarrior_a_01_hum.m2", + value = "helm_plate_dungeonwarrior_a_01_hum.m2", }, { fileId = "140624", - value = "helm_plate_dungeonwarrior_a_01_nif.m2", text = "helm_plate_dungeonwarrior_a_01_nif.m2", + value = "helm_plate_dungeonwarrior_a_01_nif.m2", }, { fileId = "140625", - value = "helm_plate_dungeonwarrior_a_01_nim.m2", text = "helm_plate_dungeonwarrior_a_01_nim.m2", + value = "helm_plate_dungeonwarrior_a_01_nim.m2", }, { fileId = "140626", - value = "helm_plate_dungeonwarrior_a_01_orf.m2", text = "helm_plate_dungeonwarrior_a_01_orf.m2", + value = "helm_plate_dungeonwarrior_a_01_orf.m2", }, { fileId = "140627", - value = "helm_plate_dungeonwarrior_a_01_orm.m2", text = "helm_plate_dungeonwarrior_a_01_orm.m2", + value = "helm_plate_dungeonwarrior_a_01_orm.m2", }, { fileId = "140628", - value = "helm_plate_dungeonwarrior_a_01_scf.m2", text = "helm_plate_dungeonwarrior_a_01_scf.m2", + value = "helm_plate_dungeonwarrior_a_01_scf.m2", }, { fileId = "140629", - value = "helm_plate_dungeonwarrior_a_01_scm.m2", text = "helm_plate_dungeonwarrior_a_01_scm.m2", + value = "helm_plate_dungeonwarrior_a_01_scm.m2", }, { fileId = "140630", - value = "helm_plate_dungeonwarrior_a_01_taf.m2", text = "helm_plate_dungeonwarrior_a_01_taf.m2", + value = "helm_plate_dungeonwarrior_a_01_taf.m2", }, { fileId = "140631", - value = "helm_plate_dungeonwarrior_a_01_tam.m2", text = "helm_plate_dungeonwarrior_a_01_tam.m2", + value = "helm_plate_dungeonwarrior_a_01_tam.m2", }, { fileId = "140632", - value = "helm_plate_dungeonwarrior_a_01_trf.m2", text = "helm_plate_dungeonwarrior_a_01_trf.m2", + value = "helm_plate_dungeonwarrior_a_01_trf.m2", }, { fileId = "140633", - value = "helm_plate_dungeonwarrior_a_01_trm.m2", text = "helm_plate_dungeonwarrior_a_01_trm.m2", + value = "helm_plate_dungeonwarrior_a_01_trm.m2", }, { fileId = "140639", - value = "helm_plate_dungeonwarrior_b_01_bef.m2", text = "helm_plate_dungeonwarrior_b_01_bef.m2", + value = "helm_plate_dungeonwarrior_b_01_bef.m2", }, { fileId = "140640", - value = "helm_plate_dungeonwarrior_b_01_bem.m2", text = "helm_plate_dungeonwarrior_b_01_bem.m2", + value = "helm_plate_dungeonwarrior_b_01_bem.m2", }, { fileId = "140641", - value = "helm_plate_dungeonwarrior_b_01_drf.m2", text = "helm_plate_dungeonwarrior_b_01_drf.m2", + value = "helm_plate_dungeonwarrior_b_01_drf.m2", }, { fileId = "140642", - value = "helm_plate_dungeonwarrior_b_01_drm.m2", text = "helm_plate_dungeonwarrior_b_01_drm.m2", + value = "helm_plate_dungeonwarrior_b_01_drm.m2", }, { fileId = "140643", - value = "helm_plate_dungeonwarrior_b_01_dwf.m2", text = "helm_plate_dungeonwarrior_b_01_dwf.m2", + value = "helm_plate_dungeonwarrior_b_01_dwf.m2", }, { fileId = "140644", - value = "helm_plate_dungeonwarrior_b_01_dwm.m2", text = "helm_plate_dungeonwarrior_b_01_dwm.m2", + value = "helm_plate_dungeonwarrior_b_01_dwm.m2", }, { fileId = "140645", - value = "helm_plate_dungeonwarrior_b_01_gnf.m2", text = "helm_plate_dungeonwarrior_b_01_gnf.m2", + value = "helm_plate_dungeonwarrior_b_01_gnf.m2", }, { fileId = "140646", - value = "helm_plate_dungeonwarrior_b_01_gnm.m2", text = "helm_plate_dungeonwarrior_b_01_gnm.m2", + value = "helm_plate_dungeonwarrior_b_01_gnm.m2", }, { fileId = "140647", - value = "helm_plate_dungeonwarrior_b_01_gof.m2", text = "helm_plate_dungeonwarrior_b_01_gof.m2", + value = "helm_plate_dungeonwarrior_b_01_gof.m2", }, { fileId = "140648", - value = "helm_plate_dungeonwarrior_b_01_gom.m2", text = "helm_plate_dungeonwarrior_b_01_gom.m2", + value = "helm_plate_dungeonwarrior_b_01_gom.m2", }, { fileId = "140649", - value = "helm_plate_dungeonwarrior_b_01_huf.m2", text = "helm_plate_dungeonwarrior_b_01_huf.m2", + value = "helm_plate_dungeonwarrior_b_01_huf.m2", }, { fileId = "140650", - value = "helm_plate_dungeonwarrior_b_01_hum.m2", text = "helm_plate_dungeonwarrior_b_01_hum.m2", + value = "helm_plate_dungeonwarrior_b_01_hum.m2", }, { fileId = "140651", - value = "helm_plate_dungeonwarrior_b_01_nif.m2", text = "helm_plate_dungeonwarrior_b_01_nif.m2", + value = "helm_plate_dungeonwarrior_b_01_nif.m2", }, { fileId = "140652", - value = "helm_plate_dungeonwarrior_b_01_nim.m2", text = "helm_plate_dungeonwarrior_b_01_nim.m2", + value = "helm_plate_dungeonwarrior_b_01_nim.m2", }, { fileId = "140653", - value = "helm_plate_dungeonwarrior_b_01_orf.m2", text = "helm_plate_dungeonwarrior_b_01_orf.m2", + value = "helm_plate_dungeonwarrior_b_01_orf.m2", }, { fileId = "140654", - value = "helm_plate_dungeonwarrior_b_01_orm.m2", text = "helm_plate_dungeonwarrior_b_01_orm.m2", + value = "helm_plate_dungeonwarrior_b_01_orm.m2", }, { fileId = "140655", - value = "helm_plate_dungeonwarrior_b_01_scf.m2", text = "helm_plate_dungeonwarrior_b_01_scf.m2", + value = "helm_plate_dungeonwarrior_b_01_scf.m2", }, { fileId = "140656", - value = "helm_plate_dungeonwarrior_b_01_scm.m2", text = "helm_plate_dungeonwarrior_b_01_scm.m2", + value = "helm_plate_dungeonwarrior_b_01_scm.m2", }, { fileId = "140657", - value = "helm_plate_dungeonwarrior_b_01_taf.m2", text = "helm_plate_dungeonwarrior_b_01_taf.m2", + value = "helm_plate_dungeonwarrior_b_01_taf.m2", }, { fileId = "140658", - value = "helm_plate_dungeonwarrior_b_01_tam.m2", text = "helm_plate_dungeonwarrior_b_01_tam.m2", + value = "helm_plate_dungeonwarrior_b_01_tam.m2", }, { fileId = "140659", - value = "helm_plate_dungeonwarrior_b_01_trf.m2", text = "helm_plate_dungeonwarrior_b_01_trf.m2", + value = "helm_plate_dungeonwarrior_b_01_trf.m2", }, { fileId = "140660", - value = "helm_plate_dungeonwarrior_b_01_trm.m2", text = "helm_plate_dungeonwarrior_b_01_trm.m2", + value = "helm_plate_dungeonwarrior_b_01_trm.m2", }, { fileId = "140666", - value = "helm_plate_headless_d_01_bef.m2", text = "helm_plate_headless_d_01_bef.m2", + value = "helm_plate_headless_d_01_bef.m2", }, { fileId = "140667", - value = "helm_plate_headless_d_01_bem.m2", text = "helm_plate_headless_d_01_bem.m2", + value = "helm_plate_headless_d_01_bem.m2", }, { fileId = "140668", - value = "helm_plate_headless_d_01_drf.m2", text = "helm_plate_headless_d_01_drf.m2", + value = "helm_plate_headless_d_01_drf.m2", }, { fileId = "140669", - value = "helm_plate_headless_d_01_drm.m2", text = "helm_plate_headless_d_01_drm.m2", + value = "helm_plate_headless_d_01_drm.m2", }, { fileId = "140670", - value = "helm_plate_headless_d_01_dwf.m2", text = "helm_plate_headless_d_01_dwf.m2", + value = "helm_plate_headless_d_01_dwf.m2", }, { fileId = "140671", - value = "helm_plate_headless_d_01_dwm.m2", text = "helm_plate_headless_d_01_dwm.m2", + value = "helm_plate_headless_d_01_dwm.m2", }, { fileId = "140672", - value = "helm_plate_headless_d_01_gnf.m2", text = "helm_plate_headless_d_01_gnf.m2", + value = "helm_plate_headless_d_01_gnf.m2", }, { fileId = "140673", - value = "helm_plate_headless_d_01_gnm.m2", text = "helm_plate_headless_d_01_gnm.m2", + value = "helm_plate_headless_d_01_gnm.m2", }, { fileId = "140674", - value = "helm_plate_headless_d_01_gof.m2", text = "helm_plate_headless_d_01_gof.m2", + value = "helm_plate_headless_d_01_gof.m2", }, { fileId = "140675", - value = "helm_plate_headless_d_01_gom.m2", text = "helm_plate_headless_d_01_gom.m2", + value = "helm_plate_headless_d_01_gom.m2", }, { fileId = "140676", - value = "helm_plate_headless_d_01_huf.m2", text = "helm_plate_headless_d_01_huf.m2", + value = "helm_plate_headless_d_01_huf.m2", }, { fileId = "140677", - value = "helm_plate_headless_d_01_hum.m2", text = "helm_plate_headless_d_01_hum.m2", + value = "helm_plate_headless_d_01_hum.m2", }, { fileId = "140678", - value = "helm_plate_headless_d_01_nif.m2", text = "helm_plate_headless_d_01_nif.m2", + value = "helm_plate_headless_d_01_nif.m2", }, { fileId = "140679", - value = "helm_plate_headless_d_01_nim.m2", text = "helm_plate_headless_d_01_nim.m2", + value = "helm_plate_headless_d_01_nim.m2", }, { fileId = "140680", - value = "helm_plate_headless_d_01_orf.m2", text = "helm_plate_headless_d_01_orf.m2", + value = "helm_plate_headless_d_01_orf.m2", }, { fileId = "140681", - value = "helm_plate_headless_d_01_orm.m2", text = "helm_plate_headless_d_01_orm.m2", + value = "helm_plate_headless_d_01_orm.m2", }, { fileId = "140682", - value = "helm_plate_headless_d_01_scf.m2", text = "helm_plate_headless_d_01_scf.m2", + value = "helm_plate_headless_d_01_scf.m2", }, { fileId = "140683", - value = "helm_plate_headless_d_01_scm.m2", text = "helm_plate_headless_d_01_scm.m2", + value = "helm_plate_headless_d_01_scm.m2", }, { fileId = "140684", - value = "helm_plate_headless_d_01_taf.m2", text = "helm_plate_headless_d_01_taf.m2", + value = "helm_plate_headless_d_01_taf.m2", }, { fileId = "140685", - value = "helm_plate_headless_d_01_tam.m2", text = "helm_plate_headless_d_01_tam.m2", + value = "helm_plate_headless_d_01_tam.m2", }, { fileId = "140686", - value = "helm_plate_headless_d_01_trf.m2", text = "helm_plate_headless_d_01_trf.m2", + value = "helm_plate_headless_d_01_trf.m2", }, { fileId = "140687", - value = "helm_plate_headless_d_01_trm.m2", text = "helm_plate_headless_d_01_trm.m2", + value = "helm_plate_headless_d_01_trm.m2", }, { fileId = "140814", - value = "helm_plate_pvpalliance_a_01_bef.m2", text = "helm_plate_pvpalliance_a_01_bef.m2", + value = "helm_plate_pvpalliance_a_01_bef.m2", }, { fileId = "140815", - value = "helm_plate_pvpalliance_a_01_bem.m2", text = "helm_plate_pvpalliance_a_01_bem.m2", + value = "helm_plate_pvpalliance_a_01_bem.m2", }, { fileId = "140816", - value = "helm_plate_pvpalliance_a_01_drf.m2", text = "helm_plate_pvpalliance_a_01_drf.m2", + value = "helm_plate_pvpalliance_a_01_drf.m2", }, { fileId = "140817", - value = "helm_plate_pvpalliance_a_01_drm.m2", text = "helm_plate_pvpalliance_a_01_drm.m2", + value = "helm_plate_pvpalliance_a_01_drm.m2", }, { fileId = "140818", - value = "helm_plate_pvpalliance_a_01_dwf.m2", text = "helm_plate_pvpalliance_a_01_dwf.m2", + value = "helm_plate_pvpalliance_a_01_dwf.m2", }, { fileId = "140819", - value = "helm_plate_pvpalliance_a_01_dwm.m2", text = "helm_plate_pvpalliance_a_01_dwm.m2", + value = "helm_plate_pvpalliance_a_01_dwm.m2", }, { fileId = "140820", - value = "helm_plate_pvpalliance_a_01_gnf.m2", text = "helm_plate_pvpalliance_a_01_gnf.m2", + value = "helm_plate_pvpalliance_a_01_gnf.m2", }, { fileId = "140821", - value = "helm_plate_pvpalliance_a_01_gnm.m2", text = "helm_plate_pvpalliance_a_01_gnm.m2", + value = "helm_plate_pvpalliance_a_01_gnm.m2", }, { fileId = "140822", - value = "helm_plate_pvpalliance_a_01_gof.m2", text = "helm_plate_pvpalliance_a_01_gof.m2", + value = "helm_plate_pvpalliance_a_01_gof.m2", }, { fileId = "140823", - value = "helm_plate_pvpalliance_a_01_gom.m2", text = "helm_plate_pvpalliance_a_01_gom.m2", + value = "helm_plate_pvpalliance_a_01_gom.m2", }, { fileId = "140824", - value = "helm_plate_pvpalliance_a_01_huf.m2", text = "helm_plate_pvpalliance_a_01_huf.m2", + value = "helm_plate_pvpalliance_a_01_huf.m2", }, { fileId = "140825", - value = "helm_plate_pvpalliance_a_01_hum.m2", text = "helm_plate_pvpalliance_a_01_hum.m2", + value = "helm_plate_pvpalliance_a_01_hum.m2", }, { fileId = "140826", - value = "helm_plate_pvpalliance_a_01_nif.m2", text = "helm_plate_pvpalliance_a_01_nif.m2", + value = "helm_plate_pvpalliance_a_01_nif.m2", }, { fileId = "140827", - value = "helm_plate_pvpalliance_a_01_nim.m2", text = "helm_plate_pvpalliance_a_01_nim.m2", + value = "helm_plate_pvpalliance_a_01_nim.m2", }, { fileId = "140828", - value = "helm_plate_pvpalliance_a_01_orf.m2", text = "helm_plate_pvpalliance_a_01_orf.m2", + value = "helm_plate_pvpalliance_a_01_orf.m2", }, { fileId = "140829", - value = "helm_plate_pvpalliance_a_01_orm.m2", text = "helm_plate_pvpalliance_a_01_orm.m2", + value = "helm_plate_pvpalliance_a_01_orm.m2", }, { fileId = "140830", - value = "helm_plate_pvpalliance_a_01_scf.m2", text = "helm_plate_pvpalliance_a_01_scf.m2", + value = "helm_plate_pvpalliance_a_01_scf.m2", }, { fileId = "140831", - value = "helm_plate_pvpalliance_a_01_scm.m2", text = "helm_plate_pvpalliance_a_01_scm.m2", + value = "helm_plate_pvpalliance_a_01_scm.m2", }, { fileId = "140832", - value = "helm_plate_pvpalliance_a_01_taf.m2", text = "helm_plate_pvpalliance_a_01_taf.m2", + value = "helm_plate_pvpalliance_a_01_taf.m2", }, { fileId = "140833", - value = "helm_plate_pvpalliance_a_01_tam.m2", text = "helm_plate_pvpalliance_a_01_tam.m2", + value = "helm_plate_pvpalliance_a_01_tam.m2", }, { fileId = "140834", - value = "helm_plate_pvpalliance_a_01_trf.m2", text = "helm_plate_pvpalliance_a_01_trf.m2", + value = "helm_plate_pvpalliance_a_01_trf.m2", }, { fileId = "140835", - value = "helm_plate_pvpalliance_a_01_trm.m2", text = "helm_plate_pvpalliance_a_01_trm.m2", + value = "helm_plate_pvpalliance_a_01_trm.m2", }, { fileId = "140839", - value = "helm_plate_pvpalliance_c_01_gom.m2", text = "helm_plate_pvpalliance_c_01_gom.m2", + value = "helm_plate_pvpalliance_c_01_gom.m2", }, { fileId = "140840", - value = "helm_plate_pvphorde_a_01_bef.m2", text = "helm_plate_pvphorde_a_01_bef.m2", + value = "helm_plate_pvphorde_a_01_bef.m2", }, { fileId = "140841", - value = "helm_plate_pvphorde_a_01_bem.m2", text = "helm_plate_pvphorde_a_01_bem.m2", + value = "helm_plate_pvphorde_a_01_bem.m2", }, { fileId = "140842", - value = "helm_plate_pvphorde_a_01_drf.m2", text = "helm_plate_pvphorde_a_01_drf.m2", + value = "helm_plate_pvphorde_a_01_drf.m2", }, { fileId = "140843", - value = "helm_plate_pvphorde_a_01_drm.m2", text = "helm_plate_pvphorde_a_01_drm.m2", + value = "helm_plate_pvphorde_a_01_drm.m2", }, { fileId = "140844", - value = "helm_plate_pvphorde_a_01_dwf.m2", text = "helm_plate_pvphorde_a_01_dwf.m2", + value = "helm_plate_pvphorde_a_01_dwf.m2", }, { fileId = "140845", - value = "helm_plate_pvphorde_a_01_dwm.m2", text = "helm_plate_pvphorde_a_01_dwm.m2", + value = "helm_plate_pvphorde_a_01_dwm.m2", }, { fileId = "140846", - value = "helm_plate_pvphorde_a_01_gnf.m2", text = "helm_plate_pvphorde_a_01_gnf.m2", + value = "helm_plate_pvphorde_a_01_gnf.m2", }, { fileId = "140847", - value = "helm_plate_pvphorde_a_01_gnm.m2", text = "helm_plate_pvphorde_a_01_gnm.m2", + value = "helm_plate_pvphorde_a_01_gnm.m2", }, { fileId = "140848", - value = "helm_plate_pvphorde_a_01_gof.m2", text = "helm_plate_pvphorde_a_01_gof.m2", + value = "helm_plate_pvphorde_a_01_gof.m2", }, { fileId = "140849", - value = "helm_plate_pvphorde_a_01_huf.m2", text = "helm_plate_pvphorde_a_01_huf.m2", + value = "helm_plate_pvphorde_a_01_huf.m2", }, { fileId = "140850", - value = "helm_plate_pvphorde_a_01_hum.m2", text = "helm_plate_pvphorde_a_01_hum.m2", + value = "helm_plate_pvphorde_a_01_hum.m2", }, { fileId = "140851", - value = "helm_plate_pvphorde_a_01_nif.m2", text = "helm_plate_pvphorde_a_01_nif.m2", + value = "helm_plate_pvphorde_a_01_nif.m2", }, { fileId = "140852", - value = "helm_plate_pvphorde_a_01_nim.m2", text = "helm_plate_pvphorde_a_01_nim.m2", + value = "helm_plate_pvphorde_a_01_nim.m2", }, { fileId = "140853", - value = "helm_plate_pvphorde_a_01_orf.m2", text = "helm_plate_pvphorde_a_01_orf.m2", + value = "helm_plate_pvphorde_a_01_orf.m2", }, { fileId = "140854", - value = "helm_plate_pvphorde_a_01_orm.m2", text = "helm_plate_pvphorde_a_01_orm.m2", + value = "helm_plate_pvphorde_a_01_orm.m2", }, { fileId = "140855", - value = "helm_plate_pvphorde_a_01_scf.m2", text = "helm_plate_pvphorde_a_01_scf.m2", + value = "helm_plate_pvphorde_a_01_scf.m2", }, { fileId = "140856", - value = "helm_plate_pvphorde_a_01_scm.m2", text = "helm_plate_pvphorde_a_01_scm.m2", + value = "helm_plate_pvphorde_a_01_scm.m2", }, { fileId = "140857", - value = "helm_plate_pvphorde_a_01_taf.m2", text = "helm_plate_pvphorde_a_01_taf.m2", + value = "helm_plate_pvphorde_a_01_taf.m2", }, { fileId = "140858", - value = "helm_plate_pvphorde_a_01_tam.m2", text = "helm_plate_pvphorde_a_01_tam.m2", + value = "helm_plate_pvphorde_a_01_tam.m2", }, { fileId = "140859", - value = "helm_plate_pvphorde_a_01_trf.m2", text = "helm_plate_pvphorde_a_01_trf.m2", + value = "helm_plate_pvphorde_a_01_trf.m2", }, { fileId = "140860", - value = "helm_plate_pvphorde_a_01_trm.m2", text = "helm_plate_pvphorde_a_01_trm.m2", + value = "helm_plate_pvphorde_a_01_trm.m2", }, { fileId = "140862", - value = "helm_plate_pvphorde_b_01_bem.m2", text = "helm_plate_pvphorde_b_01_bem.m2", + value = "helm_plate_pvphorde_b_01_bem.m2", }, { fileId = "140893", - value = "helm_plate_raidpaladin_a_01_bef.m2", text = "helm_plate_raidpaladin_a_01_bef.m2", + value = "helm_plate_raidpaladin_a_01_bef.m2", }, { fileId = "140894", - value = "helm_plate_raidpaladin_a_01_bem.m2", text = "helm_plate_raidpaladin_a_01_bem.m2", + value = "helm_plate_raidpaladin_a_01_bem.m2", }, { fileId = "140895", - value = "helm_plate_raidpaladin_a_01_drf.m2", text = "helm_plate_raidpaladin_a_01_drf.m2", + value = "helm_plate_raidpaladin_a_01_drf.m2", }, { fileId = "140896", - value = "helm_plate_raidpaladin_a_01_drm.m2", text = "helm_plate_raidpaladin_a_01_drm.m2", + value = "helm_plate_raidpaladin_a_01_drm.m2", }, { fileId = "140897", - value = "helm_plate_raidpaladin_a_01_dwf.m2", text = "helm_plate_raidpaladin_a_01_dwf.m2", + value = "helm_plate_raidpaladin_a_01_dwf.m2", }, { fileId = "140898", - value = "helm_plate_raidpaladin_a_01_dwm.m2", text = "helm_plate_raidpaladin_a_01_dwm.m2", + value = "helm_plate_raidpaladin_a_01_dwm.m2", }, { fileId = "140899", - value = "helm_plate_raidpaladin_a_01_gnf.m2", text = "helm_plate_raidpaladin_a_01_gnf.m2", + value = "helm_plate_raidpaladin_a_01_gnf.m2", }, { fileId = "140900", - value = "helm_plate_raidpaladin_a_01_gnm.m2", text = "helm_plate_raidpaladin_a_01_gnm.m2", + value = "helm_plate_raidpaladin_a_01_gnm.m2", }, { fileId = "140901", - value = "helm_plate_raidpaladin_a_01_gof.m2", text = "helm_plate_raidpaladin_a_01_gof.m2", + value = "helm_plate_raidpaladin_a_01_gof.m2", }, { fileId = "140902", - value = "helm_plate_raidpaladin_a_01_huf.m2", text = "helm_plate_raidpaladin_a_01_huf.m2", + value = "helm_plate_raidpaladin_a_01_huf.m2", }, { fileId = "140903", - value = "helm_plate_raidpaladin_a_01_hum.m2", text = "helm_plate_raidpaladin_a_01_hum.m2", + value = "helm_plate_raidpaladin_a_01_hum.m2", }, { fileId = "140904", - value = "helm_plate_raidpaladin_a_01_nif.m2", text = "helm_plate_raidpaladin_a_01_nif.m2", + value = "helm_plate_raidpaladin_a_01_nif.m2", }, { fileId = "140905", - value = "helm_plate_raidpaladin_a_01_nim.m2", text = "helm_plate_raidpaladin_a_01_nim.m2", + value = "helm_plate_raidpaladin_a_01_nim.m2", }, { fileId = "140906", - value = "helm_plate_raidpaladin_a_01_orf.m2", text = "helm_plate_raidpaladin_a_01_orf.m2", + value = "helm_plate_raidpaladin_a_01_orf.m2", }, { fileId = "140907", - value = "helm_plate_raidpaladin_a_01_orm.m2", text = "helm_plate_raidpaladin_a_01_orm.m2", + value = "helm_plate_raidpaladin_a_01_orm.m2", }, { fileId = "140908", - value = "helm_plate_raidpaladin_a_01_scf.m2", text = "helm_plate_raidpaladin_a_01_scf.m2", + value = "helm_plate_raidpaladin_a_01_scf.m2", }, { fileId = "140909", - value = "helm_plate_raidpaladin_a_01_scm.m2", text = "helm_plate_raidpaladin_a_01_scm.m2", + value = "helm_plate_raidpaladin_a_01_scm.m2", }, { fileId = "140910", - value = "helm_plate_raidpaladin_a_01_taf.m2", text = "helm_plate_raidpaladin_a_01_taf.m2", + value = "helm_plate_raidpaladin_a_01_taf.m2", }, { fileId = "140911", - value = "helm_plate_raidpaladin_a_01_tam.m2", text = "helm_plate_raidpaladin_a_01_tam.m2", + value = "helm_plate_raidpaladin_a_01_tam.m2", }, { fileId = "140912", - value = "helm_plate_raidpaladin_a_01_trf.m2", text = "helm_plate_raidpaladin_a_01_trf.m2", + value = "helm_plate_raidpaladin_a_01_trf.m2", }, { fileId = "140913", - value = "helm_plate_raidpaladin_a_01_trm.m2", text = "helm_plate_raidpaladin_a_01_trm.m2", + value = "helm_plate_raidpaladin_a_01_trm.m2", }, { fileId = "140919", - value = "helm_plate_raidpaladin_b_01_bef.m2", text = "helm_plate_raidpaladin_b_01_bef.m2", + value = "helm_plate_raidpaladin_b_01_bef.m2", }, { fileId = "140920", - value = "helm_plate_raidpaladin_b_01_bem.m2", text = "helm_plate_raidpaladin_b_01_bem.m2", + value = "helm_plate_raidpaladin_b_01_bem.m2", }, { fileId = "140921", - value = "helm_plate_raidpaladin_b_01_drf.m2", text = "helm_plate_raidpaladin_b_01_drf.m2", + value = "helm_plate_raidpaladin_b_01_drf.m2", }, { fileId = "140922", - value = "helm_plate_raidpaladin_b_01_drm.m2", text = "helm_plate_raidpaladin_b_01_drm.m2", + value = "helm_plate_raidpaladin_b_01_drm.m2", }, { fileId = "140923", - value = "helm_plate_raidpaladin_b_01_dwf.m2", text = "helm_plate_raidpaladin_b_01_dwf.m2", + value = "helm_plate_raidpaladin_b_01_dwf.m2", }, { fileId = "140924", - value = "helm_plate_raidpaladin_b_01_dwm.m2", text = "helm_plate_raidpaladin_b_01_dwm.m2", + value = "helm_plate_raidpaladin_b_01_dwm.m2", }, { fileId = "140925", - value = "helm_plate_raidpaladin_b_01_gnf.m2", text = "helm_plate_raidpaladin_b_01_gnf.m2", + value = "helm_plate_raidpaladin_b_01_gnf.m2", }, { fileId = "140926", - value = "helm_plate_raidpaladin_b_01_gnm.m2", text = "helm_plate_raidpaladin_b_01_gnm.m2", + value = "helm_plate_raidpaladin_b_01_gnm.m2", }, { fileId = "140927", - value = "helm_plate_raidpaladin_b_01_gof.m2", text = "helm_plate_raidpaladin_b_01_gof.m2", + value = "helm_plate_raidpaladin_b_01_gof.m2", }, { fileId = "140928", - value = "helm_plate_raidpaladin_b_01_gom.m2", text = "helm_plate_raidpaladin_b_01_gom.m2", + value = "helm_plate_raidpaladin_b_01_gom.m2", }, { fileId = "140929", - value = "helm_plate_raidpaladin_b_01_huf.m2", text = "helm_plate_raidpaladin_b_01_huf.m2", + value = "helm_plate_raidpaladin_b_01_huf.m2", }, { fileId = "140930", - value = "helm_plate_raidpaladin_b_01_hum.m2", text = "helm_plate_raidpaladin_b_01_hum.m2", + value = "helm_plate_raidpaladin_b_01_hum.m2", }, { fileId = "140931", - value = "helm_plate_raidpaladin_b_01_nif.m2", text = "helm_plate_raidpaladin_b_01_nif.m2", + value = "helm_plate_raidpaladin_b_01_nif.m2", }, { fileId = "140932", - value = "helm_plate_raidpaladin_b_01_nim.m2", text = "helm_plate_raidpaladin_b_01_nim.m2", + value = "helm_plate_raidpaladin_b_01_nim.m2", }, { fileId = "140933", - value = "helm_plate_raidpaladin_b_01_orf.m2", text = "helm_plate_raidpaladin_b_01_orf.m2", + value = "helm_plate_raidpaladin_b_01_orf.m2", }, { fileId = "140934", - value = "helm_plate_raidpaladin_b_01_orm.m2", text = "helm_plate_raidpaladin_b_01_orm.m2", + value = "helm_plate_raidpaladin_b_01_orm.m2", }, { fileId = "140935", - value = "helm_plate_raidpaladin_b_01_scf.m2", text = "helm_plate_raidpaladin_b_01_scf.m2", + value = "helm_plate_raidpaladin_b_01_scf.m2", }, { fileId = "140936", - value = "helm_plate_raidpaladin_b_01_scm.m2", text = "helm_plate_raidpaladin_b_01_scm.m2", + value = "helm_plate_raidpaladin_b_01_scm.m2", }, { fileId = "140937", - value = "helm_plate_raidpaladin_b_01_taf.m2", text = "helm_plate_raidpaladin_b_01_taf.m2", + value = "helm_plate_raidpaladin_b_01_taf.m2", }, { fileId = "140938", - value = "helm_plate_raidpaladin_b_01_tam.m2", text = "helm_plate_raidpaladin_b_01_tam.m2", + value = "helm_plate_raidpaladin_b_01_tam.m2", }, { fileId = "140939", - value = "helm_plate_raidpaladin_b_01_trf.m2", text = "helm_plate_raidpaladin_b_01_trf.m2", + value = "helm_plate_raidpaladin_b_01_trf.m2", }, { fileId = "140940", - value = "helm_plate_raidpaladin_b_01_trm.m2", text = "helm_plate_raidpaladin_b_01_trm.m2", + value = "helm_plate_raidpaladin_b_01_trm.m2", }, { fileId = "140944", - value = "helm_plate_raidpaladin_c_01_bef.m2", text = "helm_plate_raidpaladin_c_01_bef.m2", + value = "helm_plate_raidpaladin_c_01_bef.m2", }, { fileId = "140945", - value = "helm_plate_raidpaladin_c_01_bem.m2", text = "helm_plate_raidpaladin_c_01_bem.m2", + value = "helm_plate_raidpaladin_c_01_bem.m2", }, { fileId = "140946", - value = "helm_plate_raidpaladin_c_01_drf.m2", text = "helm_plate_raidpaladin_c_01_drf.m2", + value = "helm_plate_raidpaladin_c_01_drf.m2", }, { fileId = "140947", - value = "helm_plate_raidpaladin_c_01_drm.m2", text = "helm_plate_raidpaladin_c_01_drm.m2", + value = "helm_plate_raidpaladin_c_01_drm.m2", }, { fileId = "140948", - value = "helm_plate_raidpaladin_c_01_dwf.m2", text = "helm_plate_raidpaladin_c_01_dwf.m2", + value = "helm_plate_raidpaladin_c_01_dwf.m2", }, { fileId = "140949", - value = "helm_plate_raidpaladin_c_01_dwm.m2", text = "helm_plate_raidpaladin_c_01_dwm.m2", + value = "helm_plate_raidpaladin_c_01_dwm.m2", }, { fileId = "140950", - value = "helm_plate_raidpaladin_c_01_gnf.m2", text = "helm_plate_raidpaladin_c_01_gnf.m2", + value = "helm_plate_raidpaladin_c_01_gnf.m2", }, { fileId = "140951", - value = "helm_plate_raidpaladin_c_01_gnm.m2", text = "helm_plate_raidpaladin_c_01_gnm.m2", + value = "helm_plate_raidpaladin_c_01_gnm.m2", }, { fileId = "140952", - value = "helm_plate_raidpaladin_c_01_gof.m2", text = "helm_plate_raidpaladin_c_01_gof.m2", + value = "helm_plate_raidpaladin_c_01_gof.m2", }, { fileId = "140953", - value = "helm_plate_raidpaladin_c_01_gom.m2", text = "helm_plate_raidpaladin_c_01_gom.m2", + value = "helm_plate_raidpaladin_c_01_gom.m2", }, { fileId = "140954", - value = "helm_plate_raidpaladin_c_01_huf.m2", text = "helm_plate_raidpaladin_c_01_huf.m2", + value = "helm_plate_raidpaladin_c_01_huf.m2", }, { fileId = "140955", - value = "helm_plate_raidpaladin_c_01_hum.m2", text = "helm_plate_raidpaladin_c_01_hum.m2", + value = "helm_plate_raidpaladin_c_01_hum.m2", }, { fileId = "140956", - value = "helm_plate_raidpaladin_c_01_nif.m2", text = "helm_plate_raidpaladin_c_01_nif.m2", + value = "helm_plate_raidpaladin_c_01_nif.m2", }, { fileId = "140957", - value = "helm_plate_raidpaladin_c_01_nim.m2", text = "helm_plate_raidpaladin_c_01_nim.m2", + value = "helm_plate_raidpaladin_c_01_nim.m2", }, { fileId = "140958", - value = "helm_plate_raidpaladin_c_01_orf.m2", text = "helm_plate_raidpaladin_c_01_orf.m2", + value = "helm_plate_raidpaladin_c_01_orf.m2", }, { fileId = "140959", - value = "helm_plate_raidpaladin_c_01_orm.m2", text = "helm_plate_raidpaladin_c_01_orm.m2", + value = "helm_plate_raidpaladin_c_01_orm.m2", }, { fileId = "140960", - value = "helm_plate_raidpaladin_c_01_scf.m2", text = "helm_plate_raidpaladin_c_01_scf.m2", + value = "helm_plate_raidpaladin_c_01_scf.m2", }, { fileId = "140961", - value = "helm_plate_raidpaladin_c_01_scm.m2", text = "helm_plate_raidpaladin_c_01_scm.m2", + value = "helm_plate_raidpaladin_c_01_scm.m2", }, { fileId = "140962", - value = "helm_plate_raidpaladin_c_01_taf.m2", text = "helm_plate_raidpaladin_c_01_taf.m2", + value = "helm_plate_raidpaladin_c_01_taf.m2", }, { fileId = "140963", - value = "helm_plate_raidpaladin_c_01_tam.m2", text = "helm_plate_raidpaladin_c_01_tam.m2", + value = "helm_plate_raidpaladin_c_01_tam.m2", }, { fileId = "140964", - value = "helm_plate_raidpaladin_c_01_trf.m2", text = "helm_plate_raidpaladin_c_01_trf.m2", + value = "helm_plate_raidpaladin_c_01_trf.m2", }, { fileId = "140965", - value = "helm_plate_raidpaladin_c_01_trm.m2", text = "helm_plate_raidpaladin_c_01_trm.m2", + value = "helm_plate_raidpaladin_c_01_trm.m2", }, { fileId = "140968", - value = "helm_plate_raidpaladin_d_01_bef.m2", text = "helm_plate_raidpaladin_d_01_bef.m2", + value = "helm_plate_raidpaladin_d_01_bef.m2", }, { fileId = "140969", - value = "helm_plate_raidpaladin_d_01_bem.m2", text = "helm_plate_raidpaladin_d_01_bem.m2", + value = "helm_plate_raidpaladin_d_01_bem.m2", }, { fileId = "140970", - value = "helm_plate_raidpaladin_d_01_drf.m2", text = "helm_plate_raidpaladin_d_01_drf.m2", + value = "helm_plate_raidpaladin_d_01_drf.m2", }, { fileId = "140971", - value = "helm_plate_raidpaladin_d_01_drm.m2", text = "helm_plate_raidpaladin_d_01_drm.m2", + value = "helm_plate_raidpaladin_d_01_drm.m2", }, { fileId = "140972", - value = "helm_plate_raidpaladin_d_01_dwf.m2", text = "helm_plate_raidpaladin_d_01_dwf.m2", + value = "helm_plate_raidpaladin_d_01_dwf.m2", }, { fileId = "140973", - value = "helm_plate_raidpaladin_d_01_dwm.m2", text = "helm_plate_raidpaladin_d_01_dwm.m2", + value = "helm_plate_raidpaladin_d_01_dwm.m2", }, { fileId = "140975", - value = "helm_plate_raidpaladin_d_01_gnf.m2", text = "helm_plate_raidpaladin_d_01_gnf.m2", + value = "helm_plate_raidpaladin_d_01_gnf.m2", }, { fileId = "140976", - value = "helm_plate_raidpaladin_d_01_gnm.m2", text = "helm_plate_raidpaladin_d_01_gnm.m2", + value = "helm_plate_raidpaladin_d_01_gnm.m2", }, { fileId = "140977", - value = "helm_plate_raidpaladin_d_01_gof.m2", text = "helm_plate_raidpaladin_d_01_gof.m2", + value = "helm_plate_raidpaladin_d_01_gof.m2", }, { fileId = "140978", - value = "helm_plate_raidpaladin_d_01_gom.m2", text = "helm_plate_raidpaladin_d_01_gom.m2", + value = "helm_plate_raidpaladin_d_01_gom.m2", }, { fileId = "140979", - value = "helm_plate_raidpaladin_d_01_huf.m2", text = "helm_plate_raidpaladin_d_01_huf.m2", + value = "helm_plate_raidpaladin_d_01_huf.m2", }, { fileId = "140980", - value = "helm_plate_raidpaladin_d_01_hum.m2", text = "helm_plate_raidpaladin_d_01_hum.m2", + value = "helm_plate_raidpaladin_d_01_hum.m2", }, { fileId = "140981", - value = "helm_plate_raidpaladin_d_01_nif.m2", text = "helm_plate_raidpaladin_d_01_nif.m2", + value = "helm_plate_raidpaladin_d_01_nif.m2", }, { fileId = "140982", - value = "helm_plate_raidpaladin_d_01_nim.m2", text = "helm_plate_raidpaladin_d_01_nim.m2", + value = "helm_plate_raidpaladin_d_01_nim.m2", }, { fileId = "140983", - value = "helm_plate_raidpaladin_d_01_orf.m2", text = "helm_plate_raidpaladin_d_01_orf.m2", + value = "helm_plate_raidpaladin_d_01_orf.m2", }, { fileId = "140984", - value = "helm_plate_raidpaladin_d_01_orm.m2", text = "helm_plate_raidpaladin_d_01_orm.m2", + value = "helm_plate_raidpaladin_d_01_orm.m2", }, { fileId = "140985", - value = "helm_plate_raidpaladin_d_01_scf.m2", text = "helm_plate_raidpaladin_d_01_scf.m2", + value = "helm_plate_raidpaladin_d_01_scf.m2", }, { fileId = "140986", - value = "helm_plate_raidpaladin_d_01_scm.m2", text = "helm_plate_raidpaladin_d_01_scm.m2", + value = "helm_plate_raidpaladin_d_01_scm.m2", }, { fileId = "140987", - value = "helm_plate_raidpaladin_d_01_taf.m2", text = "helm_plate_raidpaladin_d_01_taf.m2", + value = "helm_plate_raidpaladin_d_01_taf.m2", }, { fileId = "140988", - value = "helm_plate_raidpaladin_d_01_tam.m2", text = "helm_plate_raidpaladin_d_01_tam.m2", + value = "helm_plate_raidpaladin_d_01_tam.m2", }, { fileId = "140989", - value = "helm_plate_raidpaladin_d_01_trf.m2", text = "helm_plate_raidpaladin_d_01_trf.m2", + value = "helm_plate_raidpaladin_d_01_trf.m2", }, { fileId = "140990", - value = "helm_plate_raidpaladin_d_01_trm.m2", text = "helm_plate_raidpaladin_d_01_trm.m2", + value = "helm_plate_raidpaladin_d_01_trm.m2", }, { fileId = "140993", - value = "helm_plate_raidpaladin_e_01_bef.m2", text = "helm_plate_raidpaladin_e_01_bef.m2", + value = "helm_plate_raidpaladin_e_01_bef.m2", }, { fileId = "140994", - value = "helm_plate_raidpaladin_e_01_bem.m2", text = "helm_plate_raidpaladin_e_01_bem.m2", + value = "helm_plate_raidpaladin_e_01_bem.m2", }, { fileId = "140995", - value = "helm_plate_raidpaladin_e_01_drf.m2", text = "helm_plate_raidpaladin_e_01_drf.m2", + value = "helm_plate_raidpaladin_e_01_drf.m2", }, { fileId = "140996", - value = "helm_plate_raidpaladin_e_01_drm.m2", text = "helm_plate_raidpaladin_e_01_drm.m2", + value = "helm_plate_raidpaladin_e_01_drm.m2", }, { fileId = "140997", - value = "helm_plate_raidpaladin_e_01_dwf.m2", text = "helm_plate_raidpaladin_e_01_dwf.m2", + value = "helm_plate_raidpaladin_e_01_dwf.m2", }, { fileId = "140998", - value = "helm_plate_raidpaladin_e_01_dwm.m2", text = "helm_plate_raidpaladin_e_01_dwm.m2", + value = "helm_plate_raidpaladin_e_01_dwm.m2", }, { fileId = "140999", - value = "helm_plate_raidpaladin_e_01_gnf.m2", text = "helm_plate_raidpaladin_e_01_gnf.m2", + value = "helm_plate_raidpaladin_e_01_gnf.m2", }, { fileId = "141000", - value = "helm_plate_raidpaladin_e_01_gnm.m2", text = "helm_plate_raidpaladin_e_01_gnm.m2", + value = "helm_plate_raidpaladin_e_01_gnm.m2", }, { fileId = "141001", - value = "helm_plate_raidpaladin_e_01_huf.m2", text = "helm_plate_raidpaladin_e_01_huf.m2", + value = "helm_plate_raidpaladin_e_01_huf.m2", }, { fileId = "141002", - value = "helm_plate_raidpaladin_e_01_hum.m2", text = "helm_plate_raidpaladin_e_01_hum.m2", + value = "helm_plate_raidpaladin_e_01_hum.m2", }, { fileId = "141003", - value = "helm_plate_raidpaladin_e_01_nif.m2", text = "helm_plate_raidpaladin_e_01_nif.m2", + value = "helm_plate_raidpaladin_e_01_nif.m2", }, { fileId = "141004", - value = "helm_plate_raidpaladin_e_01_nim.m2", text = "helm_plate_raidpaladin_e_01_nim.m2", + value = "helm_plate_raidpaladin_e_01_nim.m2", }, { fileId = "141005", - value = "helm_plate_raidpaladin_e_01_orf.m2", text = "helm_plate_raidpaladin_e_01_orf.m2", + value = "helm_plate_raidpaladin_e_01_orf.m2", }, { fileId = "141006", - value = "helm_plate_raidpaladin_e_01_orm.m2", text = "helm_plate_raidpaladin_e_01_orm.m2", + value = "helm_plate_raidpaladin_e_01_orm.m2", }, { fileId = "141007", - value = "helm_plate_raidpaladin_e_01_scf.m2", text = "helm_plate_raidpaladin_e_01_scf.m2", + value = "helm_plate_raidpaladin_e_01_scf.m2", }, { fileId = "141008", - value = "helm_plate_raidpaladin_e_01_scm.m2", text = "helm_plate_raidpaladin_e_01_scm.m2", + value = "helm_plate_raidpaladin_e_01_scm.m2", }, { fileId = "141009", - value = "helm_plate_raidpaladin_e_01_taf.m2", text = "helm_plate_raidpaladin_e_01_taf.m2", + value = "helm_plate_raidpaladin_e_01_taf.m2", }, { fileId = "141010", - value = "helm_plate_raidpaladin_e_01_tam.m2", text = "helm_plate_raidpaladin_e_01_tam.m2", + value = "helm_plate_raidpaladin_e_01_tam.m2", }, { fileId = "141011", - value = "helm_plate_raidpaladin_e_01_trf.m2", text = "helm_plate_raidpaladin_e_01_trf.m2", + value = "helm_plate_raidpaladin_e_01_trf.m2", }, { fileId = "141012", - value = "helm_plate_raidpaladin_e_01_trm.m2", text = "helm_plate_raidpaladin_e_01_trm.m2", + value = "helm_plate_raidpaladin_e_01_trm.m2", }, { fileId = "141015", - value = "helm_plate_raidpaladin_f_01_bef.m2", text = "helm_plate_raidpaladin_f_01_bef.m2", + value = "helm_plate_raidpaladin_f_01_bef.m2", }, { fileId = "141016", - value = "helm_plate_raidpaladin_f_01_bem.m2", text = "helm_plate_raidpaladin_f_01_bem.m2", + value = "helm_plate_raidpaladin_f_01_bem.m2", }, { fileId = "141017", - value = "helm_plate_raidpaladin_f_01_drf.m2", text = "helm_plate_raidpaladin_f_01_drf.m2", + value = "helm_plate_raidpaladin_f_01_drf.m2", }, { fileId = "141018", - value = "helm_plate_raidpaladin_f_01_drm.m2", text = "helm_plate_raidpaladin_f_01_drm.m2", + value = "helm_plate_raidpaladin_f_01_drm.m2", }, { fileId = "141019", - value = "helm_plate_raidpaladin_f_01_dwf.m2", text = "helm_plate_raidpaladin_f_01_dwf.m2", + value = "helm_plate_raidpaladin_f_01_dwf.m2", }, { fileId = "141020", - value = "helm_plate_raidpaladin_f_01_dwm.m2", text = "helm_plate_raidpaladin_f_01_dwm.m2", + value = "helm_plate_raidpaladin_f_01_dwm.m2", }, { fileId = "141021", - value = "helm_plate_raidpaladin_f_01_gnf.m2", text = "helm_plate_raidpaladin_f_01_gnf.m2", + value = "helm_plate_raidpaladin_f_01_gnf.m2", }, { fileId = "141022", - value = "helm_plate_raidpaladin_f_01_gnm.m2", text = "helm_plate_raidpaladin_f_01_gnm.m2", + value = "helm_plate_raidpaladin_f_01_gnm.m2", }, { fileId = "141023", - value = "helm_plate_raidpaladin_f_01_gom.m2", text = "helm_plate_raidpaladin_f_01_gom.m2", + value = "helm_plate_raidpaladin_f_01_gom.m2", }, { fileId = "141024", - value = "helm_plate_raidpaladin_f_01_huf.m2", text = "helm_plate_raidpaladin_f_01_huf.m2", + value = "helm_plate_raidpaladin_f_01_huf.m2", }, { fileId = "141025", - value = "helm_plate_raidpaladin_f_01_hum.m2", text = "helm_plate_raidpaladin_f_01_hum.m2", + value = "helm_plate_raidpaladin_f_01_hum.m2", }, { fileId = "141026", - value = "helm_plate_raidpaladin_f_01_nif.m2", text = "helm_plate_raidpaladin_f_01_nif.m2", + value = "helm_plate_raidpaladin_f_01_nif.m2", }, { fileId = "141027", - value = "helm_plate_raidpaladin_f_01_nim.m2", text = "helm_plate_raidpaladin_f_01_nim.m2", + value = "helm_plate_raidpaladin_f_01_nim.m2", }, { fileId = "141028", - value = "helm_plate_raidpaladin_f_01_orf.m2", text = "helm_plate_raidpaladin_f_01_orf.m2", + value = "helm_plate_raidpaladin_f_01_orf.m2", }, { fileId = "141029", - value = "helm_plate_raidpaladin_f_01_orm.m2", text = "helm_plate_raidpaladin_f_01_orm.m2", + value = "helm_plate_raidpaladin_f_01_orm.m2", }, { fileId = "141030", - value = "helm_plate_raidpaladin_f_01_scf.m2", text = "helm_plate_raidpaladin_f_01_scf.m2", + value = "helm_plate_raidpaladin_f_01_scf.m2", }, { fileId = "141031", - value = "helm_plate_raidpaladin_f_01_scm.m2", text = "helm_plate_raidpaladin_f_01_scm.m2", + value = "helm_plate_raidpaladin_f_01_scm.m2", }, { fileId = "141032", - value = "helm_plate_raidpaladin_f_01_taf.m2", text = "helm_plate_raidpaladin_f_01_taf.m2", + value = "helm_plate_raidpaladin_f_01_taf.m2", }, { fileId = "141033", - value = "helm_plate_raidpaladin_f_01_tam.m2", text = "helm_plate_raidpaladin_f_01_tam.m2", + value = "helm_plate_raidpaladin_f_01_tam.m2", }, { fileId = "141034", - value = "helm_plate_raidpaladin_f_01_trf.m2", text = "helm_plate_raidpaladin_f_01_trf.m2", + value = "helm_plate_raidpaladin_f_01_trf.m2", }, { fileId = "141035", - value = "helm_plate_raidpaladin_f_01_trm.m2", text = "helm_plate_raidpaladin_f_01_trm.m2", + value = "helm_plate_raidpaladin_f_01_trm.m2", }, { fileId = "141039", - value = "helm_plate_raidwarrior_a_01_bef.m2", text = "helm_plate_raidwarrior_a_01_bef.m2", + value = "helm_plate_raidwarrior_a_01_bef.m2", }, { fileId = "141040", - value = "helm_plate_raidwarrior_a_01_bem.m2", text = "helm_plate_raidwarrior_a_01_bem.m2", + value = "helm_plate_raidwarrior_a_01_bem.m2", }, { fileId = "141041", - value = "helm_plate_raidwarrior_a_01_drf.m2", text = "helm_plate_raidwarrior_a_01_drf.m2", + value = "helm_plate_raidwarrior_a_01_drf.m2", }, { fileId = "141042", - value = "helm_plate_raidwarrior_a_01_drm.m2", text = "helm_plate_raidwarrior_a_01_drm.m2", + value = "helm_plate_raidwarrior_a_01_drm.m2", }, { fileId = "141043", - value = "helm_plate_raidwarrior_a_01_dwf.m2", text = "helm_plate_raidwarrior_a_01_dwf.m2", + value = "helm_plate_raidwarrior_a_01_dwf.m2", }, { fileId = "141044", - value = "helm_plate_raidwarrior_a_01_dwm.m2", text = "helm_plate_raidwarrior_a_01_dwm.m2", + value = "helm_plate_raidwarrior_a_01_dwm.m2", }, { fileId = "141045", - value = "helm_plate_raidwarrior_a_01_gnf.m2", text = "helm_plate_raidwarrior_a_01_gnf.m2", + value = "helm_plate_raidwarrior_a_01_gnf.m2", }, { fileId = "141046", - value = "helm_plate_raidwarrior_a_01_gnm.m2", text = "helm_plate_raidwarrior_a_01_gnm.m2", + value = "helm_plate_raidwarrior_a_01_gnm.m2", }, { fileId = "141047", - value = "helm_plate_raidwarrior_a_01_gof.m2", text = "helm_plate_raidwarrior_a_01_gof.m2", + value = "helm_plate_raidwarrior_a_01_gof.m2", }, { fileId = "141048", - value = "helm_plate_raidwarrior_a_01_gom.m2", text = "helm_plate_raidwarrior_a_01_gom.m2", + value = "helm_plate_raidwarrior_a_01_gom.m2", }, { fileId = "141049", - value = "helm_plate_raidwarrior_a_01_huf.m2", text = "helm_plate_raidwarrior_a_01_huf.m2", + value = "helm_plate_raidwarrior_a_01_huf.m2", }, { fileId = "141050", - value = "helm_plate_raidwarrior_a_01_hum.m2", text = "helm_plate_raidwarrior_a_01_hum.m2", + value = "helm_plate_raidwarrior_a_01_hum.m2", }, { fileId = "141051", - value = "helm_plate_raidwarrior_a_01_nif.m2", text = "helm_plate_raidwarrior_a_01_nif.m2", + value = "helm_plate_raidwarrior_a_01_nif.m2", }, { fileId = "141052", - value = "helm_plate_raidwarrior_a_01_nim.m2", text = "helm_plate_raidwarrior_a_01_nim.m2", + value = "helm_plate_raidwarrior_a_01_nim.m2", }, { fileId = "141053", - value = "helm_plate_raidwarrior_a_01_orf.m2", text = "helm_plate_raidwarrior_a_01_orf.m2", + value = "helm_plate_raidwarrior_a_01_orf.m2", }, { fileId = "141054", - value = "helm_plate_raidwarrior_a_01_orm.m2", text = "helm_plate_raidwarrior_a_01_orm.m2", + value = "helm_plate_raidwarrior_a_01_orm.m2", }, { fileId = "141055", - value = "helm_plate_raidwarrior_a_01_scf.m2", text = "helm_plate_raidwarrior_a_01_scf.m2", + value = "helm_plate_raidwarrior_a_01_scf.m2", }, { fileId = "141056", - value = "helm_plate_raidwarrior_a_01_scm.m2", text = "helm_plate_raidwarrior_a_01_scm.m2", + value = "helm_plate_raidwarrior_a_01_scm.m2", }, { fileId = "141057", - value = "helm_plate_raidwarrior_a_01_taf.m2", text = "helm_plate_raidwarrior_a_01_taf.m2", + value = "helm_plate_raidwarrior_a_01_taf.m2", }, { fileId = "141058", - value = "helm_plate_raidwarrior_a_01_tam.m2", text = "helm_plate_raidwarrior_a_01_tam.m2", + value = "helm_plate_raidwarrior_a_01_tam.m2", }, { fileId = "141059", - value = "helm_plate_raidwarrior_a_01_trf.m2", text = "helm_plate_raidwarrior_a_01_trf.m2", + value = "helm_plate_raidwarrior_a_01_trf.m2", }, { fileId = "141060", - value = "helm_plate_raidwarrior_a_01_trm.m2", text = "helm_plate_raidwarrior_a_01_trm.m2", + value = "helm_plate_raidwarrior_a_01_trm.m2", }, { fileId = "141066", - value = "helm_plate_raidwarrior_b_01_bef.m2", text = "helm_plate_raidwarrior_b_01_bef.m2", + value = "helm_plate_raidwarrior_b_01_bef.m2", }, { fileId = "141067", - value = "helm_plate_raidwarrior_b_01_bem.m2", text = "helm_plate_raidwarrior_b_01_bem.m2", + value = "helm_plate_raidwarrior_b_01_bem.m2", }, { fileId = "141068", - value = "helm_plate_raidwarrior_b_01_drf.m2", text = "helm_plate_raidwarrior_b_01_drf.m2", + value = "helm_plate_raidwarrior_b_01_drf.m2", }, { fileId = "141069", - value = "helm_plate_raidwarrior_b_01_drm.m2", text = "helm_plate_raidwarrior_b_01_drm.m2", + value = "helm_plate_raidwarrior_b_01_drm.m2", }, { fileId = "141070", - value = "helm_plate_raidwarrior_b_01_dwf.m2", text = "helm_plate_raidwarrior_b_01_dwf.m2", + value = "helm_plate_raidwarrior_b_01_dwf.m2", }, { fileId = "141071", - value = "helm_plate_raidwarrior_b_01_dwm.m2", text = "helm_plate_raidwarrior_b_01_dwm.m2", + value = "helm_plate_raidwarrior_b_01_dwm.m2", }, { fileId = "141072", - value = "helm_plate_raidwarrior_b_01_gnf.m2", text = "helm_plate_raidwarrior_b_01_gnf.m2", + value = "helm_plate_raidwarrior_b_01_gnf.m2", }, { fileId = "141073", - value = "helm_plate_raidwarrior_b_01_gnm.m2", text = "helm_plate_raidwarrior_b_01_gnm.m2", + value = "helm_plate_raidwarrior_b_01_gnm.m2", }, { fileId = "141074", - value = "helm_plate_raidwarrior_b_01_gof.m2", text = "helm_plate_raidwarrior_b_01_gof.m2", + value = "helm_plate_raidwarrior_b_01_gof.m2", }, { fileId = "141075", - value = "helm_plate_raidwarrior_b_01_gom.m2", text = "helm_plate_raidwarrior_b_01_gom.m2", + value = "helm_plate_raidwarrior_b_01_gom.m2", }, { fileId = "141076", - value = "helm_plate_raidwarrior_b_01_huf.m2", text = "helm_plate_raidwarrior_b_01_huf.m2", + value = "helm_plate_raidwarrior_b_01_huf.m2", }, { fileId = "141077", - value = "helm_plate_raidwarrior_b_01_hum.m2", text = "helm_plate_raidwarrior_b_01_hum.m2", + value = "helm_plate_raidwarrior_b_01_hum.m2", }, { fileId = "141078", - value = "helm_plate_raidwarrior_b_01_nif.m2", text = "helm_plate_raidwarrior_b_01_nif.m2", + value = "helm_plate_raidwarrior_b_01_nif.m2", }, { fileId = "141079", - value = "helm_plate_raidwarrior_b_01_nim.m2", text = "helm_plate_raidwarrior_b_01_nim.m2", + value = "helm_plate_raidwarrior_b_01_nim.m2", }, { fileId = "141080", - value = "helm_plate_raidwarrior_b_01_orf.m2", text = "helm_plate_raidwarrior_b_01_orf.m2", + value = "helm_plate_raidwarrior_b_01_orf.m2", }, { fileId = "141081", - value = "helm_plate_raidwarrior_b_01_orm.m2", text = "helm_plate_raidwarrior_b_01_orm.m2", + value = "helm_plate_raidwarrior_b_01_orm.m2", }, { fileId = "141082", - value = "helm_plate_raidwarrior_b_01_scf.m2", text = "helm_plate_raidwarrior_b_01_scf.m2", + value = "helm_plate_raidwarrior_b_01_scf.m2", }, { fileId = "141083", - value = "helm_plate_raidwarrior_b_01_scm.m2", text = "helm_plate_raidwarrior_b_01_scm.m2", + value = "helm_plate_raidwarrior_b_01_scm.m2", }, { fileId = "141084", - value = "helm_plate_raidwarrior_b_01_taf.m2", text = "helm_plate_raidwarrior_b_01_taf.m2", + value = "helm_plate_raidwarrior_b_01_taf.m2", }, { fileId = "141085", - value = "helm_plate_raidwarrior_b_01_tam.m2", text = "helm_plate_raidwarrior_b_01_tam.m2", + value = "helm_plate_raidwarrior_b_01_tam.m2", }, { fileId = "141086", - value = "helm_plate_raidwarrior_b_01_trf.m2", text = "helm_plate_raidwarrior_b_01_trf.m2", + value = "helm_plate_raidwarrior_b_01_trf.m2", }, { fileId = "141087", - value = "helm_plate_raidwarrior_b_01_trm.m2", text = "helm_plate_raidwarrior_b_01_trm.m2", + value = "helm_plate_raidwarrior_b_01_trm.m2", }, { fileId = "141093", - value = "helm_plate_raidwarrior_c_01_bef.m2", text = "helm_plate_raidwarrior_c_01_bef.m2", + value = "helm_plate_raidwarrior_c_01_bef.m2", }, { fileId = "141094", - value = "helm_plate_raidwarrior_c_01_bem.m2", text = "helm_plate_raidwarrior_c_01_bem.m2", + value = "helm_plate_raidwarrior_c_01_bem.m2", }, { fileId = "141095", - value = "helm_plate_raidwarrior_c_01_drf.m2", text = "helm_plate_raidwarrior_c_01_drf.m2", + value = "helm_plate_raidwarrior_c_01_drf.m2", }, { fileId = "141096", - value = "helm_plate_raidwarrior_c_01_drm.m2", text = "helm_plate_raidwarrior_c_01_drm.m2", + value = "helm_plate_raidwarrior_c_01_drm.m2", }, { fileId = "141097", - value = "helm_plate_raidwarrior_c_01_dwf.m2", text = "helm_plate_raidwarrior_c_01_dwf.m2", + value = "helm_plate_raidwarrior_c_01_dwf.m2", }, { fileId = "141098", - value = "helm_plate_raidwarrior_c_01_dwm.m2", text = "helm_plate_raidwarrior_c_01_dwm.m2", + value = "helm_plate_raidwarrior_c_01_dwm.m2", }, { fileId = "141099", - value = "helm_plate_raidwarrior_c_01_gnf.m2", text = "helm_plate_raidwarrior_c_01_gnf.m2", + value = "helm_plate_raidwarrior_c_01_gnf.m2", }, { fileId = "141100", - value = "helm_plate_raidwarrior_c_01_gnm.m2", text = "helm_plate_raidwarrior_c_01_gnm.m2", + value = "helm_plate_raidwarrior_c_01_gnm.m2", }, { fileId = "141101", - value = "helm_plate_raidwarrior_c_01_gof.m2", text = "helm_plate_raidwarrior_c_01_gof.m2", + value = "helm_plate_raidwarrior_c_01_gof.m2", }, { fileId = "141102", - value = "helm_plate_raidwarrior_c_01_gom.m2", text = "helm_plate_raidwarrior_c_01_gom.m2", + value = "helm_plate_raidwarrior_c_01_gom.m2", }, { fileId = "141103", - value = "helm_plate_raidwarrior_c_01_huf.m2", text = "helm_plate_raidwarrior_c_01_huf.m2", + value = "helm_plate_raidwarrior_c_01_huf.m2", }, { fileId = "141104", - value = "helm_plate_raidwarrior_c_01_hum.m2", text = "helm_plate_raidwarrior_c_01_hum.m2", + value = "helm_plate_raidwarrior_c_01_hum.m2", }, { fileId = "141105", - value = "helm_plate_raidwarrior_c_01_nif.m2", text = "helm_plate_raidwarrior_c_01_nif.m2", + value = "helm_plate_raidwarrior_c_01_nif.m2", }, { fileId = "141106", - value = "helm_plate_raidwarrior_c_01_nim.m2", text = "helm_plate_raidwarrior_c_01_nim.m2", + value = "helm_plate_raidwarrior_c_01_nim.m2", }, { fileId = "141107", - value = "helm_plate_raidwarrior_c_01_orf.m2", text = "helm_plate_raidwarrior_c_01_orf.m2", + value = "helm_plate_raidwarrior_c_01_orf.m2", }, { fileId = "141108", - value = "helm_plate_raidwarrior_c_01_orm.m2", text = "helm_plate_raidwarrior_c_01_orm.m2", + value = "helm_plate_raidwarrior_c_01_orm.m2", }, { fileId = "141109", - value = "helm_plate_raidwarrior_c_01_scf.m2", text = "helm_plate_raidwarrior_c_01_scf.m2", + value = "helm_plate_raidwarrior_c_01_scf.m2", }, { fileId = "141110", - value = "helm_plate_raidwarrior_c_01_scm.m2", text = "helm_plate_raidwarrior_c_01_scm.m2", + value = "helm_plate_raidwarrior_c_01_scm.m2", }, { fileId = "141111", - value = "helm_plate_raidwarrior_c_01_taf.m2", text = "helm_plate_raidwarrior_c_01_taf.m2", + value = "helm_plate_raidwarrior_c_01_taf.m2", }, { fileId = "141112", - value = "helm_plate_raidwarrior_c_01_tam.m2", text = "helm_plate_raidwarrior_c_01_tam.m2", + value = "helm_plate_raidwarrior_c_01_tam.m2", }, { fileId = "141113", - value = "helm_plate_raidwarrior_c_01_trf.m2", text = "helm_plate_raidwarrior_c_01_trf.m2", + value = "helm_plate_raidwarrior_c_01_trf.m2", }, { fileId = "141114", - value = "helm_plate_raidwarrior_c_01_trm.m2", text = "helm_plate_raidwarrior_c_01_trm.m2", + value = "helm_plate_raidwarrior_c_01_trm.m2", }, { fileId = "141117", - value = "helm_plate_raidwarrior_d_01_bef.m2", text = "helm_plate_raidwarrior_d_01_bef.m2", + value = "helm_plate_raidwarrior_d_01_bef.m2", }, { fileId = "141118", - value = "helm_plate_raidwarrior_d_01_bem.m2", text = "helm_plate_raidwarrior_d_01_bem.m2", + value = "helm_plate_raidwarrior_d_01_bem.m2", }, { fileId = "141119", - value = "helm_plate_raidwarrior_d_01_drf.m2", text = "helm_plate_raidwarrior_d_01_drf.m2", + value = "helm_plate_raidwarrior_d_01_drf.m2", }, { fileId = "141120", - value = "helm_plate_raidwarrior_d_01_drm.m2", text = "helm_plate_raidwarrior_d_01_drm.m2", + value = "helm_plate_raidwarrior_d_01_drm.m2", }, { fileId = "141121", - value = "helm_plate_raidwarrior_d_01_dwf.m2", text = "helm_plate_raidwarrior_d_01_dwf.m2", + value = "helm_plate_raidwarrior_d_01_dwf.m2", }, { fileId = "141122", - value = "helm_plate_raidwarrior_d_01_dwm.m2", text = "helm_plate_raidwarrior_d_01_dwm.m2", + value = "helm_plate_raidwarrior_d_01_dwm.m2", }, { fileId = "141123", - value = "helm_plate_raidwarrior_d_01_gnf.m2", text = "helm_plate_raidwarrior_d_01_gnf.m2", + value = "helm_plate_raidwarrior_d_01_gnf.m2", }, { fileId = "141124", - value = "helm_plate_raidwarrior_d_01_gnm.m2", text = "helm_plate_raidwarrior_d_01_gnm.m2", + value = "helm_plate_raidwarrior_d_01_gnm.m2", }, { fileId = "141125", - value = "helm_plate_raidwarrior_d_01_gof.m2", text = "helm_plate_raidwarrior_d_01_gof.m2", + value = "helm_plate_raidwarrior_d_01_gof.m2", }, { fileId = "141126", - value = "helm_plate_raidwarrior_d_01_gom.m2", text = "helm_plate_raidwarrior_d_01_gom.m2", + value = "helm_plate_raidwarrior_d_01_gom.m2", }, { fileId = "141127", - value = "helm_plate_raidwarrior_d_01_huf.m2", text = "helm_plate_raidwarrior_d_01_huf.m2", + value = "helm_plate_raidwarrior_d_01_huf.m2", }, { fileId = "141128", - value = "helm_plate_raidwarrior_d_01_hum.m2", text = "helm_plate_raidwarrior_d_01_hum.m2", + value = "helm_plate_raidwarrior_d_01_hum.m2", }, { fileId = "141129", - value = "helm_plate_raidwarrior_d_01_nif.m2", text = "helm_plate_raidwarrior_d_01_nif.m2", + value = "helm_plate_raidwarrior_d_01_nif.m2", }, { fileId = "141130", - value = "helm_plate_raidwarrior_d_01_nim.m2", text = "helm_plate_raidwarrior_d_01_nim.m2", + value = "helm_plate_raidwarrior_d_01_nim.m2", }, { fileId = "141131", - value = "helm_plate_raidwarrior_d_01_orf.m2", text = "helm_plate_raidwarrior_d_01_orf.m2", + value = "helm_plate_raidwarrior_d_01_orf.m2", }, { fileId = "141132", - value = "helm_plate_raidwarrior_d_01_orm.m2", text = "helm_plate_raidwarrior_d_01_orm.m2", + value = "helm_plate_raidwarrior_d_01_orm.m2", }, { fileId = "141133", - value = "helm_plate_raidwarrior_d_01_scf.m2", text = "helm_plate_raidwarrior_d_01_scf.m2", + value = "helm_plate_raidwarrior_d_01_scf.m2", }, { fileId = "141134", - value = "helm_plate_raidwarrior_d_01_scm.m2", text = "helm_plate_raidwarrior_d_01_scm.m2", + value = "helm_plate_raidwarrior_d_01_scm.m2", }, { fileId = "141135", - value = "helm_plate_raidwarrior_d_01_taf.m2", text = "helm_plate_raidwarrior_d_01_taf.m2", + value = "helm_plate_raidwarrior_d_01_taf.m2", }, { fileId = "141136", - value = "helm_plate_raidwarrior_d_01_tam.m2", text = "helm_plate_raidwarrior_d_01_tam.m2", + value = "helm_plate_raidwarrior_d_01_tam.m2", }, { fileId = "141137", - value = "helm_plate_raidwarrior_d_01_trf.m2", text = "helm_plate_raidwarrior_d_01_trf.m2", + value = "helm_plate_raidwarrior_d_01_trf.m2", }, { fileId = "141138", - value = "helm_plate_raidwarrior_d_01_trm.m2", text = "helm_plate_raidwarrior_d_01_trm.m2", + value = "helm_plate_raidwarrior_d_01_trm.m2", }, { fileId = "141141", - value = "helm_plate_raidwarrior_e_01_bef.m2", text = "helm_plate_raidwarrior_e_01_bef.m2", + value = "helm_plate_raidwarrior_e_01_bef.m2", }, { fileId = "141142", - value = "helm_plate_raidwarrior_e_01_bem.m2", text = "helm_plate_raidwarrior_e_01_bem.m2", + value = "helm_plate_raidwarrior_e_01_bem.m2", }, { fileId = "141143", - value = "helm_plate_raidwarrior_e_01_drf.m2", text = "helm_plate_raidwarrior_e_01_drf.m2", + value = "helm_plate_raidwarrior_e_01_drf.m2", }, { fileId = "141144", - value = "helm_plate_raidwarrior_e_01_drm.m2", text = "helm_plate_raidwarrior_e_01_drm.m2", + value = "helm_plate_raidwarrior_e_01_drm.m2", }, { fileId = "141145", - value = "helm_plate_raidwarrior_e_01_dwf.m2", text = "helm_plate_raidwarrior_e_01_dwf.m2", + value = "helm_plate_raidwarrior_e_01_dwf.m2", }, { fileId = "141146", - value = "helm_plate_raidwarrior_e_01_dwm.m2", text = "helm_plate_raidwarrior_e_01_dwm.m2", + value = "helm_plate_raidwarrior_e_01_dwm.m2", }, { fileId = "141147", - value = "helm_plate_raidwarrior_e_01_gnf.m2", text = "helm_plate_raidwarrior_e_01_gnf.m2", + value = "helm_plate_raidwarrior_e_01_gnf.m2", }, { fileId = "141148", - value = "helm_plate_raidwarrior_e_01_gnm.m2", text = "helm_plate_raidwarrior_e_01_gnm.m2", + value = "helm_plate_raidwarrior_e_01_gnm.m2", }, { fileId = "141149", - value = "helm_plate_raidwarrior_e_01_gof.m2", text = "helm_plate_raidwarrior_e_01_gof.m2", + value = "helm_plate_raidwarrior_e_01_gof.m2", }, { fileId = "141150", - value = "helm_plate_raidwarrior_e_01_gom.m2", text = "helm_plate_raidwarrior_e_01_gom.m2", + value = "helm_plate_raidwarrior_e_01_gom.m2", }, { fileId = "141151", - value = "helm_plate_raidwarrior_e_01_huf.m2", text = "helm_plate_raidwarrior_e_01_huf.m2", + value = "helm_plate_raidwarrior_e_01_huf.m2", }, { fileId = "141152", - value = "helm_plate_raidwarrior_e_01_hum.m2", text = "helm_plate_raidwarrior_e_01_hum.m2", + value = "helm_plate_raidwarrior_e_01_hum.m2", }, { fileId = "141153", - value = "helm_plate_raidwarrior_e_01_nif.m2", text = "helm_plate_raidwarrior_e_01_nif.m2", + value = "helm_plate_raidwarrior_e_01_nif.m2", }, { fileId = "141154", - value = "helm_plate_raidwarrior_e_01_nim.m2", text = "helm_plate_raidwarrior_e_01_nim.m2", + value = "helm_plate_raidwarrior_e_01_nim.m2", }, { fileId = "141155", - value = "helm_plate_raidwarrior_e_01_orf.m2", text = "helm_plate_raidwarrior_e_01_orf.m2", + value = "helm_plate_raidwarrior_e_01_orf.m2", }, { fileId = "141156", - value = "helm_plate_raidwarrior_e_01_orm.m2", text = "helm_plate_raidwarrior_e_01_orm.m2", + value = "helm_plate_raidwarrior_e_01_orm.m2", }, { fileId = "141157", - value = "helm_plate_raidwarrior_e_01_scf.m2", text = "helm_plate_raidwarrior_e_01_scf.m2", + value = "helm_plate_raidwarrior_e_01_scf.m2", }, { fileId = "141158", - value = "helm_plate_raidwarrior_e_01_scm.m2", text = "helm_plate_raidwarrior_e_01_scm.m2", + value = "helm_plate_raidwarrior_e_01_scm.m2", }, { fileId = "141159", - value = "helm_plate_raidwarrior_e_01_taf.m2", text = "helm_plate_raidwarrior_e_01_taf.m2", + value = "helm_plate_raidwarrior_e_01_taf.m2", }, { fileId = "141160", - value = "helm_plate_raidwarrior_e_01_tam.m2", text = "helm_plate_raidwarrior_e_01_tam.m2", + value = "helm_plate_raidwarrior_e_01_tam.m2", }, { fileId = "141161", - value = "helm_plate_raidwarrior_e_01_trf.m2", text = "helm_plate_raidwarrior_e_01_trf.m2", + value = "helm_plate_raidwarrior_e_01_trf.m2", }, { fileId = "141162", - value = "helm_plate_raidwarrior_e_01_trm.m2", text = "helm_plate_raidwarrior_e_01_trm.m2", + value = "helm_plate_raidwarrior_e_01_trm.m2", }, { fileId = "141165", - value = "helm_plate_raidwarrior_f_01_bef.m2", text = "helm_plate_raidwarrior_f_01_bef.m2", + value = "helm_plate_raidwarrior_f_01_bef.m2", }, { fileId = "141166", - value = "helm_plate_raidwarrior_f_01_bem.m2", text = "helm_plate_raidwarrior_f_01_bem.m2", + value = "helm_plate_raidwarrior_f_01_bem.m2", }, { fileId = "141167", - value = "helm_plate_raidwarrior_f_01_drf.m2", text = "helm_plate_raidwarrior_f_01_drf.m2", + value = "helm_plate_raidwarrior_f_01_drf.m2", }, { fileId = "141168", - value = "helm_plate_raidwarrior_f_01_drm.m2", text = "helm_plate_raidwarrior_f_01_drm.m2", + value = "helm_plate_raidwarrior_f_01_drm.m2", }, { fileId = "141169", - value = "helm_plate_raidwarrior_f_01_dwf.m2", text = "helm_plate_raidwarrior_f_01_dwf.m2", + value = "helm_plate_raidwarrior_f_01_dwf.m2", }, { fileId = "141170", - value = "helm_plate_raidwarrior_f_01_dwm.m2", text = "helm_plate_raidwarrior_f_01_dwm.m2", + value = "helm_plate_raidwarrior_f_01_dwm.m2", }, { fileId = "141172", - value = "helm_plate_raidwarrior_f_01_gnf.m2", text = "helm_plate_raidwarrior_f_01_gnf.m2", + value = "helm_plate_raidwarrior_f_01_gnf.m2", }, { fileId = "141173", - value = "helm_plate_raidwarrior_f_01_gnm.m2", text = "helm_plate_raidwarrior_f_01_gnm.m2", + value = "helm_plate_raidwarrior_f_01_gnm.m2", }, { fileId = "141174", - value = "helm_plate_raidwarrior_f_01_gof.m2", text = "helm_plate_raidwarrior_f_01_gof.m2", + value = "helm_plate_raidwarrior_f_01_gof.m2", }, { fileId = "141175", - value = "helm_plate_raidwarrior_f_01_gom.m2", text = "helm_plate_raidwarrior_f_01_gom.m2", + value = "helm_plate_raidwarrior_f_01_gom.m2", }, { fileId = "141176", - value = "helm_plate_raidwarrior_f_01_huf.m2", text = "helm_plate_raidwarrior_f_01_huf.m2", + value = "helm_plate_raidwarrior_f_01_huf.m2", }, { fileId = "141177", - value = "helm_plate_raidwarrior_f_01_hum.m2", text = "helm_plate_raidwarrior_f_01_hum.m2", + value = "helm_plate_raidwarrior_f_01_hum.m2", }, { fileId = "141178", - value = "helm_plate_raidwarrior_f_01_nif.m2", text = "helm_plate_raidwarrior_f_01_nif.m2", + value = "helm_plate_raidwarrior_f_01_nif.m2", }, { fileId = "141179", - value = "helm_plate_raidwarrior_f_01_nim.m2", text = "helm_plate_raidwarrior_f_01_nim.m2", + value = "helm_plate_raidwarrior_f_01_nim.m2", }, { fileId = "141180", - value = "helm_plate_raidwarrior_f_01_orf.m2", text = "helm_plate_raidwarrior_f_01_orf.m2", + value = "helm_plate_raidwarrior_f_01_orf.m2", }, { fileId = "141181", - value = "helm_plate_raidwarrior_f_01_orm.m2", text = "helm_plate_raidwarrior_f_01_orm.m2", + value = "helm_plate_raidwarrior_f_01_orm.m2", }, { fileId = "141182", - value = "helm_plate_raidwarrior_f_01_scf.m2", text = "helm_plate_raidwarrior_f_01_scf.m2", + value = "helm_plate_raidwarrior_f_01_scf.m2", }, { fileId = "141183", - value = "helm_plate_raidwarrior_f_01_scm.m2", text = "helm_plate_raidwarrior_f_01_scm.m2", + value = "helm_plate_raidwarrior_f_01_scm.m2", }, { fileId = "141184", - value = "helm_plate_raidwarrior_f_01_taf.m2", text = "helm_plate_raidwarrior_f_01_taf.m2", + value = "helm_plate_raidwarrior_f_01_taf.m2", }, { fileId = "141185", - value = "helm_plate_raidwarrior_f_01_tam.m2", text = "helm_plate_raidwarrior_f_01_tam.m2", + value = "helm_plate_raidwarrior_f_01_tam.m2", }, { fileId = "141186", - value = "helm_plate_raidwarrior_f_01_trf.m2", text = "helm_plate_raidwarrior_f_01_trf.m2", + value = "helm_plate_raidwarrior_f_01_trf.m2", }, { fileId = "141187", - value = "helm_plate_raidwarrior_f_01_trm.m2", text = "helm_plate_raidwarrior_f_01_trm.m2", + value = "helm_plate_raidwarrior_f_01_trm.m2", }, { fileId = "141194", - value = "helm_plate_sunwell_d_01_bef.m2", text = "helm_plate_sunwell_d_01_bef.m2", + value = "helm_plate_sunwell_d_01_bef.m2", }, { fileId = "141195", - value = "helm_plate_sunwell_d_01_bem.m2", text = "helm_plate_sunwell_d_01_bem.m2", + value = "helm_plate_sunwell_d_01_bem.m2", }, { fileId = "141196", - value = "helm_plate_sunwell_d_01_drf.m2", text = "helm_plate_sunwell_d_01_drf.m2", + value = "helm_plate_sunwell_d_01_drf.m2", }, { fileId = "141197", - value = "helm_plate_sunwell_d_01_drm.m2", text = "helm_plate_sunwell_d_01_drm.m2", + value = "helm_plate_sunwell_d_01_drm.m2", }, { fileId = "141198", - value = "helm_plate_sunwell_d_01_dwf.m2", text = "helm_plate_sunwell_d_01_dwf.m2", + value = "helm_plate_sunwell_d_01_dwf.m2", }, { fileId = "141199", - value = "helm_plate_sunwell_d_01_dwm.m2", text = "helm_plate_sunwell_d_01_dwm.m2", + value = "helm_plate_sunwell_d_01_dwm.m2", }, { fileId = "141200", - value = "helm_plate_sunwell_d_01_gnf.m2", text = "helm_plate_sunwell_d_01_gnf.m2", + value = "helm_plate_sunwell_d_01_gnf.m2", }, { fileId = "141201", - value = "helm_plate_sunwell_d_01_gnm.m2", text = "helm_plate_sunwell_d_01_gnm.m2", + value = "helm_plate_sunwell_d_01_gnm.m2", }, { fileId = "141202", - value = "helm_plate_sunwell_d_01_gof.m2", text = "helm_plate_sunwell_d_01_gof.m2", + value = "helm_plate_sunwell_d_01_gof.m2", }, { fileId = "141203", - value = "helm_plate_sunwell_d_01_gom.m2", text = "helm_plate_sunwell_d_01_gom.m2", + value = "helm_plate_sunwell_d_01_gom.m2", }, { fileId = "141204", - value = "helm_plate_sunwell_d_01_huf.m2", text = "helm_plate_sunwell_d_01_huf.m2", + value = "helm_plate_sunwell_d_01_huf.m2", }, { fileId = "141205", - value = "helm_plate_sunwell_d_01_hum.m2", text = "helm_plate_sunwell_d_01_hum.m2", + value = "helm_plate_sunwell_d_01_hum.m2", }, { fileId = "141206", - value = "helm_plate_sunwell_d_01_nif.m2", text = "helm_plate_sunwell_d_01_nif.m2", + value = "helm_plate_sunwell_d_01_nif.m2", }, { fileId = "141207", - value = "helm_plate_sunwell_d_01_nim.m2", text = "helm_plate_sunwell_d_01_nim.m2", + value = "helm_plate_sunwell_d_01_nim.m2", }, { fileId = "141208", - value = "helm_plate_sunwell_d_01_orf.m2", text = "helm_plate_sunwell_d_01_orf.m2", + value = "helm_plate_sunwell_d_01_orf.m2", }, { fileId = "141209", - value = "helm_plate_sunwell_d_01_orm.m2", text = "helm_plate_sunwell_d_01_orm.m2", + value = "helm_plate_sunwell_d_01_orm.m2", }, { fileId = "141210", - value = "helm_plate_sunwell_d_01_scf.m2", text = "helm_plate_sunwell_d_01_scf.m2", + value = "helm_plate_sunwell_d_01_scf.m2", }, { fileId = "141211", - value = "helm_plate_sunwell_d_01_scm.m2", text = "helm_plate_sunwell_d_01_scm.m2", + value = "helm_plate_sunwell_d_01_scm.m2", }, { fileId = "141212", - value = "helm_plate_sunwell_d_01_taf.m2", text = "helm_plate_sunwell_d_01_taf.m2", + value = "helm_plate_sunwell_d_01_taf.m2", }, { fileId = "141213", - value = "helm_plate_sunwell_d_01_tam.m2", text = "helm_plate_sunwell_d_01_tam.m2", + value = "helm_plate_sunwell_d_01_tam.m2", }, { fileId = "141214", - value = "helm_plate_sunwell_d_01_trf.m2", text = "helm_plate_sunwell_d_01_trf.m2", + value = "helm_plate_sunwell_d_01_trf.m2", }, { fileId = "141215", - value = "helm_plate_sunwell_d_01_trm.m2", text = "helm_plate_sunwell_d_01_trm.m2", + value = "helm_plate_sunwell_d_01_trm.m2", }, { fileId = "141246", - value = "helm_plate_zulaman_d_01_bef.m2", text = "helm_plate_zulaman_d_01_bef.m2", + value = "helm_plate_zulaman_d_01_bef.m2", }, { fileId = "141247", - value = "helm_plate_zulaman_d_01_bem.m2", text = "helm_plate_zulaman_d_01_bem.m2", + value = "helm_plate_zulaman_d_01_bem.m2", }, { fileId = "141248", - value = "helm_plate_zulaman_d_01_drf.m2", text = "helm_plate_zulaman_d_01_drf.m2", + value = "helm_plate_zulaman_d_01_drf.m2", }, { fileId = "141249", - value = "helm_plate_zulaman_d_01_drm.m2", text = "helm_plate_zulaman_d_01_drm.m2", + value = "helm_plate_zulaman_d_01_drm.m2", }, { fileId = "141250", - value = "helm_plate_zulaman_d_01_dwf.m2", text = "helm_plate_zulaman_d_01_dwf.m2", + value = "helm_plate_zulaman_d_01_dwf.m2", }, { fileId = "141251", - value = "helm_plate_zulaman_d_01_dwm.m2", text = "helm_plate_zulaman_d_01_dwm.m2", + value = "helm_plate_zulaman_d_01_dwm.m2", }, { fileId = "141252", - value = "helm_plate_zulaman_d_01_gnf.m2", text = "helm_plate_zulaman_d_01_gnf.m2", + value = "helm_plate_zulaman_d_01_gnf.m2", }, { fileId = "141253", - value = "helm_plate_zulaman_d_01_gnm.m2", text = "helm_plate_zulaman_d_01_gnm.m2", + value = "helm_plate_zulaman_d_01_gnm.m2", }, { fileId = "141254", - value = "helm_plate_zulaman_d_01_gof.m2", text = "helm_plate_zulaman_d_01_gof.m2", + value = "helm_plate_zulaman_d_01_gof.m2", }, { fileId = "141255", - value = "helm_plate_zulaman_d_01_gom.m2", text = "helm_plate_zulaman_d_01_gom.m2", + value = "helm_plate_zulaman_d_01_gom.m2", }, { fileId = "141256", - value = "helm_plate_zulaman_d_01_huf.m2", text = "helm_plate_zulaman_d_01_huf.m2", + value = "helm_plate_zulaman_d_01_huf.m2", }, { fileId = "141257", - value = "helm_plate_zulaman_d_01_hum.m2", text = "helm_plate_zulaman_d_01_hum.m2", + value = "helm_plate_zulaman_d_01_hum.m2", }, { fileId = "141258", - value = "helm_plate_zulaman_d_01_nif.m2", text = "helm_plate_zulaman_d_01_nif.m2", + value = "helm_plate_zulaman_d_01_nif.m2", }, { fileId = "141259", - value = "helm_plate_zulaman_d_01_nim.m2", text = "helm_plate_zulaman_d_01_nim.m2", + value = "helm_plate_zulaman_d_01_nim.m2", }, { fileId = "141260", - value = "helm_plate_zulaman_d_01_orf.m2", text = "helm_plate_zulaman_d_01_orf.m2", + value = "helm_plate_zulaman_d_01_orf.m2", }, { fileId = "141261", - value = "helm_plate_zulaman_d_01_orm.m2", text = "helm_plate_zulaman_d_01_orm.m2", + value = "helm_plate_zulaman_d_01_orm.m2", }, { fileId = "141262", - value = "helm_plate_zulaman_d_01_scf.m2", text = "helm_plate_zulaman_d_01_scf.m2", + value = "helm_plate_zulaman_d_01_scf.m2", }, { fileId = "141263", - value = "helm_plate_zulaman_d_01_scm.m2", text = "helm_plate_zulaman_d_01_scm.m2", + value = "helm_plate_zulaman_d_01_scm.m2", }, { fileId = "141264", - value = "helm_plate_zulaman_d_01_taf.m2", text = "helm_plate_zulaman_d_01_taf.m2", + value = "helm_plate_zulaman_d_01_taf.m2", }, { fileId = "141265", - value = "helm_plate_zulaman_d_01_tam.m2", text = "helm_plate_zulaman_d_01_tam.m2", + value = "helm_plate_zulaman_d_01_tam.m2", }, { fileId = "141266", - value = "helm_plate_zulaman_d_01_trf.m2", text = "helm_plate_zulaman_d_01_trf.m2", + value = "helm_plate_zulaman_d_01_trf.m2", }, { fileId = "141267", - value = "helm_plate_zulaman_d_01_trm.m2", text = "helm_plate_zulaman_d_01_trm.m2", + value = "helm_plate_zulaman_d_01_trm.m2", }, { fileId = "141272", - value = "helm_plate_zulaman_d_02_bef.m2", text = "helm_plate_zulaman_d_02_bef.m2", + value = "helm_plate_zulaman_d_02_bef.m2", }, { fileId = "141273", - value = "helm_plate_zulaman_d_02_bem.m2", text = "helm_plate_zulaman_d_02_bem.m2", + value = "helm_plate_zulaman_d_02_bem.m2", }, { fileId = "141274", - value = "helm_plate_zulaman_d_02_drf.m2", text = "helm_plate_zulaman_d_02_drf.m2", + value = "helm_plate_zulaman_d_02_drf.m2", }, { fileId = "141275", - value = "helm_plate_zulaman_d_02_drm.m2", text = "helm_plate_zulaman_d_02_drm.m2", + value = "helm_plate_zulaman_d_02_drm.m2", }, { fileId = "141276", - value = "helm_plate_zulaman_d_02_dwf.m2", text = "helm_plate_zulaman_d_02_dwf.m2", + value = "helm_plate_zulaman_d_02_dwf.m2", }, { fileId = "141277", - value = "helm_plate_zulaman_d_02_dwm.m2", text = "helm_plate_zulaman_d_02_dwm.m2", + value = "helm_plate_zulaman_d_02_dwm.m2", }, { fileId = "141278", - value = "helm_plate_zulaman_d_02_gnf.m2", text = "helm_plate_zulaman_d_02_gnf.m2", + value = "helm_plate_zulaman_d_02_gnf.m2", }, { fileId = "141279", - value = "helm_plate_zulaman_d_02_gnm.m2", text = "helm_plate_zulaman_d_02_gnm.m2", + value = "helm_plate_zulaman_d_02_gnm.m2", }, { fileId = "141280", - value = "helm_plate_zulaman_d_02_huf.m2", text = "helm_plate_zulaman_d_02_huf.m2", + value = "helm_plate_zulaman_d_02_huf.m2", }, { fileId = "141281", - value = "helm_plate_zulaman_d_02_hum.m2", text = "helm_plate_zulaman_d_02_hum.m2", + value = "helm_plate_zulaman_d_02_hum.m2", }, { fileId = "141282", - value = "helm_plate_zulaman_d_02_nif.m2", text = "helm_plate_zulaman_d_02_nif.m2", + value = "helm_plate_zulaman_d_02_nif.m2", }, { fileId = "141283", - value = "helm_plate_zulaman_d_02_nim.m2", text = "helm_plate_zulaman_d_02_nim.m2", + value = "helm_plate_zulaman_d_02_nim.m2", }, { fileId = "141284", - value = "helm_plate_zulaman_d_02_orf.m2", text = "helm_plate_zulaman_d_02_orf.m2", + value = "helm_plate_zulaman_d_02_orf.m2", }, { fileId = "141285", - value = "helm_plate_zulaman_d_02_orm.m2", text = "helm_plate_zulaman_d_02_orm.m2", + value = "helm_plate_zulaman_d_02_orm.m2", }, { fileId = "141286", - value = "helm_plate_zulaman_d_02_scf.m2", text = "helm_plate_zulaman_d_02_scf.m2", + value = "helm_plate_zulaman_d_02_scf.m2", }, { fileId = "141287", - value = "helm_plate_zulaman_d_02_scm.m2", text = "helm_plate_zulaman_d_02_scm.m2", + value = "helm_plate_zulaman_d_02_scm.m2", }, { fileId = "141288", - value = "helm_plate_zulaman_d_02_taf.m2", text = "helm_plate_zulaman_d_02_taf.m2", + value = "helm_plate_zulaman_d_02_taf.m2", }, { fileId = "141289", - value = "helm_plate_zulaman_d_02_tam.m2", text = "helm_plate_zulaman_d_02_tam.m2", + value = "helm_plate_zulaman_d_02_tam.m2", }, { fileId = "141290", - value = "helm_plate_zulaman_d_02_trf.m2", text = "helm_plate_zulaman_d_02_trf.m2", + value = "helm_plate_zulaman_d_02_trf.m2", }, { fileId = "141291", - value = "helm_plate_zulaman_d_02_trm.m2", text = "helm_plate_zulaman_d_02_trm.m2", + value = "helm_plate_zulaman_d_02_trm.m2", }, { fileId = "141296", - value = "helm_plate_zulaman_d_03_bef.m2", text = "helm_plate_zulaman_d_03_bef.m2", + value = "helm_plate_zulaman_d_03_bef.m2", }, { fileId = "141297", - value = "helm_plate_zulaman_d_03_bem.m2", text = "helm_plate_zulaman_d_03_bem.m2", + value = "helm_plate_zulaman_d_03_bem.m2", }, { fileId = "141298", - value = "helm_plate_zulaman_d_03_drf.m2", text = "helm_plate_zulaman_d_03_drf.m2", + value = "helm_plate_zulaman_d_03_drf.m2", }, { fileId = "141299", - value = "helm_plate_zulaman_d_03_drm.m2", text = "helm_plate_zulaman_d_03_drm.m2", + value = "helm_plate_zulaman_d_03_drm.m2", }, { fileId = "141300", - value = "helm_plate_zulaman_d_03_dwf.m2", text = "helm_plate_zulaman_d_03_dwf.m2", + value = "helm_plate_zulaman_d_03_dwf.m2", }, { fileId = "141301", - value = "helm_plate_zulaman_d_03_dwm.m2", text = "helm_plate_zulaman_d_03_dwm.m2", + value = "helm_plate_zulaman_d_03_dwm.m2", }, { fileId = "141302", - value = "helm_plate_zulaman_d_03_gnf.m2", text = "helm_plate_zulaman_d_03_gnf.m2", + value = "helm_plate_zulaman_d_03_gnf.m2", }, { fileId = "141303", - value = "helm_plate_zulaman_d_03_gnm.m2", text = "helm_plate_zulaman_d_03_gnm.m2", + value = "helm_plate_zulaman_d_03_gnm.m2", }, { fileId = "141304", - value = "helm_plate_zulaman_d_03_gof.m2", text = "helm_plate_zulaman_d_03_gof.m2", + value = "helm_plate_zulaman_d_03_gof.m2", }, { fileId = "141305", - value = "helm_plate_zulaman_d_03_gom.m2", text = "helm_plate_zulaman_d_03_gom.m2", + value = "helm_plate_zulaman_d_03_gom.m2", }, { fileId = "141306", - value = "helm_plate_zulaman_d_03_huf.m2", text = "helm_plate_zulaman_d_03_huf.m2", + value = "helm_plate_zulaman_d_03_huf.m2", }, { fileId = "141307", - value = "helm_plate_zulaman_d_03_hum.m2", text = "helm_plate_zulaman_d_03_hum.m2", + value = "helm_plate_zulaman_d_03_hum.m2", }, { fileId = "141308", - value = "helm_plate_zulaman_d_03_nif.m2", text = "helm_plate_zulaman_d_03_nif.m2", + value = "helm_plate_zulaman_d_03_nif.m2", }, { fileId = "141309", - value = "helm_plate_zulaman_d_03_nim.m2", text = "helm_plate_zulaman_d_03_nim.m2", + value = "helm_plate_zulaman_d_03_nim.m2", }, { fileId = "141310", - value = "helm_plate_zulaman_d_03_orf.m2", text = "helm_plate_zulaman_d_03_orf.m2", + value = "helm_plate_zulaman_d_03_orf.m2", }, { fileId = "141311", - value = "helm_plate_zulaman_d_03_orm.m2", text = "helm_plate_zulaman_d_03_orm.m2", + value = "helm_plate_zulaman_d_03_orm.m2", }, { fileId = "141312", - value = "helm_plate_zulaman_d_03_scf.m2", text = "helm_plate_zulaman_d_03_scf.m2", + value = "helm_plate_zulaman_d_03_scf.m2", }, { fileId = "141313", - value = "helm_plate_zulaman_d_03_scm.m2", text = "helm_plate_zulaman_d_03_scm.m2", + value = "helm_plate_zulaman_d_03_scm.m2", }, { fileId = "141314", - value = "helm_plate_zulaman_d_03_taf.m2", text = "helm_plate_zulaman_d_03_taf.m2", + value = "helm_plate_zulaman_d_03_taf.m2", }, { fileId = "141315", - value = "helm_plate_zulaman_d_03_tam.m2", text = "helm_plate_zulaman_d_03_tam.m2", + value = "helm_plate_zulaman_d_03_tam.m2", }, { fileId = "141316", - value = "helm_plate_zulaman_d_03_trf.m2", text = "helm_plate_zulaman_d_03_trf.m2", + value = "helm_plate_zulaman_d_03_trf.m2", }, { fileId = "141317", - value = "helm_plate_zulaman_d_03_trm.m2", text = "helm_plate_zulaman_d_03_trm.m2", + value = "helm_plate_zulaman_d_03_trm.m2", }, { fileId = "141324", - value = "helm_robe_ahnqiraj_a_01_bef.m2", text = "helm_robe_ahnqiraj_a_01_bef.m2", + value = "helm_robe_ahnqiraj_a_01_bef.m2", }, { fileId = "141325", - value = "helm_robe_ahnqiraj_a_01_bem.m2", text = "helm_robe_ahnqiraj_a_01_bem.m2", + value = "helm_robe_ahnqiraj_a_01_bem.m2", }, { fileId = "141326", - value = "helm_robe_ahnqiraj_a_01_drf.m2", text = "helm_robe_ahnqiraj_a_01_drf.m2", + value = "helm_robe_ahnqiraj_a_01_drf.m2", }, { fileId = "141327", - value = "helm_robe_ahnqiraj_a_01_drm.m2", text = "helm_robe_ahnqiraj_a_01_drm.m2", + value = "helm_robe_ahnqiraj_a_01_drm.m2", }, { fileId = "141328", - value = "helm_robe_ahnqiraj_a_01_dwf.m2", text = "helm_robe_ahnqiraj_a_01_dwf.m2", + value = "helm_robe_ahnqiraj_a_01_dwf.m2", }, { fileId = "141329", - value = "helm_robe_ahnqiraj_a_01_dwm.m2", text = "helm_robe_ahnqiraj_a_01_dwm.m2", + value = "helm_robe_ahnqiraj_a_01_dwm.m2", }, { fileId = "141330", - value = "helm_robe_ahnqiraj_a_01_gnf.m2", text = "helm_robe_ahnqiraj_a_01_gnf.m2", + value = "helm_robe_ahnqiraj_a_01_gnf.m2", }, { fileId = "141331", - value = "helm_robe_ahnqiraj_a_01_gnm.m2", text = "helm_robe_ahnqiraj_a_01_gnm.m2", + value = "helm_robe_ahnqiraj_a_01_gnm.m2", }, { fileId = "141332", - value = "helm_robe_ahnqiraj_a_01_gof.m2", text = "helm_robe_ahnqiraj_a_01_gof.m2", + value = "helm_robe_ahnqiraj_a_01_gof.m2", }, { fileId = "141333", - value = "helm_robe_ahnqiraj_a_01_huf.m2", text = "helm_robe_ahnqiraj_a_01_huf.m2", + value = "helm_robe_ahnqiraj_a_01_huf.m2", }, { fileId = "141334", - value = "helm_robe_ahnqiraj_a_01_hum.m2", text = "helm_robe_ahnqiraj_a_01_hum.m2", + value = "helm_robe_ahnqiraj_a_01_hum.m2", }, { fileId = "141335", - value = "helm_robe_ahnqiraj_a_01_nif.m2", text = "helm_robe_ahnqiraj_a_01_nif.m2", + value = "helm_robe_ahnqiraj_a_01_nif.m2", }, { fileId = "141336", - value = "helm_robe_ahnqiraj_a_01_nim.m2", text = "helm_robe_ahnqiraj_a_01_nim.m2", + value = "helm_robe_ahnqiraj_a_01_nim.m2", }, { fileId = "141337", - value = "helm_robe_ahnqiraj_a_01_orf.m2", text = "helm_robe_ahnqiraj_a_01_orf.m2", + value = "helm_robe_ahnqiraj_a_01_orf.m2", }, { fileId = "141338", - value = "helm_robe_ahnqiraj_a_01_orm.m2", text = "helm_robe_ahnqiraj_a_01_orm.m2", + value = "helm_robe_ahnqiraj_a_01_orm.m2", }, { fileId = "141339", - value = "helm_robe_ahnqiraj_a_01_scf.m2", text = "helm_robe_ahnqiraj_a_01_scf.m2", + value = "helm_robe_ahnqiraj_a_01_scf.m2", }, { fileId = "141340", - value = "helm_robe_ahnqiraj_a_01_scm.m2", text = "helm_robe_ahnqiraj_a_01_scm.m2", + value = "helm_robe_ahnqiraj_a_01_scm.m2", }, { fileId = "141341", - value = "helm_robe_ahnqiraj_a_01_taf.m2", text = "helm_robe_ahnqiraj_a_01_taf.m2", + value = "helm_robe_ahnqiraj_a_01_taf.m2", }, { fileId = "141342", - value = "helm_robe_ahnqiraj_a_01_tam.m2", text = "helm_robe_ahnqiraj_a_01_tam.m2", + value = "helm_robe_ahnqiraj_a_01_tam.m2", }, { fileId = "141343", - value = "helm_robe_ahnqiraj_a_01_trf.m2", text = "helm_robe_ahnqiraj_a_01_trf.m2", + value = "helm_robe_ahnqiraj_a_01_trf.m2", }, { fileId = "141344", - value = "helm_robe_ahnqiraj_a_01_trm.m2", text = "helm_robe_ahnqiraj_a_01_trm.m2", + value = "helm_robe_ahnqiraj_a_01_trm.m2", }, { fileId = "141348", - value = "helm_robe_brewfest_a_01_bef.m2", text = "helm_robe_brewfest_a_01_bef.m2", + value = "helm_robe_brewfest_a_01_bef.m2", }, { fileId = "141349", - value = "helm_robe_brewfest_a_01_bem.m2", text = "helm_robe_brewfest_a_01_bem.m2", + value = "helm_robe_brewfest_a_01_bem.m2", }, { fileId = "141350", - value = "helm_robe_brewfest_a_01_drf.m2", text = "helm_robe_brewfest_a_01_drf.m2", + value = "helm_robe_brewfest_a_01_drf.m2", }, { fileId = "141351", - value = "helm_robe_brewfest_a_01_drm.m2", text = "helm_robe_brewfest_a_01_drm.m2", + value = "helm_robe_brewfest_a_01_drm.m2", }, { fileId = "141352", - value = "helm_robe_brewfest_a_01_dwf.m2", text = "helm_robe_brewfest_a_01_dwf.m2", + value = "helm_robe_brewfest_a_01_dwf.m2", }, { fileId = "141353", - value = "helm_robe_brewfest_a_01_dwm.m2", text = "helm_robe_brewfest_a_01_dwm.m2", + value = "helm_robe_brewfest_a_01_dwm.m2", }, { fileId = "141354", - value = "helm_robe_brewfest_a_01_gnf.m2", text = "helm_robe_brewfest_a_01_gnf.m2", + value = "helm_robe_brewfest_a_01_gnf.m2", }, { fileId = "141355", - value = "helm_robe_brewfest_a_01_gnm.m2", text = "helm_robe_brewfest_a_01_gnm.m2", + value = "helm_robe_brewfest_a_01_gnm.m2", }, { fileId = "141356", - value = "helm_robe_brewfest_a_01_gof.m2", text = "helm_robe_brewfest_a_01_gof.m2", + value = "helm_robe_brewfest_a_01_gof.m2", }, { fileId = "141357", - value = "helm_robe_brewfest_a_01_gom.m2", text = "helm_robe_brewfest_a_01_gom.m2", + value = "helm_robe_brewfest_a_01_gom.m2", }, { fileId = "141358", - value = "helm_robe_brewfest_a_01_huf.m2", text = "helm_robe_brewfest_a_01_huf.m2", + value = "helm_robe_brewfest_a_01_huf.m2", }, { fileId = "141359", - value = "helm_robe_brewfest_a_01_hum.m2", text = "helm_robe_brewfest_a_01_hum.m2", + value = "helm_robe_brewfest_a_01_hum.m2", }, { fileId = "141360", - value = "helm_robe_brewfest_a_01_nif.m2", text = "helm_robe_brewfest_a_01_nif.m2", + value = "helm_robe_brewfest_a_01_nif.m2", }, { fileId = "141361", - value = "helm_robe_brewfest_a_01_nim.m2", text = "helm_robe_brewfest_a_01_nim.m2", + value = "helm_robe_brewfest_a_01_nim.m2", }, { fileId = "141362", - value = "helm_robe_brewfest_a_01_orf.m2", text = "helm_robe_brewfest_a_01_orf.m2", + value = "helm_robe_brewfest_a_01_orf.m2", }, { fileId = "141363", - value = "helm_robe_brewfest_a_01_orm.m2", text = "helm_robe_brewfest_a_01_orm.m2", + value = "helm_robe_brewfest_a_01_orm.m2", }, { fileId = "141364", - value = "helm_robe_brewfest_a_01_scf.m2", text = "helm_robe_brewfest_a_01_scf.m2", + value = "helm_robe_brewfest_a_01_scf.m2", }, { fileId = "141365", - value = "helm_robe_brewfest_a_01_scm.m2", text = "helm_robe_brewfest_a_01_scm.m2", + value = "helm_robe_brewfest_a_01_scm.m2", }, { fileId = "141366", - value = "helm_robe_brewfest_a_01_taf.m2", text = "helm_robe_brewfest_a_01_taf.m2", + value = "helm_robe_brewfest_a_01_taf.m2", }, { fileId = "141367", - value = "helm_robe_brewfest_a_01_tam.m2", text = "helm_robe_brewfest_a_01_tam.m2", + value = "helm_robe_brewfest_a_01_tam.m2", }, { fileId = "141368", - value = "helm_robe_brewfest_a_01_trf.m2", text = "helm_robe_brewfest_a_01_trf.m2", + value = "helm_robe_brewfest_a_01_trf.m2", }, { fileId = "141369", - value = "helm_robe_brewfest_a_01_trm.m2", text = "helm_robe_brewfest_a_01_trm.m2", + value = "helm_robe_brewfest_a_01_trm.m2", }, { fileId = "141374", - value = "helm_robe_c_01_bef.m2", text = "helm_robe_c_01_bef.m2", + value = "helm_robe_c_01_bef.m2", }, { fileId = "141375", - value = "helm_robe_c_01_bem.m2", text = "helm_robe_c_01_bem.m2", + value = "helm_robe_c_01_bem.m2", }, { fileId = "141376", - value = "helm_robe_c_01_drf.m2", text = "helm_robe_c_01_drf.m2", + value = "helm_robe_c_01_drf.m2", }, { fileId = "141377", - value = "helm_robe_c_01_drm.m2", text = "helm_robe_c_01_drm.m2", + value = "helm_robe_c_01_drm.m2", }, { fileId = "141378", - value = "helm_robe_c_01_dwf.m2", text = "helm_robe_c_01_dwf.m2", + value = "helm_robe_c_01_dwf.m2", }, { fileId = "141379", - value = "helm_robe_c_01_dwm.m2", text = "helm_robe_c_01_dwm.m2", + value = "helm_robe_c_01_dwm.m2", }, { fileId = "141380", - value = "helm_robe_c_01_gnf.m2", text = "helm_robe_c_01_gnf.m2", + value = "helm_robe_c_01_gnf.m2", }, { fileId = "141381", - value = "helm_robe_c_01_gnm.m2", text = "helm_robe_c_01_gnm.m2", + value = "helm_robe_c_01_gnm.m2", }, { fileId = "141382", - value = "helm_robe_c_01_gof.m2", text = "helm_robe_c_01_gof.m2", + value = "helm_robe_c_01_gof.m2", }, { fileId = "141383", - value = "helm_robe_c_01_gom.m2", text = "helm_robe_c_01_gom.m2", + value = "helm_robe_c_01_gom.m2", }, { fileId = "141384", - value = "helm_robe_c_01_huf.m2", text = "helm_robe_c_01_huf.m2", + value = "helm_robe_c_01_huf.m2", }, { fileId = "141385", - value = "helm_robe_c_01_hum.m2", text = "helm_robe_c_01_hum.m2", + value = "helm_robe_c_01_hum.m2", }, { fileId = "141386", - value = "helm_robe_c_01_nif.m2", text = "helm_robe_c_01_nif.m2", + value = "helm_robe_c_01_nif.m2", }, { fileId = "141387", - value = "helm_robe_c_01_nim.m2", text = "helm_robe_c_01_nim.m2", + value = "helm_robe_c_01_nim.m2", }, { fileId = "141388", - value = "helm_robe_c_01_orf.m2", text = "helm_robe_c_01_orf.m2", + value = "helm_robe_c_01_orf.m2", }, { fileId = "141389", - value = "helm_robe_c_01_orm.m2", text = "helm_robe_c_01_orm.m2", + value = "helm_robe_c_01_orm.m2", }, { fileId = "141390", - value = "helm_robe_c_01_scf.m2", text = "helm_robe_c_01_scf.m2", + value = "helm_robe_c_01_scf.m2", }, { fileId = "141391", - value = "helm_robe_c_01_scm.m2", text = "helm_robe_c_01_scm.m2", + value = "helm_robe_c_01_scm.m2", }, { fileId = "141392", - value = "helm_robe_c_01_taf.m2", text = "helm_robe_c_01_taf.m2", + value = "helm_robe_c_01_taf.m2", }, { fileId = "141393", - value = "helm_robe_c_01_tam.m2", text = "helm_robe_c_01_tam.m2", + value = "helm_robe_c_01_tam.m2", }, { fileId = "141394", - value = "helm_robe_c_01_trf.m2", text = "helm_robe_c_01_trf.m2", + value = "helm_robe_c_01_trf.m2", }, { fileId = "141395", - value = "helm_robe_c_01_trm.m2", text = "helm_robe_c_01_trm.m2", + value = "helm_robe_c_01_trm.m2", }, { fileId = "141405", - value = "helm_robe_c_02_bef.m2", text = "helm_robe_c_02_bef.m2", + value = "helm_robe_c_02_bef.m2", }, { fileId = "141406", - value = "helm_robe_c_02_bem.m2", text = "helm_robe_c_02_bem.m2", + value = "helm_robe_c_02_bem.m2", }, { fileId = "141407", - value = "helm_robe_c_02_drf.m2", text = "helm_robe_c_02_drf.m2", + value = "helm_robe_c_02_drf.m2", }, { fileId = "141408", - value = "helm_robe_c_02_drm.m2", text = "helm_robe_c_02_drm.m2", + value = "helm_robe_c_02_drm.m2", }, { fileId = "141409", - value = "helm_robe_c_02_dwf.m2", text = "helm_robe_c_02_dwf.m2", + value = "helm_robe_c_02_dwf.m2", }, { fileId = "141410", - value = "helm_robe_c_02_dwm.m2", text = "helm_robe_c_02_dwm.m2", + value = "helm_robe_c_02_dwm.m2", }, { fileId = "141411", - value = "helm_robe_c_02_gnf.m2", text = "helm_robe_c_02_gnf.m2", + value = "helm_robe_c_02_gnf.m2", }, { fileId = "141412", - value = "helm_robe_c_02_gnm.m2", text = "helm_robe_c_02_gnm.m2", + value = "helm_robe_c_02_gnm.m2", }, { fileId = "141413", - value = "helm_robe_c_02_gof.m2", text = "helm_robe_c_02_gof.m2", + value = "helm_robe_c_02_gof.m2", }, { fileId = "141414", - value = "helm_robe_c_02_gom.m2", text = "helm_robe_c_02_gom.m2", + value = "helm_robe_c_02_gom.m2", }, { fileId = "141415", - value = "helm_robe_c_02_huf.m2", text = "helm_robe_c_02_huf.m2", + value = "helm_robe_c_02_huf.m2", }, { fileId = "141416", - value = "helm_robe_c_02_hum.m2", text = "helm_robe_c_02_hum.m2", + value = "helm_robe_c_02_hum.m2", }, { fileId = "141417", - value = "helm_robe_c_02_nif.m2", text = "helm_robe_c_02_nif.m2", + value = "helm_robe_c_02_nif.m2", }, { fileId = "141418", - value = "helm_robe_c_02_nim.m2", text = "helm_robe_c_02_nim.m2", + value = "helm_robe_c_02_nim.m2", }, { fileId = "141419", - value = "helm_robe_c_02_orf.m2", text = "helm_robe_c_02_orf.m2", + value = "helm_robe_c_02_orf.m2", }, { fileId = "141420", - value = "helm_robe_c_02_orm.m2", text = "helm_robe_c_02_orm.m2", + value = "helm_robe_c_02_orm.m2", }, { fileId = "141421", - value = "helm_robe_c_02_scf.m2", text = "helm_robe_c_02_scf.m2", + value = "helm_robe_c_02_scf.m2", }, { fileId = "141422", - value = "helm_robe_c_02_scm.m2", text = "helm_robe_c_02_scm.m2", + value = "helm_robe_c_02_scm.m2", }, { fileId = "141423", - value = "helm_robe_c_02_taf.m2", text = "helm_robe_c_02_taf.m2", + value = "helm_robe_c_02_taf.m2", }, { fileId = "141424", - value = "helm_robe_c_02_tam.m2", text = "helm_robe_c_02_tam.m2", + value = "helm_robe_c_02_tam.m2", }, { fileId = "141425", - value = "helm_robe_c_02_trf.m2", text = "helm_robe_c_02_trf.m2", + value = "helm_robe_c_02_trf.m2", }, { fileId = "141426", - value = "helm_robe_c_02_trm.m2", text = "helm_robe_c_02_trm.m2", + value = "helm_robe_c_02_trm.m2", }, { fileId = "141434", - value = "helm_robe_c_03_bef.m2", text = "helm_robe_c_03_bef.m2", + value = "helm_robe_c_03_bef.m2", }, { fileId = "141435", - value = "helm_robe_c_03_bem.m2", text = "helm_robe_c_03_bem.m2", + value = "helm_robe_c_03_bem.m2", }, { fileId = "141436", - value = "helm_robe_c_03_drf.m2", text = "helm_robe_c_03_drf.m2", + value = "helm_robe_c_03_drf.m2", }, { fileId = "141437", - value = "helm_robe_c_03_drm.m2", text = "helm_robe_c_03_drm.m2", + value = "helm_robe_c_03_drm.m2", }, { fileId = "141438", - value = "helm_robe_c_03_dwf.m2", text = "helm_robe_c_03_dwf.m2", + value = "helm_robe_c_03_dwf.m2", }, { fileId = "141439", - value = "helm_robe_c_03_dwm.m2", text = "helm_robe_c_03_dwm.m2", + value = "helm_robe_c_03_dwm.m2", }, { fileId = "141440", - value = "helm_robe_c_03_gnf.m2", text = "helm_robe_c_03_gnf.m2", + value = "helm_robe_c_03_gnf.m2", }, { fileId = "141441", - value = "helm_robe_c_03_gnm.m2", text = "helm_robe_c_03_gnm.m2", + value = "helm_robe_c_03_gnm.m2", }, { fileId = "141442", - value = "helm_robe_c_03_gof.m2", text = "helm_robe_c_03_gof.m2", + value = "helm_robe_c_03_gof.m2", }, { fileId = "141443", - value = "helm_robe_c_03_gom.m2", text = "helm_robe_c_03_gom.m2", + value = "helm_robe_c_03_gom.m2", }, { fileId = "141444", - value = "helm_robe_c_03_huf.m2", text = "helm_robe_c_03_huf.m2", + value = "helm_robe_c_03_huf.m2", }, { fileId = "141445", - value = "helm_robe_c_03_hum.m2", text = "helm_robe_c_03_hum.m2", + value = "helm_robe_c_03_hum.m2", }, { fileId = "141446", - value = "helm_robe_c_03_nif.m2", text = "helm_robe_c_03_nif.m2", + value = "helm_robe_c_03_nif.m2", }, { fileId = "141447", - value = "helm_robe_c_03_nim.m2", text = "helm_robe_c_03_nim.m2", + value = "helm_robe_c_03_nim.m2", }, { fileId = "141448", - value = "helm_robe_c_03_orf.m2", text = "helm_robe_c_03_orf.m2", + value = "helm_robe_c_03_orf.m2", }, { fileId = "141449", - value = "helm_robe_c_03_orm.m2", text = "helm_robe_c_03_orm.m2", + value = "helm_robe_c_03_orm.m2", }, { fileId = "141450", - value = "helm_robe_c_03_scf.m2", text = "helm_robe_c_03_scf.m2", + value = "helm_robe_c_03_scf.m2", }, { fileId = "141451", - value = "helm_robe_c_03_scm.m2", text = "helm_robe_c_03_scm.m2", + value = "helm_robe_c_03_scm.m2", }, { fileId = "141452", - value = "helm_robe_c_03_taf.m2", text = "helm_robe_c_03_taf.m2", + value = "helm_robe_c_03_taf.m2", }, { fileId = "141453", - value = "helm_robe_c_03_tam.m2", text = "helm_robe_c_03_tam.m2", + value = "helm_robe_c_03_tam.m2", }, { fileId = "141454", - value = "helm_robe_c_03_trf.m2", text = "helm_robe_c_03_trf.m2", + value = "helm_robe_c_03_trf.m2", }, { fileId = "141455", - value = "helm_robe_c_03_trm.m2", text = "helm_robe_c_03_trm.m2", + value = "helm_robe_c_03_trm.m2", }, { fileId = "141458", - value = "helm_robe_c_04_bef.m2", text = "helm_robe_c_04_bef.m2", + value = "helm_robe_c_04_bef.m2", }, { fileId = "141459", - value = "helm_robe_c_04_bem.m2", text = "helm_robe_c_04_bem.m2", + value = "helm_robe_c_04_bem.m2", }, { fileId = "141460", - value = "helm_robe_c_04_drf.m2", text = "helm_robe_c_04_drf.m2", + value = "helm_robe_c_04_drf.m2", }, { fileId = "141461", - value = "helm_robe_c_04_drm.m2", text = "helm_robe_c_04_drm.m2", + value = "helm_robe_c_04_drm.m2", }, { fileId = "141462", - value = "helm_robe_c_04_dwf.m2", text = "helm_robe_c_04_dwf.m2", + value = "helm_robe_c_04_dwf.m2", }, { fileId = "141463", - value = "helm_robe_c_04_dwm.m2", text = "helm_robe_c_04_dwm.m2", + value = "helm_robe_c_04_dwm.m2", }, { fileId = "141464", - value = "helm_robe_c_04_gnf.m2", text = "helm_robe_c_04_gnf.m2", + value = "helm_robe_c_04_gnf.m2", }, { fileId = "141465", - value = "helm_robe_c_04_gnm.m2", text = "helm_robe_c_04_gnm.m2", + value = "helm_robe_c_04_gnm.m2", }, { fileId = "141466", - value = "helm_robe_c_04_gof.m2", text = "helm_robe_c_04_gof.m2", + value = "helm_robe_c_04_gof.m2", }, { fileId = "141467", - value = "helm_robe_c_04_gom.m2", text = "helm_robe_c_04_gom.m2", + value = "helm_robe_c_04_gom.m2", }, { fileId = "141468", - value = "helm_robe_c_04_huf.m2", text = "helm_robe_c_04_huf.m2", + value = "helm_robe_c_04_huf.m2", }, { fileId = "141469", - value = "helm_robe_c_04_hum.m2", text = "helm_robe_c_04_hum.m2", + value = "helm_robe_c_04_hum.m2", }, { fileId = "141470", - value = "helm_robe_c_04_nif.m2", text = "helm_robe_c_04_nif.m2", + value = "helm_robe_c_04_nif.m2", }, { fileId = "141471", - value = "helm_robe_c_04_nim.m2", text = "helm_robe_c_04_nim.m2", + value = "helm_robe_c_04_nim.m2", }, { fileId = "141472", - value = "helm_robe_c_04_orf.m2", text = "helm_robe_c_04_orf.m2", + value = "helm_robe_c_04_orf.m2", }, { fileId = "141473", - value = "helm_robe_c_04_orm.m2", text = "helm_robe_c_04_orm.m2", + value = "helm_robe_c_04_orm.m2", }, { fileId = "141474", - value = "helm_robe_c_04_scf.m2", text = "helm_robe_c_04_scf.m2", + value = "helm_robe_c_04_scf.m2", }, { fileId = "141475", - value = "helm_robe_c_04_scm.m2", text = "helm_robe_c_04_scm.m2", + value = "helm_robe_c_04_scm.m2", }, { fileId = "141476", - value = "helm_robe_c_04_taf.m2", text = "helm_robe_c_04_taf.m2", + value = "helm_robe_c_04_taf.m2", }, { fileId = "141477", - value = "helm_robe_c_04_tam.m2", text = "helm_robe_c_04_tam.m2", + value = "helm_robe_c_04_tam.m2", }, { fileId = "141478", - value = "helm_robe_c_04_trf.m2", text = "helm_robe_c_04_trf.m2", + value = "helm_robe_c_04_trf.m2", }, { fileId = "141479", - value = "helm_robe_c_04_trm.m2", text = "helm_robe_c_04_trm.m2", + value = "helm_robe_c_04_trm.m2", }, { fileId = "141483", - value = "helm_robe_d_04_bef.m2", text = "helm_robe_d_04_bef.m2", + value = "helm_robe_d_04_bef.m2", }, { fileId = "141484", - value = "helm_robe_d_04_bem.m2", text = "helm_robe_d_04_bem.m2", + value = "helm_robe_d_04_bem.m2", }, { fileId = "141485", - value = "helm_robe_d_04_drf.m2", text = "helm_robe_d_04_drf.m2", + value = "helm_robe_d_04_drf.m2", }, { fileId = "141486", - value = "helm_robe_d_04_drm.m2", text = "helm_robe_d_04_drm.m2", + value = "helm_robe_d_04_drm.m2", }, { fileId = "141487", - value = "helm_robe_d_04_dwf.m2", text = "helm_robe_d_04_dwf.m2", + value = "helm_robe_d_04_dwf.m2", }, { fileId = "141488", - value = "helm_robe_d_04_dwm.m2", text = "helm_robe_d_04_dwm.m2", + value = "helm_robe_d_04_dwm.m2", }, { fileId = "141489", - value = "helm_robe_d_04_gnf.m2", text = "helm_robe_d_04_gnf.m2", + value = "helm_robe_d_04_gnf.m2", }, { fileId = "141490", - value = "helm_robe_d_04_gnm.m2", text = "helm_robe_d_04_gnm.m2", + value = "helm_robe_d_04_gnm.m2", }, { fileId = "141491", - value = "helm_robe_d_04_gof.m2", text = "helm_robe_d_04_gof.m2", + value = "helm_robe_d_04_gof.m2", }, { fileId = "141492", - value = "helm_robe_d_04_gom.m2", text = "helm_robe_d_04_gom.m2", + value = "helm_robe_d_04_gom.m2", }, { fileId = "141493", - value = "helm_robe_d_04_huf.m2", text = "helm_robe_d_04_huf.m2", + value = "helm_robe_d_04_huf.m2", }, { fileId = "141494", - value = "helm_robe_d_04_hum.m2", text = "helm_robe_d_04_hum.m2", + value = "helm_robe_d_04_hum.m2", }, { fileId = "141495", - value = "helm_robe_d_04_nif.m2", text = "helm_robe_d_04_nif.m2", + value = "helm_robe_d_04_nif.m2", }, { fileId = "141496", - value = "helm_robe_d_04_nim.m2", text = "helm_robe_d_04_nim.m2", + value = "helm_robe_d_04_nim.m2", }, { fileId = "141497", - value = "helm_robe_d_04_orf.m2", text = "helm_robe_d_04_orf.m2", + value = "helm_robe_d_04_orf.m2", }, { fileId = "141498", - value = "helm_robe_d_04_orm.m2", text = "helm_robe_d_04_orm.m2", + value = "helm_robe_d_04_orm.m2", }, { fileId = "141499", - value = "helm_robe_d_04_scf.m2", text = "helm_robe_d_04_scf.m2", + value = "helm_robe_d_04_scf.m2", }, { fileId = "141500", - value = "helm_robe_d_04_scm.m2", text = "helm_robe_d_04_scm.m2", + value = "helm_robe_d_04_scm.m2", }, { fileId = "141501", - value = "helm_robe_d_04_taf.m2", text = "helm_robe_d_04_taf.m2", + value = "helm_robe_d_04_taf.m2", }, { fileId = "141502", - value = "helm_robe_d_04_tam.m2", text = "helm_robe_d_04_tam.m2", + value = "helm_robe_d_04_tam.m2", }, { fileId = "141503", - value = "helm_robe_d_04_trf.m2", text = "helm_robe_d_04_trf.m2", + value = "helm_robe_d_04_trf.m2", }, { fileId = "141504", - value = "helm_robe_d_04_trm.m2", text = "helm_robe_d_04_trm.m2", + value = "helm_robe_d_04_trm.m2", }, { fileId = "141505", - value = "helm_robe_dungeonmage_a_01_bef.m2", text = "helm_robe_dungeonmage_a_01_bef.m2", + value = "helm_robe_dungeonmage_a_01_bef.m2", }, { fileId = "141506", - value = "helm_robe_dungeonmage_a_01_bem.m2", text = "helm_robe_dungeonmage_a_01_bem.m2", + value = "helm_robe_dungeonmage_a_01_bem.m2", }, { fileId = "141507", - value = "helm_robe_dungeonmage_a_01_drf.m2", text = "helm_robe_dungeonmage_a_01_drf.m2", + value = "helm_robe_dungeonmage_a_01_drf.m2", }, { fileId = "141508", - value = "helm_robe_dungeonmage_a_01_drm.m2", text = "helm_robe_dungeonmage_a_01_drm.m2", + value = "helm_robe_dungeonmage_a_01_drm.m2", }, { fileId = "141509", - value = "helm_robe_dungeonmage_a_01_dwf.m2", text = "helm_robe_dungeonmage_a_01_dwf.m2", + value = "helm_robe_dungeonmage_a_01_dwf.m2", }, { fileId = "141510", - value = "helm_robe_dungeonmage_a_01_dwm.m2", text = "helm_robe_dungeonmage_a_01_dwm.m2", + value = "helm_robe_dungeonmage_a_01_dwm.m2", }, { fileId = "141511", - value = "helm_robe_dungeonmage_a_01_gnf.m2", text = "helm_robe_dungeonmage_a_01_gnf.m2", + value = "helm_robe_dungeonmage_a_01_gnf.m2", }, { fileId = "141512", - value = "helm_robe_dungeonmage_a_01_gnm.m2", text = "helm_robe_dungeonmage_a_01_gnm.m2", + value = "helm_robe_dungeonmage_a_01_gnm.m2", }, { fileId = "141513", - value = "helm_robe_dungeonmage_a_01_gof.m2", text = "helm_robe_dungeonmage_a_01_gof.m2", + value = "helm_robe_dungeonmage_a_01_gof.m2", }, { fileId = "141514", - value = "helm_robe_dungeonmage_a_01_gom.m2", text = "helm_robe_dungeonmage_a_01_gom.m2", + value = "helm_robe_dungeonmage_a_01_gom.m2", }, { fileId = "141515", - value = "helm_robe_dungeonmage_a_01_huf.m2", text = "helm_robe_dungeonmage_a_01_huf.m2", + value = "helm_robe_dungeonmage_a_01_huf.m2", }, { fileId = "141516", - value = "helm_robe_dungeonmage_a_01_hum.m2", text = "helm_robe_dungeonmage_a_01_hum.m2", + value = "helm_robe_dungeonmage_a_01_hum.m2", }, { fileId = "141517", - value = "helm_robe_dungeonmage_a_01_nif.m2", text = "helm_robe_dungeonmage_a_01_nif.m2", + value = "helm_robe_dungeonmage_a_01_nif.m2", }, { fileId = "141518", - value = "helm_robe_dungeonmage_a_01_nim.m2", text = "helm_robe_dungeonmage_a_01_nim.m2", + value = "helm_robe_dungeonmage_a_01_nim.m2", }, { fileId = "141519", - value = "helm_robe_dungeonmage_a_01_orf.m2", text = "helm_robe_dungeonmage_a_01_orf.m2", + value = "helm_robe_dungeonmage_a_01_orf.m2", }, { fileId = "141520", - value = "helm_robe_dungeonmage_a_01_orm.m2", text = "helm_robe_dungeonmage_a_01_orm.m2", + value = "helm_robe_dungeonmage_a_01_orm.m2", }, { fileId = "141521", - value = "helm_robe_dungeonmage_a_01_scf.m2", text = "helm_robe_dungeonmage_a_01_scf.m2", + value = "helm_robe_dungeonmage_a_01_scf.m2", }, { fileId = "141522", - value = "helm_robe_dungeonmage_a_01_scm.m2", text = "helm_robe_dungeonmage_a_01_scm.m2", + value = "helm_robe_dungeonmage_a_01_scm.m2", }, { fileId = "141523", - value = "helm_robe_dungeonmage_a_01_taf.m2", text = "helm_robe_dungeonmage_a_01_taf.m2", + value = "helm_robe_dungeonmage_a_01_taf.m2", }, { fileId = "141524", - value = "helm_robe_dungeonmage_a_01_tam.m2", text = "helm_robe_dungeonmage_a_01_tam.m2", + value = "helm_robe_dungeonmage_a_01_tam.m2", }, { fileId = "141525", - value = "helm_robe_dungeonmage_a_01_trf.m2", text = "helm_robe_dungeonmage_a_01_trf.m2", + value = "helm_robe_dungeonmage_a_01_trf.m2", }, { fileId = "141526", - value = "helm_robe_dungeonmage_a_01_trm.m2", text = "helm_robe_dungeonmage_a_01_trm.m2", + value = "helm_robe_dungeonmage_a_01_trm.m2", }, { fileId = "141532", - value = "helm_robe_dungeonmage_b_01_bef.m2", text = "helm_robe_dungeonmage_b_01_bef.m2", + value = "helm_robe_dungeonmage_b_01_bef.m2", }, { fileId = "141533", - value = "helm_robe_dungeonmage_b_01_bem.m2", text = "helm_robe_dungeonmage_b_01_bem.m2", + value = "helm_robe_dungeonmage_b_01_bem.m2", }, { fileId = "141534", - value = "helm_robe_dungeonmage_b_01_drf.m2", text = "helm_robe_dungeonmage_b_01_drf.m2", + value = "helm_robe_dungeonmage_b_01_drf.m2", }, { fileId = "141535", - value = "helm_robe_dungeonmage_b_01_drm.m2", text = "helm_robe_dungeonmage_b_01_drm.m2", + value = "helm_robe_dungeonmage_b_01_drm.m2", }, { fileId = "141536", - value = "helm_robe_dungeonmage_b_01_dwf.m2", text = "helm_robe_dungeonmage_b_01_dwf.m2", + value = "helm_robe_dungeonmage_b_01_dwf.m2", }, { fileId = "141537", - value = "helm_robe_dungeonmage_b_01_dwm.m2", text = "helm_robe_dungeonmage_b_01_dwm.m2", + value = "helm_robe_dungeonmage_b_01_dwm.m2", }, { fileId = "141538", - value = "helm_robe_dungeonmage_b_01_gnf.m2", text = "helm_robe_dungeonmage_b_01_gnf.m2", + value = "helm_robe_dungeonmage_b_01_gnf.m2", }, { fileId = "141539", - value = "helm_robe_dungeonmage_b_01_gnm.m2", text = "helm_robe_dungeonmage_b_01_gnm.m2", + value = "helm_robe_dungeonmage_b_01_gnm.m2", }, { fileId = "141540", - value = "helm_robe_dungeonmage_b_01_gof.m2", text = "helm_robe_dungeonmage_b_01_gof.m2", + value = "helm_robe_dungeonmage_b_01_gof.m2", }, { fileId = "141541", - value = "helm_robe_dungeonmage_b_01_gom.m2", text = "helm_robe_dungeonmage_b_01_gom.m2", + value = "helm_robe_dungeonmage_b_01_gom.m2", }, { fileId = "141542", - value = "helm_robe_dungeonmage_b_01_huf.m2", text = "helm_robe_dungeonmage_b_01_huf.m2", + value = "helm_robe_dungeonmage_b_01_huf.m2", }, { fileId = "141543", - value = "helm_robe_dungeonmage_b_01_hum.m2", text = "helm_robe_dungeonmage_b_01_hum.m2", + value = "helm_robe_dungeonmage_b_01_hum.m2", }, { fileId = "141544", - value = "helm_robe_dungeonmage_b_01_nif.m2", text = "helm_robe_dungeonmage_b_01_nif.m2", + value = "helm_robe_dungeonmage_b_01_nif.m2", }, { fileId = "141545", - value = "helm_robe_dungeonmage_b_01_nim.m2", text = "helm_robe_dungeonmage_b_01_nim.m2", + value = "helm_robe_dungeonmage_b_01_nim.m2", }, { fileId = "141546", - value = "helm_robe_dungeonmage_b_01_orf.m2", text = "helm_robe_dungeonmage_b_01_orf.m2", + value = "helm_robe_dungeonmage_b_01_orf.m2", }, { fileId = "141547", - value = "helm_robe_dungeonmage_b_01_orm.m2", text = "helm_robe_dungeonmage_b_01_orm.m2", + value = "helm_robe_dungeonmage_b_01_orm.m2", }, { fileId = "141548", - value = "helm_robe_dungeonmage_b_01_scf.m2", text = "helm_robe_dungeonmage_b_01_scf.m2", + value = "helm_robe_dungeonmage_b_01_scf.m2", }, { fileId = "141549", - value = "helm_robe_dungeonmage_b_01_scm.m2", text = "helm_robe_dungeonmage_b_01_scm.m2", + value = "helm_robe_dungeonmage_b_01_scm.m2", }, { fileId = "141550", - value = "helm_robe_dungeonmage_b_01_taf.m2", text = "helm_robe_dungeonmage_b_01_taf.m2", + value = "helm_robe_dungeonmage_b_01_taf.m2", }, { fileId = "141551", - value = "helm_robe_dungeonmage_b_01_tam.m2", text = "helm_robe_dungeonmage_b_01_tam.m2", + value = "helm_robe_dungeonmage_b_01_tam.m2", }, { fileId = "141552", - value = "helm_robe_dungeonmage_b_01_trf.m2", text = "helm_robe_dungeonmage_b_01_trf.m2", + value = "helm_robe_dungeonmage_b_01_trf.m2", }, { fileId = "141553", - value = "helm_robe_dungeonmage_b_01_trm.m2", text = "helm_robe_dungeonmage_b_01_trm.m2", + value = "helm_robe_dungeonmage_b_01_trm.m2", }, { fileId = "141558", - value = "helm_robe_dungeonpriest_a_01_bef.m2", text = "helm_robe_dungeonpriest_a_01_bef.m2", + value = "helm_robe_dungeonpriest_a_01_bef.m2", }, { fileId = "141559", - value = "helm_robe_dungeonpriest_a_01_bem.m2", text = "helm_robe_dungeonpriest_a_01_bem.m2", + value = "helm_robe_dungeonpriest_a_01_bem.m2", }, { fileId = "141560", - value = "helm_robe_dungeonpriest_a_01_drf.m2", text = "helm_robe_dungeonpriest_a_01_drf.m2", + value = "helm_robe_dungeonpriest_a_01_drf.m2", }, { fileId = "141561", - value = "helm_robe_dungeonpriest_a_01_drm.m2", text = "helm_robe_dungeonpriest_a_01_drm.m2", + value = "helm_robe_dungeonpriest_a_01_drm.m2", }, { fileId = "141562", - value = "helm_robe_dungeonpriest_a_01_dwf.m2", text = "helm_robe_dungeonpriest_a_01_dwf.m2", + value = "helm_robe_dungeonpriest_a_01_dwf.m2", }, { fileId = "141563", - value = "helm_robe_dungeonpriest_a_01_dwm.m2", text = "helm_robe_dungeonpriest_a_01_dwm.m2", + value = "helm_robe_dungeonpriest_a_01_dwm.m2", }, { fileId = "141564", - value = "helm_robe_dungeonpriest_a_01_gnf.m2", text = "helm_robe_dungeonpriest_a_01_gnf.m2", + value = "helm_robe_dungeonpriest_a_01_gnf.m2", }, { fileId = "141565", - value = "helm_robe_dungeonpriest_a_01_gnm.m2", text = "helm_robe_dungeonpriest_a_01_gnm.m2", + value = "helm_robe_dungeonpriest_a_01_gnm.m2", }, { fileId = "141566", - value = "helm_robe_dungeonpriest_a_01_gof.m2", text = "helm_robe_dungeonpriest_a_01_gof.m2", + value = "helm_robe_dungeonpriest_a_01_gof.m2", }, { fileId = "141567", - value = "helm_robe_dungeonpriest_a_01_gom.m2", text = "helm_robe_dungeonpriest_a_01_gom.m2", + value = "helm_robe_dungeonpriest_a_01_gom.m2", }, { fileId = "141568", - value = "helm_robe_dungeonpriest_a_01_huf.m2", text = "helm_robe_dungeonpriest_a_01_huf.m2", + value = "helm_robe_dungeonpriest_a_01_huf.m2", }, { fileId = "141569", - value = "helm_robe_dungeonpriest_a_01_hum.m2", text = "helm_robe_dungeonpriest_a_01_hum.m2", + value = "helm_robe_dungeonpriest_a_01_hum.m2", }, { fileId = "141570", - value = "helm_robe_dungeonpriest_a_01_nif.m2", text = "helm_robe_dungeonpriest_a_01_nif.m2", + value = "helm_robe_dungeonpriest_a_01_nif.m2", }, { fileId = "141571", - value = "helm_robe_dungeonpriest_a_01_nim.m2", text = "helm_robe_dungeonpriest_a_01_nim.m2", + value = "helm_robe_dungeonpriest_a_01_nim.m2", }, { fileId = "141572", - value = "helm_robe_dungeonpriest_a_01_orf.m2", text = "helm_robe_dungeonpriest_a_01_orf.m2", + value = "helm_robe_dungeonpriest_a_01_orf.m2", }, { fileId = "141573", - value = "helm_robe_dungeonpriest_a_01_orm.m2", text = "helm_robe_dungeonpriest_a_01_orm.m2", + value = "helm_robe_dungeonpriest_a_01_orm.m2", }, { fileId = "141574", - value = "helm_robe_dungeonpriest_a_01_scf.m2", text = "helm_robe_dungeonpriest_a_01_scf.m2", + value = "helm_robe_dungeonpriest_a_01_scf.m2", }, { fileId = "141575", - value = "helm_robe_dungeonpriest_a_01_scm.m2", text = "helm_robe_dungeonpriest_a_01_scm.m2", + value = "helm_robe_dungeonpriest_a_01_scm.m2", }, { fileId = "141576", - value = "helm_robe_dungeonpriest_a_01_taf.m2", text = "helm_robe_dungeonpriest_a_01_taf.m2", + value = "helm_robe_dungeonpriest_a_01_taf.m2", }, { fileId = "141577", - value = "helm_robe_dungeonpriest_a_01_tam.m2", text = "helm_robe_dungeonpriest_a_01_tam.m2", + value = "helm_robe_dungeonpriest_a_01_tam.m2", }, { fileId = "141578", - value = "helm_robe_dungeonpriest_a_01_trf.m2", text = "helm_robe_dungeonpriest_a_01_trf.m2", + value = "helm_robe_dungeonpriest_a_01_trf.m2", }, { fileId = "141579", - value = "helm_robe_dungeonpriest_a_01_trm.m2", text = "helm_robe_dungeonpriest_a_01_trm.m2", + value = "helm_robe_dungeonpriest_a_01_trm.m2", }, { fileId = "141585", - value = "helm_robe_dungeonpriest_b_01_bef.m2", text = "helm_robe_dungeonpriest_b_01_bef.m2", + value = "helm_robe_dungeonpriest_b_01_bef.m2", }, { fileId = "141586", - value = "helm_robe_dungeonpriest_b_01_bem.m2", text = "helm_robe_dungeonpriest_b_01_bem.m2", + value = "helm_robe_dungeonpriest_b_01_bem.m2", }, { fileId = "141587", - value = "helm_robe_dungeonpriest_b_01_drf.m2", text = "helm_robe_dungeonpriest_b_01_drf.m2", + value = "helm_robe_dungeonpriest_b_01_drf.m2", }, { fileId = "141588", - value = "helm_robe_dungeonpriest_b_01_drm.m2", text = "helm_robe_dungeonpriest_b_01_drm.m2", + value = "helm_robe_dungeonpriest_b_01_drm.m2", }, { fileId = "141589", - value = "helm_robe_dungeonpriest_b_01_dwf.m2", text = "helm_robe_dungeonpriest_b_01_dwf.m2", + value = "helm_robe_dungeonpriest_b_01_dwf.m2", }, { fileId = "141590", - value = "helm_robe_dungeonpriest_b_01_dwm.m2", text = "helm_robe_dungeonpriest_b_01_dwm.m2", + value = "helm_robe_dungeonpriest_b_01_dwm.m2", }, { fileId = "141591", - value = "helm_robe_dungeonpriest_b_01_gnf.m2", text = "helm_robe_dungeonpriest_b_01_gnf.m2", + value = "helm_robe_dungeonpriest_b_01_gnf.m2", }, { fileId = "141592", - value = "helm_robe_dungeonpriest_b_01_gnm.m2", text = "helm_robe_dungeonpriest_b_01_gnm.m2", + value = "helm_robe_dungeonpriest_b_01_gnm.m2", }, { fileId = "141593", - value = "helm_robe_dungeonpriest_b_01_gof.m2", text = "helm_robe_dungeonpriest_b_01_gof.m2", + value = "helm_robe_dungeonpriest_b_01_gof.m2", }, { fileId = "141594", - value = "helm_robe_dungeonpriest_b_01_gom.m2", text = "helm_robe_dungeonpriest_b_01_gom.m2", + value = "helm_robe_dungeonpriest_b_01_gom.m2", }, { fileId = "141595", - value = "helm_robe_dungeonpriest_b_01_huf.m2", text = "helm_robe_dungeonpriest_b_01_huf.m2", + value = "helm_robe_dungeonpriest_b_01_huf.m2", }, { fileId = "141596", - value = "helm_robe_dungeonpriest_b_01_hum.m2", text = "helm_robe_dungeonpriest_b_01_hum.m2", + value = "helm_robe_dungeonpriest_b_01_hum.m2", }, { fileId = "141597", - value = "helm_robe_dungeonpriest_b_01_nif.m2", text = "helm_robe_dungeonpriest_b_01_nif.m2", + value = "helm_robe_dungeonpriest_b_01_nif.m2", }, { fileId = "141598", - value = "helm_robe_dungeonpriest_b_01_nim.m2", text = "helm_robe_dungeonpriest_b_01_nim.m2", + value = "helm_robe_dungeonpriest_b_01_nim.m2", }, { fileId = "141599", - value = "helm_robe_dungeonpriest_b_01_orf.m2", text = "helm_robe_dungeonpriest_b_01_orf.m2", + value = "helm_robe_dungeonpriest_b_01_orf.m2", }, { fileId = "141600", - value = "helm_robe_dungeonpriest_b_01_orm.m2", text = "helm_robe_dungeonpriest_b_01_orm.m2", + value = "helm_robe_dungeonpriest_b_01_orm.m2", }, { fileId = "141601", - value = "helm_robe_dungeonpriest_b_01_scf.m2", text = "helm_robe_dungeonpriest_b_01_scf.m2", + value = "helm_robe_dungeonpriest_b_01_scf.m2", }, { fileId = "141602", - value = "helm_robe_dungeonpriest_b_01_scm.m2", text = "helm_robe_dungeonpriest_b_01_scm.m2", + value = "helm_robe_dungeonpriest_b_01_scm.m2", }, { fileId = "141603", - value = "helm_robe_dungeonpriest_b_01_taf.m2", text = "helm_robe_dungeonpriest_b_01_taf.m2", + value = "helm_robe_dungeonpriest_b_01_taf.m2", }, { fileId = "141604", - value = "helm_robe_dungeonpriest_b_01_tam.m2", text = "helm_robe_dungeonpriest_b_01_tam.m2", + value = "helm_robe_dungeonpriest_b_01_tam.m2", }, { fileId = "141605", - value = "helm_robe_dungeonpriest_b_01_trf.m2", text = "helm_robe_dungeonpriest_b_01_trf.m2", + value = "helm_robe_dungeonpriest_b_01_trf.m2", }, { fileId = "141606", - value = "helm_robe_dungeonpriest_b_01_trm.m2", text = "helm_robe_dungeonpriest_b_01_trm.m2", + value = "helm_robe_dungeonpriest_b_01_trm.m2", }, { fileId = "141611", - value = "helm_robe_dungeonwarlock_a_01_bef.m2", text = "helm_robe_dungeonwarlock_a_01_bef.m2", + value = "helm_robe_dungeonwarlock_a_01_bef.m2", }, { fileId = "141612", - value = "helm_robe_dungeonwarlock_a_01_bem.m2", text = "helm_robe_dungeonwarlock_a_01_bem.m2", + value = "helm_robe_dungeonwarlock_a_01_bem.m2", }, { fileId = "141613", - value = "helm_robe_dungeonwarlock_a_01_drf.m2", text = "helm_robe_dungeonwarlock_a_01_drf.m2", + value = "helm_robe_dungeonwarlock_a_01_drf.m2", }, { fileId = "141614", - value = "helm_robe_dungeonwarlock_a_01_drm.m2", text = "helm_robe_dungeonwarlock_a_01_drm.m2", + value = "helm_robe_dungeonwarlock_a_01_drm.m2", }, { fileId = "141615", - value = "helm_robe_dungeonwarlock_a_01_dwf.m2", text = "helm_robe_dungeonwarlock_a_01_dwf.m2", + value = "helm_robe_dungeonwarlock_a_01_dwf.m2", }, { fileId = "141616", - value = "helm_robe_dungeonwarlock_a_01_dwm.m2", text = "helm_robe_dungeonwarlock_a_01_dwm.m2", + value = "helm_robe_dungeonwarlock_a_01_dwm.m2", }, { fileId = "141617", - value = "helm_robe_dungeonwarlock_a_01_gnf.m2", text = "helm_robe_dungeonwarlock_a_01_gnf.m2", + value = "helm_robe_dungeonwarlock_a_01_gnf.m2", }, { fileId = "141618", - value = "helm_robe_dungeonwarlock_a_01_gnm.m2", text = "helm_robe_dungeonwarlock_a_01_gnm.m2", + value = "helm_robe_dungeonwarlock_a_01_gnm.m2", }, { fileId = "141619", - value = "helm_robe_dungeonwarlock_a_01_gof.m2", text = "helm_robe_dungeonwarlock_a_01_gof.m2", + value = "helm_robe_dungeonwarlock_a_01_gof.m2", }, { fileId = "141620", - value = "helm_robe_dungeonwarlock_a_01_gom.m2", text = "helm_robe_dungeonwarlock_a_01_gom.m2", + value = "helm_robe_dungeonwarlock_a_01_gom.m2", }, { fileId = "141621", - value = "helm_robe_dungeonwarlock_a_01_huf.m2", text = "helm_robe_dungeonwarlock_a_01_huf.m2", + value = "helm_robe_dungeonwarlock_a_01_huf.m2", }, { fileId = "141622", - value = "helm_robe_dungeonwarlock_a_01_hum.m2", text = "helm_robe_dungeonwarlock_a_01_hum.m2", + value = "helm_robe_dungeonwarlock_a_01_hum.m2", }, { fileId = "141623", - value = "helm_robe_dungeonwarlock_a_01_nif.m2", text = "helm_robe_dungeonwarlock_a_01_nif.m2", + value = "helm_robe_dungeonwarlock_a_01_nif.m2", }, { fileId = "141624", - value = "helm_robe_dungeonwarlock_a_01_nim.m2", text = "helm_robe_dungeonwarlock_a_01_nim.m2", + value = "helm_robe_dungeonwarlock_a_01_nim.m2", }, { fileId = "141625", - value = "helm_robe_dungeonwarlock_a_01_orf.m2", text = "helm_robe_dungeonwarlock_a_01_orf.m2", + value = "helm_robe_dungeonwarlock_a_01_orf.m2", }, { fileId = "141626", - value = "helm_robe_dungeonwarlock_a_01_orm.m2", text = "helm_robe_dungeonwarlock_a_01_orm.m2", + value = "helm_robe_dungeonwarlock_a_01_orm.m2", }, { fileId = "141627", - value = "helm_robe_dungeonwarlock_a_01_scf.m2", text = "helm_robe_dungeonwarlock_a_01_scf.m2", + value = "helm_robe_dungeonwarlock_a_01_scf.m2", }, { fileId = "141628", - value = "helm_robe_dungeonwarlock_a_01_scm.m2", text = "helm_robe_dungeonwarlock_a_01_scm.m2", + value = "helm_robe_dungeonwarlock_a_01_scm.m2", }, { fileId = "141629", - value = "helm_robe_dungeonwarlock_a_01_taf.m2", text = "helm_robe_dungeonwarlock_a_01_taf.m2", + value = "helm_robe_dungeonwarlock_a_01_taf.m2", }, { fileId = "141630", - value = "helm_robe_dungeonwarlock_a_01_tam.m2", text = "helm_robe_dungeonwarlock_a_01_tam.m2", + value = "helm_robe_dungeonwarlock_a_01_tam.m2", }, { fileId = "141631", - value = "helm_robe_dungeonwarlock_a_01_trf.m2", text = "helm_robe_dungeonwarlock_a_01_trf.m2", + value = "helm_robe_dungeonwarlock_a_01_trf.m2", }, { fileId = "141632", - value = "helm_robe_dungeonwarlock_a_01_trm.m2", text = "helm_robe_dungeonwarlock_a_01_trm.m2", + value = "helm_robe_dungeonwarlock_a_01_trm.m2", }, { fileId = "141640", - value = "helm_robe_dungeonwarlock_b_01_bef.m2", text = "helm_robe_dungeonwarlock_b_01_bef.m2", + value = "helm_robe_dungeonwarlock_b_01_bef.m2", }, { fileId = "141641", - value = "helm_robe_dungeonwarlock_b_01_bem.m2", text = "helm_robe_dungeonwarlock_b_01_bem.m2", + value = "helm_robe_dungeonwarlock_b_01_bem.m2", }, { fileId = "141642", - value = "helm_robe_dungeonwarlock_b_01_drf.m2", text = "helm_robe_dungeonwarlock_b_01_drf.m2", + value = "helm_robe_dungeonwarlock_b_01_drf.m2", }, { fileId = "141643", - value = "helm_robe_dungeonwarlock_b_01_drm.m2", text = "helm_robe_dungeonwarlock_b_01_drm.m2", + value = "helm_robe_dungeonwarlock_b_01_drm.m2", }, { fileId = "141644", - value = "helm_robe_dungeonwarlock_b_01_dwf.m2", text = "helm_robe_dungeonwarlock_b_01_dwf.m2", + value = "helm_robe_dungeonwarlock_b_01_dwf.m2", }, { fileId = "141645", - value = "helm_robe_dungeonwarlock_b_01_dwm.m2", text = "helm_robe_dungeonwarlock_b_01_dwm.m2", + value = "helm_robe_dungeonwarlock_b_01_dwm.m2", }, { fileId = "141646", - value = "helm_robe_dungeonwarlock_b_01_gnf.m2", text = "helm_robe_dungeonwarlock_b_01_gnf.m2", + value = "helm_robe_dungeonwarlock_b_01_gnf.m2", }, { fileId = "141647", - value = "helm_robe_dungeonwarlock_b_01_gnm.m2", text = "helm_robe_dungeonwarlock_b_01_gnm.m2", + value = "helm_robe_dungeonwarlock_b_01_gnm.m2", }, { fileId = "141648", - value = "helm_robe_dungeonwarlock_b_01_gof.m2", text = "helm_robe_dungeonwarlock_b_01_gof.m2", + value = "helm_robe_dungeonwarlock_b_01_gof.m2", }, { fileId = "141649", - value = "helm_robe_dungeonwarlock_b_01_gom.m2", text = "helm_robe_dungeonwarlock_b_01_gom.m2", + value = "helm_robe_dungeonwarlock_b_01_gom.m2", }, { fileId = "141650", - value = "helm_robe_dungeonwarlock_b_01_huf.m2", text = "helm_robe_dungeonwarlock_b_01_huf.m2", + value = "helm_robe_dungeonwarlock_b_01_huf.m2", }, { fileId = "141651", - value = "helm_robe_dungeonwarlock_b_01_hum.m2", text = "helm_robe_dungeonwarlock_b_01_hum.m2", + value = "helm_robe_dungeonwarlock_b_01_hum.m2", }, { fileId = "141652", - value = "helm_robe_dungeonwarlock_b_01_nif.m2", text = "helm_robe_dungeonwarlock_b_01_nif.m2", + value = "helm_robe_dungeonwarlock_b_01_nif.m2", }, { fileId = "141653", - value = "helm_robe_dungeonwarlock_b_01_nim.m2", text = "helm_robe_dungeonwarlock_b_01_nim.m2", + value = "helm_robe_dungeonwarlock_b_01_nim.m2", }, { fileId = "141654", - value = "helm_robe_dungeonwarlock_b_01_orf.m2", text = "helm_robe_dungeonwarlock_b_01_orf.m2", + value = "helm_robe_dungeonwarlock_b_01_orf.m2", }, { fileId = "141655", - value = "helm_robe_dungeonwarlock_b_01_orm.m2", text = "helm_robe_dungeonwarlock_b_01_orm.m2", + value = "helm_robe_dungeonwarlock_b_01_orm.m2", }, { fileId = "141656", - value = "helm_robe_dungeonwarlock_b_01_scf.m2", text = "helm_robe_dungeonwarlock_b_01_scf.m2", + value = "helm_robe_dungeonwarlock_b_01_scf.m2", }, { fileId = "141657", - value = "helm_robe_dungeonwarlock_b_01_scm.m2", text = "helm_robe_dungeonwarlock_b_01_scm.m2", + value = "helm_robe_dungeonwarlock_b_01_scm.m2", }, { fileId = "141658", - value = "helm_robe_dungeonwarlock_b_01_taf.m2", text = "helm_robe_dungeonwarlock_b_01_taf.m2", + value = "helm_robe_dungeonwarlock_b_01_taf.m2", }, { fileId = "141659", - value = "helm_robe_dungeonwarlock_b_01_tam.m2", text = "helm_robe_dungeonwarlock_b_01_tam.m2", + value = "helm_robe_dungeonwarlock_b_01_tam.m2", }, { fileId = "141660", - value = "helm_robe_dungeonwarlock_b_01_trf.m2", text = "helm_robe_dungeonwarlock_b_01_trf.m2", + value = "helm_robe_dungeonwarlock_b_01_trf.m2", }, { fileId = "141661", - value = "helm_robe_dungeonwarlock_b_01_trm.m2", text = "helm_robe_dungeonwarlock_b_01_trm.m2", + value = "helm_robe_dungeonwarlock_b_01_trm.m2", }, { fileId = "141667", - value = "helm_robe_holiday_summerfest_a_01_bef.m2", text = "helm_robe_holiday_summerfest_a_01_bef.m2", + value = "helm_robe_holiday_summerfest_a_01_bef.m2", }, { fileId = "141668", - value = "helm_robe_holiday_summerfest_a_01_bem.m2", text = "helm_robe_holiday_summerfest_a_01_bem.m2", + value = "helm_robe_holiday_summerfest_a_01_bem.m2", }, { fileId = "141669", - value = "helm_robe_holiday_summerfest_a_01_drf.m2", text = "helm_robe_holiday_summerfest_a_01_drf.m2", + value = "helm_robe_holiday_summerfest_a_01_drf.m2", }, { fileId = "141670", - value = "helm_robe_holiday_summerfest_a_01_drm.m2", text = "helm_robe_holiday_summerfest_a_01_drm.m2", + value = "helm_robe_holiday_summerfest_a_01_drm.m2", }, { fileId = "141671", - value = "helm_robe_holiday_summerfest_a_01_dwf.m2", text = "helm_robe_holiday_summerfest_a_01_dwf.m2", + value = "helm_robe_holiday_summerfest_a_01_dwf.m2", }, { fileId = "141672", - value = "helm_robe_holiday_summerfest_a_01_dwm.m2", text = "helm_robe_holiday_summerfest_a_01_dwm.m2", + value = "helm_robe_holiday_summerfest_a_01_dwm.m2", }, { fileId = "141673", - value = "helm_robe_holiday_summerfest_a_01_gnf.m2", text = "helm_robe_holiday_summerfest_a_01_gnf.m2", + value = "helm_robe_holiday_summerfest_a_01_gnf.m2", }, { fileId = "141674", - value = "helm_robe_holiday_summerfest_a_01_gnm.m2", text = "helm_robe_holiday_summerfest_a_01_gnm.m2", + value = "helm_robe_holiday_summerfest_a_01_gnm.m2", }, { fileId = "141675", - value = "helm_robe_holiday_summerfest_a_01_gof.m2", text = "helm_robe_holiday_summerfest_a_01_gof.m2", + value = "helm_robe_holiday_summerfest_a_01_gof.m2", }, { fileId = "141676", - value = "helm_robe_holiday_summerfest_a_01_gom.m2", text = "helm_robe_holiday_summerfest_a_01_gom.m2", + value = "helm_robe_holiday_summerfest_a_01_gom.m2", }, { fileId = "141677", - value = "helm_robe_holiday_summerfest_a_01_huf.m2", text = "helm_robe_holiday_summerfest_a_01_huf.m2", + value = "helm_robe_holiday_summerfest_a_01_huf.m2", }, { fileId = "141678", - value = "helm_robe_holiday_summerfest_a_01_hum.m2", text = "helm_robe_holiday_summerfest_a_01_hum.m2", + value = "helm_robe_holiday_summerfest_a_01_hum.m2", }, { fileId = "141679", - value = "helm_robe_holiday_summerfest_a_01_nif.m2", text = "helm_robe_holiday_summerfest_a_01_nif.m2", + value = "helm_robe_holiday_summerfest_a_01_nif.m2", }, { fileId = "141680", - value = "helm_robe_holiday_summerfest_a_01_nim.m2", text = "helm_robe_holiday_summerfest_a_01_nim.m2", + value = "helm_robe_holiday_summerfest_a_01_nim.m2", }, { fileId = "141681", - value = "helm_robe_holiday_summerfest_a_01_orf.m2", text = "helm_robe_holiday_summerfest_a_01_orf.m2", + value = "helm_robe_holiday_summerfest_a_01_orf.m2", }, { fileId = "141682", - value = "helm_robe_holiday_summerfest_a_01_orm.m2", text = "helm_robe_holiday_summerfest_a_01_orm.m2", + value = "helm_robe_holiday_summerfest_a_01_orm.m2", }, { fileId = "141683", - value = "helm_robe_holiday_summerfest_a_01_scf.m2", text = "helm_robe_holiday_summerfest_a_01_scf.m2", + value = "helm_robe_holiday_summerfest_a_01_scf.m2", }, { fileId = "141684", - value = "helm_robe_holiday_summerfest_a_01_scm.m2", text = "helm_robe_holiday_summerfest_a_01_scm.m2", + value = "helm_robe_holiday_summerfest_a_01_scm.m2", }, { fileId = "141685", - value = "helm_robe_holiday_summerfest_a_01_taf.m2", text = "helm_robe_holiday_summerfest_a_01_taf.m2", + value = "helm_robe_holiday_summerfest_a_01_taf.m2", }, { fileId = "141686", - value = "helm_robe_holiday_summerfest_a_01_tam.m2", text = "helm_robe_holiday_summerfest_a_01_tam.m2", + value = "helm_robe_holiday_summerfest_a_01_tam.m2", }, { fileId = "141687", - value = "helm_robe_holiday_summerfest_a_01_trf.m2", text = "helm_robe_holiday_summerfest_a_01_trf.m2", + value = "helm_robe_holiday_summerfest_a_01_trf.m2", }, { fileId = "141688", - value = "helm_robe_holiday_summerfest_a_01_trm.m2", text = "helm_robe_holiday_summerfest_a_01_trm.m2", + value = "helm_robe_holiday_summerfest_a_01_trm.m2", }, { fileId = "141689", - value = "helm_robe_holiday_summerfest_a_02_bef.m2", text = "helm_robe_holiday_summerfest_a_02_bef.m2", + value = "helm_robe_holiday_summerfest_a_02_bef.m2", }, { fileId = "141690", - value = "helm_robe_holiday_summerfest_a_02_bem.m2", text = "helm_robe_holiday_summerfest_a_02_bem.m2", + value = "helm_robe_holiday_summerfest_a_02_bem.m2", }, { fileId = "141691", - value = "helm_robe_holiday_summerfest_a_02_dwf.m2", text = "helm_robe_holiday_summerfest_a_02_dwf.m2", + value = "helm_robe_holiday_summerfest_a_02_dwf.m2", }, { fileId = "141692", - value = "helm_robe_holiday_summerfest_a_02_dwm.m2", text = "helm_robe_holiday_summerfest_a_02_dwm.m2", + value = "helm_robe_holiday_summerfest_a_02_dwm.m2", }, { fileId = "141693", - value = "helm_robe_holiday_summerfest_a_02_gnf.m2", text = "helm_robe_holiday_summerfest_a_02_gnf.m2", + value = "helm_robe_holiday_summerfest_a_02_gnf.m2", }, { fileId = "141694", - value = "helm_robe_holiday_summerfest_a_02_gnm.m2", text = "helm_robe_holiday_summerfest_a_02_gnm.m2", + value = "helm_robe_holiday_summerfest_a_02_gnm.m2", }, { fileId = "141695", - value = "helm_robe_holiday_summerfest_a_02_gom.m2", text = "helm_robe_holiday_summerfest_a_02_gom.m2", + value = "helm_robe_holiday_summerfest_a_02_gom.m2", }, { fileId = "141696", - value = "helm_robe_holiday_summerfest_a_02_huf.m2", text = "helm_robe_holiday_summerfest_a_02_huf.m2", + value = "helm_robe_holiday_summerfest_a_02_huf.m2", }, { fileId = "141697", - value = "helm_robe_holiday_summerfest_a_02_hum.m2", text = "helm_robe_holiday_summerfest_a_02_hum.m2", + value = "helm_robe_holiday_summerfest_a_02_hum.m2", }, { fileId = "141698", - value = "helm_robe_holiday_summerfest_a_02_nif.m2", text = "helm_robe_holiday_summerfest_a_02_nif.m2", + value = "helm_robe_holiday_summerfest_a_02_nif.m2", }, { fileId = "141699", - value = "helm_robe_holiday_summerfest_a_02_nim.m2", text = "helm_robe_holiday_summerfest_a_02_nim.m2", + value = "helm_robe_holiday_summerfest_a_02_nim.m2", }, { fileId = "141700", - value = "helm_robe_holiday_summerfest_a_02_orf.m2", text = "helm_robe_holiday_summerfest_a_02_orf.m2", + value = "helm_robe_holiday_summerfest_a_02_orf.m2", }, { fileId = "141701", - value = "helm_robe_holiday_summerfest_a_02_orm.m2", text = "helm_robe_holiday_summerfest_a_02_orm.m2", + value = "helm_robe_holiday_summerfest_a_02_orm.m2", }, { fileId = "141702", - value = "helm_robe_holiday_summerfest_a_02_scf.m2", text = "helm_robe_holiday_summerfest_a_02_scf.m2", + value = "helm_robe_holiday_summerfest_a_02_scf.m2", }, { fileId = "141703", - value = "helm_robe_holiday_summerfest_a_02_scm.m2", text = "helm_robe_holiday_summerfest_a_02_scm.m2", + value = "helm_robe_holiday_summerfest_a_02_scm.m2", }, { fileId = "141704", - value = "helm_robe_holiday_summerfest_a_02_taf.m2", text = "helm_robe_holiday_summerfest_a_02_taf.m2", + value = "helm_robe_holiday_summerfest_a_02_taf.m2", }, { fileId = "141705", - value = "helm_robe_holiday_summerfest_a_02_tam.m2", text = "helm_robe_holiday_summerfest_a_02_tam.m2", + value = "helm_robe_holiday_summerfest_a_02_tam.m2", }, { fileId = "141706", - value = "helm_robe_holiday_summerfest_a_02_trf.m2", text = "helm_robe_holiday_summerfest_a_02_trf.m2", + value = "helm_robe_holiday_summerfest_a_02_trf.m2", }, { fileId = "141707", - value = "helm_robe_holiday_summerfest_a_02_trm.m2", text = "helm_robe_holiday_summerfest_a_02_trm.m2", + value = "helm_robe_holiday_summerfest_a_02_trm.m2", }, { fileId = "141710", - value = "helm_robe_horde_b_03earthenring_bef.m2", text = "helm_robe_horde_b_03earthenring_bef.m2", + value = "helm_robe_horde_b_03earthenring_bef.m2", }, { fileId = "141711", - value = "helm_robe_horde_b_03earthenring_bem.m2", text = "helm_robe_horde_b_03earthenring_bem.m2", + value = "helm_robe_horde_b_03earthenring_bem.m2", }, { fileId = "141712", - value = "helm_robe_horde_b_03earthenring_drf.m2", text = "helm_robe_horde_b_03earthenring_drf.m2", + value = "helm_robe_horde_b_03earthenring_drf.m2", }, { fileId = "141713", - value = "helm_robe_horde_b_03earthenring_drm.m2", text = "helm_robe_horde_b_03earthenring_drm.m2", + value = "helm_robe_horde_b_03earthenring_drm.m2", }, { fileId = "141714", - value = "helm_robe_horde_b_03earthenring_dwf.m2", text = "helm_robe_horde_b_03earthenring_dwf.m2", + value = "helm_robe_horde_b_03earthenring_dwf.m2", }, { fileId = "141715", - value = "helm_robe_horde_b_03earthenring_dwm.m2", text = "helm_robe_horde_b_03earthenring_dwm.m2", + value = "helm_robe_horde_b_03earthenring_dwm.m2", }, { fileId = "141716", - value = "helm_robe_horde_b_03earthenring_gnf.m2", text = "helm_robe_horde_b_03earthenring_gnf.m2", + value = "helm_robe_horde_b_03earthenring_gnf.m2", }, { fileId = "141717", - value = "helm_robe_horde_b_03earthenring_gnm.m2", text = "helm_robe_horde_b_03earthenring_gnm.m2", + value = "helm_robe_horde_b_03earthenring_gnm.m2", }, { fileId = "141718", - value = "helm_robe_horde_b_03earthenring_gof.m2", text = "helm_robe_horde_b_03earthenring_gof.m2", + value = "helm_robe_horde_b_03earthenring_gof.m2", }, { fileId = "141719", - value = "helm_robe_horde_b_03earthenring_gom.m2", text = "helm_robe_horde_b_03earthenring_gom.m2", + value = "helm_robe_horde_b_03earthenring_gom.m2", }, { fileId = "141720", - value = "helm_robe_horde_b_03earthenring_huf.m2", text = "helm_robe_horde_b_03earthenring_huf.m2", + value = "helm_robe_horde_b_03earthenring_huf.m2", }, { fileId = "141721", - value = "helm_robe_horde_b_03earthenring_hum.m2", text = "helm_robe_horde_b_03earthenring_hum.m2", + value = "helm_robe_horde_b_03earthenring_hum.m2", }, { fileId = "141722", - value = "helm_robe_horde_b_03earthenring_nif.m2", text = "helm_robe_horde_b_03earthenring_nif.m2", + value = "helm_robe_horde_b_03earthenring_nif.m2", }, { fileId = "141723", - value = "helm_robe_horde_b_03earthenring_nim.m2", text = "helm_robe_horde_b_03earthenring_nim.m2", + value = "helm_robe_horde_b_03earthenring_nim.m2", }, { fileId = "141724", - value = "helm_robe_horde_b_03earthenring_orf.m2", text = "helm_robe_horde_b_03earthenring_orf.m2", + value = "helm_robe_horde_b_03earthenring_orf.m2", }, { fileId = "141725", - value = "helm_robe_horde_b_03earthenring_orm.m2", text = "helm_robe_horde_b_03earthenring_orm.m2", + value = "helm_robe_horde_b_03earthenring_orm.m2", }, { fileId = "141726", - value = "helm_robe_horde_b_03earthenring_scf.m2", text = "helm_robe_horde_b_03earthenring_scf.m2", + value = "helm_robe_horde_b_03earthenring_scf.m2", }, { fileId = "141727", - value = "helm_robe_horde_b_03earthenring_scm.m2", text = "helm_robe_horde_b_03earthenring_scm.m2", + value = "helm_robe_horde_b_03earthenring_scm.m2", }, { fileId = "141728", - value = "helm_robe_horde_b_03earthenring_taf.m2", text = "helm_robe_horde_b_03earthenring_taf.m2", + value = "helm_robe_horde_b_03earthenring_taf.m2", }, { fileId = "141729", - value = "helm_robe_horde_b_03earthenring_tam.m2", text = "helm_robe_horde_b_03earthenring_tam.m2", + value = "helm_robe_horde_b_03earthenring_tam.m2", }, { fileId = "141730", - value = "helm_robe_horde_b_03earthenring_trf.m2", text = "helm_robe_horde_b_03earthenring_trf.m2", + value = "helm_robe_horde_b_03earthenring_trf.m2", }, { fileId = "141731", - value = "helm_robe_horde_b_03earthenring_trm.m2", text = "helm_robe_horde_b_03earthenring_trm.m2", + value = "helm_robe_horde_b_03earthenring_trm.m2", }, { fileId = "141837", - value = "helm_robe_pvpalliance_a_01_bef.m2", text = "helm_robe_pvpalliance_a_01_bef.m2", + value = "helm_robe_pvpalliance_a_01_bef.m2", }, { fileId = "141838", - value = "helm_robe_pvpalliance_a_01_bem.m2", text = "helm_robe_pvpalliance_a_01_bem.m2", + value = "helm_robe_pvpalliance_a_01_bem.m2", }, { fileId = "141839", - value = "helm_robe_pvpalliance_a_01_drf.m2", text = "helm_robe_pvpalliance_a_01_drf.m2", + value = "helm_robe_pvpalliance_a_01_drf.m2", }, { fileId = "141840", - value = "helm_robe_pvpalliance_a_01_drm.m2", text = "helm_robe_pvpalliance_a_01_drm.m2", + value = "helm_robe_pvpalliance_a_01_drm.m2", }, { fileId = "141841", - value = "helm_robe_pvpalliance_a_01_dwf.m2", text = "helm_robe_pvpalliance_a_01_dwf.m2", + value = "helm_robe_pvpalliance_a_01_dwf.m2", }, { fileId = "141842", - value = "helm_robe_pvpalliance_a_01_dwm.m2", text = "helm_robe_pvpalliance_a_01_dwm.m2", + value = "helm_robe_pvpalliance_a_01_dwm.m2", }, { fileId = "141843", - value = "helm_robe_pvpalliance_a_01_gnf.m2", text = "helm_robe_pvpalliance_a_01_gnf.m2", + value = "helm_robe_pvpalliance_a_01_gnf.m2", }, { fileId = "141844", - value = "helm_robe_pvpalliance_a_01_gnm.m2", text = "helm_robe_pvpalliance_a_01_gnm.m2", + value = "helm_robe_pvpalliance_a_01_gnm.m2", }, { fileId = "141845", - value = "helm_robe_pvpalliance_a_01_gof.m2", text = "helm_robe_pvpalliance_a_01_gof.m2", + value = "helm_robe_pvpalliance_a_01_gof.m2", }, { fileId = "141846", - value = "helm_robe_pvpalliance_a_01_gom.m2", text = "helm_robe_pvpalliance_a_01_gom.m2", + value = "helm_robe_pvpalliance_a_01_gom.m2", }, { fileId = "141847", - value = "helm_robe_pvpalliance_a_01_huf.m2", text = "helm_robe_pvpalliance_a_01_huf.m2", + value = "helm_robe_pvpalliance_a_01_huf.m2", }, { fileId = "141848", - value = "helm_robe_pvpalliance_a_01_hum.m2", text = "helm_robe_pvpalliance_a_01_hum.m2", + value = "helm_robe_pvpalliance_a_01_hum.m2", }, { fileId = "141849", - value = "helm_robe_pvpalliance_a_01_nif.m2", text = "helm_robe_pvpalliance_a_01_nif.m2", + value = "helm_robe_pvpalliance_a_01_nif.m2", }, { fileId = "141850", - value = "helm_robe_pvpalliance_a_01_nim.m2", text = "helm_robe_pvpalliance_a_01_nim.m2", + value = "helm_robe_pvpalliance_a_01_nim.m2", }, { fileId = "141851", - value = "helm_robe_pvpalliance_a_01_orf.m2", text = "helm_robe_pvpalliance_a_01_orf.m2", + value = "helm_robe_pvpalliance_a_01_orf.m2", }, { fileId = "141852", - value = "helm_robe_pvpalliance_a_01_orm.m2", text = "helm_robe_pvpalliance_a_01_orm.m2", + value = "helm_robe_pvpalliance_a_01_orm.m2", }, { fileId = "141853", - value = "helm_robe_pvpalliance_a_01_scf.m2", text = "helm_robe_pvpalliance_a_01_scf.m2", + value = "helm_robe_pvpalliance_a_01_scf.m2", }, { fileId = "141854", - value = "helm_robe_pvpalliance_a_01_scm.m2", text = "helm_robe_pvpalliance_a_01_scm.m2", + value = "helm_robe_pvpalliance_a_01_scm.m2", }, { fileId = "141855", - value = "helm_robe_pvpalliance_a_01_taf.m2", text = "helm_robe_pvpalliance_a_01_taf.m2", + value = "helm_robe_pvpalliance_a_01_taf.m2", }, { fileId = "141856", - value = "helm_robe_pvpalliance_a_01_tam.m2", text = "helm_robe_pvpalliance_a_01_tam.m2", + value = "helm_robe_pvpalliance_a_01_tam.m2", }, { fileId = "141857", - value = "helm_robe_pvpalliance_a_01_trf.m2", text = "helm_robe_pvpalliance_a_01_trf.m2", + value = "helm_robe_pvpalliance_a_01_trf.m2", }, { fileId = "141858", - value = "helm_robe_pvpalliance_a_01_trm.m2", text = "helm_robe_pvpalliance_a_01_trm.m2", + value = "helm_robe_pvpalliance_a_01_trm.m2", }, { fileId = "141862", - value = "helm_robe_pvpalliance_b_01_drf.m2", text = "helm_robe_pvpalliance_b_01_drf.m2", + value = "helm_robe_pvpalliance_b_01_drf.m2", }, { fileId = "141863", - value = "helm_robe_pvpalliance_b_01_drm.m2", text = "helm_robe_pvpalliance_b_01_drm.m2", + value = "helm_robe_pvpalliance_b_01_drm.m2", }, { fileId = "141864", - value = "helm_robe_pvpalliance_b_01_gof.m2", text = "helm_robe_pvpalliance_b_01_gof.m2", + value = "helm_robe_pvpalliance_b_01_gof.m2", }, { fileId = "141865", - value = "helm_robe_pvpalliance_b_01_gom.m2", text = "helm_robe_pvpalliance_b_01_gom.m2", + value = "helm_robe_pvpalliance_b_01_gom.m2", }, { fileId = "141866", - value = "helm_robe_pvpalliance_c_01_bef.m2", text = "helm_robe_pvpalliance_c_01_bef.m2", + value = "helm_robe_pvpalliance_c_01_bef.m2", }, { fileId = "141867", - value = "helm_robe_pvpalliance_c_01_bem.m2", text = "helm_robe_pvpalliance_c_01_bem.m2", + value = "helm_robe_pvpalliance_c_01_bem.m2", }, { fileId = "141868", - value = "helm_robe_pvpalliance_c_01_drf.m2", text = "helm_robe_pvpalliance_c_01_drf.m2", + value = "helm_robe_pvpalliance_c_01_drf.m2", }, { fileId = "141869", - value = "helm_robe_pvpalliance_c_01_drm.m2", text = "helm_robe_pvpalliance_c_01_drm.m2", + value = "helm_robe_pvpalliance_c_01_drm.m2", }, { fileId = "141870", - value = "helm_robe_pvpalliance_c_01_dwf.m2", text = "helm_robe_pvpalliance_c_01_dwf.m2", + value = "helm_robe_pvpalliance_c_01_dwf.m2", }, { fileId = "141871", - value = "helm_robe_pvpalliance_c_01_dwm.m2", text = "helm_robe_pvpalliance_c_01_dwm.m2", + value = "helm_robe_pvpalliance_c_01_dwm.m2", }, { fileId = "141872", - value = "helm_robe_pvpalliance_c_01_gnf.m2", text = "helm_robe_pvpalliance_c_01_gnf.m2", + value = "helm_robe_pvpalliance_c_01_gnf.m2", }, { fileId = "141873", - value = "helm_robe_pvpalliance_c_01_gnm.m2", text = "helm_robe_pvpalliance_c_01_gnm.m2", + value = "helm_robe_pvpalliance_c_01_gnm.m2", }, { fileId = "141874", - value = "helm_robe_pvpalliance_c_01_huf.m2", text = "helm_robe_pvpalliance_c_01_huf.m2", + value = "helm_robe_pvpalliance_c_01_huf.m2", }, { fileId = "141875", - value = "helm_robe_pvpalliance_c_01_hum.m2", text = "helm_robe_pvpalliance_c_01_hum.m2", + value = "helm_robe_pvpalliance_c_01_hum.m2", }, { fileId = "141876", - value = "helm_robe_pvpalliance_c_01_nif.m2", text = "helm_robe_pvpalliance_c_01_nif.m2", + value = "helm_robe_pvpalliance_c_01_nif.m2", }, { fileId = "141877", - value = "helm_robe_pvpalliance_c_01_nim.m2", text = "helm_robe_pvpalliance_c_01_nim.m2", + value = "helm_robe_pvpalliance_c_01_nim.m2", }, { fileId = "141878", - value = "helm_robe_pvpalliance_c_01_orf.m2", text = "helm_robe_pvpalliance_c_01_orf.m2", + value = "helm_robe_pvpalliance_c_01_orf.m2", }, { fileId = "141879", - value = "helm_robe_pvpalliance_c_01_orm.m2", text = "helm_robe_pvpalliance_c_01_orm.m2", + value = "helm_robe_pvpalliance_c_01_orm.m2", }, { fileId = "141880", - value = "helm_robe_pvpalliance_c_01_scf.m2", text = "helm_robe_pvpalliance_c_01_scf.m2", + value = "helm_robe_pvpalliance_c_01_scf.m2", }, { fileId = "141881", - value = "helm_robe_pvpalliance_c_01_scm.m2", text = "helm_robe_pvpalliance_c_01_scm.m2", + value = "helm_robe_pvpalliance_c_01_scm.m2", }, { fileId = "141882", - value = "helm_robe_pvpalliance_c_01_taf.m2", text = "helm_robe_pvpalliance_c_01_taf.m2", + value = "helm_robe_pvpalliance_c_01_taf.m2", }, { fileId = "141883", - value = "helm_robe_pvpalliance_c_01_tam.m2", text = "helm_robe_pvpalliance_c_01_tam.m2", + value = "helm_robe_pvpalliance_c_01_tam.m2", }, { fileId = "141884", - value = "helm_robe_pvpalliance_c_01_trf.m2", text = "helm_robe_pvpalliance_c_01_trf.m2", + value = "helm_robe_pvpalliance_c_01_trf.m2", }, { fileId = "141885", - value = "helm_robe_pvpalliance_c_01_trm.m2", text = "helm_robe_pvpalliance_c_01_trm.m2", + value = "helm_robe_pvpalliance_c_01_trm.m2", }, { fileId = "141889", - value = "helm_robe_pvphorde_a_01_bef.m2", text = "helm_robe_pvphorde_a_01_bef.m2", + value = "helm_robe_pvphorde_a_01_bef.m2", }, { fileId = "141890", - value = "helm_robe_pvphorde_a_01_bem.m2", text = "helm_robe_pvphorde_a_01_bem.m2", + value = "helm_robe_pvphorde_a_01_bem.m2", }, { fileId = "141891", - value = "helm_robe_pvphorde_a_01_drf.m2", text = "helm_robe_pvphorde_a_01_drf.m2", + value = "helm_robe_pvphorde_a_01_drf.m2", }, { fileId = "141892", - value = "helm_robe_pvphorde_a_01_drm.m2", text = "helm_robe_pvphorde_a_01_drm.m2", + value = "helm_robe_pvphorde_a_01_drm.m2", }, { fileId = "141893", - value = "helm_robe_pvphorde_a_01_dwf.m2", text = "helm_robe_pvphorde_a_01_dwf.m2", + value = "helm_robe_pvphorde_a_01_dwf.m2", }, { fileId = "141894", - value = "helm_robe_pvphorde_a_01_dwm.m2", text = "helm_robe_pvphorde_a_01_dwm.m2", + value = "helm_robe_pvphorde_a_01_dwm.m2", }, { fileId = "141895", - value = "helm_robe_pvphorde_a_01_gnf.m2", text = "helm_robe_pvphorde_a_01_gnf.m2", + value = "helm_robe_pvphorde_a_01_gnf.m2", }, { fileId = "141896", - value = "helm_robe_pvphorde_a_01_gnm.m2", text = "helm_robe_pvphorde_a_01_gnm.m2", + value = "helm_robe_pvphorde_a_01_gnm.m2", }, { fileId = "141897", - value = "helm_robe_pvphorde_a_01_gof.m2", text = "helm_robe_pvphorde_a_01_gof.m2", + value = "helm_robe_pvphorde_a_01_gof.m2", }, { fileId = "141898", - value = "helm_robe_pvphorde_a_01_huf.m2", text = "helm_robe_pvphorde_a_01_huf.m2", + value = "helm_robe_pvphorde_a_01_huf.m2", }, { fileId = "141899", - value = "helm_robe_pvphorde_a_01_hum.m2", text = "helm_robe_pvphorde_a_01_hum.m2", + value = "helm_robe_pvphorde_a_01_hum.m2", }, { fileId = "141900", - value = "helm_robe_pvphorde_a_01_nif.m2", text = "helm_robe_pvphorde_a_01_nif.m2", + value = "helm_robe_pvphorde_a_01_nif.m2", }, { fileId = "141901", - value = "helm_robe_pvphorde_a_01_nim.m2", text = "helm_robe_pvphorde_a_01_nim.m2", + value = "helm_robe_pvphorde_a_01_nim.m2", }, { fileId = "141902", - value = "helm_robe_pvphorde_a_01_orf.m2", text = "helm_robe_pvphorde_a_01_orf.m2", + value = "helm_robe_pvphorde_a_01_orf.m2", }, { fileId = "141903", - value = "helm_robe_pvphorde_a_01_orm.m2", text = "helm_robe_pvphorde_a_01_orm.m2", + value = "helm_robe_pvphorde_a_01_orm.m2", }, { fileId = "141904", - value = "helm_robe_pvphorde_a_01_scf.m2", text = "helm_robe_pvphorde_a_01_scf.m2", + value = "helm_robe_pvphorde_a_01_scf.m2", }, { fileId = "141905", - value = "helm_robe_pvphorde_a_01_scm.m2", text = "helm_robe_pvphorde_a_01_scm.m2", + value = "helm_robe_pvphorde_a_01_scm.m2", }, { fileId = "141906", - value = "helm_robe_pvphorde_a_01_taf.m2", text = "helm_robe_pvphorde_a_01_taf.m2", + value = "helm_robe_pvphorde_a_01_taf.m2", }, { fileId = "141907", - value = "helm_robe_pvphorde_a_01_tam.m2", text = "helm_robe_pvphorde_a_01_tam.m2", + value = "helm_robe_pvphorde_a_01_tam.m2", }, { fileId = "141908", - value = "helm_robe_pvphorde_a_01_trf.m2", text = "helm_robe_pvphorde_a_01_trf.m2", + value = "helm_robe_pvphorde_a_01_trf.m2", }, { fileId = "141909", - value = "helm_robe_pvphorde_a_01_trm.m2", text = "helm_robe_pvphorde_a_01_trm.m2", + value = "helm_robe_pvphorde_a_01_trm.m2", }, { fileId = "141913", - value = "helm_robe_pvphorde_b_01_bef.m2", text = "helm_robe_pvphorde_b_01_bef.m2", + value = "helm_robe_pvphorde_b_01_bef.m2", }, { fileId = "141914", - value = "helm_robe_pvphorde_b_01_bem.m2", text = "helm_robe_pvphorde_b_01_bem.m2", + value = "helm_robe_pvphorde_b_01_bem.m2", }, { fileId = "141915", - value = "helm_robe_pvphorde_b_01_drf.m2", text = "helm_robe_pvphorde_b_01_drf.m2", + value = "helm_robe_pvphorde_b_01_drf.m2", }, { fileId = "141916", - value = "helm_robe_pvphorde_b_01_drm.m2", text = "helm_robe_pvphorde_b_01_drm.m2", + value = "helm_robe_pvphorde_b_01_drm.m2", }, { fileId = "141917", - value = "helm_robe_pvphorde_b_01_gof.m2", text = "helm_robe_pvphorde_b_01_gof.m2", + value = "helm_robe_pvphorde_b_01_gof.m2", }, { fileId = "141918", - value = "helm_robe_pvphorde_c_01_bef.m2", text = "helm_robe_pvphorde_c_01_bef.m2", + value = "helm_robe_pvphorde_c_01_bef.m2", }, { fileId = "141919", - value = "helm_robe_pvphorde_c_01_bem.m2", text = "helm_robe_pvphorde_c_01_bem.m2", + value = "helm_robe_pvphorde_c_01_bem.m2", }, { fileId = "141920", - value = "helm_robe_pvphorde_c_01_drf.m2", text = "helm_robe_pvphorde_c_01_drf.m2", + value = "helm_robe_pvphorde_c_01_drf.m2", }, { fileId = "141921", - value = "helm_robe_pvphorde_c_01_drm.m2", text = "helm_robe_pvphorde_c_01_drm.m2", + value = "helm_robe_pvphorde_c_01_drm.m2", }, { fileId = "141922", - value = "helm_robe_pvphorde_c_01_dwf.m2", text = "helm_robe_pvphorde_c_01_dwf.m2", + value = "helm_robe_pvphorde_c_01_dwf.m2", }, { fileId = "141923", - value = "helm_robe_pvphorde_c_01_dwm.m2", text = "helm_robe_pvphorde_c_01_dwm.m2", + value = "helm_robe_pvphorde_c_01_dwm.m2", }, { fileId = "141924", - value = "helm_robe_pvphorde_c_01_gnf.m2", text = "helm_robe_pvphorde_c_01_gnf.m2", + value = "helm_robe_pvphorde_c_01_gnf.m2", }, { fileId = "141925", - value = "helm_robe_pvphorde_c_01_gnm.m2", text = "helm_robe_pvphorde_c_01_gnm.m2", + value = "helm_robe_pvphorde_c_01_gnm.m2", }, { fileId = "141926", - value = "helm_robe_pvphorde_c_01_gom.m2", text = "helm_robe_pvphorde_c_01_gom.m2", + value = "helm_robe_pvphorde_c_01_gom.m2", }, { fileId = "141927", - value = "helm_robe_pvphorde_c_01_huf.m2", text = "helm_robe_pvphorde_c_01_huf.m2", + value = "helm_robe_pvphorde_c_01_huf.m2", }, { fileId = "141928", - value = "helm_robe_pvphorde_c_01_hum.m2", text = "helm_robe_pvphorde_c_01_hum.m2", + value = "helm_robe_pvphorde_c_01_hum.m2", }, { fileId = "141929", - value = "helm_robe_pvphorde_c_01_nif.m2", text = "helm_robe_pvphorde_c_01_nif.m2", + value = "helm_robe_pvphorde_c_01_nif.m2", }, { fileId = "141930", - value = "helm_robe_pvphorde_c_01_nim.m2", text = "helm_robe_pvphorde_c_01_nim.m2", + value = "helm_robe_pvphorde_c_01_nim.m2", }, { fileId = "141931", - value = "helm_robe_pvphorde_c_01_orf.m2", text = "helm_robe_pvphorde_c_01_orf.m2", + value = "helm_robe_pvphorde_c_01_orf.m2", }, { fileId = "141932", - value = "helm_robe_pvphorde_c_01_orm.m2", text = "helm_robe_pvphorde_c_01_orm.m2", + value = "helm_robe_pvphorde_c_01_orm.m2", }, { fileId = "141933", - value = "helm_robe_pvphorde_c_01_scf.m2", text = "helm_robe_pvphorde_c_01_scf.m2", + value = "helm_robe_pvphorde_c_01_scf.m2", }, { fileId = "141934", - value = "helm_robe_pvphorde_c_01_scm.m2", text = "helm_robe_pvphorde_c_01_scm.m2", + value = "helm_robe_pvphorde_c_01_scm.m2", }, { fileId = "141935", - value = "helm_robe_pvphorde_c_01_taf.m2", text = "helm_robe_pvphorde_c_01_taf.m2", + value = "helm_robe_pvphorde_c_01_taf.m2", }, { fileId = "141936", - value = "helm_robe_pvphorde_c_01_tam.m2", text = "helm_robe_pvphorde_c_01_tam.m2", + value = "helm_robe_pvphorde_c_01_tam.m2", }, { fileId = "141937", - value = "helm_robe_pvphorde_c_01_trf.m2", text = "helm_robe_pvphorde_c_01_trf.m2", + value = "helm_robe_pvphorde_c_01_trf.m2", }, { fileId = "141938", - value = "helm_robe_pvphorde_c_01_trm.m2", text = "helm_robe_pvphorde_c_01_trm.m2", + value = "helm_robe_pvphorde_c_01_trm.m2", }, { fileId = "141942", - value = "helm_robe_raid_a_01_bef.m2", text = "helm_robe_raid_a_01_bef.m2", + value = "helm_robe_raid_a_01_bef.m2", }, { fileId = "141943", - value = "helm_robe_raid_a_01_bem.m2", text = "helm_robe_raid_a_01_bem.m2", + value = "helm_robe_raid_a_01_bem.m2", }, { fileId = "141944", - value = "helm_robe_raid_a_01_drf.m2", text = "helm_robe_raid_a_01_drf.m2", + value = "helm_robe_raid_a_01_drf.m2", }, { fileId = "141945", - value = "helm_robe_raid_a_01_drm.m2", text = "helm_robe_raid_a_01_drm.m2", + value = "helm_robe_raid_a_01_drm.m2", }, { fileId = "141946", - value = "helm_robe_raid_a_01_gof.m2", text = "helm_robe_raid_a_01_gof.m2", + value = "helm_robe_raid_a_01_gof.m2", }, { fileId = "141948", - value = "helm_robe_raidmage_a_01_bef.m2", text = "helm_robe_raidmage_a_01_bef.m2", + value = "helm_robe_raidmage_a_01_bef.m2", }, { fileId = "141949", - value = "helm_robe_raidmage_a_01_bem.m2", text = "helm_robe_raidmage_a_01_bem.m2", + value = "helm_robe_raidmage_a_01_bem.m2", }, { fileId = "141950", - value = "helm_robe_raidmage_a_01_drf.m2", text = "helm_robe_raidmage_a_01_drf.m2", + value = "helm_robe_raidmage_a_01_drf.m2", }, { fileId = "141951", - value = "helm_robe_raidmage_a_01_drm.m2", text = "helm_robe_raidmage_a_01_drm.m2", + value = "helm_robe_raidmage_a_01_drm.m2", }, { fileId = "141952", - value = "helm_robe_raidmage_a_01_dwf.m2", text = "helm_robe_raidmage_a_01_dwf.m2", + value = "helm_robe_raidmage_a_01_dwf.m2", }, { fileId = "141953", - value = "helm_robe_raidmage_a_01_dwm.m2", text = "helm_robe_raidmage_a_01_dwm.m2", + value = "helm_robe_raidmage_a_01_dwm.m2", }, { fileId = "141954", - value = "helm_robe_raidmage_a_01_gnf.m2", text = "helm_robe_raidmage_a_01_gnf.m2", + value = "helm_robe_raidmage_a_01_gnf.m2", }, { fileId = "141955", - value = "helm_robe_raidmage_a_01_gnm.m2", text = "helm_robe_raidmage_a_01_gnm.m2", + value = "helm_robe_raidmage_a_01_gnm.m2", }, { fileId = "141956", - value = "helm_robe_raidmage_a_01_gof.m2", text = "helm_robe_raidmage_a_01_gof.m2", + value = "helm_robe_raidmage_a_01_gof.m2", }, { fileId = "141957", - value = "helm_robe_raidmage_a_01_gom.m2", text = "helm_robe_raidmage_a_01_gom.m2", + value = "helm_robe_raidmage_a_01_gom.m2", }, { fileId = "141958", - value = "helm_robe_raidmage_a_01_huf.m2", text = "helm_robe_raidmage_a_01_huf.m2", + value = "helm_robe_raidmage_a_01_huf.m2", }, { fileId = "141959", - value = "helm_robe_raidmage_a_01_hum.m2", text = "helm_robe_raidmage_a_01_hum.m2", + value = "helm_robe_raidmage_a_01_hum.m2", }, { fileId = "141960", - value = "helm_robe_raidmage_a_01_nif.m2", text = "helm_robe_raidmage_a_01_nif.m2", + value = "helm_robe_raidmage_a_01_nif.m2", }, { fileId = "141961", - value = "helm_robe_raidmage_a_01_nim.m2", text = "helm_robe_raidmage_a_01_nim.m2", + value = "helm_robe_raidmage_a_01_nim.m2", }, { fileId = "141962", - value = "helm_robe_raidmage_a_01_orf.m2", text = "helm_robe_raidmage_a_01_orf.m2", + value = "helm_robe_raidmage_a_01_orf.m2", }, { fileId = "141963", - value = "helm_robe_raidmage_a_01_orm.m2", text = "helm_robe_raidmage_a_01_orm.m2", + value = "helm_robe_raidmage_a_01_orm.m2", }, { fileId = "141964", - value = "helm_robe_raidmage_a_01_scf.m2", text = "helm_robe_raidmage_a_01_scf.m2", + value = "helm_robe_raidmage_a_01_scf.m2", }, { fileId = "141965", - value = "helm_robe_raidmage_a_01_scm.m2", text = "helm_robe_raidmage_a_01_scm.m2", + value = "helm_robe_raidmage_a_01_scm.m2", }, { fileId = "141966", - value = "helm_robe_raidmage_a_01_taf.m2", text = "helm_robe_raidmage_a_01_taf.m2", + value = "helm_robe_raidmage_a_01_taf.m2", }, { fileId = "141967", - value = "helm_robe_raidmage_a_01_tam.m2", text = "helm_robe_raidmage_a_01_tam.m2", + value = "helm_robe_raidmage_a_01_tam.m2", }, { fileId = "141968", - value = "helm_robe_raidmage_a_01_trf.m2", text = "helm_robe_raidmage_a_01_trf.m2", + value = "helm_robe_raidmage_a_01_trf.m2", }, { fileId = "141969", - value = "helm_robe_raidmage_a_01_trm.m2", text = "helm_robe_raidmage_a_01_trm.m2", + value = "helm_robe_raidmage_a_01_trm.m2", }, { fileId = "141974", - value = "helm_robe_raidmage_b_01_bef.m2", text = "helm_robe_raidmage_b_01_bef.m2", + value = "helm_robe_raidmage_b_01_bef.m2", }, { fileId = "141975", - value = "helm_robe_raidmage_b_01_bem.m2", text = "helm_robe_raidmage_b_01_bem.m2", + value = "helm_robe_raidmage_b_01_bem.m2", }, { fileId = "141976", - value = "helm_robe_raidmage_b_01_drf.m2", text = "helm_robe_raidmage_b_01_drf.m2", + value = "helm_robe_raidmage_b_01_drf.m2", }, { fileId = "141977", - value = "helm_robe_raidmage_b_01_drm.m2", text = "helm_robe_raidmage_b_01_drm.m2", + value = "helm_robe_raidmage_b_01_drm.m2", }, { fileId = "141978", - value = "helm_robe_raidmage_b_01_dwf.m2", text = "helm_robe_raidmage_b_01_dwf.m2", + value = "helm_robe_raidmage_b_01_dwf.m2", }, { fileId = "141979", - value = "helm_robe_raidmage_b_01_dwm.m2", text = "helm_robe_raidmage_b_01_dwm.m2", + value = "helm_robe_raidmage_b_01_dwm.m2", }, { fileId = "141980", - value = "helm_robe_raidmage_b_01_gnf.m2", text = "helm_robe_raidmage_b_01_gnf.m2", + value = "helm_robe_raidmage_b_01_gnf.m2", }, { fileId = "141981", - value = "helm_robe_raidmage_b_01_gnm.m2", text = "helm_robe_raidmage_b_01_gnm.m2", + value = "helm_robe_raidmage_b_01_gnm.m2", }, { fileId = "141982", - value = "helm_robe_raidmage_b_01_gof.m2", text = "helm_robe_raidmage_b_01_gof.m2", + value = "helm_robe_raidmage_b_01_gof.m2", }, { fileId = "141983", - value = "helm_robe_raidmage_b_01_gom.m2", text = "helm_robe_raidmage_b_01_gom.m2", + value = "helm_robe_raidmage_b_01_gom.m2", }, { fileId = "141984", - value = "helm_robe_raidmage_b_01_huf.m2", text = "helm_robe_raidmage_b_01_huf.m2", + value = "helm_robe_raidmage_b_01_huf.m2", }, { fileId = "141985", - value = "helm_robe_raidmage_b_01_hum.m2", text = "helm_robe_raidmage_b_01_hum.m2", + value = "helm_robe_raidmage_b_01_hum.m2", }, { fileId = "141986", - value = "helm_robe_raidmage_b_01_nif.m2", text = "helm_robe_raidmage_b_01_nif.m2", + value = "helm_robe_raidmage_b_01_nif.m2", }, { fileId = "141987", - value = "helm_robe_raidmage_b_01_nim.m2", text = "helm_robe_raidmage_b_01_nim.m2", + value = "helm_robe_raidmage_b_01_nim.m2", }, { fileId = "141988", - value = "helm_robe_raidmage_b_01_orf.m2", text = "helm_robe_raidmage_b_01_orf.m2", + value = "helm_robe_raidmage_b_01_orf.m2", }, { fileId = "141989", - value = "helm_robe_raidmage_b_01_orm.m2", text = "helm_robe_raidmage_b_01_orm.m2", + value = "helm_robe_raidmage_b_01_orm.m2", }, { fileId = "141990", - value = "helm_robe_raidmage_b_01_scf.m2", text = "helm_robe_raidmage_b_01_scf.m2", + value = "helm_robe_raidmage_b_01_scf.m2", }, { fileId = "141991", - value = "helm_robe_raidmage_b_01_scm.m2", text = "helm_robe_raidmage_b_01_scm.m2", + value = "helm_robe_raidmage_b_01_scm.m2", }, { fileId = "141992", - value = "helm_robe_raidmage_b_01_taf.m2", text = "helm_robe_raidmage_b_01_taf.m2", + value = "helm_robe_raidmage_b_01_taf.m2", }, { fileId = "141993", - value = "helm_robe_raidmage_b_01_tam.m2", text = "helm_robe_raidmage_b_01_tam.m2", + value = "helm_robe_raidmage_b_01_tam.m2", }, { fileId = "141994", - value = "helm_robe_raidmage_b_01_trf.m2", text = "helm_robe_raidmage_b_01_trf.m2", + value = "helm_robe_raidmage_b_01_trf.m2", }, { fileId = "141995", - value = "helm_robe_raidmage_b_01_trm.m2", text = "helm_robe_raidmage_b_01_trm.m2", + value = "helm_robe_raidmage_b_01_trm.m2", }, { fileId = "142001", - value = "helm_robe_raidmage_c_01_bef.m2", text = "helm_robe_raidmage_c_01_bef.m2", + value = "helm_robe_raidmage_c_01_bef.m2", }, { fileId = "142002", - value = "helm_robe_raidmage_c_01_bem.m2", text = "helm_robe_raidmage_c_01_bem.m2", + value = "helm_robe_raidmage_c_01_bem.m2", }, { fileId = "142003", - value = "helm_robe_raidmage_c_01_drf.m2", text = "helm_robe_raidmage_c_01_drf.m2", + value = "helm_robe_raidmage_c_01_drf.m2", }, { fileId = "142004", - value = "helm_robe_raidmage_c_01_drm.m2", text = "helm_robe_raidmage_c_01_drm.m2", + value = "helm_robe_raidmage_c_01_drm.m2", }, { fileId = "142005", - value = "helm_robe_raidmage_c_01_dwf.m2", text = "helm_robe_raidmage_c_01_dwf.m2", + value = "helm_robe_raidmage_c_01_dwf.m2", }, { fileId = "142006", - value = "helm_robe_raidmage_c_01_dwm.m2", text = "helm_robe_raidmage_c_01_dwm.m2", + value = "helm_robe_raidmage_c_01_dwm.m2", }, { fileId = "142007", - value = "helm_robe_raidmage_c_01_gnf.m2", text = "helm_robe_raidmage_c_01_gnf.m2", + value = "helm_robe_raidmage_c_01_gnf.m2", }, { fileId = "142008", - value = "helm_robe_raidmage_c_01_gnm.m2", text = "helm_robe_raidmage_c_01_gnm.m2", + value = "helm_robe_raidmage_c_01_gnm.m2", }, { fileId = "142009", - value = "helm_robe_raidmage_c_01_gof.m2", text = "helm_robe_raidmage_c_01_gof.m2", + value = "helm_robe_raidmage_c_01_gof.m2", }, { fileId = "142010", - value = "helm_robe_raidmage_c_01_gom.m2", text = "helm_robe_raidmage_c_01_gom.m2", + value = "helm_robe_raidmage_c_01_gom.m2", }, { fileId = "142011", - value = "helm_robe_raidmage_c_01_huf.m2", text = "helm_robe_raidmage_c_01_huf.m2", + value = "helm_robe_raidmage_c_01_huf.m2", }, { fileId = "142012", - value = "helm_robe_raidmage_c_01_hum.m2", text = "helm_robe_raidmage_c_01_hum.m2", + value = "helm_robe_raidmage_c_01_hum.m2", }, { fileId = "142013", - value = "helm_robe_raidmage_c_01_nif.m2", text = "helm_robe_raidmage_c_01_nif.m2", + value = "helm_robe_raidmage_c_01_nif.m2", }, { fileId = "142014", - value = "helm_robe_raidmage_c_01_nim.m2", text = "helm_robe_raidmage_c_01_nim.m2", + value = "helm_robe_raidmage_c_01_nim.m2", }, { fileId = "142015", - value = "helm_robe_raidmage_c_01_orf.m2", text = "helm_robe_raidmage_c_01_orf.m2", + value = "helm_robe_raidmage_c_01_orf.m2", }, { fileId = "142016", - value = "helm_robe_raidmage_c_01_orm.m2", text = "helm_robe_raidmage_c_01_orm.m2", + value = "helm_robe_raidmage_c_01_orm.m2", }, { fileId = "142017", - value = "helm_robe_raidmage_c_01_scf.m2", text = "helm_robe_raidmage_c_01_scf.m2", + value = "helm_robe_raidmage_c_01_scf.m2", }, { fileId = "142018", - value = "helm_robe_raidmage_c_01_scm.m2", text = "helm_robe_raidmage_c_01_scm.m2", + value = "helm_robe_raidmage_c_01_scm.m2", }, { fileId = "142019", - value = "helm_robe_raidmage_c_01_taf.m2", text = "helm_robe_raidmage_c_01_taf.m2", + value = "helm_robe_raidmage_c_01_taf.m2", }, { fileId = "142020", - value = "helm_robe_raidmage_c_01_tam.m2", text = "helm_robe_raidmage_c_01_tam.m2", + value = "helm_robe_raidmage_c_01_tam.m2", }, { fileId = "142021", - value = "helm_robe_raidmage_c_01_trf.m2", text = "helm_robe_raidmage_c_01_trf.m2", + value = "helm_robe_raidmage_c_01_trf.m2", }, { fileId = "142022", - value = "helm_robe_raidmage_c_01_trm.m2", text = "helm_robe_raidmage_c_01_trm.m2", + value = "helm_robe_raidmage_c_01_trm.m2", }, { fileId = "142024", - value = "helm_robe_raidmage_d_01_bef.m2", text = "helm_robe_raidmage_d_01_bef.m2", + value = "helm_robe_raidmage_d_01_bef.m2", }, { fileId = "142025", - value = "helm_robe_raidmage_d_01_bem.m2", text = "helm_robe_raidmage_d_01_bem.m2", + value = "helm_robe_raidmage_d_01_bem.m2", }, { fileId = "142026", - value = "helm_robe_raidmage_d_01_drf.m2", text = "helm_robe_raidmage_d_01_drf.m2", + value = "helm_robe_raidmage_d_01_drf.m2", }, { fileId = "142027", - value = "helm_robe_raidmage_d_01_drm.m2", text = "helm_robe_raidmage_d_01_drm.m2", + value = "helm_robe_raidmage_d_01_drm.m2", }, { fileId = "142028", - value = "helm_robe_raidmage_d_01_dwf.m2", text = "helm_robe_raidmage_d_01_dwf.m2", + value = "helm_robe_raidmage_d_01_dwf.m2", }, { fileId = "142029", - value = "helm_robe_raidmage_d_01_dwm.m2", text = "helm_robe_raidmage_d_01_dwm.m2", + value = "helm_robe_raidmage_d_01_dwm.m2", }, { fileId = "142030", - value = "helm_robe_raidmage_d_01_gnf.m2", text = "helm_robe_raidmage_d_01_gnf.m2", + value = "helm_robe_raidmage_d_01_gnf.m2", }, { fileId = "142031", - value = "helm_robe_raidmage_d_01_gnm.m2", text = "helm_robe_raidmage_d_01_gnm.m2", + value = "helm_robe_raidmage_d_01_gnm.m2", }, { fileId = "142032", - value = "helm_robe_raidmage_d_01_gof.m2", text = "helm_robe_raidmage_d_01_gof.m2", + value = "helm_robe_raidmage_d_01_gof.m2", }, { fileId = "142033", - value = "helm_robe_raidmage_d_01_gom.m2", text = "helm_robe_raidmage_d_01_gom.m2", + value = "helm_robe_raidmage_d_01_gom.m2", }, { fileId = "142034", - value = "helm_robe_raidmage_d_01_huf.m2", text = "helm_robe_raidmage_d_01_huf.m2", + value = "helm_robe_raidmage_d_01_huf.m2", }, { fileId = "142035", - value = "helm_robe_raidmage_d_01_hum.m2", text = "helm_robe_raidmage_d_01_hum.m2", + value = "helm_robe_raidmage_d_01_hum.m2", }, { fileId = "142036", - value = "helm_robe_raidmage_d_01_nif.m2", text = "helm_robe_raidmage_d_01_nif.m2", + value = "helm_robe_raidmage_d_01_nif.m2", }, { fileId = "142037", - value = "helm_robe_raidmage_d_01_nim.m2", text = "helm_robe_raidmage_d_01_nim.m2", + value = "helm_robe_raidmage_d_01_nim.m2", }, { fileId = "142038", - value = "helm_robe_raidmage_d_01_orf.m2", text = "helm_robe_raidmage_d_01_orf.m2", + value = "helm_robe_raidmage_d_01_orf.m2", }, { fileId = "142039", - value = "helm_robe_raidmage_d_01_orm.m2", text = "helm_robe_raidmage_d_01_orm.m2", + value = "helm_robe_raidmage_d_01_orm.m2", }, { fileId = "142040", - value = "helm_robe_raidmage_d_01_scf.m2", text = "helm_robe_raidmage_d_01_scf.m2", + value = "helm_robe_raidmage_d_01_scf.m2", }, { fileId = "142041", - value = "helm_robe_raidmage_d_01_scm.m2", text = "helm_robe_raidmage_d_01_scm.m2", + value = "helm_robe_raidmage_d_01_scm.m2", }, { fileId = "142042", - value = "helm_robe_raidmage_d_01_taf.m2", text = "helm_robe_raidmage_d_01_taf.m2", + value = "helm_robe_raidmage_d_01_taf.m2", }, { fileId = "142043", - value = "helm_robe_raidmage_d_01_tam.m2", text = "helm_robe_raidmage_d_01_tam.m2", + value = "helm_robe_raidmage_d_01_tam.m2", }, { fileId = "142044", - value = "helm_robe_raidmage_d_01_trf.m2", text = "helm_robe_raidmage_d_01_trf.m2", + value = "helm_robe_raidmage_d_01_trf.m2", }, { fileId = "142045", - value = "helm_robe_raidmage_d_01_trm.m2", text = "helm_robe_raidmage_d_01_trm.m2", + value = "helm_robe_raidmage_d_01_trm.m2", }, { fileId = "142048", - value = "helm_robe_raidmage_e_01_bef.m2", text = "helm_robe_raidmage_e_01_bef.m2", + value = "helm_robe_raidmage_e_01_bef.m2", }, { fileId = "142049", - value = "helm_robe_raidmage_e_01_bem.m2", text = "helm_robe_raidmage_e_01_bem.m2", + value = "helm_robe_raidmage_e_01_bem.m2", }, { fileId = "142050", - value = "helm_robe_raidmage_e_01_drf.m2", text = "helm_robe_raidmage_e_01_drf.m2", + value = "helm_robe_raidmage_e_01_drf.m2", }, { fileId = "142051", - value = "helm_robe_raidmage_e_01_drm.m2", text = "helm_robe_raidmage_e_01_drm.m2", + value = "helm_robe_raidmage_e_01_drm.m2", }, { fileId = "142052", - value = "helm_robe_raidmage_e_01_dwf.m2", text = "helm_robe_raidmage_e_01_dwf.m2", + value = "helm_robe_raidmage_e_01_dwf.m2", }, { fileId = "142053", - value = "helm_robe_raidmage_e_01_dwm.m2", text = "helm_robe_raidmage_e_01_dwm.m2", + value = "helm_robe_raidmage_e_01_dwm.m2", }, { fileId = "142054", - value = "helm_robe_raidmage_e_01_gnf.m2", text = "helm_robe_raidmage_e_01_gnf.m2", + value = "helm_robe_raidmage_e_01_gnf.m2", }, { fileId = "142055", - value = "helm_robe_raidmage_e_01_gnm.m2", text = "helm_robe_raidmage_e_01_gnm.m2", + value = "helm_robe_raidmage_e_01_gnm.m2", }, { fileId = "142056", - value = "helm_robe_raidmage_e_01_gof.m2", text = "helm_robe_raidmage_e_01_gof.m2", + value = "helm_robe_raidmage_e_01_gof.m2", }, { fileId = "142057", - value = "helm_robe_raidmage_e_01_gom.m2", text = "helm_robe_raidmage_e_01_gom.m2", + value = "helm_robe_raidmage_e_01_gom.m2", }, { fileId = "142058", - value = "helm_robe_raidmage_e_01_huf.m2", text = "helm_robe_raidmage_e_01_huf.m2", + value = "helm_robe_raidmage_e_01_huf.m2", }, { fileId = "142059", - value = "helm_robe_raidmage_e_01_hum.m2", text = "helm_robe_raidmage_e_01_hum.m2", + value = "helm_robe_raidmage_e_01_hum.m2", }, { fileId = "142060", - value = "helm_robe_raidmage_e_01_nif.m2", text = "helm_robe_raidmage_e_01_nif.m2", + value = "helm_robe_raidmage_e_01_nif.m2", }, { fileId = "142061", - value = "helm_robe_raidmage_e_01_nim.m2", text = "helm_robe_raidmage_e_01_nim.m2", + value = "helm_robe_raidmage_e_01_nim.m2", }, { fileId = "142062", - value = "helm_robe_raidmage_e_01_orf.m2", text = "helm_robe_raidmage_e_01_orf.m2", + value = "helm_robe_raidmage_e_01_orf.m2", }, { fileId = "142063", - value = "helm_robe_raidmage_e_01_orm.m2", text = "helm_robe_raidmage_e_01_orm.m2", + value = "helm_robe_raidmage_e_01_orm.m2", }, { fileId = "142064", - value = "helm_robe_raidmage_e_01_scf.m2", text = "helm_robe_raidmage_e_01_scf.m2", + value = "helm_robe_raidmage_e_01_scf.m2", }, { fileId = "142065", - value = "helm_robe_raidmage_e_01_scm.m2", text = "helm_robe_raidmage_e_01_scm.m2", + value = "helm_robe_raidmage_e_01_scm.m2", }, { fileId = "142066", - value = "helm_robe_raidmage_e_01_taf.m2", text = "helm_robe_raidmage_e_01_taf.m2", + value = "helm_robe_raidmage_e_01_taf.m2", }, { fileId = "142067", - value = "helm_robe_raidmage_e_01_tam.m2", text = "helm_robe_raidmage_e_01_tam.m2", + value = "helm_robe_raidmage_e_01_tam.m2", }, { fileId = "142068", - value = "helm_robe_raidmage_e_01_trf.m2", text = "helm_robe_raidmage_e_01_trf.m2", + value = "helm_robe_raidmage_e_01_trf.m2", }, { fileId = "142069", - value = "helm_robe_raidmage_e_01_trm.m2", text = "helm_robe_raidmage_e_01_trm.m2", + value = "helm_robe_raidmage_e_01_trm.m2", }, { fileId = "142073", - value = "helm_robe_raidmage_f_01_bef.m2", text = "helm_robe_raidmage_f_01_bef.m2", + value = "helm_robe_raidmage_f_01_bef.m2", }, { fileId = "142074", - value = "helm_robe_raidmage_f_01_bem.m2", text = "helm_robe_raidmage_f_01_bem.m2", + value = "helm_robe_raidmage_f_01_bem.m2", }, { fileId = "142075", - value = "helm_robe_raidmage_f_01_drf.m2", text = "helm_robe_raidmage_f_01_drf.m2", + value = "helm_robe_raidmage_f_01_drf.m2", }, { fileId = "142076", - value = "helm_robe_raidmage_f_01_drm.m2", text = "helm_robe_raidmage_f_01_drm.m2", + value = "helm_robe_raidmage_f_01_drm.m2", }, { fileId = "142077", - value = "helm_robe_raidmage_f_01_dwf.m2", text = "helm_robe_raidmage_f_01_dwf.m2", + value = "helm_robe_raidmage_f_01_dwf.m2", }, { fileId = "142078", - value = "helm_robe_raidmage_f_01_dwm.m2", text = "helm_robe_raidmage_f_01_dwm.m2", + value = "helm_robe_raidmage_f_01_dwm.m2", }, { fileId = "142079", - value = "helm_robe_raidmage_f_01_gnf.m2", text = "helm_robe_raidmage_f_01_gnf.m2", + value = "helm_robe_raidmage_f_01_gnf.m2", }, { fileId = "142080", - value = "helm_robe_raidmage_f_01_gnm.m2", text = "helm_robe_raidmage_f_01_gnm.m2", + value = "helm_robe_raidmage_f_01_gnm.m2", }, { fileId = "142081", - value = "helm_robe_raidmage_f_01_gof.m2", text = "helm_robe_raidmage_f_01_gof.m2", + value = "helm_robe_raidmage_f_01_gof.m2", }, { fileId = "142082", - value = "helm_robe_raidmage_f_01_gom.m2", text = "helm_robe_raidmage_f_01_gom.m2", + value = "helm_robe_raidmage_f_01_gom.m2", }, { fileId = "142083", - value = "helm_robe_raidmage_f_01_huf.m2", text = "helm_robe_raidmage_f_01_huf.m2", + value = "helm_robe_raidmage_f_01_huf.m2", }, { fileId = "142084", - value = "helm_robe_raidmage_f_01_hum.m2", text = "helm_robe_raidmage_f_01_hum.m2", + value = "helm_robe_raidmage_f_01_hum.m2", }, { fileId = "142085", - value = "helm_robe_raidmage_f_01_nif.m2", text = "helm_robe_raidmage_f_01_nif.m2", + value = "helm_robe_raidmage_f_01_nif.m2", }, { fileId = "142086", - value = "helm_robe_raidmage_f_01_nim.m2", text = "helm_robe_raidmage_f_01_nim.m2", + value = "helm_robe_raidmage_f_01_nim.m2", }, { fileId = "142087", - value = "helm_robe_raidmage_f_01_orf.m2", text = "helm_robe_raidmage_f_01_orf.m2", + value = "helm_robe_raidmage_f_01_orf.m2", }, { fileId = "142088", - value = "helm_robe_raidmage_f_01_orm.m2", text = "helm_robe_raidmage_f_01_orm.m2", + value = "helm_robe_raidmage_f_01_orm.m2", }, { fileId = "142089", - value = "helm_robe_raidmage_f_01_scf.m2", text = "helm_robe_raidmage_f_01_scf.m2", + value = "helm_robe_raidmage_f_01_scf.m2", }, { fileId = "142090", - value = "helm_robe_raidmage_f_01_scm.m2", text = "helm_robe_raidmage_f_01_scm.m2", + value = "helm_robe_raidmage_f_01_scm.m2", }, { fileId = "142091", - value = "helm_robe_raidmage_f_01_taf.m2", text = "helm_robe_raidmage_f_01_taf.m2", + value = "helm_robe_raidmage_f_01_taf.m2", }, { fileId = "142092", - value = "helm_robe_raidmage_f_01_tam.m2", text = "helm_robe_raidmage_f_01_tam.m2", + value = "helm_robe_raidmage_f_01_tam.m2", }, { fileId = "142093", - value = "helm_robe_raidmage_f_01_trf.m2", text = "helm_robe_raidmage_f_01_trf.m2", + value = "helm_robe_raidmage_f_01_trf.m2", }, { fileId = "142094", - value = "helm_robe_raidmage_f_01_trm.m2", text = "helm_robe_raidmage_f_01_trm.m2", + value = "helm_robe_raidmage_f_01_trm.m2", }, { fileId = "142126", - value = "helm_robe_raidpriest_a_01_bef.m2", text = "helm_robe_raidpriest_a_01_bef.m2", + value = "helm_robe_raidpriest_a_01_bef.m2", }, { fileId = "142127", - value = "helm_robe_raidpriest_a_01_bem.m2", text = "helm_robe_raidpriest_a_01_bem.m2", + value = "helm_robe_raidpriest_a_01_bem.m2", }, { fileId = "142128", - value = "helm_robe_raidpriest_a_01_drf.m2", text = "helm_robe_raidpriest_a_01_drf.m2", + value = "helm_robe_raidpriest_a_01_drf.m2", }, { fileId = "142129", - value = "helm_robe_raidpriest_a_01_drm.m2", text = "helm_robe_raidpriest_a_01_drm.m2", + value = "helm_robe_raidpriest_a_01_drm.m2", }, { fileId = "142130", - value = "helm_robe_raidpriest_a_01_dwf.m2", text = "helm_robe_raidpriest_a_01_dwf.m2", + value = "helm_robe_raidpriest_a_01_dwf.m2", }, { fileId = "142131", - value = "helm_robe_raidpriest_a_01_dwm.m2", text = "helm_robe_raidpriest_a_01_dwm.m2", + value = "helm_robe_raidpriest_a_01_dwm.m2", }, { fileId = "142132", - value = "helm_robe_raidpriest_a_01_gnf.m2", text = "helm_robe_raidpriest_a_01_gnf.m2", + value = "helm_robe_raidpriest_a_01_gnf.m2", }, { fileId = "142133", - value = "helm_robe_raidpriest_a_01_gnm.m2", text = "helm_robe_raidpriest_a_01_gnm.m2", + value = "helm_robe_raidpriest_a_01_gnm.m2", }, { fileId = "142134", - value = "helm_robe_raidpriest_a_01_gof.m2", text = "helm_robe_raidpriest_a_01_gof.m2", + value = "helm_robe_raidpriest_a_01_gof.m2", }, { fileId = "142135", - value = "helm_robe_raidpriest_a_01_gom.m2", text = "helm_robe_raidpriest_a_01_gom.m2", + value = "helm_robe_raidpriest_a_01_gom.m2", }, { fileId = "142136", - value = "helm_robe_raidpriest_a_01_huf.m2", text = "helm_robe_raidpriest_a_01_huf.m2", + value = "helm_robe_raidpriest_a_01_huf.m2", }, { fileId = "142137", - value = "helm_robe_raidpriest_a_01_hum.m2", text = "helm_robe_raidpriest_a_01_hum.m2", + value = "helm_robe_raidpriest_a_01_hum.m2", }, { fileId = "142138", - value = "helm_robe_raidpriest_a_01_nif.m2", text = "helm_robe_raidpriest_a_01_nif.m2", + value = "helm_robe_raidpriest_a_01_nif.m2", }, { fileId = "142139", - value = "helm_robe_raidpriest_a_01_nim.m2", text = "helm_robe_raidpriest_a_01_nim.m2", + value = "helm_robe_raidpriest_a_01_nim.m2", }, { fileId = "142140", - value = "helm_robe_raidpriest_a_01_orf.m2", text = "helm_robe_raidpriest_a_01_orf.m2", + value = "helm_robe_raidpriest_a_01_orf.m2", }, { fileId = "142141", - value = "helm_robe_raidpriest_a_01_orm.m2", text = "helm_robe_raidpriest_a_01_orm.m2", + value = "helm_robe_raidpriest_a_01_orm.m2", }, { fileId = "142142", - value = "helm_robe_raidpriest_a_01_scf.m2", text = "helm_robe_raidpriest_a_01_scf.m2", + value = "helm_robe_raidpriest_a_01_scf.m2", }, { fileId = "142143", - value = "helm_robe_raidpriest_a_01_scm.m2", text = "helm_robe_raidpriest_a_01_scm.m2", + value = "helm_robe_raidpriest_a_01_scm.m2", }, { fileId = "142144", - value = "helm_robe_raidpriest_a_01_taf.m2", text = "helm_robe_raidpriest_a_01_taf.m2", + value = "helm_robe_raidpriest_a_01_taf.m2", }, { fileId = "142145", - value = "helm_robe_raidpriest_a_01_tam.m2", text = "helm_robe_raidpriest_a_01_tam.m2", + value = "helm_robe_raidpriest_a_01_tam.m2", }, { fileId = "142146", - value = "helm_robe_raidpriest_a_01_trf.m2", text = "helm_robe_raidpriest_a_01_trf.m2", + value = "helm_robe_raidpriest_a_01_trf.m2", }, { fileId = "142147", - value = "helm_robe_raidpriest_a_01_trm.m2", text = "helm_robe_raidpriest_a_01_trm.m2", + value = "helm_robe_raidpriest_a_01_trm.m2", }, { fileId = "142153", - value = "helm_robe_raidpriest_b_01_bef.m2", text = "helm_robe_raidpriest_b_01_bef.m2", + value = "helm_robe_raidpriest_b_01_bef.m2", }, { fileId = "142154", - value = "helm_robe_raidpriest_b_01_bem.m2", text = "helm_robe_raidpriest_b_01_bem.m2", + value = "helm_robe_raidpriest_b_01_bem.m2", }, { fileId = "142155", - value = "helm_robe_raidpriest_b_01_drf.m2", text = "helm_robe_raidpriest_b_01_drf.m2", + value = "helm_robe_raidpriest_b_01_drf.m2", }, { fileId = "142156", - value = "helm_robe_raidpriest_b_01_drm.m2", text = "helm_robe_raidpriest_b_01_drm.m2", + value = "helm_robe_raidpriest_b_01_drm.m2", }, { fileId = "142157", - value = "helm_robe_raidpriest_b_01_dwf.m2", text = "helm_robe_raidpriest_b_01_dwf.m2", + value = "helm_robe_raidpriest_b_01_dwf.m2", }, { fileId = "142158", - value = "helm_robe_raidpriest_b_01_dwm.m2", text = "helm_robe_raidpriest_b_01_dwm.m2", + value = "helm_robe_raidpriest_b_01_dwm.m2", }, { fileId = "142159", - value = "helm_robe_raidpriest_b_01_gnf.m2", text = "helm_robe_raidpriest_b_01_gnf.m2", + value = "helm_robe_raidpriest_b_01_gnf.m2", }, { fileId = "142160", - value = "helm_robe_raidpriest_b_01_gnm.m2", text = "helm_robe_raidpriest_b_01_gnm.m2", + value = "helm_robe_raidpriest_b_01_gnm.m2", }, { fileId = "142161", - value = "helm_robe_raidpriest_b_01_gof.m2", text = "helm_robe_raidpriest_b_01_gof.m2", + value = "helm_robe_raidpriest_b_01_gof.m2", }, { fileId = "142162", - value = "helm_robe_raidpriest_b_01_gom.m2", text = "helm_robe_raidpriest_b_01_gom.m2", + value = "helm_robe_raidpriest_b_01_gom.m2", }, { fileId = "142163", - value = "helm_robe_raidpriest_b_01_huf.m2", text = "helm_robe_raidpriest_b_01_huf.m2", + value = "helm_robe_raidpriest_b_01_huf.m2", }, { fileId = "142164", - value = "helm_robe_raidpriest_b_01_hum.m2", text = "helm_robe_raidpriest_b_01_hum.m2", + value = "helm_robe_raidpriest_b_01_hum.m2", }, { fileId = "142165", - value = "helm_robe_raidpriest_b_01_nif.m2", text = "helm_robe_raidpriest_b_01_nif.m2", + value = "helm_robe_raidpriest_b_01_nif.m2", }, { fileId = "142166", - value = "helm_robe_raidpriest_b_01_nim.m2", text = "helm_robe_raidpriest_b_01_nim.m2", + value = "helm_robe_raidpriest_b_01_nim.m2", }, { fileId = "142167", - value = "helm_robe_raidpriest_b_01_orf.m2", text = "helm_robe_raidpriest_b_01_orf.m2", + value = "helm_robe_raidpriest_b_01_orf.m2", }, { fileId = "142168", - value = "helm_robe_raidpriest_b_01_orm.m2", text = "helm_robe_raidpriest_b_01_orm.m2", + value = "helm_robe_raidpriest_b_01_orm.m2", }, { fileId = "142169", - value = "helm_robe_raidpriest_b_01_scf.m2", text = "helm_robe_raidpriest_b_01_scf.m2", + value = "helm_robe_raidpriest_b_01_scf.m2", }, { fileId = "142170", - value = "helm_robe_raidpriest_b_01_scm.m2", text = "helm_robe_raidpriest_b_01_scm.m2", + value = "helm_robe_raidpriest_b_01_scm.m2", }, { fileId = "142171", - value = "helm_robe_raidpriest_b_01_taf.m2", text = "helm_robe_raidpriest_b_01_taf.m2", + value = "helm_robe_raidpriest_b_01_taf.m2", }, { fileId = "142172", - value = "helm_robe_raidpriest_b_01_tam.m2", text = "helm_robe_raidpriest_b_01_tam.m2", + value = "helm_robe_raidpriest_b_01_tam.m2", }, { fileId = "142173", - value = "helm_robe_raidpriest_b_01_trf.m2", text = "helm_robe_raidpriest_b_01_trf.m2", + value = "helm_robe_raidpriest_b_01_trf.m2", }, { fileId = "142174", - value = "helm_robe_raidpriest_b_01_trm.m2", text = "helm_robe_raidpriest_b_01_trm.m2", + value = "helm_robe_raidpriest_b_01_trm.m2", }, { fileId = "142178", - value = "helm_robe_raidpriest_c_01_bef.m2", text = "helm_robe_raidpriest_c_01_bef.m2", + value = "helm_robe_raidpriest_c_01_bef.m2", }, { fileId = "142179", - value = "helm_robe_raidpriest_c_01_bem.m2", text = "helm_robe_raidpriest_c_01_bem.m2", + value = "helm_robe_raidpriest_c_01_bem.m2", }, { fileId = "142180", - value = "helm_robe_raidpriest_c_01_drf.m2", text = "helm_robe_raidpriest_c_01_drf.m2", + value = "helm_robe_raidpriest_c_01_drf.m2", }, { fileId = "142181", - value = "helm_robe_raidpriest_c_01_drm.m2", text = "helm_robe_raidpriest_c_01_drm.m2", + value = "helm_robe_raidpriest_c_01_drm.m2", }, { fileId = "142182", - value = "helm_robe_raidpriest_c_01_dwf.m2", text = "helm_robe_raidpriest_c_01_dwf.m2", + value = "helm_robe_raidpriest_c_01_dwf.m2", }, { fileId = "142183", - value = "helm_robe_raidpriest_c_01_dwm.m2", text = "helm_robe_raidpriest_c_01_dwm.m2", + value = "helm_robe_raidpriest_c_01_dwm.m2", }, { fileId = "142184", - value = "helm_robe_raidpriest_c_01_gnf.m2", text = "helm_robe_raidpriest_c_01_gnf.m2", + value = "helm_robe_raidpriest_c_01_gnf.m2", }, { fileId = "142185", - value = "helm_robe_raidpriest_c_01_gnm.m2", text = "helm_robe_raidpriest_c_01_gnm.m2", + value = "helm_robe_raidpriest_c_01_gnm.m2", }, { fileId = "142186", - value = "helm_robe_raidpriest_c_01_gof.m2", text = "helm_robe_raidpriest_c_01_gof.m2", + value = "helm_robe_raidpriest_c_01_gof.m2", }, { fileId = "142187", - value = "helm_robe_raidpriest_c_01_gom.m2", text = "helm_robe_raidpriest_c_01_gom.m2", + value = "helm_robe_raidpriest_c_01_gom.m2", }, { fileId = "142188", - value = "helm_robe_raidpriest_c_01_huf.m2", text = "helm_robe_raidpriest_c_01_huf.m2", + value = "helm_robe_raidpriest_c_01_huf.m2", }, { fileId = "142189", - value = "helm_robe_raidpriest_c_01_hum.m2", text = "helm_robe_raidpriest_c_01_hum.m2", + value = "helm_robe_raidpriest_c_01_hum.m2", }, { fileId = "142190", - value = "helm_robe_raidpriest_c_01_nif.m2", text = "helm_robe_raidpriest_c_01_nif.m2", + value = "helm_robe_raidpriest_c_01_nif.m2", }, { fileId = "142191", - value = "helm_robe_raidpriest_c_01_nim.m2", text = "helm_robe_raidpriest_c_01_nim.m2", + value = "helm_robe_raidpriest_c_01_nim.m2", }, { fileId = "142192", - value = "helm_robe_raidpriest_c_01_orf.m2", text = "helm_robe_raidpriest_c_01_orf.m2", + value = "helm_robe_raidpriest_c_01_orf.m2", }, { fileId = "142193", - value = "helm_robe_raidpriest_c_01_orm.m2", text = "helm_robe_raidpriest_c_01_orm.m2", + value = "helm_robe_raidpriest_c_01_orm.m2", }, { fileId = "142194", - value = "helm_robe_raidpriest_c_01_scf.m2", text = "helm_robe_raidpriest_c_01_scf.m2", + value = "helm_robe_raidpriest_c_01_scf.m2", }, { fileId = "142195", - value = "helm_robe_raidpriest_c_01_scm.m2", text = "helm_robe_raidpriest_c_01_scm.m2", + value = "helm_robe_raidpriest_c_01_scm.m2", }, { fileId = "142196", - value = "helm_robe_raidpriest_c_01_taf.m2", text = "helm_robe_raidpriest_c_01_taf.m2", + value = "helm_robe_raidpriest_c_01_taf.m2", }, { fileId = "142197", - value = "helm_robe_raidpriest_c_01_tam.m2", text = "helm_robe_raidpriest_c_01_tam.m2", + value = "helm_robe_raidpriest_c_01_tam.m2", }, { fileId = "142198", - value = "helm_robe_raidpriest_c_01_trf.m2", text = "helm_robe_raidpriest_c_01_trf.m2", + value = "helm_robe_raidpriest_c_01_trf.m2", }, { fileId = "142199", - value = "helm_robe_raidpriest_c_01_trm.m2", text = "helm_robe_raidpriest_c_01_trm.m2", + value = "helm_robe_raidpriest_c_01_trm.m2", }, { fileId = "142201", - value = "helm_robe_raidpriest_d_01_bef.m2", text = "helm_robe_raidpriest_d_01_bef.m2", + value = "helm_robe_raidpriest_d_01_bef.m2", }, { fileId = "142202", - value = "helm_robe_raidpriest_d_01_bem.m2", text = "helm_robe_raidpriest_d_01_bem.m2", + value = "helm_robe_raidpriest_d_01_bem.m2", }, { fileId = "142203", - value = "helm_robe_raidpriest_d_01_drf.m2", text = "helm_robe_raidpriest_d_01_drf.m2", + value = "helm_robe_raidpriest_d_01_drf.m2", }, { fileId = "142204", - value = "helm_robe_raidpriest_d_01_drm.m2", text = "helm_robe_raidpriest_d_01_drm.m2", + value = "helm_robe_raidpriest_d_01_drm.m2", }, { fileId = "142205", - value = "helm_robe_raidpriest_d_01_dwf.m2", text = "helm_robe_raidpriest_d_01_dwf.m2", + value = "helm_robe_raidpriest_d_01_dwf.m2", }, { fileId = "142206", - value = "helm_robe_raidpriest_d_01_dwm.m2", text = "helm_robe_raidpriest_d_01_dwm.m2", + value = "helm_robe_raidpriest_d_01_dwm.m2", }, { fileId = "142207", - value = "helm_robe_raidpriest_d_01_gnf.m2", text = "helm_robe_raidpriest_d_01_gnf.m2", + value = "helm_robe_raidpriest_d_01_gnf.m2", }, { fileId = "142208", - value = "helm_robe_raidpriest_d_01_gnm.m2", text = "helm_robe_raidpriest_d_01_gnm.m2", + value = "helm_robe_raidpriest_d_01_gnm.m2", }, { fileId = "142209", - value = "helm_robe_raidpriest_d_01_gof.m2", text = "helm_robe_raidpriest_d_01_gof.m2", + value = "helm_robe_raidpriest_d_01_gof.m2", }, { fileId = "142210", - value = "helm_robe_raidpriest_d_01_gom.m2", text = "helm_robe_raidpriest_d_01_gom.m2", + value = "helm_robe_raidpriest_d_01_gom.m2", }, { fileId = "142211", - value = "helm_robe_raidpriest_d_01_huf.m2", text = "helm_robe_raidpriest_d_01_huf.m2", + value = "helm_robe_raidpriest_d_01_huf.m2", }, { fileId = "142212", - value = "helm_robe_raidpriest_d_01_hum.m2", text = "helm_robe_raidpriest_d_01_hum.m2", + value = "helm_robe_raidpriest_d_01_hum.m2", }, { fileId = "142213", - value = "helm_robe_raidpriest_d_01_nif.m2", text = "helm_robe_raidpriest_d_01_nif.m2", + value = "helm_robe_raidpriest_d_01_nif.m2", }, { fileId = "142214", - value = "helm_robe_raidpriest_d_01_nim.m2", text = "helm_robe_raidpriest_d_01_nim.m2", + value = "helm_robe_raidpriest_d_01_nim.m2", }, { fileId = "142215", - value = "helm_robe_raidpriest_d_01_orf.m2", text = "helm_robe_raidpriest_d_01_orf.m2", + value = "helm_robe_raidpriest_d_01_orf.m2", }, { fileId = "142216", - value = "helm_robe_raidpriest_d_01_orm.m2", text = "helm_robe_raidpriest_d_01_orm.m2", + value = "helm_robe_raidpriest_d_01_orm.m2", }, { fileId = "142217", - value = "helm_robe_raidpriest_d_01_scf.m2", text = "helm_robe_raidpriest_d_01_scf.m2", + value = "helm_robe_raidpriest_d_01_scf.m2", }, { fileId = "142218", - value = "helm_robe_raidpriest_d_01_scm.m2", text = "helm_robe_raidpriest_d_01_scm.m2", + value = "helm_robe_raidpriest_d_01_scm.m2", }, { fileId = "142219", - value = "helm_robe_raidpriest_d_01_taf.m2", text = "helm_robe_raidpriest_d_01_taf.m2", + value = "helm_robe_raidpriest_d_01_taf.m2", }, { fileId = "142220", - value = "helm_robe_raidpriest_d_01_tam.m2", text = "helm_robe_raidpriest_d_01_tam.m2", + value = "helm_robe_raidpriest_d_01_tam.m2", }, { fileId = "142221", - value = "helm_robe_raidpriest_d_01_trf.m2", text = "helm_robe_raidpriest_d_01_trf.m2", + value = "helm_robe_raidpriest_d_01_trf.m2", }, { fileId = "142222", - value = "helm_robe_raidpriest_d_01_trm.m2", text = "helm_robe_raidpriest_d_01_trm.m2", + value = "helm_robe_raidpriest_d_01_trm.m2", }, { fileId = "142224", - value = "helm_robe_raidpriest_e_01_bef.m2", text = "helm_robe_raidpriest_e_01_bef.m2", + value = "helm_robe_raidpriest_e_01_bef.m2", }, { fileId = "142225", - value = "helm_robe_raidpriest_e_01_bem.m2", text = "helm_robe_raidpriest_e_01_bem.m2", + value = "helm_robe_raidpriest_e_01_bem.m2", }, { fileId = "142226", - value = "helm_robe_raidpriest_e_01_drf.m2", text = "helm_robe_raidpriest_e_01_drf.m2", + value = "helm_robe_raidpriest_e_01_drf.m2", }, { fileId = "142227", - value = "helm_robe_raidpriest_e_01_drm.m2", text = "helm_robe_raidpriest_e_01_drm.m2", + value = "helm_robe_raidpriest_e_01_drm.m2", }, { fileId = "142228", - value = "helm_robe_raidpriest_e_01_dwf.m2", text = "helm_robe_raidpriest_e_01_dwf.m2", + value = "helm_robe_raidpriest_e_01_dwf.m2", }, { fileId = "142229", - value = "helm_robe_raidpriest_e_01_dwm.m2", text = "helm_robe_raidpriest_e_01_dwm.m2", + value = "helm_robe_raidpriest_e_01_dwm.m2", }, { fileId = "142230", - value = "helm_robe_raidpriest_e_01_gnf.m2", text = "helm_robe_raidpriest_e_01_gnf.m2", + value = "helm_robe_raidpriest_e_01_gnf.m2", }, { fileId = "142231", - value = "helm_robe_raidpriest_e_01_gnm.m2", text = "helm_robe_raidpriest_e_01_gnm.m2", + value = "helm_robe_raidpriest_e_01_gnm.m2", }, { fileId = "142232", - value = "helm_robe_raidpriest_e_01_huf.m2", text = "helm_robe_raidpriest_e_01_huf.m2", + value = "helm_robe_raidpriest_e_01_huf.m2", }, { fileId = "142233", - value = "helm_robe_raidpriest_e_01_hum.m2", text = "helm_robe_raidpriest_e_01_hum.m2", + value = "helm_robe_raidpriest_e_01_hum.m2", }, { fileId = "142234", - value = "helm_robe_raidpriest_e_01_nif.m2", text = "helm_robe_raidpriest_e_01_nif.m2", + value = "helm_robe_raidpriest_e_01_nif.m2", }, { fileId = "142235", - value = "helm_robe_raidpriest_e_01_nim.m2", text = "helm_robe_raidpriest_e_01_nim.m2", + value = "helm_robe_raidpriest_e_01_nim.m2", }, { fileId = "142236", - value = "helm_robe_raidpriest_e_01_orf.m2", text = "helm_robe_raidpriest_e_01_orf.m2", + value = "helm_robe_raidpriest_e_01_orf.m2", }, { fileId = "142237", - value = "helm_robe_raidpriest_e_01_orm.m2", text = "helm_robe_raidpriest_e_01_orm.m2", + value = "helm_robe_raidpriest_e_01_orm.m2", }, { fileId = "142238", - value = "helm_robe_raidpriest_e_01_scf.m2", text = "helm_robe_raidpriest_e_01_scf.m2", + value = "helm_robe_raidpriest_e_01_scf.m2", }, { fileId = "142239", - value = "helm_robe_raidpriest_e_01_scm.m2", text = "helm_robe_raidpriest_e_01_scm.m2", + value = "helm_robe_raidpriest_e_01_scm.m2", }, { fileId = "142240", - value = "helm_robe_raidpriest_e_01_taf.m2", text = "helm_robe_raidpriest_e_01_taf.m2", + value = "helm_robe_raidpriest_e_01_taf.m2", }, { fileId = "142241", - value = "helm_robe_raidpriest_e_01_tam.m2", text = "helm_robe_raidpriest_e_01_tam.m2", + value = "helm_robe_raidpriest_e_01_tam.m2", }, { fileId = "142242", - value = "helm_robe_raidpriest_e_01_trf.m2", text = "helm_robe_raidpriest_e_01_trf.m2", + value = "helm_robe_raidpriest_e_01_trf.m2", }, { fileId = "142243", - value = "helm_robe_raidpriest_e_01_trm.m2", text = "helm_robe_raidpriest_e_01_trm.m2", + value = "helm_robe_raidpriest_e_01_trm.m2", }, { fileId = "142246", - value = "helm_robe_raidpriest_f_01_bef.m2", text = "helm_robe_raidpriest_f_01_bef.m2", + value = "helm_robe_raidpriest_f_01_bef.m2", }, { fileId = "142247", - value = "helm_robe_raidpriest_f_01_bem.m2", text = "helm_robe_raidpriest_f_01_bem.m2", + value = "helm_robe_raidpriest_f_01_bem.m2", }, { fileId = "142248", - value = "helm_robe_raidpriest_f_01_drf.m2", text = "helm_robe_raidpriest_f_01_drf.m2", + value = "helm_robe_raidpriest_f_01_drf.m2", }, { fileId = "142249", - value = "helm_robe_raidpriest_f_01_drm.m2", text = "helm_robe_raidpriest_f_01_drm.m2", + value = "helm_robe_raidpriest_f_01_drm.m2", }, { fileId = "142250", - value = "helm_robe_raidpriest_f_01_dwf.m2", text = "helm_robe_raidpriest_f_01_dwf.m2", + value = "helm_robe_raidpriest_f_01_dwf.m2", }, { fileId = "142251", - value = "helm_robe_raidpriest_f_01_dwm.m2", text = "helm_robe_raidpriest_f_01_dwm.m2", + value = "helm_robe_raidpriest_f_01_dwm.m2", }, { fileId = "142252", - value = "helm_robe_raidpriest_f_01_gnf.m2", text = "helm_robe_raidpriest_f_01_gnf.m2", + value = "helm_robe_raidpriest_f_01_gnf.m2", }, { fileId = "142253", - value = "helm_robe_raidpriest_f_01_gnm.m2", text = "helm_robe_raidpriest_f_01_gnm.m2", + value = "helm_robe_raidpriest_f_01_gnm.m2", }, { fileId = "142254", - value = "helm_robe_raidpriest_f_01_gom.m2", text = "helm_robe_raidpriest_f_01_gom.m2", + value = "helm_robe_raidpriest_f_01_gom.m2", }, { fileId = "142255", - value = "helm_robe_raidpriest_f_01_huf.m2", text = "helm_robe_raidpriest_f_01_huf.m2", + value = "helm_robe_raidpriest_f_01_huf.m2", }, { fileId = "142256", - value = "helm_robe_raidpriest_f_01_hum.m2", text = "helm_robe_raidpriest_f_01_hum.m2", + value = "helm_robe_raidpriest_f_01_hum.m2", }, { fileId = "142257", - value = "helm_robe_raidpriest_f_01_nif.m2", text = "helm_robe_raidpriest_f_01_nif.m2", + value = "helm_robe_raidpriest_f_01_nif.m2", }, { fileId = "142258", - value = "helm_robe_raidpriest_f_01_nim.m2", text = "helm_robe_raidpriest_f_01_nim.m2", + value = "helm_robe_raidpriest_f_01_nim.m2", }, { fileId = "142259", - value = "helm_robe_raidpriest_f_01_orf.m2", text = "helm_robe_raidpriest_f_01_orf.m2", + value = "helm_robe_raidpriest_f_01_orf.m2", }, { fileId = "142260", - value = "helm_robe_raidpriest_f_01_orm.m2", text = "helm_robe_raidpriest_f_01_orm.m2", + value = "helm_robe_raidpriest_f_01_orm.m2", }, { fileId = "142261", - value = "helm_robe_raidpriest_f_01_scf.m2", text = "helm_robe_raidpriest_f_01_scf.m2", + value = "helm_robe_raidpriest_f_01_scf.m2", }, { fileId = "142262", - value = "helm_robe_raidpriest_f_01_scm.m2", text = "helm_robe_raidpriest_f_01_scm.m2", + value = "helm_robe_raidpriest_f_01_scm.m2", }, { fileId = "142263", - value = "helm_robe_raidpriest_f_01_taf.m2", text = "helm_robe_raidpriest_f_01_taf.m2", + value = "helm_robe_raidpriest_f_01_taf.m2", }, { fileId = "142264", - value = "helm_robe_raidpriest_f_01_tam.m2", text = "helm_robe_raidpriest_f_01_tam.m2", + value = "helm_robe_raidpriest_f_01_tam.m2", }, { fileId = "142265", - value = "helm_robe_raidpriest_f_01_trf.m2", text = "helm_robe_raidpriest_f_01_trf.m2", + value = "helm_robe_raidpriest_f_01_trf.m2", }, { fileId = "142266", - value = "helm_robe_raidpriest_f_01_trm.m2", text = "helm_robe_raidpriest_f_01_trm.m2", + value = "helm_robe_raidpriest_f_01_trm.m2", }, { fileId = "142300", - value = "helm_robe_raidshaman_c_01_bef.m2", text = "helm_robe_raidshaman_c_01_bef.m2", + value = "helm_robe_raidshaman_c_01_bef.m2", }, { fileId = "142301", - value = "helm_robe_raidshaman_c_01_bem.m2", text = "helm_robe_raidshaman_c_01_bem.m2", + value = "helm_robe_raidshaman_c_01_bem.m2", }, { fileId = "142302", - value = "helm_robe_raidshaman_c_01_drf.m2", text = "helm_robe_raidshaman_c_01_drf.m2", + value = "helm_robe_raidshaman_c_01_drf.m2", }, { fileId = "142303", - value = "helm_robe_raidshaman_c_01_drm.m2", text = "helm_robe_raidshaman_c_01_drm.m2", + value = "helm_robe_raidshaman_c_01_drm.m2", }, { fileId = "142304", - value = "helm_robe_raidshaman_c_01_dwf.m2", text = "helm_robe_raidshaman_c_01_dwf.m2", + value = "helm_robe_raidshaman_c_01_dwf.m2", }, { fileId = "142305", - value = "helm_robe_raidshaman_c_01_dwm.m2", text = "helm_robe_raidshaman_c_01_dwm.m2", + value = "helm_robe_raidshaman_c_01_dwm.m2", }, { fileId = "142306", - value = "helm_robe_raidshaman_c_01_gnf.m2", text = "helm_robe_raidshaman_c_01_gnf.m2", + value = "helm_robe_raidshaman_c_01_gnf.m2", }, { fileId = "142307", - value = "helm_robe_raidshaman_c_01_gnm.m2", text = "helm_robe_raidshaman_c_01_gnm.m2", + value = "helm_robe_raidshaman_c_01_gnm.m2", }, { fileId = "142308", - value = "helm_robe_raidshaman_c_01_gof.m2", text = "helm_robe_raidshaman_c_01_gof.m2", + value = "helm_robe_raidshaman_c_01_gof.m2", }, { fileId = "142309", - value = "helm_robe_raidshaman_c_01_gom.m2", text = "helm_robe_raidshaman_c_01_gom.m2", + value = "helm_robe_raidshaman_c_01_gom.m2", }, { fileId = "142310", - value = "helm_robe_raidshaman_c_01_huf.m2", text = "helm_robe_raidshaman_c_01_huf.m2", + value = "helm_robe_raidshaman_c_01_huf.m2", }, { fileId = "142311", - value = "helm_robe_raidshaman_c_01_hum.m2", text = "helm_robe_raidshaman_c_01_hum.m2", + value = "helm_robe_raidshaman_c_01_hum.m2", }, { fileId = "142312", - value = "helm_robe_raidshaman_c_01_nif.m2", text = "helm_robe_raidshaman_c_01_nif.m2", + value = "helm_robe_raidshaman_c_01_nif.m2", }, { fileId = "142313", - value = "helm_robe_raidshaman_c_01_nim.m2", text = "helm_robe_raidshaman_c_01_nim.m2", + value = "helm_robe_raidshaman_c_01_nim.m2", }, { fileId = "142314", - value = "helm_robe_raidshaman_c_01_orf.m2", text = "helm_robe_raidshaman_c_01_orf.m2", + value = "helm_robe_raidshaman_c_01_orf.m2", }, { fileId = "142315", - value = "helm_robe_raidshaman_c_01_orm.m2", text = "helm_robe_raidshaman_c_01_orm.m2", + value = "helm_robe_raidshaman_c_01_orm.m2", }, { fileId = "142316", - value = "helm_robe_raidshaman_c_01_scf.m2", text = "helm_robe_raidshaman_c_01_scf.m2", + value = "helm_robe_raidshaman_c_01_scf.m2", }, { fileId = "142317", - value = "helm_robe_raidshaman_c_01_scm.m2", text = "helm_robe_raidshaman_c_01_scm.m2", + value = "helm_robe_raidshaman_c_01_scm.m2", }, { fileId = "142318", - value = "helm_robe_raidshaman_c_01_taf.m2", text = "helm_robe_raidshaman_c_01_taf.m2", + value = "helm_robe_raidshaman_c_01_taf.m2", }, { fileId = "142319", - value = "helm_robe_raidshaman_c_01_tam.m2", text = "helm_robe_raidshaman_c_01_tam.m2", + value = "helm_robe_raidshaman_c_01_tam.m2", }, { fileId = "142320", - value = "helm_robe_raidshaman_c_01_trf.m2", text = "helm_robe_raidshaman_c_01_trf.m2", + value = "helm_robe_raidshaman_c_01_trf.m2", }, { fileId = "142321", - value = "helm_robe_raidshaman_c_01_trm.m2", text = "helm_robe_raidshaman_c_01_trm.m2", + value = "helm_robe_raidshaman_c_01_trm.m2", }, { fileId = "142322", - value = "helm_robe_raidwarlock_a_01_bef.m2", text = "helm_robe_raidwarlock_a_01_bef.m2", + value = "helm_robe_raidwarlock_a_01_bef.m2", }, { fileId = "142323", - value = "helm_robe_raidwarlock_a_01_bem.m2", text = "helm_robe_raidwarlock_a_01_bem.m2", + value = "helm_robe_raidwarlock_a_01_bem.m2", }, { fileId = "142324", - value = "helm_robe_raidwarlock_a_01_drf.m2", text = "helm_robe_raidwarlock_a_01_drf.m2", + value = "helm_robe_raidwarlock_a_01_drf.m2", }, { fileId = "142325", - value = "helm_robe_raidwarlock_a_01_drm.m2", text = "helm_robe_raidwarlock_a_01_drm.m2", + value = "helm_robe_raidwarlock_a_01_drm.m2", }, { fileId = "142326", - value = "helm_robe_raidwarlock_a_01_dwf.m2", text = "helm_robe_raidwarlock_a_01_dwf.m2", + value = "helm_robe_raidwarlock_a_01_dwf.m2", }, { fileId = "142327", - value = "helm_robe_raidwarlock_a_01_dwm.m2", text = "helm_robe_raidwarlock_a_01_dwm.m2", + value = "helm_robe_raidwarlock_a_01_dwm.m2", }, { fileId = "142328", - value = "helm_robe_raidwarlock_a_01_gnf.m2", text = "helm_robe_raidwarlock_a_01_gnf.m2", + value = "helm_robe_raidwarlock_a_01_gnf.m2", }, { fileId = "142329", - value = "helm_robe_raidwarlock_a_01_gnm.m2", text = "helm_robe_raidwarlock_a_01_gnm.m2", + value = "helm_robe_raidwarlock_a_01_gnm.m2", }, { fileId = "142330", - value = "helm_robe_raidwarlock_a_01_gof.m2", text = "helm_robe_raidwarlock_a_01_gof.m2", + value = "helm_robe_raidwarlock_a_01_gof.m2", }, { fileId = "142331", - value = "helm_robe_raidwarlock_a_01_gom.m2", text = "helm_robe_raidwarlock_a_01_gom.m2", + value = "helm_robe_raidwarlock_a_01_gom.m2", }, { fileId = "142332", - value = "helm_robe_raidwarlock_a_01_huf.m2", text = "helm_robe_raidwarlock_a_01_huf.m2", + value = "helm_robe_raidwarlock_a_01_huf.m2", }, { fileId = "142333", - value = "helm_robe_raidwarlock_a_01_hum.m2", text = "helm_robe_raidwarlock_a_01_hum.m2", + value = "helm_robe_raidwarlock_a_01_hum.m2", }, { fileId = "142334", - value = "helm_robe_raidwarlock_a_01_nif.m2", text = "helm_robe_raidwarlock_a_01_nif.m2", + value = "helm_robe_raidwarlock_a_01_nif.m2", }, { fileId = "142335", - value = "helm_robe_raidwarlock_a_01_nim.m2", text = "helm_robe_raidwarlock_a_01_nim.m2", + value = "helm_robe_raidwarlock_a_01_nim.m2", }, { fileId = "142336", - value = "helm_robe_raidwarlock_a_01_orf.m2", text = "helm_robe_raidwarlock_a_01_orf.m2", + value = "helm_robe_raidwarlock_a_01_orf.m2", }, { fileId = "142337", - value = "helm_robe_raidwarlock_a_01_orm.m2", text = "helm_robe_raidwarlock_a_01_orm.m2", + value = "helm_robe_raidwarlock_a_01_orm.m2", }, { fileId = "142338", - value = "helm_robe_raidwarlock_a_01_scf.m2", text = "helm_robe_raidwarlock_a_01_scf.m2", + value = "helm_robe_raidwarlock_a_01_scf.m2", }, { fileId = "142339", - value = "helm_robe_raidwarlock_a_01_scm.m2", text = "helm_robe_raidwarlock_a_01_scm.m2", + value = "helm_robe_raidwarlock_a_01_scm.m2", }, { fileId = "142340", - value = "helm_robe_raidwarlock_a_01_taf.m2", text = "helm_robe_raidwarlock_a_01_taf.m2", + value = "helm_robe_raidwarlock_a_01_taf.m2", }, { fileId = "142341", - value = "helm_robe_raidwarlock_a_01_tam.m2", text = "helm_robe_raidwarlock_a_01_tam.m2", + value = "helm_robe_raidwarlock_a_01_tam.m2", }, { fileId = "142342", - value = "helm_robe_raidwarlock_a_01_trf.m2", text = "helm_robe_raidwarlock_a_01_trf.m2", + value = "helm_robe_raidwarlock_a_01_trf.m2", }, { fileId = "142343", - value = "helm_robe_raidwarlock_a_01_trm.m2", text = "helm_robe_raidwarlock_a_01_trm.m2", + value = "helm_robe_raidwarlock_a_01_trm.m2", }, { fileId = "142349", - value = "helm_robe_raidwarlock_b_01_bef.m2", text = "helm_robe_raidwarlock_b_01_bef.m2", + value = "helm_robe_raidwarlock_b_01_bef.m2", }, { fileId = "142350", - value = "helm_robe_raidwarlock_b_01_bem.m2", text = "helm_robe_raidwarlock_b_01_bem.m2", + value = "helm_robe_raidwarlock_b_01_bem.m2", }, { fileId = "142351", - value = "helm_robe_raidwarlock_b_01_drf.m2", text = "helm_robe_raidwarlock_b_01_drf.m2", + value = "helm_robe_raidwarlock_b_01_drf.m2", }, { fileId = "142352", - value = "helm_robe_raidwarlock_b_01_drm.m2", text = "helm_robe_raidwarlock_b_01_drm.m2", + value = "helm_robe_raidwarlock_b_01_drm.m2", }, { fileId = "142353", - value = "helm_robe_raidwarlock_b_01_dwf.m2", text = "helm_robe_raidwarlock_b_01_dwf.m2", + value = "helm_robe_raidwarlock_b_01_dwf.m2", }, { fileId = "142354", - value = "helm_robe_raidwarlock_b_01_dwm.m2", text = "helm_robe_raidwarlock_b_01_dwm.m2", + value = "helm_robe_raidwarlock_b_01_dwm.m2", }, { fileId = "142355", - value = "helm_robe_raidwarlock_b_01_gnf.m2", text = "helm_robe_raidwarlock_b_01_gnf.m2", + value = "helm_robe_raidwarlock_b_01_gnf.m2", }, { fileId = "142356", - value = "helm_robe_raidwarlock_b_01_gnm.m2", text = "helm_robe_raidwarlock_b_01_gnm.m2", + value = "helm_robe_raidwarlock_b_01_gnm.m2", }, { fileId = "142357", - value = "helm_robe_raidwarlock_b_01_gof.m2", text = "helm_robe_raidwarlock_b_01_gof.m2", + value = "helm_robe_raidwarlock_b_01_gof.m2", }, { fileId = "142358", - value = "helm_robe_raidwarlock_b_01_gom.m2", text = "helm_robe_raidwarlock_b_01_gom.m2", + value = "helm_robe_raidwarlock_b_01_gom.m2", }, { fileId = "142359", - value = "helm_robe_raidwarlock_b_01_huf.m2", text = "helm_robe_raidwarlock_b_01_huf.m2", + value = "helm_robe_raidwarlock_b_01_huf.m2", }, { fileId = "142360", - value = "helm_robe_raidwarlock_b_01_hum.m2", text = "helm_robe_raidwarlock_b_01_hum.m2", + value = "helm_robe_raidwarlock_b_01_hum.m2", }, { fileId = "142361", - value = "helm_robe_raidwarlock_b_01_nif.m2", text = "helm_robe_raidwarlock_b_01_nif.m2", + value = "helm_robe_raidwarlock_b_01_nif.m2", }, { fileId = "142362", - value = "helm_robe_raidwarlock_b_01_nim.m2", text = "helm_robe_raidwarlock_b_01_nim.m2", + value = "helm_robe_raidwarlock_b_01_nim.m2", }, { fileId = "142363", - value = "helm_robe_raidwarlock_b_01_orf.m2", text = "helm_robe_raidwarlock_b_01_orf.m2", + value = "helm_robe_raidwarlock_b_01_orf.m2", }, { fileId = "142364", - value = "helm_robe_raidwarlock_b_01_orm.m2", text = "helm_robe_raidwarlock_b_01_orm.m2", + value = "helm_robe_raidwarlock_b_01_orm.m2", }, { fileId = "142365", - value = "helm_robe_raidwarlock_b_01_scf.m2", text = "helm_robe_raidwarlock_b_01_scf.m2", + value = "helm_robe_raidwarlock_b_01_scf.m2", }, { fileId = "142366", - value = "helm_robe_raidwarlock_b_01_scm.m2", text = "helm_robe_raidwarlock_b_01_scm.m2", + value = "helm_robe_raidwarlock_b_01_scm.m2", }, { fileId = "142367", - value = "helm_robe_raidwarlock_b_01_taf.m2", text = "helm_robe_raidwarlock_b_01_taf.m2", + value = "helm_robe_raidwarlock_b_01_taf.m2", }, { fileId = "142368", - value = "helm_robe_raidwarlock_b_01_tam.m2", text = "helm_robe_raidwarlock_b_01_tam.m2", + value = "helm_robe_raidwarlock_b_01_tam.m2", }, { fileId = "142369", - value = "helm_robe_raidwarlock_b_01_trf.m2", text = "helm_robe_raidwarlock_b_01_trf.m2", + value = "helm_robe_raidwarlock_b_01_trf.m2", }, { fileId = "142370", - value = "helm_robe_raidwarlock_b_01_trm.m2", text = "helm_robe_raidwarlock_b_01_trm.m2", + value = "helm_robe_raidwarlock_b_01_trm.m2", }, { fileId = "142375", - value = "helm_robe_raidwarlock_c_01_bef.m2", text = "helm_robe_raidwarlock_c_01_bef.m2", + value = "helm_robe_raidwarlock_c_01_bef.m2", }, { fileId = "142376", - value = "helm_robe_raidwarlock_c_01_bem.m2", text = "helm_robe_raidwarlock_c_01_bem.m2", + value = "helm_robe_raidwarlock_c_01_bem.m2", }, { fileId = "142377", - value = "helm_robe_raidwarlock_c_01_drf.m2", text = "helm_robe_raidwarlock_c_01_drf.m2", + value = "helm_robe_raidwarlock_c_01_drf.m2", }, { fileId = "142378", - value = "helm_robe_raidwarlock_c_01_drm.m2", text = "helm_robe_raidwarlock_c_01_drm.m2", + value = "helm_robe_raidwarlock_c_01_drm.m2", }, { fileId = "142379", - value = "helm_robe_raidwarlock_c_01_dwf.m2", text = "helm_robe_raidwarlock_c_01_dwf.m2", + value = "helm_robe_raidwarlock_c_01_dwf.m2", }, { fileId = "142380", - value = "helm_robe_raidwarlock_c_01_dwm.m2", text = "helm_robe_raidwarlock_c_01_dwm.m2", + value = "helm_robe_raidwarlock_c_01_dwm.m2", }, { fileId = "142381", - value = "helm_robe_raidwarlock_c_01_gnf.m2", text = "helm_robe_raidwarlock_c_01_gnf.m2", + value = "helm_robe_raidwarlock_c_01_gnf.m2", }, { fileId = "142382", - value = "helm_robe_raidwarlock_c_01_gnm.m2", text = "helm_robe_raidwarlock_c_01_gnm.m2", + value = "helm_robe_raidwarlock_c_01_gnm.m2", }, { fileId = "142383", - value = "helm_robe_raidwarlock_c_01_gof.m2", text = "helm_robe_raidwarlock_c_01_gof.m2", + value = "helm_robe_raidwarlock_c_01_gof.m2", }, { fileId = "142384", - value = "helm_robe_raidwarlock_c_01_gom.m2", text = "helm_robe_raidwarlock_c_01_gom.m2", + value = "helm_robe_raidwarlock_c_01_gom.m2", }, { fileId = "142385", - value = "helm_robe_raidwarlock_c_01_huf.m2", text = "helm_robe_raidwarlock_c_01_huf.m2", + value = "helm_robe_raidwarlock_c_01_huf.m2", }, { fileId = "142386", - value = "helm_robe_raidwarlock_c_01_hum.m2", text = "helm_robe_raidwarlock_c_01_hum.m2", + value = "helm_robe_raidwarlock_c_01_hum.m2", }, { fileId = "142387", - value = "helm_robe_raidwarlock_c_01_nif.m2", text = "helm_robe_raidwarlock_c_01_nif.m2", + value = "helm_robe_raidwarlock_c_01_nif.m2", }, { fileId = "142388", - value = "helm_robe_raidwarlock_c_01_nim.m2", text = "helm_robe_raidwarlock_c_01_nim.m2", + value = "helm_robe_raidwarlock_c_01_nim.m2", }, { fileId = "142389", - value = "helm_robe_raidwarlock_c_01_orf.m2", text = "helm_robe_raidwarlock_c_01_orf.m2", + value = "helm_robe_raidwarlock_c_01_orf.m2", }, { fileId = "142390", - value = "helm_robe_raidwarlock_c_01_orm.m2", text = "helm_robe_raidwarlock_c_01_orm.m2", + value = "helm_robe_raidwarlock_c_01_orm.m2", }, { fileId = "142391", - value = "helm_robe_raidwarlock_c_01_scf.m2", text = "helm_robe_raidwarlock_c_01_scf.m2", + value = "helm_robe_raidwarlock_c_01_scf.m2", }, { fileId = "142392", - value = "helm_robe_raidwarlock_c_01_scm.m2", text = "helm_robe_raidwarlock_c_01_scm.m2", + value = "helm_robe_raidwarlock_c_01_scm.m2", }, { fileId = "142393", - value = "helm_robe_raidwarlock_c_01_taf.m2", text = "helm_robe_raidwarlock_c_01_taf.m2", + value = "helm_robe_raidwarlock_c_01_taf.m2", }, { fileId = "142394", - value = "helm_robe_raidwarlock_c_01_tam.m2", text = "helm_robe_raidwarlock_c_01_tam.m2", + value = "helm_robe_raidwarlock_c_01_tam.m2", }, { fileId = "142395", - value = "helm_robe_raidwarlock_c_01_trf.m2", text = "helm_robe_raidwarlock_c_01_trf.m2", + value = "helm_robe_raidwarlock_c_01_trf.m2", }, { fileId = "142396", - value = "helm_robe_raidwarlock_c_01_trm.m2", text = "helm_robe_raidwarlock_c_01_trm.m2", + value = "helm_robe_raidwarlock_c_01_trm.m2", }, { fileId = "142398", - value = "helm_robe_raidwarlock_d_01_bef.m2", text = "helm_robe_raidwarlock_d_01_bef.m2", + value = "helm_robe_raidwarlock_d_01_bef.m2", }, { fileId = "142399", - value = "helm_robe_raidwarlock_d_01_bem.m2", text = "helm_robe_raidwarlock_d_01_bem.m2", + value = "helm_robe_raidwarlock_d_01_bem.m2", }, { fileId = "142400", - value = "helm_robe_raidwarlock_d_01_drf.m2", text = "helm_robe_raidwarlock_d_01_drf.m2", + value = "helm_robe_raidwarlock_d_01_drf.m2", }, { fileId = "142401", - value = "helm_robe_raidwarlock_d_01_drm.m2", text = "helm_robe_raidwarlock_d_01_drm.m2", + value = "helm_robe_raidwarlock_d_01_drm.m2", }, { fileId = "142402", - value = "helm_robe_raidwarlock_d_01_dwf.m2", text = "helm_robe_raidwarlock_d_01_dwf.m2", + value = "helm_robe_raidwarlock_d_01_dwf.m2", }, { fileId = "142403", - value = "helm_robe_raidwarlock_d_01_dwm.m2", text = "helm_robe_raidwarlock_d_01_dwm.m2", + value = "helm_robe_raidwarlock_d_01_dwm.m2", }, { fileId = "142404", - value = "helm_robe_raidwarlock_d_01_gnf.m2", text = "helm_robe_raidwarlock_d_01_gnf.m2", + value = "helm_robe_raidwarlock_d_01_gnf.m2", }, { fileId = "142405", - value = "helm_robe_raidwarlock_d_01_gnm.m2", text = "helm_robe_raidwarlock_d_01_gnm.m2", + value = "helm_robe_raidwarlock_d_01_gnm.m2", }, { fileId = "142406", - value = "helm_robe_raidwarlock_d_01_gof.m2", text = "helm_robe_raidwarlock_d_01_gof.m2", + value = "helm_robe_raidwarlock_d_01_gof.m2", }, { fileId = "142407", - value = "helm_robe_raidwarlock_d_01_gom.m2", text = "helm_robe_raidwarlock_d_01_gom.m2", + value = "helm_robe_raidwarlock_d_01_gom.m2", }, { fileId = "142408", - value = "helm_robe_raidwarlock_d_01_huf.m2", text = "helm_robe_raidwarlock_d_01_huf.m2", + value = "helm_robe_raidwarlock_d_01_huf.m2", }, { fileId = "142409", - value = "helm_robe_raidwarlock_d_01_hum.m2", text = "helm_robe_raidwarlock_d_01_hum.m2", + value = "helm_robe_raidwarlock_d_01_hum.m2", }, { fileId = "142410", - value = "helm_robe_raidwarlock_d_01_nif.m2", text = "helm_robe_raidwarlock_d_01_nif.m2", + value = "helm_robe_raidwarlock_d_01_nif.m2", }, { fileId = "142411", - value = "helm_robe_raidwarlock_d_01_nim.m2", text = "helm_robe_raidwarlock_d_01_nim.m2", + value = "helm_robe_raidwarlock_d_01_nim.m2", }, { fileId = "142412", - value = "helm_robe_raidwarlock_d_01_orf.m2", text = "helm_robe_raidwarlock_d_01_orf.m2", + value = "helm_robe_raidwarlock_d_01_orf.m2", }, { fileId = "142413", - value = "helm_robe_raidwarlock_d_01_orm.m2", text = "helm_robe_raidwarlock_d_01_orm.m2", + value = "helm_robe_raidwarlock_d_01_orm.m2", }, { fileId = "142414", - value = "helm_robe_raidwarlock_d_01_scf.m2", text = "helm_robe_raidwarlock_d_01_scf.m2", + value = "helm_robe_raidwarlock_d_01_scf.m2", }, { fileId = "142415", - value = "helm_robe_raidwarlock_d_01_scm.m2", text = "helm_robe_raidwarlock_d_01_scm.m2", + value = "helm_robe_raidwarlock_d_01_scm.m2", }, { fileId = "142416", - value = "helm_robe_raidwarlock_d_01_taf.m2", text = "helm_robe_raidwarlock_d_01_taf.m2", + value = "helm_robe_raidwarlock_d_01_taf.m2", }, { fileId = "142417", - value = "helm_robe_raidwarlock_d_01_tam.m2", text = "helm_robe_raidwarlock_d_01_tam.m2", + value = "helm_robe_raidwarlock_d_01_tam.m2", }, { fileId = "142418", - value = "helm_robe_raidwarlock_d_01_trf.m2", text = "helm_robe_raidwarlock_d_01_trf.m2", + value = "helm_robe_raidwarlock_d_01_trf.m2", }, { fileId = "142419", - value = "helm_robe_raidwarlock_d_01_trm.m2", text = "helm_robe_raidwarlock_d_01_trm.m2", + value = "helm_robe_raidwarlock_d_01_trm.m2", }, { fileId = "142422", - value = "helm_robe_raidwarlock_e_01_bef.m2", text = "helm_robe_raidwarlock_e_01_bef.m2", + value = "helm_robe_raidwarlock_e_01_bef.m2", }, { fileId = "142423", - value = "helm_robe_raidwarlock_e_01_bem.m2", text = "helm_robe_raidwarlock_e_01_bem.m2", + value = "helm_robe_raidwarlock_e_01_bem.m2", }, { fileId = "142424", - value = "helm_robe_raidwarlock_e_01_drf.m2", text = "helm_robe_raidwarlock_e_01_drf.m2", + value = "helm_robe_raidwarlock_e_01_drf.m2", }, { fileId = "142425", - value = "helm_robe_raidwarlock_e_01_drm.m2", text = "helm_robe_raidwarlock_e_01_drm.m2", + value = "helm_robe_raidwarlock_e_01_drm.m2", }, { fileId = "142426", - value = "helm_robe_raidwarlock_e_01_dwf.m2", text = "helm_robe_raidwarlock_e_01_dwf.m2", + value = "helm_robe_raidwarlock_e_01_dwf.m2", }, { fileId = "142427", - value = "helm_robe_raidwarlock_e_01_dwm.m2", text = "helm_robe_raidwarlock_e_01_dwm.m2", + value = "helm_robe_raidwarlock_e_01_dwm.m2", }, { fileId = "142428", - value = "helm_robe_raidwarlock_e_01_gnf.m2", text = "helm_robe_raidwarlock_e_01_gnf.m2", + value = "helm_robe_raidwarlock_e_01_gnf.m2", }, { fileId = "142429", - value = "helm_robe_raidwarlock_e_01_gnm.m2", text = "helm_robe_raidwarlock_e_01_gnm.m2", + value = "helm_robe_raidwarlock_e_01_gnm.m2", }, { fileId = "142430", - value = "helm_robe_raidwarlock_e_01_gof.m2", text = "helm_robe_raidwarlock_e_01_gof.m2", + value = "helm_robe_raidwarlock_e_01_gof.m2", }, { fileId = "142431", - value = "helm_robe_raidwarlock_e_01_gom.m2", text = "helm_robe_raidwarlock_e_01_gom.m2", + value = "helm_robe_raidwarlock_e_01_gom.m2", }, { fileId = "142432", - value = "helm_robe_raidwarlock_e_01_huf.m2", text = "helm_robe_raidwarlock_e_01_huf.m2", + value = "helm_robe_raidwarlock_e_01_huf.m2", }, { fileId = "142433", - value = "helm_robe_raidwarlock_e_01_hum.m2", text = "helm_robe_raidwarlock_e_01_hum.m2", + value = "helm_robe_raidwarlock_e_01_hum.m2", }, { fileId = "142434", - value = "helm_robe_raidwarlock_e_01_nif.m2", text = "helm_robe_raidwarlock_e_01_nif.m2", + value = "helm_robe_raidwarlock_e_01_nif.m2", }, { fileId = "142435", - value = "helm_robe_raidwarlock_e_01_nim.m2", text = "helm_robe_raidwarlock_e_01_nim.m2", + value = "helm_robe_raidwarlock_e_01_nim.m2", }, { fileId = "142436", - value = "helm_robe_raidwarlock_e_01_orf.m2", text = "helm_robe_raidwarlock_e_01_orf.m2", + value = "helm_robe_raidwarlock_e_01_orf.m2", }, { fileId = "142437", - value = "helm_robe_raidwarlock_e_01_orm.m2", text = "helm_robe_raidwarlock_e_01_orm.m2", + value = "helm_robe_raidwarlock_e_01_orm.m2", }, { fileId = "142438", - value = "helm_robe_raidwarlock_e_01_scf.m2", text = "helm_robe_raidwarlock_e_01_scf.m2", + value = "helm_robe_raidwarlock_e_01_scf.m2", }, { fileId = "142439", - value = "helm_robe_raidwarlock_e_01_scm.m2", text = "helm_robe_raidwarlock_e_01_scm.m2", + value = "helm_robe_raidwarlock_e_01_scm.m2", }, { fileId = "142440", - value = "helm_robe_raidwarlock_e_01_taf.m2", text = "helm_robe_raidwarlock_e_01_taf.m2", + value = "helm_robe_raidwarlock_e_01_taf.m2", }, { fileId = "142441", - value = "helm_robe_raidwarlock_e_01_tam.m2", text = "helm_robe_raidwarlock_e_01_tam.m2", + value = "helm_robe_raidwarlock_e_01_tam.m2", }, { fileId = "142442", - value = "helm_robe_raidwarlock_e_01_trf.m2", text = "helm_robe_raidwarlock_e_01_trf.m2", + value = "helm_robe_raidwarlock_e_01_trf.m2", }, { fileId = "142443", - value = "helm_robe_raidwarlock_e_01_trm.m2", text = "helm_robe_raidwarlock_e_01_trm.m2", + value = "helm_robe_raidwarlock_e_01_trm.m2", }, { fileId = "142447", - value = "helm_robe_raidwarlock_f_01_bef.m2", text = "helm_robe_raidwarlock_f_01_bef.m2", + value = "helm_robe_raidwarlock_f_01_bef.m2", }, { fileId = "142448", - value = "helm_robe_raidwarlock_f_01_bem.m2", text = "helm_robe_raidwarlock_f_01_bem.m2", + value = "helm_robe_raidwarlock_f_01_bem.m2", }, { fileId = "142449", - value = "helm_robe_raidwarlock_f_01_drf.m2", text = "helm_robe_raidwarlock_f_01_drf.m2", + value = "helm_robe_raidwarlock_f_01_drf.m2", }, { fileId = "142450", - value = "helm_robe_raidwarlock_f_01_drm.m2", text = "helm_robe_raidwarlock_f_01_drm.m2", + value = "helm_robe_raidwarlock_f_01_drm.m2", }, { fileId = "142451", - value = "helm_robe_raidwarlock_f_01_dwf.m2", text = "helm_robe_raidwarlock_f_01_dwf.m2", + value = "helm_robe_raidwarlock_f_01_dwf.m2", }, { fileId = "142452", - value = "helm_robe_raidwarlock_f_01_dwm.m2", text = "helm_robe_raidwarlock_f_01_dwm.m2", + value = "helm_robe_raidwarlock_f_01_dwm.m2", }, { fileId = "142453", - value = "helm_robe_raidwarlock_f_01_gnf.m2", text = "helm_robe_raidwarlock_f_01_gnf.m2", + value = "helm_robe_raidwarlock_f_01_gnf.m2", }, { fileId = "142454", - value = "helm_robe_raidwarlock_f_01_gnm.m2", text = "helm_robe_raidwarlock_f_01_gnm.m2", + value = "helm_robe_raidwarlock_f_01_gnm.m2", }, { fileId = "142455", - value = "helm_robe_raidwarlock_f_01_huf.m2", text = "helm_robe_raidwarlock_f_01_huf.m2", + value = "helm_robe_raidwarlock_f_01_huf.m2", }, { fileId = "142456", - value = "helm_robe_raidwarlock_f_01_hum.m2", text = "helm_robe_raidwarlock_f_01_hum.m2", + value = "helm_robe_raidwarlock_f_01_hum.m2", }, { fileId = "142457", - value = "helm_robe_raidwarlock_f_01_nif.m2", text = "helm_robe_raidwarlock_f_01_nif.m2", + value = "helm_robe_raidwarlock_f_01_nif.m2", }, { fileId = "142458", - value = "helm_robe_raidwarlock_f_01_nim.m2", text = "helm_robe_raidwarlock_f_01_nim.m2", + value = "helm_robe_raidwarlock_f_01_nim.m2", }, { fileId = "142459", - value = "helm_robe_raidwarlock_f_01_orf.m2", text = "helm_robe_raidwarlock_f_01_orf.m2", + value = "helm_robe_raidwarlock_f_01_orf.m2", }, { fileId = "142460", - value = "helm_robe_raidwarlock_f_01_orm.m2", text = "helm_robe_raidwarlock_f_01_orm.m2", + value = "helm_robe_raidwarlock_f_01_orm.m2", }, { fileId = "142461", - value = "helm_robe_raidwarlock_f_01_scf.m2", text = "helm_robe_raidwarlock_f_01_scf.m2", + value = "helm_robe_raidwarlock_f_01_scf.m2", }, { fileId = "142462", - value = "helm_robe_raidwarlock_f_01_scm.m2", text = "helm_robe_raidwarlock_f_01_scm.m2", + value = "helm_robe_raidwarlock_f_01_scm.m2", }, { fileId = "142463", - value = "helm_robe_raidwarlock_f_01_taf.m2", text = "helm_robe_raidwarlock_f_01_taf.m2", + value = "helm_robe_raidwarlock_f_01_taf.m2", }, { fileId = "142464", - value = "helm_robe_raidwarlock_f_01_tam.m2", text = "helm_robe_raidwarlock_f_01_tam.m2", + value = "helm_robe_raidwarlock_f_01_tam.m2", }, { fileId = "142465", - value = "helm_robe_raidwarlock_f_01_trf.m2", text = "helm_robe_raidwarlock_f_01_trf.m2", + value = "helm_robe_raidwarlock_f_01_trf.m2", }, { fileId = "142466", - value = "helm_robe_raidwarlock_f_01_trm.m2", text = "helm_robe_raidwarlock_f_01_trm.m2", + value = "helm_robe_raidwarlock_f_01_trm.m2", }, { fileId = "142497", - value = "helm_robe_sunwell_d_01_bef.m2", text = "helm_robe_sunwell_d_01_bef.m2", + value = "helm_robe_sunwell_d_01_bef.m2", }, { fileId = "142498", - value = "helm_robe_sunwell_d_01_bem.m2", text = "helm_robe_sunwell_d_01_bem.m2", + value = "helm_robe_sunwell_d_01_bem.m2", }, { fileId = "142499", - value = "helm_robe_sunwell_d_01_drf.m2", text = "helm_robe_sunwell_d_01_drf.m2", + value = "helm_robe_sunwell_d_01_drf.m2", }, { fileId = "142500", - value = "helm_robe_sunwell_d_01_drm.m2", text = "helm_robe_sunwell_d_01_drm.m2", + value = "helm_robe_sunwell_d_01_drm.m2", }, { fileId = "142501", - value = "helm_robe_sunwell_d_01_dwf.m2", text = "helm_robe_sunwell_d_01_dwf.m2", + value = "helm_robe_sunwell_d_01_dwf.m2", }, { fileId = "142502", - value = "helm_robe_sunwell_d_01_dwm.m2", text = "helm_robe_sunwell_d_01_dwm.m2", + value = "helm_robe_sunwell_d_01_dwm.m2", }, { fileId = "142503", - value = "helm_robe_sunwell_d_01_gnf.m2", text = "helm_robe_sunwell_d_01_gnf.m2", + value = "helm_robe_sunwell_d_01_gnf.m2", }, { fileId = "142504", - value = "helm_robe_sunwell_d_01_gnm.m2", text = "helm_robe_sunwell_d_01_gnm.m2", + value = "helm_robe_sunwell_d_01_gnm.m2", }, { fileId = "142505", - value = "helm_robe_sunwell_d_01_gof.m2", text = "helm_robe_sunwell_d_01_gof.m2", + value = "helm_robe_sunwell_d_01_gof.m2", }, { fileId = "142506", - value = "helm_robe_sunwell_d_01_gom.m2", text = "helm_robe_sunwell_d_01_gom.m2", + value = "helm_robe_sunwell_d_01_gom.m2", }, { fileId = "142507", - value = "helm_robe_sunwell_d_01_huf.m2", text = "helm_robe_sunwell_d_01_huf.m2", + value = "helm_robe_sunwell_d_01_huf.m2", }, { fileId = "142508", - value = "helm_robe_sunwell_d_01_hum.m2", text = "helm_robe_sunwell_d_01_hum.m2", + value = "helm_robe_sunwell_d_01_hum.m2", }, { fileId = "142509", - value = "helm_robe_sunwell_d_01_nif.m2", text = "helm_robe_sunwell_d_01_nif.m2", + value = "helm_robe_sunwell_d_01_nif.m2", }, { fileId = "142510", - value = "helm_robe_sunwell_d_01_nim.m2", text = "helm_robe_sunwell_d_01_nim.m2", + value = "helm_robe_sunwell_d_01_nim.m2", }, { fileId = "142511", - value = "helm_robe_sunwell_d_01_orf.m2", text = "helm_robe_sunwell_d_01_orf.m2", + value = "helm_robe_sunwell_d_01_orf.m2", }, { fileId = "142512", - value = "helm_robe_sunwell_d_01_orm.m2", text = "helm_robe_sunwell_d_01_orm.m2", + value = "helm_robe_sunwell_d_01_orm.m2", }, { fileId = "142513", - value = "helm_robe_sunwell_d_01_scf.m2", text = "helm_robe_sunwell_d_01_scf.m2", + value = "helm_robe_sunwell_d_01_scf.m2", }, { fileId = "142514", - value = "helm_robe_sunwell_d_01_scm.m2", text = "helm_robe_sunwell_d_01_scm.m2", + value = "helm_robe_sunwell_d_01_scm.m2", }, { fileId = "142515", - value = "helm_robe_sunwell_d_01_taf.m2", text = "helm_robe_sunwell_d_01_taf.m2", + value = "helm_robe_sunwell_d_01_taf.m2", }, { fileId = "142516", - value = "helm_robe_sunwell_d_01_tam.m2", text = "helm_robe_sunwell_d_01_tam.m2", + value = "helm_robe_sunwell_d_01_tam.m2", }, { fileId = "142517", - value = "helm_robe_sunwell_d_01_trf.m2", text = "helm_robe_sunwell_d_01_trf.m2", + value = "helm_robe_sunwell_d_01_trf.m2", }, { fileId = "142518", - value = "helm_robe_sunwell_d_01_trm.m2", text = "helm_robe_sunwell_d_01_trm.m2", + value = "helm_robe_sunwell_d_01_trm.m2", }, { fileId = "142527", - value = "helm_robe_zulaman_d_01_bef.m2", text = "helm_robe_zulaman_d_01_bef.m2", + value = "helm_robe_zulaman_d_01_bef.m2", }, { fileId = "142528", - value = "helm_robe_zulaman_d_01_bem.m2", text = "helm_robe_zulaman_d_01_bem.m2", + value = "helm_robe_zulaman_d_01_bem.m2", }, { fileId = "142529", - value = "helm_robe_zulaman_d_01_drf.m2", text = "helm_robe_zulaman_d_01_drf.m2", + value = "helm_robe_zulaman_d_01_drf.m2", }, { fileId = "142530", - value = "helm_robe_zulaman_d_01_drm.m2", text = "helm_robe_zulaman_d_01_drm.m2", + value = "helm_robe_zulaman_d_01_drm.m2", }, { fileId = "142531", - value = "helm_robe_zulaman_d_01_dwf.m2", text = "helm_robe_zulaman_d_01_dwf.m2", + value = "helm_robe_zulaman_d_01_dwf.m2", }, { fileId = "142532", - value = "helm_robe_zulaman_d_01_dwm.m2", text = "helm_robe_zulaman_d_01_dwm.m2", + value = "helm_robe_zulaman_d_01_dwm.m2", }, { fileId = "142533", - value = "helm_robe_zulaman_d_01_gnf.m2", text = "helm_robe_zulaman_d_01_gnf.m2", + value = "helm_robe_zulaman_d_01_gnf.m2", }, { fileId = "142534", - value = "helm_robe_zulaman_d_01_gnm.m2", text = "helm_robe_zulaman_d_01_gnm.m2", + value = "helm_robe_zulaman_d_01_gnm.m2", }, { fileId = "142535", - value = "helm_robe_zulaman_d_01_gof.m2", text = "helm_robe_zulaman_d_01_gof.m2", + value = "helm_robe_zulaman_d_01_gof.m2", }, { fileId = "142536", - value = "helm_robe_zulaman_d_01_gom.m2", text = "helm_robe_zulaman_d_01_gom.m2", + value = "helm_robe_zulaman_d_01_gom.m2", }, { fileId = "142537", - value = "helm_robe_zulaman_d_01_huf.m2", text = "helm_robe_zulaman_d_01_huf.m2", + value = "helm_robe_zulaman_d_01_huf.m2", }, { fileId = "142538", - value = "helm_robe_zulaman_d_01_hum.m2", text = "helm_robe_zulaman_d_01_hum.m2", + value = "helm_robe_zulaman_d_01_hum.m2", }, { fileId = "142539", - value = "helm_robe_zulaman_d_01_nif.m2", text = "helm_robe_zulaman_d_01_nif.m2", + value = "helm_robe_zulaman_d_01_nif.m2", }, { fileId = "142540", - value = "helm_robe_zulaman_d_01_nim.m2", text = "helm_robe_zulaman_d_01_nim.m2", + value = "helm_robe_zulaman_d_01_nim.m2", }, { fileId = "142541", - value = "helm_robe_zulaman_d_01_orf.m2", text = "helm_robe_zulaman_d_01_orf.m2", + value = "helm_robe_zulaman_d_01_orf.m2", }, { fileId = "142542", - value = "helm_robe_zulaman_d_01_orm.m2", text = "helm_robe_zulaman_d_01_orm.m2", + value = "helm_robe_zulaman_d_01_orm.m2", }, { fileId = "142543", - value = "helm_robe_zulaman_d_01_scf.m2", text = "helm_robe_zulaman_d_01_scf.m2", + value = "helm_robe_zulaman_d_01_scf.m2", }, { fileId = "142544", - value = "helm_robe_zulaman_d_01_scm.m2", text = "helm_robe_zulaman_d_01_scm.m2", + value = "helm_robe_zulaman_d_01_scm.m2", }, { fileId = "142545", - value = "helm_robe_zulaman_d_01_taf.m2", text = "helm_robe_zulaman_d_01_taf.m2", + value = "helm_robe_zulaman_d_01_taf.m2", }, { fileId = "142546", - value = "helm_robe_zulaman_d_01_tam.m2", text = "helm_robe_zulaman_d_01_tam.m2", + value = "helm_robe_zulaman_d_01_tam.m2", }, { fileId = "142547", - value = "helm_robe_zulaman_d_01_trf.m2", text = "helm_robe_zulaman_d_01_trf.m2", + value = "helm_robe_zulaman_d_01_trf.m2", }, { fileId = "142548", - value = "helm_robe_zulaman_d_01_trm.m2", text = "helm_robe_zulaman_d_01_trm.m2", + value = "helm_robe_zulaman_d_01_trm.m2", }, { fileId = "142552", - value = "helmet_robe_d_04_dwf.m2", text = "helmet_robe_d_04_dwf.m2", + value = "helmet_robe_d_04_dwf.m2", }, { fileId = "142553", - value = "helmet_robe_d_04_dwm.m2", text = "helmet_robe_d_04_dwm.m2", + value = "helmet_robe_d_04_dwm.m2", }, { fileId = "142554", - value = "helmet_robe_d_04_gnf.m2", text = "helmet_robe_d_04_gnf.m2", + value = "helmet_robe_d_04_gnf.m2", }, { fileId = "142555", - value = "helmet_robe_d_04_gnm.m2", text = "helmet_robe_d_04_gnm.m2", + value = "helmet_robe_d_04_gnm.m2", }, { fileId = "142556", - value = "helmet_robe_d_04_huf.m2", text = "helmet_robe_d_04_huf.m2", + value = "helmet_robe_d_04_huf.m2", }, { fileId = "142557", - value = "helmet_robe_d_04_hum.m2", text = "helmet_robe_d_04_hum.m2", + value = "helmet_robe_d_04_hum.m2", }, { fileId = "142558", - value = "helmet_robe_d_04_nif.m2", text = "helmet_robe_d_04_nif.m2", + value = "helmet_robe_d_04_nif.m2", }, { fileId = "142559", - value = "helmet_robe_d_04_nim.m2", text = "helmet_robe_d_04_nim.m2", + value = "helmet_robe_d_04_nim.m2", }, { fileId = "142560", - value = "helmet_robe_d_04_orf.m2", text = "helmet_robe_d_04_orf.m2", + value = "helmet_robe_d_04_orf.m2", }, { fileId = "142561", - value = "helmet_robe_d_04_orm.m2", text = "helmet_robe_d_04_orm.m2", + value = "helmet_robe_d_04_orm.m2", }, { fileId = "142562", - value = "helmet_robe_d_04_scf.m2", text = "helmet_robe_d_04_scf.m2", + value = "helmet_robe_d_04_scf.m2", }, { fileId = "142563", - value = "helmet_robe_d_04_scm.m2", text = "helmet_robe_d_04_scm.m2", + value = "helmet_robe_d_04_scm.m2", }, { fileId = "142564", - value = "helmet_robe_d_04_taf.m2", text = "helmet_robe_d_04_taf.m2", + value = "helmet_robe_d_04_taf.m2", }, { fileId = "142565", - value = "helmet_robe_d_04_tam.m2", text = "helmet_robe_d_04_tam.m2", + value = "helmet_robe_d_04_tam.m2", }, { fileId = "142566", - value = "helmet_robe_d_04_trf.m2", text = "helmet_robe_d_04_trf.m2", + value = "helmet_robe_d_04_trf.m2", }, { fileId = "142567", - value = "helmet_robe_d_04_trm.m2", text = "helmet_robe_d_04_trm.m2", + value = "helmet_robe_d_04_trm.m2", }, }, - value = "head", text = "head", + value = "head", }, { children = { { fileId = "2351788", - value = "pouch_alliance_a_01.m2", text = "pouch_alliance_a_01.m2", + value = "pouch_alliance_a_01.m2", }, { fileId = "2351697", - value = "pouch_alliance_a_02.m2", text = "pouch_alliance_a_02.m2", + value = "pouch_alliance_a_02.m2", }, { fileId = "2351743", - value = "pouch_horde_a_01.m2", text = "pouch_horde_a_01.m2", + value = "pouch_horde_a_01.m2", }, { fileId = "2351703", - value = "pouch_horde_a_02.m2", text = "pouch_horde_a_02.m2", + value = "pouch_horde_a_02.m2", }, }, - value = "pouch", text = "pouch", + value = "pouch", }, { children = { { fileId = "142631", - value = "quiver_a.m2", text = "quiver_a.m2", + value = "quiver_a.m2", }, { fileId = "142667", - value = "quiver_bolt_a_01.m2", text = "quiver_bolt_a_01.m2", + value = "quiver_bolt_a_01.m2", }, { fileId = "142693", - value = "quiver_horde_a_01.m2", text = "quiver_horde_a_01.m2", + value = "quiver_horde_a_01.m2", }, }, - value = "quiver", text = "quiver", + value = "quiver", }, { children = { { fileId = "142733", - value = "buckler_damaged_a_01.m2", text = "buckler_damaged_a_01.m2", + value = "buckler_damaged_a_01.m2", }, { fileId = "142737", - value = "buckler_damaged_a_02.m2", text = "buckler_damaged_a_02.m2", + value = "buckler_damaged_a_02.m2", }, { fileId = "142741", - value = "buckler_oval_a_01.m2", text = "buckler_oval_a_01.m2", + value = "buckler_oval_a_01.m2", }, { fileId = "142745", - value = "buckler_round_a_01.m2", text = "buckler_round_a_01.m2", + value = "buckler_round_a_01.m2", }, { fileId = "142754", - value = "shield_2h_outlandraid_d_01.m2", text = "shield_2h_outlandraid_d_01.m2", + value = "shield_2h_outlandraid_d_01.m2", }, { fileId = "142756", - value = "shield_2h_outlandraid_d_02.m2", text = "shield_2h_outlandraid_d_02.m2", + value = "shield_2h_outlandraid_d_02.m2", }, { fileId = "142758", - value = "shield_2h_outlandraid_d_03.m2", text = "shield_2h_outlandraid_d_03.m2", + value = "shield_2h_outlandraid_d_03.m2", }, { fileId = "142760", - value = "shield_2h_outlandraid_d_04.m2", text = "shield_2h_outlandraid_d_04.m2", + value = "shield_2h_outlandraid_d_04.m2", }, { fileId = "142762", - value = "shield_2h_outlandraid_d_05.m2", text = "shield_2h_outlandraid_d_05.m2", + value = "shield_2h_outlandraid_d_05.m2", }, { fileId = "142765", - value = "shield_2h_outlandraid_d_06.m2", text = "shield_2h_outlandraid_d_06.m2", + value = "shield_2h_outlandraid_d_06.m2", }, { fileId = "142767", - value = "shield_2h_outlandraid_d_07.m2", text = "shield_2h_outlandraid_d_07.m2", + value = "shield_2h_outlandraid_d_07.m2", }, { fileId = "142772", - value = "shield_2h_outlandraid_d_08.m2", text = "shield_2h_outlandraid_d_08.m2", + value = "shield_2h_outlandraid_d_08.m2", }, { fileId = "142779", - value = "shield_ahnqiraj_d_01.m2", text = "shield_ahnqiraj_d_01.m2", + value = "shield_ahnqiraj_d_01.m2", }, { fileId = "142781", - value = "shield_ahnqiraj_d_02.m2", text = "shield_ahnqiraj_d_02.m2", + value = "shield_ahnqiraj_d_02.m2", }, { fileId = "142783", - value = "shield_ahnqiraj_d_03.m2", text = "shield_ahnqiraj_d_03.m2", + value = "shield_ahnqiraj_d_03.m2", }, { fileId = "142785", - value = "shield_blackwing_drakeadon.m2", text = "shield_blackwing_drakeadon.m2", + value = "shield_blackwing_drakeadon.m2", }, { fileId = "142787", - value = "shield_blackwing_reddragon.m2", text = "shield_blackwing_reddragon.m2", + value = "shield_blackwing_reddragon.m2", }, { fileId = "142789", - value = "shield_blood_a_01.m2", text = "shield_blood_a_01.m2", + value = "shield_blood_a_01.m2", }, { fileId = "142791", - value = "shield_blood_a_02.m2", text = "shield_blood_a_02.m2", + value = "shield_blood_a_02.m2", }, { fileId = "142793", - value = "shield_blood_a_03.m2", text = "shield_blood_a_03.m2", + value = "shield_blood_a_03.m2", }, { fileId = "142795", - value = "shield_bloodknight_b_01.m2", text = "shield_bloodknight_b_01.m2", + value = "shield_bloodknight_b_01.m2", }, { fileId = "142797", - value = "shield_bloodknight_d_01.m2", text = "shield_bloodknight_d_01.m2", + value = "shield_bloodknight_d_01.m2", }, { fileId = "142804", - value = "shield_crest_a_01.m2", text = "shield_crest_a_01.m2", + value = "shield_crest_a_01.m2", }, { fileId = "142809", - value = "shield_crest_a_02.m2", text = "shield_crest_a_02.m2", + value = "shield_crest_a_02.m2", }, { fileId = "142813", - value = "shield_crest_b_01.m2", text = "shield_crest_b_01.m2", + value = "shield_crest_b_01.m2", }, { fileId = "142816", - value = "shield_crest_b_02.m2", text = "shield_crest_b_02.m2", + value = "shield_crest_b_02.m2", }, { fileId = "142826", - value = "shield_crest_b_03.m2", text = "shield_crest_b_03.m2", + value = "shield_crest_b_03.m2", }, { fileId = "142849", - value = "shield_draenei_a_01.m2", text = "shield_draenei_a_01.m2", + value = "shield_draenei_a_01.m2", }, { fileId = "142855", - value = "shield_draenei_a_02.m2", text = "shield_draenei_a_02.m2", + value = "shield_draenei_a_02.m2", }, { fileId = "142867", - value = "shield_engineer_a_01.m2", text = "shield_engineer_a_01.m2", + value = "shield_engineer_a_01.m2", }, { fileId = "142869", - value = "shield_engineer_b_01.m2", text = "shield_engineer_b_01.m2", + value = "shield_engineer_b_01.m2", }, { fileId = "142871", - value = "shield_engineer_c_01.m2", text = "shield_engineer_c_01.m2", + value = "shield_engineer_c_01.m2", }, { fileId = "142873", - value = "shield_epic_a_01.m2", text = "shield_epic_a_01.m2", + value = "shield_epic_a_01.m2", }, { fileId = "142875", - value = "shield_epic_a_02.m2", text = "shield_epic_a_02.m2", + value = "shield_epic_a_02.m2", }, { fileId = "142876", - value = "shield_epic_b_01.m2", text = "shield_epic_b_01.m2", + value = "shield_epic_b_01.m2", }, { fileId = "142878", - value = "shield_horde_a_01.m2", text = "shield_horde_a_01.m2", + value = "shield_horde_a_01.m2", }, { fileId = "142885", - value = "shield_horde_a_02.m2", text = "shield_horde_a_02.m2", + value = "shield_horde_a_02.m2", }, { fileId = "142893", - value = "shield_horde_a_03.m2", text = "shield_horde_a_03.m2", + value = "shield_horde_a_03.m2", }, { fileId = "142900", - value = "shield_horde_a_04.m2", text = "shield_horde_a_04.m2", + value = "shield_horde_a_04.m2", }, { fileId = "142907", - value = "shield_horde_b_01.m2", text = "shield_horde_b_01.m2", + value = "shield_horde_b_01.m2", }, { fileId = "142909", - value = "shield_horde_b_02.m2", text = "shield_horde_b_02.m2", + value = "shield_horde_b_02.m2", }, { fileId = "142911", - value = "shield_horde_b_03.m2", text = "shield_horde_b_03.m2", + value = "shield_horde_b_03.m2", }, { fileId = "142914", - value = "shield_horde_b_04.m2", text = "shield_horde_b_04.m2", + value = "shield_horde_b_04.m2", }, { fileId = "142916", - value = "shield_horde_c_02.m2", text = "shield_horde_c_02.m2", + value = "shield_horde_c_02.m2", }, { fileId = "142918", - value = "shield_horde_c_03.m2", text = "shield_horde_c_03.m2", + value = "shield_horde_c_03.m2", }, { fileId = "142920", - value = "shield_hyjal_d_01.m2", text = "shield_hyjal_d_01.m2", + value = "shield_hyjal_d_01.m2", }, { fileId = "142924", - value = "shield_hyjal_d_02.m2", text = "shield_hyjal_d_02.m2", + value = "shield_hyjal_d_02.m2", }, { fileId = "142930", - value = "shield_hyjal_d_03.m2", text = "shield_hyjal_d_03.m2", + value = "shield_hyjal_d_03.m2", }, { fileId = "142934", - value = "shield_illidan_d_01.m2", text = "shield_illidan_d_01.m2", + value = "shield_illidan_d_01.m2", }, { fileId = "142939", - value = "shield_lion_a_01.m2", text = "shield_lion_a_01.m2", + value = "shield_lion_a_01.m2", }, { fileId = "142940", - value = "shield_militia_a_01.m2", text = "shield_militia_a_01.m2", + value = "shield_militia_a_01.m2", }, { fileId = "142946", - value = "shield_naxxramas_d_01.m2", text = "shield_naxxramas_d_01.m2", + value = "shield_naxxramas_d_01.m2", }, { fileId = "142948", - value = "shield_naxxramas_d_02.m2", text = "shield_naxxramas_d_02.m2", + value = "shield_naxxramas_d_02.m2", }, { fileId = "142950", - value = "shield_naxxramas_d_03.m2", text = "shield_naxxramas_d_03.m2", + value = "shield_naxxramas_d_03.m2", }, { fileId = "142979", - value = "shield_northrend_d_01.m2", text = "shield_northrend_d_01.m2", + value = "shield_northrend_d_01.m2", }, { fileId = "142984", - value = "shield_oval_a_01.m2", text = "shield_oval_a_01.m2", + value = "shield_oval_a_01.m2", }, { fileId = "142989", - value = "shield_pvpalliance_a_01.m2", text = "shield_pvpalliance_a_01.m2", + value = "shield_pvpalliance_a_01.m2", }, { fileId = "142991", - value = "shield_pvphorde_a_01.m2", text = "shield_pvphorde_a_01.m2", + value = "shield_pvphorde_a_01.m2", }, { fileId = "142992", - value = "shield_rectangle_a_01.m2", text = "shield_rectangle_a_01.m2", + value = "shield_rectangle_a_01.m2", }, { fileId = "142997", - value = "shield_rectangle_b_01.m2", text = "shield_rectangle_b_01.m2", + value = "shield_rectangle_b_01.m2", }, { fileId = "143001", - value = "shield_round_a_01.m2", text = "shield_round_a_01.m2", + value = "shield_round_a_01.m2", }, { fileId = "143005", - value = "shield_round_b_01.m2", text = "shield_round_b_01.m2", + value = "shield_round_b_01.m2", }, { fileId = "143029", - value = "shield_stratholme_d_01.m2", text = "shield_stratholme_d_01.m2", + value = "shield_stratholme_d_01.m2", }, { fileId = "143031", - value = "shield_stratholme_d_02.m2", text = "shield_stratholme_d_02.m2", + value = "shield_stratholme_d_02.m2", }, { fileId = "143032", - value = "shield_sunshatter_d_01.m2", text = "shield_sunshatter_d_01.m2", + value = "shield_sunshatter_d_01.m2", }, { fileId = "143038", - value = "shield_sunwell_d_01.m2", text = "shield_sunwell_d_01.m2", + value = "shield_sunwell_d_01.m2", }, { fileId = "143043", - value = "shield_sunwell_d_02.m2", text = "shield_sunwell_d_02.m2", + value = "shield_sunwell_d_02.m2", }, { fileId = "143047", - value = "shield_sunwell_d_03.m2", text = "shield_sunwell_d_03.m2", + value = "shield_sunwell_d_03.m2", }, { fileId = "143063", - value = "shield_wheel_b_01.m2", text = "shield_wheel_b_01.m2", + value = "shield_wheel_b_01.m2", }, { fileId = "143065", - value = "shield_zulaman_d_01.m2", text = "shield_zulaman_d_01.m2", + value = "shield_zulaman_d_01.m2", }, { fileId = "143069", - value = "shield_zulaman_d_02.m2", text = "shield_zulaman_d_02.m2", + value = "shield_zulaman_d_02.m2", }, { fileId = "143075", - value = "shield_zulgurub_d_01.m2", text = "shield_zulgurub_d_01.m2", + value = "shield_zulgurub_d_01.m2", }, { fileId = "143077", - value = "shield_zulgurub_d_02.m2", text = "shield_zulgurub_d_02.m2", + value = "shield_zulgurub_d_02.m2", }, }, - value = "shield", text = "shield", + value = "shield", }, { children = { { fileId = "143132", - value = "lshoulder_leather_a_01.m2", text = "lshoulder_leather_a_01.m2", + value = "lshoulder_leather_a_01.m2", }, { fileId = "143133", - value = "lshoulder_leather_a_02.m2", text = "lshoulder_leather_a_02.m2", + value = "lshoulder_leather_a_02.m2", }, { fileId = "143134", - value = "lshoulder_leather_a_03.m2", text = "lshoulder_leather_a_03.m2", + value = "lshoulder_leather_a_03.m2", }, { fileId = "143135", - value = "lshoulder_leather_a_03defias.m2", text = "lshoulder_leather_a_03defias.m2", + value = "lshoulder_leather_a_03defias.m2", }, { fileId = "143136", - value = "lshoulder_leather_a_04.m2", text = "lshoulder_leather_a_04.m2", + value = "lshoulder_leather_a_04.m2", }, { fileId = "143137", - value = "lshoulder_leather_a_05.m2", text = "lshoulder_leather_a_05.m2", + value = "lshoulder_leather_a_05.m2", }, { fileId = "143138", - value = "lshoulder_leather_ahnqiraj_a_01.m2", text = "lshoulder_leather_ahnqiraj_a_01.m2", + value = "lshoulder_leather_ahnqiraj_a_01.m2", }, { fileId = "143139", - value = "lshoulder_leather_b_01.m2", text = "lshoulder_leather_b_01.m2", + value = "lshoulder_leather_b_01.m2", }, { fileId = "143140", - value = "lshoulder_leather_b_02.m2", text = "lshoulder_leather_b_02.m2", + value = "lshoulder_leather_b_02.m2", }, { fileId = "143141", - value = "lshoulder_leather_b_03.m2", text = "lshoulder_leather_b_03.m2", + value = "lshoulder_leather_b_03.m2", }, { fileId = "143142", - value = "lshoulder_leather_b_04.m2", text = "lshoulder_leather_b_04.m2", + value = "lshoulder_leather_b_04.m2", }, { fileId = "143143", - value = "lshoulder_leather_blood_b_01.m2", text = "lshoulder_leather_blood_b_01.m2", + value = "lshoulder_leather_blood_b_01.m2", }, { fileId = "143144", - value = "lshoulder_leather_c_01.m2", text = "lshoulder_leather_c_01.m2", + value = "lshoulder_leather_c_01.m2", }, { fileId = "143145", - value = "lshoulder_leather_c_02.m2", text = "lshoulder_leather_c_02.m2", + value = "lshoulder_leather_c_02.m2", }, { fileId = "143146", - value = "lshoulder_leather_c_03.m2", text = "lshoulder_leather_c_03.m2", + value = "lshoulder_leather_c_03.m2", }, { fileId = "143147", - value = "lshoulder_leather_d_01.m2", text = "lshoulder_leather_d_01.m2", + value = "lshoulder_leather_d_01.m2", }, { fileId = "143148", - value = "lshoulder_leather_d_02.m2", text = "lshoulder_leather_d_02.m2", + value = "lshoulder_leather_d_02.m2", }, { fileId = "143149", - value = "lshoulder_leather_d_03.m2", text = "lshoulder_leather_d_03.m2", + value = "lshoulder_leather_d_03.m2", }, { fileId = "143150", - value = "lshoulder_leather_draenei_b_01.m2", text = "lshoulder_leather_draenei_b_01.m2", + value = "lshoulder_leather_draenei_b_01.m2", }, { fileId = "143151", - value = "lshoulder_leather_draenei_b_02.m2", text = "lshoulder_leather_draenei_b_02.m2", + value = "lshoulder_leather_draenei_b_02.m2", }, { fileId = "143152", - value = "lshoulder_leather_dungeondruid_a_01.m2", text = "lshoulder_leather_dungeondruid_a_01.m2", + value = "lshoulder_leather_dungeondruid_a_01.m2", }, { fileId = "143153", - value = "lshoulder_leather_dungeondruid_b_01.m2", text = "lshoulder_leather_dungeondruid_b_01.m2", + value = "lshoulder_leather_dungeondruid_b_01.m2", }, { fileId = "2199316", - value = "lshoulder_leather_dungeonhunter_a_01.m2", text = "lshoulder_leather_dungeonhunter_a_01.m2", + value = "lshoulder_leather_dungeonhunter_a_01.m2", }, { fileId = "143155", - value = "lshoulder_leather_dungeonrogue_b_01.m2", text = "lshoulder_leather_dungeonrogue_b_01.m2", + value = "lshoulder_leather_dungeonrogue_b_01.m2", }, { fileId = "143156", - value = "lshoulder_leather_horde_a_05.m2", text = "lshoulder_leather_horde_a_05.m2", + value = "lshoulder_leather_horde_a_05.m2", }, { fileId = "143157", - value = "lshoulder_leather_horde_b_03.m2", text = "lshoulder_leather_horde_b_03.m2", + value = "lshoulder_leather_horde_b_03.m2", }, { fileId = "143164", - value = "lshoulder_leather_pvpalliance_a_01.m2", text = "lshoulder_leather_pvpalliance_a_01.m2", + value = "lshoulder_leather_pvpalliance_a_01.m2", }, { fileId = "143165", - value = "lshoulder_leather_pvphorde_a_01.m2", text = "lshoulder_leather_pvphorde_a_01.m2", + value = "lshoulder_leather_pvphorde_a_01.m2", }, { fileId = "143166", - value = "lshoulder_leather_pvphorde_c_01.m2", text = "lshoulder_leather_pvphorde_c_01.m2", + value = "lshoulder_leather_pvphorde_c_01.m2", }, { fileId = "143167", - value = "lshoulder_leather_raiddruid_a_01.m2", text = "lshoulder_leather_raiddruid_a_01.m2", + value = "lshoulder_leather_raiddruid_a_01.m2", }, { fileId = "143168", - value = "lshoulder_leather_raiddruid_b_01.m2", text = "lshoulder_leather_raiddruid_b_01.m2", + value = "lshoulder_leather_raiddruid_b_01.m2", }, { fileId = "143169", - value = "lshoulder_leather_raiddruid_c_01.m2", text = "lshoulder_leather_raiddruid_c_01.m2", + value = "lshoulder_leather_raiddruid_c_01.m2", }, { fileId = "143170", - value = "lshoulder_leather_raiddruid_d_01.m2", text = "lshoulder_leather_raiddruid_d_01.m2", + value = "lshoulder_leather_raiddruid_d_01.m2", }, { fileId = "143171", - value = "lshoulder_leather_raiddruid_e_01.m2", text = "lshoulder_leather_raiddruid_e_01.m2", + value = "lshoulder_leather_raiddruid_e_01.m2", }, { fileId = "143172", - value = "lshoulder_leather_raiddruid_f_01.m2", text = "lshoulder_leather_raiddruid_f_01.m2", + value = "lshoulder_leather_raiddruid_f_01.m2", }, { fileId = "143173", - value = "lshoulder_leather_raidrogue_a_01.m2", text = "lshoulder_leather_raidrogue_a_01.m2", + value = "lshoulder_leather_raidrogue_a_01.m2", }, { fileId = "143174", - value = "lshoulder_leather_raidrogue_b_01.m2", text = "lshoulder_leather_raidrogue_b_01.m2", + value = "lshoulder_leather_raidrogue_b_01.m2", }, { fileId = "143175", - value = "lshoulder_leather_raidrogue_c_01.m2", text = "lshoulder_leather_raidrogue_c_01.m2", + value = "lshoulder_leather_raidrogue_c_01.m2", }, { fileId = "143176", - value = "lshoulder_leather_raidrogue_d_01.m2", text = "lshoulder_leather_raidrogue_d_01.m2", + value = "lshoulder_leather_raidrogue_d_01.m2", }, { fileId = "143177", - value = "lshoulder_leather_raidrogue_e_01.m2", text = "lshoulder_leather_raidrogue_e_01.m2", + value = "lshoulder_leather_raidrogue_e_01.m2", }, { fileId = "143178", - value = "lshoulder_leather_raidrogue_f_01.m2", text = "lshoulder_leather_raidrogue_f_01.m2", + value = "lshoulder_leather_raidrogue_f_01.m2", }, { fileId = "143180", - value = "lshoulder_leather_sunwell_d_01.m2", text = "lshoulder_leather_sunwell_d_01.m2", + value = "lshoulder_leather_sunwell_d_01.m2", }, { fileId = "143181", - value = "lshoulder_leather_zulaman_d_01.m2", text = "lshoulder_leather_zulaman_d_01.m2", + value = "lshoulder_leather_zulaman_d_01.m2", }, { fileId = "143182", - value = "lshoulder_leather_zulaman_d_03.m2", text = "lshoulder_leather_zulaman_d_03.m2", + value = "lshoulder_leather_zulaman_d_03.m2", }, { fileId = "143183", - value = "lshoulder_mail_a_01.m2", text = "lshoulder_mail_a_01.m2", + value = "lshoulder_mail_a_01.m2", }, { fileId = "143184", - value = "lshoulder_mail_a_02.m2", text = "lshoulder_mail_a_02.m2", + value = "lshoulder_mail_a_02.m2", }, { fileId = "143185", - value = "lshoulder_mail_a_03.m2", text = "lshoulder_mail_a_03.m2", + value = "lshoulder_mail_a_03.m2", }, { fileId = "143186", - value = "lshoulder_mail_ahnqiraj_a_01.m2", text = "lshoulder_mail_ahnqiraj_a_01.m2", + value = "lshoulder_mail_ahnqiraj_a_01.m2", }, { fileId = "143187", - value = "lshoulder_mail_b_01.m2", text = "lshoulder_mail_b_01.m2", + value = "lshoulder_mail_b_01.m2", }, { fileId = "143188", - value = "lshoulder_mail_b_02.m2", text = "lshoulder_mail_b_02.m2", + value = "lshoulder_mail_b_02.m2", }, { fileId = "143189", - value = "lshoulder_mail_b_03.m2", text = "lshoulder_mail_b_03.m2", + value = "lshoulder_mail_b_03.m2", }, { fileId = "143190", - value = "lshoulder_mail_b_05.m2", text = "lshoulder_mail_b_05.m2", + value = "lshoulder_mail_b_05.m2", }, { fileId = "143191", - value = "lshoulder_mail_blood_b_01.m2", text = "lshoulder_mail_blood_b_01.m2", + value = "lshoulder_mail_blood_b_01.m2", }, { fileId = "143192", - value = "lshoulder_mail_c_01.m2", text = "lshoulder_mail_c_01.m2", + value = "lshoulder_mail_c_01.m2", }, { fileId = "143193", - value = "lshoulder_mail_c_02.m2", text = "lshoulder_mail_c_02.m2", + value = "lshoulder_mail_c_02.m2", }, { fileId = "143194", - value = "lshoulder_mail_c_03.m2", text = "lshoulder_mail_c_03.m2", + value = "lshoulder_mail_c_03.m2", }, { fileId = "143195", - value = "lshoulder_mail_c_04.m2", text = "lshoulder_mail_c_04.m2", + value = "lshoulder_mail_c_04.m2", }, { fileId = "143196", - value = "lshoulder_mail_d_01.m2", text = "lshoulder_mail_d_01.m2", + value = "lshoulder_mail_d_01.m2", }, { fileId = "143197", - value = "lshoulder_mail_d_02.m2", text = "lshoulder_mail_d_02.m2", + value = "lshoulder_mail_d_02.m2", }, { fileId = "143198", - value = "lshoulder_mail_draenei_b_01.m2", text = "lshoulder_mail_draenei_b_01.m2", + value = "lshoulder_mail_draenei_b_01.m2", }, { fileId = "143199", - value = "lshoulder_mail_draenei_b_02.m2", text = "lshoulder_mail_draenei_b_02.m2", + value = "lshoulder_mail_draenei_b_02.m2", }, { fileId = "143200", - value = "lshoulder_mail_dungeonhunter_a_01.m2", text = "lshoulder_mail_dungeonhunter_a_01.m2", + value = "lshoulder_mail_dungeonhunter_a_01.m2", }, { fileId = "143201", - value = "lshoulder_mail_dungeonhunter_b_02.m2", text = "lshoulder_mail_dungeonhunter_b_02.m2", + value = "lshoulder_mail_dungeonhunter_b_02.m2", }, { fileId = "143202", - value = "lshoulder_mail_dungeonshaman_a_01.m2", text = "lshoulder_mail_dungeonshaman_a_01.m2", + value = "lshoulder_mail_dungeonshaman_a_01.m2", }, { fileId = "143203", - value = "lshoulder_mail_dungeonshaman_b_01.m2", text = "lshoulder_mail_dungeonshaman_b_01.m2", + value = "lshoulder_mail_dungeonshaman_b_01.m2", }, { fileId = "143209", - value = "lshoulder_mail_pvpalliance_a_01.m2", text = "lshoulder_mail_pvpalliance_a_01.m2", + value = "lshoulder_mail_pvpalliance_a_01.m2", }, { fileId = "143210", - value = "lshoulder_mail_pvpalliance_c_01.m2", text = "lshoulder_mail_pvpalliance_c_01.m2", + value = "lshoulder_mail_pvpalliance_c_01.m2", }, { fileId = "143211", - value = "lshoulder_mail_pvphorde_a_01.m2", text = "lshoulder_mail_pvphorde_a_01.m2", + value = "lshoulder_mail_pvphorde_a_01.m2", }, { fileId = "143212", - value = "lshoulder_mail_pvphorde_c_01.m2", text = "lshoulder_mail_pvphorde_c_01.m2", + value = "lshoulder_mail_pvphorde_c_01.m2", }, { fileId = "143213", - value = "lshoulder_mail_raidhunter_a_01.m2", text = "lshoulder_mail_raidhunter_a_01.m2", + value = "lshoulder_mail_raidhunter_a_01.m2", }, { fileId = "143214", - value = "lshoulder_mail_raidhunter_b_01.m2", text = "lshoulder_mail_raidhunter_b_01.m2", + value = "lshoulder_mail_raidhunter_b_01.m2", }, { fileId = "143215", - value = "lshoulder_mail_raidhunter_c_01.m2", text = "lshoulder_mail_raidhunter_c_01.m2", + value = "lshoulder_mail_raidhunter_c_01.m2", }, { fileId = "143216", - value = "lshoulder_mail_raidhunter_d_01.m2", text = "lshoulder_mail_raidhunter_d_01.m2", + value = "lshoulder_mail_raidhunter_d_01.m2", }, { fileId = "143217", - value = "lshoulder_mail_raidhunter_e_01.m2", text = "lshoulder_mail_raidhunter_e_01.m2", + value = "lshoulder_mail_raidhunter_e_01.m2", }, { fileId = "143218", - value = "lshoulder_mail_raidhunter_f_01.m2", text = "lshoulder_mail_raidhunter_f_01.m2", + value = "lshoulder_mail_raidhunter_f_01.m2", }, { fileId = "143220", - value = "lshoulder_mail_raidshaman_a_01.m2", text = "lshoulder_mail_raidshaman_a_01.m2", + value = "lshoulder_mail_raidshaman_a_01.m2", }, { fileId = "143221", - value = "lshoulder_mail_raidshaman_b_01.m2", text = "lshoulder_mail_raidshaman_b_01.m2", + value = "lshoulder_mail_raidshaman_b_01.m2", }, { fileId = "143222", - value = "lshoulder_mail_raidshaman_d_01.m2", text = "lshoulder_mail_raidshaman_d_01.m2", + value = "lshoulder_mail_raidshaman_d_01.m2", }, { fileId = "143223", - value = "lshoulder_mail_raidshaman_e_01.m2", text = "lshoulder_mail_raidshaman_e_01.m2", + value = "lshoulder_mail_raidshaman_e_01.m2", }, { fileId = "143224", - value = "lshoulder_mail_raidshaman_f_01.m2", text = "lshoulder_mail_raidshaman_f_01.m2", + value = "lshoulder_mail_raidshaman_f_01.m2", }, { fileId = "143225", - value = "lshoulder_mail_sunwell_d_01.m2", text = "lshoulder_mail_sunwell_d_01.m2", + value = "lshoulder_mail_sunwell_d_01.m2", }, { fileId = "143226", - value = "lshoulder_mail_zulaman_d_01.m2", text = "lshoulder_mail_zulaman_d_01.m2", + value = "lshoulder_mail_zulaman_d_01.m2", }, { fileId = "143227", - value = "lshoulder_mail_zulaman_d_03.m2", text = "lshoulder_mail_zulaman_d_03.m2", + value = "lshoulder_mail_zulaman_d_03.m2", }, { fileId = "143228", - value = "lshoulder_plate_a_01.m2", text = "lshoulder_plate_a_01.m2", + value = "lshoulder_plate_a_01.m2", }, { fileId = "143229", - value = "lshoulder_plate_a_02.m2", text = "lshoulder_plate_a_02.m2", + value = "lshoulder_plate_a_02.m2", }, { fileId = "143230", - value = "lshoulder_plate_a_02ironforgeguard.m2", text = "lshoulder_plate_a_02ironforgeguard.m2", + value = "lshoulder_plate_a_02ironforgeguard.m2", }, { fileId = "143231", - value = "lshoulder_plate_a_03.m2", text = "lshoulder_plate_a_03.m2", + value = "lshoulder_plate_a_03.m2", }, { fileId = "143232", - value = "lshoulder_plate_a_04.m2", text = "lshoulder_plate_a_04.m2", + value = "lshoulder_plate_a_04.m2", }, { fileId = "143233", - value = "lshoulder_plate_a_05.m2", text = "lshoulder_plate_a_05.m2", + value = "lshoulder_plate_a_05.m2", }, { fileId = "143234", - value = "lshoulder_plate_ahnqiraj_a_01.m2", text = "lshoulder_plate_ahnqiraj_a_01.m2", + value = "lshoulder_plate_ahnqiraj_a_01.m2", }, { fileId = "143235", - value = "lshoulder_plate_b_01.m2", text = "lshoulder_plate_b_01.m2", + value = "lshoulder_plate_b_01.m2", }, { fileId = "143236", - value = "lshoulder_plate_b_02.m2", text = "lshoulder_plate_b_02.m2", + value = "lshoulder_plate_b_02.m2", }, { fileId = "143237", - value = "lshoulder_plate_b_03.m2", text = "lshoulder_plate_b_03.m2", + value = "lshoulder_plate_b_03.m2", }, { fileId = "143238", - value = "lshoulder_plate_b_04.m2", text = "lshoulder_plate_b_04.m2", + value = "lshoulder_plate_b_04.m2", }, { fileId = "143239", - value = "lshoulder_plate_b_05.m2", text = "lshoulder_plate_b_05.m2", + value = "lshoulder_plate_b_05.m2", }, { fileId = "143240", - value = "lshoulder_plate_bloodknight_d_02.m2", text = "lshoulder_plate_bloodknight_d_02.m2", + value = "lshoulder_plate_bloodknight_d_02.m2", }, { fileId = "143241", - value = "lshoulder_plate_c_01.m2", text = "lshoulder_plate_c_01.m2", + value = "lshoulder_plate_c_01.m2", }, { fileId = "143242", - value = "lshoulder_plate_c_03.m2", text = "lshoulder_plate_c_03.m2", + value = "lshoulder_plate_c_03.m2", }, { fileId = "143243", - value = "lshoulder_plate_c_04.m2", text = "lshoulder_plate_c_04.m2", + value = "lshoulder_plate_c_04.m2", }, { fileId = "143244", - value = "lshoulder_plate_c_05.m2", text = "lshoulder_plate_c_05.m2", + value = "lshoulder_plate_c_05.m2", }, { fileId = "143245", - value = "lshoulder_plate_d_01.m2", text = "lshoulder_plate_d_01.m2", + value = "lshoulder_plate_d_01.m2", }, { fileId = "143246", - value = "lshoulder_plate_d_02.m2", text = "lshoulder_plate_d_02.m2", + value = "lshoulder_plate_d_02.m2", }, { fileId = "143247", - value = "lshoulder_plate_d_03.m2", text = "lshoulder_plate_d_03.m2", + value = "lshoulder_plate_d_03.m2", }, { fileId = "143248", - value = "lshoulder_plate_d_04.m2", text = "lshoulder_plate_d_04.m2", + value = "lshoulder_plate_d_04.m2", }, { fileId = "143249", - value = "lshoulder_plate_d_05.m2", text = "lshoulder_plate_d_05.m2", + value = "lshoulder_plate_d_05.m2", }, { fileId = "143250", - value = "lshoulder_plate_d_06.m2", text = "lshoulder_plate_d_06.m2", + value = "lshoulder_plate_d_06.m2", }, { fileId = "143251", - value = "lshoulder_plate_draeneiguard_a_01.m2", text = "lshoulder_plate_draeneiguard_a_01.m2", + value = "lshoulder_plate_draeneiguard_a_01.m2", }, { fileId = "143252", - value = "lshoulder_plate_draeneiguard_b_01.m2", text = "lshoulder_plate_draeneiguard_b_01.m2", + value = "lshoulder_plate_draeneiguard_b_01.m2", }, { fileId = "143253", - value = "lshoulder_plate_dungeonpaladin_a_01.m2", text = "lshoulder_plate_dungeonpaladin_a_01.m2", + value = "lshoulder_plate_dungeonpaladin_a_01.m2", }, { fileId = "143254", - value = "lshoulder_plate_dungeonpaladin_b_01.m2", text = "lshoulder_plate_dungeonpaladin_b_01.m2", + value = "lshoulder_plate_dungeonpaladin_b_01.m2", }, { fileId = "143256", - value = "lshoulder_plate_dungeonwarrior_a_01.m2", text = "lshoulder_plate_dungeonwarrior_a_01.m2", + value = "lshoulder_plate_dungeonwarrior_a_01.m2", }, { fileId = "143257", - value = "lshoulder_plate_dungeonwarrior_b_01.m2", text = "lshoulder_plate_dungeonwarrior_b_01.m2", + value = "lshoulder_plate_dungeonwarrior_b_01.m2", }, { fileId = "143258", - value = "lshoulder_plate_haremmatron_d_01.m2", text = "lshoulder_plate_haremmatron_d_01.m2", + value = "lshoulder_plate_haremmatron_d_01.m2", }, { fileId = "143259", - value = "lshoulder_plate_horde_c_05.m2", text = "lshoulder_plate_horde_c_05.m2", + value = "lshoulder_plate_horde_c_05.m2", }, { fileId = "143260", - value = "lshoulder_plate_horde_d_02.m2", text = "lshoulder_plate_horde_d_02.m2", + value = "lshoulder_plate_horde_d_02.m2", }, { fileId = "143262", - value = "lshoulder_plate_hyjal_d_04.m2", text = "lshoulder_plate_hyjal_d_04.m2", + value = "lshoulder_plate_hyjal_d_04.m2", }, { fileId = "143265", - value = "lshoulder_plate_hyjal_d_05.m2", text = "lshoulder_plate_hyjal_d_05.m2", + value = "lshoulder_plate_hyjal_d_05.m2", }, { fileId = "143271", - value = "lshoulder_plate_pvpalliance_a_01.m2", text = "lshoulder_plate_pvpalliance_a_01.m2", + value = "lshoulder_plate_pvpalliance_a_01.m2", }, { fileId = "143272", - value = "lshoulder_plate_pvphorde_a_01.m2", text = "lshoulder_plate_pvphorde_a_01.m2", + value = "lshoulder_plate_pvphorde_a_01.m2", }, { fileId = "143274", - value = "lshoulder_plate_raidpaladin_a_01.m2", text = "lshoulder_plate_raidpaladin_a_01.m2", + value = "lshoulder_plate_raidpaladin_a_01.m2", }, { fileId = "143275", - value = "lshoulder_plate_raidpaladin_b_01.m2", text = "lshoulder_plate_raidpaladin_b_01.m2", + value = "lshoulder_plate_raidpaladin_b_01.m2", }, { fileId = "143276", - value = "lshoulder_plate_raidpaladin_c_01.m2", text = "lshoulder_plate_raidpaladin_c_01.m2", + value = "lshoulder_plate_raidpaladin_c_01.m2", }, { fileId = "143277", - value = "lshoulder_plate_raidpaladin_d_01.m2", text = "lshoulder_plate_raidpaladin_d_01.m2", + value = "lshoulder_plate_raidpaladin_d_01.m2", }, { fileId = "143278", - value = "lshoulder_plate_raidpaladin_e_01.m2", text = "lshoulder_plate_raidpaladin_e_01.m2", + value = "lshoulder_plate_raidpaladin_e_01.m2", }, { fileId = "143279", - value = "lshoulder_plate_raidpaladin_f_01.m2", text = "lshoulder_plate_raidpaladin_f_01.m2", + value = "lshoulder_plate_raidpaladin_f_01.m2", }, { fileId = "143284", - value = "lshoulder_plate_raidwarrior_a_01.m2", text = "lshoulder_plate_raidwarrior_a_01.m2", + value = "lshoulder_plate_raidwarrior_a_01.m2", }, { fileId = "143285", - value = "lshoulder_plate_raidwarrior_b_01.m2", text = "lshoulder_plate_raidwarrior_b_01.m2", + value = "lshoulder_plate_raidwarrior_b_01.m2", }, { fileId = "143286", - value = "lshoulder_plate_raidwarrior_c_01.m2", text = "lshoulder_plate_raidwarrior_c_01.m2", + value = "lshoulder_plate_raidwarrior_c_01.m2", }, { fileId = "143287", - value = "lshoulder_plate_raidwarrior_d_01.m2", text = "lshoulder_plate_raidwarrior_d_01.m2", + value = "lshoulder_plate_raidwarrior_d_01.m2", }, { fileId = "143288", - value = "lshoulder_plate_raidwarrior_e_01.m2", text = "lshoulder_plate_raidwarrior_e_01.m2", + value = "lshoulder_plate_raidwarrior_e_01.m2", }, { fileId = "143289", - value = "lshoulder_plate_raidwarrior_f_01.m2", text = "lshoulder_plate_raidwarrior_f_01.m2", + value = "lshoulder_plate_raidwarrior_f_01.m2", }, { fileId = "143290", - value = "lshoulder_plate_sunwell_c_01.m2", text = "lshoulder_plate_sunwell_c_01.m2", + value = "lshoulder_plate_sunwell_c_01.m2", }, { fileId = "143291", - value = "lshoulder_plate_sunwell_d_01.m2", text = "lshoulder_plate_sunwell_d_01.m2", + value = "lshoulder_plate_sunwell_d_01.m2", }, { fileId = "143292", - value = "lshoulder_plate_zulaman_d_01.m2", text = "lshoulder_plate_zulaman_d_01.m2", + value = "lshoulder_plate_zulaman_d_01.m2", }, { fileId = "143293", - value = "lshoulder_plate_zulaman_d_03.m2", text = "lshoulder_plate_zulaman_d_03.m2", + value = "lshoulder_plate_zulaman_d_03.m2", }, { fileId = "143294", - value = "lshoulder_raiddruid_b_01.m2", text = "lshoulder_raiddruid_b_01.m2", + value = "lshoulder_raiddruid_b_01.m2", }, { fileId = "143295", - value = "lshoulder_robe_a_01.m2", text = "lshoulder_robe_a_01.m2", + value = "lshoulder_robe_a_01.m2", }, { fileId = "143296", - value = "lshoulder_robe_a_02.m2", text = "lshoulder_robe_a_02.m2", + value = "lshoulder_robe_a_02.m2", }, { fileId = "143297", - value = "lshoulder_robe_a_03.m2", text = "lshoulder_robe_a_03.m2", + value = "lshoulder_robe_a_03.m2", }, { fileId = "143298", - value = "lshoulder_robe_ahnqiraj_a_01.m2", text = "lshoulder_robe_ahnqiraj_a_01.m2", + value = "lshoulder_robe_ahnqiraj_a_01.m2", }, { fileId = "143299", - value = "lshoulder_robe_b_01.m2", text = "lshoulder_robe_b_01.m2", + value = "lshoulder_robe_b_01.m2", }, { fileId = "143300", - value = "lshoulder_robe_b_02.m2", text = "lshoulder_robe_b_02.m2", + value = "lshoulder_robe_b_02.m2", }, { fileId = "143301", - value = "lshoulder_robe_b_03.m2", text = "lshoulder_robe_b_03.m2", + value = "lshoulder_robe_b_03.m2", }, { fileId = "143302", - value = "lshoulder_robe_b_04.m2", text = "lshoulder_robe_b_04.m2", + value = "lshoulder_robe_b_04.m2", }, { fileId = "143303", - value = "lshoulder_robe_c_01.m2", text = "lshoulder_robe_c_01.m2", + value = "lshoulder_robe_c_01.m2", }, { fileId = "143304", - value = "lshoulder_robe_c_02.m2", text = "lshoulder_robe_c_02.m2", + value = "lshoulder_robe_c_02.m2", }, { fileId = "143305", - value = "lshoulder_robe_c_03.m2", text = "lshoulder_robe_c_03.m2", + value = "lshoulder_robe_c_03.m2", }, { fileId = "143306", - value = "lshoulder_robe_d_01.m2", text = "lshoulder_robe_d_01.m2", + value = "lshoulder_robe_d_01.m2", }, { fileId = "143307", - value = "lshoulder_robe_d_04.m2", text = "lshoulder_robe_d_04.m2", + value = "lshoulder_robe_d_04.m2", }, { fileId = "143308", - value = "lshoulder_robe_dungeonmage_a_01.m2", text = "lshoulder_robe_dungeonmage_a_01.m2", + value = "lshoulder_robe_dungeonmage_a_01.m2", }, { fileId = "143309", - value = "lshoulder_robe_dungeonmage_b_01.m2", text = "lshoulder_robe_dungeonmage_b_01.m2", + value = "lshoulder_robe_dungeonmage_b_01.m2", }, { fileId = "143310", - value = "lshoulder_robe_dungeonpriest_a_01.m2", text = "lshoulder_robe_dungeonpriest_a_01.m2", + value = "lshoulder_robe_dungeonpriest_a_01.m2", }, { fileId = "143311", - value = "lshoulder_robe_dungeonpriest_b_01.m2", text = "lshoulder_robe_dungeonpriest_b_01.m2", + value = "lshoulder_robe_dungeonpriest_b_01.m2", }, { fileId = "143312", - value = "lshoulder_robe_dungeonwarlock_a_01.m2", text = "lshoulder_robe_dungeonwarlock_a_01.m2", + value = "lshoulder_robe_dungeonwarlock_a_01.m2", }, { fileId = "143313", - value = "lshoulder_robe_dungeonwarlock_b_01.m2", text = "lshoulder_robe_dungeonwarlock_b_01.m2", + value = "lshoulder_robe_dungeonwarlock_b_01.m2", }, { fileId = "143314", - value = "lshoulder_robe_holiday_summerfest_a_01.m2", text = "lshoulder_robe_holiday_summerfest_a_01.m2", + value = "lshoulder_robe_holiday_summerfest_a_01.m2", }, { fileId = "143315", - value = "lshoulder_robe_horde_a_03.m2", text = "lshoulder_robe_horde_a_03.m2", + value = "lshoulder_robe_horde_a_03.m2", }, { fileId = "143316", - value = "lshoulder_robe_horde_d_01.m2", text = "lshoulder_robe_horde_d_01.m2", + value = "lshoulder_robe_horde_d_01.m2", }, { fileId = "143317", - value = "lshoulder_robe_hyjal_d_04.m2", text = "lshoulder_robe_hyjal_d_04.m2", + value = "lshoulder_robe_hyjal_d_04.m2", }, { fileId = "143321", - value = "lshoulder_robe_pvpalliance_a_01.m2", text = "lshoulder_robe_pvpalliance_a_01.m2", + value = "lshoulder_robe_pvpalliance_a_01.m2", }, { fileId = "143322", - value = "lshoulder_robe_pvpalliance_c_01.m2", text = "lshoulder_robe_pvpalliance_c_01.m2", + value = "lshoulder_robe_pvpalliance_c_01.m2", }, { fileId = "143323", - value = "lshoulder_robe_pvphorde_a_01.m2", text = "lshoulder_robe_pvphorde_a_01.m2", + value = "lshoulder_robe_pvphorde_a_01.m2", }, { fileId = "143324", - value = "lshoulder_robe_pvphorde_c_01.m2", text = "lshoulder_robe_pvphorde_c_01.m2", + value = "lshoulder_robe_pvphorde_c_01.m2", }, { fileId = "143325", - value = "lshoulder_robe_raid_a_01.m2", text = "lshoulder_robe_raid_a_01.m2", + value = "lshoulder_robe_raid_a_01.m2", }, { fileId = "143326", - value = "lshoulder_robe_raidmage_a_01.m2", text = "lshoulder_robe_raidmage_a_01.m2", + value = "lshoulder_robe_raidmage_a_01.m2", }, { fileId = "143327", - value = "lshoulder_robe_raidmage_b_01.m2", text = "lshoulder_robe_raidmage_b_01.m2", + value = "lshoulder_robe_raidmage_b_01.m2", }, { fileId = "143328", - value = "lshoulder_robe_raidmage_c_01.m2", text = "lshoulder_robe_raidmage_c_01.m2", + value = "lshoulder_robe_raidmage_c_01.m2", }, { fileId = "143329", - value = "lshoulder_robe_raidmage_d_01.m2", text = "lshoulder_robe_raidmage_d_01.m2", + value = "lshoulder_robe_raidmage_d_01.m2", }, { fileId = "143330", - value = "lshoulder_robe_raidmage_e_01.m2", text = "lshoulder_robe_raidmage_e_01.m2", + value = "lshoulder_robe_raidmage_e_01.m2", }, { fileId = "143331", - value = "lshoulder_robe_raidmage_f_01.m2", text = "lshoulder_robe_raidmage_f_01.m2", + value = "lshoulder_robe_raidmage_f_01.m2", }, { fileId = "143333", - value = "lshoulder_robe_raidpriest_a_01.m2", text = "lshoulder_robe_raidpriest_a_01.m2", + value = "lshoulder_robe_raidpriest_a_01.m2", }, { fileId = "143334", - value = "lshoulder_robe_raidpriest_b_01.m2", text = "lshoulder_robe_raidpriest_b_01.m2", + value = "lshoulder_robe_raidpriest_b_01.m2", }, { fileId = "143335", - value = "lshoulder_robe_raidpriest_c_01.m2", text = "lshoulder_robe_raidpriest_c_01.m2", + value = "lshoulder_robe_raidpriest_c_01.m2", }, { fileId = "143336", - value = "lshoulder_robe_raidpriest_d_01.m2", text = "lshoulder_robe_raidpriest_d_01.m2", + value = "lshoulder_robe_raidpriest_d_01.m2", }, { fileId = "143337", - value = "lshoulder_robe_raidpriest_e_01.m2", text = "lshoulder_robe_raidpriest_e_01.m2", + value = "lshoulder_robe_raidpriest_e_01.m2", }, { fileId = "143338", - value = "lshoulder_robe_raidpriest_f_01.m2", text = "lshoulder_robe_raidpriest_f_01.m2", + value = "lshoulder_robe_raidpriest_f_01.m2", }, { fileId = "143340", - value = "lshoulder_robe_raidshaman_c_01.m2", text = "lshoulder_robe_raidshaman_c_01.m2", + value = "lshoulder_robe_raidshaman_c_01.m2", }, { fileId = "143341", - value = "lshoulder_robe_raidwarlock_a_01.m2", text = "lshoulder_robe_raidwarlock_a_01.m2", + value = "lshoulder_robe_raidwarlock_a_01.m2", }, { fileId = "143342", - value = "lshoulder_robe_raidwarlock_b_01.m2", text = "lshoulder_robe_raidwarlock_b_01.m2", + value = "lshoulder_robe_raidwarlock_b_01.m2", }, { fileId = "143343", - value = "lshoulder_robe_raidwarlock_c_01.m2", text = "lshoulder_robe_raidwarlock_c_01.m2", + value = "lshoulder_robe_raidwarlock_c_01.m2", }, { fileId = "143344", - value = "lshoulder_robe_raidwarlock_d_01.m2", text = "lshoulder_robe_raidwarlock_d_01.m2", + value = "lshoulder_robe_raidwarlock_d_01.m2", }, { fileId = "143345", - value = "lshoulder_robe_raidwarlock_e_01.m2", text = "lshoulder_robe_raidwarlock_e_01.m2", + value = "lshoulder_robe_raidwarlock_e_01.m2", }, { fileId = "143346", - value = "lshoulder_robe_raidwarlock_f_01.m2", text = "lshoulder_robe_raidwarlock_f_01.m2", + value = "lshoulder_robe_raidwarlock_f_01.m2", }, { fileId = "143348", - value = "lshoulder_robe_sunwell_d_01.m2", text = "lshoulder_robe_sunwell_d_01.m2", + value = "lshoulder_robe_sunwell_d_01.m2", }, { fileId = "143349", - value = "lshoulder_robe_zulaman_d_01.m2", text = "lshoulder_robe_zulaman_d_01.m2", + value = "lshoulder_robe_zulaman_d_01.m2", }, { fileId = "143350", - value = "lshoulder_robe_zulaman_d_03.m2", text = "lshoulder_robe_zulaman_d_03.m2", + value = "lshoulder_robe_zulaman_d_03.m2", }, { fileId = "143436", - value = "rshoulder_leather_a_01.m2", text = "rshoulder_leather_a_01.m2", + value = "rshoulder_leather_a_01.m2", }, { fileId = "143437", - value = "rshoulder_leather_a_02.m2", text = "rshoulder_leather_a_02.m2", + value = "rshoulder_leather_a_02.m2", }, { fileId = "143438", - value = "rshoulder_leather_a_03.m2", text = "rshoulder_leather_a_03.m2", + value = "rshoulder_leather_a_03.m2", }, { fileId = "143439", - value = "rshoulder_leather_a_03defias.m2", text = "rshoulder_leather_a_03defias.m2", + value = "rshoulder_leather_a_03defias.m2", }, { fileId = "143440", - value = "rshoulder_leather_a_04.m2", text = "rshoulder_leather_a_04.m2", + value = "rshoulder_leather_a_04.m2", }, { fileId = "143441", - value = "rshoulder_leather_a_05.m2", text = "rshoulder_leather_a_05.m2", + value = "rshoulder_leather_a_05.m2", }, { fileId = "143442", - value = "rshoulder_leather_ahnqiraj_a_01.m2", text = "rshoulder_leather_ahnqiraj_a_01.m2", + value = "rshoulder_leather_ahnqiraj_a_01.m2", }, { fileId = "143443", - value = "rshoulder_leather_b_01.m2", text = "rshoulder_leather_b_01.m2", + value = "rshoulder_leather_b_01.m2", }, { fileId = "143444", - value = "rshoulder_leather_b_02.m2", text = "rshoulder_leather_b_02.m2", + value = "rshoulder_leather_b_02.m2", }, { fileId = "143445", - value = "rshoulder_leather_b_03.m2", text = "rshoulder_leather_b_03.m2", + value = "rshoulder_leather_b_03.m2", }, { fileId = "143446", - value = "rshoulder_leather_b_04.m2", text = "rshoulder_leather_b_04.m2", + value = "rshoulder_leather_b_04.m2", }, { fileId = "143447", - value = "rshoulder_leather_blood_b_01.m2", text = "rshoulder_leather_blood_b_01.m2", + value = "rshoulder_leather_blood_b_01.m2", }, { fileId = "143448", - value = "rshoulder_leather_c_01.m2", text = "rshoulder_leather_c_01.m2", + value = "rshoulder_leather_c_01.m2", }, { fileId = "143449", - value = "rshoulder_leather_c_02.m2", text = "rshoulder_leather_c_02.m2", + value = "rshoulder_leather_c_02.m2", }, { fileId = "143450", - value = "rshoulder_leather_c_03.m2", text = "rshoulder_leather_c_03.m2", + value = "rshoulder_leather_c_03.m2", }, { fileId = "143451", - value = "rshoulder_leather_d_01.m2", text = "rshoulder_leather_d_01.m2", + value = "rshoulder_leather_d_01.m2", }, { fileId = "143452", - value = "rshoulder_leather_d_02.m2", text = "rshoulder_leather_d_02.m2", + value = "rshoulder_leather_d_02.m2", }, { fileId = "143453", - value = "rshoulder_leather_d_03.m2", text = "rshoulder_leather_d_03.m2", + value = "rshoulder_leather_d_03.m2", }, { fileId = "143454", - value = "rshoulder_leather_draenei_b_01.m2", text = "rshoulder_leather_draenei_b_01.m2", + value = "rshoulder_leather_draenei_b_01.m2", }, { fileId = "143455", - value = "rshoulder_leather_draenei_b_02.m2", text = "rshoulder_leather_draenei_b_02.m2", + value = "rshoulder_leather_draenei_b_02.m2", }, { fileId = "143456", - value = "rshoulder_leather_dungeondruid_a_01.m2", text = "rshoulder_leather_dungeondruid_a_01.m2", + value = "rshoulder_leather_dungeondruid_a_01.m2", }, { fileId = "143457", - value = "rshoulder_leather_dungeondruid_b_01.m2", text = "rshoulder_leather_dungeondruid_b_01.m2", + value = "rshoulder_leather_dungeondruid_b_01.m2", }, { fileId = "143458", - value = "rshoulder_leather_dungeonrogue_b_01.m2", text = "rshoulder_leather_dungeonrogue_b_01.m2", + value = "rshoulder_leather_dungeonrogue_b_01.m2", }, { fileId = "143459", - value = "rshoulder_leather_horde_a_05.m2", text = "rshoulder_leather_horde_a_05.m2", + value = "rshoulder_leather_horde_a_05.m2", }, { fileId = "143460", - value = "rshoulder_leather_horde_b_03.m2", text = "rshoulder_leather_horde_b_03.m2", + value = "rshoulder_leather_horde_b_03.m2", }, { fileId = "143467", - value = "rshoulder_leather_pvpalliance_a_01.m2", text = "rshoulder_leather_pvpalliance_a_01.m2", + value = "rshoulder_leather_pvpalliance_a_01.m2", }, { fileId = "143468", - value = "rshoulder_leather_pvphorde_a_01.m2", text = "rshoulder_leather_pvphorde_a_01.m2", + value = "rshoulder_leather_pvphorde_a_01.m2", }, { fileId = "143469", - value = "rshoulder_leather_pvphorde_c_01.m2", text = "rshoulder_leather_pvphorde_c_01.m2", + value = "rshoulder_leather_pvphorde_c_01.m2", }, { fileId = "143470", - value = "rshoulder_leather_raiddruid_a_01.m2", text = "rshoulder_leather_raiddruid_a_01.m2", + value = "rshoulder_leather_raiddruid_a_01.m2", }, { fileId = "143471", - value = "rshoulder_leather_raiddruid_b_01.m2", text = "rshoulder_leather_raiddruid_b_01.m2", + value = "rshoulder_leather_raiddruid_b_01.m2", }, { fileId = "143472", - value = "rshoulder_leather_raiddruid_c_01.m2", text = "rshoulder_leather_raiddruid_c_01.m2", + value = "rshoulder_leather_raiddruid_c_01.m2", }, { fileId = "143473", - value = "rshoulder_leather_raiddruid_d_01.m2", text = "rshoulder_leather_raiddruid_d_01.m2", + value = "rshoulder_leather_raiddruid_d_01.m2", }, { fileId = "143474", - value = "rshoulder_leather_raiddruid_e_01.m2", text = "rshoulder_leather_raiddruid_e_01.m2", + value = "rshoulder_leather_raiddruid_e_01.m2", }, { fileId = "143475", - value = "rshoulder_leather_raiddruid_f_01.m2", text = "rshoulder_leather_raiddruid_f_01.m2", + value = "rshoulder_leather_raiddruid_f_01.m2", }, { fileId = "143476", - value = "rshoulder_leather_raidrogue_a_01.m2", text = "rshoulder_leather_raidrogue_a_01.m2", + value = "rshoulder_leather_raidrogue_a_01.m2", }, { fileId = "143477", - value = "rshoulder_leather_raidrogue_b_01.m2", text = "rshoulder_leather_raidrogue_b_01.m2", + value = "rshoulder_leather_raidrogue_b_01.m2", }, { fileId = "143478", - value = "rshoulder_leather_raidrogue_c_01.m2", text = "rshoulder_leather_raidrogue_c_01.m2", + value = "rshoulder_leather_raidrogue_c_01.m2", }, { fileId = "143479", - value = "rshoulder_leather_raidrogue_d_01.m2", text = "rshoulder_leather_raidrogue_d_01.m2", + value = "rshoulder_leather_raidrogue_d_01.m2", }, { fileId = "143480", - value = "rshoulder_leather_raidrogue_e_01.m2", text = "rshoulder_leather_raidrogue_e_01.m2", + value = "rshoulder_leather_raidrogue_e_01.m2", }, { fileId = "143481", - value = "rshoulder_leather_raidrogue_f_01.m2", text = "rshoulder_leather_raidrogue_f_01.m2", + value = "rshoulder_leather_raidrogue_f_01.m2", }, { fileId = "143483", - value = "rshoulder_leather_sunwell_d_01.m2", text = "rshoulder_leather_sunwell_d_01.m2", + value = "rshoulder_leather_sunwell_d_01.m2", }, { fileId = "143484", - value = "rshoulder_leather_zulaman_d_01.m2", text = "rshoulder_leather_zulaman_d_01.m2", + value = "rshoulder_leather_zulaman_d_01.m2", }, { fileId = "143485", - value = "rshoulder_leather_zulaman_d_03.m2", text = "rshoulder_leather_zulaman_d_03.m2", + value = "rshoulder_leather_zulaman_d_03.m2", }, { fileId = "143486", - value = "rshoulder_mail_a_01.m2", text = "rshoulder_mail_a_01.m2", + value = "rshoulder_mail_a_01.m2", }, { fileId = "143487", - value = "rshoulder_mail_a_02.m2", text = "rshoulder_mail_a_02.m2", + value = "rshoulder_mail_a_02.m2", }, { fileId = "143488", - value = "rshoulder_mail_a_03.m2", text = "rshoulder_mail_a_03.m2", + value = "rshoulder_mail_a_03.m2", }, { fileId = "143489", - value = "rshoulder_mail_ahnqiraj_a_01.m2", text = "rshoulder_mail_ahnqiraj_a_01.m2", + value = "rshoulder_mail_ahnqiraj_a_01.m2", }, { fileId = "143490", - value = "rshoulder_mail_b_01.m2", text = "rshoulder_mail_b_01.m2", + value = "rshoulder_mail_b_01.m2", }, { fileId = "143491", - value = "rshoulder_mail_b_02.m2", text = "rshoulder_mail_b_02.m2", + value = "rshoulder_mail_b_02.m2", }, { fileId = "143492", - value = "rshoulder_mail_b_03.m2", text = "rshoulder_mail_b_03.m2", + value = "rshoulder_mail_b_03.m2", }, { fileId = "143493", - value = "rshoulder_mail_b_05.m2", text = "rshoulder_mail_b_05.m2", + value = "rshoulder_mail_b_05.m2", }, { fileId = "143494", - value = "rshoulder_mail_blood_b_01.m2", text = "rshoulder_mail_blood_b_01.m2", + value = "rshoulder_mail_blood_b_01.m2", }, { fileId = "143495", - value = "rshoulder_mail_c_01.m2", text = "rshoulder_mail_c_01.m2", + value = "rshoulder_mail_c_01.m2", }, { fileId = "143496", - value = "rshoulder_mail_c_02.m2", text = "rshoulder_mail_c_02.m2", + value = "rshoulder_mail_c_02.m2", }, { fileId = "143497", - value = "rshoulder_mail_c_03.m2", text = "rshoulder_mail_c_03.m2", + value = "rshoulder_mail_c_03.m2", }, { fileId = "143498", - value = "rshoulder_mail_c_04.m2", text = "rshoulder_mail_c_04.m2", + value = "rshoulder_mail_c_04.m2", }, { fileId = "143499", - value = "rshoulder_mail_d_01.m2", text = "rshoulder_mail_d_01.m2", + value = "rshoulder_mail_d_01.m2", }, { fileId = "143500", - value = "rshoulder_mail_d_02.m2", text = "rshoulder_mail_d_02.m2", + value = "rshoulder_mail_d_02.m2", }, { fileId = "143501", - value = "rshoulder_mail_draenei_b_01.m2", text = "rshoulder_mail_draenei_b_01.m2", + value = "rshoulder_mail_draenei_b_01.m2", }, { fileId = "143502", - value = "rshoulder_mail_draenei_b_02.m2", text = "rshoulder_mail_draenei_b_02.m2", + value = "rshoulder_mail_draenei_b_02.m2", }, { fileId = "143503", - value = "rshoulder_mail_dungeonhunter_a_01.m2", text = "rshoulder_mail_dungeonhunter_a_01.m2", + value = "rshoulder_mail_dungeonhunter_a_01.m2", }, { fileId = "143504", - value = "rshoulder_mail_dungeonhunter_b_02.m2", text = "rshoulder_mail_dungeonhunter_b_02.m2", + value = "rshoulder_mail_dungeonhunter_b_02.m2", }, { fileId = "143505", - value = "rshoulder_mail_dungeonshaman_a_01.m2", text = "rshoulder_mail_dungeonshaman_a_01.m2", + value = "rshoulder_mail_dungeonshaman_a_01.m2", }, { fileId = "143506", - value = "rshoulder_mail_dungeonshaman_b_01.m2", text = "rshoulder_mail_dungeonshaman_b_01.m2", + value = "rshoulder_mail_dungeonshaman_b_01.m2", }, { fileId = "143512", - value = "rshoulder_mail_pvpalliance_a_01.m2", text = "rshoulder_mail_pvpalliance_a_01.m2", + value = "rshoulder_mail_pvpalliance_a_01.m2", }, { fileId = "143513", - value = "rshoulder_mail_pvpalliance_c_01.m2", text = "rshoulder_mail_pvpalliance_c_01.m2", + value = "rshoulder_mail_pvpalliance_c_01.m2", }, { fileId = "143514", - value = "rshoulder_mail_pvphorde_a_01.m2", text = "rshoulder_mail_pvphorde_a_01.m2", + value = "rshoulder_mail_pvphorde_a_01.m2", }, { fileId = "143515", - value = "rshoulder_mail_pvphorde_c_01.m2", text = "rshoulder_mail_pvphorde_c_01.m2", + value = "rshoulder_mail_pvphorde_c_01.m2", }, { fileId = "143516", - value = "rshoulder_mail_raidhunter_a_01.m2", text = "rshoulder_mail_raidhunter_a_01.m2", + value = "rshoulder_mail_raidhunter_a_01.m2", }, { fileId = "143517", - value = "rshoulder_mail_raidhunter_b_01.m2", text = "rshoulder_mail_raidhunter_b_01.m2", + value = "rshoulder_mail_raidhunter_b_01.m2", }, { fileId = "143518", - value = "rshoulder_mail_raidhunter_c_01.m2", text = "rshoulder_mail_raidhunter_c_01.m2", + value = "rshoulder_mail_raidhunter_c_01.m2", }, { fileId = "143519", - value = "rshoulder_mail_raidhunter_d_01.m2", text = "rshoulder_mail_raidhunter_d_01.m2", + value = "rshoulder_mail_raidhunter_d_01.m2", }, { fileId = "143520", - value = "rshoulder_mail_raidhunter_e_01.m2", text = "rshoulder_mail_raidhunter_e_01.m2", + value = "rshoulder_mail_raidhunter_e_01.m2", }, { fileId = "143521", - value = "rshoulder_mail_raidhunter_f_01.m2", text = "rshoulder_mail_raidhunter_f_01.m2", + value = "rshoulder_mail_raidhunter_f_01.m2", }, { fileId = "143523", - value = "rshoulder_mail_raidshaman_a_01.m2", text = "rshoulder_mail_raidshaman_a_01.m2", + value = "rshoulder_mail_raidshaman_a_01.m2", }, { fileId = "143524", - value = "rshoulder_mail_raidshaman_b_01.m2", text = "rshoulder_mail_raidshaman_b_01.m2", + value = "rshoulder_mail_raidshaman_b_01.m2", }, { fileId = "143525", - value = "rshoulder_mail_raidshaman_d_01.m2", text = "rshoulder_mail_raidshaman_d_01.m2", + value = "rshoulder_mail_raidshaman_d_01.m2", }, { fileId = "143526", - value = "rshoulder_mail_raidshaman_e_01.m2", text = "rshoulder_mail_raidshaman_e_01.m2", + value = "rshoulder_mail_raidshaman_e_01.m2", }, { fileId = "143527", - value = "rshoulder_mail_raidshaman_f_01.m2", text = "rshoulder_mail_raidshaman_f_01.m2", + value = "rshoulder_mail_raidshaman_f_01.m2", }, { fileId = "143528", - value = "rshoulder_mail_sunwell_d_01.m2", text = "rshoulder_mail_sunwell_d_01.m2", + value = "rshoulder_mail_sunwell_d_01.m2", }, { fileId = "143529", - value = "rshoulder_mail_zulaman_d_01.m2", text = "rshoulder_mail_zulaman_d_01.m2", + value = "rshoulder_mail_zulaman_d_01.m2", }, { fileId = "143530", - value = "rshoulder_mail_zulaman_d_03.m2", text = "rshoulder_mail_zulaman_d_03.m2", + value = "rshoulder_mail_zulaman_d_03.m2", }, { fileId = "143531", - value = "rshoulder_plate_a_01.m2", text = "rshoulder_plate_a_01.m2", + value = "rshoulder_plate_a_01.m2", }, { fileId = "143532", - value = "rshoulder_plate_a_02.m2", text = "rshoulder_plate_a_02.m2", + value = "rshoulder_plate_a_02.m2", }, { fileId = "143533", - value = "rshoulder_plate_a_02ironforgeguard.m2", text = "rshoulder_plate_a_02ironforgeguard.m2", + value = "rshoulder_plate_a_02ironforgeguard.m2", }, { fileId = "143534", - value = "rshoulder_plate_a_03.m2", text = "rshoulder_plate_a_03.m2", + value = "rshoulder_plate_a_03.m2", }, { fileId = "143535", - value = "rshoulder_plate_a_04.m2", text = "rshoulder_plate_a_04.m2", + value = "rshoulder_plate_a_04.m2", }, { fileId = "143536", - value = "rshoulder_plate_ahnqiraj_a_01.m2", text = "rshoulder_plate_ahnqiraj_a_01.m2", + value = "rshoulder_plate_ahnqiraj_a_01.m2", }, { fileId = "143537", - value = "rshoulder_plate_b_01.m2", text = "rshoulder_plate_b_01.m2", + value = "rshoulder_plate_b_01.m2", }, { fileId = "143538", - value = "rshoulder_plate_b_02.m2", text = "rshoulder_plate_b_02.m2", + value = "rshoulder_plate_b_02.m2", }, { fileId = "143539", - value = "rshoulder_plate_b_03.m2", text = "rshoulder_plate_b_03.m2", + value = "rshoulder_plate_b_03.m2", }, { fileId = "143540", - value = "rshoulder_plate_b_04.m2", text = "rshoulder_plate_b_04.m2", + value = "rshoulder_plate_b_04.m2", }, { fileId = "143541", - value = "rshoulder_plate_b_05.m2", text = "rshoulder_plate_b_05.m2", + value = "rshoulder_plate_b_05.m2", }, { fileId = "143542", - value = "rshoulder_plate_bloodknight_d_02.m2", text = "rshoulder_plate_bloodknight_d_02.m2", + value = "rshoulder_plate_bloodknight_d_02.m2", }, { fileId = "143543", - value = "rshoulder_plate_c_01.m2", text = "rshoulder_plate_c_01.m2", + value = "rshoulder_plate_c_01.m2", }, { fileId = "143544", - value = "rshoulder_plate_c_03.m2", text = "rshoulder_plate_c_03.m2", + value = "rshoulder_plate_c_03.m2", }, { fileId = "143545", - value = "rshoulder_plate_c_04.m2", text = "rshoulder_plate_c_04.m2", + value = "rshoulder_plate_c_04.m2", }, { fileId = "143546", - value = "rshoulder_plate_c_05.m2", text = "rshoulder_plate_c_05.m2", + value = "rshoulder_plate_c_05.m2", }, { fileId = "143547", - value = "rshoulder_plate_d_01.m2", text = "rshoulder_plate_d_01.m2", + value = "rshoulder_plate_d_01.m2", }, { fileId = "143548", - value = "rshoulder_plate_d_02.m2", text = "rshoulder_plate_d_02.m2", + value = "rshoulder_plate_d_02.m2", }, { fileId = "143549", - value = "rshoulder_plate_d_03.m2", text = "rshoulder_plate_d_03.m2", + value = "rshoulder_plate_d_03.m2", }, { fileId = "143550", - value = "rshoulder_plate_d_04.m2", text = "rshoulder_plate_d_04.m2", + value = "rshoulder_plate_d_04.m2", }, { fileId = "143551", - value = "rshoulder_plate_d_05.m2", text = "rshoulder_plate_d_05.m2", + value = "rshoulder_plate_d_05.m2", }, { fileId = "143552", - value = "rshoulder_plate_d_06.m2", text = "rshoulder_plate_d_06.m2", + value = "rshoulder_plate_d_06.m2", }, { fileId = "143553", - value = "rshoulder_plate_draeneiguard_a_01.m2", text = "rshoulder_plate_draeneiguard_a_01.m2", + value = "rshoulder_plate_draeneiguard_a_01.m2", }, { fileId = "143554", - value = "rshoulder_plate_draeneiguard_b_01.m2", text = "rshoulder_plate_draeneiguard_b_01.m2", + value = "rshoulder_plate_draeneiguard_b_01.m2", }, { fileId = "143555", - value = "rshoulder_plate_dungeonpaladin_a_01.m2", text = "rshoulder_plate_dungeonpaladin_a_01.m2", + value = "rshoulder_plate_dungeonpaladin_a_01.m2", }, { fileId = "143556", - value = "rshoulder_plate_dungeonpaladin_b_01.m2", text = "rshoulder_plate_dungeonpaladin_b_01.m2", + value = "rshoulder_plate_dungeonpaladin_b_01.m2", }, { fileId = "143558", - value = "rshoulder_plate_dungeonwarrior_a_01.m2", text = "rshoulder_plate_dungeonwarrior_a_01.m2", + value = "rshoulder_plate_dungeonwarrior_a_01.m2", }, { fileId = "143559", - value = "rshoulder_plate_dungeonwarrior_b_01.m2", text = "rshoulder_plate_dungeonwarrior_b_01.m2", + value = "rshoulder_plate_dungeonwarrior_b_01.m2", }, { fileId = "143560", - value = "rshoulder_plate_haremmatron_d_01.m2", text = "rshoulder_plate_haremmatron_d_01.m2", + value = "rshoulder_plate_haremmatron_d_01.m2", }, { fileId = "143561", - value = "rshoulder_plate_horde_c_05.m2", text = "rshoulder_plate_horde_c_05.m2", + value = "rshoulder_plate_horde_c_05.m2", }, { fileId = "143562", - value = "rshoulder_plate_horde_d_02.m2", text = "rshoulder_plate_horde_d_02.m2", + value = "rshoulder_plate_horde_d_02.m2", }, { fileId = "143563", - value = "rshoulder_plate_hyjal_d_04.m2", text = "rshoulder_plate_hyjal_d_04.m2", + value = "rshoulder_plate_hyjal_d_04.m2", }, { fileId = "143564", - value = "rshoulder_plate_hyjal_d_05.m2", text = "rshoulder_plate_hyjal_d_05.m2", + value = "rshoulder_plate_hyjal_d_05.m2", }, { fileId = "143570", - value = "rshoulder_plate_pvpalliance_a_01.m2", text = "rshoulder_plate_pvpalliance_a_01.m2", + value = "rshoulder_plate_pvpalliance_a_01.m2", }, { fileId = "143571", - value = "rshoulder_plate_pvphorde_a_01.m2", text = "rshoulder_plate_pvphorde_a_01.m2", + value = "rshoulder_plate_pvphorde_a_01.m2", }, { fileId = "143573", - value = "rshoulder_plate_raidpaladin_a_01.m2", text = "rshoulder_plate_raidpaladin_a_01.m2", + value = "rshoulder_plate_raidpaladin_a_01.m2", }, { fileId = "143574", - value = "rshoulder_plate_raidpaladin_b_01.m2", text = "rshoulder_plate_raidpaladin_b_01.m2", + value = "rshoulder_plate_raidpaladin_b_01.m2", }, { fileId = "143575", - value = "rshoulder_plate_raidpaladin_c_01.m2", text = "rshoulder_plate_raidpaladin_c_01.m2", + value = "rshoulder_plate_raidpaladin_c_01.m2", }, { fileId = "143576", - value = "rshoulder_plate_raidpaladin_d_01.m2", text = "rshoulder_plate_raidpaladin_d_01.m2", + value = "rshoulder_plate_raidpaladin_d_01.m2", }, { fileId = "143577", - value = "rshoulder_plate_raidpaladin_e_01.m2", text = "rshoulder_plate_raidpaladin_e_01.m2", + value = "rshoulder_plate_raidpaladin_e_01.m2", }, { fileId = "143578", - value = "rshoulder_plate_raidpaladin_f_01.m2", text = "rshoulder_plate_raidpaladin_f_01.m2", + value = "rshoulder_plate_raidpaladin_f_01.m2", }, { fileId = "143583", - value = "rshoulder_plate_raidwarrior_a_01.m2", text = "rshoulder_plate_raidwarrior_a_01.m2", + value = "rshoulder_plate_raidwarrior_a_01.m2", }, { fileId = "143584", - value = "rshoulder_plate_raidwarrior_b_01.m2", text = "rshoulder_plate_raidwarrior_b_01.m2", + value = "rshoulder_plate_raidwarrior_b_01.m2", }, { fileId = "143585", - value = "rshoulder_plate_raidwarrior_c_01.m2", text = "rshoulder_plate_raidwarrior_c_01.m2", + value = "rshoulder_plate_raidwarrior_c_01.m2", }, { fileId = "143586", - value = "rshoulder_plate_raidwarrior_d_01.m2", text = "rshoulder_plate_raidwarrior_d_01.m2", + value = "rshoulder_plate_raidwarrior_d_01.m2", }, { fileId = "143587", - value = "rshoulder_plate_raidwarrior_e_01.m2", text = "rshoulder_plate_raidwarrior_e_01.m2", + value = "rshoulder_plate_raidwarrior_e_01.m2", }, { fileId = "143588", - value = "rshoulder_plate_raidwarrior_f_01.m2", text = "rshoulder_plate_raidwarrior_f_01.m2", + value = "rshoulder_plate_raidwarrior_f_01.m2", }, { fileId = "143589", - value = "rshoulder_plate_sunwell_c_01.m2", text = "rshoulder_plate_sunwell_c_01.m2", + value = "rshoulder_plate_sunwell_c_01.m2", }, { fileId = "143590", - value = "rshoulder_plate_sunwell_d_01.m2", text = "rshoulder_plate_sunwell_d_01.m2", + value = "rshoulder_plate_sunwell_d_01.m2", }, { fileId = "143591", - value = "rshoulder_plate_zulaman_d_01.m2", text = "rshoulder_plate_zulaman_d_01.m2", + value = "rshoulder_plate_zulaman_d_01.m2", }, { fileId = "143592", - value = "rshoulder_plate_zulaman_d_03.m2", text = "rshoulder_plate_zulaman_d_03.m2", + value = "rshoulder_plate_zulaman_d_03.m2", }, { fileId = "143593", - value = "rshoulder_raiddruid_b_01.m2", text = "rshoulder_raiddruid_b_01.m2", + value = "rshoulder_raiddruid_b_01.m2", }, { fileId = "143594", - value = "rshoulder_robe_a_01.m2", text = "rshoulder_robe_a_01.m2", + value = "rshoulder_robe_a_01.m2", }, { fileId = "143595", - value = "rshoulder_robe_a_02.m2", text = "rshoulder_robe_a_02.m2", + value = "rshoulder_robe_a_02.m2", }, { fileId = "143596", - value = "rshoulder_robe_a_03.m2", text = "rshoulder_robe_a_03.m2", + value = "rshoulder_robe_a_03.m2", }, { fileId = "143597", - value = "rshoulder_robe_ahnqiraj_a_01.m2", text = "rshoulder_robe_ahnqiraj_a_01.m2", + value = "rshoulder_robe_ahnqiraj_a_01.m2", }, { fileId = "143598", - value = "rshoulder_robe_b_01.m2", text = "rshoulder_robe_b_01.m2", + value = "rshoulder_robe_b_01.m2", }, { fileId = "143599", - value = "rshoulder_robe_b_02.m2", text = "rshoulder_robe_b_02.m2", + value = "rshoulder_robe_b_02.m2", }, { fileId = "143600", - value = "rshoulder_robe_b_03.m2", text = "rshoulder_robe_b_03.m2", + value = "rshoulder_robe_b_03.m2", }, { fileId = "143601", - value = "rshoulder_robe_b_04.m2", text = "rshoulder_robe_b_04.m2", + value = "rshoulder_robe_b_04.m2", }, { fileId = "143602", - value = "rshoulder_robe_c_01.m2", text = "rshoulder_robe_c_01.m2", + value = "rshoulder_robe_c_01.m2", }, { fileId = "143603", - value = "rshoulder_robe_c_02.m2", text = "rshoulder_robe_c_02.m2", + value = "rshoulder_robe_c_02.m2", }, { fileId = "143604", - value = "rshoulder_robe_c_03.m2", text = "rshoulder_robe_c_03.m2", + value = "rshoulder_robe_c_03.m2", }, { fileId = "143605", - value = "rshoulder_robe_d_01.m2", text = "rshoulder_robe_d_01.m2", + value = "rshoulder_robe_d_01.m2", }, { fileId = "143606", - value = "rshoulder_robe_d_04.m2", text = "rshoulder_robe_d_04.m2", + value = "rshoulder_robe_d_04.m2", }, { fileId = "143607", - value = "rshoulder_robe_dungeonmage_a_01.m2", text = "rshoulder_robe_dungeonmage_a_01.m2", + value = "rshoulder_robe_dungeonmage_a_01.m2", }, { fileId = "143608", - value = "rshoulder_robe_dungeonmage_b_01.m2", text = "rshoulder_robe_dungeonmage_b_01.m2", + value = "rshoulder_robe_dungeonmage_b_01.m2", }, { fileId = "143609", - value = "rshoulder_robe_dungeonpriest_a_01.m2", text = "rshoulder_robe_dungeonpriest_a_01.m2", + value = "rshoulder_robe_dungeonpriest_a_01.m2", }, { fileId = "143610", - value = "rshoulder_robe_dungeonpriest_b_01.m2", text = "rshoulder_robe_dungeonpriest_b_01.m2", + value = "rshoulder_robe_dungeonpriest_b_01.m2", }, { fileId = "143611", - value = "rshoulder_robe_dungeonwarlock_a_01.m2", text = "rshoulder_robe_dungeonwarlock_a_01.m2", + value = "rshoulder_robe_dungeonwarlock_a_01.m2", }, { fileId = "143612", - value = "rshoulder_robe_dungeonwarlock_b_01.m2", text = "rshoulder_robe_dungeonwarlock_b_01.m2", + value = "rshoulder_robe_dungeonwarlock_b_01.m2", }, { fileId = "143613", - value = "rshoulder_robe_holiday_summerfest_a_01.m2", text = "rshoulder_robe_holiday_summerfest_a_01.m2", + value = "rshoulder_robe_holiday_summerfest_a_01.m2", }, { fileId = "143614", - value = "rshoulder_robe_horde_a_03.m2", text = "rshoulder_robe_horde_a_03.m2", + value = "rshoulder_robe_horde_a_03.m2", }, { fileId = "143615", - value = "rshoulder_robe_horde_d_01.m2", text = "rshoulder_robe_horde_d_01.m2", + value = "rshoulder_robe_horde_d_01.m2", }, { fileId = "143616", - value = "rshoulder_robe_hyjal_d_04.m2", text = "rshoulder_robe_hyjal_d_04.m2", + value = "rshoulder_robe_hyjal_d_04.m2", }, { fileId = "143620", - value = "rshoulder_robe_pvpalliance_a_01.m2", text = "rshoulder_robe_pvpalliance_a_01.m2", + value = "rshoulder_robe_pvpalliance_a_01.m2", }, { fileId = "143621", - value = "rshoulder_robe_pvpalliance_c_01.m2", text = "rshoulder_robe_pvpalliance_c_01.m2", + value = "rshoulder_robe_pvpalliance_c_01.m2", }, { fileId = "143622", - value = "rshoulder_robe_pvphorde_a_01.m2", text = "rshoulder_robe_pvphorde_a_01.m2", + value = "rshoulder_robe_pvphorde_a_01.m2", }, { fileId = "143623", - value = "rshoulder_robe_pvphorde_c_01.m2", text = "rshoulder_robe_pvphorde_c_01.m2", + value = "rshoulder_robe_pvphorde_c_01.m2", }, { fileId = "143624", - value = "rshoulder_robe_raid_a_01.m2", text = "rshoulder_robe_raid_a_01.m2", + value = "rshoulder_robe_raid_a_01.m2", }, { fileId = "143625", - value = "rshoulder_robe_raidmage_a_01.m2", text = "rshoulder_robe_raidmage_a_01.m2", + value = "rshoulder_robe_raidmage_a_01.m2", }, { fileId = "143626", - value = "rshoulder_robe_raidmage_b_01.m2", text = "rshoulder_robe_raidmage_b_01.m2", + value = "rshoulder_robe_raidmage_b_01.m2", }, { fileId = "143627", - value = "rshoulder_robe_raidmage_c_01.m2", text = "rshoulder_robe_raidmage_c_01.m2", + value = "rshoulder_robe_raidmage_c_01.m2", }, { fileId = "143628", - value = "rshoulder_robe_raidmage_d_01.m2", text = "rshoulder_robe_raidmage_d_01.m2", + value = "rshoulder_robe_raidmage_d_01.m2", }, { fileId = "143629", - value = "rshoulder_robe_raidmage_e_01.m2", text = "rshoulder_robe_raidmage_e_01.m2", + value = "rshoulder_robe_raidmage_e_01.m2", }, { fileId = "143630", - value = "rshoulder_robe_raidmage_f_01.m2", text = "rshoulder_robe_raidmage_f_01.m2", + value = "rshoulder_robe_raidmage_f_01.m2", }, { fileId = "143632", - value = "rshoulder_robe_raidpriest_a_01.m2", text = "rshoulder_robe_raidpriest_a_01.m2", + value = "rshoulder_robe_raidpriest_a_01.m2", }, { fileId = "143633", - value = "rshoulder_robe_raidpriest_b_01.m2", text = "rshoulder_robe_raidpriest_b_01.m2", + value = "rshoulder_robe_raidpriest_b_01.m2", }, { fileId = "143634", - value = "rshoulder_robe_raidpriest_c_01.m2", text = "rshoulder_robe_raidpriest_c_01.m2", + value = "rshoulder_robe_raidpriest_c_01.m2", }, { fileId = "143635", - value = "rshoulder_robe_raidpriest_d_01.m2", text = "rshoulder_robe_raidpriest_d_01.m2", + value = "rshoulder_robe_raidpriest_d_01.m2", }, { fileId = "143636", - value = "rshoulder_robe_raidpriest_e_01.m2", text = "rshoulder_robe_raidpriest_e_01.m2", + value = "rshoulder_robe_raidpriest_e_01.m2", }, { fileId = "143637", - value = "rshoulder_robe_raidpriest_f_01.m2", text = "rshoulder_robe_raidpriest_f_01.m2", + value = "rshoulder_robe_raidpriest_f_01.m2", }, { fileId = "143639", - value = "rshoulder_robe_raidshaman_c_01.m2", text = "rshoulder_robe_raidshaman_c_01.m2", + value = "rshoulder_robe_raidshaman_c_01.m2", }, { fileId = "143640", - value = "rshoulder_robe_raidwarlock_a_01.m2", text = "rshoulder_robe_raidwarlock_a_01.m2", + value = "rshoulder_robe_raidwarlock_a_01.m2", }, { fileId = "143641", - value = "rshoulder_robe_raidwarlock_b_01.m2", text = "rshoulder_robe_raidwarlock_b_01.m2", + value = "rshoulder_robe_raidwarlock_b_01.m2", }, { fileId = "143642", - value = "rshoulder_robe_raidwarlock_c_01.m2", text = "rshoulder_robe_raidwarlock_c_01.m2", + value = "rshoulder_robe_raidwarlock_c_01.m2", }, { fileId = "143643", - value = "rshoulder_robe_raidwarlock_d_01.m2", text = "rshoulder_robe_raidwarlock_d_01.m2", + value = "rshoulder_robe_raidwarlock_d_01.m2", }, { fileId = "143644", - value = "rshoulder_robe_raidwarlock_e_01.m2", text = "rshoulder_robe_raidwarlock_e_01.m2", + value = "rshoulder_robe_raidwarlock_e_01.m2", }, { fileId = "143645", - value = "rshoulder_robe_raidwarlock_f_01.m2", text = "rshoulder_robe_raidwarlock_f_01.m2", + value = "rshoulder_robe_raidwarlock_f_01.m2", }, { fileId = "143647", - value = "rshoulder_robe_sunwell_d_01.m2", text = "rshoulder_robe_sunwell_d_01.m2", + value = "rshoulder_robe_sunwell_d_01.m2", }, { fileId = "143648", - value = "rshoulder_robe_zulaman_d_01.m2", text = "rshoulder_robe_zulaman_d_01.m2", + value = "rshoulder_robe_zulaman_d_01.m2", }, { fileId = "143649", - value = "rshoulder_robe_zulaman_d_03.m2", text = "rshoulder_robe_zulaman_d_03.m2", + value = "rshoulder_robe_zulaman_d_03.m2", }, }, - value = "shoulder", text = "shoulder", + value = "shoulder", }, { children = { { fileId = "144326", - value = "1htrollspear01.m2", text = "1htrollspear01.m2", + value = "1htrollspear01.m2", }, { fileId = "144340", - value = "ashbringer02.m2", text = "ashbringer02.m2", + value = "ashbringer02.m2", }, { fileId = "144344", - value = "axe_1h_ahnqiraj_d_01.m2", text = "axe_1h_ahnqiraj_d_01.m2", + value = "axe_1h_ahnqiraj_d_01.m2", }, { fileId = "144345", - value = "axe_1h_ahnqiraj_d_02.m2", text = "axe_1h_ahnqiraj_d_02.m2", + value = "axe_1h_ahnqiraj_d_02.m2", }, { fileId = "144347", - value = "axe_1h_blacksmithing_d_01.m2", text = "axe_1h_blacksmithing_d_01.m2", + value = "axe_1h_blacksmithing_d_01.m2", }, { fileId = "144349", - value = "axe_1h_blacksmithing_d_02.m2", text = "axe_1h_blacksmithing_d_02.m2", + value = "axe_1h_blacksmithing_d_02.m2", }, { fileId = "144351", - value = "axe_1h_blacksmithing_d_03.m2", text = "axe_1h_blacksmithing_d_03.m2", + value = "axe_1h_blacksmithing_d_03.m2", }, { fileId = "144353", - value = "axe_1h_blackwing_a_01.m2", text = "axe_1h_blackwing_a_01.m2", + value = "axe_1h_blackwing_a_01.m2", }, { fileId = "144355", - value = "axe_1h_blackwing_a_02.m2", text = "axe_1h_blackwing_a_02.m2", + value = "axe_1h_blackwing_a_02.m2", }, { fileId = "144357", - value = "axe_1h_blood_a_01.m2", text = "axe_1h_blood_a_01.m2", + value = "axe_1h_blood_a_01.m2", }, { fileId = "144361", - value = "axe_1h_blood_a_02.m2", text = "axe_1h_blood_a_02.m2", + value = "axe_1h_blood_a_02.m2", }, { fileId = "144367", - value = "axe_1h_blood_a_03.m2", text = "axe_1h_blood_a_03.m2", + value = "axe_1h_blood_a_03.m2", }, { fileId = "144388", - value = "axe_1h_draenei_a_01.m2", text = "axe_1h_draenei_a_01.m2", + value = "axe_1h_draenei_a_01.m2", }, { fileId = "144393", - value = "axe_1h_draenei_b_01.m2", text = "axe_1h_draenei_b_01.m2", + value = "axe_1h_draenei_b_01.m2", }, { fileId = "144398", - value = "axe_1h_draenei_c_01.m2", text = "axe_1h_draenei_c_01.m2", + value = "axe_1h_draenei_c_01.m2", }, { fileId = "144403", - value = "axe_1h_draenei_d_01.m2", text = "axe_1h_draenei_d_01.m2", + value = "axe_1h_draenei_d_01.m2", }, { fileId = "144412", - value = "axe_1h_flint_a_01.m2", text = "axe_1h_flint_a_01.m2", + value = "axe_1h_flint_a_01.m2", }, { fileId = "144416", - value = "axe_1h_hatchet_a_01.m2", text = "axe_1h_hatchet_a_01.m2", + value = "axe_1h_hatchet_a_01.m2", }, { fileId = "144420", - value = "axe_1h_hatchet_a_02.m2", text = "axe_1h_hatchet_a_02.m2", + value = "axe_1h_hatchet_a_02.m2", }, { fileId = "144424", - value = "axe_1h_hatchet_a_03.m2", text = "axe_1h_hatchet_a_03.m2", + value = "axe_1h_hatchet_a_03.m2", }, { fileId = "144428", - value = "axe_1h_hatchet_b_01.m2", text = "axe_1h_hatchet_b_01.m2", + value = "axe_1h_hatchet_b_01.m2", }, { fileId = "144432", - value = "axe_1h_hatchet_b_02.m2", text = "axe_1h_hatchet_b_02.m2", + value = "axe_1h_hatchet_b_02.m2", }, { fileId = "144436", - value = "axe_1h_hatchet_b_03.m2", text = "axe_1h_hatchet_b_03.m2", + value = "axe_1h_hatchet_b_03.m2", }, { fileId = "144441", - value = "axe_1h_hatchet_b_04holy.m2", text = "axe_1h_hatchet_b_04holy.m2", + value = "axe_1h_hatchet_b_04holy.m2", }, { fileId = "144442", - value = "axe_1h_hatchet_c_01.m2", text = "axe_1h_hatchet_c_01.m2", + value = "axe_1h_hatchet_c_01.m2", }, { fileId = "144446", - value = "axe_1h_hatchet_c_02.m2", text = "axe_1h_hatchet_c_02.m2", + value = "axe_1h_hatchet_c_02.m2", }, { fileId = "144450", - value = "axe_1h_hatchet_c_03.m2", text = "axe_1h_hatchet_c_03.m2", + value = "axe_1h_hatchet_c_03.m2", }, { fileId = "144455", - value = "axe_1h_hatchet_d_01.m2", text = "axe_1h_hatchet_d_01.m2", + value = "axe_1h_hatchet_d_01.m2", }, { fileId = "144456", - value = "axe_1h_horde_a_01.m2", text = "axe_1h_horde_a_01.m2", + value = "axe_1h_horde_a_01.m2", }, { fileId = "144462", - value = "axe_1h_horde_a_02.m2", text = "axe_1h_horde_a_02.m2", + value = "axe_1h_horde_a_02.m2", }, { fileId = "144464", - value = "axe_1h_horde_a_03.m2", text = "axe_1h_horde_a_03.m2", + value = "axe_1h_horde_a_03.m2", }, { fileId = "144470", - value = "axe_1h_horde_a_04.m2", text = "axe_1h_horde_a_04.m2", + value = "axe_1h_horde_a_04.m2", }, { fileId = "144475", - value = "axe_1h_horde_b_01.m2", text = "axe_1h_horde_b_01.m2", + value = "axe_1h_horde_b_01.m2", }, { fileId = "144478", - value = "axe_1h_horde_b_02.m2", text = "axe_1h_horde_b_02.m2", + value = "axe_1h_horde_b_02.m2", }, { fileId = "144483", - value = "axe_1h_horde_b_03.m2", text = "axe_1h_horde_b_03.m2", + value = "axe_1h_horde_b_03.m2", }, { fileId = "144488", - value = "axe_1h_horde_c_01.m2", text = "axe_1h_horde_c_01.m2", + value = "axe_1h_horde_c_01.m2", }, { fileId = "144494", - value = "axe_1h_horde_c_02.m2", text = "axe_1h_horde_c_02.m2", + value = "axe_1h_horde_c_02.m2", }, { fileId = "144500", - value = "axe_1h_horde_c_03.m2", text = "axe_1h_horde_c_03.m2", + value = "axe_1h_horde_c_03.m2", }, { fileId = "144505", - value = "axe_1h_horde_c_04.m2", text = "axe_1h_horde_c_04.m2", + value = "axe_1h_horde_c_04.m2", }, { fileId = "144513", - value = "axe_1h_horde_d_01.m2", text = "axe_1h_horde_d_01.m2", + value = "axe_1h_horde_d_01.m2", }, { fileId = "144523", - value = "axe_1h_horde_d_02.m2", text = "axe_1h_horde_d_02.m2", + value = "axe_1h_horde_d_02.m2", }, { fileId = "144536", - value = "axe_1h_horde_d_03.m2", text = "axe_1h_horde_d_03.m2", + value = "axe_1h_horde_d_03.m2", }, { fileId = "144593", - value = "axe_1h_outlandraid_d_01.m2", text = "axe_1h_outlandraid_d_01.m2", + value = "axe_1h_outlandraid_d_01.m2", }, { fileId = "144595", - value = "axe_1h_outlandraid_d_02.m2", text = "axe_1h_outlandraid_d_02.m2", + value = "axe_1h_outlandraid_d_02.m2", }, { fileId = "144597", - value = "axe_1h_outlandraid_d_03.m2", text = "axe_1h_outlandraid_d_03.m2", + value = "axe_1h_outlandraid_d_03.m2", }, { fileId = "144599", - value = "axe_1h_outlandraid_d_04.m2", text = "axe_1h_outlandraid_d_04.m2", + value = "axe_1h_outlandraid_d_04.m2", }, { fileId = "144604", - value = "axe_1h_outlandraid_d_05.m2", text = "axe_1h_outlandraid_d_05.m2", + value = "axe_1h_outlandraid_d_05.m2", }, { fileId = "144606", - value = "axe_1h_outlandraid_d_06.m2", text = "axe_1h_outlandraid_d_06.m2", + value = "axe_1h_outlandraid_d_06.m2", }, { fileId = "144607", - value = "axe_1h_pick_a_01.m2", text = "axe_1h_pick_a_01.m2", + value = "axe_1h_pick_a_01.m2", }, { fileId = "144612", - value = "axe_1h_pvpalliance_a_01.m2", text = "axe_1h_pvpalliance_a_01.m2", + value = "axe_1h_pvpalliance_a_01.m2", }, { fileId = "144615", - value = "axe_1h_pvphorde_a_01.m2", text = "axe_1h_pvphorde_a_01.m2", + value = "axe_1h_pvphorde_a_01.m2", }, { fileId = "144618", - value = "axe_1h_raid_d_01.m2", text = "axe_1h_raid_d_01.m2", + value = "axe_1h_raid_d_01.m2", }, { fileId = "144620", - value = "axe_1h_raid_d_02.m2", text = "axe_1h_raid_d_02.m2", + value = "axe_1h_raid_d_02.m2", }, { fileId = "144622", - value = "axe_1h_raid_d_03.m2", text = "axe_1h_raid_d_03.m2", + value = "axe_1h_raid_d_03.m2", }, { fileId = "144624", - value = "axe_1h_raid_d_04.m2", text = "axe_1h_raid_d_04.m2", + value = "axe_1h_raid_d_04.m2", }, { fileId = "144626", - value = "axe_1h_raid_d_05.m2", text = "axe_1h_raid_d_05.m2", + value = "axe_1h_raid_d_05.m2", }, { fileId = "144628", - value = "axe_1h_raid_d_06.m2", text = "axe_1h_raid_d_06.m2", + value = "axe_1h_raid_d_06.m2", }, { fileId = "144629", - value = "axe_1h_stratholme_d_01.m2", text = "axe_1h_stratholme_d_01.m2", + value = "axe_1h_stratholme_d_01.m2", }, { fileId = "144631", - value = "axe_1h_troll_b_01.m2", text = "axe_1h_troll_b_01.m2", + value = "axe_1h_troll_b_01.m2", }, { fileId = "144639", - value = "axe_1h_zulaman_d_01.m2", text = "axe_1h_zulaman_d_01.m2", + value = "axe_1h_zulaman_d_01.m2", }, { fileId = "144645", - value = "axe_1h_zulgurub_d_01.m2", text = "axe_1h_zulgurub_d_01.m2", + value = "axe_1h_zulgurub_d_01.m2", }, { fileId = "144647", - value = "axe_2h_ahnqiraj_d_01.m2", text = "axe_2h_ahnqiraj_d_01.m2", + value = "axe_2h_ahnqiraj_d_01.m2", }, { fileId = "144648", - value = "axe_2h_alliance_c_01.m2", text = "axe_2h_alliance_c_01.m2", + value = "axe_2h_alliance_c_01.m2", }, { fileId = "144654", - value = "axe_2h_alliance_c_02.m2", text = "axe_2h_alliance_c_02.m2", + value = "axe_2h_alliance_c_02.m2", }, { fileId = "144660", - value = "axe_2h_alliance_c_03.m2", text = "axe_2h_alliance_c_03.m2", + value = "axe_2h_alliance_c_03.m2", }, { fileId = "144666", - value = "axe_2h_alliance_d_01.m2", text = "axe_2h_alliance_d_01.m2", + value = "axe_2h_alliance_d_01.m2", }, { fileId = "144672", - value = "axe_2h_alliance_d_02.m2", text = "axe_2h_alliance_d_02.m2", + value = "axe_2h_alliance_d_02.m2", }, { fileId = "144678", - value = "axe_2h_battle_a_01.m2", text = "axe_2h_battle_a_01.m2", + value = "axe_2h_battle_a_01.m2", }, { fileId = "144682", - value = "axe_2h_battle_a_02.m2", text = "axe_2h_battle_a_02.m2", + value = "axe_2h_battle_a_02.m2", }, { fileId = "144686", - value = "axe_2h_battle_a_03.m2", text = "axe_2h_battle_a_03.m2", + value = "axe_2h_battle_a_03.m2", }, { fileId = "144692", - value = "axe_2h_battle_b_01.m2", text = "axe_2h_battle_b_01.m2", + value = "axe_2h_battle_b_01.m2", }, { fileId = "144693", - value = "axe_2h_battle_b_02holy.m2", text = "axe_2h_battle_b_02holy.m2", + value = "axe_2h_battle_b_02holy.m2", }, { fileId = "144695", - value = "axe_2h_blacksmithing_d_01.m2", text = "axe_2h_blacksmithing_d_01.m2", + value = "axe_2h_blacksmithing_d_01.m2", }, { fileId = "144697", - value = "axe_2h_blacksmithing_d_02.m2", text = "axe_2h_blacksmithing_d_02.m2", + value = "axe_2h_blacksmithing_d_02.m2", }, { fileId = "144699", - value = "axe_2h_blacksmithing_d_03.m2", text = "axe_2h_blacksmithing_d_03.m2", + value = "axe_2h_blacksmithing_d_03.m2", }, { fileId = "144700", - value = "axe_2h_blacktemple_d_01.m2", text = "axe_2h_blacktemple_d_01.m2", + value = "axe_2h_blacktemple_d_01.m2", }, { fileId = "144704", - value = "axe_2h_blackwing_a_01.m2", text = "axe_2h_blackwing_a_01.m2", + value = "axe_2h_blackwing_a_01.m2", }, { fileId = "144706", - value = "axe_2h_blackwing_a_02.m2", text = "axe_2h_blackwing_a_02.m2", + value = "axe_2h_blackwing_a_02.m2", }, { fileId = "144708", - value = "axe_2h_blood_a_01.m2", text = "axe_2h_blood_a_01.m2", + value = "axe_2h_blood_a_01.m2", }, { fileId = "144713", - value = "axe_2h_blood_a_02.m2", text = "axe_2h_blood_a_02.m2", + value = "axe_2h_blood_a_02.m2", }, { fileId = "144725", - value = "axe_2h_draenei_a_01.m2", text = "axe_2h_draenei_a_01.m2", + value = "axe_2h_draenei_a_01.m2", }, { fileId = "144730", - value = "axe_2h_draenei_b_01.m2", text = "axe_2h_draenei_b_01.m2", + value = "axe_2h_draenei_b_01.m2", }, { fileId = "144736", - value = "axe_2h_draenei_c_01.m2", text = "axe_2h_draenei_c_01.m2", + value = "axe_2h_draenei_c_01.m2", }, { fileId = "144742", - value = "axe_2h_draenei_d_01.m2", text = "axe_2h_draenei_d_01.m2", + value = "axe_2h_draenei_d_01.m2", }, { fileId = "144748", - value = "axe_2h_draenei_d_02.m2", text = "axe_2h_draenei_d_02.m2", + value = "axe_2h_draenei_d_02.m2", }, { fileId = "144759", - value = "axe_2h_gorehowl_c_01.m2", text = "axe_2h_gorehowl_c_01.m2", + value = "axe_2h_gorehowl_c_01.m2", }, { fileId = "144760", - value = "axe_2h_gorehowl_d_01.m2", text = "axe_2h_gorehowl_d_01.m2", + value = "axe_2h_gorehowl_d_01.m2", }, { fileId = "144762", - value = "axe_2h_hellfire_d_01.m2", text = "axe_2h_hellfire_d_01.m2", + value = "axe_2h_hellfire_d_01.m2", }, { fileId = "144763", - value = "axe_2h_horde_a_01.m2", text = "axe_2h_horde_a_01.m2", + value = "axe_2h_horde_a_01.m2", }, { fileId = "144770", - value = "axe_2h_horde_a_02.m2", text = "axe_2h_horde_a_02.m2", + value = "axe_2h_horde_a_02.m2", }, { fileId = "144776", - value = "axe_2h_horde_a_03.m2", text = "axe_2h_horde_a_03.m2", + value = "axe_2h_horde_a_03.m2", }, { fileId = "144782", - value = "axe_2h_horde_a_04.m2", text = "axe_2h_horde_a_04.m2", + value = "axe_2h_horde_a_04.m2", }, { fileId = "144788", - value = "axe_2h_horde_b_01.m2", text = "axe_2h_horde_b_01.m2", + value = "axe_2h_horde_b_01.m2", }, { fileId = "144791", - value = "axe_2h_horde_c_01.m2", text = "axe_2h_horde_c_01.m2", + value = "axe_2h_horde_c_01.m2", }, { fileId = "144798", - value = "axe_2h_horde_c_02.m2", text = "axe_2h_horde_c_02.m2", + value = "axe_2h_horde_c_02.m2", }, { fileId = "144804", - value = "axe_2h_horde_d_01.m2", text = "axe_2h_horde_d_01.m2", + value = "axe_2h_horde_d_01.m2", }, { fileId = "144810", - value = "axe_2h_horde_d_02.m2", text = "axe_2h_horde_d_02.m2", + value = "axe_2h_horde_d_02.m2", }, { fileId = "144813", - value = "axe_2h_horde_d_03.m2", text = "axe_2h_horde_d_03.m2", + value = "axe_2h_horde_d_03.m2", }, { fileId = "144817", - value = "axe_2h_horde_d_04.m2", text = "axe_2h_horde_d_04.m2", + value = "axe_2h_horde_d_04.m2", }, { fileId = "144860", - value = "axe_2h_outlandraid_d_01.m2", text = "axe_2h_outlandraid_d_01.m2", + value = "axe_2h_outlandraid_d_01.m2", }, { fileId = "144862", - value = "axe_2h_outlandraid_d_02.m2", text = "axe_2h_outlandraid_d_02.m2", + value = "axe_2h_outlandraid_d_02.m2", }, { fileId = "144864", - value = "axe_2h_outlandraid_d_02_green.m2", text = "axe_2h_outlandraid_d_02_green.m2", + value = "axe_2h_outlandraid_d_02_green.m2", }, { fileId = "144865", - value = "axe_2h_outlandraid_d_02_red.m2", text = "axe_2h_outlandraid_d_02_red.m2", + value = "axe_2h_outlandraid_d_02_red.m2", }, { fileId = "144867", - value = "axe_2h_outlandraid_d_03.m2", text = "axe_2h_outlandraid_d_03.m2", + value = "axe_2h_outlandraid_d_03.m2", }, { fileId = "144869", - value = "axe_2h_outlandraid_d_04.m2", text = "axe_2h_outlandraid_d_04.m2", + value = "axe_2h_outlandraid_d_04.m2", }, { fileId = "144871", - value = "axe_2h_outlandraid_d_05.m2", text = "axe_2h_outlandraid_d_05.m2", + value = "axe_2h_outlandraid_d_05.m2", }, { fileId = "144873", - value = "axe_2h_outlandraid_d_06.m2", text = "axe_2h_outlandraid_d_06.m2", + value = "axe_2h_outlandraid_d_06.m2", }, { fileId = "144875", - value = "axe_2h_outlandraid_d_07.m2", text = "axe_2h_outlandraid_d_07.m2", + value = "axe_2h_outlandraid_d_07.m2", }, { fileId = "144880", - value = "axe_2h_pvpalliance_a_01.m2", text = "axe_2h_pvpalliance_a_01.m2", + value = "axe_2h_pvpalliance_a_01.m2", }, { fileId = "144883", - value = "axe_2h_pvphorde_a_01.m2", text = "axe_2h_pvphorde_a_01.m2", + value = "axe_2h_pvphorde_a_01.m2", }, { fileId = "144886", - value = "axe_2h_stratholme_d_01.m2", text = "axe_2h_stratholme_d_01.m2", + value = "axe_2h_stratholme_d_01.m2", }, { fileId = "144888", - value = "axe_2h_sunwell_c_01.m2", text = "axe_2h_sunwell_c_01.m2", + value = "axe_2h_sunwell_c_01.m2", }, { fileId = "144906", - value = "axe_2h_war_a_01.m2", text = "axe_2h_war_a_01.m2", + value = "axe_2h_war_a_01.m2", }, { fileId = "144910", - value = "axe_2h_war_a_02.m2", text = "axe_2h_war_a_02.m2", + value = "axe_2h_war_a_02.m2", }, { fileId = "144914", - value = "axe_2h_war_a_03.m2", text = "axe_2h_war_a_03.m2", + value = "axe_2h_war_a_03.m2", }, { fileId = "144918", - value = "axe_2h_war_b_01.m2", text = "axe_2h_war_b_01.m2", + value = "axe_2h_war_b_01.m2", }, { fileId = "144922", - value = "axe_2h_war_b_02.m2", text = "axe_2h_war_b_02.m2", + value = "axe_2h_war_b_02.m2", }, { fileId = "144926", - value = "axe_2h_war_b_03.m2", text = "axe_2h_war_b_03.m2", + value = "axe_2h_war_b_03.m2", }, { fileId = "144930", - value = "axe_2h_war_c_01.m2", text = "axe_2h_war_c_01.m2", + value = "axe_2h_war_c_01.m2", }, { fileId = "144934", - value = "axe_2h_war_d_01.m2", text = "axe_2h_war_d_01.m2", + value = "axe_2h_war_d_01.m2", }, { fileId = "144936", - value = "axe_2h_zulaman_d_01.m2", text = "axe_2h_zulaman_d_01.m2", + value = "axe_2h_zulaman_d_01.m2", }, { fileId = "144941", - value = "axe_2h_zulgurub_d_01.m2", text = "axe_2h_zulgurub_d_01.m2", + value = "axe_2h_zulgurub_d_01.m2", }, { fileId = "144952", - value = "bow_1h_advanced_a_01.m2", text = "bow_1h_advanced_a_01.m2", + value = "bow_1h_advanced_a_01.m2", }, { fileId = "144953", - value = "bow_1h_advanced_a_02.m2", text = "bow_1h_advanced_a_02.m2", + value = "bow_1h_advanced_a_02.m2", }, { fileId = "144954", - value = "bow_1h_advanced_b_01.m2", text = "bow_1h_advanced_b_01.m2", + value = "bow_1h_advanced_b_01.m2", }, { fileId = "144955", - value = "bow_1h_advanced_c_01.m2", text = "bow_1h_advanced_c_01.m2", + value = "bow_1h_advanced_c_01.m2", }, { fileId = "144956", - value = "bow_1h_advanced_c_02.m2", text = "bow_1h_advanced_c_02.m2", + value = "bow_1h_advanced_c_02.m2", }, { fileId = "144957", - value = "bow_1h_advanced_d_01.m2", text = "bow_1h_advanced_d_01.m2", + value = "bow_1h_advanced_d_01.m2", }, { fileId = "144958", - value = "bow_1h_advanced_d_02.m2", text = "bow_1h_advanced_d_02.m2", + value = "bow_1h_advanced_d_02.m2", }, { fileId = "144961", - value = "bow_1h_ahnqiraj_d_01.m2", text = "bow_1h_ahnqiraj_d_01.m2", + value = "bow_1h_ahnqiraj_d_01.m2", }, { fileId = "144962", - value = "bow_1h_ahnqiraj_d_02.m2", text = "bow_1h_ahnqiraj_d_02.m2", + value = "bow_1h_ahnqiraj_d_02.m2", }, { fileId = "144963", - value = "bow_1h_auchindoun_d_01.m2", text = "bow_1h_auchindoun_d_01.m2", + value = "bow_1h_auchindoun_d_01.m2", }, { fileId = "144965", - value = "bow_1h_blacktemple_d_01.m2", text = "bow_1h_blacktemple_d_01.m2", + value = "bow_1h_blacktemple_d_01.m2", }, { fileId = "144971", - value = "bow_1h_blackwing_a_01.m2", text = "bow_1h_blackwing_a_01.m2", + value = "bow_1h_blackwing_a_01.m2", }, { fileId = "144972", - value = "bow_1h_blood_a_01.m2", text = "bow_1h_blood_a_01.m2", + value = "bow_1h_blood_a_01.m2", }, { fileId = "144978", - value = "bow_1h_blood_a_02.m2", text = "bow_1h_blood_a_02.m2", + value = "bow_1h_blood_a_02.m2", }, { fileId = "144979", - value = "bow_1h_blood_b_01.m2", text = "bow_1h_blood_b_01.m2", + value = "bow_1h_blood_b_01.m2", }, { fileId = "144986", - value = "bow_1h_blood_c_01.m2", text = "bow_1h_blood_c_01.m2", + value = "bow_1h_blood_c_01.m2", }, { fileId = "144992", - value = "bow_1h_blood_d_01.m2", text = "bow_1h_blood_d_01.m2", + value = "bow_1h_blood_d_01.m2", }, { fileId = "144998", - value = "bow_1h_crossbow_a_01.m2", text = "bow_1h_crossbow_a_01.m2", + value = "bow_1h_crossbow_a_01.m2", }, { fileId = "145011", - value = "bow_1h_horde_a_01.m2", text = "bow_1h_horde_a_01.m2", + value = "bow_1h_horde_a_01.m2", }, { fileId = "145013", - value = "bow_1h_horde_b_01.m2", text = "bow_1h_horde_b_01.m2", + value = "bow_1h_horde_b_01.m2", }, { fileId = "145015", - value = "bow_1h_horde_c_01.m2", text = "bow_1h_horde_c_01.m2", + value = "bow_1h_horde_c_01.m2", }, { fileId = "145018", - value = "bow_1h_hunter_d_01.m2", text = "bow_1h_hunter_d_01.m2", + value = "bow_1h_hunter_d_01.m2", }, { fileId = "145019", - value = "bow_1h_hunterepic.m2", text = "bow_1h_hunterepic.m2", + value = "bow_1h_hunterepic.m2", }, { fileId = "145021", - value = "bow_1h_hyjal_d_01.m2", text = "bow_1h_hyjal_d_01.m2", + value = "bow_1h_hyjal_d_01.m2", }, { fileId = "145077", - value = "bow_1h_outlandraid_d_01.m2", text = "bow_1h_outlandraid_d_01.m2", + value = "bow_1h_outlandraid_d_01.m2", }, { fileId = "145079", - value = "bow_1h_outlandraid_d_02.m2", text = "bow_1h_outlandraid_d_02.m2", + value = "bow_1h_outlandraid_d_02.m2", }, { fileId = "145081", - value = "bow_1h_outlandraid_d_03.m2", text = "bow_1h_outlandraid_d_03.m2", + value = "bow_1h_outlandraid_d_03.m2", }, { fileId = "145083", - value = "bow_1h_outlandraid_d_03_green.m2", text = "bow_1h_outlandraid_d_03_green.m2", + value = "bow_1h_outlandraid_d_03_green.m2", }, { fileId = "145085", - value = "bow_1h_outlandraid_d_04.m2", text = "bow_1h_outlandraid_d_04.m2", + value = "bow_1h_outlandraid_d_04.m2", }, { fileId = "145087", - value = "bow_1h_outlandraid_d_05.m2", text = "bow_1h_outlandraid_d_05.m2", + value = "bow_1h_outlandraid_d_05.m2", }, { fileId = "145089", - value = "bow_1h_outlandraid_d_06.m2", text = "bow_1h_outlandraid_d_06.m2", + value = "bow_1h_outlandraid_d_06.m2", }, { fileId = "145090", - value = "bow_1h_outlandraid_d_06_blue.m2", text = "bow_1h_outlandraid_d_06_blue.m2", + value = "bow_1h_outlandraid_d_06_blue.m2", }, { fileId = "145092", - value = "bow_1h_pvpalliance_a_01.m2", text = "bow_1h_pvpalliance_a_01.m2", + value = "bow_1h_pvpalliance_a_01.m2", }, { fileId = "145094", - value = "bow_1h_pvphorde_a_01.m2", text = "bow_1h_pvphorde_a_01.m2", + value = "bow_1h_pvphorde_a_01.m2", }, { fileId = "145095", - value = "bow_1h_short_a_01.m2", text = "bow_1h_short_a_01.m2", + value = "bow_1h_short_a_01.m2", }, { fileId = "145097", - value = "bow_1h_standard_a_01.m2", text = "bow_1h_standard_a_01.m2", + value = "bow_1h_standard_a_01.m2", }, { fileId = "145101", - value = "bow_1h_standard_a_02.m2", text = "bow_1h_standard_a_02.m2", + value = "bow_1h_standard_a_02.m2", }, { fileId = "145105", - value = "bow_1h_standard_b_01.m2", text = "bow_1h_standard_b_01.m2", + value = "bow_1h_standard_b_01.m2", }, { fileId = "145109", - value = "bow_1h_standard_b_02.m2", text = "bow_1h_standard_b_02.m2", + value = "bow_1h_standard_b_02.m2", }, { fileId = "145113", - value = "bow_1h_standard_c_01.m2", text = "bow_1h_standard_c_01.m2", + value = "bow_1h_standard_c_01.m2", }, { fileId = "145117", - value = "bow_1h_standard_c_02.m2", text = "bow_1h_standard_c_02.m2", + value = "bow_1h_standard_c_02.m2", }, { fileId = "145122", - value = "bow_1h_stratholme_d_01.m2", text = "bow_1h_stratholme_d_01.m2", + value = "bow_1h_stratholme_d_01.m2", }, { fileId = "145133", - value = "bow_1h_sunwell_d_01.m2", text = "bow_1h_sunwell_d_01.m2", + value = "bow_1h_sunwell_d_01.m2", }, { fileId = "145142", - value = "bow_1h_sunwell_d_02.m2", text = "bow_1h_sunwell_d_02.m2", + value = "bow_1h_sunwell_d_02.m2", }, { fileId = "145145", - value = "bow_1h_sunwell_d_03.m2", text = "bow_1h_sunwell_d_03.m2", + value = "bow_1h_sunwell_d_03.m2", }, { fileId = "145162", - value = "bow_1h_zulaman_d_01.m2", text = "bow_1h_zulaman_d_01.m2", + value = "bow_1h_zulaman_d_01.m2", }, { fileId = "145167", - value = "bow_1h_zulgurub_d_01.m2", text = "bow_1h_zulgurub_d_01.m2", + value = "bow_1h_zulgurub_d_01.m2", }, { fileId = "145169", - value = "bow_1h_zulgurub_d_02.m2", text = "bow_1h_zulgurub_d_02.m2", + value = "bow_1h_zulgurub_d_02.m2", }, { fileId = "145170", - value = "bow_2h_crossbow_a_01.m2", text = "bow_2h_crossbow_a_01.m2", + value = "bow_2h_crossbow_a_01.m2", }, { fileId = "145173", - value = "bow_2h_crossbow_b_01.m2", text = "bow_2h_crossbow_b_01.m2", + value = "bow_2h_crossbow_b_01.m2", }, { fileId = "145176", - value = "bow_2h_crossbow_blacktemple_d_01.m2", text = "bow_2h_crossbow_blacktemple_d_01.m2", + value = "bow_2h_crossbow_blacktemple_d_01.m2", }, { fileId = "145183", - value = "bow_2h_crossbow_blackwing_a_01.m2", text = "bow_2h_crossbow_blackwing_a_01.m2", + value = "bow_2h_crossbow_blackwing_a_01.m2", }, { fileId = "145184", - value = "bow_2h_crossbow_c_01.m2", text = "bow_2h_crossbow_c_01.m2", + value = "bow_2h_crossbow_c_01.m2", }, { fileId = "145196", - value = "bow_2h_crossbow_draenei_a_01.m2", text = "bow_2h_crossbow_draenei_a_01.m2", + value = "bow_2h_crossbow_draenei_a_01.m2", }, { fileId = "145201", - value = "bow_2h_crossbow_draenei_a_02.m2", text = "bow_2h_crossbow_draenei_a_02.m2", + value = "bow_2h_crossbow_draenei_a_02.m2", }, { fileId = "145243", - value = "bow_2h_crossbow_outlandpvp_d_01.m2", text = "bow_2h_crossbow_outlandpvp_d_01.m2", + value = "bow_2h_crossbow_outlandpvp_d_01.m2", }, { fileId = "145250", - value = "bow_2h_crossbow_outlandraid_d_01.m2", text = "bow_2h_crossbow_outlandraid_d_01.m2", + value = "bow_2h_crossbow_outlandraid_d_01.m2", }, { fileId = "145252", - value = "bow_2h_crossbow_outlandraid_d_04.m2", text = "bow_2h_crossbow_outlandraid_d_04.m2", + value = "bow_2h_crossbow_outlandraid_d_04.m2", }, { fileId = "145254", - value = "bow_2h_crossbow_outlandraid_d_05.m2", text = "bow_2h_crossbow_outlandraid_d_05.m2", + value = "bow_2h_crossbow_outlandraid_d_05.m2", }, { fileId = "145256", - value = "bow_2h_crossbow_outlandraid_d_06.m2", text = "bow_2h_crossbow_outlandraid_d_06.m2", + value = "bow_2h_crossbow_outlandraid_d_06.m2", }, { fileId = "145258", - value = "bow_2h_crossbow_pvpalliance_a_01.m2", text = "bow_2h_crossbow_pvpalliance_a_01.m2", + value = "bow_2h_crossbow_pvpalliance_a_01.m2", }, { fileId = "145261", - value = "bow_2h_crossbow_pvphorde_a_01.m2", text = "bow_2h_crossbow_pvphorde_a_01.m2", + value = "bow_2h_crossbow_pvphorde_a_01.m2", }, { fileId = "145264", - value = "bow_2h_crossbow_stratholme_d_01.m2", text = "bow_2h_crossbow_stratholme_d_01.m2", + value = "bow_2h_crossbow_stratholme_d_01.m2", }, { fileId = "145265", - value = "bow_2h_crossbow_sunwell_c_01.m2", text = "bow_2h_crossbow_sunwell_c_01.m2", + value = "bow_2h_crossbow_sunwell_c_01.m2", }, { fileId = "145283", - value = "bow_2h_crossbow_zulgurub_d_01.m2", text = "bow_2h_crossbow_zulgurub_d_01.m2", + value = "bow_2h_crossbow_zulgurub_d_01.m2", }, { fileId = "145298", - value = "club_1h_cane_a_01.m2", text = "club_1h_cane_a_01.m2", + value = "club_1h_cane_a_01.m2", }, { fileId = "145300", - value = "club_1h_exotic_a_01.m2", text = "club_1h_exotic_a_01.m2", + value = "club_1h_exotic_a_01.m2", }, { fileId = "145301", - value = "club_1h_spiked_a_01.m2", text = "club_1h_spiked_a_01.m2", + value = "club_1h_spiked_a_01.m2", }, { fileId = "145304", - value = "club_1h_torch_a_01.m2", text = "club_1h_torch_a_01.m2", + value = "club_1h_torch_a_01.m2", }, { fileId = "145306", - value = "club_1h_torch_a_02.m2", text = "club_1h_torch_a_02.m2", + value = "club_1h_torch_a_02.m2", }, { fileId = "145319", - value = "firearm_2h_rifle_a_01.m2", text = "firearm_2h_rifle_a_01.m2", + value = "firearm_2h_rifle_a_01.m2", }, { fileId = "145323", - value = "firearm_2h_rifle_a_02.m2", text = "firearm_2h_rifle_a_02.m2", + value = "firearm_2h_rifle_a_02.m2", }, { fileId = "145328", - value = "firearm_2h_rifle_a_03.m2", text = "firearm_2h_rifle_a_03.m2", + value = "firearm_2h_rifle_a_03.m2", }, { fileId = "145329", - value = "firearm_2h_rifle_a_03scope.m2", text = "firearm_2h_rifle_a_03scope.m2", + value = "firearm_2h_rifle_a_03scope.m2", }, { fileId = "145333", - value = "firearm_2h_rifle_a_04.m2", text = "firearm_2h_rifle_a_04.m2", + value = "firearm_2h_rifle_a_04.m2", }, { fileId = "145334", - value = "firearm_2h_rifle_a_04scopesniper.m2", text = "firearm_2h_rifle_a_04scopesniper.m2", + value = "firearm_2h_rifle_a_04scopesniper.m2", }, { fileId = "145335", - value = "firearm_2h_rifle_a_05.m2", text = "firearm_2h_rifle_a_05.m2", + value = "firearm_2h_rifle_a_05.m2", }, { fileId = "145346", - value = "firearm_2h_rifle_a_06.m2", text = "firearm_2h_rifle_a_06.m2", + value = "firearm_2h_rifle_a_06.m2", }, { fileId = "145348", - value = "firearm_2h_rifle_ahnqiraj_d_01.m2", text = "firearm_2h_rifle_ahnqiraj_d_01.m2", + value = "firearm_2h_rifle_ahnqiraj_d_01.m2", }, { fileId = "145350", - value = "firearm_2h_rifle_ahnqiraj_d_02.m2", text = "firearm_2h_rifle_ahnqiraj_d_02.m2", + value = "firearm_2h_rifle_ahnqiraj_d_02.m2", }, { fileId = "145356", - value = "firearm_2h_rifle_b_01.m2", text = "firearm_2h_rifle_b_01.m2", + value = "firearm_2h_rifle_b_01.m2", }, { fileId = "145360", - value = "firearm_2h_rifle_b_02.m2", text = "firearm_2h_rifle_b_02.m2", + value = "firearm_2h_rifle_b_02.m2", }, { fileId = "145366", - value = "firearm_2h_rifle_b_03.m2", text = "firearm_2h_rifle_b_03.m2", + value = "firearm_2h_rifle_b_03.m2", }, { fileId = "145372", - value = "firearm_2h_rifle_blood_a_01.m2", text = "firearm_2h_rifle_blood_a_01.m2", + value = "firearm_2h_rifle_blood_a_01.m2", }, { fileId = "145377", - value = "firearm_2h_rifle_blood_b_01.m2", text = "firearm_2h_rifle_blood_b_01.m2", + value = "firearm_2h_rifle_blood_b_01.m2", }, { fileId = "145383", - value = "firearm_2h_rifle_blood_c_01.m2", text = "firearm_2h_rifle_blood_c_01.m2", + value = "firearm_2h_rifle_blood_c_01.m2", }, { fileId = "145389", - value = "firearm_2h_rifle_blood_d_01.m2", text = "firearm_2h_rifle_blood_d_01.m2", + value = "firearm_2h_rifle_blood_d_01.m2", }, { fileId = "145401", - value = "firearm_2h_rifle_draenei_a_01.m2", text = "firearm_2h_rifle_draenei_a_01.m2", + value = "firearm_2h_rifle_draenei_a_01.m2", }, { fileId = "145407", - value = "firearm_2h_rifle_engineering_d_01.m2", text = "firearm_2h_rifle_engineering_d_01.m2", + value = "firearm_2h_rifle_engineering_d_01.m2", }, { fileId = "145409", - value = "firearm_2h_rifle_hellfire_c_01.m2", text = "firearm_2h_rifle_hellfire_c_01.m2", + value = "firearm_2h_rifle_hellfire_c_01.m2", }, { fileId = "145411", - value = "firearm_2h_rifle_hellfire_d_01.m2", text = "firearm_2h_rifle_hellfire_d_01.m2", + value = "firearm_2h_rifle_hellfire_d_01.m2", }, { fileId = "145415", - value = "firearm_2h_rifle_hunteralliancelvl20.m2", text = "firearm_2h_rifle_hunteralliancelvl20.m2", + value = "firearm_2h_rifle_hunteralliancelvl20.m2", }, { fileId = "145416", - value = "firearm_2h_rifle_hunteralliancelvl50.m2", text = "firearm_2h_rifle_hunteralliancelvl50.m2", + value = "firearm_2h_rifle_hunteralliancelvl50.m2", }, { fileId = "145417", - value = "firearm_2h_rifle_hunterhordelvl20.m2", text = "firearm_2h_rifle_hunterhordelvl20.m2", + value = "firearm_2h_rifle_hunterhordelvl20.m2", }, { fileId = "145419", - value = "firearm_2h_rifle_hunterhordelvl50.m2", text = "firearm_2h_rifle_hunterhordelvl50.m2", + value = "firearm_2h_rifle_hunterhordelvl50.m2", }, { fileId = "145447", - value = "firearm_2h_rifle_outlandraid_d_01.m2", text = "firearm_2h_rifle_outlandraid_d_01.m2", + value = "firearm_2h_rifle_outlandraid_d_01.m2", }, { fileId = "145449", - value = "firearm_2h_rifle_outlandraid_d_02.m2", text = "firearm_2h_rifle_outlandraid_d_02.m2", + value = "firearm_2h_rifle_outlandraid_d_02.m2", }, { fileId = "145451", - value = "firearm_2h_rifle_outlandraid_d_03.m2", text = "firearm_2h_rifle_outlandraid_d_03.m2", + value = "firearm_2h_rifle_outlandraid_d_03.m2", }, { fileId = "145453", - value = "firearm_2h_rifle_outlandraid_d_04.m2", text = "firearm_2h_rifle_outlandraid_d_04.m2", + value = "firearm_2h_rifle_outlandraid_d_04.m2", }, { fileId = "145460", - value = "firearm_2h_rifle_outlandraid_d_05.m2", text = "firearm_2h_rifle_outlandraid_d_05.m2", + value = "firearm_2h_rifle_outlandraid_d_05.m2", }, { fileId = "145467", - value = "firearm_2h_rifle_outlandraid_d_06.m2", text = "firearm_2h_rifle_outlandraid_d_06.m2", + value = "firearm_2h_rifle_outlandraid_d_06.m2", }, { fileId = "145475", - value = "firearm_2h_rifle_pvpalliance_a_01.m2", text = "firearm_2h_rifle_pvpalliance_a_01.m2", + value = "firearm_2h_rifle_pvpalliance_a_01.m2", }, { fileId = "145477", - value = "firearm_2h_rifle_pvphorde_a_01.m2", text = "firearm_2h_rifle_pvphorde_a_01.m2", + value = "firearm_2h_rifle_pvphorde_a_01.m2", }, { fileId = "145479", - value = "firearm_2h_rifle_raid_moltencore.m2", text = "firearm_2h_rifle_raid_moltencore.m2", + value = "firearm_2h_rifle_raid_moltencore.m2", }, { fileId = "145482", - value = "firearm_2h_rifle_stratholme_d_01.m2", text = "firearm_2h_rifle_stratholme_d_01.m2", + value = "firearm_2h_rifle_stratholme_d_01.m2", }, { fileId = "145484", - value = "firearm_2h_rifle_sunwell_d_01.m2", text = "firearm_2h_rifle_sunwell_d_01.m2", + value = "firearm_2h_rifle_sunwell_d_01.m2", }, { fileId = "145502", - value = "firearm_2h_rifle_zulaman_d_01.m2", text = "firearm_2h_rifle_zulaman_d_01.m2", + value = "firearm_2h_rifle_zulaman_d_01.m2", }, { fileId = "145507", - value = "firearm_2h_rifle_zulgurub_d_01.m2", text = "firearm_2h_rifle_zulgurub_d_01.m2", + value = "firearm_2h_rifle_zulgurub_d_01.m2", }, { fileId = "145508", - value = "firearm_2h_shotgun_b_01.m2", text = "firearm_2h_shotgun_b_01.m2", + value = "firearm_2h_shotgun_b_01.m2", }, { fileId = "145521", - value = "glave_1h_blood_c_01.m2", text = "glave_1h_blood_c_01.m2", + value = "glave_1h_blood_c_01.m2", }, { fileId = "145523", - value = "glave_1h_dualblade_a_01.m2", text = "glave_1h_dualblade_a_01.m2", + value = "glave_1h_dualblade_a_01.m2", }, { fileId = "145527", - value = "glave_1h_dualblade_a_02.m2", text = "glave_1h_dualblade_a_02.m2", + value = "glave_1h_dualblade_a_02.m2", }, { fileId = "145531", - value = "glave_1h_dualblade_a_03.m2", text = "glave_1h_dualblade_a_03.m2", + value = "glave_1h_dualblade_a_03.m2", }, { fileId = "145535", - value = "glave_1h_dualblade_b_01.m2", text = "glave_1h_dualblade_b_01.m2", + value = "glave_1h_dualblade_b_01.m2", }, { fileId = "145539", - value = "glave_1h_dualblade_b_02.m2", text = "glave_1h_dualblade_b_02.m2", + value = "glave_1h_dualblade_b_02.m2", }, { fileId = "145545", - value = "glave_1h_dualblade_b_03.m2", text = "glave_1h_dualblade_b_03.m2", + value = "glave_1h_dualblade_b_03.m2", }, { fileId = "145550", - value = "glave_1h_dualblade_c_01.m2", text = "glave_1h_dualblade_c_01.m2", + value = "glave_1h_dualblade_c_01.m2", }, { fileId = "145554", - value = "glave_1h_dualblade_d_01.m2", text = "glave_1h_dualblade_d_01.m2", + value = "glave_1h_dualblade_d_01.m2", }, { fileId = "145558", - value = "glave_1h_dualblade_d_01left.m2", text = "glave_1h_dualblade_d_01left.m2", + value = "glave_1h_dualblade_d_01left.m2", }, { fileId = "145562", - value = "glave_1h_dualblade_d_02.m2", text = "glave_1h_dualblade_d_02.m2", + value = "glave_1h_dualblade_d_02.m2", }, { fileId = "145564", - value = "glave_1h_dualblade_d_02left.m2", text = "glave_1h_dualblade_d_02left.m2", + value = "glave_1h_dualblade_d_02left.m2", }, { fileId = "145566", - value = "glave_1h_magtheridon_d_01.m2", text = "glave_1h_magtheridon_d_01.m2", + value = "glave_1h_magtheridon_d_01.m2", }, { fileId = "145568", - value = "glave_1h_short_a_01.m2", text = "glave_1h_short_a_01.m2", + value = "glave_1h_short_a_01.m2", }, { fileId = "145573", - value = "glave_1h_short_a_02.m2", text = "glave_1h_short_a_02.m2", + value = "glave_1h_short_a_02.m2", }, { fileId = "145578", - value = "glave_1h_short_a_03.m2", text = "glave_1h_short_a_03.m2", + value = "glave_1h_short_a_03.m2", }, { fileId = "145583", - value = "glave_1h_short_b_01.m2", text = "glave_1h_short_b_01.m2", + value = "glave_1h_short_b_01.m2", }, { fileId = "145588", - value = "glave_1h_short_c_01.m2", text = "glave_1h_short_c_01.m2", + value = "glave_1h_short_c_01.m2", }, { fileId = "145592", - value = "glave_1h_short_c_02.m2", text = "glave_1h_short_c_02.m2", + value = "glave_1h_short_c_02.m2", }, { fileId = "145602", - value = "hammer_1h_epic_d_01.m2", text = "hammer_1h_epic_d_01.m2", + value = "hammer_1h_epic_d_01.m2", }, { fileId = "145603", - value = "hammer_1h_horde_a_01.m2", text = "hammer_1h_horde_a_01.m2", + value = "hammer_1h_horde_a_01.m2", }, { fileId = "145607", - value = "hammer_1h_horde_a_02.m2", text = "hammer_1h_horde_a_02.m2", + value = "hammer_1h_horde_a_02.m2", }, { fileId = "145612", - value = "hammer_1h_horde_a_03.m2", text = "hammer_1h_horde_a_03.m2", + value = "hammer_1h_horde_a_03.m2", }, { fileId = "145615", - value = "hammer_1h_horde_a_04.m2", text = "hammer_1h_horde_a_04.m2", + value = "hammer_1h_horde_a_04.m2", }, { fileId = "145621", - value = "hammer_1h_horde_b_01.m2", text = "hammer_1h_horde_b_01.m2", + value = "hammer_1h_horde_b_01.m2", }, { fileId = "145626", - value = "hammer_1h_horde_b_02.m2", text = "hammer_1h_horde_b_02.m2", + value = "hammer_1h_horde_b_02.m2", }, { fileId = "145632", - value = "hammer_1h_horde_d_02.m2", text = "hammer_1h_horde_d_02.m2", + value = "hammer_1h_horde_d_02.m2", }, { fileId = "145634", - value = "hammer_1h_maul_a_01.m2", text = "hammer_1h_maul_a_01.m2", + value = "hammer_1h_maul_a_01.m2", }, { fileId = "145638", - value = "hammer_1h_maul_a_02.m2", text = "hammer_1h_maul_a_02.m2", + value = "hammer_1h_maul_a_02.m2", }, { fileId = "145642", - value = "hammer_1h_maul_a_03.m2", text = "hammer_1h_maul_a_03.m2", + value = "hammer_1h_maul_a_03.m2", }, { fileId = "145646", - value = "hammer_1h_maul_b_01.m2", text = "hammer_1h_maul_b_01.m2", + value = "hammer_1h_maul_b_01.m2", }, { fileId = "145650", - value = "hammer_1h_maul_b_02.m2", text = "hammer_1h_maul_b_02.m2", + value = "hammer_1h_maul_b_02.m2", }, { fileId = "145654", - value = "hammer_1h_maul_b_03.m2", text = "hammer_1h_maul_b_03.m2", + value = "hammer_1h_maul_b_03.m2", }, { fileId = "145659", - value = "hammer_1h_pvpalliance_a_01.m2", text = "hammer_1h_pvpalliance_a_01.m2", + value = "hammer_1h_pvpalliance_a_01.m2", }, { fileId = "145663", - value = "hammer_1h_pvphorde_a_01.m2", text = "hammer_1h_pvphorde_a_01.m2", + value = "hammer_1h_pvphorde_a_01.m2", }, { fileId = "145666", - value = "hammer_1h_standard_a_01.m2", text = "hammer_1h_standard_a_01.m2", + value = "hammer_1h_standard_a_01.m2", }, { fileId = "145670", - value = "hammer_1h_standard_a_02.m2", text = "hammer_1h_standard_a_02.m2", + value = "hammer_1h_standard_a_02.m2", }, { fileId = "145674", - value = "hammer_1h_standard_a_03.m2", text = "hammer_1h_standard_a_03.m2", + value = "hammer_1h_standard_a_03.m2", }, { fileId = "145678", - value = "hammer_1h_standard_b_01.m2", text = "hammer_1h_standard_b_01.m2", + value = "hammer_1h_standard_b_01.m2", }, { fileId = "145682", - value = "hammer_1h_standard_b_02.m2", text = "hammer_1h_standard_b_02.m2", + value = "hammer_1h_standard_b_02.m2", }, { fileId = "145686", - value = "hammer_1h_standard_b_03.m2", text = "hammer_1h_standard_b_03.m2", + value = "hammer_1h_standard_b_03.m2", }, { fileId = "145690", - value = "hammer_1h_standard_c_01.m2", text = "hammer_1h_standard_c_01.m2", + value = "hammer_1h_standard_c_01.m2", }, { fileId = "145695", - value = "hammer_1h_standard_c_03thaurissan.m2", text = "hammer_1h_standard_c_03thaurissan.m2", + value = "hammer_1h_standard_c_03thaurissan.m2", }, { fileId = "145697", - value = "hammer_1h_standard_e_01.m2", text = "hammer_1h_standard_e_01.m2", + value = "hammer_1h_standard_e_01.m2", }, { fileId = "145699", - value = "hammer_1h_war_b_01holy.m2", text = "hammer_1h_war_b_01holy.m2", + value = "hammer_1h_war_b_01holy.m2", }, { fileId = "145700", - value = "hammer_1h_war_d_01.m2", text = "hammer_1h_war_d_01.m2", + value = "hammer_1h_war_d_01.m2", }, { fileId = "145702", - value = "hammer_2h_crystal_c_01.m2", text = "hammer_2h_crystal_c_01.m2", + value = "hammer_2h_crystal_c_01.m2", }, { fileId = "145707", - value = "hammer_2h_crystal_c_02.m2", text = "hammer_2h_crystal_c_02.m2", + value = "hammer_2h_crystal_c_02.m2", }, { fileId = "145712", - value = "hammer_2h_crystal_c_03.m2", text = "hammer_2h_crystal_c_03.m2", + value = "hammer_2h_crystal_c_03.m2", }, { fileId = "145718", - value = "hammer_2h_horde_a_01.m2", text = "hammer_2h_horde_a_01.m2", + value = "hammer_2h_horde_a_01.m2", }, { fileId = "145723", - value = "hammer_2h_horde_a_02.m2", text = "hammer_2h_horde_a_02.m2", + value = "hammer_2h_horde_a_02.m2", }, { fileId = "145725", - value = "hammer_2h_horde_a_03.m2", text = "hammer_2h_horde_a_03.m2", + value = "hammer_2h_horde_a_03.m2", }, { fileId = "145730", - value = "hammer_2h_horde_a_04.m2", text = "hammer_2h_horde_a_04.m2", + value = "hammer_2h_horde_a_04.m2", }, { fileId = "145732", - value = "hammer_2h_horde_b_01.m2", text = "hammer_2h_horde_b_01.m2", + value = "hammer_2h_horde_b_01.m2", }, { fileId = "145737", - value = "hammer_2h_horde_b_02.m2", text = "hammer_2h_horde_b_02.m2", + value = "hammer_2h_horde_b_02.m2", }, { fileId = "145742", - value = "hammer_2h_horde_b_03.m2", text = "hammer_2h_horde_b_03.m2", + value = "hammer_2h_horde_b_03.m2", }, { fileId = "145743", - value = "hammer_2h_horde_b_04.m2", text = "hammer_2h_horde_b_04.m2", + value = "hammer_2h_horde_b_04.m2", }, { fileId = "145745", - value = "hammer_2h_horde_c_01.m2", text = "hammer_2h_horde_c_01.m2", + value = "hammer_2h_horde_c_01.m2", }, { fileId = "145752", - value = "hammer_2h_horde_c_02.m2", text = "hammer_2h_horde_c_02.m2", + value = "hammer_2h_horde_c_02.m2", }, { fileId = "145758", - value = "hammer_2h_horde_c_03.m2", text = "hammer_2h_horde_c_03.m2", + value = "hammer_2h_horde_c_03.m2", }, { fileId = "145760", - value = "hammer_2h_horde_c_04.m2", text = "hammer_2h_horde_c_04.m2", + value = "hammer_2h_horde_c_04.m2", }, { fileId = "145764", - value = "hammer_2h_maul_a_01.m2", text = "hammer_2h_maul_a_01.m2", + value = "hammer_2h_maul_a_01.m2", }, { fileId = "145768", - value = "hammer_2h_maul_a_02.m2", text = "hammer_2h_maul_a_02.m2", + value = "hammer_2h_maul_a_02.m2", }, { fileId = "145772", - value = "hammer_2h_maul_a_03.m2", text = "hammer_2h_maul_a_03.m2", + value = "hammer_2h_maul_a_03.m2", }, { fileId = "145776", - value = "hammer_2h_maul_b_01.m2", text = "hammer_2h_maul_b_01.m2", + value = "hammer_2h_maul_b_01.m2", }, { fileId = "145780", - value = "hammer_2h_maul_b_02.m2", text = "hammer_2h_maul_b_02.m2", + value = "hammer_2h_maul_b_02.m2", }, { fileId = "145785", - value = "hammer_2h_maul_b_03.m2", text = "hammer_2h_maul_b_03.m2", + value = "hammer_2h_maul_b_03.m2", }, { fileId = "145790", - value = "hammer_2h_pvpalliance_a_01.m2", text = "hammer_2h_pvpalliance_a_01.m2", + value = "hammer_2h_pvpalliance_a_01.m2", }, { fileId = "145794", - value = "hammer_2h_pvphorde_a_01.m2", text = "hammer_2h_pvphorde_a_01.m2", + value = "hammer_2h_pvphorde_a_01.m2", }, { fileId = "145797", - value = "hammer_2h_standard_d_01.m2", text = "hammer_2h_standard_d_01.m2", + value = "hammer_2h_standard_d_01.m2", }, { fileId = "145801", - value = "hammer_2h_standard_d_02.m2", text = "hammer_2h_standard_d_02.m2", + value = "hammer_2h_standard_d_02.m2", }, { fileId = "145802", - value = "hammer_2h_standard_d_03.m2", text = "hammer_2h_standard_d_03.m2", + value = "hammer_2h_standard_d_03.m2", }, { fileId = "145809", - value = "hammer_2h_standard_e_01.m2", text = "hammer_2h_standard_e_01.m2", + value = "hammer_2h_standard_e_01.m2", }, { fileId = "145810", - value = "hammer_2h_war_a_01.m2", text = "hammer_2h_war_a_01.m2", + value = "hammer_2h_war_a_01.m2", }, { fileId = "145815", - value = "hammer_2h_war_b_01holy.m2", text = "hammer_2h_war_b_01holy.m2", + value = "hammer_2h_war_b_01holy.m2", }, { fileId = "145817", - value = "hand_1h_ahnqiraj_d_01.m2", text = "hand_1h_ahnqiraj_d_01.m2", + value = "hand_1h_ahnqiraj_d_01.m2", }, { fileId = "145819", - value = "hand_1h_ahnqiraj_d_02.m2", text = "hand_1h_ahnqiraj_d_02.m2", + value = "hand_1h_ahnqiraj_d_02.m2", }, { fileId = "145821", - value = "hand_1h_ahnqiraj_d_03.m2", text = "hand_1h_ahnqiraj_d_03.m2", + value = "hand_1h_ahnqiraj_d_03.m2", }, { fileId = "145824", - value = "hand_1h_auchindoun_d_01left.m2", text = "hand_1h_auchindoun_d_01left.m2", + value = "hand_1h_auchindoun_d_01left.m2", }, { fileId = "145825", - value = "hand_1h_auchindoun_d_01right.m2", text = "hand_1h_auchindoun_d_01right.m2", + value = "hand_1h_auchindoun_d_01right.m2", }, { fileId = "145827", - value = "hand_1h_blackwing_a_01.m2", text = "hand_1h_blackwing_a_01.m2", + value = "hand_1h_blackwing_a_01.m2", }, { fileId = "145828", - value = "hand_1h_blackwing_a_01left.m2", text = "hand_1h_blackwing_a_01left.m2", + value = "hand_1h_blackwing_a_01left.m2", }, { fileId = "145830", - value = "hand_1h_blackwing_a_02.m2", text = "hand_1h_blackwing_a_02.m2", + value = "hand_1h_blackwing_a_02.m2", }, { fileId = "145831", - value = "hand_1h_blackwing_a_02left.m2", text = "hand_1h_blackwing_a_02left.m2", + value = "hand_1h_blackwing_a_02left.m2", }, { fileId = "145832", - value = "hand_1h_claw_a_01.m2", text = "hand_1h_claw_a_01.m2", + value = "hand_1h_claw_a_01.m2", }, { fileId = "145834", - value = "hand_1h_claw_a_01left.m2", text = "hand_1h_claw_a_01left.m2", + value = "hand_1h_claw_a_01left.m2", }, { fileId = "145837", - value = "hand_1h_claw_a_02.m2", text = "hand_1h_claw_a_02.m2", + value = "hand_1h_claw_a_02.m2", }, { fileId = "145840", - value = "hand_1h_claw_a_02left.m2", text = "hand_1h_claw_a_02left.m2", + value = "hand_1h_claw_a_02left.m2", }, { fileId = "145842", - value = "hand_1h_claw_b_01.m2", text = "hand_1h_claw_b_01.m2", + value = "hand_1h_claw_b_01.m2", }, { fileId = "145844", - value = "hand_1h_claw_b_01left.m2", text = "hand_1h_claw_b_01left.m2", + value = "hand_1h_claw_b_01left.m2", }, { fileId = "145850", - value = "hand_1h_kargath_d_01left.m2", text = "hand_1h_kargath_d_01left.m2", + value = "hand_1h_kargath_d_01left.m2", }, { fileId = "145853", - value = "hand_1h_kargath_d_01right.m2", text = "hand_1h_kargath_d_01right.m2", + value = "hand_1h_kargath_d_01right.m2", }, { fileId = "145855", - value = "hand_1h_knuckle_a_01.m2", text = "hand_1h_knuckle_a_01.m2", + value = "hand_1h_knuckle_a_01.m2", }, { fileId = "145859", - value = "hand_1h_knuckle_b_01.m2", text = "hand_1h_knuckle_b_01.m2", + value = "hand_1h_knuckle_b_01.m2", }, { fileId = "145864", - value = "hand_1h_naxxramas_d_01.m2", text = "hand_1h_naxxramas_d_01.m2", + value = "hand_1h_naxxramas_d_01.m2", }, { fileId = "145873", - value = "hand_1h_outlandpvp_d_01left.m2", text = "hand_1h_outlandpvp_d_01left.m2", + value = "hand_1h_outlandpvp_d_01left.m2", }, { fileId = "145877", - value = "hand_1h_outlandpvp_d_01right.m2", text = "hand_1h_outlandpvp_d_01right.m2", + value = "hand_1h_outlandpvp_d_01right.m2", }, { fileId = "145882", - value = "hand_1h_outlandraid_d_01left.m2", text = "hand_1h_outlandraid_d_01left.m2", + value = "hand_1h_outlandraid_d_01left.m2", }, { fileId = "145883", - value = "hand_1h_outlandraid_d_01right.m2", text = "hand_1h_outlandraid_d_01right.m2", + value = "hand_1h_outlandraid_d_01right.m2", }, { fileId = "145885", - value = "hand_1h_outlandraid_d_02left.m2", text = "hand_1h_outlandraid_d_02left.m2", + value = "hand_1h_outlandraid_d_02left.m2", }, { fileId = "145889", - value = "hand_1h_outlandraid_d_02right.m2", text = "hand_1h_outlandraid_d_02right.m2", + value = "hand_1h_outlandraid_d_02right.m2", }, { fileId = "145894", - value = "hand_1h_outlandraid_d_03left.m2", text = "hand_1h_outlandraid_d_03left.m2", + value = "hand_1h_outlandraid_d_03left.m2", }, { fileId = "145896", - value = "hand_1h_outlandraid_d_03right.m2", text = "hand_1h_outlandraid_d_03right.m2", + value = "hand_1h_outlandraid_d_03right.m2", }, { fileId = "145901", - value = "hand_1h_outlandraid_d_04left.m2", text = "hand_1h_outlandraid_d_04left.m2", + value = "hand_1h_outlandraid_d_04left.m2", }, { fileId = "145902", - value = "hand_1h_outlandraid_d_04right.m2", text = "hand_1h_outlandraid_d_04right.m2", + value = "hand_1h_outlandraid_d_04right.m2", }, { fileId = "145904", - value = "hand_1h_outlandraid_d_05left.m2", text = "hand_1h_outlandraid_d_05left.m2", + value = "hand_1h_outlandraid_d_05left.m2", }, { fileId = "145905", - value = "hand_1h_outlandraid_d_05right.m2", text = "hand_1h_outlandraid_d_05right.m2", + value = "hand_1h_outlandraid_d_05right.m2", }, { fileId = "145907", - value = "hand_1h_pvpalliance_a_01.m2", text = "hand_1h_pvpalliance_a_01.m2", + value = "hand_1h_pvpalliance_a_01.m2", }, { fileId = "145908", - value = "hand_1h_pvpalliance_a_01left.m2", text = "hand_1h_pvpalliance_a_01left.m2", + value = "hand_1h_pvpalliance_a_01left.m2", }, { fileId = "145916", - value = "hand_1h_raid_d_01left.m2", text = "hand_1h_raid_d_01left.m2", + value = "hand_1h_raid_d_01left.m2", }, { fileId = "145917", - value = "hand_1h_raid_d_01right.m2", text = "hand_1h_raid_d_01right.m2", + value = "hand_1h_raid_d_01right.m2", }, { fileId = "145924", - value = "hand_1h_raid_d_02left.m2", text = "hand_1h_raid_d_02left.m2", + value = "hand_1h_raid_d_02left.m2", }, { fileId = "145925", - value = "hand_1h_raid_d_02right.m2", text = "hand_1h_raid_d_02right.m2", + value = "hand_1h_raid_d_02right.m2", }, { fileId = "145931", - value = "hand_1h_raid_d_03left.m2", text = "hand_1h_raid_d_03left.m2", + value = "hand_1h_raid_d_03left.m2", }, { fileId = "145932", - value = "hand_1h_raid_d_03right.m2", text = "hand_1h_raid_d_03right.m2", + value = "hand_1h_raid_d_03right.m2", }, { fileId = "145936", - value = "hand_1h_shaman_d_01left.m2", text = "hand_1h_shaman_d_01left.m2", + value = "hand_1h_shaman_d_01left.m2", }, { fileId = "145938", - value = "hand_1h_shaman_d_01right.m2", text = "hand_1h_shaman_d_01right.m2", + value = "hand_1h_shaman_d_01right.m2", }, { fileId = "145939", - value = "hand_1h_sunwell_c_01.m2", text = "hand_1h_sunwell_c_01.m2", + value = "hand_1h_sunwell_c_01.m2", }, { fileId = "145941", - value = "hand_1h_sunwell_c_01left.m2", text = "hand_1h_sunwell_c_01left.m2", + value = "hand_1h_sunwell_c_01left.m2", }, { fileId = "145944", - value = "hand_1h_sunwell_c_01right.m2", text = "hand_1h_sunwell_c_01right.m2", + value = "hand_1h_sunwell_c_01right.m2", }, { fileId = "145950", - value = "hand_1h_sunwell_d_01left.m2", text = "hand_1h_sunwell_d_01left.m2", + value = "hand_1h_sunwell_d_01left.m2", }, { fileId = "145951", - value = "hand_1h_sunwell_d_01right.m2", text = "hand_1h_sunwell_d_01right.m2", + value = "hand_1h_sunwell_d_01right.m2", }, { fileId = "145957", - value = "hand_1h_sunwell_d_02left.m2", text = "hand_1h_sunwell_d_02left.m2", + value = "hand_1h_sunwell_d_02left.m2", }, { fileId = "145958", - value = "hand_1h_sunwell_d_02right.m2", text = "hand_1h_sunwell_d_02right.m2", + value = "hand_1h_sunwell_d_02right.m2", }, { fileId = "145966", - value = "hand_1h_zulaman_d_01left.m2", text = "hand_1h_zulaman_d_01left.m2", + value = "hand_1h_zulaman_d_01left.m2", }, { fileId = "145968", - value = "hand_1h_zulaman_d_01right.m2", text = "hand_1h_zulaman_d_01right.m2", + value = "hand_1h_zulaman_d_01right.m2", }, { fileId = "145971", - value = "hand_1h_zulaman_d_02left.m2", text = "hand_1h_zulaman_d_02left.m2", + value = "hand_1h_zulaman_d_02left.m2", }, { fileId = "145974", - value = "hand_1h_zulaman_d_02right.m2", text = "hand_1h_zulaman_d_02right.m2", + value = "hand_1h_zulaman_d_02right.m2", }, { fileId = "145976", - value = "hand_1h_zulgurub_d_01.m2", text = "hand_1h_zulgurub_d_01.m2", + value = "hand_1h_zulgurub_d_01.m2", }, { fileId = "145977", - value = "hand_1h_zulgurub_d_01left.m2", text = "hand_1h_zulgurub_d_01left.m2", + value = "hand_1h_zulgurub_d_01left.m2", }, { fileId = "145978", - value = "hand_1h_zulgurub_d_02.m2", text = "hand_1h_zulgurub_d_02.m2", + value = "hand_1h_zulgurub_d_02.m2", }, { fileId = "145980", - value = "hand_1h_zulgurub_d_02left.m2", text = "hand_1h_zulgurub_d_02left.m2", + value = "hand_1h_zulgurub_d_02left.m2", }, { fileId = "145982", - value = "hand_lh_pvphorde_a_01.m2", text = "hand_lh_pvphorde_a_01.m2", + value = "hand_lh_pvphorde_a_01.m2", }, { fileId = "145983", - value = "hand_rh_pvphorde_a_01.m2", text = "hand_rh_pvphorde_a_01.m2", + value = "hand_rh_pvphorde_a_01.m2", }, { fileId = "145994", - value = "knife_1h_ahnqiraj_d_01.m2", text = "knife_1h_ahnqiraj_d_01.m2", + value = "knife_1h_ahnqiraj_d_01.m2", }, { fileId = "145995", - value = "knife_1h_ahnqiraj_d_02.m2", text = "knife_1h_ahnqiraj_d_02.m2", + value = "knife_1h_ahnqiraj_d_02.m2", }, { fileId = "145996", - value = "knife_1h_ahnqiraj_d_03.m2", text = "knife_1h_ahnqiraj_d_03.m2", + value = "knife_1h_ahnqiraj_d_03.m2", }, { fileId = "145997", - value = "knife_1h_ahnqiraj_d_04.m2", text = "knife_1h_ahnqiraj_d_04.m2", + value = "knife_1h_ahnqiraj_d_04.m2", }, { fileId = "145998", - value = "knife_1h_blacktemple_d_01.m2", text = "knife_1h_blacktemple_d_01.m2", + value = "knife_1h_blacktemple_d_01.m2", }, { fileId = "146003", - value = "knife_1h_blacktemple_d_02.m2", text = "knife_1h_blacktemple_d_02.m2", + value = "knife_1h_blacktemple_d_02.m2", }, { fileId = "146007", - value = "knife_1h_blacktemple_d_03.m2", text = "knife_1h_blacktemple_d_03.m2", + value = "knife_1h_blacktemple_d_03.m2", }, { fileId = "146009", - value = "knife_1h_blackwing_a_01.m2", text = "knife_1h_blackwing_a_01.m2", + value = "knife_1h_blackwing_a_01.m2", }, { fileId = "146011", - value = "knife_1h_blackwing_a_02.m2", text = "knife_1h_blackwing_a_02.m2", + value = "knife_1h_blackwing_a_02.m2", }, { fileId = "146013", - value = "knife_1h_blood_a_01.m2", text = "knife_1h_blood_a_01.m2", + value = "knife_1h_blood_a_01.m2", }, { fileId = "146018", - value = "knife_1h_blood_a_02.m2", text = "knife_1h_blood_a_02.m2", + value = "knife_1h_blood_a_02.m2", }, { fileId = "146021", - value = "knife_1h_blood_a_03.m2", text = "knife_1h_blood_a_03.m2", + value = "knife_1h_blood_a_03.m2", }, { fileId = "146025", - value = "knife_1h_blood_a_04.m2", text = "knife_1h_blood_a_04.m2", + value = "knife_1h_blood_a_04.m2", }, { fileId = "146029", - value = "knife_1h_blood_a_05.m2", text = "knife_1h_blood_a_05.m2", + value = "knife_1h_blood_a_05.m2", }, { fileId = "146033", - value = "knife_1h_blood_b_01.m2", text = "knife_1h_blood_b_01.m2", + value = "knife_1h_blood_b_01.m2", }, { fileId = "146037", - value = "knife_1h_blood_b_02.m2", text = "knife_1h_blood_b_02.m2", + value = "knife_1h_blood_b_02.m2", }, { fileId = "146042", - value = "knife_1h_caverns_d_01.m2", text = "knife_1h_caverns_d_01.m2", + value = "knife_1h_caverns_d_01.m2", }, { fileId = "146043", - value = "knife_1h_cleaver_a_01.m2", text = "knife_1h_cleaver_a_01.m2", + value = "knife_1h_cleaver_a_01.m2", }, { fileId = "146046", - value = "knife_1h_coilfang_d_01.m2", text = "knife_1h_coilfang_d_01.m2", + value = "knife_1h_coilfang_d_01.m2", }, { fileId = "146052", - value = "knife_1h_coilfang_d_02.m2", text = "knife_1h_coilfang_d_02.m2", + value = "knife_1h_coilfang_d_02.m2", }, { fileId = "146068", - value = "knife_1h_dagger_a_01.m2", text = "knife_1h_dagger_a_01.m2", + value = "knife_1h_dagger_a_01.m2", }, { fileId = "146072", - value = "knife_1h_dagger_a_02.m2", text = "knife_1h_dagger_a_02.m2", + value = "knife_1h_dagger_a_02.m2", }, { fileId = "146076", - value = "knife_1h_dagger_a_03.m2", text = "knife_1h_dagger_a_03.m2", + value = "knife_1h_dagger_a_03.m2", }, { fileId = "146081", - value = "knife_1h_dagger_a_04.m2", text = "knife_1h_dagger_a_04.m2", + value = "knife_1h_dagger_a_04.m2", }, { fileId = "146086", - value = "knife_1h_dagger_b_01.m2", text = "knife_1h_dagger_b_01.m2", + value = "knife_1h_dagger_b_01.m2", }, { fileId = "146090", - value = "knife_1h_dagger_b_02.m2", text = "knife_1h_dagger_b_02.m2", + value = "knife_1h_dagger_b_02.m2", }, { fileId = "146094", - value = "knife_1h_dagger_b_03.m2", text = "knife_1h_dagger_b_03.m2", + value = "knife_1h_dagger_b_03.m2", }, { fileId = "146101", - value = "knife_1h_dagger_b_04.m2", text = "knife_1h_dagger_b_04.m2", + value = "knife_1h_dagger_b_04.m2", }, { fileId = "146107", - value = "knife_1h_dagger_b_05.m2", text = "knife_1h_dagger_b_05.m2", + value = "knife_1h_dagger_b_05.m2", }, { fileId = "146112", - value = "knife_1h_dagger_b_06.m2", text = "knife_1h_dagger_b_06.m2", + value = "knife_1h_dagger_b_06.m2", }, { fileId = "146122", - value = "knife_1h_draenei_a_01.m2", text = "knife_1h_draenei_a_01.m2", + value = "knife_1h_draenei_a_01.m2", }, { fileId = "146128", - value = "knife_1h_draenei_a_02.m2", text = "knife_1h_draenei_a_02.m2", + value = "knife_1h_draenei_a_02.m2", }, { fileId = "146134", - value = "knife_1h_draenei_a_03.m2", text = "knife_1h_draenei_a_03.m2", + value = "knife_1h_draenei_a_03.m2", }, { fileId = "146143", - value = "knife_1h_epic_a_03.m2", text = "knife_1h_epic_a_03.m2", + value = "knife_1h_epic_a_03.m2", }, { fileId = "146144", - value = "knife_1h_epic_a_04.m2", text = "knife_1h_epic_a_04.m2", + value = "knife_1h_epic_a_04.m2", }, { fileId = "146146", - value = "knife_1h_epic_a_05.m2", text = "knife_1h_epic_a_05.m2", + value = "knife_1h_epic_a_05.m2", }, { fileId = "146148", - value = "knife_1h_exotic_a_01.m2", text = "knife_1h_exotic_a_01.m2", + value = "knife_1h_exotic_a_01.m2", }, { fileId = "146152", - value = "knife_1h_exotic_a_02.m2", text = "knife_1h_exotic_a_02.m2", + value = "knife_1h_exotic_a_02.m2", }, { fileId = "146156", - value = "knife_1h_exotic_b_01.m2", text = "knife_1h_exotic_b_01.m2", + value = "knife_1h_exotic_b_01.m2", }, { fileId = "146160", - value = "knife_1h_exotic_b_02.m2", text = "knife_1h_exotic_b_02.m2", + value = "knife_1h_exotic_b_02.m2", }, { fileId = "146164", - value = "knife_1h_hellfire_c_01.m2", text = "knife_1h_hellfire_c_01.m2", + value = "knife_1h_hellfire_c_01.m2", }, { fileId = "146170", - value = "knife_1h_horde_a_01.m2", text = "knife_1h_horde_a_01.m2", + value = "knife_1h_horde_a_01.m2", }, { fileId = "146174", - value = "knife_1h_hotpoker_a_01.m2", text = "knife_1h_hotpoker_a_01.m2", + value = "knife_1h_hotpoker_a_01.m2", }, { fileId = "146176", - value = "knife_1h_hunting_a_01.m2", text = "knife_1h_hunting_a_01.m2", + value = "knife_1h_hunting_a_01.m2", }, { fileId = "146180", - value = "knife_1h_hunting_a_02.m2", text = "knife_1h_hunting_a_02.m2", + value = "knife_1h_hunting_a_02.m2", }, { fileId = "146184", - value = "knife_1h_hunting_b_01.m2", text = "knife_1h_hunting_b_01.m2", + value = "knife_1h_hunting_b_01.m2", }, { fileId = "146188", - value = "knife_1h_hunting_b_02.m2", text = "knife_1h_hunting_b_02.m2", + value = "knife_1h_hunting_b_02.m2", }, { fileId = "146192", - value = "knife_1h_hyjal_d_01.m2", text = "knife_1h_hyjal_d_01.m2", + value = "knife_1h_hyjal_d_01.m2", }, { fileId = "146197", - value = "knife_1h_hyjal_d_02.m2", text = "knife_1h_hyjal_d_02.m2", + value = "knife_1h_hyjal_d_02.m2", }, { fileId = "146203", - value = "knife_1h_katana_a_01.m2", text = "knife_1h_katana_a_01.m2", + value = "knife_1h_katana_a_01.m2", }, { fileId = "146207", - value = "knife_1h_katana_b_01.m2", text = "knife_1h_katana_b_01.m2", + value = "knife_1h_katana_b_01.m2", }, { fileId = "146211", - value = "knife_1h_korean_a_01.m2", text = "knife_1h_korean_a_01.m2", + value = "knife_1h_korean_a_01.m2", }, { fileId = "146216", - value = "knife_1h_mage_d_01.m2", text = "knife_1h_mage_d_01.m2", + value = "knife_1h_mage_d_01.m2", }, { fileId = "146221", - value = "knife_1h_naxxramas_d_01.m2", text = "knife_1h_naxxramas_d_01.m2", + value = "knife_1h_naxxramas_d_01.m2", }, { fileId = "146273", - value = "knife_1h_outlandraid_d_01.m2", text = "knife_1h_outlandraid_d_01.m2", + value = "knife_1h_outlandraid_d_01.m2", }, { fileId = "146279", - value = "knife_1h_pvpalliance_a_01.m2", text = "knife_1h_pvpalliance_a_01.m2", + value = "knife_1h_pvpalliance_a_01.m2", }, { fileId = "146284", - value = "knife_1h_pvphorde_a_01.m2", text = "knife_1h_pvphorde_a_01.m2", + value = "knife_1h_pvphorde_a_01.m2", }, { fileId = "146291", - value = "knife_1h_raid_d_01.m2", text = "knife_1h_raid_d_01.m2", + value = "knife_1h_raid_d_01.m2", }, { fileId = "146293", - value = "knife_1h_raid_d_02.m2", text = "knife_1h_raid_d_02.m2", + value = "knife_1h_raid_d_02.m2", }, { fileId = "146295", - value = "knife_1h_raid_d_03.m2", text = "knife_1h_raid_d_03.m2", + value = "knife_1h_raid_d_03.m2", }, { fileId = "146297", - value = "knife_1h_raid_d_04.m2", text = "knife_1h_raid_d_04.m2", + value = "knife_1h_raid_d_04.m2", }, { fileId = "146299", - value = "knife_1h_raid_d_05.m2", text = "knife_1h_raid_d_05.m2", + value = "knife_1h_raid_d_05.m2", }, { fileId = "146301", - value = "knife_1h_rogue_d_01.m2", text = "knife_1h_rogue_d_01.m2", + value = "knife_1h_rogue_d_01.m2", }, { fileId = "146306", - value = "knife_1h_standard_a_01.m2", text = "knife_1h_standard_a_01.m2", + value = "knife_1h_standard_a_01.m2", }, { fileId = "146309", - value = "knife_1h_stratholme_d_01.m2", text = "knife_1h_stratholme_d_01.m2", + value = "knife_1h_stratholme_d_01.m2", }, { fileId = "146311", - value = "knife_1h_stratholme_d_02.m2", text = "knife_1h_stratholme_d_02.m2", + value = "knife_1h_stratholme_d_02.m2", }, { fileId = "146313", - value = "knife_1h_stratholme_d_03.m2", text = "knife_1h_stratholme_d_03.m2", + value = "knife_1h_stratholme_d_03.m2", }, { fileId = "146315", - value = "knife_1h_sunwell_c_01.m2", text = "knife_1h_sunwell_c_01.m2", + value = "knife_1h_sunwell_c_01.m2", }, { fileId = "146319", - value = "knife_1h_sunwell_c_02.m2", text = "knife_1h_sunwell_c_02.m2", + value = "knife_1h_sunwell_c_02.m2", }, { fileId = "146324", - value = "knife_1h_sunwell_d_01.m2", text = "knife_1h_sunwell_d_01.m2", + value = "knife_1h_sunwell_d_01.m2", }, { fileId = "146330", - value = "knife_1h_sunwell_d_02.m2", text = "knife_1h_sunwell_d_02.m2", + value = "knife_1h_sunwell_d_02.m2", }, { fileId = "146335", - value = "knife_1h_sunwell_d_03.m2", text = "knife_1h_sunwell_d_03.m2", + value = "knife_1h_sunwell_d_03.m2", }, { fileId = "146340", - value = "knife_1h_sunwell_d_04.m2", text = "knife_1h_sunwell_d_04.m2", + value = "knife_1h_sunwell_d_04.m2", }, { fileId = "146345", - value = "knife_1h_tarantula_b_01.m2", text = "knife_1h_tarantula_b_01.m2", + value = "knife_1h_tarantula_b_01.m2", }, { fileId = "146369", - value = "knife_1h_vulture_a_01.m2", text = "knife_1h_vulture_a_01.m2", + value = "knife_1h_vulture_a_01.m2", }, { fileId = "146376", - value = "knife_1h_zulaman_d_01.m2", text = "knife_1h_zulaman_d_01.m2", + value = "knife_1h_zulaman_d_01.m2", }, { fileId = "146381", - value = "knife_1h_zulaman_d_02.m2", text = "knife_1h_zulaman_d_02.m2", + value = "knife_1h_zulaman_d_02.m2", }, { fileId = "146386", - value = "knife_1h_zulaman_d_03.m2", text = "knife_1h_zulaman_d_03.m2", + value = "knife_1h_zulaman_d_03.m2", }, { fileId = "146392", - value = "knife_1h_zulaman_d_04.m2", text = "knife_1h_zulaman_d_04.m2", + value = "knife_1h_zulaman_d_04.m2", }, { fileId = "146398", - value = "knife_1h_zulgurub_d_01.m2", text = "knife_1h_zulgurub_d_01.m2", + value = "knife_1h_zulgurub_d_01.m2", }, { fileId = "146404", - value = "knife_1h_zulgurub_d_02.m2", text = "knife_1h_zulgurub_d_02.m2", + value = "knife_1h_zulgurub_d_02.m2", }, { fileId = "146409", - value = "knife_outlandraid_d_02.m2", text = "knife_outlandraid_d_02.m2", + value = "knife_outlandraid_d_02.m2", }, { fileId = "146415", - value = "knife_outlandraid_d_03.m2", text = "knife_outlandraid_d_03.m2", + value = "knife_outlandraid_d_03.m2", }, { fileId = "146421", - value = "knife_outlandraid_d_04.m2", text = "knife_outlandraid_d_04.m2", + value = "knife_outlandraid_d_04.m2", }, { fileId = "146429", - value = "knife_outlandraid_d_05.m2", text = "knife_outlandraid_d_05.m2", + value = "knife_outlandraid_d_05.m2", }, { fileId = "146436", - value = "knife_outlandraid_d_06.m2", text = "knife_outlandraid_d_06.m2", + value = "knife_outlandraid_d_06.m2", }, { fileId = "146442", - value = "knife_outlandraid_d_07.m2", text = "knife_outlandraid_d_07.m2", + value = "knife_outlandraid_d_07.m2", }, { fileId = "146448", - value = "knife_outlandraid_d_08.m2", text = "knife_outlandraid_d_08.m2", + value = "knife_outlandraid_d_08.m2", }, { fileId = "146464", - value = "mace_1h_ahnqiraj_d_01.m2", text = "mace_1h_ahnqiraj_d_01.m2", + value = "mace_1h_ahnqiraj_d_01.m2", }, { fileId = "146466", - value = "mace_1h_ahnqiraj_d_02.m2", text = "mace_1h_ahnqiraj_d_02.m2", + value = "mace_1h_ahnqiraj_d_02.m2", }, { fileId = "146468", - value = "mace_1h_ahnqiraj_d_03.m2", text = "mace_1h_ahnqiraj_d_03.m2", + value = "mace_1h_ahnqiraj_d_03.m2", }, { fileId = "146470", - value = "mace_1h_auchindoun_d_01.m2", text = "mace_1h_auchindoun_d_01.m2", + value = "mace_1h_auchindoun_d_01.m2", }, { fileId = "146472", - value = "mace_1h_blacksmithing_d_01.m2", text = "mace_1h_blacksmithing_d_01.m2", + value = "mace_1h_blacksmithing_d_01.m2", }, { fileId = "146477", - value = "mace_1h_blacksmithing_d_02.m2", text = "mace_1h_blacksmithing_d_02.m2", + value = "mace_1h_blacksmithing_d_02.m2", }, { fileId = "146482", - value = "mace_1h_blacksmithing_d_03.m2", text = "mace_1h_blacksmithing_d_03.m2", + value = "mace_1h_blacksmithing_d_03.m2", }, { fileId = "146486", - value = "mace_1h_blacktemple_d_01.m2", text = "mace_1h_blacktemple_d_01.m2", + value = "mace_1h_blacktemple_d_01.m2", }, { fileId = "146491", - value = "mace_1h_blacktemple_d_02.m2", text = "mace_1h_blacktemple_d_02.m2", + value = "mace_1h_blacktemple_d_02.m2", }, { fileId = "146494", - value = "mace_1h_blackwing_a_01.m2", text = "mace_1h_blackwing_a_01.m2", + value = "mace_1h_blackwing_a_01.m2", }, { fileId = "146497", - value = "mace_1h_blackwing_a_02.m2", text = "mace_1h_blackwing_a_02.m2", + value = "mace_1h_blackwing_a_02.m2", }, { fileId = "146499", - value = "mace_1h_blood_a_01.m2", text = "mace_1h_blood_a_01.m2", + value = "mace_1h_blood_a_01.m2", }, { fileId = "146501", - value = "mace_1h_blood_a_02.m2", text = "mace_1h_blood_a_02.m2", + value = "mace_1h_blood_a_02.m2", }, { fileId = "146504", - value = "mace_1h_coilfang_d_01.m2", text = "mace_1h_coilfang_d_01.m2", + value = "mace_1h_coilfang_d_01.m2", }, { fileId = "146516", - value = "mace_1h_doomhammer_d_01.m2", text = "mace_1h_doomhammer_d_01.m2", + value = "mace_1h_doomhammer_d_01.m2", }, { fileId = "146519", - value = "mace_1h_draenei_a_01.m2", text = "mace_1h_draenei_a_01.m2", + value = "mace_1h_draenei_a_01.m2", }, { fileId = "146525", - value = "mace_1h_draenei_a_02.m2", text = "mace_1h_draenei_a_02.m2", + value = "mace_1h_draenei_a_02.m2", }, { fileId = "146531", - value = "mace_1h_flanged_a_01.m2", text = "mace_1h_flanged_a_01.m2", + value = "mace_1h_flanged_a_01.m2", }, { fileId = "146533", - value = "mace_1h_flanged_a_02.m2", text = "mace_1h_flanged_a_02.m2", + value = "mace_1h_flanged_a_02.m2", }, { fileId = "146537", - value = "mace_1h_flanged_a_03.m2", text = "mace_1h_flanged_a_03.m2", + value = "mace_1h_flanged_a_03.m2", }, { fileId = "146541", - value = "mace_1h_flanged_b_01.m2", text = "mace_1h_flanged_b_01.m2", + value = "mace_1h_flanged_b_01.m2", }, { fileId = "146543", - value = "mace_1h_flanged_b_02.m2", text = "mace_1h_flanged_b_02.m2", + value = "mace_1h_flanged_b_02.m2", }, { fileId = "146546", - value = "mace_1h_flanged_d_01.m2", text = "mace_1h_flanged_d_01.m2", + value = "mace_1h_flanged_d_01.m2", }, { fileId = "146549", - value = "mace_1h_hellfire_d_01.m2", text = "mace_1h_hellfire_d_01.m2", + value = "mace_1h_hellfire_d_01.m2", }, { fileId = "146550", - value = "mace_1h_hyjal_d_01.m2", text = "mace_1h_hyjal_d_01.m2", + value = "mace_1h_hyjal_d_01.m2", }, { fileId = "146557", - value = "mace_1h_naxxramas_d_01.m2", text = "mace_1h_naxxramas_d_01.m2", + value = "mace_1h_naxxramas_d_01.m2", }, { fileId = "146559", - value = "mace_1h_naxxramas_d_02.m2", text = "mace_1h_naxxramas_d_02.m2", + value = "mace_1h_naxxramas_d_02.m2", }, { fileId = "146561", - value = "mace_1h_naxxramas_d_03.m2", text = "mace_1h_naxxramas_d_03.m2", + value = "mace_1h_naxxramas_d_03.m2", }, { fileId = "146608", - value = "mace_1h_outlandpvp_d_01.m2", text = "mace_1h_outlandpvp_d_01.m2", + value = "mace_1h_outlandpvp_d_01.m2", }, { fileId = "146615", - value = "mace_1h_outlandraid_d_01.m2", text = "mace_1h_outlandraid_d_01.m2", + value = "mace_1h_outlandraid_d_01.m2", }, { fileId = "146617", - value = "mace_1h_outlandraid_d_02.m2", text = "mace_1h_outlandraid_d_02.m2", + value = "mace_1h_outlandraid_d_02.m2", }, { fileId = "146619", - value = "mace_1h_outlandraid_d_03.m2", text = "mace_1h_outlandraid_d_03.m2", + value = "mace_1h_outlandraid_d_03.m2", }, { fileId = "146621", - value = "mace_1h_outlandraid_d_04.m2", text = "mace_1h_outlandraid_d_04.m2", + value = "mace_1h_outlandraid_d_04.m2", }, { fileId = "146622", - value = "mace_1h_outlandraid_d_05.m2", text = "mace_1h_outlandraid_d_05.m2", + value = "mace_1h_outlandraid_d_05.m2", }, { fileId = "146624", - value = "mace_1h_outlandraid_d_06.m2", text = "mace_1h_outlandraid_d_06.m2", + value = "mace_1h_outlandraid_d_06.m2", }, { fileId = "146625", - value = "mace_1h_outlandraid_d_07.m2", text = "mace_1h_outlandraid_d_07.m2", + value = "mace_1h_outlandraid_d_07.m2", }, { fileId = "146630", - value = "mace_1h_outlandraid_d_08.m2", text = "mace_1h_outlandraid_d_08.m2", + value = "mace_1h_outlandraid_d_08.m2", }, { fileId = "146636", - value = "mace_1h_outlandraid_d_09.m2", text = "mace_1h_outlandraid_d_09.m2", + value = "mace_1h_outlandraid_d_09.m2", }, { fileId = "146637", - value = "mace_1h_outlandraid_d_10.m2", text = "mace_1h_outlandraid_d_10.m2", + value = "mace_1h_outlandraid_d_10.m2", }, { fileId = "146639", - value = "mace_1h_paladin_d_01.m2", text = "mace_1h_paladin_d_01.m2", + value = "mace_1h_paladin_d_01.m2", }, { fileId = "146643", - value = "mace_1h_spiked_a_01.m2", text = "mace_1h_spiked_a_01.m2", + value = "mace_1h_spiked_a_01.m2", }, { fileId = "146645", - value = "mace_1h_spiked_a_02.m2", text = "mace_1h_spiked_a_02.m2", + value = "mace_1h_spiked_a_02.m2", }, { fileId = "146649", - value = "mace_1h_spiked_a_03.m2", text = "mace_1h_spiked_a_03.m2", + value = "mace_1h_spiked_a_03.m2", }, { fileId = "146654", - value = "mace_1h_spiked_b_01.m2", text = "mace_1h_spiked_b_01.m2", + value = "mace_1h_spiked_b_01.m2", }, { fileId = "146657", - value = "mace_1h_spiked_b_02.m2", text = "mace_1h_spiked_b_02.m2", + value = "mace_1h_spiked_b_02.m2", }, { fileId = "146659", - value = "mace_1h_standard_a_01.m2", text = "mace_1h_standard_a_01.m2", + value = "mace_1h_standard_a_01.m2", }, { fileId = "146661", - value = "mace_1h_standard_a_02.m2", text = "mace_1h_standard_a_02.m2", + value = "mace_1h_standard_a_02.m2", }, { fileId = "146662", - value = "mace_1h_standard_b_01.m2", text = "mace_1h_standard_b_01.m2", + value = "mace_1h_standard_b_01.m2", }, { fileId = "146665", - value = "mace_1h_stratholme_d_01.m2", text = "mace_1h_stratholme_d_01.m2", + value = "mace_1h_stratholme_d_01.m2", }, { fileId = "146667", - value = "mace_1h_stratholme_d_02.m2", text = "mace_1h_stratholme_d_02.m2", + value = "mace_1h_stratholme_d_02.m2", }, { fileId = "146669", - value = "mace_1h_sunwell_c_01.m2", text = "mace_1h_sunwell_c_01.m2", + value = "mace_1h_sunwell_c_01.m2", }, { fileId = "146674", - value = "mace_1h_sunwell_c_02.m2", text = "mace_1h_sunwell_c_02.m2", + value = "mace_1h_sunwell_c_02.m2", }, { fileId = "146678", - value = "mace_1h_sunwell_d_01.m2", text = "mace_1h_sunwell_d_01.m2", + value = "mace_1h_sunwell_d_01.m2", }, { fileId = "146683", - value = "mace_1h_sunwell_d_02.m2", text = "mace_1h_sunwell_d_02.m2", + value = "mace_1h_sunwell_d_02.m2", }, { fileId = "146688", - value = "mace_1h_sunwell_d_03.m2", text = "mace_1h_sunwell_d_03.m2", + value = "mace_1h_sunwell_d_03.m2", }, { fileId = "146694", - value = "mace_1h_tauren_b_01.m2", text = "mace_1h_tauren_b_01.m2", + value = "mace_1h_tauren_b_01.m2", }, { fileId = "146696", - value = "mace_1h_tauren_b_02.m2", text = "mace_1h_tauren_b_02.m2", + value = "mace_1h_tauren_b_02.m2", }, { fileId = "146714", - value = "mace_1h_zulaman_d_01.m2", text = "mace_1h_zulaman_d_01.m2", + value = "mace_1h_zulaman_d_01.m2", }, { fileId = "146719", - value = "mace_1h_zulaman_d_02.m2", text = "mace_1h_zulaman_d_02.m2", + value = "mace_1h_zulaman_d_02.m2", }, { fileId = "146725", - value = "mace_1h_zulgurub_d_01.m2", text = "mace_1h_zulgurub_d_01.m2", + value = "mace_1h_zulgurub_d_01.m2", }, { fileId = "146727", - value = "mace_1h_zulgurub_d_02.m2", text = "mace_1h_zulgurub_d_02.m2", + value = "mace_1h_zulgurub_d_02.m2", }, { fileId = "146729", - value = "mace_2h_ahnqiraj_d_01.m2", text = "mace_2h_ahnqiraj_d_01.m2", + value = "mace_2h_ahnqiraj_d_01.m2", }, { fileId = "146735", - value = "mace_2h_auchindoun_d_01.m2", text = "mace_2h_auchindoun_d_01.m2", + value = "mace_2h_auchindoun_d_01.m2", }, { fileId = "146737", - value = "mace_2h_blacksmithing_d_01.m2", text = "mace_2h_blacksmithing_d_01.m2", + value = "mace_2h_blacksmithing_d_01.m2", }, { fileId = "146742", - value = "mace_2h_blacksmithing_d_02.m2", text = "mace_2h_blacksmithing_d_02.m2", + value = "mace_2h_blacksmithing_d_02.m2", }, { fileId = "146747", - value = "mace_2h_blacksmithing_d_03.m2", text = "mace_2h_blacksmithing_d_03.m2", + value = "mace_2h_blacksmithing_d_03.m2", }, { fileId = "146752", - value = "mace_2h_blackwing_a_01.m2", text = "mace_2h_blackwing_a_01.m2", + value = "mace_2h_blackwing_a_01.m2", }, { fileId = "146754", - value = "mace_2h_blackwing_a_02.m2", text = "mace_2h_blackwing_a_02.m2", + value = "mace_2h_blackwing_a_02.m2", }, { fileId = "146756", - value = "mace_2h_blood_a_01.m2", text = "mace_2h_blood_a_01.m2", + value = "mace_2h_blood_a_01.m2", }, { fileId = "146762", - value = "mace_2h_blood_a_02.m2", text = "mace_2h_blood_a_02.m2", + value = "mace_2h_blood_a_02.m2", }, { fileId = "146779", - value = "mace_2h_draenei_a_01.m2", text = "mace_2h_draenei_a_01.m2", + value = "mace_2h_draenei_a_01.m2", }, { fileId = "146785", - value = "mace_2h_draenei_a_02.m2", text = "mace_2h_draenei_a_02.m2", + value = "mace_2h_draenei_a_02.m2", }, { fileId = "146790", - value = "mace_2h_flanged_a_01.m2", text = "mace_2h_flanged_a_01.m2", + value = "mace_2h_flanged_a_01.m2", }, { fileId = "146794", - value = "mace_2h_flanged_a_02.m2", text = "mace_2h_flanged_a_02.m2", + value = "mace_2h_flanged_a_02.m2", }, { fileId = "146798", - value = "mace_2h_flanged_c_01.m2", text = "mace_2h_flanged_c_01.m2", + value = "mace_2h_flanged_c_01.m2", }, { fileId = "146800", - value = "mace_2h_flanged_c_02.m2", text = "mace_2h_flanged_c_02.m2", + value = "mace_2h_flanged_c_02.m2", }, { fileId = "146802", - value = "mace_2h_hellfire_c_01.m2", text = "mace_2h_hellfire_c_01.m2", + value = "mace_2h_hellfire_c_01.m2", }, { fileId = "146808", - value = "mace_2h_hellfire_d_01.m2", text = "mace_2h_hellfire_d_01.m2", + value = "mace_2h_hellfire_d_01.m2", }, { fileId = "146809", - value = "mace_2h_horde_a_01.m2", text = "mace_2h_horde_a_01.m2", + value = "mace_2h_horde_a_01.m2", }, { fileId = "146810", - value = "mace_2h_horde_b_01.m2", text = "mace_2h_horde_b_01.m2", + value = "mace_2h_horde_b_01.m2", }, { fileId = "146811", - value = "mace_2h_horde_c_02.m2", text = "mace_2h_horde_c_02.m2", + value = "mace_2h_horde_c_02.m2", }, { fileId = "146861", - value = "mace_2h_outlandraid_d_01.m2", text = "mace_2h_outlandraid_d_01.m2", + value = "mace_2h_outlandraid_d_01.m2", }, { fileId = "146863", - value = "mace_2h_outlandraid_d_02.m2", text = "mace_2h_outlandraid_d_02.m2", + value = "mace_2h_outlandraid_d_02.m2", }, { fileId = "146865", - value = "mace_2h_outlandraid_d_03.m2", text = "mace_2h_outlandraid_d_03.m2", + value = "mace_2h_outlandraid_d_03.m2", }, { fileId = "146867", - value = "mace_2h_outlandraid_d_04.m2", text = "mace_2h_outlandraid_d_04.m2", + value = "mace_2h_outlandraid_d_04.m2", }, { fileId = "146870", - value = "mace_2h_outlandraid_d_05.m2", text = "mace_2h_outlandraid_d_05.m2", + value = "mace_2h_outlandraid_d_05.m2", }, { fileId = "146872", - value = "mace_2h_outlandraid_d_06.m2", text = "mace_2h_outlandraid_d_06.m2", + value = "mace_2h_outlandraid_d_06.m2", }, { fileId = "146873", - value = "mace_2h_outlandraid_d_07.m2", text = "mace_2h_outlandraid_d_07.m2", + value = "mace_2h_outlandraid_d_07.m2", }, { fileId = "146880", - value = "mace_2h_paladin_d_01.m2", text = "mace_2h_paladin_d_01.m2", + value = "mace_2h_paladin_d_01.m2", }, { fileId = "146881", - value = "mace_2h_spiked_a_01.m2", text = "mace_2h_spiked_a_01.m2", + value = "mace_2h_spiked_a_01.m2", }, { fileId = "146883", - value = "mace_2h_spiked_a_02.m2", text = "mace_2h_spiked_a_02.m2", + value = "mace_2h_spiked_a_02.m2", }, { fileId = "146887", - value = "mace_2h_spiked_a_03.m2", text = "mace_2h_spiked_a_03.m2", + value = "mace_2h_spiked_a_03.m2", }, { fileId = "146891", - value = "mace_2h_spiked_b_01.m2", text = "mace_2h_spiked_b_01.m2", + value = "mace_2h_spiked_b_01.m2", }, { fileId = "146893", - value = "mace_2h_spiked_b_02.m2", text = "mace_2h_spiked_b_02.m2", + value = "mace_2h_spiked_b_02.m2", }, { fileId = "146897", - value = "mace_2h_standard_a_01.m2", text = "mace_2h_standard_a_01.m2", + value = "mace_2h_standard_a_01.m2", }, { fileId = "146899", - value = "mace_2h_standard_a_02.m2", text = "mace_2h_standard_a_02.m2", + value = "mace_2h_standard_a_02.m2", }, { fileId = "146903", - value = "mace_2h_standard_a_03.m2", text = "mace_2h_standard_a_03.m2", + value = "mace_2h_standard_a_03.m2", }, { fileId = "146907", - value = "mace_2h_stratholme_d_01.m2", text = "mace_2h_stratholme_d_01.m2", + value = "mace_2h_stratholme_d_01.m2", }, { fileId = "146909", - value = "mace_2h_stratholme_d_02.m2", text = "mace_2h_stratholme_d_02.m2", + value = "mace_2h_stratholme_d_02.m2", }, { fileId = "146916", - value = "mace_2h_zulgurub_d_01.m2", text = "mace_2h_zulgurub_d_01.m2", + value = "mace_2h_zulgurub_d_01.m2", }, { fileId = "146919", - value = "misc_1h_bag_a_01.m2", text = "misc_1h_bag_a_01.m2", + value = "misc_1h_bag_a_01.m2", }, { fileId = "146926", - value = "misc_1h_bone_a_01.m2", text = "misc_1h_bone_a_01.m2", + value = "misc_1h_bone_a_01.m2", }, { fileId = "146930", - value = "misc_1h_book_a_01.m2", text = "misc_1h_book_a_01.m2", + value = "misc_1h_book_a_01.m2", }, { fileId = "146934", - value = "misc_1h_book_b_01.m2", text = "misc_1h_book_b_01.m2", + value = "misc_1h_book_b_01.m2", }, { fileId = "146940", - value = "misc_1h_book_b_02.m2", text = "misc_1h_book_b_02.m2", + value = "misc_1h_book_b_02.m2", }, { fileId = "146943", - value = "misc_1h_book_c_01.m2", text = "misc_1h_book_c_01.m2", + value = "misc_1h_book_c_01.m2", }, { fileId = "146947", - value = "misc_1h_book_c_02.m2", text = "misc_1h_book_c_02.m2", + value = "misc_1h_book_c_02.m2", }, { fileId = "146950", - value = "misc_1h_bottle_a_01.m2", text = "misc_1h_bottle_a_01.m2", + value = "misc_1h_bottle_a_01.m2", }, { fileId = "146955", - value = "misc_1h_bottle_a_02.m2", text = "misc_1h_bottle_a_02.m2", + value = "misc_1h_bottle_a_02.m2", }, { fileId = "146956", - value = "misc_1h_bread_a_01.m2", text = "misc_1h_bread_a_01.m2", + value = "misc_1h_bread_a_01.m2", }, { fileId = "146960", - value = "misc_1h_bread_a_02.m2", text = "misc_1h_bread_a_02.m2", + value = "misc_1h_bread_a_02.m2", }, { fileId = "146961", - value = "misc_1h_bucket_a_01.m2", text = "misc_1h_bucket_a_01.m2", + value = "misc_1h_bucket_a_01.m2", }, { fileId = "146965", - value = "misc_1h_fish_a_01.m2", text = "misc_1h_fish_a_01.m2", + value = "misc_1h_fish_a_01.m2", }, { fileId = "146970", - value = "misc_1h_flower_a_01.m2", text = "misc_1h_flower_a_01.m2", + value = "misc_1h_flower_a_01.m2", }, { fileId = "146974", - value = "misc_1h_flower_a_02.m2", text = "misc_1h_flower_a_02.m2", + value = "misc_1h_flower_a_02.m2", }, { fileId = "146978", - value = "misc_1h_flower_a_03.m2", text = "misc_1h_flower_a_03.m2", + value = "misc_1h_flower_a_03.m2", }, { fileId = "146982", - value = "misc_1h_flower_a_04.m2", text = "misc_1h_flower_a_04.m2", + value = "misc_1h_flower_a_04.m2", }, { fileId = "146986", - value = "misc_1h_flower_b_01.m2", text = "misc_1h_flower_b_01.m2", + value = "misc_1h_flower_b_01.m2", }, { fileId = "146990", - value = "misc_1h_flower_b_02.m2", text = "misc_1h_flower_b_02.m2", + value = "misc_1h_flower_b_02.m2", }, { fileId = "146991", - value = "misc_1h_gizmo_a_01.m2", text = "misc_1h_gizmo_a_01.m2", + value = "misc_1h_gizmo_a_01.m2", }, { fileId = "146995", - value = "misc_1h_glass_a_01.m2", text = "misc_1h_glass_a_01.m2", + value = "misc_1h_glass_a_01.m2", }, { fileId = "146998", - value = "misc_1h_glass_a_02.m2", text = "misc_1h_glass_a_02.m2", + value = "misc_1h_glass_a_02.m2", }, { fileId = "147000", - value = "misc_1h_holysymbol_a_01.m2", text = "misc_1h_holysymbol_a_01.m2", + value = "misc_1h_holysymbol_a_01.m2", }, { fileId = "147001", - value = "misc_1h_lantern_a_01.m2", text = "misc_1h_lantern_a_01.m2", + value = "misc_1h_lantern_a_01.m2", }, { fileId = "147003", - value = "misc_1h_lantern_b_01.m2", text = "misc_1h_lantern_b_01.m2", + value = "misc_1h_lantern_b_01.m2", }, { fileId = "147005", - value = "misc_1h_mutton_a_01.m2", text = "misc_1h_mutton_a_01.m2", + value = "misc_1h_mutton_a_01.m2", }, { fileId = "147008", - value = "misc_1h_mutton_a_02.m2", text = "misc_1h_mutton_a_02.m2", + value = "misc_1h_mutton_a_02.m2", }, { fileId = "147009", - value = "misc_1h_mutton_b_01.m2", text = "misc_1h_mutton_b_01.m2", + value = "misc_1h_mutton_b_01.m2", }, { fileId = "147011", - value = "misc_1h_mutton_b_02.m2", text = "misc_1h_mutton_b_02.m2", + value = "misc_1h_mutton_b_02.m2", }, { fileId = "147013", - value = "misc_1h_orb_a_01.m2", text = "misc_1h_orb_a_01.m2", + value = "misc_1h_orb_a_01.m2", }, { fileId = "147020", - value = "misc_1h_orb_a_02.m2", text = "misc_1h_orb_a_02.m2", + value = "misc_1h_orb_a_02.m2", }, { fileId = "147027", - value = "misc_1h_orb_c_01.m2", text = "misc_1h_orb_c_01.m2", + value = "misc_1h_orb_c_01.m2", }, { fileId = "147029", - value = "misc_1h_potion_a_01.m2", text = "misc_1h_potion_a_01.m2", + value = "misc_1h_potion_a_01.m2", }, { fileId = "147035", - value = "misc_1h_potion_b_01.m2", text = "misc_1h_potion_b_01.m2", + value = "misc_1h_potion_b_01.m2", }, { fileId = "147039", - value = "misc_1h_rollingpin_a_01.m2", text = "misc_1h_rollingpin_a_01.m2", + value = "misc_1h_rollingpin_a_01.m2", }, { fileId = "147042", - value = "misc_1h_seal_a_01.m2", text = "misc_1h_seal_a_01.m2", + value = "misc_1h_seal_a_01.m2", }, { fileId = "147043", - value = "misc_1h_seal_b_01.m2", text = "misc_1h_seal_b_01.m2", + value = "misc_1h_seal_b_01.m2", }, { fileId = "147046", - value = "misc_1h_seal_c_01.m2", text = "misc_1h_seal_c_01.m2", + value = "misc_1h_seal_c_01.m2", }, { fileId = "147051", - value = "misc_1h_skull_b_01.m2", text = "misc_1h_skull_b_01.m2", + value = "misc_1h_skull_b_01.m2", }, { fileId = "147057", - value = "misc_1h_sparkler_a_01blue.m2", text = "misc_1h_sparkler_a_01blue.m2", + value = "misc_1h_sparkler_a_01blue.m2", }, { fileId = "147058", - value = "misc_1h_sparkler_a_01red.m2", text = "misc_1h_sparkler_a_01red.m2", + value = "misc_1h_sparkler_a_01red.m2", }, { fileId = "147059", - value = "misc_1h_sparkler_a_01white.m2", text = "misc_1h_sparkler_a_01white.m2", + value = "misc_1h_sparkler_a_01white.m2", }, { fileId = "147060", - value = "misc_1h_tankard_a_01.m2", text = "misc_1h_tankard_a_01.m2", + value = "misc_1h_tankard_a_01.m2", }, { fileId = "147066", - value = "misc_1h_waterwand_a_01.m2", text = "misc_1h_waterwand_a_01.m2", + value = "misc_1h_waterwand_a_01.m2", }, { fileId = "147068", - value = "misc_1h_wrench_a_01.m2", text = "misc_1h_wrench_a_01.m2", + value = "misc_1h_wrench_a_01.m2", }, { fileId = "147069", - value = "misc_1h_zulgurub_d_01.m2", text = "misc_1h_zulgurub_d_01.m2", + value = "misc_1h_zulgurub_d_01.m2", }, { fileId = "147073", - value = "misc_1h_zulgurub_d_02.m2", text = "misc_1h_zulgurub_d_02.m2", + value = "misc_1h_zulgurub_d_02.m2", }, { fileId = "147074", - value = "misc_2h_brewfest_a_01.m2", text = "misc_2h_brewfest_a_01.m2", + value = "misc_2h_brewfest_a_01.m2", }, { fileId = "147080", - value = "misc_2h_broom_a_01.m2", text = "misc_2h_broom_a_01.m2", + value = "misc_2h_broom_a_01.m2", }, { fileId = "147082", - value = "misc_2h_broom_a_02.m2", text = "misc_2h_broom_a_02.m2", + value = "misc_2h_broom_a_02.m2", }, { fileId = "147084", - value = "misc_2h_fishingpole_a_01.m2", text = "misc_2h_fishingpole_a_01.m2", + value = "misc_2h_fishingpole_a_01.m2", }, { fileId = "147087", - value = "misc_2h_harpoon_b_01.m2", text = "misc_2h_harpoon_b_01.m2", + value = "misc_2h_harpoon_b_01.m2", }, { fileId = "147089", - value = "misc_2h_pitchfork_a_01.m2", text = "misc_2h_pitchfork_a_01.m2", + value = "misc_2h_pitchfork_a_01.m2", }, { fileId = "147091", - value = "misc_2h_shovel_a_01.m2", text = "misc_2h_shovel_a_01.m2", + value = "misc_2h_shovel_a_01.m2", }, { fileId = "147104", - value = "offhand_blackwing_a_01.m2", text = "offhand_blackwing_a_01.m2", + value = "offhand_blackwing_a_01.m2", }, { fileId = "147105", - value = "offhand_blood_a_01.m2", text = "offhand_blood_a_01.m2", + value = "offhand_blood_a_01.m2", }, { fileId = "147110", - value = "offhand_blood_a_02.m2", text = "offhand_blood_a_02.m2", + value = "offhand_blood_a_02.m2", }, { fileId = "147116", - value = "offhand_draenei_a_01.m2", text = "offhand_draenei_a_01.m2", + value = "offhand_draenei_a_01.m2", }, { fileId = "147122", - value = "offhand_draenei_a_02.m2", text = "offhand_draenei_a_02.m2", + value = "offhand_draenei_a_02.m2", }, { fileId = "147128", - value = "offhand_hyjal_d_01.m2", text = "offhand_hyjal_d_01.m2", + value = "offhand_hyjal_d_01.m2", }, { fileId = "147133", - value = "offhand_naxxramas_d_01.m2", text = "offhand_naxxramas_d_01.m2", + value = "offhand_naxxramas_d_01.m2", }, { fileId = "147135", - value = "offhand_naxxramas_d_02.m2", text = "offhand_naxxramas_d_02.m2", + value = "offhand_naxxramas_d_02.m2", }, { fileId = "147137", - value = "offhand_naxxramas_d_03.m2", text = "offhand_naxxramas_d_03.m2", + value = "offhand_naxxramas_d_03.m2", }, { fileId = "147139", - value = "offhand_naxxramas_d_04.m2", text = "offhand_naxxramas_d_04.m2", + value = "offhand_naxxramas_d_04.m2", }, { fileId = "147141", - value = "offhand_outlandraid_d_01.m2", text = "offhand_outlandraid_d_01.m2", + value = "offhand_outlandraid_d_01.m2", }, { fileId = "147143", - value = "offhand_outlandraid_d_02.m2", text = "offhand_outlandraid_d_02.m2", + value = "offhand_outlandraid_d_02.m2", }, { fileId = "147145", - value = "offhand_outlandraid_d_03blue.m2", text = "offhand_outlandraid_d_03blue.m2", + value = "offhand_outlandraid_d_03blue.m2", }, { fileId = "147147", - value = "offhand_outlandraid_d_03orange.m2", text = "offhand_outlandraid_d_03orange.m2", + value = "offhand_outlandraid_d_03orange.m2", }, { fileId = "147149", - value = "offhand_outlandraid_d_03white.m2", text = "offhand_outlandraid_d_03white.m2", + value = "offhand_outlandraid_d_03white.m2", }, { fileId = "147150", - value = "offhand_rose_a_01.m2", text = "offhand_rose_a_01.m2", + value = "offhand_rose_a_01.m2", }, { fileId = "147151", - value = "offhand_rosebouquet_a_01.m2", text = "offhand_rosebouquet_a_01.m2", + value = "offhand_rosebouquet_a_01.m2", }, { fileId = "147153", - value = "offhand_stratholme_a_01.m2", text = "offhand_stratholme_a_01.m2", + value = "offhand_stratholme_a_01.m2", }, { fileId = "147155", - value = "offhand_stratholme_a_02.m2", text = "offhand_stratholme_a_02.m2", + value = "offhand_stratholme_a_02.m2", }, { fileId = "147157", - value = "offhand_sunwell_d_01.m2", text = "offhand_sunwell_d_01.m2", + value = "offhand_sunwell_d_01.m2", }, { fileId = "147162", - value = "offhand_sunwell_d_02.m2", text = "offhand_sunwell_d_02.m2", + value = "offhand_sunwell_d_02.m2", }, { fileId = "147173", - value = "offhand_zulaman_d_01.m2", text = "offhand_zulaman_d_01.m2", + value = "offhand_zulaman_d_01.m2", }, { fileId = "147178", - value = "offhand_zulaman_d_02.m2", text = "offhand_zulaman_d_02.m2", + value = "offhand_zulaman_d_02.m2", }, { fileId = "147186", - value = "polearm_2h_ahnqiraj_d_01.m2", text = "polearm_2h_ahnqiraj_d_01.m2", + value = "polearm_2h_ahnqiraj_d_01.m2", }, { fileId = "147202", - value = "polearm_2h_blacktemple_d_01.m2", text = "polearm_2h_blacktemple_d_01.m2", + value = "polearm_2h_blacktemple_d_01.m2", }, { fileId = "147208", - value = "polearm_2h_bladed_a_01.m2", text = "polearm_2h_bladed_a_01.m2", + value = "polearm_2h_bladed_a_01.m2", }, { fileId = "147211", - value = "polearm_2h_bladed_a_02.m2", text = "polearm_2h_bladed_a_02.m2", + value = "polearm_2h_bladed_a_02.m2", }, { fileId = "147216", - value = "polearm_2h_bladed_b_01.m2", text = "polearm_2h_bladed_b_01.m2", + value = "polearm_2h_bladed_b_01.m2", }, { fileId = "147219", - value = "polearm_2h_bladed_b_02.m2", text = "polearm_2h_bladed_b_02.m2", + value = "polearm_2h_bladed_b_02.m2", }, { fileId = "147224", - value = "polearm_2h_bladed_c_01.m2", text = "polearm_2h_bladed_c_01.m2", + value = "polearm_2h_bladed_c_01.m2", }, { fileId = "147227", - value = "polearm_2h_bladed_d_01.m2", text = "polearm_2h_bladed_d_01.m2", + value = "polearm_2h_bladed_d_01.m2", }, { fileId = "147228", - value = "polearm_2h_bladed_d_03.m2", text = "polearm_2h_bladed_d_03.m2", + value = "polearm_2h_bladed_d_03.m2", }, { fileId = "147230", - value = "polearm_2h_blood_elf_d_01.m2", text = "polearm_2h_blood_elf_d_01.m2", + value = "polearm_2h_blood_elf_d_01.m2", }, { fileId = "147239", - value = "polearm_2h_epic_d_01.m2", text = "polearm_2h_epic_d_01.m2", + value = "polearm_2h_epic_d_01.m2", }, { fileId = "147241", - value = "polearm_2h_epic_d_02.m2", text = "polearm_2h_epic_d_02.m2", + value = "polearm_2h_epic_d_02.m2", }, { fileId = "147243", - value = "polearm_2h_epic_d_03.m2", text = "polearm_2h_epic_d_03.m2", + value = "polearm_2h_epic_d_03.m2", }, { fileId = "147245", - value = "polearm_2h_epic_d_04.m2", text = "polearm_2h_epic_d_04.m2", + value = "polearm_2h_epic_d_04.m2", }, { fileId = "147247", - value = "polearm_2h_epic_d_05.m2", text = "polearm_2h_epic_d_05.m2", + value = "polearm_2h_epic_d_05.m2", }, { fileId = "147249", - value = "polearm_2h_epic_d_06.m2", text = "polearm_2h_epic_d_06.m2", + value = "polearm_2h_epic_d_06.m2", }, { fileId = "147251", - value = "polearm_2h_hellfire_d_01.m2", text = "polearm_2h_hellfire_d_01.m2", + value = "polearm_2h_hellfire_d_01.m2", }, { fileId = "147257", - value = "polearm_2h_hellfire_d_01green.m2", text = "polearm_2h_hellfire_d_01green.m2", + value = "polearm_2h_hellfire_d_01green.m2", }, { fileId = "147316", - value = "polearm_2h_northrend_d_03.m2", text = "polearm_2h_northrend_d_03.m2", + value = "polearm_2h_northrend_d_03.m2", }, { fileId = "147317", - value = "polearm_2h_pvpalliance_a_01.m2", text = "polearm_2h_pvpalliance_a_01.m2", + value = "polearm_2h_pvpalliance_a_01.m2", }, { fileId = "147320", - value = "polearm_2h_pvphorde_a_01.m2", text = "polearm_2h_pvphorde_a_01.m2", + value = "polearm_2h_pvphorde_a_01.m2", }, { fileId = "147323", - value = "polearm_2h_stratholme_d_01.m2", text = "polearm_2h_stratholme_d_01.m2", + value = "polearm_2h_stratholme_d_01.m2", }, { fileId = "147325", - value = "polearm_2h_sunwell_d_01.m2", text = "polearm_2h_sunwell_d_01.m2", + value = "polearm_2h_sunwell_d_01.m2", }, { fileId = "147330", - value = "polearm_2h_trident_a_01.m2", text = "polearm_2h_trident_a_01.m2", + value = "polearm_2h_trident_a_01.m2", }, { fileId = "147334", - value = "polearm_2h_trident_a_02.m2", text = "polearm_2h_trident_a_02.m2", + value = "polearm_2h_trident_a_02.m2", }, { fileId = "147339", - value = "polearm_2h_trident_b_01.m2", text = "polearm_2h_trident_b_01.m2", + value = "polearm_2h_trident_b_01.m2", }, { fileId = "147344", - value = "polearm_2h_trident_b_02.m2", text = "polearm_2h_trident_b_02.m2", + value = "polearm_2h_trident_b_02.m2", }, { fileId = "147345", - value = "polearm_2h_trident_c_01.m2", text = "polearm_2h_trident_c_01.m2", + value = "polearm_2h_trident_c_01.m2", }, { fileId = "147363", - value = "polearm_2h_zulgurub_d_01.m2", text = "polearm_2h_zulgurub_d_01.m2", + value = "polearm_2h_zulgurub_d_01.m2", }, { fileId = "147382", - value = "stave_2h_ahnqiraj_d_01.m2", text = "stave_2h_ahnqiraj_d_01.m2", + value = "stave_2h_ahnqiraj_d_01.m2", }, { fileId = "147384", - value = "stave_2h_ahnqiraj_d_02.m2", text = "stave_2h_ahnqiraj_d_02.m2", + value = "stave_2h_ahnqiraj_d_02.m2", }, { fileId = "147386", - value = "stave_2h_ahnqiraj_d_03.m2", text = "stave_2h_ahnqiraj_d_03.m2", + value = "stave_2h_ahnqiraj_d_03.m2", }, { fileId = "147387", - value = "stave_2h_ahnqiraj_d_04.m2", text = "stave_2h_ahnqiraj_d_04.m2", + value = "stave_2h_ahnqiraj_d_04.m2", }, { fileId = "147390", - value = "stave_2h_auchindoun_d_01.m2", text = "stave_2h_auchindoun_d_01.m2", + value = "stave_2h_auchindoun_d_01.m2", }, { fileId = "147392", - value = "stave_2h_auchindoun_d_02.m2", text = "stave_2h_auchindoun_d_02.m2", + value = "stave_2h_auchindoun_d_02.m2", }, { fileId = "147393", - value = "stave_2h_blacktemple_d_01.m2", text = "stave_2h_blacktemple_d_01.m2", + value = "stave_2h_blacktemple_d_01.m2", }, { fileId = "147399", - value = "stave_2h_blackwing_a_01.m2", text = "stave_2h_blackwing_a_01.m2", + value = "stave_2h_blackwing_a_01.m2", }, { fileId = "147402", - value = "stave_2h_blackwing_a_02.m2", text = "stave_2h_blackwing_a_02.m2", + value = "stave_2h_blackwing_a_02.m2", }, { fileId = "147405", - value = "stave_2h_blood_a_01.m2", text = "stave_2h_blood_a_01.m2", + value = "stave_2h_blood_a_01.m2", }, { fileId = "147409", - value = "stave_2h_blood_a_02.m2", text = "stave_2h_blood_a_02.m2", + value = "stave_2h_blood_a_02.m2", }, { fileId = "147431", - value = "stave_2h_draenei_a_01.m2", text = "stave_2h_draenei_a_01.m2", + value = "stave_2h_draenei_a_01.m2", }, { fileId = "147437", - value = "stave_2h_draenei_a_02.m2", text = "stave_2h_draenei_a_02.m2", + value = "stave_2h_draenei_a_02.m2", }, { fileId = "147444", - value = "stave_2h_draenei_a_03.m2", text = "stave_2h_draenei_a_03.m2", + value = "stave_2h_draenei_a_03.m2", }, { fileId = "147458", - value = "stave_2h_druid_d_01.m2", text = "stave_2h_druid_d_01.m2", + value = "stave_2h_druid_d_01.m2", }, { fileId = "147464", - value = "stave_2h_epic_a_01.m2", text = "stave_2h_epic_a_01.m2", + value = "stave_2h_epic_a_01.m2", }, { fileId = "147466", - value = "stave_2h_etherial_a_01.m2", text = "stave_2h_etherial_a_01.m2", + value = "stave_2h_etherial_a_01.m2", }, { fileId = "147473", - value = "stave_2h_feral_d_01.m2", text = "stave_2h_feral_d_01.m2", + value = "stave_2h_feral_d_01.m2", }, { fileId = "147480", - value = "stave_2h_feral_d_02.m2", text = "stave_2h_feral_d_02.m2", + value = "stave_2h_feral_d_02.m2", }, { fileId = "147486", - value = "stave_2h_feral_d_03.m2", text = "stave_2h_feral_d_03.m2", + value = "stave_2h_feral_d_03.m2", }, { fileId = "147491", - value = "stave_2h_flaming_d_01.m2", text = "stave_2h_flaming_d_01.m2", + value = "stave_2h_flaming_d_01.m2", }, { fileId = "147492", - value = "stave_2h_hellfire_c_01.m2", text = "stave_2h_hellfire_c_01.m2", + value = "stave_2h_hellfire_c_01.m2", }, { fileId = "147498", - value = "stave_2h_hellfire_d_01.m2", text = "stave_2h_hellfire_d_01.m2", + value = "stave_2h_hellfire_d_01.m2", }, { fileId = "147502", - value = "stave_2h_hellfire_d_02.m2", text = "stave_2h_hellfire_d_02.m2", + value = "stave_2h_hellfire_d_02.m2", }, { fileId = "147504", - value = "stave_2h_hunterepic_d_01.m2", text = "stave_2h_hunterepic_d_01.m2", + value = "stave_2h_hunterepic_d_01.m2", }, { fileId = "147505", - value = "stave_2h_jeweled_a_01.m2", text = "stave_2h_jeweled_a_01.m2", + value = "stave_2h_jeweled_a_01.m2", }, { fileId = "147509", - value = "stave_2h_jeweled_a_02.m2", text = "stave_2h_jeweled_a_02.m2", + value = "stave_2h_jeweled_a_02.m2", }, { fileId = "147513", - value = "stave_2h_jeweled_a_03.m2", text = "stave_2h_jeweled_a_03.m2", + value = "stave_2h_jeweled_a_03.m2", }, { fileId = "147517", - value = "stave_2h_jeweled_b_01.m2", text = "stave_2h_jeweled_b_01.m2", + value = "stave_2h_jeweled_b_01.m2", }, { fileId = "147521", - value = "stave_2h_jeweled_b_02.m2", text = "stave_2h_jeweled_b_02.m2", + value = "stave_2h_jeweled_b_02.m2", }, { fileId = "147525", - value = "stave_2h_jeweled_c_01.m2", text = "stave_2h_jeweled_c_01.m2", + value = "stave_2h_jeweled_c_01.m2", }, { fileId = "147527", - value = "stave_2h_jeweled_d_01.m2", text = "stave_2h_jeweled_d_01.m2", + value = "stave_2h_jeweled_d_01.m2", }, { fileId = "147530", - value = "stave_2h_long_a_01.m2", text = "stave_2h_long_a_01.m2", + value = "stave_2h_long_a_01.m2", }, { fileId = "147534", - value = "stave_2h_long_a_02.m2", text = "stave_2h_long_a_02.m2", + value = "stave_2h_long_a_02.m2", }, { fileId = "147538", - value = "stave_2h_long_a_03.m2", text = "stave_2h_long_a_03.m2", + value = "stave_2h_long_a_03.m2", }, { fileId = "147542", - value = "stave_2h_long_a_04.m2", text = "stave_2h_long_a_04.m2", + value = "stave_2h_long_a_04.m2", }, { fileId = "147547", - value = "stave_2h_long_b_01.m2", text = "stave_2h_long_b_01.m2", + value = "stave_2h_long_b_01.m2", }, { fileId = "147552", - value = "stave_2h_long_b_02holy.m2", text = "stave_2h_long_b_02holy.m2", + value = "stave_2h_long_b_02holy.m2", }, { fileId = "147553", - value = "stave_2h_long_b_03.m2", text = "stave_2h_long_b_03.m2", + value = "stave_2h_long_b_03.m2", }, { fileId = "147557", - value = "stave_2h_long_b_04.m2", text = "stave_2h_long_b_04.m2", + value = "stave_2h_long_b_04.m2", }, { fileId = "147563", - value = "stave_2h_long_c_01.m2", text = "stave_2h_long_c_01.m2", + value = "stave_2h_long_c_01.m2", }, { fileId = "147565", - value = "stave_2h_long_c_02.m2", text = "stave_2h_long_c_02.m2", + value = "stave_2h_long_c_02.m2", }, { fileId = "147567", - value = "stave_2h_long_d_01.m2", text = "stave_2h_long_d_01.m2", + value = "stave_2h_long_d_01.m2", }, { fileId = "147574", - value = "stave_2h_long_d_04.m2", text = "stave_2h_long_d_04.m2", + value = "stave_2h_long_d_04.m2", }, { fileId = "147576", - value = "stave_2h_long_d_05.m2", text = "stave_2h_long_d_05.m2", + value = "stave_2h_long_d_05.m2", }, { fileId = "147578", - value = "stave_2h_long_epicpriest01.m2", text = "stave_2h_long_epicpriest01.m2", + value = "stave_2h_long_epicpriest01.m2", }, { fileId = "147579", - value = "stave_2h_long_epicpriest02.m2", text = "stave_2h_long_epicpriest02.m2", + value = "stave_2h_long_epicpriest02.m2", }, { fileId = "147581", - value = "stave_2h_medivh_d_01.m2", text = "stave_2h_medivh_d_01.m2", + value = "stave_2h_medivh_d_01.m2", }, { fileId = "147585", - value = "stave_2h_naga_d_01.m2", text = "stave_2h_naga_d_01.m2", + value = "stave_2h_naga_d_01.m2", }, { fileId = "147637", - value = "stave_2h_other_a_01.m2", text = "stave_2h_other_a_01.m2", + value = "stave_2h_other_a_01.m2", }, { fileId = "147641", - value = "stave_2h_other_b_01.m2", text = "stave_2h_other_b_01.m2", + value = "stave_2h_other_b_01.m2", }, { fileId = "147645", - value = "stave_2h_other_c_01.m2", text = "stave_2h_other_c_01.m2", + value = "stave_2h_other_c_01.m2", }, { fileId = "147652", - value = "stave_2h_other_c_02.m2", text = "stave_2h_other_c_02.m2", + value = "stave_2h_other_c_02.m2", }, { fileId = "147654", - value = "stave_2h_other_c_03.m2", text = "stave_2h_other_c_03.m2", + value = "stave_2h_other_c_03.m2", }, { fileId = "147656", - value = "stave_2h_other_d_01.m2", text = "stave_2h_other_d_01.m2", + value = "stave_2h_other_d_01.m2", }, { fileId = "147659", - value = "stave_2h_outlandraid_d_01.m2", text = "stave_2h_outlandraid_d_01.m2", + value = "stave_2h_outlandraid_d_01.m2", }, { fileId = "147660", - value = "stave_2h_outlandraid_d_01_blue.m2", text = "stave_2h_outlandraid_d_01_blue.m2", + value = "stave_2h_outlandraid_d_01_blue.m2", }, { fileId = "147661", - value = "stave_2h_outlandraid_d_01_red.m2", text = "stave_2h_outlandraid_d_01_red.m2", + value = "stave_2h_outlandraid_d_01_red.m2", }, { fileId = "147663", - value = "stave_2h_outlandraid_d_02_blue.m2", text = "stave_2h_outlandraid_d_02_blue.m2", + value = "stave_2h_outlandraid_d_02_blue.m2", }, { fileId = "147664", - value = "stave_2h_outlandraid_d_02_red.m2", text = "stave_2h_outlandraid_d_02_red.m2", + value = "stave_2h_outlandraid_d_02_red.m2", }, { fileId = "147666", - value = "stave_2h_outlandraid_d_03.m2", text = "stave_2h_outlandraid_d_03.m2", + value = "stave_2h_outlandraid_d_03.m2", }, { fileId = "147667", - value = "stave_2h_outlandraid_d_03_blue.m2", text = "stave_2h_outlandraid_d_03_blue.m2", + value = "stave_2h_outlandraid_d_03_blue.m2", }, { fileId = "147668", - value = "stave_2h_outlandraid_d_03_red.m2", text = "stave_2h_outlandraid_d_03_red.m2", + value = "stave_2h_outlandraid_d_03_red.m2", }, { fileId = "147670", - value = "stave_2h_outlandraid_d_04.m2", text = "stave_2h_outlandraid_d_04.m2", + value = "stave_2h_outlandraid_d_04.m2", }, { fileId = "147674", - value = "stave_2h_outlandraid_d_05.m2", text = "stave_2h_outlandraid_d_05.m2", + value = "stave_2h_outlandraid_d_05.m2", }, { fileId = "147680", - value = "stave_2h_outlandraid_d_06.m2", text = "stave_2h_outlandraid_d_06.m2", + value = "stave_2h_outlandraid_d_06.m2", }, { fileId = "147682", - value = "stave_2h_outlandraid_d_06_blue.m2", text = "stave_2h_outlandraid_d_06_blue.m2", + value = "stave_2h_outlandraid_d_06_blue.m2", }, { fileId = "147684", - value = "stave_2h_priest_d_01.m2", text = "stave_2h_priest_d_01.m2", + value = "stave_2h_priest_d_01.m2", }, { fileId = "147688", - value = "stave_2h_pvpalliance_a_01.m2", text = "stave_2h_pvpalliance_a_01.m2", + value = "stave_2h_pvpalliance_a_01.m2", }, { fileId = "147692", - value = "stave_2h_pvphorde_a_01.m2", text = "stave_2h_pvphorde_a_01.m2", + value = "stave_2h_pvphorde_a_01.m2", }, { fileId = "147697", - value = "stave_2h_scythe_c_03.m2", text = "stave_2h_scythe_c_03.m2", + value = "stave_2h_scythe_c_03.m2", }, { fileId = "147699", - value = "stave_2h_stratholme_d_01.m2", text = "stave_2h_stratholme_d_01.m2", + value = "stave_2h_stratholme_d_01.m2", }, { fileId = "147701", - value = "stave_2h_stratholme_d_02.m2", text = "stave_2h_stratholme_d_02.m2", + value = "stave_2h_stratholme_d_02.m2", }, { fileId = "147703", - value = "stave_2h_stratholme_d_03.m2", text = "stave_2h_stratholme_d_03.m2", + value = "stave_2h_stratholme_d_03.m2", }, { fileId = "147704", - value = "stave_2h_sunwell_c_01.m2", text = "stave_2h_sunwell_c_01.m2", + value = "stave_2h_sunwell_c_01.m2", }, { fileId = "147710", - value = "stave_2h_sunwell_d_01.m2", text = "stave_2h_sunwell_d_01.m2", + value = "stave_2h_sunwell_d_01.m2", }, { fileId = "147715", - value = "stave_2h_sunwell_d_02.m2", text = "stave_2h_sunwell_d_02.m2", + value = "stave_2h_sunwell_d_02.m2", }, { fileId = "147720", - value = "stave_2h_sunwell_d_03.m2", text = "stave_2h_sunwell_d_03.m2", + value = "stave_2h_sunwell_d_03.m2", }, { fileId = "147737", - value = "stave_2h_warlock_d_01.m2", text = "stave_2h_warlock_d_01.m2", + value = "stave_2h_warlock_d_01.m2", }, { fileId = "147741", - value = "stave_2h_zulaman_d_01.m2", text = "stave_2h_zulaman_d_01.m2", + value = "stave_2h_zulaman_d_01.m2", }, { fileId = "147746", - value = "stave_2h_zulaman_d_02.m2", text = "stave_2h_zulaman_d_02.m2", + value = "stave_2h_zulaman_d_02.m2", }, { fileId = "147751", - value = "stave_2h_zulaman_d_03.m2", text = "stave_2h_zulaman_d_03.m2", + value = "stave_2h_zulaman_d_03.m2", }, { fileId = "147757", - value = "stave_2h_zulgurub_d_01.m2", text = "stave_2h_zulgurub_d_01.m2", + value = "stave_2h_zulgurub_d_01.m2", }, { fileId = "147759", - value = "stave_2h_zulgurub_d_02.m2", text = "stave_2h_zulgurub_d_02.m2", + value = "stave_2h_zulgurub_d_02.m2", }, { fileId = "147761", - value = "stave_2h_zulgurub_d_03.m2", text = "stave_2h_zulgurub_d_03.m2", + value = "stave_2h_zulgurub_d_03.m2", }, { fileId = "147764", - value = "sword_1h_ahnqiraj_d_01.m2", text = "sword_1h_ahnqiraj_d_01.m2", + value = "sword_1h_ahnqiraj_d_01.m2", }, { fileId = "147767", - value = "sword_1h_ahnqiraj_d_02.m2", text = "sword_1h_ahnqiraj_d_02.m2", + value = "sword_1h_ahnqiraj_d_02.m2", }, { fileId = "147770", - value = "sword_1h_ahnqiraj_d_03.m2", text = "sword_1h_ahnqiraj_d_03.m2", + value = "sword_1h_ahnqiraj_d_03.m2", }, { fileId = "147772", - value = "sword_1h_akama_d_01.m2", text = "sword_1h_akama_d_01.m2", + value = "sword_1h_akama_d_01.m2", }, { fileId = "147775", - value = "sword_1h_auchindoun_d_01.m2", text = "sword_1h_auchindoun_d_01.m2", + value = "sword_1h_auchindoun_d_01.m2", }, { fileId = "147777", - value = "sword_1h_blacksmithing_d_01.m2", text = "sword_1h_blacksmithing_d_01.m2", + value = "sword_1h_blacksmithing_d_01.m2", }, { fileId = "147779", - value = "sword_1h_blacksmithing_d_02.m2", text = "sword_1h_blacksmithing_d_02.m2", + value = "sword_1h_blacksmithing_d_02.m2", }, { fileId = "147781", - value = "sword_1h_blacksmithing_d_03.m2", text = "sword_1h_blacksmithing_d_03.m2", + value = "sword_1h_blacksmithing_d_03.m2", }, { fileId = "147783", - value = "sword_1h_blackwing_a_01.m2", text = "sword_1h_blackwing_a_01.m2", + value = "sword_1h_blackwing_a_01.m2", }, { fileId = "147785", - value = "sword_1h_blackwing_a_02.m2", text = "sword_1h_blackwing_a_02.m2", + value = "sword_1h_blackwing_a_02.m2", }, { fileId = "147787", - value = "sword_1h_blood_a_01.m2", text = "sword_1h_blood_a_01.m2", + value = "sword_1h_blood_a_01.m2", }, { fileId = "147790", - value = "sword_1h_blood_a_02.m2", text = "sword_1h_blood_a_02.m2", + value = "sword_1h_blood_a_02.m2", }, { fileId = "147793", - value = "sword_1h_blood_a_03.m2", text = "sword_1h_blood_a_03.m2", + value = "sword_1h_blood_a_03.m2", }, { fileId = "147800", - value = "sword_1h_caverns_d_01.m2", text = "sword_1h_caverns_d_01.m2", + value = "sword_1h_caverns_d_01.m2", }, { fileId = "147806", - value = "sword_1h_crystal_c_01.m2", text = "sword_1h_crystal_c_01.m2", + value = "sword_1h_crystal_c_01.m2", }, { fileId = "147812", - value = "sword_1h_crystal_c_02.m2", text = "sword_1h_crystal_c_02.m2", + value = "sword_1h_crystal_c_02.m2", }, { fileId = "147818", - value = "sword_1h_crystal_c_03.m2", text = "sword_1h_crystal_c_03.m2", + value = "sword_1h_crystal_c_03.m2", }, { fileId = "147824", - value = "sword_1h_draenei_a_01.m2", text = "sword_1h_draenei_a_01.m2", + value = "sword_1h_draenei_a_01.m2", }, { fileId = "147830", - value = "sword_1h_draenei_a_02.m2", text = "sword_1h_draenei_a_02.m2", + value = "sword_1h_draenei_a_02.m2", }, { fileId = "147836", - value = "sword_1h_draenei_a_03.m2", text = "sword_1h_draenei_a_03.m2", + value = "sword_1h_draenei_a_03.m2", }, { fileId = "147842", - value = "sword_1h_draenei_b_01.m2", text = "sword_1h_draenei_b_01.m2", + value = "sword_1h_draenei_b_01.m2", }, { fileId = "147849", - value = "sword_1h_draenei_c_01.m2", text = "sword_1h_draenei_c_01.m2", + value = "sword_1h_draenei_c_01.m2", }, { fileId = "147856", - value = "sword_1h_draenei_d_01.m2", text = "sword_1h_draenei_d_01.m2", + value = "sword_1h_draenei_d_01.m2", }, { fileId = "147860", - value = "sword_1h_fire_a_01.m2", text = "sword_1h_fire_a_01.m2", + value = "sword_1h_fire_a_01.m2", }, { fileId = "147862", - value = "sword_1h_haremmatron_d_01.m2", text = "sword_1h_haremmatron_d_01.m2", + value = "sword_1h_haremmatron_d_01.m2", }, { fileId = "147864", - value = "sword_1h_hellfire_d_01.m2", text = "sword_1h_hellfire_d_01.m2", + value = "sword_1h_hellfire_d_01.m2", }, { fileId = "147867", - value = "sword_1h_horde_a_01.m2", text = "sword_1h_horde_a_01.m2", + value = "sword_1h_horde_a_01.m2", }, { fileId = "147872", - value = "sword_1h_horde_a_02.m2", text = "sword_1h_horde_a_02.m2", + value = "sword_1h_horde_a_02.m2", }, { fileId = "147877", - value = "sword_1h_horde_a_03.m2", text = "sword_1h_horde_a_03.m2", + value = "sword_1h_horde_a_03.m2", }, { fileId = "147878", - value = "sword_1h_horde_a_04.m2", text = "sword_1h_horde_a_04.m2", + value = "sword_1h_horde_a_04.m2", }, { fileId = "147879", - value = "sword_1h_horde_b_01.m2", text = "sword_1h_horde_b_01.m2", + value = "sword_1h_horde_b_01.m2", }, { fileId = "147885", - value = "sword_1h_horde_b_02.m2", text = "sword_1h_horde_b_02.m2", + value = "sword_1h_horde_b_02.m2", }, { fileId = "147891", - value = "sword_1h_horde_b_03.m2", text = "sword_1h_horde_b_03.m2", + value = "sword_1h_horde_b_03.m2", }, { fileId = "147897", - value = "sword_1h_horde_b_04.m2", text = "sword_1h_horde_b_04.m2", + value = "sword_1h_horde_b_04.m2", }, { fileId = "147903", - value = "sword_1h_horde_b_05.m2", text = "sword_1h_horde_b_05.m2", + value = "sword_1h_horde_b_05.m2", }, { fileId = "147909", - value = "sword_1h_horde_c_01.m2", text = "sword_1h_horde_c_01.m2", + value = "sword_1h_horde_c_01.m2", }, { fileId = "147915", - value = "sword_1h_horde_c_02.m2", text = "sword_1h_horde_c_02.m2", + value = "sword_1h_horde_c_02.m2", }, { fileId = "147922", - value = "sword_1h_hyjal_d_01.m2", text = "sword_1h_hyjal_d_01.m2", + value = "sword_1h_hyjal_d_01.m2", }, { fileId = "147927", - value = "sword_1h_hyjal_d_02.m2", text = "sword_1h_hyjal_d_02.m2", + value = "sword_1h_hyjal_d_02.m2", }, { fileId = "147932", - value = "sword_1h_hyjal_d_03.m2", text = "sword_1h_hyjal_d_03.m2", + value = "sword_1h_hyjal_d_03.m2", }, { fileId = "147937", - value = "sword_1h_katana_a_01.m2", text = "sword_1h_katana_a_01.m2", + value = "sword_1h_katana_a_01.m2", }, { fileId = "147941", - value = "sword_1h_katana_a_02.m2", text = "sword_1h_katana_a_02.m2", + value = "sword_1h_katana_a_02.m2", }, { fileId = "147945", - value = "sword_1h_katana_b_01.m2", text = "sword_1h_katana_b_01.m2", + value = "sword_1h_katana_b_01.m2", }, { fileId = "147949", - value = "sword_1h_katana_b_02.m2", text = "sword_1h_katana_b_02.m2", + value = "sword_1h_katana_b_02.m2", }, { fileId = "147953", - value = "sword_1h_long_a_01.m2", text = "sword_1h_long_a_01.m2", + value = "sword_1h_long_a_01.m2", }, { fileId = "147955", - value = "sword_1h_long_a_02.m2", text = "sword_1h_long_a_02.m2", + value = "sword_1h_long_a_02.m2", }, { fileId = "147959", - value = "sword_1h_long_a_03.m2", text = "sword_1h_long_a_03.m2", + value = "sword_1h_long_a_03.m2", }, { fileId = "147963", - value = "sword_1h_long_b_01.m2", text = "sword_1h_long_b_01.m2", + value = "sword_1h_long_b_01.m2", }, { fileId = "147965", - value = "sword_1h_long_b_02.m2", text = "sword_1h_long_b_02.m2", + value = "sword_1h_long_b_02.m2", }, { fileId = "147969", - value = "sword_1h_long_b_03.m2", text = "sword_1h_long_b_03.m2", + value = "sword_1h_long_b_03.m2", }, { fileId = "147973", - value = "sword_1h_long_c_01.m2", text = "sword_1h_long_c_01.m2", + value = "sword_1h_long_c_01.m2", }, { fileId = "147975", - value = "sword_1h_long_d_01.m2", text = "sword_1h_long_d_01.m2", + value = "sword_1h_long_d_01.m2", }, { fileId = "147977", - value = "sword_1h_long_d_02.m2", text = "sword_1h_long_d_02.m2", + value = "sword_1h_long_d_02.m2", }, { fileId = "147984", - value = "sword_1h_long_d_03.m2", text = "sword_1h_long_d_03.m2", + value = "sword_1h_long_d_03.m2", }, { fileId = "147986", - value = "sword_1h_machete_a_01.m2", text = "sword_1h_machete_a_01.m2", + value = "sword_1h_machete_a_01.m2", }, { fileId = "147988", - value = "sword_1h_machete_b_01.m2", text = "sword_1h_machete_b_01.m2", + value = "sword_1h_machete_b_01.m2", }, { fileId = "147990", - value = "sword_1h_machete_c_01.m2", text = "sword_1h_machete_c_01.m2", + value = "sword_1h_machete_c_01.m2", }, { fileId = "147992", - value = "sword_1h_machete_d_01.m2", text = "sword_1h_machete_d_01.m2", + value = "sword_1h_machete_d_01.m2", }, { fileId = "147994", - value = "sword_1h_mage_d_01.m2", text = "sword_1h_mage_d_01.m2", + value = "sword_1h_mage_d_01.m2", }, { fileId = "147996", - value = "sword_1h_miev_d_01.m2", text = "sword_1h_miev_d_01.m2", + value = "sword_1h_miev_d_01.m2", }, { fileId = "147998", - value = "sword_1h_naxxramas_d_01.m2", text = "sword_1h_naxxramas_d_01.m2", + value = "sword_1h_naxxramas_d_01.m2", }, { fileId = "148038", - value = "sword_1h_northrend_c_01.m2", text = "sword_1h_northrend_c_01.m2", + value = "sword_1h_northrend_c_01.m2", }, { fileId = "148055", - value = "sword_1h_northrend_d_01.m2", text = "sword_1h_northrend_d_01.m2", + value = "sword_1h_northrend_d_01.m2", }, { fileId = "148070", - value = "sword_1h_pvpalliance_a_01.m2", text = "sword_1h_pvpalliance_a_01.m2", + value = "sword_1h_pvpalliance_a_01.m2", }, { fileId = "148075", - value = "sword_1h_pvphorde_a_01.m2", text = "sword_1h_pvphorde_a_01.m2", + value = "sword_1h_pvphorde_a_01.m2", }, { fileId = "148079", - value = "sword_1h_raid_d_01.m2", text = "sword_1h_raid_d_01.m2", + value = "sword_1h_raid_d_01.m2", }, { fileId = "148081", - value = "sword_1h_raid_d_02.m2", text = "sword_1h_raid_d_02.m2", + value = "sword_1h_raid_d_02.m2", }, { fileId = "148083", - value = "sword_1h_raid_d_03.m2", text = "sword_1h_raid_d_03.m2", + value = "sword_1h_raid_d_03.m2", }, { fileId = "148085", - value = "sword_1h_raid_d_04.m2", text = "sword_1h_raid_d_04.m2", + value = "sword_1h_raid_d_04.m2", }, { fileId = "148087", - value = "sword_1h_raid_d_05.m2", text = "sword_1h_raid_d_05.m2", + value = "sword_1h_raid_d_05.m2", }, { fileId = "148089", - value = "sword_1h_raid_d_06.m2", text = "sword_1h_raid_d_06.m2", + value = "sword_1h_raid_d_06.m2", }, { fileId = "148090", - value = "sword_1h_rapier_a_01.m2", text = "sword_1h_rapier_a_01.m2", + value = "sword_1h_rapier_a_01.m2", }, { fileId = "148095", - value = "sword_1h_sabre_a_01.m2", text = "sword_1h_sabre_a_01.m2", + value = "sword_1h_sabre_a_01.m2", }, { fileId = "148099", - value = "sword_1h_sabre_a_02.m2", text = "sword_1h_sabre_a_02.m2", + value = "sword_1h_sabre_a_02.m2", }, { fileId = "148103", - value = "sword_1h_sabre_a_03.m2", text = "sword_1h_sabre_a_03.m2", + value = "sword_1h_sabre_a_03.m2", }, { fileId = "148107", - value = "sword_1h_sabre_b_01.m2", text = "sword_1h_sabre_b_01.m2", + value = "sword_1h_sabre_b_01.m2", }, { fileId = "148111", - value = "sword_1h_sabre_b_02.m2", text = "sword_1h_sabre_b_02.m2", + value = "sword_1h_sabre_b_02.m2", }, { fileId = "148115", - value = "sword_1h_sabre_b_03.m2", text = "sword_1h_sabre_b_03.m2", + value = "sword_1h_sabre_b_03.m2", }, { fileId = "148119", - value = "sword_1h_sabre_c_01.m2", text = "sword_1h_sabre_c_01.m2", + value = "sword_1h_sabre_c_01.m2", }, { fileId = "148120", - value = "sword_1h_scimitar_a_02.m2", text = "sword_1h_scimitar_a_02.m2", + value = "sword_1h_scimitar_a_02.m2", }, { fileId = "148127", - value = "sword_1h_shivan_d_01.m2", text = "sword_1h_shivan_d_01.m2", + value = "sword_1h_shivan_d_01.m2", }, { fileId = "148128", - value = "sword_1h_short_a_01.m2", text = "sword_1h_short_a_01.m2", + value = "sword_1h_short_a_01.m2", }, { fileId = "148132", - value = "sword_1h_short_a_02.m2", text = "sword_1h_short_a_02.m2", + value = "sword_1h_short_a_02.m2", }, { fileId = "148136", - value = "sword_1h_short_a_03.m2", text = "sword_1h_short_a_03.m2", + value = "sword_1h_short_a_03.m2", }, { fileId = "148140", - value = "sword_1h_short_b_01.m2", text = "sword_1h_short_b_01.m2", + value = "sword_1h_short_b_01.m2", }, { fileId = "148144", - value = "sword_1h_short_b_02.m2", text = "sword_1h_short_b_02.m2", + value = "sword_1h_short_b_02.m2", }, { fileId = "148148", - value = "sword_1h_short_b_03.m2", text = "sword_1h_short_b_03.m2", + value = "sword_1h_short_b_03.m2", }, { fileId = "148152", - value = "sword_1h_short_c_01.m2", text = "sword_1h_short_c_01.m2", + value = "sword_1h_short_c_01.m2", }, { fileId = "148154", - value = "sword_1h_short_c_02.m2", text = "sword_1h_short_c_02.m2", + value = "sword_1h_short_c_02.m2", }, { fileId = "148156", - value = "sword_1h_stratholme_d_01.m2", text = "sword_1h_stratholme_d_01.m2", + value = "sword_1h_stratholme_d_01.m2", }, { fileId = "148157", - value = "sword_1h_stratholme_d_02.m2", text = "sword_1h_stratholme_d_02.m2", + value = "sword_1h_stratholme_d_02.m2", }, { fileId = "148158", - value = "sword_1h_stratholme_d_03.m2", text = "sword_1h_stratholme_d_03.m2", + value = "sword_1h_stratholme_d_03.m2", }, { fileId = "148160", - value = "sword_1h_sunwell_d_01.m2", text = "sword_1h_sunwell_d_01.m2", + value = "sword_1h_sunwell_d_01.m2", }, { fileId = "148165", - value = "sword_1h_sunwell_d_02.m2", text = "sword_1h_sunwell_d_02.m2", + value = "sword_1h_sunwell_d_02.m2", }, { fileId = "148169", - value = "sword_1h_thunderblade_a_01.m2", text = "sword_1h_thunderblade_a_01.m2", + value = "sword_1h_thunderblade_a_01.m2", }, { fileId = "148171", - value = "sword_1h_troll_b_01.m2", text = "sword_1h_troll_b_01.m2", + value = "sword_1h_troll_b_01.m2", }, { fileId = "148198", - value = "sword_1h_warlock_d_01.m2", text = "sword_1h_warlock_d_01.m2", + value = "sword_1h_warlock_d_01.m2", }, { fileId = "148203", - value = "sword_1h_warrior_d_01.m2", text = "sword_1h_warrior_d_01.m2", + value = "sword_1h_warrior_d_01.m2", }, { fileId = "148209", - value = "sword_1h_zulaman_d_01.m2", text = "sword_1h_zulaman_d_01.m2", + value = "sword_1h_zulaman_d_01.m2", }, { fileId = "148213", - value = "sword_1h_zulaman_d_02.m2", text = "sword_1h_zulaman_d_02.m2", + value = "sword_1h_zulaman_d_02.m2", }, { fileId = "148218", - value = "sword_1h_zulaman_d_03.m2", text = "sword_1h_zulaman_d_03.m2", + value = "sword_1h_zulaman_d_03.m2", }, { fileId = "148224", - value = "sword_1h_zulgurub_d_01.m2", text = "sword_1h_zulgurub_d_01.m2", + value = "sword_1h_zulgurub_d_01.m2", }, { fileId = "148226", - value = "sword_1h_zulgurub_d_02.m2", text = "sword_1h_zulgurub_d_02.m2", + value = "sword_1h_zulgurub_d_02.m2", }, { fileId = "148228", - value = "sword_2h_ahnqiraj_d_01.m2", text = "sword_2h_ahnqiraj_d_01.m2", + value = "sword_2h_ahnqiraj_d_01.m2", }, { fileId = "148231", - value = "sword_2h_ahnqiraj_d_02.m2", text = "sword_2h_ahnqiraj_d_02.m2", + value = "sword_2h_ahnqiraj_d_02.m2", }, { fileId = "148233", - value = "sword_2h_ashbringer.m2", text = "sword_2h_ashbringer.m2", + value = "sword_2h_ashbringer.m2", }, { fileId = "148234", - value = "sword_2h_ashbringer02.m2", text = "sword_2h_ashbringer02.m2", + value = "sword_2h_ashbringer02.m2", }, { fileId = "148235", - value = "sword_2h_ashbringer_a_01.m2", text = "sword_2h_ashbringer_a_01.m2", + value = "sword_2h_ashbringer_a_01.m2", }, { fileId = "148238", - value = "sword_2h_ashbringercorrupt.m2", text = "sword_2h_ashbringercorrupt.m2", + value = "sword_2h_ashbringercorrupt.m2", }, { fileId = "148240", - value = "sword_2h_auchindoun_d_01.m2", text = "sword_2h_auchindoun_d_01.m2", + value = "sword_2h_auchindoun_d_01.m2", }, { fileId = "148241", - value = "sword_2h_bastard_d_01.m2", text = "sword_2h_bastard_d_01.m2", + value = "sword_2h_bastard_d_01.m2", }, { fileId = "148244", - value = "sword_2h_blacksmithing_d_01.m2", text = "sword_2h_blacksmithing_d_01.m2", + value = "sword_2h_blacksmithing_d_01.m2", }, { fileId = "148246", - value = "sword_2h_blacksmithing_d_02.m2", text = "sword_2h_blacksmithing_d_02.m2", + value = "sword_2h_blacksmithing_d_02.m2", }, { fileId = "148248", - value = "sword_2h_blacksmithing_d_03.m2", text = "sword_2h_blacksmithing_d_03.m2", + value = "sword_2h_blacksmithing_d_03.m2", }, { fileId = "148250", - value = "sword_2h_blackwing_a_01.m2", text = "sword_2h_blackwing_a_01.m2", + value = "sword_2h_blackwing_a_01.m2", }, { fileId = "148252", - value = "sword_2h_blackwing_a_02.m2", text = "sword_2h_blackwing_a_02.m2", + value = "sword_2h_blackwing_a_02.m2", }, { fileId = "148254", - value = "sword_2h_blood_a_01.m2", text = "sword_2h_blood_a_01.m2", + value = "sword_2h_blood_a_01.m2", }, { fileId = "148259", - value = "sword_2h_blood_a_02.m2", text = "sword_2h_blood_a_02.m2", + value = "sword_2h_blood_a_02.m2", }, { fileId = "148263", - value = "sword_2h_blood_b_01.m2", text = "sword_2h_blood_b_01.m2", + value = "sword_2h_blood_b_01.m2", }, { fileId = "148268", - value = "sword_2h_blood_b_02.m2", text = "sword_2h_blood_b_02.m2", + value = "sword_2h_blood_b_02.m2", }, { fileId = "148272", - value = "sword_2h_blood_c_01.m2", text = "sword_2h_blood_c_01.m2", + value = "sword_2h_blood_c_01.m2", }, { fileId = "148277", - value = "sword_2h_blood_c_02.m2", text = "sword_2h_blood_c_02.m2", + value = "sword_2h_blood_c_02.m2", }, { fileId = "148281", - value = "sword_2h_blood_c_03.m2", text = "sword_2h_blood_c_03.m2", + value = "sword_2h_blood_c_03.m2", }, { fileId = "148286", - value = "sword_2h_broadsword_a_01.m2", text = "sword_2h_broadsword_a_01.m2", + value = "sword_2h_broadsword_a_01.m2", }, { fileId = "148287", - value = "sword_2h_broadsword_a_02.m2", text = "sword_2h_broadsword_a_02.m2", + value = "sword_2h_broadsword_a_02.m2", }, { fileId = "148291", - value = "sword_2h_broadsword_a_03.m2", text = "sword_2h_broadsword_a_03.m2", + value = "sword_2h_broadsword_a_03.m2", }, { fileId = "148295", - value = "sword_2h_broadsword_b_01.m2", text = "sword_2h_broadsword_b_01.m2", + value = "sword_2h_broadsword_b_01.m2", }, { fileId = "148296", - value = "sword_2h_claymore_a_01.m2", text = "sword_2h_claymore_a_01.m2", + value = "sword_2h_claymore_a_01.m2", }, { fileId = "148302", - value = "sword_2h_claymore_a_02.m2", text = "sword_2h_claymore_a_02.m2", + value = "sword_2h_claymore_a_02.m2", }, { fileId = "148307", - value = "sword_2h_claymore_b_01.m2", text = "sword_2h_claymore_b_01.m2", + value = "sword_2h_claymore_b_01.m2", }, { fileId = "148311", - value = "sword_2h_claymore_b_02.m2", text = "sword_2h_claymore_b_02.m2", + value = "sword_2h_claymore_b_02.m2", }, { fileId = "148315", - value = "sword_2h_claymore_c_01.m2", text = "sword_2h_claymore_c_01.m2", + value = "sword_2h_claymore_c_01.m2", }, { fileId = "148322", - value = "sword_2h_crystal_c_01.m2", text = "sword_2h_crystal_c_01.m2", + value = "sword_2h_crystal_c_01.m2", }, { fileId = "148327", - value = "sword_2h_crystal_c_02.m2", text = "sword_2h_crystal_c_02.m2", + value = "sword_2h_crystal_c_02.m2", }, { fileId = "148332", - value = "sword_2h_crystal_c_03.m2", text = "sword_2h_crystal_c_03.m2", + value = "sword_2h_crystal_c_03.m2", }, { fileId = "148345", - value = "sword_2h_demonblade_d_01.m2", text = "sword_2h_demonblade_d_01.m2", + value = "sword_2h_demonblade_d_01.m2", }, { fileId = "148347", - value = "sword_2h_draenei_a_01.m2", text = "sword_2h_draenei_a_01.m2", + value = "sword_2h_draenei_a_01.m2", }, { fileId = "148353", - value = "sword_2h_draenei_a_02.m2", text = "sword_2h_draenei_a_02.m2", + value = "sword_2h_draenei_a_02.m2", }, { fileId = "148360", - value = "sword_2h_epic_a_03.m2", text = "sword_2h_epic_a_03.m2", + value = "sword_2h_epic_a_03.m2", }, { fileId = "148364", - value = "sword_2h_horde_a_01.m2", text = "sword_2h_horde_a_01.m2", + value = "sword_2h_horde_a_01.m2", }, { fileId = "148365", - value = "sword_2h_horde_a_02.m2", text = "sword_2h_horde_a_02.m2", + value = "sword_2h_horde_a_02.m2", }, { fileId = "148367", - value = "sword_2h_horde_b_03.m2", text = "sword_2h_horde_b_03.m2", + value = "sword_2h_horde_b_03.m2", }, { fileId = "148373", - value = "sword_2h_horde_c_01.m2", text = "sword_2h_horde_c_01.m2", + value = "sword_2h_horde_c_01.m2", }, { fileId = "148379", - value = "sword_2h_horde_c_02.m2", text = "sword_2h_horde_c_02.m2", + value = "sword_2h_horde_c_02.m2", }, { fileId = "148385", - value = "sword_2h_horde_c_03.m2", text = "sword_2h_horde_c_03.m2", + value = "sword_2h_horde_c_03.m2", }, { fileId = "148393", - value = "sword_2h_horde_d_01.m2", text = "sword_2h_horde_d_01.m2", + value = "sword_2h_horde_d_01.m2", }, { fileId = "148397", - value = "sword_2h_horde_d_02.m2", text = "sword_2h_horde_d_02.m2", + value = "sword_2h_horde_d_02.m2", }, { fileId = "148401", - value = "sword_2h_hyjal_d_01.m2", text = "sword_2h_hyjal_d_01.m2", + value = "sword_2h_hyjal_d_01.m2", }, { fileId = "148406", - value = "sword_2h_katana_a_01.m2", text = "sword_2h_katana_a_01.m2", + value = "sword_2h_katana_a_01.m2", }, { fileId = "148410", - value = "sword_2h_katana_b_01.m2", text = "sword_2h_katana_b_01.m2", + value = "sword_2h_katana_b_01.m2", }, { fileId = "148414", - value = "sword_2h_katana_b_02.m2", text = "sword_2h_katana_b_02.m2", + value = "sword_2h_katana_b_02.m2", }, { fileId = "148418", - value = "sword_2h_korean_a_01.m2", text = "sword_2h_korean_a_01.m2", + value = "sword_2h_korean_a_01.m2", }, { fileId = "148420", - value = "sword_2h_korean_c_01.m2", text = "sword_2h_korean_c_01.m2", + value = "sword_2h_korean_c_01.m2", }, { fileId = "148485", - value = "sword_2h_pvpalliance_a_01.m2", text = "sword_2h_pvpalliance_a_01.m2", + value = "sword_2h_pvpalliance_a_01.m2", }, { fileId = "148487", - value = "sword_2h_pvphorde_a_01.m2", text = "sword_2h_pvphorde_a_01.m2", + value = "sword_2h_pvphorde_a_01.m2", }, { fileId = "148490", - value = "sword_2h_raid_d_01.m2", text = "sword_2h_raid_d_01.m2", + value = "sword_2h_raid_d_01.m2", }, { fileId = "148492", - value = "sword_2h_raid_d_02.m2", text = "sword_2h_raid_d_02.m2", + value = "sword_2h_raid_d_02.m2", }, { fileId = "148494", - value = "sword_2h_raid_d_03.m2", text = "sword_2h_raid_d_03.m2", + value = "sword_2h_raid_d_03.m2", }, { fileId = "148496", - value = "sword_2h_raid_d_04.m2", text = "sword_2h_raid_d_04.m2", + value = "sword_2h_raid_d_04.m2", }, { fileId = "148498", - value = "sword_2h_raid_d_05.m2", text = "sword_2h_raid_d_05.m2", + value = "sword_2h_raid_d_05.m2", }, { fileId = "148500", - value = "sword_2h_raid_d_06.m2", text = "sword_2h_raid_d_06.m2", + value = "sword_2h_raid_d_06.m2", }, { fileId = "148502", - value = "sword_2h_stratholme_d_01.m2", text = "sword_2h_stratholme_d_01.m2", + value = "sword_2h_stratholme_d_01.m2", }, { fileId = "148504", - value = "sword_2h_stratholme_d_02.m2", text = "sword_2h_stratholme_d_02.m2", + value = "sword_2h_stratholme_d_02.m2", }, { fileId = "148507", - value = "sword_2h_sunwell_d_01.m2", text = "sword_2h_sunwell_d_01.m2", + value = "sword_2h_sunwell_d_01.m2", }, { fileId = "148513", - value = "sword_2h_tauren_b_01.m2", text = "sword_2h_tauren_b_01.m2", + value = "sword_2h_tauren_b_01.m2", }, { fileId = "148525", - value = "sword_2h_zulaman_d_01.m2", text = "sword_2h_zulaman_d_01.m2", + value = "sword_2h_zulaman_d_01.m2", }, { fileId = "148530", - value = "sword_2h_zulgurub_d_01.m2", text = "sword_2h_zulgurub_d_01.m2", + value = "sword_2h_zulgurub_d_01.m2", }, { fileId = "148534", - value = "thrown_1h_axe_a_01.m2", text = "thrown_1h_axe_a_01.m2", + value = "thrown_1h_axe_a_01.m2", }, { fileId = "148538", - value = "thrown_1h_axe_a_02.m2", text = "thrown_1h_axe_a_02.m2", + value = "thrown_1h_axe_a_02.m2", }, { fileId = "148542", - value = "thrown_1h_axe_b_01.m2", text = "thrown_1h_axe_b_01.m2", + value = "thrown_1h_axe_b_01.m2", }, { fileId = "148546", - value = "thrown_1h_boomerang_a_01.m2", text = "thrown_1h_boomerang_a_01.m2", + value = "thrown_1h_boomerang_a_01.m2", }, { fileId = "148553", - value = "thrown_1h_coilfang_dagger_d_01.m2", text = "thrown_1h_coilfang_dagger_d_01.m2", + value = "thrown_1h_coilfang_dagger_d_01.m2", }, { fileId = "148554", - value = "thrown_1h_dagger_a_01.m2", text = "thrown_1h_dagger_a_01.m2", + value = "thrown_1h_dagger_a_01.m2", }, { fileId = "148558", - value = "thrown_1h_dagger_a_02.m2", text = "thrown_1h_dagger_a_02.m2", + value = "thrown_1h_dagger_a_02.m2", }, { fileId = "148562", - value = "thrown_1h_dagger_b_01.m2", text = "thrown_1h_dagger_b_01.m2", + value = "thrown_1h_dagger_b_01.m2", }, { fileId = "148566", - value = "thrown_1h_dynamite_a_01.m2", text = "thrown_1h_dynamite_a_01.m2", + value = "thrown_1h_dynamite_a_01.m2", }, { fileId = "148568", - value = "thrown_1h_dynamite_a_02.m2", text = "thrown_1h_dynamite_a_02.m2", + value = "thrown_1h_dynamite_a_02.m2", }, { fileId = "148569", - value = "thrown_1h_fan_a_01.m2", text = "thrown_1h_fan_a_01.m2", + value = "thrown_1h_fan_a_01.m2", }, { fileId = "148570", - value = "thrown_1h_hammer_c_01.m2", text = "thrown_1h_hammer_c_01.m2", + value = "thrown_1h_hammer_c_01.m2", }, { fileId = "148574", - value = "thrown_1h_molotov_a_01.m2", text = "thrown_1h_molotov_a_01.m2", + value = "thrown_1h_molotov_a_01.m2", }, { fileId = "148575", - value = "thrown_1h_shuriken_a_01.m2", text = "thrown_1h_shuriken_a_01.m2", + value = "thrown_1h_shuriken_a_01.m2", }, { fileId = "148579", - value = "thrown_1h_shuriken_a_02.m2", text = "thrown_1h_shuriken_a_02.m2", + value = "thrown_1h_shuriken_a_02.m2", }, { fileId = "148583", - value = "thrown_1h_shuriken_b_01.m2", text = "thrown_1h_shuriken_b_01.m2", + value = "thrown_1h_shuriken_b_01.m2", }, { fileId = "148587", - value = "thrown_1h_sunwell_d_01.m2", text = "thrown_1h_sunwell_d_01.m2", + value = "thrown_1h_sunwell_d_01.m2", }, { fileId = "148593", - value = "totem_2h_carved_b_01.m2", text = "totem_2h_carved_b_01.m2", + value = "totem_2h_carved_b_01.m2", }, { fileId = "148595", - value = "totem_2h_carved_d_01.m2", text = "totem_2h_carved_d_01.m2", + value = "totem_2h_carved_d_01.m2", }, { fileId = "148598", - value = "wand_1h_ahnqiraj_d_01.m2", text = "wand_1h_ahnqiraj_d_01.m2", + value = "wand_1h_ahnqiraj_d_01.m2", }, { fileId = "148603", - value = "wand_1h_ahnqiraj_d_02.m2", text = "wand_1h_ahnqiraj_d_02.m2", + value = "wand_1h_ahnqiraj_d_02.m2", }, { fileId = "148608", - value = "wand_1h_auchindoun_d_01.m2", text = "wand_1h_auchindoun_d_01.m2", + value = "wand_1h_auchindoun_d_01.m2", }, { fileId = "148610", - value = "wand_1h_blackwing_a_01.m2", text = "wand_1h_blackwing_a_01.m2", + value = "wand_1h_blackwing_a_01.m2", }, { fileId = "148611", - value = "wand_1h_blood_a_01.m2", text = "wand_1h_blood_a_01.m2", + value = "wand_1h_blood_a_01.m2", }, { fileId = "148617", - value = "wand_1h_draenei_a_01.m2", text = "wand_1h_draenei_a_01.m2", + value = "wand_1h_draenei_a_01.m2", }, { fileId = "148623", - value = "wand_1h_horde_a_01.m2", text = "wand_1h_horde_a_01.m2", + value = "wand_1h_horde_a_01.m2", }, { fileId = "148628", - value = "wand_1h_horde_a_02.m2", text = "wand_1h_horde_a_02.m2", + value = "wand_1h_horde_a_02.m2", }, { fileId = "148634", - value = "wand_1h_horde_a_03.m2", text = "wand_1h_horde_a_03.m2", + value = "wand_1h_horde_a_03.m2", }, { fileId = "148640", - value = "wand_1h_horde_b_01.m2", text = "wand_1h_horde_b_01.m2", + value = "wand_1h_horde_b_01.m2", }, { fileId = "148646", - value = "wand_1h_horde_b_02.m2", text = "wand_1h_horde_b_02.m2", + value = "wand_1h_horde_b_02.m2", }, { fileId = "148652", - value = "wand_1h_jeweled_b_01.m2", text = "wand_1h_jeweled_b_01.m2", + value = "wand_1h_jeweled_b_01.m2", }, { fileId = "148657", - value = "wand_1h_jeweled_b_02.m2", text = "wand_1h_jeweled_b_02.m2", + value = "wand_1h_jeweled_b_02.m2", }, { fileId = "148663", - value = "wand_1h_outlandraid_d_01.m2", text = "wand_1h_outlandraid_d_01.m2", + value = "wand_1h_outlandraid_d_01.m2", }, { fileId = "148669", - value = "wand_1h_outlandraid_d_02.m2", text = "wand_1h_outlandraid_d_02.m2", + value = "wand_1h_outlandraid_d_02.m2", }, { fileId = "148674", - value = "wand_1h_outlandraid_d_03.m2", text = "wand_1h_outlandraid_d_03.m2", + value = "wand_1h_outlandraid_d_03.m2", }, { fileId = "148680", - value = "wand_1h_outlandraid_d_04.m2", text = "wand_1h_outlandraid_d_04.m2", + value = "wand_1h_outlandraid_d_04.m2", }, { fileId = "148685", - value = "wand_1h_outlandraid_d_05.m2", text = "wand_1h_outlandraid_d_05.m2", + value = "wand_1h_outlandraid_d_05.m2", }, { fileId = "148689", - value = "wand_1h_outlandraid_d_06.m2", text = "wand_1h_outlandraid_d_06.m2", + value = "wand_1h_outlandraid_d_06.m2", }, { fileId = "148694", - value = "wand_1h_romancandle_a_01.m2", text = "wand_1h_romancandle_a_01.m2", + value = "wand_1h_romancandle_a_01.m2", }, { fileId = "148695", - value = "wand_1h_standard_a_01.m2", text = "wand_1h_standard_a_01.m2", + value = "wand_1h_standard_a_01.m2", }, { fileId = "148699", - value = "wand_1h_standard_a_02.m2", text = "wand_1h_standard_a_02.m2", + value = "wand_1h_standard_a_02.m2", }, { fileId = "148706", - value = "wand_1h_stratholme_d_01.m2", text = "wand_1h_stratholme_d_01.m2", + value = "wand_1h_stratholme_d_01.m2", }, { fileId = "148708", - value = "wand_1h_stratholme_d_02.m2", text = "wand_1h_stratholme_d_02.m2", + value = "wand_1h_stratholme_d_02.m2", }, { fileId = "148709", - value = "wand_1h_sunwell_d_01.m2", text = "wand_1h_sunwell_d_01.m2", + value = "wand_1h_sunwell_d_01.m2", }, { fileId = "148714", - value = "wand_1h_sunwell_d_02.m2", text = "wand_1h_sunwell_d_02.m2", + value = "wand_1h_sunwell_d_02.m2", }, { fileId = "148725", - value = "wand_1h_zulaman_d_01.m2", text = "wand_1h_zulaman_d_01.m2", + value = "wand_1h_zulaman_d_01.m2", }, { fileId = "148730", - value = "wand_1h_zulaman_d_02.m2", text = "wand_1h_zulaman_d_02.m2", + value = "wand_1h_zulaman_d_02.m2", }, { fileId = "148734", - value = "wand_1h_zulgurub_d_01.m2", text = "wand_1h_zulgurub_d_01.m2", + value = "wand_1h_zulgurub_d_01.m2", }, { fileId = "148735", - value = "wand_1h_zulgurub_d_02.m2", text = "wand_1h_zulgurub_d_02.m2", + value = "wand_1h_zulgurub_d_02.m2", }, { fileId = "148736", - value = "wand_1h_zulgurub_d_03.m2", text = "wand_1h_zulgurub_d_03.m2", + value = "wand_1h_zulgurub_d_03.m2", + }, + { + fileId = "4323001", + text = "whip_1h_incubus_a_01.m2", + value = "whip_1h_incubus_a_01.m2", }, }, - value = "weapon", text = "weapon", + value = "weapon", }, }, - value = "objectcomponents", text = "objectcomponents", + value = "objectcomponents", }, }, - value = "item", text = "item", + value = "item", }, { children = { @@ -33682,5402 +33693,5402 @@ WeakAuras.ModelPaths = { children = { { fileId = "165398", - value = "bloodspurt.m2", text = "bloodspurt.m2", + value = "bloodspurt.m2", }, { fileId = "165399", - value = "bloodspurtblack.m2", text = "bloodspurtblack.m2", + value = "bloodspurtblack.m2", }, { fileId = "165400", - value = "bloodspurtblacklarge.m2", text = "bloodspurtblacklarge.m2", + value = "bloodspurtblacklarge.m2", }, { fileId = "165401", - value = "bloodspurtblue.m2", text = "bloodspurtblue.m2", + value = "bloodspurtblue.m2", }, { fileId = "165402", - value = "bloodspurtbluelarge.m2", text = "bloodspurtbluelarge.m2", + value = "bloodspurtbluelarge.m2", }, { fileId = "165404", - value = "bloodspurtgreen.m2", text = "bloodspurtgreen.m2", + value = "bloodspurtgreen.m2", }, { fileId = "165405", - value = "bloodspurtgreenlarge.m2", text = "bloodspurtgreenlarge.m2", + value = "bloodspurtgreenlarge.m2", }, { fileId = "165407", - value = "bloodspurtlarge.m2", text = "bloodspurtlarge.m2", + value = "bloodspurtlarge.m2", }, }, - value = "bloodspurts", text = "bloodspurts", + value = "bloodspurts", }, { fileId = "165411", - value = "bubbles.m2", text = "bubbles.m2", + value = "bubbles.m2", }, { fileId = "165412", - value = "coldbreath.m2", text = "coldbreath.m2", + value = "coldbreath.m2", }, { fileId = "165415", - value = "ember_trail.m2", text = "ember_trail.m2", + value = "ember_trail.m2", }, { fileId = "165417", - value = "footstepspraydirt.m2", text = "footstepspraydirt.m2", + value = "footstepspraydirt.m2", }, { fileId = "165418", - value = "footstepspraydirtwalk.m2", text = "footstepspraydirtwalk.m2", + value = "footstepspraydirtwalk.m2", }, { fileId = "165419", - value = "footstepspraysnow.m2", text = "footstepspraysnow.m2", + value = "footstepspraysnow.m2", }, { fileId = "165420", - value = "footstepspraysnowwalk.m2", text = "footstepspraysnowwalk.m2", + value = "footstepspraysnowwalk.m2", }, { fileId = "165421", - value = "footstepspraywater.m2", text = "footstepspraywater.m2", + value = "footstepspraywater.m2", }, { fileId = "165422", - value = "footstepspraywaterwalk.m2", text = "footstepspraywaterwalk.m2", + value = "footstepspraywaterwalk.m2", }, { fileId = "165427", - value = "greenleaves.m2", text = "greenleaves.m2", + value = "greenleaves.m2", }, { fileId = "165433", - value = "loginfx.m2", text = "loginfx.m2", + value = "loginfx.m2", }, { fileId = "165434", - value = "lootfx.m2", text = "lootfx.m2", + value = "lootfx.m2", }, { fileId = "2198654", - value = "moltenblast_missile.m2", text = "moltenblast_missile.m2", + value = "moltenblast_missile.m2", }, { fileId = "165436", - value = "morphfx.m2", text = "morphfx.m2", + value = "morphfx.m2", }, { fileId = "165437", - value = "pick_spellobject.m2", text = "pick_spellobject.m2", + value = "pick_spellobject.m2", }, { fileId = "2198578", - value = "stunswirl_state_head.m2", text = "stunswirl_state_head.m2", + value = "stunswirl_state_head.m2", }, }, - value = "particles", text = "particles", + value = "particles", }, { children = { { fileId = "165528", - value = "sonicboom_impactdd_uber_chest.m2", text = "sonicboom_impactdd_uber_chest.m2", + value = "sonicboom_impactdd_uber_chest.m2", }, }, - value = "spell", text = "spell", + value = "spell", }, { children = { { fileId = "165529", - value = "abolishmagic_base.m2", text = "abolishmagic_base.m2", + value = "abolishmagic_base.m2", }, { fileId = "165530", - value = "abyssal_ball.m2", text = "abyssal_ball.m2", + value = "abyssal_ball.m2", }, { fileId = "165531", - value = "abyssal_impact_base.m2", text = "abyssal_impact_base.m2", + value = "abyssal_impact_base.m2", }, { fileId = "165532", - value = "acidbreath.m2", text = "acidbreath.m2", + value = "acidbreath.m2", }, { fileId = "165533", - value = "acidburn.m2", text = "acidburn.m2", + value = "acidburn.m2", }, { fileId = "165534", - value = "acidburn_black.m2", text = "acidburn_black.m2", + value = "acidburn_black.m2", }, { fileId = "165535", - value = "acidburn_blue.m2", text = "acidburn_blue.m2", + value = "acidburn_blue.m2", }, { fileId = "165536", - value = "acidburn_lightblue.m2", text = "acidburn_lightblue.m2", + value = "acidburn_lightblue.m2", }, { fileId = "165537", - value = "acidburn_orange.m2", text = "acidburn_orange.m2", + value = "acidburn_orange.m2", }, { fileId = "165538", - value = "acidburn_purple.m2", text = "acidburn_purple.m2", + value = "acidburn_purple.m2", }, { fileId = "165539", - value = "acidburn_red.m2", text = "acidburn_red.m2", + value = "acidburn_red.m2", }, { fileId = "165540", - value = "acidburn_small.m2", text = "acidburn_small.m2", + value = "acidburn_small.m2", }, { fileId = "165541", - value = "acidburn_small_black.m2", text = "acidburn_small_black.m2", + value = "acidburn_small_black.m2", }, { fileId = "165542", - value = "acidburn_small_blue.m2", text = "acidburn_small_blue.m2", + value = "acidburn_small_blue.m2", }, { fileId = "165543", - value = "acidburn_small_lightblue.m2", text = "acidburn_small_lightblue.m2", + value = "acidburn_small_lightblue.m2", }, { fileId = "165544", - value = "acidburn_small_orange.m2", text = "acidburn_small_orange.m2", + value = "acidburn_small_orange.m2", }, { fileId = "165545", - value = "acidburn_small_purple.m2", text = "acidburn_small_purple.m2", + value = "acidburn_small_purple.m2", }, { fileId = "165546", - value = "acidburn_small_red.m2", text = "acidburn_small_red.m2", + value = "acidburn_small_red.m2", }, { fileId = "165547", - value = "acidburn_small_yellow.m2", text = "acidburn_small_yellow.m2", + value = "acidburn_small_yellow.m2", }, { fileId = "165548", - value = "acidburn_yellow.m2", text = "acidburn_yellow.m2", + value = "acidburn_yellow.m2", }, { fileId = "165549", - value = "acidcloudbreath.m2", text = "acidcloudbreath.m2", + value = "acidcloudbreath.m2", }, { fileId = "165550", - value = "acidcloudbreath_fast.m2", text = "acidcloudbreath_fast.m2", + value = "acidcloudbreath_fast.m2", }, { fileId = "165551", - value = "acidcloudbreath_groundsmoke.m2", text = "acidcloudbreath_groundsmoke.m2", + value = "acidcloudbreath_groundsmoke.m2", }, { fileId = "165552", - value = "acidliquidbreath.m2", text = "acidliquidbreath.m2", + value = "acidliquidbreath.m2", }, { fileId = "165554", - value = "adrenalinerush_cast_base.m2", text = "adrenalinerush_cast_base.m2", + value = "adrenalinerush_cast_base.m2", }, { fileId = "165556", - value = "aegis.m2", text = "aegis.m2", + value = "aegis.m2", }, { fileId = "165559", - value = "aimedshot_impact_chest.m2", text = "aimedshot_impact_chest.m2", + value = "aimedshot_impact_chest.m2", }, { fileId = "165560", - value = "alliancectfflag_spell.m2", text = "alliancectfflag_spell.m2", + value = "alliancectfflag_spell.m2", }, { fileId = "165562", - value = "amplifymagic_impact_base.m2", text = "amplifymagic_impact_base.m2", + value = "amplifymagic_impact_base.m2", }, { fileId = "165563", - value = "antimagic_precast_hand.m2", text = "antimagic_precast_hand.m2", + value = "antimagic_precast_hand.m2", }, { fileId = "165564", - value = "antimagic_state_base.m2", text = "antimagic_state_base.m2", + value = "antimagic_state_base.m2", }, { fileId = "165565", - value = "antimagic_state_blue.m2", text = "antimagic_state_blue.m2", + value = "antimagic_state_blue.m2", }, { fileId = "165566", - value = "antimagic_state_red.m2", text = "antimagic_state_red.m2", + value = "antimagic_state_red.m2", }, { fileId = "165567", - value = "arcane_fire_weapon_effect.m2", text = "arcane_fire_weapon_effect.m2", + value = "arcane_fire_weapon_effect.m2", }, { fileId = "165568", - value = "arcane_form_precast.m2", text = "arcane_form_precast.m2", + value = "arcane_form_precast.m2", }, { fileId = "165569", - value = "arcane_missile.m2", text = "arcane_missile.m2", + value = "arcane_missile.m2", }, { fileId = "165570", - value = "arcane_missile_lvl1.m2", text = "arcane_missile_lvl1.m2", + value = "arcane_missile_lvl1.m2", }, { fileId = "165571", - value = "arcane_missile_lvl2.m2", text = "arcane_missile_lvl2.m2", + value = "arcane_missile_lvl2.m2", }, { fileId = "165572", - value = "arcane_missile_lvl3.m2", text = "arcane_missile_lvl3.m2", + value = "arcane_missile_lvl3.m2", }, { fileId = "165573", - value = "arcane_missile_lvl4.m2", text = "arcane_missile_lvl4.m2", + value = "arcane_missile_lvl4.m2", }, { fileId = "165574", - value = "arcanebomb_missle.m2", text = "arcanebomb_missle.m2", + value = "arcanebomb_missle.m2", }, { fileId = "165575", - value = "arcanebreath.m2", text = "arcanebreath.m2", + value = "arcanebreath.m2", }, { fileId = "165576", - value = "arcaneexplosion_base.m2", text = "arcaneexplosion_base.m2", + value = "arcaneexplosion_base.m2", }, { fileId = "165577", - value = "arcaneexplosion_boss_base.m2", text = "arcaneexplosion_boss_base.m2", + value = "arcaneexplosion_boss_base.m2", }, { fileId = "165578", - value = "arcaneexplosion_impact_chest.m2", text = "arcaneexplosion_impact_chest.m2", + value = "arcaneexplosion_impact_chest.m2", }, { fileId = "165579", - value = "arcaneforceshield_blue.m2", text = "arcaneforceshield_blue.m2", + value = "arcaneforceshield_blue.m2", }, { fileId = "165580", - value = "arcaneforceshield_dark.m2", text = "arcaneforceshield_dark.m2", + value = "arcaneforceshield_dark.m2", }, { fileId = "165581", - value = "arcaneforceshield_green.m2", text = "arcaneforceshield_green.m2", + value = "arcaneforceshield_green.m2", }, { fileId = "165582", - value = "arcaneforceshield_purple.m2", text = "arcaneforceshield_purple.m2", + value = "arcaneforceshield_purple.m2", }, { fileId = "165583", - value = "arcaneforceshield_red.m2", text = "arcaneforceshield_red.m2", + value = "arcaneforceshield_red.m2", }, { fileId = "165584", - value = "arcaneforceshield_yellow.m2", text = "arcaneforceshield_yellow.m2", + value = "arcaneforceshield_yellow.m2", }, { fileId = "165585", - value = "arcaneintellect_impact_base.m2", text = "arcaneintellect_impact_base.m2", + value = "arcaneintellect_impact_base.m2", }, { fileId = "165586", - value = "arcanelightning.m2", text = "arcanelightning.m2", + value = "arcanelightning.m2", }, { fileId = "165587", - value = "arcanelightning01.m2", text = "arcanelightning01.m2", + value = "arcanelightning01.m2", }, { fileId = "165588", - value = "arcanelightning02.m2", text = "arcanelightning02.m2", + value = "arcanelightning02.m2", }, { fileId = "165589", - value = "arcanepower_state_chest.m2", text = "arcanepower_state_chest.m2", + value = "arcanepower_state_chest.m2", }, { fileId = "165590", - value = "arcanereflect_state_chest.m2", text = "arcanereflect_state_chest.m2", + value = "arcanereflect_state_chest.m2", }, { fileId = "165591", - value = "arcaneshot_area.m2", text = "arcaneshot_area.m2", + value = "arcaneshot_area.m2", }, { fileId = "165592", - value = "arcaneshot_missile.m2", text = "arcaneshot_missile.m2", + value = "arcaneshot_missile.m2", }, { fileId = "165593", - value = "arcaneshot_missile2.m2", text = "arcaneshot_missile2.m2", + value = "arcaneshot_missile2.m2", }, { fileId = "165594", - value = "arcanespirit_impact_base.m2", text = "arcanespirit_impact_base.m2", + value = "arcanespirit_impact_base.m2", }, { fileId = "165595", - value = "arcanetorrent.m2", text = "arcanetorrent.m2", + value = "arcanetorrent.m2", }, { fileId = "165596", - value = "arcanevolley_missile.m2", text = "arcanevolley_missile.m2", + value = "arcanevolley_missile.m2", }, { fileId = "165597", - value = "arcaneward_impact_chest.m2", text = "arcaneward_impact_chest.m2", + value = "arcaneward_impact_chest.m2", }, { fileId = "165598", - value = "archimonde_blue_fire.m2", text = "archimonde_blue_fire.m2", + value = "archimonde_blue_fire.m2", }, { fileId = "165599", - value = "archimonde_fire.m2", text = "archimonde_fire.m2", + value = "archimonde_fire.m2", }, { fileId = "165613", - value = "aspectbeast_impact_head.m2", text = "aspectbeast_impact_head.m2", + value = "aspectbeast_impact_head.m2", }, { fileId = "165614", - value = "aspectcheetah_impact_head.m2", text = "aspectcheetah_impact_head.m2", + value = "aspectcheetah_impact_head.m2", }, { fileId = "165615", - value = "aspecthawk_impact_head.m2", text = "aspecthawk_impact_head.m2", + value = "aspecthawk_impact_head.m2", }, { fileId = "165616", - value = "aspectmonkey_impact_head.m2", text = "aspectmonkey_impact_head.m2", + value = "aspectmonkey_impact_head.m2", }, { fileId = "165617", - value = "aspectsnake_impact_head.m2", text = "aspectsnake_impact_head.m2", + value = "aspectsnake_impact_head.m2", }, { fileId = "165618", - value = "aspectwild_impact_head.m2", text = "aspectwild_impact_head.m2", + value = "aspectwild_impact_head.m2", }, { fileId = "165619", - value = "aspectwolf_impact_head.m2", text = "aspectwolf_impact_head.m2", + value = "aspectwolf_impact_head.m2", }, { fileId = "165622", - value = "astral_recall_impact_base.m2", text = "astral_recall_impact_base.m2", + value = "astral_recall_impact_base.m2", }, { fileId = "165643", - value = "avengingwrath_impact_base.m2", text = "avengingwrath_impact_base.m2", + value = "avengingwrath_impact_base.m2", }, { fileId = "165644", - value = "avengingwrath_state_chest.m2", text = "avengingwrath_state_chest.m2", + value = "avengingwrath_state_chest.m2", }, { fileId = "165645", - value = "backstab_cast_base.m2", text = "backstab_cast_base.m2", + value = "backstab_cast_base.m2", }, { fileId = "165646", - value = "backstab_impact_chest.m2", text = "backstab_impact_chest.m2", + value = "backstab_impact_chest.m2", }, { fileId = "165647", - value = "balanceofnature_impact_base.m2", text = "balanceofnature_impact_base.m2", + value = "balanceofnature_impact_base.m2", }, { fileId = "165648", - value = "banish_chest.m2", text = "banish_chest.m2", + value = "banish_chest.m2", }, { fileId = "165649", - value = "banish_chest_blue.m2", text = "banish_chest_blue.m2", + value = "banish_chest_blue.m2", }, { fileId = "165650", - value = "banish_chest_dark.m2", text = "banish_chest_dark.m2", + value = "banish_chest_dark.m2", }, { fileId = "165651", - value = "banish_chest_purple.m2", text = "banish_chest_purple.m2", + value = "banish_chest_purple.m2", }, { fileId = "165652", - value = "banish_chest_white.m2", text = "banish_chest_white.m2", + value = "banish_chest_white.m2", }, { fileId = "165653", - value = "banish_chest_yellow.m2", text = "banish_chest_yellow.m2", + value = "banish_chest_yellow.m2", }, { fileId = "165654", - value = "barkshield_state_base.m2", text = "barkshield_state_base.m2", + value = "barkshield_state_base.m2", }, { fileId = "165655", - value = "barkskin_state_base.m2", text = "barkskin_state_base.m2", + value = "barkskin_state_base.m2", }, { fileId = "165656", - value = "baseflagcapred_impact_base.m2", text = "baseflagcapred_impact_base.m2", + value = "baseflagcapred_impact_base.m2", }, { fileId = "165657", - value = "basicstrike.m2", text = "basicstrike.m2", + value = "basicstrike.m2", }, { fileId = "165658", - value = "battleshout_cast_base.m2", text = "battleshout_cast_base.m2", + value = "battleshout_cast_base.m2", }, { fileId = "165659", - value = "battlestance_impact_head.m2", text = "battlestance_impact_head.m2", + value = "battlestance_impact_head.m2", }, { fileId = "165664", - value = "bearfrenzy.m2", text = "bearfrenzy.m2", + value = "bearfrenzy.m2", }, { fileId = "165665", - value = "bearfrenzyimpact.m2", text = "bearfrenzyimpact.m2", + value = "bearfrenzyimpact.m2", }, { fileId = "165668", - value = "beastcall_impact_head.m2", text = "beastcall_impact_head.m2", + value = "beastcall_impact_head.m2", }, { fileId = "165669", - value = "beastlore_impact_base.m2", text = "beastlore_impact_base.m2", + value = "beastlore_impact_base.m2", }, { fileId = "165670", - value = "beastlore_impact_head.m2", text = "beastlore_impact_head.m2", + value = "beastlore_impact_head.m2", }, { fileId = "165672", - value = "beastragecaster.m2", text = "beastragecaster.m2", + value = "beastragecaster.m2", }, { fileId = "165673", - value = "beastragestate.m2", text = "beastragestate.m2", + value = "beastragestate.m2", }, { fileId = "165674", - value = "beastsoothe_impact_head.m2", text = "beastsoothe_impact_head.m2", + value = "beastsoothe_impact_head.m2", }, { fileId = "165675", - value = "beastsoothe_state_head.m2", text = "beastsoothe_state_head.m2", + value = "beastsoothe_state_head.m2", }, { fileId = "165676", - value = "beastwithin_state_base.m2", text = "beastwithin_state_base.m2", + value = "beastwithin_state_base.m2", }, { fileId = "165678", - value = "berzerkerstance_impact_head.m2", text = "berzerkerstance_impact_head.m2", + value = "berzerkerstance_impact_head.m2", }, { fileId = "165679", - value = "bestowdisease_impact_chest.m2", text = "bestowdisease_impact_chest.m2", + value = "bestowdisease_impact_chest.m2", }, { fileId = "165680", - value = "bind2_impact_base.m2", text = "bind2_impact_base.m2", + value = "bind2_impact_base.m2", }, { fileId = "165681", - value = "bind_impact_base.m2", text = "bind_impact_base.m2", + value = "bind_impact_base.m2", }, { fileId = "165685", - value = "blackmagic_precast_base.m2", text = "blackmagic_precast_base.m2", + value = "blackmagic_precast_base.m2", }, { fileId = "165686", - value = "blackradiationfog.m2", text = "blackradiationfog.m2", + value = "blackradiationfog.m2", }, { fileId = "165687", - value = "blackshot_missile.m2", text = "blackshot_missile.m2", + value = "blackshot_missile.m2", }, { fileId = "165690", - value = "blessingofagility_base.m2", text = "blessingofagility_base.m2", + value = "blessingofagility_base.m2", }, { fileId = "165692", - value = "blessingoffreedom_impact.m2", text = "blessingoffreedom_impact.m2", + value = "blessingoffreedom_impact.m2", }, { fileId = "165693", - value = "blessingoffreedom_state.m2", text = "blessingoffreedom_state.m2", + value = "blessingoffreedom_state.m2", }, { fileId = "165694", - value = "blessingofkings_base.m2", text = "blessingofkings_base.m2", + value = "blessingofkings_base.m2", }, { fileId = "165696", - value = "blessingoflight_impact.m2", text = "blessingoflight_impact.m2", + value = "blessingoflight_impact.m2", }, { fileId = "165698", - value = "blessingofmight_base.m2", text = "blessingofmight_base.m2", + value = "blessingofmight_base.m2", }, { fileId = "165700", - value = "blessingofprotection_base.m2", text = "blessingofprotection_base.m2", + value = "blessingofprotection_base.m2", }, { fileId = "165701", - value = "blessingofprotection_chest.m2", text = "blessingofprotection_chest.m2", + value = "blessingofprotection_chest.m2", }, { fileId = "165702", - value = "blessingofprotection_impact.m2", text = "blessingofprotection_impact.m2", + value = "blessingofprotection_impact.m2", }, { fileId = "165703", - value = "blessingofprotection_state_classic.m2", text = "blessingofprotection_state_classic.m2", + value = "blessingofprotection_state_classic.m2", }, { fileId = "165705", - value = "blessingofsacrifice_impact.m2", text = "blessingofsacrifice_impact.m2", + value = "blessingofsacrifice_impact.m2", }, { fileId = "165707", - value = "blessingofsalvation_impact.m2", text = "blessingofsalvation_impact.m2", + value = "blessingofsalvation_impact.m2", }, { fileId = "165708", - value = "blessingofsanctuary.m2", text = "blessingofsanctuary.m2", + value = "blessingofsanctuary.m2", }, { fileId = "165709", - value = "blessingofspellprotection_base.m2", text = "blessingofspellprotection_base.m2", + value = "blessingofspellprotection_base.m2", }, { fileId = "165710", - value = "blessingofstamina_base.m2", text = "blessingofstamina_base.m2", + value = "blessingofstamina_base.m2", }, { fileId = "165711", - value = "blessingofstrength_base.m2", text = "blessingofstrength_base.m2", + value = "blessingofstrength_base.m2", }, { fileId = "165712", - value = "blessingofwisdom_base.m2", text = "blessingofwisdom_base.m2", + value = "blessingofwisdom_base.m2", }, { fileId = "165713", - value = "blindingshot_impact.m2", text = "blindingshot_impact.m2", + value = "blindingshot_impact.m2", }, { fileId = "165714", - value = "blindingshot_missile.m2", text = "blindingshot_missile.m2", + value = "blindingshot_missile.m2", }, { fileId = "165715", - value = "blink_impact_chest.m2", text = "blink_impact_chest.m2", + value = "blink_impact_chest.m2", }, { fileId = "165716", - value = "blizzard_impact_base.m2", text = "blizzard_impact_base.m2", + value = "blizzard_impact_base.m2", }, { fileId = "165722", - value = "bloodboil_impact_chest.m2", text = "bloodboil_impact_chest.m2", + value = "bloodboil_impact_chest.m2", }, { fileId = "165723", - value = "bloodbolt_chest.m2", text = "bloodbolt_chest.m2", + value = "bloodbolt_chest.m2", }, { fileId = "165724", - value = "bloodbolt_missile_low.m2", text = "bloodbolt_missile_low.m2", + value = "bloodbolt_missile_low.m2", }, { fileId = "165725", - value = "bloodlust_cast_hand.m2", text = "bloodlust_cast_hand.m2", + value = "bloodlust_cast_hand.m2", }, { fileId = "165726", - value = "bloodlust_player_cast_head.m2", text = "bloodlust_player_cast_head.m2", + value = "bloodlust_player_cast_head.m2", }, { fileId = "165727", - value = "bloodlust_player_state_head.m2", text = "bloodlust_player_state_head.m2", + value = "bloodlust_player_state_head.m2", }, { fileId = "165728", - value = "bloodlust_state_hand.m2", text = "bloodlust_state_hand.m2", + value = "bloodlust_state_hand.m2", }, { fileId = "165737", - value = "bloodyexplosion.m2", text = "bloodyexplosion.m2", + value = "bloodyexplosion.m2", }, { fileId = "165738", - value = "bloodyexplosiongreen.m2", text = "bloodyexplosiongreen.m2", + value = "bloodyexplosiongreen.m2", }, { fileId = "165743", - value = "blueradiationfog.m2", text = "blueradiationfog.m2", + value = "blueradiationfog.m2", }, { fileId = "165744", - value = "bomb_explosiona.m2", text = "bomb_explosiona.m2", + value = "bomb_explosiona.m2", }, { fileId = "165749", - value = "bonearmor_head.m2", text = "bonearmor_head.m2", + value = "bonearmor_head.m2", }, { fileId = "165750", - value = "bonearmor_recursive.m2", text = "bonearmor_recursive.m2", + value = "bonearmor_recursive.m2", }, { fileId = "165751", - value = "bonearmor_state_chest.m2", text = "bonearmor_state_chest.m2", + value = "bonearmor_state_chest.m2", }, { fileId = "165752", - value = "boneworm_attackeffects.m2", text = "boneworm_attackeffects.m2", + value = "boneworm_attackeffects.m2", }, { fileId = "165756", - value = "boulder_missile.m2", text = "boulder_missile.m2", + value = "boulder_missile.m2", }, { fileId = "165757", - value = "bouldergiant_missile.m2", text = "bouldergiant_missile.m2", + value = "bouldergiant_missile.m2", }, { fileId = "165759", - value = "brillianceaura.m2", text = "brillianceaura.m2", + value = "brillianceaura.m2", }, { fileId = "165760", - value = "bubble_drunk.m2", text = "bubble_drunk.m2", + value = "bubble_drunk.m2", }, { fileId = "165761", - value = "burningintellect_impact_base.m2", text = "burningintellect_impact_base.m2", + value = "burningintellect_impact_base.m2", }, { fileId = "165762", - value = "burningspirit_impact_base.m2", text = "burningspirit_impact_base.m2", + value = "burningspirit_impact_base.m2", }, { fileId = "165763", - value = "burningspirit_impact_head.m2", text = "burningspirit_impact_head.m2", + value = "burningspirit_impact_head.m2", }, { fileId = "165764", - value = "burrowearth_bonewaste_missile.m2", text = "burrowearth_bonewaste_missile.m2", + value = "burrowearth_bonewaste_missile.m2", }, { fileId = "165765", - value = "burrowearth_brown_missile.m2", text = "burrowearth_brown_missile.m2", + value = "burrowearth_brown_missile.m2", }, { fileId = "165766", - value = "burrowearth_hellfire_missile.m2", text = "burrowearth_hellfire_missile.m2", + value = "burrowearth_hellfire_missile.m2", }, { fileId = "165768", - value = "calllightning_impact.m2", text = "calllightning_impact.m2", + value = "calllightning_impact.m2", }, { fileId = "165778", - value = "catmark.m2", text = "catmark.m2", + value = "catmark.m2", }, { fileId = "1375559", - value = "cfx_paladin_shieldofvengeance_castchest.m2", text = "cfx_paladin_shieldofvengeance_castchest.m2", + value = "cfx_paladin_shieldofvengeance_castchest.m2", }, { fileId = "165779", - value = "chainlightning_fel_impact_chest.m2", text = "chainlightning_fel_impact_chest.m2", + value = "chainlightning_fel_impact_chest.m2", }, { fileId = "165780", - value = "chainlightning_impact_chest.m2", text = "chainlightning_impact_chest.m2", + value = "chainlightning_impact_chest.m2", }, { fileId = "165782", - value = "chainsofice_low_base.m2", text = "chainsofice_low_base.m2", + value = "chainsofice_low_base.m2", }, { fileId = "165783", - value = "challengingshout_cast_base.m2", text = "challengingshout_cast_base.m2", + value = "challengingshout_cast_base.m2", }, { fileId = "165784", - value = "chargetrail.m2", text = "chargetrail.m2", + value = "chargetrail.m2", }, { fileId = "165785", - value = "cheapshot_cast_base.m2", text = "cheapshot_cast_base.m2", + value = "cheapshot_cast_base.m2", }, { fileId = "165786", - value = "cheapshot_impact_chest.m2", text = "cheapshot_impact_chest.m2", + value = "cheapshot_impact_chest.m2", }, { fileId = "165787", - value = "cheapshot_state_head.m2", text = "cheapshot_state_head.m2", + value = "cheapshot_state_head.m2", }, { fileId = "165788", - value = "cheat_death.m2", text = "cheat_death.m2", + value = "cheat_death.m2", }, { fileId = "165792", - value = "christmassnowrain.m2", text = "christmassnowrain.m2", + value = "christmassnowrain.m2", }, { fileId = "1083712", - value = "cinematic_omni_light.m2", text = "cinematic_omni_light.m2", + value = "cinematic_omni_light.m2", }, { fileId = "165794", - value = "circle_of_renewal_impact.m2", text = "circle_of_renewal_impact.m2", + value = "circle_of_renewal_impact.m2", }, { fileId = "165795", - value = "clearcasting_impact_chest.m2", text = "clearcasting_impact_chest.m2", + value = "clearcasting_impact_chest.m2", }, { fileId = "165796", - value = "cleave_cast_base.m2", text = "cleave_cast_base.m2", + value = "cleave_cast_base.m2", }, { fileId = "165797", - value = "cleave_cast_base_purple.m2", text = "cleave_cast_base_purple.m2", + value = "cleave_cast_base_purple.m2", }, { fileId = "165798", - value = "cleave_impact_chest.m2", text = "cleave_impact_chest.m2", + value = "cleave_impact_chest.m2", }, { fileId = "165799", - value = "clense_base.m2", text = "clense_base.m2", + value = "clense_base.m2", }, { fileId = "165810", - value = "coneofcold_geo.m2", text = "coneofcold_geo.m2", + value = "coneofcold_geo.m2", }, { fileId = "165811", - value = "coneofcold_hand.m2", text = "coneofcold_hand.m2", + value = "coneofcold_hand.m2", }, { fileId = "165812", - value = "coneoffire_hand.m2", text = "coneoffire_hand.m2", + value = "coneoffire_hand.m2", }, { fileId = "165813", - value = "conflagrate_impact_chest.m2", text = "conflagrate_impact_chest.m2", + value = "conflagrate_impact_chest.m2", }, { fileId = "165815", - value = "confused_state_head.m2", text = "confused_state_head.m2", + value = "confused_state_head.m2", }, { fileId = "165816", - value = "conjureitem.m2", text = "conjureitem.m2", + value = "conjureitem.m2", }, { fileId = "165817", - value = "conjureitemcast.m2", text = "conjureitemcast.m2", + value = "conjureitemcast.m2", }, { fileId = "165818", - value = "consecration_impact_base.m2", text = "consecration_impact_base.m2", + value = "consecration_impact_base.m2", }, { fileId = "165819", - value = "consume_magic_impact.m2", text = "consume_magic_impact.m2", + value = "consume_magic_impact.m2", }, { fileId = "165820", - value = "corrosivesandbreath.m2", text = "corrosivesandbreath.m2", + value = "corrosivesandbreath.m2", }, { fileId = "165821", - value = "corruption_impactdot_med_base.m2", text = "corruption_impactdot_med_base.m2", + value = "corruption_impactdot_med_base.m2", }, { fileId = "165822", - value = "counterspell_impact_chest.m2", text = "counterspell_impact_chest.m2", + value = "counterspell_impact_chest.m2", }, { fileId = "165824", - value = "createsoulstone_cast.m2", text = "createsoulstone_cast.m2", + value = "createsoulstone_cast.m2", }, { fileId = "165825", - value = "creature_scourgerunecirclecrystal.m2", text = "creature_scourgerunecirclecrystal.m2", + value = "creature_scourgerunecirclecrystal.m2", }, { fileId = "165826", - value = "creature_spellportal_blue.m2", text = "creature_spellportal_blue.m2", + value = "creature_spellportal_blue.m2", }, { fileId = "165827", - value = "creature_spellportal_green.m2", text = "creature_spellportal_green.m2", + value = "creature_spellportal_green.m2", }, { fileId = "165828", - value = "creature_spellportal_largeshadow.m2", text = "creature_spellportal_largeshadow.m2", + value = "creature_spellportal_largeshadow.m2", }, { fileId = "165829", - value = "creature_spellportal_purple.m2", text = "creature_spellportal_purple.m2", + value = "creature_spellportal_purple.m2", }, { fileId = "165830", - value = "creature_spellportal_white.m2", text = "creature_spellportal_white.m2", + value = "creature_spellportal_white.m2", }, { fileId = "165831", - value = "creature_spellportal_yellow.m2", text = "creature_spellportal_yellow.m2", + value = "creature_spellportal_yellow.m2", }, { fileId = "165832", - value = "creature_spellportallarge_blue.m2", text = "creature_spellportallarge_blue.m2", + value = "creature_spellportallarge_blue.m2", }, { fileId = "165833", - value = "creature_spellportallarge_green.m2", text = "creature_spellportallarge_green.m2", + value = "creature_spellportallarge_green.m2", }, { fileId = "165834", - value = "creature_spellportallarge_purple.m2", text = "creature_spellportallarge_purple.m2", + value = "creature_spellportallarge_purple.m2", }, { fileId = "165835", - value = "creature_spellportallarge_red.m2", text = "creature_spellportallarge_red.m2", + value = "creature_spellportallarge_red.m2", }, { fileId = "165836", - value = "creature_spellportallarge_yellow.m2", text = "creature_spellportallarge_yellow.m2", + value = "creature_spellportallarge_yellow.m2", }, { fileId = "165837", - value = "cripple_impact_base.m2", text = "cripple_impact_base.m2", + value = "cripple_impact_base.m2", }, { fileId = "165838", - value = "cripple_state_base.m2", text = "cripple_state_base.m2", + value = "cripple_state_base.m2", }, { fileId = "165839", - value = "cripple_state_chest.m2", text = "cripple_state_chest.m2", + value = "cripple_state_chest.m2", }, { fileId = "165840", - value = "crow_baked.m2", text = "crow_baked.m2", + value = "crow_baked.m2", }, { fileId = "165850", - value = "cthuneeyeattack.m2", text = "cthuneeyeattack.m2", + value = "cthuneeyeattack.m2", }, { fileId = "165851", - value = "curseelements_impact_head.m2", text = "curseelements_impact_head.m2", + value = "curseelements_impact_head.m2", }, { fileId = "165852", - value = "curseofagony_head.m2", text = "curseofagony_head.m2", + value = "curseofagony_head.m2", }, { fileId = "165853", - value = "curseoffrailty_head.m2", text = "curseoffrailty_head.m2", + value = "curseoffrailty_head.m2", }, { fileId = "165854", - value = "curseofmannoroth_head.m2", text = "curseofmannoroth_head.m2", + value = "curseofmannoroth_head.m2", }, { fileId = "165855", - value = "curseofrecklessness_impact_chest.m2", text = "curseofrecklessness_impact_chest.m2", + value = "curseofrecklessness_impact_chest.m2", }, { fileId = "165856", - value = "curseoftongues_impact.m2", text = "curseoftongues_impact.m2", + value = "curseoftongues_impact.m2", }, { fileId = "165857", - value = "curseoftongues_state_chest.m2", text = "curseoftongues_state_chest.m2", + value = "curseoftongues_state_chest.m2", }, { fileId = "165858", - value = "curseofweakness_head.m2", text = "curseofweakness_head.m2", + value = "curseofweakness_head.m2", }, { fileId = "165861", - value = "cyclone_caster_state.m2", text = "cyclone_caster_state.m2", + value = "cyclone_caster_state.m2", }, { fileId = "165862", - value = "cyclone_state.m2", text = "cyclone_state.m2", + value = "cyclone_state.m2", }, { fileId = "165863", - value = "cycloneearth_state.m2", text = "cycloneearth_state.m2", + value = "cycloneearth_state.m2", }, { fileId = "165864", - value = "cyclonefire_state.m2", text = "cyclonefire_state.m2", + value = "cyclonefire_state.m2", }, { fileId = "165865", - value = "cyclonegeo.m2", text = "cyclonegeo.m2", + value = "cyclonegeo.m2", }, { fileId = "165866", - value = "cyclonegeo2.m2", text = "cyclonegeo2.m2", + value = "cyclonegeo2.m2", }, { fileId = "165867", - value = "cyclonegeo2_additive.m2", text = "cyclonegeo2_additive.m2", + value = "cyclonegeo2_additive.m2", }, { fileId = "165868", - value = "cyclonegeo3.m2", text = "cyclonegeo3.m2", + value = "cyclonegeo3.m2", }, { fileId = "165869", - value = "cyclonegeo3_additive.m2", text = "cyclonegeo3_additive.m2", + value = "cyclonegeo3_additive.m2", }, { fileId = "165870", - value = "cyclonegeo_additive.m2", text = "cyclonegeo_additive.m2", + value = "cyclonegeo_additive.m2", }, { fileId = "165871", - value = "cyclonerock1.m2", text = "cyclonerock1.m2", + value = "cyclonerock1.m2", }, { fileId = "165872", - value = "cyclonerock2.m2", text = "cyclonerock2.m2", + value = "cyclonerock2.m2", }, { fileId = "165873", - value = "cyclonewater_state.m2", text = "cyclonewater_state.m2", + value = "cyclonewater_state.m2", }, { fileId = "165874", - value = "dampenmagic_impact_base.m2", text = "dampenmagic_impact_base.m2", + value = "dampenmagic_impact_base.m2", }, { fileId = "165877", - value = "darkmoonvengeance_impact_chest.m2", text = "darkmoonvengeance_impact_chest.m2", + value = "darkmoonvengeance_impact_chest.m2", }, { fileId = "165878", - value = "darkmoonvengeance_impact_head.m2", text = "darkmoonvengeance_impact_head.m2", + value = "darkmoonvengeance_impact_head.m2", }, { fileId = "165879", - value = "darkritual_precast_base.m2", text = "darkritual_precast_base.m2", + value = "darkritual_precast_base.m2", }, { fileId = "165880", - value = "darkshade.m2", text = "darkshade.m2", + value = "darkshade.m2", }, { fileId = "165883", - value = "deadly_throw_impact_chest.m2", text = "deadly_throw_impact_chest.m2", + value = "deadly_throw_impact_chest.m2", }, { fileId = "165887", - value = "deathanddecay_area_base.m2", text = "deathanddecay_area_base.m2", + value = "deathanddecay_area_base.m2", }, { fileId = "165889", - value = "deathbolt_missile_low.m2", text = "deathbolt_missile_low.m2", + value = "deathbolt_missile_low.m2", }, { fileId = "165890", - value = "deathcoil_impact_chest.m2", text = "deathcoil_impact_chest.m2", + value = "deathcoil_impact_chest.m2", }, { fileId = "165891", - value = "deathcoil_missile.m2", text = "deathcoil_missile.m2", + value = "deathcoil_missile.m2", }, { fileId = "165908", - value = "deathwish_state_hand.m2", text = "deathwish_state_hand.m2", + value = "deathwish_state_hand.m2", }, { fileId = "165913", - value = "decisivestrike_impact_chest.m2", text = "decisivestrike_impact_chest.m2", + value = "decisivestrike_impact_chest.m2", }, { fileId = "165914", - value = "defensivestance_impact_chest.m2", text = "defensivestance_impact_chest.m2", + value = "defensivestance_impact_chest.m2", }, { fileId = "165915", - value = "defensivestance_impact_head.m2", text = "defensivestance_impact_head.m2", + value = "defensivestance_impact_head.m2", }, { fileId = "165918", - value = "demonarmor_impact_head.m2", text = "demonarmor_impact_head.m2", + value = "demonarmor_impact_head.m2", }, { fileId = "165919", - value = "demonbreath_impact_head.m2", text = "demonbreath_impact_head.m2", + value = "demonbreath_impact_head.m2", }, { fileId = "165923", - value = "demonicsacrifice_felhunter_chest.m2", text = "demonicsacrifice_felhunter_chest.m2", + value = "demonicsacrifice_felhunter_chest.m2", }, { fileId = "165924", - value = "demonicsacrifice_imp_chest.m2", text = "demonicsacrifice_imp_chest.m2", + value = "demonicsacrifice_imp_chest.m2", }, { fileId = "165925", - value = "demonicsacrifice_succubus_chest.m2", text = "demonicsacrifice_succubus_chest.m2", + value = "demonicsacrifice_succubus_chest.m2", }, { fileId = "165926", - value = "demonicsacrifice_voidwalker_chest.m2", text = "demonicsacrifice_voidwalker_chest.m2", + value = "demonicsacrifice_voidwalker_chest.m2", }, { fileId = "165930", - value = "demoralizingshout_cast_base.m2", text = "demoralizingshout_cast_base.m2", + value = "demoralizingshout_cast_base.m2", }, { fileId = "165931", - value = "demoralizingshout_impact_head.m2", text = "demoralizingshout_impact_head.m2", + value = "demoralizingshout_impact_head.m2", }, { fileId = "165940", - value = "detectinvis_impact_base.m2", text = "detectinvis_impact_base.m2", + value = "detectinvis_impact_base.m2", }, { fileId = "165941", - value = "detectinvis_impact_head.m2", text = "detectinvis_impact_head.m2", + value = "detectinvis_impact_head.m2", }, { fileId = "165942", - value = "detectmagic_base.m2", text = "detectmagic_base.m2", + value = "detectmagic_base.m2", }, { fileId = "165943", - value = "detectmagic_recursive.m2", text = "detectmagic_recursive.m2", + value = "detectmagic_recursive.m2", }, { fileId = "165944", - value = "detectsealth_state_base.m2", text = "detectsealth_state_base.m2", + value = "detectsealth_state_base.m2", }, { fileId = "165945", - value = "detectstealth_state_head.m2", text = "detectstealth_state_head.m2", + value = "detectstealth_state_head.m2", }, { fileId = "165947", - value = "deterrence_state_base.m2", text = "deterrence_state_base.m2", + value = "deterrence_state_base.m2", }, { fileId = "165948", - value = "devotionaura_base.m2", text = "devotionaura_base.m2", + value = "devotionaura_base.m2", }, { fileId = "165949", - value = "disarm_impact_chest.m2", text = "disarm_impact_chest.m2", + value = "disarm_impact_chest.m2", }, { fileId = "165952", - value = "disembowel_impact.m2", text = "disembowel_impact.m2", + value = "disembowel_impact.m2", }, { fileId = "165953", - value = "disenchant_cast_hand.m2", text = "disenchant_cast_hand.m2", + value = "disenchant_cast_hand.m2", }, { fileId = "165954", - value = "disenchant_precast_hand.m2", text = "disenchant_precast_hand.m2", + value = "disenchant_precast_hand.m2", }, { fileId = "165955", - value = "dispel_low_base.m2", text = "dispel_low_base.m2", + value = "dispel_low_base.m2", }, { fileId = "165956", - value = "dispel_low_recursive.m2", text = "dispel_low_recursive.m2", + value = "dispel_low_recursive.m2", }, { fileId = "165957", - value = "distract_impact_base.m2", text = "distract_impact_base.m2", + value = "distract_impact_base.m2", }, { fileId = "165958", - value = "distract_impact_chest.m2", text = "distract_impact_chest.m2", + value = "distract_impact_chest.m2", }, { fileId = "165959", - value = "divinebubble_low_base.m2", text = "divinebubble_low_base.m2", + value = "divinebubble_low_base.m2", }, { fileId = "165960", - value = "divineillumination_base.m2", text = "divineillumination_base.m2", + value = "divineillumination_base.m2", }, { fileId = "165961", - value = "divineshield_low_base.m2", text = "divineshield_low_base.m2", + value = "divineshield_low_base.m2", }, { fileId = "165962", - value = "divineshield_low_chest.m2", text = "divineshield_low_chest.m2", + value = "divineshield_low_chest.m2", }, { fileId = "165964", - value = "dragonflamebreath.m2", text = "dragonflamebreath.m2", + value = "dragonflamebreath.m2", }, { fileId = "165965", - value = "dragonflamebreath180.m2", text = "dragonflamebreath180.m2", + value = "dragonflamebreath180.m2", }, { fileId = "165967", - value = "dreadlord_carrion_impact.m2", text = "dreadlord_carrion_impact.m2", + value = "dreadlord_carrion_impact.m2", }, { fileId = "165968", - value = "dreadlord_carrion_swarm_cast.m2", text = "dreadlord_carrion_swarm_cast.m2", + value = "dreadlord_carrion_swarm_cast.m2", }, { fileId = "165969", - value = "druidmorph_aqua_impact_base.m2", text = "druidmorph_aqua_impact_base.m2", + value = "druidmorph_aqua_impact_base.m2", }, { fileId = "165970", - value = "druidmorph_impact_base.m2", text = "druidmorph_impact_base.m2", + value = "druidmorph_impact_base.m2", }, { fileId = "165976", - value = "dustcloud_land.m2", text = "dustcloud_land.m2", + value = "dustcloud_land.m2", }, { fileId = "165977", - value = "dustnova_cast_base.m2", text = "dustnova_cast_base.m2", + value = "dustnova_cast_base.m2", }, { fileId = "165980", - value = "dynamitea_missile.m2", text = "dynamitea_missile.m2", + value = "dynamitea_missile.m2", }, { fileId = "165981", - value = "dynamitea_spellobject.m2", text = "dynamitea_spellobject.m2", + value = "dynamitea_spellobject.m2", }, { fileId = "165983", - value = "eagleeye_impact_head.m2", text = "eagleeye_impact_head.m2", + value = "eagleeye_impact_head.m2", }, { fileId = "165984", - value = "earthshield_impact_base.m2", text = "earthshield_impact_base.m2", + value = "earthshield_impact_base.m2", }, { fileId = "165986", - value = "earthshield_state_base.m2", text = "earthshield_state_base.m2", + value = "earthshield_state_base.m2", }, { fileId = "165987", - value = "earthshock_impact_chest.m2", text = "earthshock_impact_chest.m2", + value = "earthshock_impact_chest.m2", }, { fileId = "165988", - value = "enchant_cast_hand.m2", text = "enchant_cast_hand.m2", + value = "enchant_cast_hand.m2", }, { fileId = "165989", - value = "enchant_precast_hand.m2", text = "enchant_precast_hand.m2", + value = "enchant_precast_hand.m2", }, { children = { { fileId = "165990", - value = "battlemasterglow_high.m2", text = "battlemasterglow_high.m2", + value = "battlemasterglow_high.m2", }, { fileId = "165991", - value = "blackflame_low.m2", text = "blackflame_low.m2", + value = "blackflame_low.m2", }, { fileId = "165992", - value = "blackglow_high.m2", text = "blackglow_high.m2", + value = "blackglow_high.m2", }, { fileId = "165993", - value = "blackglow_low.m2", text = "blackglow_low.m2", + value = "blackglow_low.m2", }, { fileId = "165994", - value = "blueflame_high.m2", text = "blueflame_high.m2", + value = "blueflame_high.m2", }, { fileId = "165995", - value = "blueflame_low.m2", text = "blueflame_low.m2", + value = "blueflame_low.m2", }, { fileId = "165996", - value = "blueglow_high.m2", text = "blueglow_high.m2", + value = "blueglow_high.m2", }, { fileId = "165997", - value = "blueglow_low.m2", text = "blueglow_low.m2", + value = "blueglow_low.m2", }, { fileId = "165998", - value = "blueglow_med.m2", text = "blueglow_med.m2", + value = "blueglow_med.m2", }, { fileId = "166000", - value = "disintigrateglow_high.m2", text = "disintigrateglow_high.m2", + value = "disintigrateglow_high.m2", }, { fileId = "166001", - value = "executionerglow_high.m2", text = "executionerglow_high.m2", + value = "executionerglow_high.m2", }, { fileId = "166003", - value = "greenflame_low.m2", text = "greenflame_low.m2", + value = "greenflame_low.m2", }, { fileId = "166004", - value = "greenglow_high.m2", text = "greenglow_high.m2", + value = "greenglow_high.m2", }, { fileId = "166005", - value = "greenglow_low.m2", text = "greenglow_low.m2", + value = "greenglow_low.m2", }, { fileId = "166006", - value = "mongooseglow_high.m2", text = "mongooseglow_high.m2", + value = "mongooseglow_high.m2", }, { fileId = "166007", - value = "poisondrip.m2", text = "poisondrip.m2", + value = "poisondrip.m2", }, { fileId = "166008", - value = "purpleflame_low.m2", text = "purpleflame_low.m2", + value = "purpleflame_low.m2", }, { fileId = "166009", - value = "purpleglow_high.m2", text = "purpleglow_high.m2", + value = "purpleglow_high.m2", }, { fileId = "166010", - value = "purpleglow_low.m2", text = "purpleglow_low.m2", + value = "purpleglow_low.m2", }, { fileId = "166011", - value = "redflame_low.m2", text = "redflame_low.m2", + value = "redflame_low.m2", }, { fileId = "166012", - value = "redglow_high.m2", text = "redglow_high.m2", + value = "redglow_high.m2", }, { fileId = "166013", - value = "redglow_low.m2", text = "redglow_low.m2", + value = "redglow_low.m2", }, { fileId = "166014", - value = "rune_intellect.m2", text = "rune_intellect.m2", + value = "rune_intellect.m2", }, { fileId = "166015", - value = "savageryglow_high.m2", text = "savageryglow_high.m2", + value = "savageryglow_high.m2", }, { fileId = "166016", - value = "shaman_fire.m2", text = "shaman_fire.m2", + value = "shaman_fire.m2", }, { fileId = "166017", - value = "shaman_frost.m2", text = "shaman_frost.m2", + value = "shaman_frost.m2", }, { fileId = "166018", - value = "shaman_green.m2", text = "shaman_green.m2", + value = "shaman_green.m2", }, { fileId = "166019", - value = "shaman_purple.m2", text = "shaman_purple.m2", + value = "shaman_purple.m2", }, { fileId = "166020", - value = "shaman_red.m2", text = "shaman_red.m2", + value = "shaman_red.m2", }, { fileId = "166021", - value = "shaman_rock.m2", text = "shaman_rock.m2", + value = "shaman_rock.m2", }, { fileId = "166022", - value = "shaman_wind.m2", text = "shaman_wind.m2", + value = "shaman_wind.m2", }, { fileId = "166023", - value = "shaman_yellow.m2", text = "shaman_yellow.m2", + value = "shaman_yellow.m2", }, { fileId = "166024", - value = "skullballs.m2", text = "skullballs.m2", + value = "skullballs.m2", }, { fileId = "166026", - value = "soulfrostglow_high.m2", text = "soulfrostglow_high.m2", + value = "soulfrostglow_high.m2", }, { fileId = "166027", - value = "sparkle_a.m2", text = "sparkle_a.m2", + value = "sparkle_a.m2", }, { fileId = "166028", - value = "spellsurgeglow_high.m2", text = "spellsurgeglow_high.m2", + value = "spellsurgeglow_high.m2", }, { fileId = "166029", - value = "sunfireglow_high.m2", text = "sunfireglow_high.m2", + value = "sunfireglow_high.m2", }, { fileId = "166030", - value = "whiteflame_low.m2", text = "whiteflame_low.m2", + value = "whiteflame_low.m2", }, { fileId = "166031", - value = "whiteglow_high.m2", text = "whiteglow_high.m2", + value = "whiteglow_high.m2", }, { fileId = "166032", - value = "whiteglow_low.m2", text = "whiteglow_low.m2", + value = "whiteglow_low.m2", }, { fileId = "166033", - value = "yellowflame_low.m2", text = "yellowflame_low.m2", + value = "yellowflame_low.m2", }, { fileId = "166034", - value = "yellowglow_high.m2", text = "yellowglow_high.m2", + value = "yellowglow_high.m2", }, { fileId = "166035", - value = "yellowglow_low.m2", text = "yellowglow_low.m2", + value = "yellowglow_low.m2", }, }, - value = "enchantments", text = "enchantments", + value = "enchantments", }, { fileId = "166037", - value = "endlessrage_impact_head.m2", text = "endlessrage_impact_head.m2", + value = "endlessrage_impact_head.m2", }, { fileId = "166038", - value = "endlessrage_state_head.m2", text = "endlessrage_state_head.m2", + value = "endlessrage_state_head.m2", }, { fileId = "166039", - value = "enslavedemon_impact_base.m2", text = "enslavedemon_impact_base.m2", + value = "enslavedemon_impact_base.m2", }, { fileId = "166040", - value = "enslavedemon_impact_chest.m2", text = "enslavedemon_impact_chest.m2", + value = "enslavedemon_impact_chest.m2", }, { fileId = "166041", - value = "enslavedemon_impact_head.m2", text = "enslavedemon_impact_head.m2", + value = "enslavedemon_impact_head.m2", }, { fileId = "166042", - value = "entanglingroots_state.m2", text = "entanglingroots_state.m2", + value = "entanglingroots_state.m2", }, { fileId = "166043", - value = "envenom_cast.m2", text = "envenom_cast.m2", + value = "envenom_cast.m2", }, { fileId = "166044", - value = "envenom_impact_chest.m2", text = "envenom_impact_chest.m2", + value = "envenom_impact_chest.m2", }, { fileId = "166046", - value = "errorcube.m2", text = "errorcube.m2", + value = "errorcube.m2", }, { fileId = "166047", - value = "eviscerate_cast_hands.m2", text = "eviscerate_cast_hands.m2", + value = "eviscerate_cast_hands.m2", }, { fileId = "166048", - value = "eviscerate_impact_chest.m2", text = "eviscerate_impact_chest.m2", + value = "eviscerate_impact_chest.m2", }, { fileId = "166049", - value = "exorcism_impact_chest.m2", text = "exorcism_impact_chest.m2", + value = "exorcism_impact_chest.m2", }, { fileId = "166051", - value = "explodertrail.m2", text = "explodertrail.m2", + value = "explodertrail.m2", }, { fileId = "166052", - value = "exploding_stone_impact.m2", text = "exploding_stone_impact.m2", + value = "exploding_stone_impact.m2", }, { fileId = "166054", - value = "explosivetrap_recursive.m2", text = "explosivetrap_recursive.m2", + value = "explosivetrap_recursive.m2", }, { fileId = "166055", - value = "exposearmor_head.m2", text = "exposearmor_head.m2", + value = "exposearmor_head.m2", }, { fileId = "166059", - value = "eyesofbeast_impact_head.m2", text = "eyesofbeast_impact_head.m2", + value = "eyesofbeast_impact_head.m2", }, { fileId = "166060", - value = "faeriefire.m2", text = "faeriefire.m2", + value = "faeriefire.m2", }, { fileId = "166061", - value = "faeriefire_impact.m2", text = "faeriefire_impact.m2", + value = "faeriefire_impact.m2", }, { fileId = "166064", - value = "farsight_impact_base.m2", text = "farsight_impact_base.m2", + value = "farsight_impact_base.m2", }, { fileId = "166065", - value = "fear_impact_chest.m2", text = "fear_impact_chest.m2", + value = "fear_impact_chest.m2", }, { fileId = "166066", - value = "fear_state_base.m2", text = "fear_state_base.m2", + value = "fear_state_base.m2", }, { fileId = "166067", - value = "fear_state_head.m2", text = "fear_state_head.m2", + value = "fear_state_head.m2", }, { fileId = "166068", - value = "feint_impact_chest.m2", text = "feint_impact_chest.m2", + value = "feint_impact_chest.m2", }, { fileId = "166069", - value = "fel_archimonde_fire.m2", text = "fel_archimonde_fire.m2", + value = "fel_archimonde_fire.m2", }, { fileId = "166070", - value = "fel_fire_impactdd_high_chest.m2", text = "fel_fire_impactdd_high_chest.m2", + value = "fel_fire_impactdd_high_chest.m2", }, { fileId = "166071", - value = "fel_fire_precast_hand.m2", text = "fel_fire_precast_hand.m2", + value = "fel_fire_precast_hand.m2", }, { fileId = "166072", - value = "fel_fire_precast_high_hand.m2", text = "fel_fire_precast_high_hand.m2", + value = "fel_fire_precast_high_hand.m2", }, { fileId = "166073", - value = "fel_fire_precast_uber_hand.m2", text = "fel_fire_precast_uber_hand.m2", + value = "fel_fire_precast_uber_hand.m2", }, { fileId = "166074", - value = "fel_fireball_missile_high.m2", text = "fel_fireball_missile_high.m2", + value = "fel_fireball_missile_high.m2", }, { fileId = "166075", - value = "fel_fireblast_impact_chest.m2", text = "fel_fireblast_impact_chest.m2", + value = "fel_fireblast_impact_chest.m2", }, { fileId = "166076", - value = "fel_firebolt_missile_low.m2", text = "fel_firebolt_missile_low.m2", + value = "fel_firebolt_missile_low.m2", }, { fileId = "166077", - value = "fel_firenova_area.m2", text = "fel_firenova_area.m2", + value = "fel_firenova_area.m2", }, { fileId = "166078", - value = "fel_firenova_state.m2", text = "fel_firenova_state.m2", + value = "fel_firenova_state.m2", }, { fileId = "166079", - value = "fel_fireshieldfinal_impact_head.m2", text = "fel_fireshieldfinal_impact_head.m2", + value = "fel_fireshieldfinal_impact_head.m2", }, { fileId = "166080", - value = "fel_fireward_impact_chest.m2", text = "fel_fireward_impact_chest.m2", + value = "fel_fireward_impact_chest.m2", }, { fileId = "166081", - value = "fel_flamebreath.m2", text = "fel_flamebreath.m2", + value = "fel_flamebreath.m2", }, { fileId = "166082", - value = "fel_flamebreath180.m2", text = "fel_flamebreath180.m2", + value = "fel_flamebreath180.m2", }, { fileId = "166083", - value = "fel_flamecircleeffect.m2", text = "fel_flamecircleeffect.m2", + value = "fel_flamecircleeffect.m2", }, { fileId = "166084", - value = "fel_flameshock_impact_chest.m2", text = "fel_flameshock_impact_chest.m2", + value = "fel_flameshock_impact_chest.m2", }, { fileId = "166085", - value = "fel_flamestrike_impact_base.m2", text = "fel_flamestrike_impact_base.m2", + value = "fel_flamestrike_impact_base.m2", }, { fileId = "166086", - value = "fel_flamestrikesmall_impact_base.m2", text = "fel_flamestrikesmall_impact_base.m2", + value = "fel_flamestrikesmall_impact_base.m2", }, { fileId = "166087", - value = "fel_hellfire_area_base.m2", text = "fel_hellfire_area_base.m2", + value = "fel_hellfire_area_base.m2", }, { fileId = "166088", - value = "fel_hellfire_firepuff_caster_base.m2", text = "fel_hellfire_firepuff_caster_base.m2", + value = "fel_hellfire_firepuff_caster_base.m2", }, { fileId = "166089", - value = "fel_hellfire_impact_base.m2", text = "fel_hellfire_impact_base.m2", + value = "fel_hellfire_impact_base.m2", }, { fileId = "166090", - value = "fel_hellfire_impact_caster_base.m2", text = "fel_hellfire_impact_caster_base.m2", + value = "fel_hellfire_impact_caster_base.m2", }, { fileId = "166091", - value = "fel_immolate_impact_chest.m2", text = "fel_immolate_impact_chest.m2", + value = "fel_immolate_impact_chest.m2", }, { fileId = "166092", - value = "fel_immolate_state_base.m2", text = "fel_immolate_state_base.m2", + value = "fel_immolate_state_base.m2", }, { fileId = "166093", - value = "fel_lowpolyfireanim.m2", text = "fel_lowpolyfireanim.m2", + value = "fel_lowpolyfireanim.m2", }, { fileId = "166094", - value = "fel_pyroblast_missile.m2", text = "fel_pyroblast_missile.m2", + value = "fel_pyroblast_missile.m2", }, { fileId = "166095", - value = "fel_rainoffire_impact_base.m2", text = "fel_rainoffire_impact_base.m2", + value = "fel_rainoffire_impact_base.m2", }, { fileId = "166096", - value = "fel_rainoffire_missile.m2", text = "fel_rainoffire_missile.m2", + value = "fel_rainoffire_missile.m2", }, { fileId = "166098", - value = "felarmor_impact_head.m2", text = "felarmor_impact_head.m2", + value = "felarmor_impact_head.m2", }, { fileId = "166106", - value = "fire_blue_impactdd_high_chest.m2", text = "fire_blue_impactdd_high_chest.m2", + value = "fire_blue_impactdd_high_chest.m2", }, { fileId = "166107", - value = "fire_blue_precast_hand.m2", text = "fire_blue_precast_hand.m2", + value = "fire_blue_precast_hand.m2", }, { fileId = "166108", - value = "fire_blue_precast_high_hand.m2", text = "fire_blue_precast_high_hand.m2", + value = "fire_blue_precast_high_hand.m2", }, { fileId = "166109", - value = "fire_blue_precast_uber_hand.m2", text = "fire_blue_precast_uber_hand.m2", + value = "fire_blue_precast_uber_hand.m2", }, { fileId = "166110", - value = "fire_cast_hand.m2", text = "fire_cast_hand.m2", + value = "fire_cast_hand.m2", }, { fileId = "166111", - value = "fire_dot_state_chest.m2", text = "fire_dot_state_chest.m2", + value = "fire_dot_state_chest.m2", }, { fileId = "166112", - value = "fire_form_precast.m2", text = "fire_form_precast.m2", + value = "fire_form_precast.m2", }, { fileId = "166113", - value = "fire_impactdd_chest.m2", text = "fire_impactdd_chest.m2", + value = "fire_impactdd_chest.m2", }, { fileId = "166114", - value = "fire_impactdd_high_base.m2", text = "fire_impactdd_high_base.m2", + value = "fire_impactdd_high_base.m2", }, { fileId = "166115", - value = "fire_impactdd_high_chest.m2", text = "fire_impactdd_high_chest.m2", + value = "fire_impactdd_high_chest.m2", }, { fileId = "166116", - value = "fire_impactdd_low_chest.m2", text = "fire_impactdd_low_chest.m2", + value = "fire_impactdd_low_chest.m2", }, { fileId = "166117", - value = "fire_impactdd_med_chest.m2", text = "fire_impactdd_med_chest.m2", + value = "fire_impactdd_med_chest.m2", }, { fileId = "166118", - value = "fire_impactdd_uber_base.m2", text = "fire_impactdd_uber_base.m2", + value = "fire_impactdd_uber_base.m2", }, { fileId = "166119", - value = "fire_impactdd_uber_chest.m2", text = "fire_impactdd_uber_chest.m2", + value = "fire_impactdd_uber_chest.m2", }, { fileId = "166120", - value = "fire_precast_hand.m2", text = "fire_precast_hand.m2", + value = "fire_precast_hand.m2", }, { fileId = "166121", - value = "fire_precast_high_hand.m2", text = "fire_precast_high_hand.m2", + value = "fire_precast_high_hand.m2", }, { fileId = "166122", - value = "fire_precast_low_hand.m2", text = "fire_precast_low_hand.m2", + value = "fire_precast_low_hand.m2", }, { fileId = "166123", - value = "fire_precast_med_hand.m2", text = "fire_precast_med_hand.m2", + value = "fire_precast_med_hand.m2", }, { fileId = "166124", - value = "fire_precast_uber_hand.m2", text = "fire_precast_uber_hand.m2", + value = "fire_precast_uber_hand.m2", }, { fileId = "166126", - value = "fire_smoketrail.m2", text = "fire_smoketrail.m2", + value = "fire_smoketrail.m2", }, { fileId = "166127", - value = "fireball_blue_missile_high.m2", text = "fireball_blue_missile_high.m2", + value = "fireball_blue_missile_high.m2", }, { fileId = "166128", - value = "fireball_missile_high.m2", text = "fireball_missile_high.m2", + value = "fireball_missile_high.m2", }, { fileId = "166129", - value = "fireball_missile_low.m2", text = "fireball_missile_low.m2", + value = "fireball_missile_low.m2", }, { fileId = "166130", - value = "fireblast_blue_impact_chest.m2", text = "fireblast_blue_impact_chest.m2", + value = "fireblast_blue_impact_chest.m2", }, { fileId = "166131", - value = "fireblast_impact_chest.m2", text = "fireblast_impact_chest.m2", + value = "fireblast_impact_chest.m2", }, { fileId = "166132", - value = "firebolt_blue_impactdd_med_chest.m2", text = "firebolt_blue_impactdd_med_chest.m2", + value = "firebolt_blue_impactdd_med_chest.m2", }, { fileId = "166133", - value = "firebolt_blue_missile_low.m2", text = "firebolt_blue_missile_low.m2", + value = "firebolt_blue_missile_low.m2", }, { fileId = "166134", - value = "firebolt_impactdd_med_chest.m2", text = "firebolt_impactdd_med_chest.m2", + value = "firebolt_impactdd_med_chest.m2", }, { fileId = "166135", - value = "firebolt_missile_low.m2", text = "firebolt_missile_low.m2", + value = "firebolt_missile_low.m2", }, { fileId = "166137", - value = "firecrackers_thrown.m2", text = "firecrackers_thrown.m2", + value = "firecrackers_thrown.m2", }, { fileId = "166138", - value = "fireforceshield_blue.m2", text = "fireforceshield_blue.m2", + value = "fireforceshield_blue.m2", }, { fileId = "166139", - value = "fireforceshield_dark.m2", text = "fireforceshield_dark.m2", + value = "fireforceshield_dark.m2", }, { fileId = "166140", - value = "fireforceshield_green.m2", text = "fireforceshield_green.m2", + value = "fireforceshield_green.m2", }, { fileId = "166141", - value = "fireforceshield_purple.m2", text = "fireforceshield_purple.m2", + value = "fireforceshield_purple.m2", }, { fileId = "166142", - value = "fireforceshield_red.m2", text = "fireforceshield_red.m2", + value = "fireforceshield_red.m2", }, { fileId = "166143", - value = "fireforceshield_yellow.m2", text = "fireforceshield_yellow.m2", + value = "fireforceshield_yellow.m2", }, { fileId = "166144", - value = "firenova_area.m2", text = "firenova_area.m2", + value = "firenova_area.m2", }, { fileId = "166145", - value = "firenova_blue_area.m2", text = "firenova_blue_area.m2", + value = "firenova_blue_area.m2", }, { fileId = "166146", - value = "firenova_blue_state.m2", text = "firenova_blue_state.m2", + value = "firenova_blue_state.m2", }, { fileId = "166147", - value = "firenova_state.m2", text = "firenova_state.m2", + value = "firenova_state.m2", }, { fileId = "166149", - value = "firereflect_state_chest.m2", text = "firereflect_state_chest.m2", + value = "firereflect_state_chest.m2", }, { fileId = "166150", - value = "fireresistance_impact_base.m2", text = "fireresistance_impact_base.m2", + value = "fireresistance_impact_base.m2", }, { fileId = "166156", - value = "fireshield_impact_head.m2", text = "fireshield_impact_head.m2", + value = "fireshield_impact_head.m2", }, { fileId = "166157", - value = "fireshieldfinal_impact_head.m2", text = "fireshieldfinal_impact_head.m2", + value = "fireshieldfinal_impact_head.m2", }, { fileId = "166158", - value = "fireshot_missile.m2", text = "fireshot_missile.m2", + value = "fireshot_missile.m2", }, { fileId = "166159", - value = "firestrike_missile_low.m2", text = "firestrike_missile_low.m2", + value = "firestrike_missile_low.m2", }, { fileId = "166162", - value = "fireward_impact_chest.m2", text = "fireward_impact_chest.m2", + value = "fireward_impact_chest.m2", }, { fileId = "166163", - value = "firework_romancandle_impact_chest_01.m2", text = "firework_romancandle_impact_chest_01.m2", + value = "firework_romancandle_impact_chest_01.m2", }, { fileId = "166164", - value = "firework_romancandle_missle_01.m2", text = "firework_romancandle_missle_01.m2", + value = "firework_romancandle_missle_01.m2", }, { fileId = "166165", - value = "fireworks_blue_01.m2", text = "fireworks_blue_01.m2", + value = "fireworks_blue_01.m2", }, { fileId = "166166", - value = "fireworks_green_01.m2", text = "fireworks_green_01.m2", + value = "fireworks_green_01.m2", }, { fileId = "166167", - value = "fireworks_red_01.m2", text = "fireworks_red_01.m2", + value = "fireworks_red_01.m2", }, { fileId = "166168", - value = "fireworks_redstreaks_01.m2", text = "fireworks_redstreaks_01.m2", + value = "fireworks_redstreaks_01.m2", }, { fileId = "166169", - value = "fireworks_rwb_01.m2", text = "fireworks_rwb_01.m2", + value = "fireworks_rwb_01.m2", }, { fileId = "166170", - value = "fireworks_yellowrose.m2", text = "fireworks_yellowrose.m2", + value = "fireworks_yellowrose.m2", }, { fileId = "166171", - value = "fireyseductress.m2", text = "fireyseductress.m2", + value = "fireyseductress.m2", }, { fileId = "166172", - value = "firstaid__impact_base.m2", text = "firstaid__impact_base.m2", + value = "firstaid__impact_base.m2", }, { fileId = "166173", - value = "firstaid_hand.m2", text = "firstaid_hand.m2", + value = "firstaid_hand.m2", }, { fileId = "166174", - value = "fistofjustice_cast_base.m2", text = "fistofjustice_cast_base.m2", + value = "fistofjustice_cast_base.m2", }, { fileId = "166175", - value = "fistofjustice_impact_chest.m2", text = "fistofjustice_impact_chest.m2", + value = "fistofjustice_impact_chest.m2", }, { fileId = "166176", - value = "flamebreath.m2", text = "flamebreath.m2", + value = "flamebreath.m2", }, { fileId = "166177", - value = "flamebreath180.m2", text = "flamebreath180.m2", + value = "flamebreath180.m2", }, { fileId = "166178", - value = "flamebreath180_blue.m2", text = "flamebreath180_blue.m2", + value = "flamebreath180_blue.m2", }, { fileId = "166179", - value = "flamebreath_blue.m2", text = "flamebreath_blue.m2", + value = "flamebreath_blue.m2", }, { fileId = "166180", - value = "flamebreathmff.m2", text = "flamebreathmff.m2", + value = "flamebreathmff.m2", }, { fileId = "166181", - value = "flamecircleeffect.m2", text = "flamecircleeffect.m2", + value = "flamecircleeffect.m2", }, { fileId = "166182", - value = "flamecircleeffect_blue.m2", text = "flamecircleeffect_blue.m2", + value = "flamecircleeffect_blue.m2", }, { fileId = "166185", - value = "flameshock_blue_impact_chest.m2", text = "flameshock_blue_impact_chest.m2", + value = "flameshock_blue_impact_chest.m2", }, { fileId = "166186", - value = "flameshock_impact_chest.m2", text = "flameshock_impact_chest.m2", + value = "flameshock_impact_chest.m2", }, { fileId = "166187", - value = "flamestrike_area.m2", text = "flamestrike_area.m2", + value = "flamestrike_area.m2", }, { fileId = "166188", - value = "flamestrike_blue_impact_base.m2", text = "flamestrike_blue_impact_base.m2", + value = "flamestrike_blue_impact_base.m2", }, { fileId = "166189", - value = "flamestrike_impact.m2", text = "flamestrike_impact.m2", + value = "flamestrike_impact.m2", }, { fileId = "166190", - value = "flamestrike_impact_base.m2", text = "flamestrike_impact_base.m2", + value = "flamestrike_impact_base.m2", }, { fileId = "166191", - value = "flamestrike_impactdd_med_base.m2", text = "flamestrike_impactdd_med_base.m2", + value = "flamestrike_impactdd_med_base.m2", }, { fileId = "166192", - value = "flamestrikesmall_blue_impact_base.m2", text = "flamestrikesmall_blue_impact_base.m2", + value = "flamestrikesmall_blue_impact_base.m2", }, { fileId = "166193", - value = "flamestrikesmall_impact_base.m2", text = "flamestrikesmall_impact_base.m2", + value = "flamestrikesmall_impact_base.m2", }, { fileId = "166195", - value = "flare_cast_base.m2", text = "flare_cast_base.m2", + value = "flare_cast_base.m2", }, { fileId = "166196", - value = "flare_state_base.m2", text = "flare_state_base.m2", + value = "flare_state_base.m2", }, { fileId = "166197", - value = "flashheal_base.m2", text = "flashheal_base.m2", + value = "flashheal_base.m2", }, { fileId = "166199", - value = "floatingmine.m2", text = "floatingmine.m2", + value = "floatingmine.m2", }, { fileId = "166200", - value = "floatingminepulse.m2", text = "floatingminepulse.m2", + value = "floatingminepulse.m2", }, { fileId = "166203", - value = "focusedcasting_state_chest.m2", text = "focusedcasting_state_chest.m2", + value = "focusedcasting_state_chest.m2", }, { fileId = "166204", - value = "food_healeffect_base.m2", text = "food_healeffect_base.m2", + value = "food_healeffect_base.m2", }, { fileId = "166205", - value = "forceofnature_impact.m2", text = "forceofnature_impact.m2", + value = "forceofnature_impact.m2", }, { fileId = "166206", - value = "forceshield_andxplosion.m2", text = "forceshield_andxplosion.m2", + value = "forceshield_andxplosion.m2", }, { fileId = "166209", - value = "frost_form_precast.m2", text = "frost_form_precast.m2", + value = "frost_form_precast.m2", }, { fileId = "166210", - value = "frost_nova_area.m2", text = "frost_nova_area.m2", + value = "frost_nova_area.m2", }, { fileId = "166211", - value = "frost_nova_state.m2", text = "frost_nova_state.m2", + value = "frost_nova_state.m2", }, { fileId = "166212", - value = "frostarmor_low_head.m2", text = "frostarmor_low_head.m2", + value = "frostarmor_low_head.m2", }, { fileId = "166213", - value = "frostarmoreffect_impact_chest.m2", text = "frostarmoreffect_impact_chest.m2", + value = "frostarmoreffect_impact_chest.m2", }, { fileId = "166214", - value = "frostbolt.m2", text = "frostbolt.m2", + value = "frostbolt.m2", }, { fileId = "166215", - value = "frostbreath.m2", text = "frostbreath.m2", + value = "frostbreath.m2", }, { fileId = "166216", - value = "frostreflect_state_chest.m2", text = "frostreflect_state_chest.m2", + value = "frostreflect_state_chest.m2", }, { fileId = "166217", - value = "frostshot_missile.m2", text = "frostshot_missile.m2", + value = "frostshot_missile.m2", }, { fileId = "166218", - value = "frostslash_base_cast.m2", text = "frostslash_base_cast.m2", + value = "frostslash_base_cast.m2", }, { fileId = "166219", - value = "frosttrap_aura.m2", text = "frosttrap_aura.m2", + value = "frosttrap_aura.m2", }, { fileId = "166220", - value = "frosttrap_aura_nomist.m2", text = "frosttrap_aura_nomist.m2", + value = "frosttrap_aura_nomist.m2", }, { fileId = "166221", - value = "frostward_impact_chest.m2", text = "frostward_impact_chest.m2", + value = "frostward_impact_chest.m2", }, { fileId = "166222", - value = "gaseousform.m2", text = "gaseousform.m2", + value = "gaseousform.m2", }, { fileId = "166237", - value = "ghost_state.m2", text = "ghost_state.m2", + value = "ghost_state.m2", }, { fileId = "166238", - value = "ghost_state2.m2", text = "ghost_state2.m2", + value = "ghost_state2.m2", }, { fileId = "166239", - value = "ghostlystrike_impact_chest.m2", text = "ghostlystrike_impact_chest.m2", + value = "ghostlystrike_impact_chest.m2", }, { fileId = "166240", - value = "giantinsectswarm_state_chest.m2", text = "giantinsectswarm_state_chest.m2", + value = "giantinsectswarm_state_chest.m2", }, { fileId = "166241", - value = "giantinsectswarm_state_ground.m2", text = "giantinsectswarm_state_ground.m2", + value = "giantinsectswarm_state_ground.m2", }, { fileId = "166243", - value = "giftofnaaru.m2", text = "giftofnaaru.m2", + value = "giftofnaaru.m2", }, { fileId = "166244", - value = "giftwaterspirit_impact_base.m2", text = "giftwaterspirit_impact_base.m2", + value = "giftwaterspirit_impact_base.m2", }, { fileId = "166247", - value = "goblin_weather_machine_cloudy.m2", text = "goblin_weather_machine_cloudy.m2", + value = "goblin_weather_machine_cloudy.m2", }, { fileId = "166248", - value = "goblin_weather_machine_lightning.m2", text = "goblin_weather_machine_lightning.m2", + value = "goblin_weather_machine_lightning.m2", }, { fileId = "166249", - value = "goblin_weather_machine_rain.m2", text = "goblin_weather_machine_rain.m2", + value = "goblin_weather_machine_rain.m2", }, { fileId = "166250", - value = "goblin_weather_machine_snow.m2", text = "goblin_weather_machine_snow.m2", + value = "goblin_weather_machine_snow.m2", }, { fileId = "166251", - value = "goblin_weather_machine_sunny.m2", text = "goblin_weather_machine_sunny.m2", + value = "goblin_weather_machine_sunny.m2", }, { fileId = "166252", - value = "goldarenaflag_spell.m2", text = "goldarenaflag_spell.m2", + value = "goldarenaflag_spell.m2", }, { fileId = "166253", - value = "goldhordeflag_spell.m2", text = "goldhordeflag_spell.m2", + value = "goldhordeflag_spell.m2", }, { fileId = "166254", - value = "goobolt_missile_low.m2", text = "goobolt_missile_low.m2", + value = "goobolt_missile_low.m2", }, { fileId = "166255", - value = "gouge_precast_state_hand.m2", text = "gouge_precast_state_hand.m2", + value = "gouge_precast_state_hand.m2", }, { fileId = "166273", - value = "greaterheal_low_base.m2", text = "greaterheal_low_base.m2", + value = "greaterheal_low_base.m2", }, { fileId = "166277", - value = "greenarenaflag_spell.m2", text = "greenarenaflag_spell.m2", + value = "greenarenaflag_spell.m2", }, { fileId = "166278", - value = "greenghost_state.m2", text = "greenghost_state.m2", + value = "greenghost_state.m2", }, { fileId = "166279", - value = "greenhordeflag_spell.m2", text = "greenhordeflag_spell.m2", + value = "greenhordeflag_spell.m2", }, { fileId = "166280", - value = "greenradiationfog.m2", text = "greenradiationfog.m2", + value = "greenradiationfog.m2", }, { fileId = "166285", - value = "grounddust.m2", text = "grounddust.m2", + value = "grounddust.m2", }, { fileId = "166286", - value = "groundingtotem_impact.m2", text = "groundingtotem_impact.m2", + value = "groundingtotem_impact.m2", }, { fileId = "166288", - value = "harmundeadaura_base.m2", text = "harmundeadaura_base.m2", + value = "harmundeadaura_base.m2", }, { fileId = "166290", - value = "headlesshorsemanhelmet.m2", text = "headlesshorsemanhelmet.m2", + value = "headlesshorsemanhelmet.m2", }, { fileId = "166291", - value = "headsplitter_impact_chest.m2", text = "headsplitter_impact_chest.m2", + value = "headsplitter_impact_chest.m2", }, { fileId = "166292", - value = "heal_low_base.m2", text = "heal_low_base.m2", + value = "heal_low_base.m2", }, { fileId = "166293", - value = "healingaura_base.m2", text = "healingaura_base.m2", + value = "healingaura_base.m2", }, { fileId = "166294", - value = "healrag_state_chest.m2", text = "healrag_state_chest.m2", + value = "healrag_state_chest.m2", }, { fileId = "166297", - value = "hellfire_area_base.m2", text = "hellfire_area_base.m2", + value = "hellfire_area_base.m2", }, { fileId = "166298", - value = "hellfire_blue_firepuff_caster_base.m2", text = "hellfire_blue_firepuff_caster_base.m2", + value = "hellfire_blue_firepuff_caster_base.m2", }, { fileId = "166299", - value = "hellfire_blue_impact_base.m2", text = "hellfire_blue_impact_base.m2", + value = "hellfire_blue_impact_base.m2", }, { fileId = "166300", - value = "hellfire_blue_impact_caster_base.m2", text = "hellfire_blue_impact_caster_base.m2", + value = "hellfire_blue_impact_caster_base.m2", }, { fileId = "166301", - value = "hellfire_channel_base.m2", text = "hellfire_channel_base.m2", + value = "hellfire_channel_base.m2", }, { fileId = "166302", - value = "hellfire_firepuff_caster_base.m2", text = "hellfire_firepuff_caster_base.m2", + value = "hellfire_firepuff_caster_base.m2", }, { fileId = "166303", - value = "hellfire_impact_base.m2", text = "hellfire_impact_base.m2", + value = "hellfire_impact_base.m2", }, { fileId = "166304", - value = "hellfire_impact_caster_base.m2", text = "hellfire_impact_caster_base.m2", + value = "hellfire_impact_caster_base.m2", }, { fileId = "166305", - value = "hellfire_impact_head.m2", text = "hellfire_impact_head.m2", + value = "hellfire_impact_head.m2", }, { fileId = "166306", - value = "hellfireraid_dust_impact_base.m2", text = "hellfireraid_dust_impact_base.m2", + value = "hellfireraid_dust_impact_base.m2", }, { fileId = "166307", - value = "heroism_cast.m2", text = "heroism_cast.m2", + value = "heroism_cast.m2", }, { fileId = "166308", - value = "heroism_state.m2", text = "heroism_state.m2", + value = "heroism_state.m2", }, { fileId = "166309", - value = "hitsplatfire.m2", text = "hitsplatfire.m2", + value = "hitsplatfire.m2", }, { children = { { fileId = "166313", - value = "valentines_brokenheart.m2", text = "valentines_brokenheart.m2", + value = "valentines_brokenheart.m2", }, { fileId = "166314", - value = "valentines_cupidsarrow_impact_chest.m2", text = "valentines_cupidsarrow_impact_chest.m2", + value = "valentines_cupidsarrow_impact_chest.m2", }, { fileId = "166315", - value = "valentines_cupidsarrow_missle.m2", text = "valentines_cupidsarrow_missle.m2", + value = "valentines_cupidsarrow_missle.m2", }, { fileId = "166316", - value = "valentines_lookingforloveheart.m2", text = "valentines_lookingforloveheart.m2", + value = "valentines_lookingforloveheart.m2", }, { fileId = "166317", - value = "valentines_roseshower_impact_base.m2", text = "valentines_roseshower_impact_base.m2", + value = "valentines_roseshower_impact_base.m2", }, { fileId = "166318", - value = "valentines_spellobject_cupidsbow.m2", text = "valentines_spellobject_cupidsbow.m2", + value = "valentines_spellobject_cupidsbow.m2", }, }, - value = "holidays", text = "holidays", + value = "holidays", }, { fileId = "166322", - value = "holy_form_precast.m2", text = "holy_form_precast.m2", + value = "holy_form_precast.m2", }, { fileId = "166323", - value = "holy_hammer_missile.m2", text = "holy_hammer_missile.m2", + value = "holy_hammer_missile.m2", }, { fileId = "166324", - value = "holy_impactdd_high_base.m2", text = "holy_impactdd_high_base.m2", + value = "holy_impactdd_high_base.m2", }, { fileId = "166325", - value = "holy_impactdd_high_chest.m2", text = "holy_impactdd_high_chest.m2", + value = "holy_impactdd_high_chest.m2", }, { fileId = "166326", - value = "holy_impactdd_low_chest.m2", text = "holy_impactdd_low_chest.m2", + value = "holy_impactdd_low_chest.m2", }, { fileId = "166327", - value = "holy_impactdd_med_chest.m2", text = "holy_impactdd_med_chest.m2", + value = "holy_impactdd_med_chest.m2", }, { fileId = "166328", - value = "holy_impactdd_uber_base.m2", text = "holy_impactdd_uber_base.m2", + value = "holy_impactdd_uber_base.m2", }, { fileId = "166329", - value = "holy_impactdd_uber_chest.m2", text = "holy_impactdd_uber_chest.m2", + value = "holy_impactdd_uber_chest.m2", }, { fileId = "166330", - value = "holy_missile_high.m2", text = "holy_missile_high.m2", + value = "holy_missile_high.m2", }, { fileId = "166331", - value = "holy_missile_low.m2", text = "holy_missile_low.m2", + value = "holy_missile_low.m2", }, { fileId = "166332", - value = "holy_missile_med.m2", text = "holy_missile_med.m2", + value = "holy_missile_med.m2", }, { fileId = "166333", - value = "holy_missile_uber.m2", text = "holy_missile_uber.m2", + value = "holy_missile_uber.m2", }, { fileId = "166334", - value = "holy_precast_high_base.m2", text = "holy_precast_high_base.m2", + value = "holy_precast_high_base.m2", }, { fileId = "166335", - value = "holy_precast_high_hand.m2", text = "holy_precast_high_hand.m2", + value = "holy_precast_high_hand.m2", }, { fileId = "166336", - value = "holy_precast_low_hand.m2", text = "holy_precast_low_hand.m2", + value = "holy_precast_low_hand.m2", }, { fileId = "166337", - value = "holy_precast_med_hand.m2", text = "holy_precast_med_hand.m2", + value = "holy_precast_med_hand.m2", }, { fileId = "166338", - value = "holy_precast_uber_base.m2", text = "holy_precast_uber_base.m2", + value = "holy_precast_uber_base.m2", }, { fileId = "166339", - value = "holy_precast_uber_hand.m2", text = "holy_precast_uber_hand.m2", + value = "holy_precast_uber_hand.m2", }, { fileId = "166342", - value = "holydivineshield_state_base.m2", text = "holydivineshield_state_base.m2", + value = "holydivineshield_state_base.m2", }, { fileId = "166343", - value = "holydivineshieldblue_state_base.m2", text = "holydivineshieldblue_state_base.m2", + value = "holydivineshieldblue_state_base.m2", }, { fileId = "166344", - value = "holydivineshielddark_state_base.m2", text = "holydivineshielddark_state_base.m2", + value = "holydivineshielddark_state_base.m2", }, { fileId = "166345", - value = "holydivineshieldgreen_state_base.m2", text = "holydivineshieldgreen_state_base.m2", + value = "holydivineshieldgreen_state_base.m2", }, { fileId = "166346", - value = "holydivineshieldpurple_state_base.m2", text = "holydivineshieldpurple_state_base.m2", + value = "holydivineshieldpurple_state_base.m2", }, { fileId = "166347", - value = "holydivineshieldred_state_base.m2", text = "holydivineshieldred_state_base.m2", + value = "holydivineshieldred_state_base.m2", }, { fileId = "166348", - value = "holylight_impact_head.m2", text = "holylight_impact_head.m2", + value = "holylight_impact_head.m2", }, { fileId = "166349", - value = "holylight_low_head.m2", text = "holylight_low_head.m2", + value = "holylight_low_head.m2", }, { fileId = "166350", - value = "holynova_impact_base.m2", text = "holynova_impact_base.m2", + value = "holynova_impact_base.m2", }, { fileId = "166351", - value = "holyprotection_chest.m2", text = "holyprotection_chest.m2", + value = "holyprotection_chest.m2", }, { fileId = "166352", - value = "holyreflect_state_chest.m2", text = "holyreflect_state_chest.m2", + value = "holyreflect_state_chest.m2", }, { fileId = "166353", - value = "holyshield_state.m2", text = "holyshield_state.m2", + value = "holyshield_state.m2", }, { fileId = "166354", - value = "holysmite_low_chest.m2", text = "holysmite_low_chest.m2", + value = "holysmite_low_chest.m2", }, { fileId = "166355", - value = "holyward_impact_chest.m2", text = "holyward_impact_chest.m2", + value = "holyward_impact_chest.m2", }, { fileId = "166356", - value = "holyword_fortitude_impact_base.m2", text = "holyword_fortitude_impact_base.m2", + value = "holyword_fortitude_impact_base.m2", }, { fileId = "166357", - value = "holywordheal_base.m2", text = "holywordheal_base.m2", + value = "holywordheal_base.m2", }, { fileId = "166358", - value = "holywordshield_base.m2", text = "holywordshield_base.m2", + value = "holywordshield_base.m2", }, { fileId = "166359", - value = "holywordshield_state_base.m2", text = "holywordshield_state_base.m2", + value = "holywordshield_state_base.m2", }, { fileId = "166360", - value = "holywordshield_state_chest.m2", text = "holywordshield_state_chest.m2", + value = "holywordshield_state_chest.m2", }, { fileId = "166361", - value = "hordectfflag_spell.m2", text = "hordectfflag_spell.m2", + value = "hordectfflag_spell.m2", }, { fileId = "166362", - value = "huntersmark_impact_chest.m2", text = "huntersmark_impact_chest.m2", + value = "huntersmark_impact_chest.m2", }, { fileId = "166363", - value = "huntersmark_impact_head.m2", text = "huntersmark_impact_head.m2", + value = "huntersmark_impact_head.m2", }, { fileId = "166364", - value = "huntersmark_impact_head_hold.m2", text = "huntersmark_impact_head_hold.m2", + value = "huntersmark_impact_head_hold.m2", }, { fileId = "166366", - value = "ice_barrier_state_chest.m2", text = "ice_barrier_state_chest.m2", + value = "ice_barrier_state_chest.m2", }, { fileId = "166367", - value = "ice_cast_low_hand.m2", text = "ice_cast_low_hand.m2", + value = "ice_cast_low_hand.m2", }, { fileId = "166368", - value = "ice_impactdd_high_chest.m2", text = "ice_impactdd_high_chest.m2", + value = "ice_impactdd_high_chest.m2", }, { fileId = "166369", - value = "ice_impactdd_low_chest.m2", text = "ice_impactdd_low_chest.m2", + value = "ice_impactdd_low_chest.m2", }, { fileId = "166370", - value = "ice_impactdd_med_chest.m2", text = "ice_impactdd_med_chest.m2", + value = "ice_impactdd_med_chest.m2", }, { fileId = "166371", - value = "ice_impactdd_uber_chest.m2", text = "ice_impactdd_uber_chest.m2", + value = "ice_impactdd_uber_chest.m2", }, { fileId = "166372", - value = "ice_lance_impact.m2", text = "ice_lance_impact.m2", + value = "ice_lance_impact.m2", }, { fileId = "166373", - value = "ice_lance_missile.m2", text = "ice_lance_missile.m2", + value = "ice_lance_missile.m2", }, { fileId = "166374", - value = "ice_missile_high.m2", text = "ice_missile_high.m2", + value = "ice_missile_high.m2", }, { fileId = "166375", - value = "ice_missile_low.m2", text = "ice_missile_low.m2", + value = "ice_missile_low.m2", }, { fileId = "166376", - value = "ice_missile_med.m2", text = "ice_missile_med.m2", + value = "ice_missile_med.m2", }, { fileId = "166377", - value = "ice_missile_uber.m2", text = "ice_missile_uber.m2", + value = "ice_missile_uber.m2", }, { fileId = "166378", - value = "ice_precast_high_base.m2", text = "ice_precast_high_base.m2", + value = "ice_precast_high_base.m2", }, { fileId = "166379", - value = "ice_precast_high_hand.m2", text = "ice_precast_high_hand.m2", + value = "ice_precast_high_hand.m2", }, { fileId = "166380", - value = "ice_precast_high_head.m2", text = "ice_precast_high_head.m2", + value = "ice_precast_high_head.m2", }, { fileId = "166381", - value = "ice_precast_low_hand.m2", text = "ice_precast_low_hand.m2", + value = "ice_precast_low_hand.m2", }, { fileId = "166382", - value = "ice_precast_med_hand.m2", text = "ice_precast_med_hand.m2", + value = "ice_precast_med_hand.m2", }, { fileId = "166383", - value = "ice_precast_uber_base.m2", text = "ice_precast_uber_base.m2", + value = "ice_precast_uber_base.m2", }, { fileId = "166384", - value = "ice_precast_uber_hand.m2", text = "ice_precast_uber_hand.m2", + value = "ice_precast_uber_hand.m2", }, { fileId = "166385", - value = "ice_precast_uber_head.m2", text = "ice_precast_uber_head.m2", + value = "ice_precast_uber_head.m2", }, { fileId = "166387", - value = "icearmor_low_head.m2", text = "icearmor_low_head.m2", + value = "icearmor_low_head.m2", }, { fileId = "166388", - value = "icebarrier_state.m2", text = "icebarrier_state.m2", + value = "icebarrier_state.m2", }, { fileId = "166389", - value = "icenuke_base_impact.m2", text = "icenuke_base_impact.m2", + value = "icenuke_base_impact.m2", }, { fileId = "166390", - value = "icenuke_missile.m2", text = "icenuke_missile.m2", + value = "icenuke_missile.m2", }, { fileId = "166391", - value = "iceprison_base.m2", text = "iceprison_base.m2", + value = "iceprison_base.m2", }, { fileId = "166392", - value = "iceshield_state.m2", text = "iceshield_state.m2", + value = "iceshield_state.m2", }, { fileId = "166394", - value = "icespike_impact_base.m2", text = "icespike_impact_base.m2", + value = "icespike_impact_base.m2", }, { fileId = "166396", - value = "icyenchant_high.m2", text = "icyenchant_high.m2", + value = "icyenchant_high.m2", }, { fileId = "166397", - value = "icyveins_fx.m2", text = "icyveins_fx.m2", + value = "icyveins_fx.m2", }, { fileId = "166398", - value = "illidan_glave_missile.m2", text = "illidan_glave_missile.m2", + value = "illidan_glave_missile.m2", }, { fileId = "166399", - value = "immolate_blue_impact_chest.m2", text = "immolate_blue_impact_chest.m2", + value = "immolate_blue_impact_chest.m2", }, { fileId = "166400", - value = "immolate_blue_state_base.m2", text = "immolate_blue_state_base.m2", + value = "immolate_blue_state_base.m2", }, { fileId = "166401", - value = "immolate_impact_chest.m2", text = "immolate_impact_chest.m2", + value = "immolate_impact_chest.m2", }, { fileId = "166402", - value = "immolate_state.m2", text = "immolate_state.m2", + value = "immolate_state.m2", }, { fileId = "166403", - value = "immolate_state_base.m2", text = "immolate_state_base.m2", + value = "immolate_state_base.m2", }, { fileId = "166404", - value = "immolationtrap_recursive.m2", text = "immolationtrap_recursive.m2", + value = "immolationtrap_recursive.m2", }, { fileId = "166405", - value = "incinerate_impact_base.m2", text = "incinerate_impact_base.m2", + value = "incinerate_impact_base.m2", }, { fileId = "166406", - value = "incinerate_low_base.m2", text = "incinerate_low_base.m2", + value = "incinerate_low_base.m2", }, { fileId = "166407", - value = "incinerate_low_base_bossaoe.m2", text = "incinerate_low_base_bossaoe.m2", + value = "incinerate_low_base_bossaoe.m2", }, { fileId = "166408", - value = "incinerateblue_impact_base.m2", text = "incinerateblue_impact_base.m2", + value = "incinerateblue_impact_base.m2", }, { fileId = "166409", - value = "incinerateblue_low_base.m2", text = "incinerateblue_low_base.m2", + value = "incinerateblue_low_base.m2", }, { fileId = "166410", - value = "infernal_ball.m2", text = "infernal_ball.m2", + value = "infernal_ball.m2", }, { fileId = "166411", - value = "infernal_flare_rec.m2", text = "infernal_flare_rec.m2", + value = "infernal_flare_rec.m2", }, { fileId = "166412", - value = "infernal_geo.m2", text = "infernal_geo.m2", + value = "infernal_geo.m2", }, { fileId = "166413", - value = "infernal_impact.m2", text = "infernal_impact.m2", + value = "infernal_impact.m2", }, { fileId = "166414", - value = "infernal_impact_base.m2", text = "infernal_impact_base.m2", + value = "infernal_impact_base.m2", }, { fileId = "166415", - value = "infernal_smoke_rec.m2", text = "infernal_smoke_rec.m2", + value = "infernal_smoke_rec.m2", }, { fileId = "166417", - value = "innerfire_base.m2", text = "innerfire_base.m2", + value = "innerfire_base.m2", }, { fileId = "166419", - value = "innerfocus_impact_chest.m2", text = "innerfocus_impact_chest.m2", + value = "innerfocus_impact_chest.m2", }, { fileId = "166420", - value = "innerrage_impact_chest.m2", text = "innerrage_impact_chest.m2", + value = "innerrage_impact_chest.m2", }, { fileId = "166421", - value = "insectswarm_state_chest.m2", text = "insectswarm_state_chest.m2", + value = "insectswarm_state_chest.m2", }, { fileId = "166425", - value = "intervene_impact_chest.m2", text = "intervene_impact_chest.m2", + value = "intervene_impact_chest.m2", }, { fileId = "166426", - value = "intervenetrail.m2", text = "intervenetrail.m2", + value = "intervenetrail.m2", }, { fileId = "166427", - value = "intimidatingshout_cast_base.m2", text = "intimidatingshout_cast_base.m2", + value = "intimidatingshout_cast_base.m2", }, { fileId = "166428", - value = "intimidatingshout_impact_head.m2", text = "intimidatingshout_impact_head.m2", + value = "intimidatingshout_impact_head.m2", }, { fileId = "166429", - value = "invisibility.m2", text = "invisibility.m2", + value = "invisibility.m2", }, { fileId = "166430", - value = "invisibility_impact_base.m2", text = "invisibility_impact_base.m2", + value = "invisibility_impact_base.m2", }, { fileId = "166431", - value = "invisibility_impact_chest.m2", text = "invisibility_impact_chest.m2", + value = "invisibility_impact_chest.m2", }, { fileId = "166432", - value = "invisible.m2", text = "invisible.m2", + value = "invisible.m2", }, { fileId = "166434", - value = "item_bread.m2", text = "item_bread.m2", + value = "item_bread.m2", }, { fileId = "166435", - value = "judgement_impact_chest.m2", text = "judgement_impact_chest.m2", + value = "judgement_impact_chest.m2", }, { fileId = "166437", - value = "kick_chest_impact.m2", text = "kick_chest_impact.m2", + value = "kick_chest_impact.m2", }, { fileId = "166438", - value = "kidneyshot_base_cast.m2", text = "kidneyshot_base_cast.m2", + value = "kidneyshot_base_cast.m2", }, { fileId = "166439", - value = "killcommand_impact_head.m2", text = "killcommand_impact_head.m2", + value = "killcommand_impact_head.m2", }, { fileId = "166440", - value = "lacerate_impact.m2", text = "lacerate_impact.m2", + value = "lacerate_impact.m2", }, { fileId = "166441", - value = "largebluegreenradiationfog.m2", text = "largebluegreenradiationfog.m2", + value = "largebluegreenradiationfog.m2", }, { fileId = "166442", - value = "largegreenradiationfog.m2", text = "largegreenradiationfog.m2", + value = "largegreenradiationfog.m2", }, { fileId = "166443", - value = "lash_cast_base.m2", text = "lash_cast_base.m2", + value = "lash_cast_base.m2", }, { fileId = "166452", - value = "layonhands_low_chest.m2", text = "layonhands_low_chest.m2", + value = "layonhands_low_chest.m2", }, { fileId = "166453", - value = "layonhands_low_head.m2", text = "layonhands_low_head.m2", + value = "layonhands_low_head.m2", }, { fileId = "166457", - value = "learn_impact_base.m2", text = "learn_impact_base.m2", + value = "learn_impact_base.m2", }, { fileId = "166463", - value = "lesserheal_base.m2", text = "lesserheal_base.m2", + value = "lesserheal_base.m2", }, { children = { { fileId = "166464", - value = "levelup.m2", text = "levelup.m2", + value = "levelup.m2", }, }, - value = "levelup", text = "levelup", + value = "levelup", }, { children = { { fileId = "166465", - value = "levelupspell.m2", text = "levelupspell.m2", + value = "levelupspell.m2", }, }, - value = "levelupspell", text = "levelupspell", + value = "levelupspell", }, { fileId = "166466", - value = "levitate_impact_base.m2", text = "levitate_impact_base.m2", + value = "levitate_impact_base.m2", }, { fileId = "166467", - value = "lifebloom_impact.m2", text = "lifebloom_impact.m2", + value = "lifebloom_impact.m2", }, { fileId = "166468", - value = "lifebloom_state.m2", text = "lifebloom_state.m2", + value = "lifebloom_state.m2", }, { fileId = "166469", - value = "lifedrain_missile.m2", text = "lifedrain_missile.m2", + value = "lifedrain_missile.m2", }, { fileId = "166470", - value = "lifetap.m2", text = "lifetap.m2", + value = "lifetap.m2", }, { fileId = "166471", - value = "lifetap_state_chest.m2", text = "lifetap_state_chest.m2", + value = "lifetap_state_chest.m2", }, { fileId = "166488", - value = "lightning_cast_hand.m2", text = "lightning_cast_hand.m2", + value = "lightning_cast_hand.m2", }, { fileId = "166490", - value = "lightning_fel_cast_hand.m2", text = "lightning_fel_cast_hand.m2", + value = "lightning_fel_cast_hand.m2", }, { fileId = "166491", - value = "lightning_fel_precast_low_hand.m2", text = "lightning_fel_precast_low_hand.m2", + value = "lightning_fel_precast_low_hand.m2", }, { fileId = "166492", - value = "lightning_precast_low_hand.m2", text = "lightning_precast_low_hand.m2", + value = "lightning_precast_low_hand.m2", }, { fileId = "166496", - value = "lightningbolt_impact_chest.m2", text = "lightningbolt_impact_chest.m2", + value = "lightningbolt_impact_chest.m2", }, { fileId = "166497", - value = "lightningbolt_missile.m2", text = "lightningbolt_missile.m2", + value = "lightningbolt_missile.m2", }, { fileId = "166498", - value = "lightningboltivus_missile.m2", text = "lightningboltivus_missile.m2", + value = "lightningboltivus_missile.m2", }, { fileId = "166499", - value = "lightningshield_impact_base.m2", text = "lightningshield_impact_base.m2", + value = "lightningshield_impact_base.m2", }, { fileId = "166500", - value = "lightningshield_state_base.m2", text = "lightningshield_state_base.m2", + value = "lightningshield_state_base.m2", }, { fileId = "166502", - value = "lightningstorm_cloud_state.m2", text = "lightningstorm_cloud_state.m2", + value = "lightningstorm_cloud_state.m2", }, { fileId = "166503", - value = "lightningstorm_cloudlow_state.m2", text = "lightningstorm_cloudlow_state.m2", + value = "lightningstorm_cloudlow_state.m2", }, { fileId = "166504", - value = "lightningstreak_missile.m2", text = "lightningstreak_missile.m2", + value = "lightningstreak_missile.m2", }, { fileId = "166505", - value = "lighttest.m2", text = "lighttest.m2", + value = "lighttest.m2", }, { fileId = "166507", - value = "lowpolyfireanim_blue.m2", text = "lowpolyfireanim_blue.m2", + value = "lowpolyfireanim_blue.m2", }, { fileId = "166508", - value = "loyaltydown_impact_base.m2", text = "loyaltydown_impact_base.m2", + value = "loyaltydown_impact_base.m2", }, { fileId = "166509", - value = "loyaltydown_impact_head.m2", text = "loyaltydown_impact_head.m2", + value = "loyaltydown_impact_head.m2", }, { fileId = "166510", - value = "loyaltyup_impact_base.m2", text = "loyaltyup_impact_base.m2", + value = "loyaltyup_impact_base.m2", }, { fileId = "166511", - value = "loyaltyup_impact_head.m2", text = "loyaltyup_impact_head.m2", + value = "loyaltyup_impact_head.m2", }, { fileId = "166515", - value = "mage_dragons_breath.m2", text = "mage_dragons_breath.m2", + value = "mage_dragons_breath.m2", }, { fileId = "166522", - value = "magearmor_impact_head.m2", text = "magearmor_impact_head.m2", + value = "magearmor_impact_head.m2", }, { fileId = "166523", - value = "mageportal_blank.m2", text = "mageportal_blank.m2", + value = "mageportal_blank.m2", }, { fileId = "166524", - value = "magic_cast_hand.m2", text = "magic_cast_hand.m2", + value = "magic_cast_hand.m2", }, { fileId = "166525", - value = "magic_impact_chest.m2", text = "magic_impact_chest.m2", + value = "magic_impact_chest.m2", }, { fileId = "166526", - value = "magic_precast_hand.m2", text = "magic_precast_hand.m2", + value = "magic_precast_hand.m2", }, { fileId = "166527", - value = "magicnet_missile.m2", text = "magicnet_missile.m2", + value = "magicnet_missile.m2", }, { fileId = "166528", - value = "magicnet_state.m2", text = "magicnet_state.m2", + value = "magicnet_state.m2", }, { fileId = "166529", - value = "magicstonehelmet_green.m2", text = "magicstonehelmet_green.m2", + value = "magicstonehelmet_green.m2", }, { fileId = "166530", - value = "magicstonehelmet_red.m2", text = "magicstonehelmet_red.m2", + value = "magicstonehelmet_red.m2", }, { fileId = "166531", - value = "magicunlock.m2", text = "magicunlock.m2", + value = "magicunlock.m2", }, { fileId = "166532", - value = "magtheradonceilingchunk.m2", text = "magtheradonceilingchunk.m2", + value = "magtheradonceilingchunk.m2", }, { fileId = "166534", - value = "maim_impact_chest.m2", text = "maim_impact_chest.m2", + value = "maim_impact_chest.m2", }, { fileId = "166535", - value = "mame_impact.m2", text = "mame_impact.m2", + value = "mame_impact.m2", }, { fileId = "166536", - value = "mana_impactdot_chest.m2", text = "mana_impactdot_chest.m2", + value = "mana_impactdot_chest.m2", }, { fileId = "166537", - value = "manaburn_chest.m2", text = "manaburn_chest.m2", + value = "manaburn_chest.m2", }, { fileId = "166538", - value = "manafunnel_impact_chest.m2", text = "manafunnel_impact_chest.m2", + value = "manafunnel_impact_chest.m2", }, { fileId = "166539", - value = "manainfuse_base.m2", text = "manainfuse_base.m2", + value = "manainfuse_base.m2", }, { fileId = "166540", - value = "manashield_state_base.m2", text = "manashield_state_base.m2", + value = "manashield_state_base.m2", }, { fileId = "166541", - value = "manashield_state_chest.m2", text = "manashield_state_chest.m2", + value = "manashield_state_chest.m2", }, { fileId = "166542", - value = "manashot_missile.m2", text = "manashot_missile.m2", + value = "manashot_missile.m2", }, { fileId = "166543", - value = "manatideinfuse_base.m2", text = "manatideinfuse_base.m2", + value = "manatideinfuse_base.m2", }, { fileId = "166544", - value = "mangle_impact.m2", text = "mangle_impact.m2", + value = "mangle_impact.m2", }, { fileId = "166545", - value = "markofbeast_impact_head.m2", text = "markofbeast_impact_head.m2", + value = "markofbeast_impact_head.m2", }, { fileId = "166546", - value = "markofwild_impact_head.m2", text = "markofwild_impact_head.m2", + value = "markofwild_impact_head.m2", }, { fileId = "166547", - value = "mass_dispell_impact.m2", text = "mass_dispell_impact.m2", + value = "mass_dispell_impact.m2", }, { fileId = "166549", - value = "maul.m2", text = "maul.m2", + value = "maul.m2", }, { fileId = "166550", - value = "maulcasterbase.m2", text = "maulcasterbase.m2", + value = "maulcasterbase.m2", }, { fileId = "166551", - value = "maulimpact.m2", text = "maulimpact.m2", + value = "maulimpact.m2", }, { fileId = "166553", - value = "meteor_ball_missile.m2", text = "meteor_ball_missile.m2", + value = "meteor_ball_missile.m2", }, { fileId = "166554", - value = "meteor_impact_base.m2", text = "meteor_impact_base.m2", + value = "meteor_impact_base.m2", }, { fileId = "166555", - value = "meteor_impact_base_red.m2", text = "meteor_impact_base_red.m2", + value = "meteor_impact_base_red.m2", }, { fileId = "166557", - value = "mightaura_impact_base.m2", text = "mightaura_impact_base.m2", + value = "mightaura_impact_base.m2", }, { fileId = "166558", - value = "mindblast_head.m2", text = "mindblast_head.m2", + value = "mindblast_head.m2", }, { fileId = "166559", - value = "mindrot_head.m2", text = "mindrot_head.m2", + value = "mindrot_head.m2", }, { fileId = "166560", - value = "miningpick_spellobject.m2", text = "miningpick_spellobject.m2", + value = "miningpick_spellobject.m2", }, { fileId = "166561", - value = "misdirection_impact_head.m2", text = "misdirection_impact_head.m2", + value = "misdirection_impact_head.m2", }, { fileId = "166562", - value = "missile_axe_1houtlandraidd06.m2", text = "missile_axe_1houtlandraidd06.m2", + value = "missile_axe_1houtlandraidd06.m2", }, { fileId = "166563", - value = "missile_axe_copper.m2", text = "missile_axe_copper.m2", + value = "missile_axe_copper.m2", }, { fileId = "166564", - value = "missile_bomb.m2", text = "missile_bomb.m2", + value = "missile_bomb.m2", }, { fileId = "166565", - value = "missile_boomerang.m2", text = "missile_boomerang.m2", + value = "missile_boomerang.m2", }, { fileId = "166566", - value = "missile_flare.m2", text = "missile_flare.m2", + value = "missile_flare.m2", }, { fileId = "166567", - value = "missile_hammer.m2", text = "missile_hammer.m2", + value = "missile_hammer.m2", }, { fileId = "166568", - value = "missile_leatherball.m2", text = "missile_leatherball.m2", + value = "missile_leatherball.m2", }, { fileId = "166569", - value = "missile_sawblade.m2", text = "missile_sawblade.m2", + value = "missile_sawblade.m2", }, { fileId = "166570", - value = "missile_snowball.m2", text = "missile_snowball.m2", + value = "missile_snowball.m2", }, { fileId = "166571", - value = "missile_thorns.m2", text = "missile_thorns.m2", + value = "missile_thorns.m2", }, { fileId = "166572", - value = "missile_wave_arcane.m2", text = "missile_wave_arcane.m2", + value = "missile_wave_arcane.m2", }, { fileId = "166573", - value = "missile_wave_fire.m2", text = "missile_wave_fire.m2", + value = "missile_wave_fire.m2", }, { fileId = "166574", - value = "missile_wave_holy.m2", text = "missile_wave_holy.m2", + value = "missile_wave_holy.m2", }, { fileId = "166575", - value = "missile_wave_nature.m2", text = "missile_wave_nature.m2", + value = "missile_wave_nature.m2", }, { fileId = "166576", - value = "missile_wave_shadow.m2", text = "missile_wave_shadow.m2", + value = "missile_wave_shadow.m2", }, { fileId = "166577", - value = "missile_wave_water.m2", text = "missile_wave_water.m2", + value = "missile_wave_water.m2", }, { fileId = "166578", - value = "missile_wave_watergreen.m2", text = "missile_wave_watergreen.m2", + value = "missile_wave_watergreen.m2", }, { fileId = "166579", - value = "missile_wrench.m2", text = "missile_wrench.m2", + value = "missile_wrench.m2", }, { fileId = "166580", - value = "missle_rocket.m2", text = "missle_rocket.m2", + value = "missle_rocket.m2", }, { fileId = "166582", - value = "molten_armor_head.m2", text = "molten_armor_head.m2", + value = "molten_armor_head.m2", }, { fileId = "166583", - value = "moltenblast_impact_chest.m2", text = "moltenblast_impact_chest.m2", + value = "moltenblast_impact_chest.m2", }, { fileId = "166584", - value = "moltenblast_missile.m2", text = "moltenblast_missile.m2", + value = "moltenblast_missile.m2", }, { fileId = "166585", - value = "moltenblast_missile_lvl2.m2", text = "moltenblast_missile_lvl2.m2", + value = "moltenblast_missile_lvl2.m2", }, { fileId = "166586", - value = "moltenblast_missile_lvl3.m2", text = "moltenblast_missile_lvl3.m2", + value = "moltenblast_missile_lvl3.m2", }, { fileId = "166590", - value = "moonbeam_impact_base.m2", text = "moonbeam_impact_base.m2", + value = "moonbeam_impact_base.m2", }, { fileId = "166591", - value = "moonbeamblue_impact_base.m2", text = "moonbeamblue_impact_base.m2", + value = "moonbeamblue_impact_base.m2", }, { fileId = "166592", - value = "moonbeamred_impact_base.m2", text = "moonbeamred_impact_base.m2", + value = "moonbeamred_impact_base.m2", }, { fileId = "166593", - value = "moonfire_impact_base.m2", text = "moonfire_impact_base.m2", + value = "moonfire_impact_base.m2", }, { fileId = "166594", - value = "movementimmunity_base.m2", text = "movementimmunity_base.m2", + value = "movementimmunity_base.m2", }, { fileId = "166595", - value = "mug_missile.m2", text = "mug_missile.m2", + value = "mug_missile.m2", }, { fileId = "166596", - value = "mug_missile_hitbounce.m2", text = "mug_missile_hitbounce.m2", + value = "mug_missile_hitbounce.m2", }, { fileId = "166597", - value = "multishot_impact.m2", text = "multishot_impact.m2", + value = "multishot_impact.m2", }, { fileId = "166598", - value = "multishot_missile.m2", text = "multishot_missile.m2", + value = "multishot_missile.m2", }, { fileId = "166599", - value = "mutilate_impact_chest.m2", text = "mutilate_impact_chest.m2", + value = "mutilate_impact_chest.m2", }, { fileId = "166600", - value = "nagalordshell_impact.m2", text = "nagalordshell_impact.m2", + value = "nagalordshell_impact.m2", }, { fileId = "166601", - value = "nagalordshell_missile.m2", text = "nagalordshell_missile.m2", + value = "nagalordshell_missile.m2", }, { fileId = "166602", - value = "nature_cast_hand.m2", text = "nature_cast_hand.m2", + value = "nature_cast_hand.m2", }, { fileId = "166603", - value = "nature_form_precast.m2", text = "nature_form_precast.m2", + value = "nature_form_precast.m2", }, { fileId = "166604", - value = "nature_precast_chest.m2", text = "nature_precast_chest.m2", + value = "nature_precast_chest.m2", }, { fileId = "166605", - value = "nature_precast_low_hand.m2", text = "nature_precast_low_hand.m2", + value = "nature_precast_low_hand.m2", }, { fileId = "166607", - value = "naturereflect_state_chest.m2", text = "naturereflect_state_chest.m2", + value = "naturereflect_state_chest.m2", }, { fileId = "166608", - value = "natureresistance_impact_base.m2", text = "natureresistance_impact_base.m2", + value = "natureresistance_impact_base.m2", }, { fileId = "166609", - value = "natureward_impact_chest.m2", text = "natureward_impact_chest.m2", + value = "natureward_impact_chest.m2", }, { fileId = "166610", - value = "naxxramasstrike_impactdd_med_base.m2", text = "naxxramasstrike_impactdd_med_base.m2", + value = "naxxramasstrike_impactdd_med_base.m2", }, { fileId = "166611", - value = "nefarian_impact_base.m2", text = "nefarian_impact_base.m2", + value = "nefarian_impact_base.m2", }, { fileId = "166612", - value = "nefarian_state_base.m2", text = "nefarian_state_base.m2", + value = "nefarian_state_base.m2", }, { fileId = "166613", - value = "nefarianflamebreath.m2", text = "nefarianflamebreath.m2", + value = "nefarianflamebreath.m2", }, { fileId = "166614", - value = "nefarianflamebreath_impact.m2", text = "nefarianflamebreath_impact.m2", + value = "nefarianflamebreath_impact.m2", }, { fileId = "166615", - value = "net_missile.m2", text = "net_missile.m2", + value = "net_missile.m2", }, { fileId = "166616", - value = "net_state.m2", text = "net_state.m2", + value = "net_state.m2", }, { fileId = "166617", - value = "neutralctfflag_spell.m2", text = "neutralctfflag_spell.m2", + value = "neutralctfflag_spell.m2", }, { fileId = "166618", - value = "nightbane_area_base.m2", text = "nightbane_area_base.m2", + value = "nightbane_area_base.m2", }, { fileId = "166619", - value = "nightbane_bone_missile.m2", text = "nightbane_bone_missile.m2", + value = "nightbane_bone_missile.m2", }, { fileId = "166620", - value = "nightbane_bone_spurs.m2", text = "nightbane_bone_spurs.m2", + value = "nightbane_bone_spurs.m2", }, { fileId = "166621", - value = "nightbane_breath.m2", text = "nightbane_breath.m2", + value = "nightbane_breath.m2", }, { fileId = "166622", - value = "nightbane_fire_missile.m2", text = "nightbane_fire_missile.m2", + value = "nightbane_fire_missile.m2", }, { fileId = "166623", - value = "nightmare_impact_base.m2", text = "nightmare_impact_base.m2", + value = "nightmare_impact_base.m2", }, { fileId = "166624", - value = "noname_area.m2", text = "noname_area.m2", + value = "noname_area.m2", }, { fileId = "166625", - value = "nullifydisease_base.m2", text = "nullifydisease_base.m2", + value = "nullifydisease_base.m2", }, { fileId = "166626", - value = "nullifypoison_base.m2", text = "nullifypoison_base.m2", + value = "nullifypoison_base.m2", }, { fileId = "166629", - value = "onyxia_impact_base.m2", text = "onyxia_impact_base.m2", + value = "onyxia_impact_base.m2", }, { fileId = "166630", - value = "orangeradiationfog.m2", text = "orangeradiationfog.m2", + value = "orangeradiationfog.m2", }, { fileId = "166631", - value = "painsuppression_state.m2", text = "painsuppression_state.m2", + value = "painsuppression_state.m2", }, { fileId = "166633", - value = "parachute.m2", text = "parachute.m2", + value = "parachute.m2", }, { fileId = "166634", - value = "parachute_wings_head.m2", text = "parachute_wings_head.m2", + value = "parachute_wings_head.m2", }, { fileId = "166636", - value = "pathfind_cast_head.m2", text = "pathfind_cast_head.m2", + value = "pathfind_cast_head.m2", }, { fileId = "166637", - value = "pestilence_impact_chest.m2", text = "pestilence_impact_chest.m2", + value = "pestilence_impact_chest.m2", }, { fileId = "166638", - value = "piercinghowl_impact_head.m2", text = "piercinghowl_impact_head.m2", + value = "piercinghowl_impact_head.m2", }, { fileId = "166639", - value = "piercingstrike.m2", text = "piercingstrike.m2", + value = "piercingstrike.m2", }, { fileId = "166640", - value = "piercingstrike_cast_hand.m2", text = "piercingstrike_cast_hand.m2", + value = "piercingstrike_cast_hand.m2", }, { fileId = "166642", - value = "poison_cloud_grobbulus.m2", text = "poison_cloud_grobbulus.m2", + value = "poison_cloud_grobbulus.m2", }, { fileId = "166643", - value = "poison_impact_chest.m2", text = "poison_impact_chest.m2", + value = "poison_impact_chest.m2", }, { fileId = "166644", - value = "poison_impactdot_med_base.m2", text = "poison_impactdot_med_base.m2", + value = "poison_impactdot_med_base.m2", }, { fileId = "166645", - value = "poison_impactdot_med_chest.m2", text = "poison_impactdot_med_chest.m2", + value = "poison_impactdot_med_chest.m2", }, { fileId = "166646", - value = "poisonelemental_impact_base.m2", text = "poisonelemental_impact_base.m2", + value = "poisonelemental_impact_base.m2", }, { fileId = "166647", - value = "poisonshield_state_base.m2", text = "poisonshield_state_base.m2", + value = "poisonshield_state_base.m2", }, { fileId = "166648", - value = "poisonshot_missile.m2", text = "poisonshot_missile.m2", + value = "poisonshot_missile.m2", }, { fileId = "166649", - value = "polymorph_impact.m2", text = "polymorph_impact.m2", + value = "polymorph_impact.m2", }, { fileId = "166650", - value = "polymorph_impact_base.m2", text = "polymorph_impact_base.m2", + value = "polymorph_impact_base.m2", }, { fileId = "166654", - value = "potiona_spellobject.m2", text = "potiona_spellobject.m2", + value = "potiona_spellobject.m2", }, { fileId = "166655", - value = "potionb_spellobject.m2", text = "potionb_spellobject.m2", + value = "potionb_spellobject.m2", }, { fileId = "166656", - value = "prayerofhealing_chest.m2", text = "prayerofhealing_chest.m2", + value = "prayerofhealing_chest.m2", }, { fileId = "166657", - value = "prayerofmending_impact_head.m2", text = "prayerofmending_impact_head.m2", + value = "prayerofmending_impact_head.m2", }, { fileId = "166658", - value = "presenceofmind_cast_base.m2", text = "presenceofmind_cast_base.m2", + value = "presenceofmind_cast_base.m2", }, { fileId = "166663", - value = "protectionfromfire_chest.m2", text = "protectionfromfire_chest.m2", + value = "protectionfromfire_chest.m2", }, { fileId = "166664", - value = "protectionfromnature_chest.m2", text = "protectionfromnature_chest.m2", + value = "protectionfromnature_chest.m2", }, { fileId = "166665", - value = "purge_impact_chest.m2", text = "purge_impact_chest.m2", + value = "purge_impact_chest.m2", }, { fileId = "166666", - value = "purge_new_impact_chest.m2", text = "purge_new_impact_chest.m2", + value = "purge_new_impact_chest.m2", }, { fileId = "166667", - value = "purify_base.m2", text = "purify_base.m2", + value = "purify_base.m2", }, { fileId = "4058678", - value = "purplearenaflag_spell.m2", text = "purplearenaflag_spell.m2", + value = "purplearenaflag_spell.m2", }, { fileId = "166672", - value = "purpleghost_state.m2", text = "purpleghost_state.m2", + value = "purpleghost_state.m2", }, { fileId = "4058677", - value = "purplehordeflag_spell.m2", text = "purplehordeflag_spell.m2", + value = "purplehordeflag_spell.m2", }, { fileId = "166673", - value = "pyroblast_blue_missile.m2", text = "pyroblast_blue_missile.m2", + value = "pyroblast_blue_missile.m2", }, { fileId = "166674", - value = "pyroblast_missile.m2", text = "pyroblast_missile.m2", + value = "pyroblast_missile.m2", }, { fileId = "166675", - value = "rag_firenova_area.m2", text = "rag_firenova_area.m2", + value = "rag_firenova_area.m2", }, { fileId = "166676", - value = "rainofcandys_impact_base.m2", text = "rainofcandys_impact_base.m2", + value = "rainofcandys_impact_base.m2", }, { fileId = "166677", - value = "rainoffire_impact_base.m2", text = "rainoffire_impact_base.m2", + value = "rainoffire_impact_base.m2", }, { fileId = "166678", - value = "rainoffire_missile.m2", text = "rainoffire_missile.m2", + value = "rainoffire_missile.m2", }, { fileId = "166679", - value = "rake.m2", text = "rake.m2", + value = "rake.m2", }, { fileId = "166681", - value = "rampage_state_head.m2", text = "rampage_state_head.m2", + value = "rampage_state_head.m2", }, { fileId = "166682", - value = "rapidfire_base.m2", text = "rapidfire_base.m2", + value = "rapidfire_base.m2", }, { fileId = "166684", - value = "readiness_impact_chest.m2", text = "readiness_impact_chest.m2", + value = "readiness_impact_chest.m2", }, { fileId = "166685", - value = "recklessness_impact_chest.m2", text = "recklessness_impact_chest.m2", + value = "recklessness_impact_chest.m2", }, { fileId = "166690", - value = "reddustcloud.m2", text = "reddustcloud.m2", + value = "reddustcloud.m2", }, { fileId = "166691", - value = "redemption_base.m2", text = "redemption_base.m2", + value = "redemption_base.m2", }, { fileId = "166692", - value = "redghost_state.m2", text = "redghost_state.m2", + value = "redghost_state.m2", }, { fileId = "166693", - value = "redradiationfog.m2", text = "redradiationfog.m2", + value = "redradiationfog.m2", }, { fileId = "166694", - value = "rejuvenation_impact_base.m2", text = "rejuvenation_impact_base.m2", + value = "rejuvenation_impact_base.m2", }, { fileId = "166695", - value = "removecurse_base.m2", text = "removecurse_base.m2", + value = "removecurse_base.m2", }, { fileId = "166696", - value = "renew_base.m2", text = "renew_base.m2", + value = "renew_base.m2", }, { fileId = "166697", - value = "renew_chest.m2", text = "renew_chest.m2", + value = "renew_chest.m2", }, { fileId = "166698", - value = "reputationlevelup.m2", text = "reputationlevelup.m2", + value = "reputationlevelup.m2", }, { fileId = "166699", - value = "resfx.m2", text = "resfx.m2", + value = "resfx.m2", }, { fileId = "166700", - value = "resist_immune_effect.m2", text = "resist_immune_effect.m2", + value = "resist_immune_effect.m2", }, { fileId = "166701", - value = "resistanceaura_base.m2", text = "resistanceaura_base.m2", + value = "resistanceaura_base.m2", }, { fileId = "166702", - value = "resistfrost_chest.m2", text = "resistfrost_chest.m2", + value = "resistfrost_chest.m2", }, { fileId = "166703", - value = "restoration_impact_base.m2", text = "restoration_impact_base.m2", + value = "restoration_impact_base.m2", }, { fileId = "166704", - value = "resurrection_low_base.m2", text = "resurrection_low_base.m2", + value = "resurrection_low_base.m2", }, { fileId = "166705", - value = "retaliation_state_chest.m2", text = "retaliation_state_chest.m2", + value = "retaliation_state_chest.m2", }, { fileId = "166707", - value = "retributionaura_base.m2", text = "retributionaura_base.m2", + value = "retributionaura_base.m2", }, { fileId = "166708", - value = "retributionaurared_base.m2", text = "retributionaurared_base.m2", + value = "retributionaurared_base.m2", }, { fileId = "166709", - value = "revivepet_impact_base.m2", text = "revivepet_impact_base.m2", + value = "revivepet_impact_base.m2", }, { fileId = "166731", - value = "ribbontrail.m2", text = "ribbontrail.m2", + value = "ribbontrail.m2", }, { fileId = "166732", - value = "righteousfury_chest.m2", text = "righteousfury_chest.m2", + value = "righteousfury_chest.m2", }, { fileId = "166733", - value = "righteousnessaura_base.m2", text = "righteousnessaura_base.m2", + value = "righteousnessaura_base.m2", }, { fileId = "166734", - value = "ritual_arcane_precast_base.m2", text = "ritual_arcane_precast_base.m2", + value = "ritual_arcane_precast_base.m2", }, { fileId = "166735", - value = "ritual_fire_precast_base.m2", text = "ritual_fire_precast_base.m2", + value = "ritual_fire_precast_base.m2", }, { fileId = "166736", - value = "ritual_frost_precast_base.m2", text = "ritual_frost_precast_base.m2", + value = "ritual_frost_precast_base.m2", }, { fileId = "166737", - value = "ritualsummoning_precast_base.m2", text = "ritualsummoning_precast_base.m2", + value = "ritualsummoning_precast_base.m2", }, { fileId = "166739", - value = "rocketblast.m2", text = "rocketblast.m2", + value = "rocketblast.m2", }, { fileId = "166740", - value = "rocketlauncher_cast.m2", text = "rocketlauncher_cast.m2", + value = "rocketlauncher_cast.m2", }, { fileId = "166741", - value = "rocketlauncher_precast.m2", text = "rocketlauncher_precast.m2", + value = "rocketlauncher_precast.m2", }, { fileId = "166743", - value = "rockyfrost_nova_state.m2", text = "rockyfrost_nova_state.m2", + value = "rockyfrost_nova_state.m2", }, { fileId = "166744", - value = "romancandle_a_01.m2", text = "romancandle_a_01.m2", + value = "romancandle_a_01.m2", }, { fileId = "166759", - value = "sandvortex_state_base.m2", text = "sandvortex_state_base.m2", + value = "sandvortex_state_base.m2", }, { fileId = "166760", - value = "sandworm_attackeffects.m2", text = "sandworm_attackeffects.m2", + value = "sandworm_attackeffects.m2", }, { fileId = "166761", - value = "sap_cast_base.m2", text = "sap_cast_base.m2", + value = "sap_cast_base.m2", }, { fileId = "166762", - value = "sap_impact_chest.m2", text = "sap_impact_chest.m2", + value = "sap_impact_chest.m2", }, { fileId = "166763", - value = "sap_state_head.m2", text = "sap_state_head.m2", + value = "sap_state_head.m2", }, { fileId = "166764", - value = "savageblow_impact_chest.m2", text = "savageblow_impact_chest.m2", + value = "savageblow_impact_chest.m2", }, { fileId = "166766", - value = "scorch_low_chest.m2", text = "scorch_low_chest.m2", + value = "scorch_low_chest.m2", }, { fileId = "166767", - value = "scorpidshot_missile.m2", text = "scorpidshot_missile.m2", + value = "scorpidshot_missile.m2", }, { fileId = "166768", - value = "scorpidsting_impact_base.m2", text = "scorpidsting_impact_base.m2", + value = "scorpidsting_impact_base.m2", }, { fileId = "166769", - value = "sealofblood_impact_base.m2", text = "sealofblood_impact_base.m2", + value = "sealofblood_impact_base.m2", }, { fileId = "166770", - value = "sealofcommand_impact_base.m2", text = "sealofcommand_impact_base.m2", + value = "sealofcommand_impact_base.m2", }, { fileId = "166771", - value = "sealofcrusader_impact.m2", text = "sealofcrusader_impact.m2", + value = "sealofcrusader_impact.m2", }, { fileId = "166772", - value = "sealoffury_impact_base.m2", text = "sealoffury_impact_base.m2", + value = "sealoffury_impact_base.m2", }, { fileId = "166773", - value = "sealoflight_impact_base.m2", text = "sealoflight_impact_base.m2", + value = "sealoflight_impact_base.m2", }, { fileId = "166774", - value = "sealofmight_impact_base.m2", text = "sealofmight_impact_base.m2", + value = "sealofmight_impact_base.m2", }, { fileId = "166775", - value = "sealofmight_low_base.m2", text = "sealofmight_low_base.m2", + value = "sealofmight_low_base.m2", }, { fileId = "166776", - value = "sealofprotection_impact_base.m2", text = "sealofprotection_impact_base.m2", + value = "sealofprotection_impact_base.m2", }, { fileId = "166777", - value = "sealofrighteous_impact_base.m2", text = "sealofrighteous_impact_base.m2", + value = "sealofrighteous_impact_base.m2", }, { fileId = "166778", - value = "sealofsacrifice_impact_base.m2", text = "sealofsacrifice_impact_base.m2", + value = "sealofsacrifice_impact_base.m2", }, { fileId = "166779", - value = "sealofsalvation_impact_base.m2", text = "sealofsalvation_impact_base.m2", + value = "sealofsalvation_impact_base.m2", }, { fileId = "166780", - value = "sealofvengeance_impact_base.m2", text = "sealofvengeance_impact_base.m2", + value = "sealofvengeance_impact_base.m2", }, { fileId = "166781", - value = "sealofwisdom_impact_base.m2", text = "sealofwisdom_impact_base.m2", + value = "sealofwisdom_impact_base.m2", }, { fileId = "166782", - value = "sealofwrath_impact_base.m2", text = "sealofwrath_impact_base.m2", + value = "sealofwrath_impact_base.m2", }, { fileId = "166783", - value = "seduction_state_head.m2", text = "seduction_state_head.m2", + value = "seduction_state_head.m2", }, { fileId = "166784", - value = "seedofcorruption_state.m2", text = "seedofcorruption_state.m2", + value = "seedofcorruption_state.m2", }, { fileId = "166785", - value = "seepinggaseous_fel_nova.m2", text = "seepinggaseous_fel_nova.m2", + value = "seepinggaseous_fel_nova.m2", }, { fileId = "166786", - value = "seepinggaseous_nova.m2", text = "seepinggaseous_nova.m2", + value = "seepinggaseous_nova.m2", }, { fileId = "166788", - value = "sensedemons_impact_head.m2", text = "sensedemons_impact_head.m2", + value = "sensedemons_impact_head.m2", }, { fileId = "166789", - value = "shadesofdarkness_cast.m2", text = "shadesofdarkness_cast.m2", + value = "shadesofdarkness_cast.m2", }, { fileId = "166790", - value = "shadow_dotparticle.m2", text = "shadow_dotparticle.m2", + value = "shadow_dotparticle.m2", }, { fileId = "166791", - value = "shadow_fissure_base.m2", text = "shadow_fissure_base.m2", + value = "shadow_fissure_base.m2", }, { fileId = "166792", - value = "shadow_form_precast.m2", text = "shadow_form_precast.m2", + value = "shadow_form_precast.m2", }, { fileId = "166793", - value = "shadow_frost_weapon_effect.m2", text = "shadow_frost_weapon_effect.m2", + value = "shadow_frost_weapon_effect.m2", }, { fileId = "166794", - value = "shadow_impactbuff_base.m2", text = "shadow_impactbuff_base.m2", + value = "shadow_impactbuff_base.m2", }, { fileId = "166795", - value = "shadow_impactdd_high_chest.m2", text = "shadow_impactdd_high_chest.m2", + value = "shadow_impactdd_high_chest.m2", }, { fileId = "166796", - value = "shadow_impactdd_low_chest.m2", text = "shadow_impactdd_low_chest.m2", + value = "shadow_impactdd_low_chest.m2", }, { fileId = "166797", - value = "shadow_impactdd_med_base.m2", text = "shadow_impactdd_med_base.m2", + value = "shadow_impactdd_med_base.m2", }, { fileId = "166798", - value = "shadow_impactdd_med_chest.m2", text = "shadow_impactdd_med_chest.m2", + value = "shadow_impactdd_med_chest.m2", }, { fileId = "166799", - value = "shadow_impactdd_uber_chest.m2", text = "shadow_impactdd_uber_chest.m2", + value = "shadow_impactdd_uber_chest.m2", }, { fileId = "166800", - value = "shadow_impactdot_med_chest.m2", text = "shadow_impactdot_med_chest.m2", + value = "shadow_impactdot_med_chest.m2", }, { fileId = "166801", - value = "shadow_impactdot_med_head.m2", text = "shadow_impactdot_med_head.m2", + value = "shadow_impactdot_med_head.m2", }, { fileId = "166802", - value = "shadow_mend_impact.m2", text = "shadow_mend_impact.m2", + value = "shadow_mend_impact.m2", }, { fileId = "166803", - value = "shadow_nova_area.m2", text = "shadow_nova_area.m2", + value = "shadow_nova_area.m2", }, { fileId = "166804", - value = "shadow_nova_area_noprojection.m2", text = "shadow_nova_area_noprojection.m2", + value = "shadow_nova_area_noprojection.m2", }, { fileId = "166805", - value = "shadow_precast_high_base.m2", text = "shadow_precast_high_base.m2", + value = "shadow_precast_high_base.m2", }, { fileId = "166806", - value = "shadow_precast_high_hand.m2", text = "shadow_precast_high_hand.m2", + value = "shadow_precast_high_hand.m2", }, { fileId = "166807", - value = "shadow_precast_low_hand.m2", text = "shadow_precast_low_hand.m2", + value = "shadow_precast_low_hand.m2", }, { fileId = "166808", - value = "shadow_precast_med_base.m2", text = "shadow_precast_med_base.m2", + value = "shadow_precast_med_base.m2", }, { fileId = "166809", - value = "shadow_precast_med_hand.m2", text = "shadow_precast_med_hand.m2", + value = "shadow_precast_med_hand.m2", }, { fileId = "166810", - value = "shadow_precast_uber_base.m2", text = "shadow_precast_uber_base.m2", + value = "shadow_precast_uber_base.m2", }, { fileId = "166811", - value = "shadow_precast_uber_hand.m2", text = "shadow_precast_uber_hand.m2", + value = "shadow_precast_uber_hand.m2", }, { fileId = "166812", - value = "shadow_snare_high_base.m2", text = "shadow_snare_high_base.m2", + value = "shadow_snare_high_base.m2", }, { fileId = "166813", - value = "shadow_strikes_state_hand.m2", text = "shadow_strikes_state_hand.m2", + value = "shadow_strikes_state_hand.m2", }, { fileId = "166814", - value = "shadowbolt_chest_impact.m2", text = "shadowbolt_chest_impact.m2", + value = "shadowbolt_chest_impact.m2", }, { fileId = "166815", - value = "shadowbolt_missile.m2", text = "shadowbolt_missile.m2", + value = "shadowbolt_missile.m2", }, { fileId = "166816", - value = "shadowbolt_missile_noribbon.m2", text = "shadowbolt_missile_noribbon.m2", + value = "shadowbolt_missile_noribbon.m2", }, { fileId = "166821", - value = "shadowfury_impact_base.m2", text = "shadowfury_impact_base.m2", + value = "shadowfury_impact_base.m2", }, { fileId = "166822", - value = "shadowmissile.m2", text = "shadowmissile.m2", + value = "shadowmissile.m2", }, { fileId = "166823", - value = "shadowprotection_chest.m2", text = "shadowprotection_chest.m2", + value = "shadowprotection_chest.m2", }, { fileId = "166824", - value = "shadowreflect_state_chest.m2", text = "shadowreflect_state_chest.m2", + value = "shadowreflect_state_chest.m2", }, { fileId = "166826", - value = "shadowshield_impact.m2", text = "shadowshield_impact.m2", + value = "shadowshield_impact.m2", }, { fileId = "166827", - value = "shadowshield_state_base.m2", text = "shadowshield_state_base.m2", + value = "shadowshield_state_base.m2", }, { fileId = "166828", - value = "shadowsteps_fx.m2", text = "shadowsteps_fx.m2", + value = "shadowsteps_fx.m2", }, { fileId = "166829", - value = "shadowstrike_impact_chest.m2", text = "shadowstrike_impact_chest.m2", + value = "shadowstrike_impact_chest.m2", }, { fileId = "166830", - value = "shadowward_impact_chest.m2", text = "shadowward_impact_chest.m2", + value = "shadowward_impact_chest.m2", }, { fileId = "166831", - value = "shadowword_death_impact.m2", text = "shadowword_death_impact.m2", + value = "shadowword_death_impact.m2", }, { fileId = "166832", - value = "shadowwordbefuddle_head.m2", text = "shadowwordbefuddle_head.m2", + value = "shadowwordbefuddle_head.m2", }, { fileId = "166833", - value = "shadowworddominate_chest.m2", text = "shadowworddominate_chest.m2", + value = "shadowworddominate_chest.m2", }, { fileId = "166834", - value = "shadowwordfumble_head.m2", text = "shadowwordfumble_head.m2", + value = "shadowwordfumble_head.m2", }, { fileId = "166835", - value = "shadowwordpain_chest.m2", text = "shadowwordpain_chest.m2", + value = "shadowwordpain_chest.m2", }, { fileId = "166836", - value = "shadowwordsilence_breath.m2", text = "shadowwordsilence_breath.m2", + value = "shadowwordsilence_breath.m2", }, { fileId = "166837", - value = "shamanisticrage_cast_hand.m2", text = "shamanisticrage_cast_hand.m2", + value = "shamanisticrage_cast_hand.m2", }, { fileId = "166838", - value = "shamanisticrage_state_hand.m2", text = "shamanisticrage_state_hand.m2", + value = "shamanisticrage_state_hand.m2", }, { fileId = "166840", - value = "shellshield_state_base.m2", text = "shellshield_state_base.m2", + value = "shellshield_state_base.m2", }, { fileId = "166841", - value = "shieldbash_impact_chest.m2", text = "shieldbash_impact_chest.m2", + value = "shieldbash_impact_chest.m2", }, { fileId = "166842", - value = "shieldwall_impact_base.m2", text = "shieldwall_impact_base.m2", + value = "shieldwall_impact_base.m2", }, { fileId = "166843", - value = "shieldwallwar_impact_base.m2", text = "shieldwallwar_impact_base.m2", + value = "shieldwallwar_impact_base.m2", }, { fileId = "166844", - value = "shock_impact_chest.m2", text = "shock_impact_chest.m2", + value = "shock_impact_chest.m2", }, { fileId = "166845", - value = "shock_missile.m2", text = "shock_missile.m2", + value = "shock_missile.m2", }, { fileId = "166875", - value = "shout_cast.m2", text = "shout_cast.m2", + value = "shout_cast.m2", }, { fileId = "166877", - value = "sinisterstrike_base_cast.m2", text = "sinisterstrike_base_cast.m2", + value = "sinisterstrike_base_cast.m2", }, { fileId = "166878", - value = "sinisterstrike_impact_chest.m2", text = "sinisterstrike_impact_chest.m2", + value = "sinisterstrike_impact_chest.m2", }, { fileId = "166881", - value = "skull.m2", text = "skull.m2", + value = "skull.m2", }, { fileId = "166882", - value = "skull180.m2", text = "skull180.m2", + value = "skull180.m2", }, { fileId = "166890", - value = "slam_impact_chest.m2", text = "slam_impact_chest.m2", + value = "slam_impact_chest.m2", }, { fileId = "166891", - value = "sleep_state_head.m2", text = "sleep_state_head.m2", + value = "sleep_state_head.m2", }, { fileId = "166892", - value = "slicedice_chest.m2", text = "slicedice_chest.m2", + value = "slicedice_chest.m2", }, { fileId = "166893", - value = "slicedice_impact_chest.m2", text = "slicedice_impact_chest.m2", + value = "slicedice_impact_chest.m2", }, { fileId = "166896", - value = "slimelesser_missile.m2", text = "slimelesser_missile.m2", + value = "slimelesser_missile.m2", }, { fileId = "166897", - value = "slimelesserexplode_missile.m2", text = "slimelesserexplode_missile.m2", + value = "slimelesserexplode_missile.m2", }, { fileId = "166898", - value = "slow_impact_base.m2", text = "slow_impact_base.m2", + value = "slow_impact_base.m2", }, { fileId = "166899", - value = "slowingstrike_cast_hand.m2", text = "slowingstrike_cast_hand.m2", + value = "slowingstrike_cast_hand.m2", }, { fileId = "166900", - value = "slowingstrike_impact_base.m2", text = "slowingstrike_impact_base.m2", + value = "slowingstrike_impact_base.m2", }, { fileId = "166901", - value = "slowingstrike_impact_chest.m2", text = "slowingstrike_impact_chest.m2", + value = "slowingstrike_impact_chest.m2", }, { fileId = "166902", - value = "smash_impact_chest.m2", text = "smash_impact_chest.m2", + value = "smash_impact_chest.m2", }, { fileId = "166905", - value = "smokeflare_blue.m2", text = "smokeflare_blue.m2", + value = "smokeflare_blue.m2", }, { fileId = "166906", - value = "smokeflare_green.m2", text = "smokeflare_green.m2", + value = "smokeflare_green.m2", }, { fileId = "166907", - value = "smokeflare_purple.m2", text = "smokeflare_purple.m2", + value = "smokeflare_purple.m2", }, { fileId = "166908", - value = "smokeflare_red.m2", text = "smokeflare_red.m2", + value = "smokeflare_red.m2", }, { fileId = "166909", - value = "smokeflare_white.m2", text = "smokeflare_white.m2", + value = "smokeflare_white.m2", }, { fileId = "166912", - value = "snowball_impact_chest.m2", text = "snowball_impact_chest.m2", + value = "snowball_impact_chest.m2", }, { fileId = "166913", - value = "snowballpowdery_impact_base.m2", text = "snowballpowdery_impact_base.m2", + value = "snowballpowdery_impact_base.m2", }, { fileId = "166918", - value = "sonicboom_missile_high.m2", text = "sonicboom_missile_high.m2", + value = "sonicboom_missile_high.m2", }, { fileId = "166919", - value = "sonicwave_cast.m2", text = "sonicwave_cast.m2", + value = "sonicwave_cast.m2", }, { fileId = "166920", - value = "sonicwave_cast_down.m2", text = "sonicwave_cast_down.m2", + value = "sonicwave_cast_down.m2", }, { fileId = "166921", - value = "sonicwave_missile.m2", text = "sonicwave_missile.m2", + value = "sonicwave_missile.m2", }, { fileId = "166922", - value = "soothingkiss_impact_head.m2", text = "soothingkiss_impact_head.m2", + value = "soothingkiss_impact_head.m2", }, { fileId = "166923", - value = "soulfunnel_impact_chest.m2", text = "soulfunnel_impact_chest.m2", + value = "soulfunnel_impact_chest.m2", }, { fileId = "166924", - value = "soulshatter_cast.m2", text = "soulshatter_cast.m2", + value = "soulshatter_cast.m2", }, { fileId = "166925", - value = "soulshatter_impact.m2", text = "soulshatter_impact.m2", + value = "soulshatter_impact.m2", }, { fileId = "166926", - value = "soulshatter_missile.m2", text = "soulshatter_missile.m2", + value = "soulshatter_missile.m2", }, { fileId = "166927", - value = "soulstoneresurrection_base.m2", text = "soulstoneresurrection_base.m2", + value = "soulstoneresurrection_base.m2", }, { fileId = "166930", - value = "sparktrail.m2", text = "sparktrail.m2", + value = "sparktrail.m2", }, { fileId = "166931", - value = "spawn_impact_base.m2", text = "spawn_impact_base.m2", + value = "spawn_impact_base.m2", }, { fileId = "166932", - value = "spellbreak_cast_base.m2", text = "spellbreak_cast_base.m2", + value = "spellbreak_cast_base.m2", }, { fileId = "166934", - value = "spelllevelup.m2", text = "spelllevelup.m2", + value = "spelllevelup.m2", }, { fileId = "166935", - value = "spellobject_bomb.m2", text = "spellobject_bomb.m2", + value = "spellobject_bomb.m2", }, { fileId = "166936", - value = "spellobject_boomerang.m2", text = "spellobject_boomerang.m2", + value = "spellobject_boomerang.m2", }, { fileId = "2199509", - value = "spellobject_invisibletrap.m2", text = "spellobject_invisibletrap.m2", + value = "spellobject_invisibletrap.m2", }, { fileId = "166938", - value = "spellobject_smithinghammer.m2", text = "spellobject_smithinghammer.m2", + value = "spellobject_smithinghammer.m2", }, { fileId = "166939", - value = "spellobject_wrench.m2", text = "spellobject_wrench.m2", + value = "spellobject_wrench.m2", }, { fileId = "166940", - value = "spellreflection_state_shield.m2", text = "spellreflection_state_shield.m2", + value = "spellreflection_state_shield.m2", }, { fileId = "166941", - value = "spellsteal_impact_chest.m2", text = "spellsteal_impact_chest.m2", + value = "spellsteal_impact_chest.m2", }, { fileId = "166942", - value = "spellsteal_missile.m2", text = "spellsteal_missile.m2", + value = "spellsteal_missile.m2", }, { fileId = "166944", - value = "spike_impact_base.m2", text = "spike_impact_base.m2", + value = "spike_impact_base.m2", }, { fileId = "166945", - value = "spike_low_base.m2", text = "spike_low_base.m2", + value = "spike_low_base.m2", }, { fileId = "166950", - value = "spiritarmor_impact_head.m2", text = "spiritarmor_impact_head.m2", + value = "spiritarmor_impact_head.m2", }, { fileId = "166951", - value = "sprint_cast_base.m2", text = "sprint_cast_base.m2", + value = "sprint_cast_base.m2", }, { fileId = "166952", - value = "sprint_impact_chest.m2", text = "sprint_impact_chest.m2", + value = "sprint_impact_chest.m2", }, { fileId = "166973", - value = "starfire_area.m2", text = "starfire_area.m2", + value = "starfire_area.m2", }, { fileId = "166980", - value = "starshards_impact_base.m2", text = "starshards_impact_base.m2", + value = "starshards_impact_base.m2", }, { fileId = "166981", - value = "steam.m2", text = "steam.m2", + value = "steam.m2", }, { fileId = "166982", - value = "stoneform_state_base.m2", text = "stoneform_state_base.m2", + value = "stoneform_state_base.m2", }, { fileId = "166985", - value = "strike_cast_chest.m2", text = "strike_cast_chest.m2", + value = "strike_cast_chest.m2", }, { fileId = "166986", - value = "strike_impact_chest.m2", text = "strike_impact_chest.m2", + value = "strike_impact_chest.m2", }, { fileId = "166988", - value = "stunswirl_state_head.m2", text = "stunswirl_state_head.m2", + value = "stunswirl_state_head.m2", }, { fileId = "166990", - value = "summerfest_roseshower_impact_base.m2", text = "summerfest_roseshower_impact_base.m2", + value = "summerfest_roseshower_impact_base.m2", }, { fileId = "166991", - value = "summon_precast_hand.m2", text = "summon_precast_hand.m2", + value = "summon_precast_hand.m2", }, { fileId = "166993", - value = "summonpet_cast_impact_base.m2", text = "summonpet_cast_impact_base.m2", + value = "summonpet_cast_impact_base.m2", }, { fileId = "166994", - value = "summonpet_impact_base.m2", text = "summonpet_impact_base.m2", + value = "summonpet_impact_base.m2", }, { fileId = "166995", - value = "summonwarhorse_impact_base.m2", text = "summonwarhorse_impact_base.m2", + value = "summonwarhorse_impact_base.m2", }, { fileId = "166996", - value = "sunder_impact_chest.m2", text = "sunder_impact_chest.m2", + value = "sunder_impact_chest.m2", }, { fileId = "166997", - value = "sunwell_beamfx.m2", text = "sunwell_beamfx.m2", + value = "sunwell_beamfx.m2", }, { fileId = "166998", - value = "sunwell_fel_portal.m2", text = "sunwell_fel_portal.m2", + value = "sunwell_fel_portal.m2", }, { fileId = "166999", - value = "sunwell_fire_barrier.m2", text = "sunwell_fire_barrier.m2", + value = "sunwell_fire_barrier.m2", }, { fileId = "167000", - value = "sunwell_fire_barrier_ext.m2", text = "sunwell_fire_barrier_ext.m2", + value = "sunwell_fire_barrier_ext.m2", }, { fileId = "167001", - value = "sunwell_groundfx.m2", text = "sunwell_groundfx.m2", + value = "sunwell_groundfx.m2", }, { fileId = "167002", - value = "sunwell_wallfx.m2", text = "sunwell_wallfx.m2", + value = "sunwell_wallfx.m2", }, { fileId = "167003", - value = "sweepingstrike_impact_chest.m2", text = "sweepingstrike_impact_chest.m2", + value = "sweepingstrike_impact_chest.m2", }, { fileId = "167004", - value = "swipecaster.m2", text = "swipecaster.m2", + value = "swipecaster.m2", }, { fileId = "167005", - value = "swipeimpact.m2", text = "swipeimpact.m2", + value = "swipeimpact.m2", }, { fileId = "167006", - value = "symbolofhope_impact_base.m2", text = "symbolofhope_impact_base.m2", + value = "symbolofhope_impact_base.m2", }, { fileId = "167090", - value = "tankarda_spellobject.m2", text = "tankarda_spellobject.m2", + value = "tankarda_spellobject.m2", }, { fileId = "241094", - value = "tankardb_spellobject.m2", text = "tankardb_spellobject.m2", + value = "tankardb_spellobject.m2", }, { fileId = "167092", - value = "taunt_cast.m2", text = "taunt_cast.m2", + value = "taunt_cast.m2", }, { fileId = "167093", - value = "taunt_head.m2", text = "taunt_head.m2", + value = "taunt_head.m2", }, { fileId = "167094", - value = "teleport.m2", text = "teleport.m2", + value = "teleport.m2", }, { fileId = "167112", - value = "thorns_base.m2", text = "thorns_base.m2", + value = "thorns_base.m2", }, { fileId = "167113", - value = "thorns_damage_base.m2", text = "thorns_damage_base.m2", + value = "thorns_damage_base.m2", }, { fileId = "167114", - value = "thorns_low_chest.m2", text = "thorns_low_chest.m2", + value = "thorns_low_chest.m2", }, { fileId = "167115", - value = "thorns_state_base.m2", text = "thorns_state_base.m2", + value = "thorns_state_base.m2", }, { fileId = "167117", - value = "threatreduce_impact_head.m2", text = "threatreduce_impact_head.m2", + value = "threatreduce_impact_head.m2", }, { fileId = "167118", - value = "throatshot_impact_chest.m2", text = "throatshot_impact_chest.m2", + value = "throatshot_impact_chest.m2", }, { fileId = "167120", - value = "thunderclap_cast_base.m2", text = "thunderclap_cast_base.m2", + value = "thunderclap_cast_base.m2", }, { fileId = "167128", - value = "torch_missile.m2", text = "torch_missile.m2", + value = "torch_missile.m2", }, { fileId = "167129", - value = "torchlit.m2", text = "torchlit.m2", + value = "torchlit.m2", }, { fileId = "167130", - value = "torchspell.m2", text = "torchspell.m2", + value = "torchspell.m2", }, { fileId = "167132", - value = "totemb_spellobject.m2", text = "totemb_spellobject.m2", + value = "totemb_spellobject.m2", }, { fileId = "167134", - value = "tranquility_area.m2", text = "tranquility_area.m2", + value = "tranquility_area.m2", }, { fileId = "167135", - value = "tranquility_impact_base.m2", text = "tranquility_impact_base.m2", + value = "tranquility_impact_base.m2", }, { fileId = "167139", - value = "trickortreat_treat_head.m2", text = "trickortreat_treat_head.m2", + value = "trickortreat_treat_head.m2", }, { fileId = "167140", - value = "trickortreat_trick_head.m2", text = "trickortreat_trick_head.m2", + value = "trickortreat_trick_head.m2", }, { fileId = "167141", - value = "turnundead_impact.m2", text = "turnundead_impact.m2", + value = "turnundead_impact.m2", }, { fileId = "167143", - value = "undying_strength_impact_chest.m2", text = "undying_strength_impact_chest.m2", + value = "undying_strength_impact_chest.m2", }, { fileId = "167144", - value = "unholyshackles_state_base.m2", text = "unholyshackles_state_base.m2", + value = "unholyshackles_state_base.m2", }, { fileId = "167145", - value = "unitcube.m2", text = "unitcube.m2", + value = "unitcube.m2", }, { fileId = "167146", - value = "unstableaffliction_impact_chest.m2", text = "unstableaffliction_impact_chest.m2", + value = "unstableaffliction_impact_chest.m2", }, { fileId = "167147", - value = "unyielding_will_impact_chest.m2", text = "unyielding_will_impact_chest.m2", + value = "unyielding_will_impact_chest.m2", }, { fileId = "167148", - value = "valentinefirework.m2", text = "valentinefirework.m2", + value = "valentinefirework.m2", }, { fileId = "167150", - value = "vampiricembrace_state_base.m2", text = "vampiricembrace_state_base.m2", + value = "vampiricembrace_state_base.m2", }, { fileId = "167151", - value = "vanish_cast_base.m2", text = "vanish_cast_base.m2", + value = "vanish_cast_base.m2", }, { fileId = "167152", - value = "vengeance_state_hand.m2", text = "vengeance_state_hand.m2", + value = "vengeance_state_hand.m2", }, { fileId = "167153", - value = "victory_rush_impact.m2", text = "victory_rush_impact.m2", + value = "victory_rush_impact.m2", }, { fileId = "167174", - value = "waterbolt_missile_low.m2", text = "waterbolt_missile_low.m2", + value = "waterbolt_missile_low.m2", }, { fileId = "167175", - value = "waterbreathing_impact_base.m2", text = "waterbreathing_impact_base.m2", + value = "waterbreathing_impact_base.m2", }, { fileId = "167177", - value = "waterbubble.m2", text = "waterbubble.m2", + value = "waterbubble.m2", }, { fileId = "167178", - value = "waterelemental_impact_base.m2", text = "waterelemental_impact_base.m2", + value = "waterelemental_impact_base.m2", }, { fileId = "167179", - value = "waterelementallow_impact_base.m2", text = "waterelementallow_impact_base.m2", + value = "waterelementallow_impact_base.m2", }, { fileId = "167182", - value = "waterliquidbreath.m2", text = "waterliquidbreath.m2", + value = "waterliquidbreath.m2", }, { fileId = "167183", - value = "watershield_impact_base.m2", text = "watershield_impact_base.m2", + value = "watershield_impact_base.m2", }, { fileId = "167184", - value = "watershield_state_base.m2", text = "watershield_state_base.m2", + value = "watershield_state_base.m2", }, { fileId = "167186", - value = "watersteam_impact.m2", text = "watersteam_impact.m2", + value = "watersteam_impact.m2", }, { fileId = "167189", - value = "waterwalking_impact_head.m2", text = "waterwalking_impact_head.m2", + value = "waterwalking_impact_head.m2", }, { fileId = "167191", - value = "wave_water.m2", text = "wave_water.m2", + value = "wave_water.m2", }, { fileId = "167194", - value = "web_missile.m2", text = "web_missile.m2", + value = "web_missile.m2", }, { fileId = "167195", - value = "web_state.m2", text = "web_state.m2", + value = "web_state.m2", }, { fileId = "167196", - value = "webspin.m2", text = "webspin.m2", + value = "webspin.m2", }, { fileId = "167198", - value = "wellofsouls_base.m2", text = "wellofsouls_base.m2", + value = "wellofsouls_base.m2", }, { fileId = "167199", - value = "whirlwind_state_base.m2", text = "whirlwind_state_base.m2", + value = "whirlwind_state_base.m2", }, { fileId = "167200", - value = "whirlwindgeo1.m2", text = "whirlwindgeo1.m2", + value = "whirlwindgeo1.m2", }, { fileId = "167201", - value = "whirlwindgeo2.m2", text = "whirlwindgeo2.m2", + value = "whirlwindgeo2.m2", }, { fileId = "167202", - value = "whirlwindgeowhite.m2", text = "whirlwindgeowhite.m2", + value = "whirlwindgeowhite.m2", }, { fileId = "167206", - value = "whiteradiationfog.m2", text = "whiteradiationfog.m2", + value = "whiteradiationfog.m2", }, { fileId = "167211", - value = "wisdomaura_impact_base.m2", text = "wisdomaura_impact_base.m2", + value = "wisdomaura_impact_base.m2", }, { fileId = "167212", - value = "wrath_impact_chest.m2", text = "wrath_impact_chest.m2", + value = "wrath_impact_chest.m2", }, { fileId = "167213", - value = "wrath_missile.m2", text = "wrath_missile.m2", + value = "wrath_missile.m2", }, { fileId = "167214", - value = "wrath_precast_hand.m2", text = "wrath_precast_hand.m2", + value = "wrath_precast_hand.m2", }, { fileId = "167224", - value = "zangarmarsh_arcane_impact.m2", text = "zangarmarsh_arcane_impact.m2", + value = "zangarmarsh_arcane_impact.m2", }, { fileId = "167225", - value = "zangarmarsh_arcane_missile.m2", text = "zangarmarsh_arcane_missile.m2", + value = "zangarmarsh_arcane_missile.m2", }, { fileId = "167229", - value = "zig_missile.m2", text = "zig_missile.m2", + value = "zig_missile.m2", }, }, - value = "spells", text = "spells", + value = "spells", }, { children = { @@ -39085,16 +39096,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "2353357", - value = "boartest.m2", text = "boartest.m2", + value = "boartest.m2", }, }, - value = "boartest", text = "boartest", + value = "boartest", }, }, - value = "test", text = "test", + value = "test", }, { children = { @@ -39104,16 +39115,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "189077", - value = "xyz.m2", text = "xyz.m2", + value = "xyz.m2", }, }, - value = "boxtest", text = "boxtest", + value = "boxtest", }, }, - value = "arttest", text = "arttest", + value = "arttest", }, { children = { @@ -39125,121 +39136,121 @@ WeakAuras.ModelPaths = { children = { { fileId = "189079", - value = "bootybayentrance_02.m2", text = "bootybayentrance_02.m2", + value = "bootybayentrance_02.m2", }, }, - value = "bootyentrance", text = "bootyentrance", + value = "bootyentrance", }, { children = { { fileId = "189085", - value = "fishdeadblue.m2", text = "fishdeadblue.m2", + value = "fishdeadblue.m2", }, { fileId = "189086", - value = "fishdeadgreen.m2", text = "fishdeadgreen.m2", + value = "fishdeadgreen.m2", }, { fileId = "189087", - value = "fishdeadorange.m2", text = "fishdeadorange.m2", + value = "fishdeadorange.m2", }, { fileId = "189088", - value = "fishdeadpurple.m2", text = "fishdeadpurple.m2", + value = "fishdeadpurple.m2", }, { fileId = "189089", - value = "fishfrenzyblue.m2", text = "fishfrenzyblue.m2", + value = "fishfrenzyblue.m2", }, { fileId = "189090", - value = "fishfrenzygreen.m2", text = "fishfrenzygreen.m2", + value = "fishfrenzygreen.m2", }, { fileId = "189091", - value = "fishrack.m2", text = "fishrack.m2", + value = "fishrack.m2", }, }, - value = "deadfish", text = "deadfish", + value = "deadfish", }, { children = { { fileId = "189092", - value = "fishingbox.m2", text = "fishingbox.m2", + value = "fishingbox.m2", }, }, - value = "fishingbox", text = "fishingbox", + value = "fishingbox", }, { children = { { fileId = "189093", - value = "fishingpole01.m2", text = "fishingpole01.m2", + value = "fishingpole01.m2", }, { fileId = "189094", - value = "fishingpole02.m2", text = "fishingpole02.m2", + value = "fishingpole02.m2", }, }, - value = "fishingpoles", text = "fishingpoles", + value = "fishingpoles", }, { children = { { fileId = "189095", - value = "goblinstatuebooty.m2", text = "goblinstatuebooty.m2", + value = "goblinstatuebooty.m2", }, }, - value = "goblinstatue", text = "goblinstatue", + value = "goblinstatue", }, { children = { { fileId = "189097", - value = "harpoon01.m2", text = "harpoon01.m2", + value = "harpoon01.m2", }, }, - value = "harpoons", text = "harpoons", + value = "harpoons", }, { children = { { fileId = "189099", - value = "sharkmodel01.m2", text = "sharkmodel01.m2", + value = "sharkmodel01.m2", }, }, - value = "sharkmodels", text = "sharkmodels", + value = "sharkmodels", }, }, - value = "passivedoodad", text = "passivedoodad", + value = "passivedoodad", }, }, - value = "bootybay", text = "bootybay", + value = "bootybay", }, { children = { @@ -39249,21 +39260,21 @@ WeakAuras.ModelPaths = { children = { { fileId = "189103", - value = "darkironnode.m2", text = "darkironnode.m2", + value = "darkironnode.m2", }, { fileId = "189104", - value = "darkironnodeparticlerock.m2", text = "darkironnodeparticlerock.m2", + value = "darkironnodeparticlerock.m2", }, }, - value = "darkironnode", text = "darkironnode", + value = "darkironnode", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -39271,687 +39282,687 @@ WeakAuras.ModelPaths = { children = { { fileId = "189105", - value = "deadheadboar.m2", text = "deadheadboar.m2", + value = "deadheadboar.m2", }, { fileId = "189106", - value = "deadheaddeer.m2", text = "deadheaddeer.m2", + value = "deadheaddeer.m2", }, }, - value = "animalheads", text = "animalheads", + value = "animalheads", }, { children = { { fileId = "189110", - value = "ashpeople01.m2", text = "ashpeople01.m2", + value = "ashpeople01.m2", }, { fileId = "189112", - value = "ashpeople02.m2", text = "ashpeople02.m2", + value = "ashpeople02.m2", }, { fileId = "189113", - value = "ashpeople03.m2", text = "ashpeople03.m2", + value = "ashpeople03.m2", }, { fileId = "189114", - value = "ashpeople04.m2", text = "ashpeople04.m2", + value = "ashpeople04.m2", }, { fileId = "189115", - value = "ashpeople05.m2", text = "ashpeople05.m2", + value = "ashpeople05.m2", }, }, - value = "ashpeople", text = "ashpeople", + value = "ashpeople", }, { children = { { fileId = "189118", - value = "orcbonfire.m2", text = "orcbonfire.m2", + value = "orcbonfire.m2", }, { fileId = "189119", - value = "orcbonfire_blue.m2", text = "orcbonfire_blue.m2", + value = "orcbonfire_blue.m2", }, { fileId = "189120", - value = "orcbonfireoff.m2", text = "orcbonfireoff.m2", + value = "orcbonfireoff.m2", }, }, - value = "bonfire", text = "bonfire", + value = "bonfire", }, { children = { { fileId = "189124", - value = "burningropebridge.m2", text = "burningropebridge.m2", + value = "burningropebridge.m2", }, }, - value = "bridges", text = "bridges", + value = "bridges", }, { children = { { fileId = "189126", - value = "burninggiantwheel.m2", text = "burninggiantwheel.m2", + value = "burninggiantwheel.m2", }, }, - value = "burninggiantwheel", text = "burninggiantwheel", + value = "burninggiantwheel", }, { children = { { fileId = "189127", - value = "burningsteppscliffrock01.m2", text = "burningsteppscliffrock01.m2", + value = "burningsteppscliffrock01.m2", }, { fileId = "189128", - value = "burningsteppscliffrock02.m2", text = "burningsteppscliffrock02.m2", + value = "burningsteppscliffrock02.m2", }, { fileId = "189129", - value = "burningsteppscliffrock03.m2", text = "burningsteppscliffrock03.m2", + value = "burningsteppscliffrock03.m2", }, { fileId = "189130", - value = "burningsteppscliffrock04.m2", text = "burningsteppscliffrock04.m2", + value = "burningsteppscliffrock04.m2", }, { fileId = "189131", - value = "burningsteppscliffrock05.m2", text = "burningsteppscliffrock05.m2", + value = "burningsteppscliffrock05.m2", }, { fileId = "189132", - value = "burningsteppscliffrock06.m2", text = "burningsteppscliffrock06.m2", + value = "burningsteppscliffrock06.m2", }, }, - value = "cliffrocks", text = "cliffrocks", + value = "cliffrocks", }, { children = { { fileId = "189134", - value = "fallingembers.m2", text = "fallingembers.m2", + value = "fallingembers.m2", }, }, - value = "fallingembers", text = "fallingembers", + value = "fallingembers", }, { children = { { fileId = "189135", - value = "burningsteppesfence.m2", text = "burningsteppesfence.m2", + value = "burningsteppesfence.m2", }, { fileId = "189136", - value = "burningsteppesfencechain.m2", text = "burningsteppesfencechain.m2", + value = "burningsteppesfencechain.m2", }, { fileId = "189137", - value = "burningsteppesfencepost.m2", text = "burningsteppesfencepost.m2", + value = "burningsteppesfencepost.m2", }, }, - value = "fences", text = "fences", + value = "fences", }, { children = { { fileId = "189141", - value = "lavaaltar.m2", text = "lavaaltar.m2", + value = "lavaaltar.m2", }, }, - value = "lavaaltar", text = "lavaaltar", + value = "lavaaltar", }, { children = { { fileId = "189147", - value = "lavabridge.m2", text = "lavabridge.m2", + value = "lavabridge.m2", }, }, - value = "lavabridge", text = "lavabridge", + value = "lavabridge", }, { children = { { fileId = "189151", - value = "lavafallsblackrock01.m2", text = "lavafallsblackrock01.m2", + value = "lavafallsblackrock01.m2", }, { fileId = "189152", - value = "lavafallsblackrock02.m2", text = "lavafallsblackrock02.m2", + value = "lavafallsblackrock02.m2", }, { fileId = "189153", - value = "lavafallsblackrock03.m2", text = "lavafallsblackrock03.m2", + value = "lavafallsblackrock03.m2", }, { fileId = "189154", - value = "lavafallsblackrock04.m2", text = "lavafallsblackrock04.m2", + value = "lavafallsblackrock04.m2", }, }, - value = "lavafalls", text = "lavafalls", + value = "lavafalls", }, { children = { { fileId = "189158", - value = "lavapillar01.m2", text = "lavapillar01.m2", + value = "lavapillar01.m2", }, { fileId = "189159", - value = "lavapillar02.m2", text = "lavapillar02.m2", + value = "lavapillar02.m2", }, { fileId = "189160", - value = "lavapillar03.m2", text = "lavapillar03.m2", + value = "lavapillar03.m2", }, { fileId = "189161", - value = "lavapillar04.m2", text = "lavapillar04.m2", + value = "lavapillar04.m2", }, }, - value = "lavapillar", text = "lavapillar", + value = "lavapillar", }, { children = { { fileId = "189165", - value = "lavaplug01.m2", text = "lavaplug01.m2", + value = "lavaplug01.m2", }, { fileId = "189166", - value = "lavaplug02.m2", text = "lavaplug02.m2", + value = "lavaplug02.m2", }, }, - value = "lavaplugs", text = "lavaplugs", + value = "lavaplugs", }, { children = { { fileId = "189170", - value = "lavashrine01.m2", text = "lavashrine01.m2", + value = "lavashrine01.m2", }, { fileId = "189171", - value = "lavashrine02.m2", text = "lavashrine02.m2", + value = "lavashrine02.m2", }, { fileId = "189172", - value = "lavashrine03.m2", text = "lavashrine03.m2", + value = "lavashrine03.m2", }, { fileId = "189173", - value = "lavashrine04.m2", text = "lavashrine04.m2", + value = "lavashrine04.m2", }, { fileId = "189178", - value = "searinggorgelavashrine.m2", text = "searinggorgelavashrine.m2", + value = "searinggorgelavashrine.m2", }, }, - value = "lavashrine", text = "lavashrine", + value = "lavashrine", }, { children = { { fileId = "189179", - value = "lotharstatue.m2", text = "lotharstatue.m2", + value = "lotharstatue.m2", }, }, - value = "lotharstatue", text = "lotharstatue", + value = "lotharstatue", }, { children = { { fileId = "189180", - value = "ogreheadpike.m2", text = "ogreheadpike.m2", + value = "ogreheadpike.m2", }, }, - value = "ogreheadpike", text = "ogreheadpike", + value = "ogreheadpike", }, { children = { { fileId = "189186", - value = "orcanvilstoneburningsteppes.m2", text = "orcanvilstoneburningsteppes.m2", + value = "orcanvilstoneburningsteppes.m2", }, }, - value = "orcanvilstoneburningsteppes", text = "orcanvilstoneburningsteppes", + value = "orcanvilstoneburningsteppes", }, { children = { { fileId = "189187", - value = "orcstoneburialpyre.m2", text = "orcstoneburialpyre.m2", + value = "orcstoneburialpyre.m2", }, { fileId = "189188", - value = "orcstoneburialpyrebody.m2", text = "orcstoneburialpyrebody.m2", + value = "orcstoneburialpyrebody.m2", }, }, - value = "orcburialpyres", text = "orcburialpyres", + value = "orcburialpyres", }, { children = { { fileId = "189193", - value = "orcsmallfoundrypit.m2", text = "orcsmallfoundrypit.m2", + value = "orcsmallfoundrypit.m2", }, }, - value = "orcfoundrypit", text = "orcfoundrypit", + value = "orcfoundrypit", }, { children = { { fileId = "189196", - value = "orcsleepmat01.m2", text = "orcsleepmat01.m2", + value = "orcsleepmat01.m2", }, { fileId = "189197", - value = "orcsleepmat02.m2", text = "orcsleepmat02.m2", + value = "orcsleepmat02.m2", }, { fileId = "189198", - value = "orcsleepmat03.m2", text = "orcsleepmat03.m2", + value = "orcsleepmat03.m2", }, }, - value = "orcsleepmats", text = "orcsleepmats", + value = "orcsleepmats", }, { children = { { fileId = "189200", - value = "orctent.m2", text = "orctent.m2", + value = "orctent.m2", }, }, - value = "orctents", text = "orctents", + value = "orctents", }, { children = { { fileId = "189204", - value = "orctoolrackburningsteppes.m2", text = "orctoolrackburningsteppes.m2", + value = "orctoolrackburningsteppes.m2", }, }, - value = "orctoolrackburningsteppes", text = "orctoolrackburningsteppes", + value = "orctoolrackburningsteppes", }, { children = { { fileId = "189208", - value = "pentagramdirt.m2", text = "pentagramdirt.m2", + value = "pentagramdirt.m2", }, }, - value = "pentagramdirt", text = "pentagramdirt", + value = "pentagramdirt", }, { children = { { fileId = "189212", - value = "burningsteppesboulders01.m2", text = "burningsteppesboulders01.m2", + value = "burningsteppesboulders01.m2", }, { fileId = "189213", - value = "burningsteppesboulders02.m2", text = "burningsteppesboulders02.m2", + value = "burningsteppesboulders02.m2", }, { fileId = "189214", - value = "burningsteppesboulders03.m2", text = "burningsteppesboulders03.m2", + value = "burningsteppesboulders03.m2", }, { fileId = "189215", - value = "burningsteppesboulders04.m2", text = "burningsteppesboulders04.m2", + value = "burningsteppesboulders04.m2", }, { fileId = "189216", - value = "burningsteppesboulders05.m2", text = "burningsteppesboulders05.m2", + value = "burningsteppesboulders05.m2", }, { fileId = "189217", - value = "burningsteppesboulders06.m2", text = "burningsteppesboulders06.m2", + value = "burningsteppesboulders06.m2", }, { fileId = "189218", - value = "lavarock01.m2", text = "lavarock01.m2", + value = "lavarock01.m2", }, { fileId = "189219", - value = "lavarock02.m2", text = "lavarock02.m2", + value = "lavarock02.m2", }, { fileId = "189220", - value = "lavarock03.m2", text = "lavarock03.m2", + value = "lavarock03.m2", }, { fileId = "189221", - value = "lavarock04.m2", text = "lavarock04.m2", + value = "lavarock04.m2", }, { fileId = "189222", - value = "lavarock05.m2", text = "lavarock05.m2", + value = "lavarock05.m2", }, { fileId = "189223", - value = "lavarock06.m2", text = "lavarock06.m2", + value = "lavarock06.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "189226", - value = "burnedbeam.m2", text = "burnedbeam.m2", + value = "burnedbeam.m2", }, }, - value = "ruins", text = "ruins", + value = "ruins", }, { children = { { fileId = "189229", - value = "smeltingcauldron.m2", text = "smeltingcauldron.m2", + value = "smeltingcauldron.m2", }, }, - value = "smeltingcauldron", text = "smeltingcauldron", + value = "smeltingcauldron", }, { children = { { fileId = "189232", - value = "smeltingweapons.m2", text = "smeltingweapons.m2", + value = "smeltingweapons.m2", }, }, - value = "smeltingweapons", text = "smeltingweapons", + value = "smeltingweapons", }, { children = { { fileId = "189233", - value = "ashtreesmoke01.m2", text = "ashtreesmoke01.m2", + value = "ashtreesmoke01.m2", }, }, - value = "smoke", text = "smoke", + value = "smoke", }, { children = { { fileId = "189236", - value = "stoneblock01.m2", text = "stoneblock01.m2", + value = "stoneblock01.m2", }, { fileId = "189237", - value = "stonebracket01.m2", text = "stonebracket01.m2", + value = "stonebracket01.m2", }, { fileId = "189238", - value = "stonebracket02.m2", text = "stonebracket02.m2", + value = "stonebracket02.m2", }, { fileId = "189239", - value = "stonebracket03.m2", text = "stonebracket03.m2", + value = "stonebracket03.m2", }, }, - value = "stonebrackets", text = "stonebrackets", + value = "stonebrackets", }, { children = { { fileId = "189240", - value = "stonegolemstatue1-9.m2", text = "stonegolemstatue1-9.m2", + value = "stonegolemstatue1-9.m2", }, { fileId = "189241", - value = "stonegolemstatue2-9.m2", text = "stonegolemstatue2-9.m2", + value = "stonegolemstatue2-9.m2", }, { fileId = "189242", - value = "stonegolemstatue3-9.m2", text = "stonegolemstatue3-9.m2", + value = "stonegolemstatue3-9.m2", }, { fileId = "189243", - value = "stonegolemstatue4-9.m2", text = "stonegolemstatue4-9.m2", + value = "stonegolemstatue4-9.m2", }, { fileId = "189244", - value = "stonegolemstatue5-9.m2", text = "stonegolemstatue5-9.m2", + value = "stonegolemstatue5-9.m2", }, { fileId = "189245", - value = "stonegolemstatue6-9.m2", text = "stonegolemstatue6-9.m2", + value = "stonegolemstatue6-9.m2", }, { fileId = "189246", - value = "stonegolemstatue7-9.m2", text = "stonegolemstatue7-9.m2", + value = "stonegolemstatue7-9.m2", }, { fileId = "189247", - value = "stonegolemstatue8-9.m2", text = "stonegolemstatue8-9.m2", + value = "stonegolemstatue8-9.m2", }, { fileId = "189248", - value = "stonegolemstatue9-9.m2", text = "stonegolemstatue9-9.m2", + value = "stonegolemstatue9-9.m2", }, }, - value = "stonegolemstatue", text = "stonegolemstatue", + value = "stonegolemstatue", }, { children = { { fileId = "189253", - value = "ashtree01.m2", text = "ashtree01.m2", + value = "ashtree01.m2", }, { fileId = "189254", - value = "ashtree02.m2", text = "ashtree02.m2", + value = "ashtree02.m2", }, { fileId = "189255", - value = "ashtree03.m2", text = "ashtree03.m2", + value = "ashtree03.m2", }, { fileId = "189258", - value = "burningmidtree01.m2", text = "burningmidtree01.m2", + value = "burningmidtree01.m2", }, { fileId = "189260", - value = "burningmidtree02.m2", text = "burningmidtree02.m2", + value = "burningmidtree02.m2", }, { fileId = "189262", - value = "burningmidtree03.m2", text = "burningmidtree03.m2", + value = "burningmidtree03.m2", }, { fileId = "189263", - value = "burningmidtree04.m2", text = "burningmidtree04.m2", + value = "burningmidtree04.m2", }, { fileId = "189264", - value = "burningsteppestree01.m2", text = "burningsteppestree01.m2", + value = "burningsteppestree01.m2", }, { fileId = "189265", - value = "burningsteppestree02.m2", text = "burningsteppestree02.m2", + value = "burningsteppestree02.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "189270", - value = "volcanicventlarge01.m2", text = "volcanicventlarge01.m2", + value = "volcanicventlarge01.m2", }, { fileId = "189271", - value = "volcanicventlargeoff01.m2", text = "volcanicventlargeoff01.m2", + value = "volcanicventlargeoff01.m2", }, { fileId = "189272", - value = "volcanicventmed01.m2", text = "volcanicventmed01.m2", + value = "volcanicventmed01.m2", }, { fileId = "189273", - value = "volcanicventmedoff01.m2", text = "volcanicventmedoff01.m2", + value = "volcanicventmedoff01.m2", }, { fileId = "189274", - value = "volcanicventsmall01.m2", text = "volcanicventsmall01.m2", + value = "volcanicventsmall01.m2", }, { fileId = "189275", - value = "volcanicventsmalloff01.m2", text = "volcanicventsmalloff01.m2", + value = "volcanicventsmalloff01.m2", }, }, - value = "volcanicvents", text = "volcanicvents", + value = "volcanicvents", }, { children = { { fileId = "189280", - value = "warlockshrine.m2", text = "warlockshrine.m2", + value = "warlockshrine.m2", }, }, - value = "warlockshrine", text = "warlockshrine", + value = "warlockshrine", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "burningsteppes", text = "burningsteppes", + value = "burningsteppes", }, { children = { @@ -39961,25 +39972,25 @@ WeakAuras.ModelPaths = { children = { { fileId = "189282", - value = "goblinmeltingpot.m2", text = "goblinmeltingpot.m2", + value = "goblinmeltingpot.m2", }, }, - value = "goblinmeltingpot", text = "goblinmeltingpot", + value = "goblinmeltingpot", }, { fileId = "189287", - value = "lavasink.m2", text = "lavasink.m2", + value = "lavasink.m2", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "deadmines", text = "deadmines", + value = "deadmines", }, { children = { @@ -39989,27 +40000,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "189288", - value = "abandonedhumanguardtower.m2", text = "abandonedhumanguardtower.m2", + value = "abandonedhumanguardtower.m2", }, }, - value = "abandonedguardtower", text = "abandonedguardtower", + value = "abandonedguardtower", }, { children = { { fileId = "189292", - value = "deadwindrockbridge.m2", text = "deadwindrockbridge.m2", + value = "deadwindrockbridge.m2", }, }, - value = "rockbridge", text = "rockbridge", + value = "rockbridge", }, }, - value = "buildings", text = "buildings", + value = "buildings", }, { children = { @@ -40017,263 +40028,263 @@ WeakAuras.ModelPaths = { children = { { fileId = "189294", - value = "deadwindtotem01.m2", text = "deadwindtotem01.m2", + value = "deadwindtotem01.m2", }, { fileId = "189295", - value = "deadwindtotem02.m2", text = "deadwindtotem02.m2", + value = "deadwindtotem02.m2", }, { fileId = "189296", - value = "deadwindtotem03.m2", text = "deadwindtotem03.m2", + value = "deadwindtotem03.m2", }, { fileId = "189297", - value = "deadwindtotem04.m2", text = "deadwindtotem04.m2", + value = "deadwindtotem04.m2", }, }, - value = "deadwindtotems", text = "deadwindtotems", + value = "deadwindtotems", }, { children = { { fileId = "189299", - value = "deadwindhangingbody01.m2", text = "deadwindhangingbody01.m2", + value = "deadwindhangingbody01.m2", }, { fileId = "189300", - value = "deadwindhangingbody02.m2", text = "deadwindhangingbody02.m2", + value = "deadwindhangingbody02.m2", }, }, - value = "hangingbodies", text = "hangingbodies", + value = "hangingbodies", }, { children = { { fileId = "189304", - value = "deadwindhangingtree.m2", text = "deadwindhangingtree.m2", + value = "deadwindhangingtree.m2", }, }, - value = "hangingtree", text = "hangingtree", + value = "hangingtree", }, { children = { { fileId = "189307", - value = "kharazan_brick.m2", text = "kharazan_brick.m2", + value = "kharazan_brick.m2", }, }, - value = "kharazan_brick", text = "kharazan_brick", + value = "kharazan_brick", }, { children = { { fileId = "189308", - value = "deadwindpasscliffrock01dnr.m2", text = "deadwindpasscliffrock01dnr.m2", + value = "deadwindpasscliffrock01dnr.m2", }, { fileId = "189309", - value = "deadwindpasscliffrock02dnr.m2", text = "deadwindpasscliffrock02dnr.m2", + value = "deadwindpasscliffrock02dnr.m2", }, { fileId = "189310", - value = "deadwindpasscliffrock03dnr.m2", text = "deadwindpasscliffrock03dnr.m2", + value = "deadwindpasscliffrock03dnr.m2", }, { fileId = "189311", - value = "deadwindpasscliffrock04dnr.m2", text = "deadwindpasscliffrock04dnr.m2", + value = "deadwindpasscliffrock04dnr.m2", }, { fileId = "189312", - value = "deadwindpasscliffrock05dnr.m2", text = "deadwindpasscliffrock05dnr.m2", + value = "deadwindpasscliffrock05dnr.m2", }, { fileId = "189313", - value = "deadwindpassgroundrock01dnr.m2", text = "deadwindpassgroundrock01dnr.m2", + value = "deadwindpassgroundrock01dnr.m2", }, { fileId = "189314", - value = "deadwindpassgroundrock02dnr.m2", text = "deadwindpassgroundrock02dnr.m2", + value = "deadwindpassgroundrock02dnr.m2", }, { fileId = "189315", - value = "deadwindpassgroundrock03dnr.m2", text = "deadwindpassgroundrock03dnr.m2", + value = "deadwindpassgroundrock03dnr.m2", }, { fileId = "189316", - value = "rockarch01dnr.m2", text = "rockarch01dnr.m2", + value = "rockarch01dnr.m2", }, { fileId = "189317", - value = "rockarch02dnr.m2", text = "rockarch02dnr.m2", + value = "rockarch02dnr.m2", }, { fileId = "189318", - value = "rockarch03dnr.m2", text = "rockarch03dnr.m2", + value = "rockarch03dnr.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "189319", - value = "deadwindpassrocktree01.m2", text = "deadwindpassrocktree01.m2", + value = "deadwindpassrocktree01.m2", }, { fileId = "189322", - value = "deadwindpassrocktree02.m2", text = "deadwindpassrocktree02.m2", + value = "deadwindpassrocktree02.m2", }, { fileId = "189324", - value = "deadwindpassrocktree03.m2", text = "deadwindpassrocktree03.m2", + value = "deadwindpassrocktree03.m2", }, { fileId = "189325", - value = "deadwindpassrocktree04.m2", text = "deadwindpassrocktree04.m2", + value = "deadwindpassrocktree04.m2", }, { fileId = "189326", - value = "deadwindpassrocktree05.m2", text = "deadwindpassrocktree05.m2", + value = "deadwindpassrocktree05.m2", }, { fileId = "189327", - value = "deadwindpassrocktree06.m2", text = "deadwindpassrocktree06.m2", + value = "deadwindpassrocktree06.m2", }, { fileId = "189328", - value = "deadwindpassrocktreebroken01.m2", text = "deadwindpassrocktreebroken01.m2", + value = "deadwindpassrocktreebroken01.m2", }, { fileId = "189329", - value = "deadwindpassrocktreebroken02.m2", text = "deadwindpassrocktreebroken02.m2", + value = "deadwindpassrocktreebroken02.m2", }, { fileId = "189330", - value = "deadwindpassrocktreebroken03.m2", text = "deadwindpassrocktreebroken03.m2", + value = "deadwindpassrocktreebroken03.m2", }, }, - value = "rocktrees", text = "rocktrees", + value = "rocktrees", }, { children = { { fileId = "189335", - value = "deadwindpassroot01.m2", text = "deadwindpassroot01.m2", + value = "deadwindpassroot01.m2", }, }, - value = "roots", text = "roots", + value = "roots", }, { children = { { fileId = "189336", - value = "deadwindpassmidtree01.m2", text = "deadwindpassmidtree01.m2", + value = "deadwindpassmidtree01.m2", }, { fileId = "189337", - value = "deadwindpassmidtree02.m2", text = "deadwindpassmidtree02.m2", + value = "deadwindpassmidtree02.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "189344", - value = "deadwindhangingweedsgroup01.m2", text = "deadwindhangingweedsgroup01.m2", + value = "deadwindhangingweedsgroup01.m2", }, { fileId = "189345", - value = "deadwindhangingweedsgroup02.m2", text = "deadwindhangingweedsgroup02.m2", + value = "deadwindhangingweedsgroup02.m2", }, { fileId = "189346", - value = "deadwindhangingweedsgroup03.m2", text = "deadwindhangingweedsgroup03.m2", + value = "deadwindhangingweedsgroup03.m2", }, { fileId = "189347", - value = "deadwindhangingweedslarge01.m2", text = "deadwindhangingweedslarge01.m2", + value = "deadwindhangingweedslarge01.m2", }, { fileId = "189348", - value = "deadwindhangingweedslarge02.m2", text = "deadwindhangingweedslarge02.m2", + value = "deadwindhangingweedslarge02.m2", }, { fileId = "189349", - value = "deadwindhangingweedssmall01.m2", text = "deadwindhangingweedssmall01.m2", + value = "deadwindhangingweedssmall01.m2", }, { fileId = "189350", - value = "deadwindhangingweedssmall02.m2", text = "deadwindhangingweedssmall02.m2", + value = "deadwindhangingweedssmall02.m2", }, { fileId = "189351", - value = "deadwindhangingweedssmall03.m2", text = "deadwindhangingweedssmall03.m2", + value = "deadwindhangingweedssmall03.m2", }, { fileId = "189352", - value = "deadwindhangingweedssmall04.m2", text = "deadwindhangingweedssmall04.m2", + value = "deadwindhangingweedssmall04.m2", }, }, - value = "weeds", text = "weeds", + value = "weeds", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "deadwindpass", text = "deadwindpass", + value = "deadwindpass", }, { children = { @@ -40283,43 +40294,43 @@ WeakAuras.ModelPaths = { children = { { fileId = "189359", - value = "gnolltent02.m2", text = "gnolltent02.m2", + value = "gnolltent02.m2", }, { fileId = "189361", - value = "gnolltent03.m2", text = "gnolltent03.m2", + value = "gnolltent03.m2", }, }, - value = "gnolltent", text = "gnolltent", + value = "gnolltent", }, { children = { { fileId = "189375", - value = "gypsywagon.m2", text = "gypsywagon.m2", + value = "gypsywagon.m2", }, }, - value = "gypsywagon", text = "gypsywagon", + value = "gypsywagon", }, { children = { { fileId = "189386", - value = "ogremound.m2", text = "ogremound.m2", + value = "ogremound.m2", }, }, - value = "ogremound", text = "ogremound", + value = "ogremound", }, }, - value = "buildings", text = "buildings", + value = "buildings", }, { children = { @@ -40327,127 +40338,127 @@ WeakAuras.ModelPaths = { children = { { fileId = "189395", - value = "duskwoodbush01.m2", text = "duskwoodbush01.m2", + value = "duskwoodbush01.m2", }, { fileId = "189396", - value = "duskwoodbush02.m2", text = "duskwoodbush02.m2", + value = "duskwoodbush02.m2", }, { fileId = "189397", - value = "duskwoodbush03.m2", text = "duskwoodbush03.m2", + value = "duskwoodbush03.m2", }, { fileId = "189398", - value = "duskwoodbush04.m2", text = "duskwoodbush04.m2", + value = "duskwoodbush04.m2", }, { fileId = "189399", - value = "duskwoodbush05.m2", text = "duskwoodbush05.m2", + value = "duskwoodbush05.m2", }, { fileId = "189400", - value = "duskwoodbush06.m2", text = "duskwoodbush06.m2", + value = "duskwoodbush06.m2", }, { fileId = "189402", - value = "duskwoodbush07.m2", text = "duskwoodbush07.m2", + value = "duskwoodbush07.m2", }, { fileId = "189405", - value = "duskwoodspookybush01.m2", text = "duskwoodspookybush01.m2", + value = "duskwoodspookybush01.m2", }, { fileId = "189406", - value = "duskwoodspookybush02.m2", text = "duskwoodspookybush02.m2", + value = "duskwoodspookybush02.m2", }, { fileId = "189407", - value = "duskwoodspookybush03.m2", text = "duskwoodspookybush03.m2", + value = "duskwoodspookybush03.m2", }, { fileId = "189408", - value = "duskwoodspookybush04.m2", text = "duskwoodspookybush04.m2", + value = "duskwoodspookybush04.m2", }, { fileId = "189409", - value = "pumpkin01.m2", text = "pumpkin01.m2", + value = "pumpkin01.m2", }, { fileId = "189410", - value = "pumpkinpatch01.m2", text = "pumpkinpatch01.m2", + value = "pumpkinpatch01.m2", }, }, - value = "bush", text = "bush", + value = "bush", }, { children = { { fileId = "189411", - value = "duskwoodchasmbridge.m2", text = "duskwoodchasmbridge.m2", + value = "duskwoodchasmbridge.m2", }, }, - value = "chasmbridge", text = "chasmbridge", + value = "chasmbridge", }, { children = { { fileId = "189415", - value = "coffin.m2", text = "coffin.m2", + value = "coffin.m2", }, }, - value = "coffin", text = "coffin", + value = "coffin", }, { children = { { fileId = "189416", - value = "coffinlid.m2", text = "coffinlid.m2", + value = "coffinlid.m2", }, }, - value = "coffinlid", text = "coffinlid", + value = "coffinlid", }, { children = { { fileId = "189417", - value = "duskwoodcoveredbridge.m2", text = "duskwoodcoveredbridge.m2", + value = "duskwoodcoveredbridge.m2", }, }, - value = "coveredbridge", text = "coveredbridge", + value = "coveredbridge", }, { children = { { fileId = "189423", - value = "darkshireentrance01.m2", text = "darkshireentrance01.m2", + value = "darkshireentrance01.m2", }, }, - value = "darkshireentrance", text = "darkshireentrance", + value = "darkshireentrance", }, { children = { @@ -40455,645 +40466,645 @@ WeakAuras.ModelPaths = { children = { { fileId = "189426", - value = "duskwoodcatails01.m2", text = "duskwoodcatails01.m2", + value = "duskwoodcatails01.m2", }, }, - value = "duskwoodcatails01", text = "duskwoodcatails01", + value = "duskwoodcatails01", }, { children = { { fileId = "189427", - value = "duskwoodgrass01.m2", text = "duskwoodgrass01.m2", + value = "duskwoodgrass01.m2", }, }, - value = "duskwoodgrass01", text = "duskwoodgrass01", + value = "duskwoodgrass01", }, { children = { { fileId = "189429", - value = "duskwoodlillypad01.m2", text = "duskwoodlillypad01.m2", + value = "duskwoodlillypad01.m2", }, }, - value = "duskwoodlillypad01", text = "duskwoodlillypad01", + value = "duskwoodlillypad01", }, { children = { { fileId = "189432", - value = "duskwoodmushroom01.m2", text = "duskwoodmushroom01.m2", + value = "duskwoodmushroom01.m2", }, }, - value = "duskwoodmushroom01", text = "duskwoodmushroom01", + value = "duskwoodmushroom01", }, { children = { { fileId = "189434", - value = "duskwoodseaweed01.m2", text = "duskwoodseaweed01.m2", + value = "duskwoodseaweed01.m2", }, }, - value = "duskwoodseaweed01", text = "duskwoodseaweed01", + value = "duskwoodseaweed01", }, { children = { { fileId = "189437", - value = "duskwoodthornbush01.m2", text = "duskwoodthornbush01.m2", + value = "duskwoodthornbush01.m2", }, }, - value = "duskwoodthornbush01", text = "duskwoodthornbush01", + value = "duskwoodthornbush01", }, { children = { { fileId = "189438", - value = "duskwoodthornbush02.m2", text = "duskwoodthornbush02.m2", + value = "duskwoodthornbush02.m2", }, }, - value = "duskwoodthornbush02", text = "duskwoodthornbush02", + value = "duskwoodthornbush02", }, { children = { { fileId = "189440", - value = "duskwoodvine01.m2", text = "duskwoodvine01.m2", + value = "duskwoodvine01.m2", }, }, - value = "duskwoodvine01", text = "duskwoodvine01", + value = "duskwoodvine01", }, { children = { { fileId = "189442", - value = "duskwoodvine02.m2", text = "duskwoodvine02.m2", + value = "duskwoodvine02.m2", }, }, - value = "duskwoodvine02", text = "duskwoodvine02", + value = "duskwoodvine02", }, }, - value = "detail", text = "detail", + value = "detail", }, { children = { { fileId = "189445", - value = "barnduskwood.m2", text = "barnduskwood.m2", + value = "barnduskwood.m2", }, }, - value = "duskwoodbarn", text = "duskwoodbarn", + value = "duskwoodbarn", }, { children = { { fileId = "189452", - value = "duskwoodhaystack.m2", text = "duskwoodhaystack.m2", + value = "duskwoodhaystack.m2", }, }, - value = "duskwoodhaystack", text = "duskwoodhaystack", + value = "duskwoodhaystack", }, { children = { { fileId = "189455", - value = "duskwoodhaywagon.m2", text = "duskwoodhaywagon.m2", + value = "duskwoodhaywagon.m2", }, }, - value = "duskwoodhaywagon", text = "duskwoodhaywagon", + value = "duskwoodhaywagon", }, { children = { { fileId = "189457", - value = "duskwoodhearse.m2", text = "duskwoodhearse.m2", + value = "duskwoodhearse.m2", }, }, - value = "duskwoodhearse", text = "duskwoodhearse", + value = "duskwoodhearse", }, { children = { { fileId = "189458", - value = "duskscarecrow.m2", text = "duskscarecrow.m2", + value = "duskscarecrow.m2", }, }, - value = "duskwoodscarecrow", text = "duskwoodscarecrow", + value = "duskwoodscarecrow", }, { children = { { fileId = "189461", - value = "duskwoodstraw.m2", text = "duskwoodstraw.m2", + value = "duskwoodstraw.m2", }, }, - value = "duskwoodstraw", text = "duskwoodstraw", + value = "duskwoodstraw", }, { children = { { fileId = "189462", - value = "duskwoodwheat.m2", text = "duskwoodwheat.m2", + value = "duskwoodwheat.m2", }, }, - value = "duskwoodwheat", text = "duskwoodwheat", + value = "duskwoodwheat", }, { children = { { fileId = "189464", - value = "duskwoodfencebottom.m2", text = "duskwoodfencebottom.m2", + value = "duskwoodfencebottom.m2", }, { fileId = "189465", - value = "duskwoodfencebottombroken.m2", text = "duskwoodfencebottombroken.m2", + value = "duskwoodfencebottombroken.m2", }, { fileId = "189466", - value = "duskwoodfencebrokensegment.m2", text = "duskwoodfencebrokensegment.m2", + value = "duskwoodfencebrokensegment.m2", }, { fileId = "189467", - value = "duskwoodfencepost.m2", text = "duskwoodfencepost.m2", + value = "duskwoodfencepost.m2", }, { fileId = "189468", - value = "duskwoodfencerail.m2", text = "duskwoodfencerail.m2", + value = "duskwoodfencerail.m2", }, { fileId = "189469", - value = "duskwoodfencesegment.m2", text = "duskwoodfencesegment.m2", + value = "duskwoodfencesegment.m2", }, { fileId = "189470", - value = "duskwoodfencesegment02.m2", text = "duskwoodfencesegment02.m2", + value = "duskwoodfencesegment02.m2", }, { fileId = "189471", - value = "duskwoodfencetop.m2", text = "duskwoodfencetop.m2", + value = "duskwoodfencetop.m2", }, { fileId = "189472", - value = "duskwoodfencetopbroken.m2", text = "duskwoodfencetopbroken.m2", + value = "duskwoodfencetopbroken.m2", }, { fileId = "189477", - value = "rockwallend.m2", text = "rockwallend.m2", + value = "rockwallend.m2", }, { fileId = "189478", - value = "rockwallrubble.m2", text = "rockwallrubble.m2", + value = "rockwallrubble.m2", }, }, - value = "fence", text = "fence", + value = "fence", }, { children = { { fileId = "189480", - value = "duskwoodgate01.m2", text = "duskwoodgate01.m2", + value = "duskwoodgate01.m2", }, { fileId = "189481", - value = "duskwoodtallcemetarygate.m2", text = "duskwoodtallcemetarygate.m2", + value = "duskwoodtallcemetarygate.m2", }, }, - value = "gates", text = "gates", + value = "gates", }, { children = { { fileId = "189485", - value = "duskwoodgraveframe.m2", text = "duskwoodgraveframe.m2", + value = "duskwoodgraveframe.m2", }, }, - value = "graveframe", text = "graveframe", + value = "graveframe", }, { children = { { fileId = "189488", - value = "cemetarygate01.m2", text = "cemetarygate01.m2", + value = "cemetarygate01.m2", }, { fileId = "189491", - value = "gatepost.m2", text = "gatepost.m2", + value = "gatepost.m2", }, { fileId = "189492", - value = "gatesegment01.m2", text = "gatesegment01.m2", + value = "gatesegment01.m2", }, { fileId = "189493", - value = "gatesegment02.m2", text = "gatesegment02.m2", + value = "gatesegment02.m2", }, { fileId = "189494", - value = "gatesegment03.m2", text = "gatesegment03.m2", + value = "gatesegment03.m2", }, }, - value = "irongate", text = "irongate", + value = "irongate", }, { children = { { fileId = "189496", - value = "duskwoodmausoleum.m2", text = "duskwoodmausoleum.m2", + value = "duskwoodmausoleum.m2", }, { fileId = "189498", - value = "mausoleumactivedoors.m2", text = "mausoleumactivedoors.m2", + value = "mausoleumactivedoors.m2", }, }, - value = "mausoleum", text = "mausoleum", + value = "mausoleum", }, { children = { { fileId = "189499", - value = "duskwoodboulder01.m2", text = "duskwoodboulder01.m2", + value = "duskwoodboulder01.m2", }, { fileId = "189500", - value = "duskwoodboulder02.m2", text = "duskwoodboulder02.m2", + value = "duskwoodboulder02.m2", }, { fileId = "189501", - value = "duskwoodboulder03.m2", text = "duskwoodboulder03.m2", + value = "duskwoodboulder03.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "189505", - value = "duskwoodchimney01.m2", text = "duskwoodchimney01.m2", + value = "duskwoodchimney01.m2", }, { fileId = "189506", - value = "duskwoodruins01.m2", text = "duskwoodruins01.m2", + value = "duskwoodruins01.m2", }, { fileId = "189507", - value = "duskwoodruins02.m2", text = "duskwoodruins02.m2", + value = "duskwoodruins02.m2", }, { fileId = "189508", - value = "duskwoodruins03.m2", text = "duskwoodruins03.m2", + value = "duskwoodruins03.m2", }, { fileId = "189509", - value = "duskwoodruins04.m2", text = "duskwoodruins04.m2", + value = "duskwoodruins04.m2", }, { fileId = "189510", - value = "duskwoodruinsbeam.m2", text = "duskwoodruinsbeam.m2", + value = "duskwoodruinsbeam.m2", }, { fileId = "189511", - value = "duskwoodruinsbrick.m2", text = "duskwoodruinsbrick.m2", + value = "duskwoodruinsbrick.m2", }, { fileId = "189512", - value = "duskwoodruinsfoundation01.m2", text = "duskwoodruinsfoundation01.m2", + value = "duskwoodruinsfoundation01.m2", }, { fileId = "189513", - value = "duskwoodruinsfoundation02.m2", text = "duskwoodruinsfoundation02.m2", + value = "duskwoodruinsfoundation02.m2", }, }, - value = "ruins", text = "ruins", + value = "ruins", }, { children = { { fileId = "189516", - value = "duskwoodcs01.m2", text = "duskwoodcs01.m2", + value = "duskwoodcs01.m2", }, { fileId = "189517", - value = "duskwoodcs02.m2", text = "duskwoodcs02.m2", + value = "duskwoodcs02.m2", }, { fileId = "189521", - value = "duskwoodtreespookless01.m2", text = "duskwoodtreespookless01.m2", + value = "duskwoodtreespookless01.m2", }, { fileId = "189522", - value = "duskwoodtreespookless02.m2", text = "duskwoodtreespookless02.m2", + value = "duskwoodtreespookless02.m2", }, }, - value = "spooklesstrees", text = "spooklesstrees", + value = "spooklesstrees", }, { children = { { fileId = "189523", - value = "duskwoodstoneframecorner.m2", text = "duskwoodstoneframecorner.m2", + value = "duskwoodstoneframecorner.m2", }, { fileId = "189524", - value = "duskwoodstoneframelong.m2", text = "duskwoodstoneframelong.m2", + value = "duskwoodstoneframelong.m2", }, { fileId = "189525", - value = "duskwoodstoneframeshort.m2", text = "duskwoodstoneframeshort.m2", + value = "duskwoodstoneframeshort.m2", }, }, - value = "stoneframes", text = "stoneframes", + value = "stoneframes", }, { children = { { fileId = "189527", - value = "duskwoodstraw02.m2", text = "duskwoodstraw02.m2", + value = "duskwoodstraw02.m2", }, }, - value = "straw", text = "straw", + value = "straw", }, { children = { { fileId = "189528", - value = "dirtmound01.m2", text = "dirtmound01.m2", + value = "dirtmound01.m2", }, { fileId = "189530", - value = "tombstone05.m2", text = "tombstone05.m2", + value = "tombstone05.m2", }, { fileId = "189532", - value = "tombstone06.m2", text = "tombstone06.m2", + value = "tombstone06.m2", }, { fileId = "189534", - value = "tombstone07.m2", text = "tombstone07.m2", + value = "tombstone07.m2", }, { fileId = "189535", - value = "tombstone08.m2", text = "tombstone08.m2", + value = "tombstone08.m2", }, { fileId = "189536", - value = "tombstonemonument01.m2", text = "tombstonemonument01.m2", + value = "tombstonemonument01.m2", }, { fileId = "189538", - value = "tombstonemonument02.m2", text = "tombstonemonument02.m2", + value = "tombstonemonument02.m2", }, { fileId = "189540", - value = "woodcross01.m2", text = "woodcross01.m2", + value = "woodcross01.m2", }, { fileId = "189541", - value = "woodcross02.m2", text = "woodcross02.m2", + value = "woodcross02.m2", }, }, - value = "tombs", text = "tombs", + value = "tombs", }, { children = { { fileId = "189544", - value = "duskwoodbrowntree.m2", text = "duskwoodbrowntree.m2", + value = "duskwoodbrowntree.m2", }, { fileId = "189545", - value = "duskwoodfallentree.m2", text = "duskwoodfallentree.m2", + value = "duskwoodfallentree.m2", }, { fileId = "189546", - value = "duskwoodfallentree02.m2", text = "duskwoodfallentree02.m2", + value = "duskwoodfallentree02.m2", }, { fileId = "189547", - value = "duskwoodspookytree01.m2", text = "duskwoodspookytree01.m2", + value = "duskwoodspookytree01.m2", }, { fileId = "189551", - value = "duskwoodspookytree02.m2", text = "duskwoodspookytree02.m2", + value = "duskwoodspookytree02.m2", }, { fileId = "189552", - value = "duskwoodspookytree03.m2", text = "duskwoodspookytree03.m2", + value = "duskwoodspookytree03.m2", }, { fileId = "189557", - value = "duskwoodtree05.m2", text = "duskwoodtree05.m2", + value = "duskwoodtree05.m2", }, { fileId = "189558", - value = "duskwoodtree06.m2", text = "duskwoodtree06.m2", + value = "duskwoodtree06.m2", }, { fileId = "189559", - value = "duskwoodtree07.m2", text = "duskwoodtree07.m2", + value = "duskwoodtree07.m2", }, { fileId = "189560", - value = "duskwoodtreecanopy01.m2", text = "duskwoodtreecanopy01.m2", + value = "duskwoodtreecanopy01.m2", }, { fileId = "189561", - value = "duskwoodtreecanopy02.m2", text = "duskwoodtreecanopy02.m2", + value = "duskwoodtreecanopy02.m2", }, { fileId = "189562", - value = "duskwoodtreecanopy03.m2", text = "duskwoodtreecanopy03.m2", + value = "duskwoodtreecanopy03.m2", }, { fileId = "189566", - value = "duskwoodtreestump01.m2", text = "duskwoodtreestump01.m2", + value = "duskwoodtreestump01.m2", }, { fileId = "189567", - value = "duskwoodtreestump02.m2", text = "duskwoodtreestump02.m2", + value = "duskwoodtreestump02.m2", }, { fileId = "189571", - value = "duskwoodwhitetree.m2", text = "duskwoodwhitetree.m2", + value = "duskwoodwhitetree.m2", }, { fileId = "189575", - value = "newduskwoodtreehuge.m2", text = "newduskwoodtreehuge.m2", + value = "newduskwoodtreehuge.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "189580", - value = "duskwoodrockwall.m2", text = "duskwoodrockwall.m2", + value = "duskwoodrockwall.m2", }, }, - value = "walls", text = "walls", + value = "walls", }, { children = { { fileId = "189581", - value = "warningtree.m2", text = "warningtree.m2", + value = "warningtree.m2", }, }, - value = "warningtree", text = "warningtree", + value = "warningtree", }, { children = { { fileId = "189589", - value = "duskwoodwarpgate.m2", text = "duskwoodwarpgate.m2", + value = "duskwoodwarpgate.m2", }, }, - value = "warpgate", text = "warpgate", + value = "warpgate", }, { children = { { fileId = "189595", - value = "webdangle01.m2", text = "webdangle01.m2", + value = "webdangle01.m2", }, { fileId = "189596", - value = "webdangle02.m2", text = "webdangle02.m2", + value = "webdangle02.m2", }, { fileId = "189597", - value = "webstretch01.m2", text = "webstretch01.m2", + value = "webstretch01.m2", }, }, - value = "webs", text = "webs", + value = "webs", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "duskwood", text = "duskwood", + value = "duskwood", }, { children = { @@ -41103,16 +41114,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "189599", - value = "nsabbeybell.m2", text = "nsabbeybell.m2", + value = "nsabbeybell.m2", }, }, - value = "abbeybell", text = "abbeybell", + value = "abbeybell", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -41120,92 +41131,92 @@ WeakAuras.ModelPaths = { children = { { fileId = "189601", - value = "blacksmith.m2", text = "blacksmith.m2", + value = "blacksmith.m2", }, }, - value = "blacksmith", text = "blacksmith", + value = "blacksmith", }, { children = { { fileId = "189610", - value = "elwynnfootbridge.m2", text = "elwynnfootbridge.m2", + value = "elwynnfootbridge.m2", }, }, - value = "bridges", text = "bridges", + value = "bridges", }, { children = { { fileId = "189611", - value = "distillery.m2", text = "distillery.m2", + value = "distillery.m2", }, }, - value = "distillery", text = "distillery", + value = "distillery", }, { children = { { fileId = "189620", - value = "goldmine.m2", text = "goldmine.m2", + value = "goldmine.m2", }, { fileId = "189621", - value = "goldminetrackcurve.m2", text = "goldminetrackcurve.m2", + value = "goldminetrackcurve.m2", }, { fileId = "189622", - value = "goldminetracks.m2", text = "goldminetracks.m2", + value = "goldminetracks.m2", }, }, - value = "goldmine", text = "goldmine", + value = "goldmine", }, { children = { { fileId = "189629", - value = "humanguardtower.m2", text = "humanguardtower.m2", + value = "humanguardtower.m2", }, }, - value = "humanguardtower", text = "humanguardtower", + value = "humanguardtower", }, { children = { { fileId = "189632", - value = "humanwatchtower.m2", text = "humanwatchtower.m2", + value = "humanwatchtower.m2", }, }, - value = "humanwatchtower", text = "humanwatchtower", + value = "humanwatchtower", }, { children = { { fileId = "189641", - value = "stormwindgate.m2", text = "stormwindgate.m2", + value = "stormwindgate.m2", }, }, - value = "stormwindentrance", text = "stormwindentrance", + value = "stormwindentrance", }, }, - value = "buildings", text = "buildings", + value = "buildings", }, { children = { @@ -41213,348 +41224,348 @@ WeakAuras.ModelPaths = { children = { { fileId = "189642", - value = "anvil.m2", text = "anvil.m2", + value = "anvil.m2", }, }, - value = "anvil", text = "anvil", + value = "anvil", }, { children = { { fileId = "189652", - value = "ballista.m2", text = "ballista.m2", + value = "ballista.m2", }, }, - value = "ballista", text = "ballista", + value = "ballista", }, { children = { { fileId = "189657", - value = "ballistaruined.m2", text = "ballistaruined.m2", + value = "ballistaruined.m2", }, }, - value = "ballistaruined", text = "ballistaruined", + value = "ballistaruined", }, { children = { { fileId = "189666", - value = "battlegladebanner1.m2", text = "battlegladebanner1.m2", + value = "battlegladebanner1.m2", }, }, - value = "battlegladebanner1", text = "battlegladebanner1", + value = "battlegladebanner1", }, { children = { { fileId = "189670", - value = "battlegladebanner2.m2", text = "battlegladebanner2.m2", + value = "battlegladebanner2.m2", }, }, - value = "battlegladebanner2", text = "battlegladebanner2", + value = "battlegladebanner2", }, { children = { { fileId = "189674", - value = "battlegladepolearmskull.m2", text = "battlegladepolearmskull.m2", + value = "battlegladepolearmskull.m2", }, }, - value = "battlegladepolearmskull", text = "battlegladepolearmskull", + value = "battlegladepolearmskull", }, { children = { { fileId = "189676", - value = "battlegladeshield1.m2", text = "battlegladeshield1.m2", + value = "battlegladeshield1.m2", }, }, - value = "battlegladeshield1", text = "battlegladeshield1", + value = "battlegladeshield1", }, { children = { { fileId = "189678", - value = "battlegladeshield2.m2", text = "battlegladeshield2.m2", + value = "battlegladeshield2.m2", }, }, - value = "battlegladeshield2", text = "battlegladeshield2", + value = "battlegladeshield2", }, { children = { { fileId = "189680", - value = "battlegladeshield3.m2", text = "battlegladeshield3.m2", + value = "battlegladeshield3.m2", }, }, - value = "battlegladeshield3", text = "battlegladeshield3", + value = "battlegladeshield3", }, { children = { { fileId = "189682", - value = "battlegladeskullhuman1.m2", text = "battlegladeskullhuman1.m2", + value = "battlegladeskullhuman1.m2", }, }, - value = "battlegladeskullhuman1", text = "battlegladeskullhuman1", + value = "battlegladeskullhuman1", }, { children = { { fileId = "189684", - value = "battlegladeskullhuman2.m2", text = "battlegladeskullhuman2.m2", + value = "battlegladeskullhuman2.m2", }, }, - value = "battlegladeskullhuman2", text = "battlegladeskullhuman2", + value = "battlegladeskullhuman2", }, { children = { { fileId = "189685", - value = "battlegladeskullorc1.m2", text = "battlegladeskullorc1.m2", + value = "battlegladeskullorc1.m2", }, }, - value = "battlegladeskullorc1", text = "battlegladeskullorc1", + value = "battlegladeskullorc1", }, { children = { { fileId = "189686", - value = "battlegladeskullorc2.m2", text = "battlegladeskullorc2.m2", + value = "battlegladeskullorc2.m2", }, }, - value = "battlegladeskullorc2", text = "battlegladeskullorc2", + value = "battlegladeskullorc2", }, { children = { { fileId = "189687", - value = "battlegladesword.m2", text = "battlegladesword.m2", + value = "battlegladesword.m2", }, }, - value = "battlegladesword", text = "battlegladesword", + value = "battlegladesword", }, { children = { { fileId = "189689", - value = "battlegladeswordskull.m2", text = "battlegladeswordskull.m2", + value = "battlegladeswordskull.m2", }, }, - value = "battlegladeswordskull", text = "battlegladeswordskull", + value = "battlegladeswordskull", }, { children = { { fileId = "189690", - value = "battlegladewoodspikes.m2", text = "battlegladewoodspikes.m2", + value = "battlegladewoodspikes.m2", }, }, - value = "battlegladewoodspikes", text = "battlegladewoodspikes", + value = "battlegladewoodspikes", }, { children = { { fileId = "189691", - value = "bellow.m2", text = "bellow.m2", + value = "bellow.m2", }, }, - value = "bellow", text = "bellow", + value = "bellow", }, { children = { { fileId = "189692", - value = "elwynnbush01.m2", text = "elwynnbush01.m2", + value = "elwynnbush01.m2", }, { fileId = "189693", - value = "elwynnbush02.m2", text = "elwynnbush02.m2", + value = "elwynnbush02.m2", }, { fileId = "189694", - value = "elwynnbush03.m2", text = "elwynnbush03.m2", + value = "elwynnbush03.m2", }, { fileId = "189695", - value = "elwynnbush04.m2", text = "elwynnbush04.m2", + value = "elwynnbush04.m2", }, { fileId = "189696", - value = "elwynnbush05.m2", text = "elwynnbush05.m2", + value = "elwynnbush05.m2", }, { fileId = "189697", - value = "elwynnbush06.m2", text = "elwynnbush06.m2", + value = "elwynnbush06.m2", }, { fileId = "189698", - value = "elwynnbush07.m2", text = "elwynnbush07.m2", + value = "elwynnbush07.m2", }, { fileId = "189699", - value = "elwynnbush08.m2", text = "elwynnbush08.m2", + value = "elwynnbush08.m2", }, { fileId = "189700", - value = "elwynnbush09.m2", text = "elwynnbush09.m2", + value = "elwynnbush09.m2", }, }, - value = "bush", text = "bush", + value = "bush", }, { children = { { fileId = "189705", - value = "elwynncampfire.m2", text = "elwynncampfire.m2", + value = "elwynncampfire.m2", }, { fileId = "189706", - value = "elwynncampfire_blue.m2", text = "elwynncampfire_blue.m2", + value = "elwynncampfire_blue.m2", }, }, - value = "campfire", text = "campfire", + value = "campfire", }, { children = { { fileId = "189709", - value = "catapult.m2", text = "catapult.m2", + value = "catapult.m2", }, }, - value = "catapult", text = "catapult", + value = "catapult", }, { children = { { fileId = "189715", - value = "elwynncliffrock01.m2", text = "elwynncliffrock01.m2", + value = "elwynncliffrock01.m2", }, { fileId = "189716", - value = "elwynncliffrock02.m2", text = "elwynncliffrock02.m2", + value = "elwynncliffrock02.m2", }, { fileId = "189717", - value = "elwynncliffrock03.m2", text = "elwynncliffrock03.m2", + value = "elwynncliffrock03.m2", }, { fileId = "189718", - value = "elwynncliffrock04.m2", text = "elwynncliffrock04.m2", + value = "elwynncliffrock04.m2", }, { fileId = "189719", - value = "elwynncliffrock05.m2", text = "elwynncliffrock05.m2", + value = "elwynncliffrock05.m2", }, }, - value = "cliffrocks", text = "cliffrocks", + value = "cliffrocks", }, { children = { { fileId = "189723", - value = "corn.m2", text = "corn.m2", + value = "corn.m2", }, { fileId = "189725", - value = "corncrop1.m2", text = "corncrop1.m2", + value = "corncrop1.m2", }, { fileId = "189727", - value = "corncrop2.m2", text = "corncrop2.m2", + value = "corncrop2.m2", }, { fileId = "189728", - value = "corncrop3.m2", text = "corncrop3.m2", + value = "corncrop3.m2", }, { fileId = "189730", - value = "corncropdead.m2", text = "corncropdead.m2", + value = "corncropdead.m2", }, { fileId = "189731", - value = "corncroplowpoly.m2", text = "corncroplowpoly.m2", + value = "corncroplowpoly.m2", }, { fileId = "189732", - value = "corncroprow.m2", text = "corncroprow.m2", + value = "corncroprow.m2", }, { fileId = "189733", - value = "corncroprowlowpoly01.m2", text = "corncroprowlowpoly01.m2", + value = "corncroprowlowpoly01.m2", }, { fileId = "189734", - value = "corncroprowlowpoly02.m2", text = "corncroprowlowpoly02.m2", + value = "corncroprowlowpoly02.m2", }, }, - value = "corncrop", text = "corncrop", + value = "corncrop", }, { children = { @@ -41562,490 +41573,490 @@ WeakAuras.ModelPaths = { children = { { fileId = "189739", - value = "elwynncatails01.m2", text = "elwynncatails01.m2", + value = "elwynncatails01.m2", }, }, - value = "elwynncatails01", text = "elwynncatails01", + value = "elwynncatails01", }, { children = { { fileId = "189740", - value = "elwynncatails02.m2", text = "elwynncatails02.m2", + value = "elwynncatails02.m2", }, }, - value = "elwynncatails02", text = "elwynncatails02", + value = "elwynncatails02", }, { children = { { fileId = "189742", - value = "elwynndetailflowers01.m2", text = "elwynndetailflowers01.m2", + value = "elwynndetailflowers01.m2", }, { fileId = "189743", - value = "elwynndetailflowers02.m2", text = "elwynndetailflowers02.m2", + value = "elwynndetailflowers02.m2", }, }, - value = "elwynndetailflowers", text = "elwynndetailflowers", + value = "elwynndetailflowers", }, { children = { { fileId = "189744", - value = "elwynndetailgrass01.m2", text = "elwynndetailgrass01.m2", + value = "elwynndetailgrass01.m2", }, { fileId = "189745", - value = "elwynndetailgrass02.m2", text = "elwynndetailgrass02.m2", + value = "elwynndetailgrass02.m2", }, { fileId = "189746", - value = "elwynndetailgrass03.m2", text = "elwynndetailgrass03.m2", + value = "elwynndetailgrass03.m2", }, { fileId = "189747", - value = "elwynndetailgrass04.m2", text = "elwynndetailgrass04.m2", + value = "elwynndetailgrass04.m2", }, }, - value = "elwynndetailgrass", text = "elwynndetailgrass", + value = "elwynndetailgrass", }, { children = { { fileId = "189749", - value = "elwynndetailrock01.m2", text = "elwynndetailrock01.m2", + value = "elwynndetailrock01.m2", }, { fileId = "189750", - value = "elwynndetailrock02.m2", text = "elwynndetailrock02.m2", + value = "elwynndetailrock02.m2", }, }, - value = "elwynndetailrocks", text = "elwynndetailrocks", + value = "elwynndetailrocks", }, { fileId = "189751", - value = "elwynnflower01.m2", text = "elwynnflower01.m2", + value = "elwynnflower01.m2", }, { fileId = "189752", - value = "elwynnflower02.m2", text = "elwynnflower02.m2", + value = "elwynnflower02.m2", }, { fileId = "189754", - value = "elwynngrass01.m2", text = "elwynngrass01.m2", + value = "elwynngrass01.m2", }, { children = { { fileId = "189755", - value = "elwynngrass02.m2", text = "elwynngrass02.m2", + value = "elwynngrass02.m2", }, }, - value = "elwynngrass02", text = "elwynngrass02", + value = "elwynngrass02", }, { children = { { fileId = "189757", - value = "elwynngrass1.m2", text = "elwynngrass1.m2", + value = "elwynngrass1.m2", }, }, - value = "elwynngrass1", text = "elwynngrass1", + value = "elwynngrass1", }, { children = { { fileId = "189759", - value = "elwynnlillypad01.m2", text = "elwynnlillypad01.m2", + value = "elwynnlillypad01.m2", }, }, - value = "elwynnlillypad01", text = "elwynnlillypad01", + value = "elwynnlillypad01", }, { fileId = "189760", - value = "elwynnmelon01.m2", text = "elwynnmelon01.m2", + value = "elwynnmelon01.m2", }, { children = { { fileId = "189761", - value = "elwynnmushroom01.m2", text = "elwynnmushroom01.m2", + value = "elwynnmushroom01.m2", }, }, - value = "elwynnmushroom01", text = "elwynnmushroom01", + value = "elwynnmushroom01", }, { children = { { fileId = "189763", - value = "elwynnpoppy1.m2", text = "elwynnpoppy1.m2", + value = "elwynnpoppy1.m2", }, }, - value = "elwynnpoppy1", text = "elwynnpoppy1", + value = "elwynnpoppy1", }, { children = { { fileId = "189765", - value = "elwynnpoppy2.m2", text = "elwynnpoppy2.m2", + value = "elwynnpoppy2.m2", }, }, - value = "elwynnpoppy2", text = "elwynnpoppy2", + value = "elwynnpoppy2", }, { children = { { fileId = "189767", - value = "elwynnreeds01.m2", text = "elwynnreeds01.m2", + value = "elwynnreeds01.m2", }, }, - value = "elwynnreeds01", text = "elwynnreeds01", + value = "elwynnreeds01", }, { children = { { fileId = "189768", - value = "elwynnrock1.m2", text = "elwynnrock1.m2", + value = "elwynnrock1.m2", }, }, - value = "elwynnrock1", text = "elwynnrock1", + value = "elwynnrock1", }, { children = { { fileId = "189770", - value = "elwynnrock2.m2", text = "elwynnrock2.m2", + value = "elwynnrock2.m2", }, }, - value = "elwynnrock2", text = "elwynnrock2", + value = "elwynnrock2", }, { children = { { fileId = "189772", - value = "elwynnseaweed01.m2", text = "elwynnseaweed01.m2", + value = "elwynnseaweed01.m2", }, }, - value = "elwynnseaweed01", text = "elwynnseaweed01", + value = "elwynnseaweed01", }, { children = { { fileId = "189774", - value = "elwynnshrub1.m2", text = "elwynnshrub1.m2", + value = "elwynnshrub1.m2", }, }, - value = "elwynnshrub1", text = "elwynnshrub1", + value = "elwynnshrub1", }, { children = { { fileId = "189777", - value = "elwynnthornbush01.m2", text = "elwynnthornbush01.m2", + value = "elwynnthornbush01.m2", }, }, - value = "elwynnthornbush01", text = "elwynnthornbush01", + value = "elwynnthornbush01", }, { children = { { fileId = "189778", - value = "elwynnthornbush02.m2", text = "elwynnthornbush02.m2", + value = "elwynnthornbush02.m2", }, }, - value = "elwynnthornbush02", text = "elwynnthornbush02", + value = "elwynnthornbush02", }, { children = { { fileId = "189779", - value = "elwynnvines01.m2", text = "elwynnvines01.m2", + value = "elwynnvines01.m2", }, }, - value = "elwynnvines01", text = "elwynnvines01", + value = "elwynnvines01", }, { children = { { fileId = "189781", - value = "elwynnvines02.m2", text = "elwynnvines02.m2", + value = "elwynnvines02.m2", }, }, - value = "elwynnvines02", text = "elwynnvines02", + value = "elwynnvines02", }, { children = { { fileId = "189784", - value = "elwynnvineyard01.m2", text = "elwynnvineyard01.m2", + value = "elwynnvineyard01.m2", }, }, - value = "elwynnvineyard", text = "elwynnvineyard", + value = "elwynnvineyard", }, { children = { { fileId = "189788", - value = "elwynnwheat01.m2", text = "elwynnwheat01.m2", + value = "elwynnwheat01.m2", }, }, - value = "elwynnwheat", text = "elwynnwheat", + value = "elwynnwheat", }, }, - value = "detail", text = "detail", + value = "detail", }, { children = { { fileId = "189790", - value = "elwynnfencesimple.m2", text = "elwynnfencesimple.m2", + value = "elwynnfencesimple.m2", }, { fileId = "189791", - value = "elwynnfencesimplepost.m2", text = "elwynnfencesimplepost.m2", + value = "elwynnfencesimplepost.m2", }, { fileId = "189792", - value = "elwynnfencetop.m2", text = "elwynnfencetop.m2", + value = "elwynnfencetop.m2", }, { fileId = "189793", - value = "elwynnstonefence.m2", text = "elwynnstonefence.m2", + value = "elwynnstonefence.m2", }, { fileId = "189794", - value = "elwynnstonefencepost.m2", text = "elwynnstonefencepost.m2", + value = "elwynnstonefencepost.m2", }, { fileId = "189795", - value = "elwynnwoodfence01.m2", text = "elwynnwoodfence01.m2", + value = "elwynnwoodfence01.m2", }, { fileId = "189796", - value = "elwynnwoodpost01.m2", text = "elwynnwoodpost01.m2", + value = "elwynnwoodpost01.m2", }, }, - value = "elwynnfences", text = "elwynnfences", + value = "elwynnfences", }, { children = { { fileId = "189802", - value = "eyeofazora.m2", text = "eyeofazora.m2", + value = "eyeofazora.m2", }, }, - value = "eyeofazora", text = "eyeofazora", + value = "eyeofazora", }, { children = { { fileId = "189805", - value = "grapebucket01.m2", text = "grapebucket01.m2", + value = "grapebucket01.m2", }, { fileId = "189806", - value = "grapebucket02.m2", text = "grapebucket02.m2", + value = "grapebucket02.m2", }, }, - value = "grapebuckets", text = "grapebuckets", + value = "grapebuckets", }, { children = { { fileId = "189810", - value = "haystack01.m2", text = "haystack01.m2", + value = "haystack01.m2", }, { fileId = "189811", - value = "haystack02.m2", text = "haystack02.m2", + value = "haystack02.m2", }, }, - value = "haystacks", text = "haystacks", + value = "haystacks", }, { children = { { fileId = "189815", - value = "jar01.m2", text = "jar01.m2", + value = "jar01.m2", }, { fileId = "189816", - value = "jar02.m2", text = "jar02.m2", + value = "jar02.m2", }, { fileId = "189817", - value = "jar03.m2", text = "jar03.m2", + value = "jar03.m2", }, }, - value = "jars", text = "jars", + value = "jars", }, { children = { { fileId = "189820", - value = "jug01.m2", text = "jug01.m2", + value = "jug01.m2", }, { fileId = "189821", - value = "jug02.m2", text = "jug02.m2", + value = "jug02.m2", }, }, - value = "jugs", text = "jugs", + value = "jugs", }, { children = { { fileId = "189825", - value = "lamppost.m2", text = "lamppost.m2", + value = "lamppost.m2", }, }, - value = "lamppost", text = "lamppost", + value = "lamppost", }, { children = { { fileId = "189827", - value = "elwynnminecart.m2", text = "elwynnminecart.m2", + value = "elwynnminecart.m2", }, }, - value = "minecart", text = "minecart", + value = "minecart", }, { children = { { fileId = "189830", - value = "monumentrock.m2", text = "monumentrock.m2", + value = "monumentrock.m2", }, }, - value = "monumentrock", text = "monumentrock", + value = "monumentrock", }, { children = { { fileId = "189834", - value = "pick.m2", text = "pick.m2", + value = "pick.m2", }, }, - value = "pick", text = "pick", + value = "pick", }, { children = { { fileId = "189840", - value = "ruinedcatapult.m2", text = "ruinedcatapult.m2", + value = "ruinedcatapult.m2", }, }, - value = "ruinedcatapult", text = "ruinedcatapult", + value = "ruinedcatapult", }, { children = { { fileId = "189852", - value = "ruinedfountain.m2", text = "ruinedfountain.m2", + value = "ruinedfountain.m2", }, }, - value = "ruinedfountain", text = "ruinedfountain", + value = "ruinedfountain", }, { children = { { fileId = "189854", - value = "shovel.m2", text = "shovel.m2", + value = "shovel.m2", }, }, - value = "shovel", text = "shovel", + value = "shovel", }, { children = { @@ -42053,173 +42064,173 @@ WeakAuras.ModelPaths = { children = { { fileId = "189855", - value = "duskwooddirectionalsign.m2", text = "duskwooddirectionalsign.m2", + value = "duskwooddirectionalsign.m2", }, { fileId = "189857", - value = "goldshiredirectionalsign.m2", text = "goldshiredirectionalsign.m2", + value = "goldshiredirectionalsign.m2", }, { fileId = "189859", - value = "northshiredirectionalsign.m2", text = "northshiredirectionalsign.m2", + value = "northshiredirectionalsign.m2", }, { fileId = "189862", - value = "runestonedirectionalsign.m2", text = "runestonedirectionalsign.m2", + value = "runestonedirectionalsign.m2", }, { fileId = "189863", - value = "stormwinddirectionalsign.m2", text = "stormwinddirectionalsign.m2", + value = "stormwinddirectionalsign.m2", }, { fileId = "189866", - value = "westfalldirectionalsign.m2", text = "westfalldirectionalsign.m2", + value = "westfalldirectionalsign.m2", }, }, - value = "directional", text = "directional", + value = "directional", }, { children = { { fileId = "189868", - value = "genericsmallsignpost01.m2", text = "genericsmallsignpost01.m2", + value = "genericsmallsignpost01.m2", }, }, - value = "genericposts", text = "genericposts", + value = "genericposts", }, { children = { { fileId = "189878", - value = "humanalchemistsign.m2", text = "humanalchemistsign.m2", + value = "humanalchemistsign.m2", }, { fileId = "189879", - value = "humanbaitandtacklesign.m2", text = "humanbaitandtacklesign.m2", + value = "humanbaitandtacklesign.m2", }, { fileId = "189880", - value = "humanbanksign.m2", text = "humanbanksign.m2", + value = "humanbanksign.m2", }, { fileId = "189881", - value = "humanblacksmithsign.m2", text = "humanblacksmithsign.m2", + value = "humanblacksmithsign.m2", }, { fileId = "189882", - value = "humanboathousesign.m2", text = "humanboathousesign.m2", + value = "humanboathousesign.m2", }, { fileId = "189883", - value = "humaninnsign.m2", text = "humaninnsign.m2", + value = "humaninnsign.m2", }, { fileId = "189884", - value = "humaninnsignpost.m2", text = "humaninnsignpost.m2", + value = "humaninnsignpost.m2", }, { fileId = "189885", - value = "humanmagicshopsign.m2", text = "humanmagicshopsign.m2", + value = "humanmagicshopsign.m2", }, { fileId = "189886", - value = "humantannersign.m2", text = "humantannersign.m2", + value = "humantannersign.m2", }, }, - value = "shop", text = "shop", + value = "shop", }, }, - value = "signs", text = "signs", + value = "signs", }, { children = { { fileId = "189893", - value = "battlegladeboneshumandark.m2", text = "battlegladeboneshumandark.m2", + value = "battlegladeboneshumandark.m2", }, { fileId = "189894", - value = "battlegladebskeletonhumandark.m2", text = "battlegladebskeletonhumandark.m2", + value = "battlegladebskeletonhumandark.m2", }, { fileId = "189896", - value = "battlegladeskullhumandark.m2", text = "battlegladeskullhumandark.m2", + value = "battlegladeskullhumandark.m2", }, { fileId = "189898", - value = "battlegladespinehumandark.m2", text = "battlegladespinehumandark.m2", + value = "battlegladespinehumandark.m2", }, }, - value = "skeleton", text = "skeleton", + value = "skeleton", }, { children = { { fileId = "189904", - value = "smalldock.m2", text = "smalldock.m2", + value = "smalldock.m2", }, }, - value = "smalldock", text = "smalldock", + value = "smalldock", }, { children = { { fileId = "189906", - value = "spike.m2", text = "spike.m2", + value = "spike.m2", }, }, - value = "spike", text = "spike", + value = "spike", }, { children = { { fileId = "189908", - value = "lionstatue.m2", text = "lionstatue.m2", + value = "lionstatue.m2", }, }, - value = "statue", text = "statue", + value = "statue", }, { children = { { fileId = "189910", - value = "stonepyre.m2", text = "stonepyre.m2", + value = "stonepyre.m2", }, }, - value = "stonepyre", text = "stonepyre", + value = "stonepyre", }, { children = { @@ -42227,186 +42238,186 @@ WeakAuras.ModelPaths = { children = { { fileId = "189914", - value = "roundtable.m2", text = "roundtable.m2", + value = "roundtable.m2", }, }, - value = "roundtable", text = "roundtable", + value = "roundtable", }, }, - value = "tables", text = "tables", + value = "tables", }, { children = { { fileId = "189915", - value = "elwynnlog01.m2", text = "elwynnlog01.m2", + value = "elwynnlog01.m2", }, { fileId = "189916", - value = "elwynnlog02.m2", text = "elwynnlog02.m2", + value = "elwynnlog02.m2", }, }, - value = "tree", text = "tree", + value = "tree", }, { children = { { fileId = "189919", - value = "canopylesstree01.m2", text = "canopylesstree01.m2", + value = "canopylesstree01.m2", }, { fileId = "189920", - value = "canopylesstree02.m2", text = "canopylesstree02.m2", + value = "canopylesstree02.m2", }, { fileId = "189921", - value = "canopylesstree03.m2", text = "canopylesstree03.m2", + value = "canopylesstree03.m2", }, { fileId = "189922", - value = "canopylesstree04.m2", text = "canopylesstree04.m2", + value = "canopylesstree04.m2", }, { fileId = "189923", - value = "elwynnfirtree01.m2", text = "elwynnfirtree01.m2", + value = "elwynnfirtree01.m2", }, { children = { { fileId = "189924", - value = "elwynnpine01.m2", text = "elwynnpine01.m2", + value = "elwynnpine01.m2", }, { fileId = "189925", - value = "elwynnpine02.m2", text = "elwynnpine02.m2", + value = "elwynnpine02.m2", }, }, - value = "elwynntree01", text = "elwynntree01", + value = "elwynntree01", }, { fileId = "189927", - value = "elwynntreecanopy01.m2", text = "elwynntreecanopy01.m2", + value = "elwynntreecanopy01.m2", }, { fileId = "189928", - value = "elwynntreecanopy02.m2", text = "elwynntreecanopy02.m2", + value = "elwynntreecanopy02.m2", }, { fileId = "189929", - value = "elwynntreecanopy03.m2", text = "elwynntreecanopy03.m2", + value = "elwynntreecanopy03.m2", }, { fileId = "189930", - value = "elwynntreecanopy04.m2", text = "elwynntreecanopy04.m2", + value = "elwynntreecanopy04.m2", }, { fileId = "189932", - value = "elwynntreemid01.m2", text = "elwynntreemid01.m2", + value = "elwynntreemid01.m2", }, { children = { { fileId = "189939", - value = "elwynntreestump01.m2", text = "elwynntreestump01.m2", + value = "elwynntreestump01.m2", }, { fileId = "189940", - value = "elwynntreestump02.m2", text = "elwynntreestump02.m2", + value = "elwynntreestump02.m2", }, }, - value = "stumps", text = "stumps", + value = "stumps", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "189948", - value = "vineyard.m2", text = "vineyard.m2", + value = "vineyard.m2", }, { fileId = "189949", - value = "vineyardcube01.m2", text = "vineyardcube01.m2", + value = "vineyardcube01.m2", }, { fileId = "189950", - value = "vineyardcube02.m2", text = "vineyardcube02.m2", + value = "vineyardcube02.m2", }, { fileId = "189951", - value = "vineyardlowpoly.m2", text = "vineyardlowpoly.m2", + value = "vineyardlowpoly.m2", }, { fileId = "189953", - value = "vineyardwired.m2", text = "vineyardwired.m2", + value = "vineyardwired.m2", }, }, - value = "vineyard", text = "vineyard", + value = "vineyard", }, { children = { { fileId = "189956", - value = "waterbasin.m2", text = "waterbasin.m2", + value = "waterbasin.m2", }, }, - value = "waterbasin", text = "waterbasin", + value = "waterbasin", }, { children = { { fileId = "189958", - value = "elwynnmediumwaterfall01.m2", text = "elwynnmediumwaterfall01.m2", + value = "elwynnmediumwaterfall01.m2", }, { fileId = "189959", - value = "elwynntallwaterfall01.m2", text = "elwynntallwaterfall01.m2", + value = "elwynntallwaterfall01.m2", }, }, - value = "waterfall", text = "waterfall", + value = "waterfall", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "elwynn", text = "elwynn", + value = "elwynn", }, { children = { @@ -42414,82 +42425,82 @@ WeakAuras.ModelPaths = { children = { { fileId = "189960", - value = "karazahn_bridgedoors.m2", text = "karazahn_bridgedoors.m2", + value = "karazahn_bridgedoors.m2", }, { fileId = "189961", - value = "karazahn_chessroomdoors.m2", text = "karazahn_chessroomdoors.m2", + value = "karazahn_chessroomdoors.m2", }, { fileId = "189962", - value = "karazahn_cptnqrtzdoors.m2", text = "karazahn_cptnqrtzdoors.m2", + value = "karazahn_cptnqrtzdoors.m2", }, { fileId = "189963", - value = "karazahn_diningdoors.m2", text = "karazahn_diningdoors.m2", + value = "karazahn_diningdoors.m2", }, { fileId = "189964", - value = "karazahn_diningruindoor.m2", text = "karazahn_diningruindoor.m2", + value = "karazahn_diningruindoor.m2", }, { fileId = "189965", - value = "karazahn_gatedoors.m2", text = "karazahn_gatedoors.m2", + value = "karazahn_gatedoors.m2", }, { fileId = "189966", - value = "karazahn_secretdoor.m2", text = "karazahn_secretdoor.m2", + value = "karazahn_secretdoor.m2", }, { fileId = "189967", - value = "karazahn_secretdoor01.m2", text = "karazahn_secretdoor01.m2", + value = "karazahn_secretdoor01.m2", }, { fileId = "189968", - value = "karazahn_secretroomdoor.m2", text = "karazahn_secretroomdoor.m2", + value = "karazahn_secretroomdoor.m2", }, { fileId = "189969", - value = "karazahn_silverrmdoor01.m2", text = "karazahn_silverrmdoor01.m2", + value = "karazahn_silverrmdoor01.m2", }, { fileId = "189970", - value = "karazahn_silverrmdoor02.m2", text = "karazahn_silverrmdoor02.m2", + value = "karazahn_silverrmdoor02.m2", }, { fileId = "189971", - value = "karazahn_stagedoor.m2", text = "karazahn_stagedoor.m2", + value = "karazahn_stagedoor.m2", }, { fileId = "189972", - value = "karazahnportcullis.m2", text = "karazahnportcullis.m2", + value = "karazahnportcullis.m2", }, { fileId = "189973", - value = "karazhan_observe_door.m2", text = "karazhan_observe_door.m2", + value = "karazhan_observe_door.m2", }, { fileId = "189974", - value = "karazhan_red_curtain.m2", text = "karazhan_red_curtain.m2", + value = "karazhan_red_curtain.m2", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -42497,378 +42508,378 @@ WeakAuras.ModelPaths = { children = { { fileId = "189980", - value = "karazahnbarrel01.m2", text = "karazahnbarrel01.m2", + value = "karazahnbarrel01.m2", }, { fileId = "189981", - value = "karazahnbarrel02.m2", text = "karazahnbarrel02.m2", + value = "karazahnbarrel02.m2", }, }, - value = "barrel", text = "barrel", + value = "barrel", }, { children = { { fileId = "189983", - value = "karazahnbonfire01.m2", text = "karazahnbonfire01.m2", + value = "karazahnbonfire01.m2", }, { fileId = "189984", - value = "karazahnbonfire02.m2", text = "karazahnbonfire02.m2", + value = "karazahnbonfire02.m2", }, }, - value = "bonfire", text = "bonfire", + value = "bonfire", }, { children = { { fileId = "189992", - value = "karazahnbookshelflarge.m2", text = "karazahnbookshelflarge.m2", + value = "karazahnbookshelflarge.m2", }, { fileId = "189993", - value = "karazahnbookshelfsmall.m2", text = "karazahnbookshelfsmall.m2", + value = "karazahnbookshelfsmall.m2", }, { fileId = "189994", - value = "karazahnbookshelfxtralarge.m2", text = "karazahnbookshelfxtralarge.m2", + value = "karazahnbookshelfxtralarge.m2", }, }, - value = "bookshelves", text = "bookshelves", + value = "bookshelves", }, { children = { { fileId = "189997", - value = "kn_brokencart.m2", text = "kn_brokencart.m2", + value = "kn_brokencart.m2", }, { fileId = "189998", - value = "kn_brokencart02.m2", text = "kn_brokencart02.m2", + value = "kn_brokencart02.m2", }, }, - value = "brokencart", text = "brokencart", + value = "brokencart", }, { children = { { fileId = "190000", - value = "booksonfire.m2", text = "booksonfire.m2", + value = "booksonfire.m2", }, }, - value = "burningbooks", text = "burningbooks", + value = "burningbooks", }, { children = { { fileId = "190006", - value = "karazanchandelier_01.m2", text = "karazanchandelier_01.m2", + value = "karazanchandelier_01.m2", }, { fileId = "190007", - value = "karazanchandelier_02.m2", text = "karazanchandelier_02.m2", + value = "karazanchandelier_02.m2", }, { fileId = "190008", - value = "karazanchandelier_03.m2", text = "karazanchandelier_03.m2", + value = "karazanchandelier_03.m2", }, { fileId = "190009", - value = "karazanchandelier_03_broken.m2", text = "karazanchandelier_03_broken.m2", + value = "karazanchandelier_03_broken.m2", }, }, - value = "chandeliers", text = "chandeliers", + value = "chandeliers", }, { children = { { fileId = "190012", - value = "karazahncrate01.m2", text = "karazahncrate01.m2", + value = "karazahncrate01.m2", }, { fileId = "190013", - value = "karazahncrate02.m2", text = "karazahncrate02.m2", + value = "karazahncrate02.m2", }, }, - value = "crates", text = "crates", + value = "crates", }, { children = { { fileId = "190015", - value = "kn_grainsack01.m2", text = "kn_grainsack01.m2", + value = "kn_grainsack01.m2", }, { fileId = "190016", - value = "kn_grainsack02.m2", text = "kn_grainsack02.m2", + value = "kn_grainsack02.m2", }, { fileId = "190017", - value = "kn_grainsack03.m2", text = "kn_grainsack03.m2", + value = "kn_grainsack03.m2", }, { fileId = "190018", - value = "kn_spilledsack01.m2", text = "kn_spilledsack01.m2", + value = "kn_spilledsack01.m2", }, }, - value = "grainsacks", text = "grainsacks", + value = "grainsacks", }, { children = { { fileId = "190019", - value = "karazahnweb01.m2", text = "karazahnweb01.m2", + value = "karazahnweb01.m2", }, { fileId = "190020", - value = "karazahnweb02.m2", text = "karazahnweb02.m2", + value = "karazahnweb02.m2", }, { fileId = "190021", - value = "karazahnweb03.m2", text = "karazahnweb03.m2", + value = "karazahnweb03.m2", }, }, - value = "karazahnwebs", text = "karazahnwebs", + value = "karazahnwebs", }, { children = { { fileId = "190022", - value = "karazahn_owlstatue.m2", text = "karazahn_owlstatue.m2", + value = "karazahn_owlstatue.m2", }, }, - value = "owlstatue", text = "owlstatue", + value = "owlstatue", }, { children = { { fileId = "190024", - value = "karazahnpedestals01.m2", text = "karazahnpedestals01.m2", + value = "karazahnpedestals01.m2", }, { fileId = "190025", - value = "karazahnpedestals02.m2", text = "karazahnpedestals02.m2", + value = "karazahnpedestals02.m2", }, }, - value = "pedestals", text = "pedestals", + value = "pedestals", }, { children = { { fileId = "190026", - value = "karazahn_rubble_floating.m2", text = "karazahn_rubble_floating.m2", + value = "karazahn_rubble_floating.m2", }, { fileId = "190027", - value = "karazahnrockrubble01.m2", text = "karazahnrockrubble01.m2", + value = "karazahnrockrubble01.m2", }, { fileId = "190028", - value = "karazahnrockrubble02.m2", text = "karazahnrockrubble02.m2", + value = "karazahnrockrubble02.m2", }, }, - value = "rubble", text = "rubble", + value = "rubble", }, { children = { { fileId = "190030", - value = "karazahnsconce01.m2", text = "karazahnsconce01.m2", + value = "karazahnsconce01.m2", }, { fileId = "190031", - value = "karazahnsconce02.m2", text = "karazahnsconce02.m2", + value = "karazahnsconce02.m2", }, { fileId = "190032", - value = "karazahnsconce03.m2", text = "karazahnsconce03.m2", + value = "karazahnsconce03.m2", }, { fileId = "190033", - value = "karazahnsconce04.m2", text = "karazahnsconce04.m2", + value = "karazahnsconce04.m2", }, { fileId = "190034", - value = "karazahnsconce05.m2", text = "karazahnsconce05.m2", + value = "karazahnsconce05.m2", }, { fileId = "190035", - value = "karazahnsconce06.m2", text = "karazahnsconce06.m2", + value = "karazahnsconce06.m2", }, { fileId = "190036", - value = "karazahnsconce07.m2", text = "karazahnsconce07.m2", + value = "karazahnsconce07.m2", }, }, - value = "sconces", text = "sconces", + value = "sconces", }, { children = { { fileId = "190039", - value = "karazahnstarlab.m2", text = "karazahnstarlab.m2", + value = "karazahnstarlab.m2", }, }, - value = "starlab", text = "starlab", + value = "starlab", }, { children = { { fileId = "190041", - value = "karazahntablebig.m2", text = "karazahntablebig.m2", + value = "karazahntablebig.m2", }, { fileId = "190043", - value = "karazahntablesmall.m2", text = "karazahntablesmall.m2", + value = "karazahntablesmall.m2", }, }, - value = "tables", text = "tables", + value = "tables", }, { children = { { fileId = "190044", - value = "karazantapestry01.m2", text = "karazantapestry01.m2", + value = "karazantapestry01.m2", }, { fileId = "190045", - value = "karazantapestry02.m2", text = "karazantapestry02.m2", + value = "karazantapestry02.m2", }, }, - value = "tapestries", text = "tapestries", + value = "tapestries", }, { children = { { fileId = "190056", - value = "karazahn_rj_balcony.m2", text = "karazahn_rj_balcony.m2", + value = "karazahn_rj_balcony.m2", }, { fileId = "190057", - value = "karazahn_rj_moon.m2", text = "karazahn_rj_moon.m2", + value = "karazahn_rj_moon.m2", }, { fileId = "190058", - value = "karazahn_rj_stars.m2", text = "karazahn_rj_stars.m2", + value = "karazahn_rj_stars.m2", }, { fileId = "190059", - value = "karazahn_rrh_forest.m2", text = "karazahn_rrh_forest.m2", + value = "karazahn_rrh_forest.m2", }, { fileId = "190060", - value = "karazahn_rrh_house.m2", text = "karazahn_rrh_house.m2", + value = "karazahn_rrh_house.m2", }, { fileId = "190061", - value = "karazahn_rrh_tree.m2", text = "karazahn_rrh_tree.m2", + value = "karazahn_rrh_tree.m2", }, { fileId = "190062", - value = "karazahn_wo_hay.m2", text = "karazahn_wo_hay.m2", + value = "karazahn_wo_hay.m2", }, { fileId = "190063", - value = "karazan_wo_brickroad.m2", text = "karazan_wo_brickroad.m2", + value = "karazan_wo_brickroad.m2", }, }, - value = "theater", text = "theater", + value = "theater", }, { children = { { fileId = "190064", - value = "karazahnthrone01.m2", text = "karazahnthrone01.m2", + value = "karazahnthrone01.m2", }, }, - value = "throne", text = "throne", + value = "throne", }, { children = { { fileId = "2198647", - value = "karazahndiningrays.m2", text = "karazahndiningrays.m2", + value = "karazahndiningrays.m2", }, }, - value = "volumetriclights", text = "volumetriclights", + value = "volumetriclights", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "karazahn", text = "karazahn", + value = "karazahn", }, { children = { @@ -42878,40 +42889,40 @@ WeakAuras.ModelPaths = { children = { { fileId = "190069", - value = "pvp_bridge_parts01.m2", text = "pvp_bridge_parts01.m2", + value = "pvp_bridge_parts01.m2", }, { fileId = "190070", - value = "pvp_bridge_parts02.m2", text = "pvp_bridge_parts02.m2", + value = "pvp_bridge_parts02.m2", }, { fileId = "190071", - value = "pvp_bridge_parts03.m2", text = "pvp_bridge_parts03.m2", + value = "pvp_bridge_parts03.m2", }, { fileId = "190072", - value = "pvp_bridge_parts04.m2", text = "pvp_bridge_parts04.m2", + value = "pvp_bridge_parts04.m2", }, { fileId = "190073", - value = "pvp_bridge_parts05.m2", text = "pvp_bridge_parts05.m2", + value = "pvp_bridge_parts05.m2", }, }, - value = "bridgeruins", text = "bridgeruins", + value = "bridgeruins", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "pvp", text = "pvp", + value = "pvp", }, { children = { @@ -42921,43 +42932,43 @@ WeakAuras.ModelPaths = { children = { { fileId = "190076", - value = "redridgebridgebrick01.m2", text = "redridgebridgebrick01.m2", + value = "redridgebridgebrick01.m2", }, { fileId = "190077", - value = "redridgebridgebrick02.m2", text = "redridgebridgebrick02.m2", + value = "redridgebridgebrick02.m2", }, { fileId = "190078", - value = "redridgebridgebrick03.m2", text = "redridgebridgebrick03.m2", + value = "redridgebridgebrick03.m2", }, }, - value = "bricks", text = "bricks", + value = "bricks", }, { children = { { fileId = "190080", - value = "redridgebush01.m2", text = "redridgebush01.m2", + value = "redridgebush01.m2", }, { fileId = "190081", - value = "redridgebush02.m2", text = "redridgebush02.m2", + value = "redridgebush02.m2", }, { fileId = "190082", - value = "redridgebush03.m2", text = "redridgebush03.m2", + value = "redridgebush03.m2", }, }, - value = "bush", text = "bush", + value = "bush", }, { children = { @@ -42965,217 +42976,217 @@ WeakAuras.ModelPaths = { children = { { fileId = "190084", - value = "catailpatch01.m2", text = "catailpatch01.m2", + value = "catailpatch01.m2", }, }, - value = "catailpatch", text = "catailpatch", + value = "catailpatch", }, }, - value = "detail", text = "detail", + value = "detail", }, { children = { { fileId = "190087", - value = "redridgedocksbeam01.m2", text = "redridgedocksbeam01.m2", + value = "redridgedocksbeam01.m2", }, { fileId = "190088", - value = "redridgedocksboardwalk01.m2", text = "redridgedocksboardwalk01.m2", + value = "redridgedocksboardwalk01.m2", }, { fileId = "190089", - value = "redridgedocksboardwalk02.m2", text = "redridgedocksboardwalk02.m2", + value = "redridgedocksboardwalk02.m2", }, { fileId = "190090", - value = "redridgedocksboardwalk03.m2", text = "redridgedocksboardwalk03.m2", + value = "redridgedocksboardwalk03.m2", }, { fileId = "190091", - value = "redridgedocksplank01.m2", text = "redridgedocksplank01.m2", + value = "redridgedocksplank01.m2", }, { fileId = "190093", - value = "redridgedockspylon01.m2", text = "redridgedockspylon01.m2", + value = "redridgedockspylon01.m2", }, }, - value = "dockpieces", text = "dockpieces", + value = "dockpieces", }, { children = { { fileId = "190095", - value = "redridgedocks01.m2", text = "redridgedocks01.m2", + value = "redridgedocks01.m2", }, { fileId = "190096", - value = "redridgedocks03.m2", text = "redridgedocks03.m2", + value = "redridgedocks03.m2", }, }, - value = "docks", text = "docks", + value = "docks", }, { children = { { fileId = "190097", - value = "insectmound.m2", text = "insectmound.m2", + value = "insectmound.m2", }, }, - value = "misc", text = "misc", + value = "misc", }, { children = { { fileId = "190101", - value = "redridgerock01.m2", text = "redridgerock01.m2", + value = "redridgerock01.m2", }, { fileId = "190102", - value = "redridgerock02.m2", text = "redridgerock02.m2", + value = "redridgerock02.m2", }, { fileId = "190103", - value = "redridgerock03.m2", text = "redridgerock03.m2", + value = "redridgerock03.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "190104", - value = "rowboat01.m2", text = "rowboat01.m2", + value = "rowboat01.m2", }, }, - value = "rowboat", text = "rowboat", + value = "rowboat", }, { children = { { fileId = "190106", - value = "battlegladewoodspikeslongrow.m2", text = "battlegladewoodspikeslongrow.m2", + value = "battlegladewoodspikeslongrow.m2", }, { fileId = "190107", - value = "battlegladewoodspikesshortrow.m2", text = "battlegladewoodspikesshortrow.m2", + value = "battlegladewoodspikesshortrow.m2", }, }, - value = "spikewall", text = "spikewall", + value = "spikewall", }, { children = { { fileId = "190108", - value = "redridgestump02.m2", text = "redridgestump02.m2", + value = "redridgestump02.m2", }, }, - value = "stumps", text = "stumps", + value = "stumps", }, { children = { { fileId = "190114", - value = "redridgefallentree01.m2", text = "redridgefallentree01.m2", + value = "redridgefallentree01.m2", }, { fileId = "190115", - value = "redridgefallentree01moss.m2", text = "redridgefallentree01moss.m2", + value = "redridgefallentree01moss.m2", }, { fileId = "190116", - value = "redridgefallentree02.m2", text = "redridgefallentree02.m2", + value = "redridgefallentree02.m2", }, { fileId = "190117", - value = "redridgefallentree02moss.m2", text = "redridgefallentree02moss.m2", + value = "redridgefallentree02moss.m2", }, { fileId = "190118", - value = "redridgefallentree03.m2", text = "redridgefallentree03.m2", + value = "redridgefallentree03.m2", }, { fileId = "190119", - value = "redridgetree01.m2", text = "redridgetree01.m2", + value = "redridgetree01.m2", }, { fileId = "190120", - value = "redridgetree02.m2", text = "redridgetree02.m2", + value = "redridgetree02.m2", }, { fileId = "190121", - value = "redridgetreecanopy01.m2", text = "redridgetreecanopy01.m2", + value = "redridgetreecanopy01.m2", }, { fileId = "190122", - value = "redridgetreecanopy02.m2", text = "redridgetreecanopy02.m2", + value = "redridgetreecanopy02.m2", }, { fileId = "190123", - value = "redridgetreecanopy03.m2", text = "redridgetreecanopy03.m2", + value = "redridgetreecanopy03.m2", }, { fileId = "190124", - value = "redridgetreecanopy04.m2", text = "redridgetreecanopy04.m2", + value = "redridgetreecanopy04.m2", }, { fileId = "190126", - value = "redridgetreemid01.m2", text = "redridgetreemid01.m2", + value = "redridgetreemid01.m2", }, { fileId = "190128", - value = "redridgetreestump01.m2", text = "redridgetreestump01.m2", + value = "redridgetreestump01.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "redridge", text = "redridge", + value = "redridge", }, { children = { @@ -43185,37 +43196,37 @@ WeakAuras.ModelPaths = { children = { { fileId = "190141", - value = "cage01.m2", text = "cage01.m2", + value = "cage01.m2", }, { fileId = "190142", - value = "cage02.m2", text = "cage02.m2", + value = "cage02.m2", }, { fileId = "190143", - value = "cage03.m2", text = "cage03.m2", + value = "cage03.m2", }, }, - value = "cages", text = "cages", + value = "cages", }, { children = { { fileId = "190153", - value = "holdingpen.m2", text = "holdingpen.m2", + value = "holdingpen.m2", }, }, - value = "holdingpen", text = "holdingpen", + value = "holdingpen", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -43223,49 +43234,49 @@ WeakAuras.ModelPaths = { children = { { fileId = "190160", - value = "crashzeppelin.m2", text = "crashzeppelin.m2", + value = "crashzeppelin.m2", }, }, - value = "crashzeppelin", text = "crashzeppelin", + value = "crashzeppelin", }, { children = { { fileId = "190165", - value = "oilrig.m2", text = "oilrig.m2", + value = "oilrig.m2", }, }, - value = "oilrig", text = "oilrig", + value = "oilrig", }, { children = { { fileId = "190169", - value = "runestonemoss_01.m2", text = "runestonemoss_01.m2", + value = "runestonemoss_01.m2", }, }, - value = "runestonemoss_01", text = "runestonemoss_01", + value = "runestonemoss_01", }, { children = { { fileId = "190175", - value = "trollwatchtower.m2", text = "trollwatchtower.m2", + value = "trollwatchtower.m2", }, }, - value = "trollwatchtower", text = "trollwatchtower", + value = "trollwatchtower", }, }, - value = "buildings", text = "buildings", + value = "buildings", }, { children = { @@ -43273,653 +43284,642 @@ WeakAuras.ModelPaths = { children = { { fileId = "190178", - value = "aquaductstone_corner1.m2", text = "aquaductstone_corner1.m2", + value = "aquaductstone_corner1.m2", }, { fileId = "190179", - value = "aquaductstone_corner2.m2", text = "aquaductstone_corner2.m2", + value = "aquaductstone_corner2.m2", }, { fileId = "190180", - value = "aquaductstone_longpillar.m2", text = "aquaductstone_longpillar.m2", + value = "aquaductstone_longpillar.m2", }, { fileId = "190181", - value = "aquaductstone_pillar1.m2", text = "aquaductstone_pillar1.m2", + value = "aquaductstone_pillar1.m2", }, { fileId = "190182", - value = "aquaductstone_pillar2.m2", text = "aquaductstone_pillar2.m2", + value = "aquaductstone_pillar2.m2", }, { fileId = "190183", - value = "aquaductstone_pillar3.m2", text = "aquaductstone_pillar3.m2", + value = "aquaductstone_pillar3.m2", }, { fileId = "190184", - value = "aquaductstone_short.m2", text = "aquaductstone_short.m2", + value = "aquaductstone_short.m2", }, { fileId = "190185", - value = "aquaductstone_straight.m2", text = "aquaductstone_straight.m2", + value = "aquaductstone_straight.m2", }, { fileId = "190186", - value = "aquaductstone_straight6.m2", text = "aquaductstone_straight6.m2", + value = "aquaductstone_straight6.m2", }, }, - value = "aquaduct", text = "aquaduct", + value = "aquaduct", }, { children = { { fileId = "190192", - value = "jaguarstatue.m2", text = "jaguarstatue.m2", + value = "jaguarstatue.m2", }, { fileId = "190193", - value = "ropebridge.m2", text = "ropebridge.m2", + value = "ropebridge.m2", }, { fileId = "190194", - value = "stonebridgelong.m2", text = "stonebridgelong.m2", + value = "stonebridgelong.m2", }, { fileId = "190195", - value = "stonebridgeshort.m2", text = "stonebridgeshort.m2", + value = "stonebridgeshort.m2", }, { fileId = "190196", - value = "stranglechasmbridge.m2", text = "stranglechasmbridge.m2", + value = "stranglechasmbridge.m2", }, }, - value = "bridge", text = "bridge", + value = "bridge", }, { children = { { fileId = "190202", - value = "crystallizedhuman01.m2", text = "crystallizedhuman01.m2", + value = "crystallizedhuman01.m2", }, { fileId = "190203", - value = "crystallizedhuman02.m2", text = "crystallizedhuman02.m2", + value = "crystallizedhuman02.m2", }, { fileId = "190204", - value = "crystallizedhuman03.m2", text = "crystallizedhuman03.m2", + value = "crystallizedhuman03.m2", }, { fileId = "190205", - value = "crystallizedtroll01.m2", text = "crystallizedtroll01.m2", + value = "crystallizedtroll01.m2", }, { fileId = "190206", - value = "crystallizedtroll02.m2", text = "crystallizedtroll02.m2", + value = "crystallizedtroll02.m2", }, { fileId = "190207", - value = "crystallizedtroll03.m2", text = "crystallizedtroll03.m2", + value = "crystallizedtroll03.m2", }, }, - value = "crystalcreatures", text = "crystalcreatures", + value = "crystalcreatures", }, { children = { { fileId = "190223", - value = "strangleplant06.m2", text = "strangleplant06.m2", + value = "strangleplant06.m2", }, { fileId = "190224", - value = "strangleplant07.m2", text = "strangleplant07.m2", + value = "strangleplant07.m2", }, { fileId = "190225", - value = "strangleplant08.m2", text = "strangleplant08.m2", + value = "strangleplant08.m2", }, { fileId = "190226", - value = "strangleplant09.m2", text = "strangleplant09.m2", + value = "strangleplant09.m2", }, { fileId = "190227", - value = "strangleplant10.m2", text = "strangleplant10.m2", + value = "strangleplant10.m2", }, { fileId = "190228", - value = "stranglethornfern01.m2", text = "stranglethornfern01.m2", + value = "stranglethornfern01.m2", }, { fileId = "190229", - value = "stranglethornfern02.m2", text = "stranglethornfern02.m2", + value = "stranglethornfern02.m2", }, { fileId = "190230", - value = "stranglethornfern03.m2", text = "stranglethornfern03.m2", + value = "stranglethornfern03.m2", }, { fileId = "190231", - value = "stranglethornfern04.m2", text = "stranglethornfern04.m2", + value = "stranglethornfern04.m2", }, { fileId = "190232", - value = "stranglethornfern05.m2", text = "stranglethornfern05.m2", + value = "stranglethornfern05.m2", }, { fileId = "190233", - value = "stranglethornfern06.m2", text = "stranglethornfern06.m2", + value = "stranglethornfern06.m2", }, { fileId = "190235", - value = "stranglethornplant01.m2", text = "stranglethornplant01.m2", + value = "stranglethornplant01.m2", }, { fileId = "190237", - value = "stranglethornplant02.m2", text = "stranglethornplant02.m2", + value = "stranglethornplant02.m2", }, { fileId = "190238", - value = "stranglethornplant03.m2", text = "stranglethornplant03.m2", + value = "stranglethornplant03.m2", }, { fileId = "190239", - value = "stranglethornplant04.m2", text = "stranglethornplant04.m2", + value = "stranglethornplant04.m2", }, { fileId = "190241", - value = "stranglethornplant05.m2", text = "stranglethornplant05.m2", + value = "stranglethornplant05.m2", }, }, - value = "detail", text = "detail", + value = "detail", }, { children = { { fileId = "190246", - value = "diamondminewalllantern.m2", text = "diamondminewalllantern.m2", + value = "diamondminewalllantern.m2", }, }, - value = "diamondminewalllantern", text = "diamondminewalllantern", + value = "diamondminewalllantern", }, { children = { { fileId = "190252", - value = "gemminecar01.m2", text = "gemminecar01.m2", + value = "gemminecar01.m2", }, }, - value = "gemminecar01", text = "gemminecar01", + value = "gemminecar01", }, { children = { { fileId = "190256", - value = "gemminecar02.m2", text = "gemminecar02.m2", + value = "gemminecar02.m2", }, }, - value = "gemminecar02", text = "gemminecar02", + value = "gemminecar02", }, { children = { { fileId = "190260", - value = "holyspringwell.m2", text = "holyspringwell.m2", + value = "holyspringwell.m2", }, }, - value = "holyspringwell", text = "holyspringwell", + value = "holyspringwell", }, { children = { { fileId = "190262", - value = "overgrowth02.m2", text = "overgrowth02.m2", + value = "overgrowth02.m2", }, }, - value = "overgrowth02", text = "overgrowth02", + value = "overgrowth02", }, { children = { { fileId = "190263", - value = "bootybaypost.m2", text = "bootybaypost.m2", + value = "bootybaypost.m2", }, }, - value = "post", text = "post", + value = "post", }, { children = { { fileId = "190264", - value = "stranglethorncliffrock01.m2", text = "stranglethorncliffrock01.m2", + value = "stranglethorncliffrock01.m2", }, { fileId = "190266", - value = "stranglethorncliffrock02.m2", text = "stranglethorncliffrock02.m2", + value = "stranglethorncliffrock02.m2", }, { fileId = "190267", - value = "stranglethorncliffrock03.m2", text = "stranglethorncliffrock03.m2", + value = "stranglethorncliffrock03.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "190271", - value = "stranglethornruins01.m2", text = "stranglethornruins01.m2", + value = "stranglethornruins01.m2", }, { fileId = "190272", - value = "stranglethornruins02.m2", text = "stranglethornruins02.m2", + value = "stranglethornruins02.m2", }, { fileId = "190273", - value = "stranglethornruins03.m2", text = "stranglethornruins03.m2", + value = "stranglethornruins03.m2", }, { fileId = "190274", - value = "stranglethornruins04.m2", text = "stranglethornruins04.m2", + value = "stranglethornruins04.m2", }, { fileId = "190275", - value = "stranglethornruins05.m2", text = "stranglethornruins05.m2", + value = "stranglethornruins05.m2", }, { fileId = "190276", - value = "stranglethornruins06.m2", text = "stranglethornruins06.m2", + value = "stranglethornruins06.m2", }, { fileId = "190277", - value = "stranglethornruins07.m2", text = "stranglethornruins07.m2", + value = "stranglethornruins07.m2", }, { fileId = "190278", - value = "stranglethornruins08.m2", text = "stranglethornruins08.m2", + value = "stranglethornruins08.m2", }, { fileId = "190279", - value = "stranglethornruins09.m2", text = "stranglethornruins09.m2", + value = "stranglethornruins09.m2", }, { fileId = "190280", - value = "stranglethornruins10.m2", text = "stranglethornruins10.m2", + value = "stranglethornruins10.m2", }, { fileId = "190281", - value = "stranglethornruins11.m2", text = "stranglethornruins11.m2", + value = "stranglethornruins11.m2", }, { fileId = "190282", - value = "stranglethornruins12.m2", text = "stranglethornruins12.m2", + value = "stranglethornruins12.m2", }, { fileId = "190283", - value = "stranglethornruins13.m2", text = "stranglethornruins13.m2", + value = "stranglethornruins13.m2", }, { fileId = "190284", - value = "stranglethornruins14.m2", text = "stranglethornruins14.m2", + value = "stranglethornruins14.m2", }, { fileId = "190285", - value = "stranglethornruins15.m2", text = "stranglethornruins15.m2", + value = "stranglethornruins15.m2", }, { fileId = "190286", - value = "stranglethornruins16.m2", text = "stranglethornruins16.m2", + value = "stranglethornruins16.m2", }, { fileId = "190287", - value = "stranglethornruins17.m2", text = "stranglethornruins17.m2", + value = "stranglethornruins17.m2", }, { fileId = "190288", - value = "stranglethornruins18.m2", text = "stranglethornruins18.m2", + value = "stranglethornruins18.m2", }, { fileId = "190289", - value = "stranglethornruins19.m2", text = "stranglethornruins19.m2", + value = "stranglethornruins19.m2", }, { fileId = "190290", - value = "stranglethornruins20.m2", text = "stranglethornruins20.m2", + value = "stranglethornruins20.m2", }, { fileId = "190291", - value = "stranglethornruins21.m2", text = "stranglethornruins21.m2", + value = "stranglethornruins21.m2", }, { fileId = "190292", - value = "stranglethornruins_pylon.m2", text = "stranglethornruins_pylon.m2", + value = "stranglethornruins_pylon.m2", }, }, - value = "ruins", text = "ruins", + value = "ruins", }, { children = { { fileId = "190300", - value = "sack01_01.m2", text = "sack01_01.m2", + value = "sack01_01.m2", }, }, - value = "sack01_01", text = "sack01_01", + value = "sack01_01", }, { children = { { fileId = "190304", - value = "serpentstatue02.m2", text = "serpentstatue02.m2", + value = "serpentstatue02.m2", }, }, - value = "serpentstatue02", text = "serpentstatue02", + value = "serpentstatue02", }, { children = { { fileId = "190308", - value = "strangledeadtree01.m2", text = "strangledeadtree01.m2", + value = "strangledeadtree01.m2", }, }, - value = "strangledeadtrees", text = "strangledeadtrees", + value = "strangledeadtrees", }, { children = { { fileId = "190311", - value = "bootybaytree01.m2", text = "bootybaytree01.m2", + value = "bootybaytree01.m2", }, { fileId = "190312", - value = "strangledeadtreenovine.m2", text = "strangledeadtreenovine.m2", + value = "strangledeadtreenovine.m2", }, { fileId = "190313", - value = "stranglethornroot01.m2", text = "stranglethornroot01.m2", + value = "stranglethornroot01.m2", }, { fileId = "190314", - value = "stranglethornroot02.m2", text = "stranglethornroot02.m2", + value = "stranglethornroot02.m2", }, { fileId = "190315", - value = "stranglethornroot03.m2", text = "stranglethornroot03.m2", + value = "stranglethornroot03.m2", }, { children = { { fileId = "190316", - value = "stranglethorntree01.m2", text = "stranglethorntree01.m2", + value = "stranglethorntree01.m2", }, }, - value = "stranglethorntree01", text = "stranglethorntree01", + value = "stranglethorntree01", }, { children = { { fileId = "190319", - value = "stranglethorntree02.m2", text = "stranglethorntree02.m2", + value = "stranglethorntree02.m2", }, }, - value = "stranglethorntree02", text = "stranglethorntree02", + value = "stranglethorntree02", }, { children = { { fileId = "190322", - value = "stranglethorntree04.m2", text = "stranglethorntree04.m2", + value = "stranglethorntree04.m2", }, }, - value = "stranglethorntree04", text = "stranglethorntree04", + value = "stranglethorntree04", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "190331", - value = "trolldrumsoundobj.m2", text = "trolldrumsoundobj.m2", + value = "trolldrumsoundobj.m2", }, { fileId = "190332", - value = "trolldungeondrum03.m2", text = "trolldungeondrum03.m2", + value = "trolldungeondrum03.m2", }, { fileId = "190333", - value = "trollruinsdrum01.m2", text = "trollruinsdrum01.m2", + value = "trollruinsdrum01.m2", }, }, - value = "trolldrum", text = "trolldrum", - }, - { - children = { - { - fileId = "190335", - value = "trolldungeonbasinwall.m2", - text = "trolldungeonbasinwall.m2", - }, - }, - value = "trolldungeonbasin wall", - text = "trolldungeonbasin wall", + value = "trolldrum", }, { children = { { fileId = "190337", - value = "trolldungeonfountain.m2", text = "trolldungeonfountain.m2", + value = "trolldungeonfountain.m2", }, }, - value = "trolldungeonfountain", text = "trolldungeonfountain", + value = "trolldungeonfountain", }, { children = { { fileId = "190341", - value = "trolldungeonpottery01.m2", text = "trolldungeonpottery01.m2", + value = "trolldungeonpottery01.m2", }, { fileId = "190342", - value = "trolldungeonpottery02.m2", text = "trolldungeonpottery02.m2", + value = "trolldungeonpottery02.m2", }, { fileId = "190343", - value = "trolldungeonpottery03.m2", text = "trolldungeonpottery03.m2", + value = "trolldungeonpottery03.m2", }, }, - value = "trolldungeonpottery", text = "trolldungeonpottery", + value = "trolldungeonpottery", }, { children = { { fileId = "190345", - value = "trolldungeonring.m2", text = "trolldungeonring.m2", + value = "trolldungeonring.m2", }, }, - value = "trolldungeonring", text = "trolldungeonring", + value = "trolldungeonring", }, { fileId = "2198507", - value = "trolldungeonring.m2", text = "trolldungeonring.m2", + value = "trolldungeonring.m2", }, { children = { { fileId = "190347", - value = "trolldungeonsacks.m2", text = "trolldungeonsacks.m2", + value = "trolldungeonsacks.m2", }, }, - value = "trolldungeonsacks", text = "trolldungeonsacks", + value = "trolldungeonsacks", }, { children = { { fileId = "190348", - value = "trolldungeonserpentstatue.m2", text = "trolldungeonserpentstatue.m2", + value = "trolldungeonserpentstatue.m2", }, }, - value = "trolldungeonserpentstatue", text = "trolldungeonserpentstatue", + value = "trolldungeonserpentstatue", }, { children = { { fileId = "190353", - value = "trollruinsgong03.m2", text = "trollruinsgong03.m2", + value = "trollruinsgong03.m2", }, }, - value = "trollruinsgong", text = "trollruinsgong", + value = "trollruinsgong", }, { children = { { fileId = "190354", - value = "stranglethorntikihead.m2", text = "stranglethorntikihead.m2", + value = "stranglethorntikihead.m2", }, { fileId = "190358", - value = "trollshrine.m2", text = "trollshrine.m2", + value = "trollshrine.m2", }, }, - value = "trollshrine", text = "trollshrine", + value = "trollshrine", }, { children = { { fileId = "190361", - value = "stranglethornwaterfall01.m2", text = "stranglethornwaterfall01.m2", + value = "stranglethornwaterfall01.m2", }, }, - value = "waterfall", text = "waterfall", + value = "waterfall", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "stranglethorn", text = "stranglethorn", + value = "stranglethorn", }, { children = { @@ -43929,20 +43929,20 @@ WeakAuras.ModelPaths = { children = { { fileId = "190363", - value = "serpentaltar.m2", text = "serpentaltar.m2", + value = "serpentaltar.m2", }, }, - value = "serpentaltar", text = "serpentaltar", + value = "serpentaltar", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "sunkentemple", text = "sunkentemple", + value = "sunkentemple", }, { children = { @@ -43952,16 +43952,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "190364", - value = "runestonecrud_01.m2", text = "runestonecrud_01.m2", + value = "runestonecrud_01.m2", }, }, - value = "runestonecrud_01", text = "runestonecrud_01", + value = "runestonecrud_01", }, }, - value = "buildings", text = "buildings", + value = "buildings", }, { children = { @@ -43969,271 +43969,271 @@ WeakAuras.ModelPaths = { children = { { fileId = "190375", - value = "swampofsorrowlilypad01.m2", text = "swampofsorrowlilypad01.m2", + value = "swampofsorrowlilypad01.m2", }, { fileId = "190376", - value = "swampofsorrowlilypad02.m2", text = "swampofsorrowlilypad02.m2", + value = "swampofsorrowlilypad02.m2", }, { fileId = "190377", - value = "swampplant03.m2", text = "swampplant03.m2", + value = "swampplant03.m2", }, { fileId = "190378", - value = "swampplant04.m2", text = "swampplant04.m2", + value = "swampplant04.m2", }, { fileId = "190379", - value = "swampplant05.m2", text = "swampplant05.m2", + value = "swampplant05.m2", }, { fileId = "190380", - value = "swampsorrowplant01.m2", text = "swampsorrowplant01.m2", + value = "swampsorrowplant01.m2", }, { fileId = "190381", - value = "swampsorrowplant02.m2", text = "swampsorrowplant02.m2", + value = "swampsorrowplant02.m2", }, { fileId = "190382", - value = "swampsorrowroot01.m2", text = "swampsorrowroot01.m2", + value = "swampsorrowroot01.m2", }, { fileId = "190383", - value = "swampsorrowroot02.m2", text = "swampsorrowroot02.m2", + value = "swampsorrowroot02.m2", }, { fileId = "190384", - value = "swampsorrowroot03.m2", text = "swampsorrowroot03.m2", + value = "swampsorrowroot03.m2", }, }, - value = "plants", text = "plants", + value = "plants", }, { children = { { fileId = "190388", - value = "swampsorrowrock01.m2", text = "swampsorrowrock01.m2", + value = "swampsorrowrock01.m2", }, { fileId = "190389", - value = "swampsorrowrock02.m2", text = "swampsorrowrock02.m2", + value = "swampsorrowrock02.m2", }, { fileId = "190390", - value = "swampsorrowrock03.m2", text = "swampsorrowrock03.m2", + value = "swampsorrowrock03.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "190393", - value = "swampbeastbone01.m2", text = "swampbeastbone01.m2", + value = "swampbeastbone01.m2", }, }, - value = "swampbeastbones", text = "swampbeastbones", + value = "swampbeastbones", }, { children = { { fileId = "190398", - value = "swampboat01.m2", text = "swampboat01.m2", + value = "swampboat01.m2", }, }, - value = "swampboats", text = "swampboats", + value = "swampboats", }, { children = { { fileId = "190400", - value = "swampskulls01.m2", text = "swampskulls01.m2", + value = "swampskulls01.m2", }, { fileId = "190401", - value = "swampskulls02.m2", text = "swampskulls02.m2", + value = "swampskulls02.m2", }, }, - value = "swampskulls", text = "swampskulls", + value = "swampskulls", }, { children = { { fileId = "190404", - value = "swampsnakestatue01.m2", text = "swampsnakestatue01.m2", + value = "swampsnakestatue01.m2", }, }, - value = "swampsnakestatue", text = "swampsnakestatue", + value = "swampsnakestatue", }, { children = { { fileId = "190405", - value = "swampwagon01.m2", text = "swampwagon01.m2", + value = "swampwagon01.m2", }, }, - value = "swampwagon", text = "swampwagon", + value = "swampwagon", }, { children = { { fileId = "190408", - value = "losttreehuts01.m2", text = "losttreehuts01.m2", + value = "losttreehuts01.m2", }, { fileId = "190409", - value = "losttreehuts02.m2", text = "losttreehuts02.m2", + value = "losttreehuts02.m2", }, { fileId = "190410", - value = "losttreehuts03.m2", text = "losttreehuts03.m2", + value = "losttreehuts03.m2", }, }, - value = "treehuts", text = "treehuts", + value = "treehuts", }, { children = { { fileId = "190411", - value = "swamptreelog01.m2", text = "swamptreelog01.m2", + value = "swamptreelog01.m2", }, { fileId = "190412", - value = "swamptreelog02.m2", text = "swamptreelog02.m2", + value = "swamptreelog02.m2", }, { fileId = "190413", - value = "swamptreelog03.m2", text = "swamptreelog03.m2", + value = "swamptreelog03.m2", }, { fileId = "190414", - value = "swamptreelog04.m2", text = "swamptreelog04.m2", + value = "swamptreelog04.m2", }, }, - value = "treelogs", text = "treelogs", + value = "treelogs", }, { children = { { fileId = "190418", - value = "swampsorrowcanopytree01.m2", text = "swampsorrowcanopytree01.m2", + value = "swampsorrowcanopytree01.m2", }, { fileId = "190419", - value = "swampsorrowcanopytree02.m2", text = "swampsorrowcanopytree02.m2", + value = "swampsorrowcanopytree02.m2", }, { fileId = "190420", - value = "swampsorrowcanopytree03.m2", text = "swampsorrowcanopytree03.m2", + value = "swampsorrowcanopytree03.m2", }, { fileId = "190421", - value = "swampsorrowcanopytree04.m2", text = "swampsorrowcanopytree04.m2", + value = "swampsorrowcanopytree04.m2", }, { fileId = "190422", - value = "swampsorrowcanopytree05.m2", text = "swampsorrowcanopytree05.m2", + value = "swampsorrowcanopytree05.m2", }, { fileId = "190423", - value = "swampsorrowcanopytree06.m2", text = "swampsorrowcanopytree06.m2", + value = "swampsorrowcanopytree06.m2", }, { fileId = "190424", - value = "swampsorrowtree01.m2", text = "swampsorrowtree01.m2", + value = "swampsorrowtree01.m2", }, { fileId = "190425", - value = "swampsorrowtree02.m2", text = "swampsorrowtree02.m2", + value = "swampsorrowtree02.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "190428", - value = "swamphangingvines01.m2", text = "swamphangingvines01.m2", + value = "swamphangingvines01.m2", }, { fileId = "190429", - value = "swamphangingvines02.m2", text = "swamphangingvines02.m2", + value = "swamphangingvines02.m2", }, }, - value = "vines", text = "vines", + value = "vines", }, { children = { { fileId = "190430", - value = "waterhut01.m2", text = "waterhut01.m2", + value = "waterhut01.m2", }, { fileId = "190431", - value = "waterhut02.m2", text = "waterhut02.m2", + value = "waterhut02.m2", }, }, - value = "waterhuts", text = "waterhuts", + value = "waterhuts", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "swamposorrow", text = "swamposorrow", + value = "swamposorrow", }, { children = { @@ -44243,251 +44243,251 @@ WeakAuras.ModelPaths = { children = { { fileId = "190434", - value = "blastedlandsblastedcow.m2", text = "blastedlandsblastedcow.m2", + value = "blastedlandsblastedcow.m2", }, { fileId = "190435", - value = "blastedlandsblastedmule.m2", text = "blastedlandsblastedmule.m2", + value = "blastedlandsblastedmule.m2", }, { fileId = "190436", - value = "blastedlandsbone01.m2", text = "blastedlandsbone01.m2", + value = "blastedlandsbone01.m2", }, { fileId = "190437", - value = "blastedlandsbonepile02.m2", text = "blastedlandsbonepile02.m2", + value = "blastedlandsbonepile02.m2", }, { fileId = "190438", - value = "blastedlandsbonepile03.m2", text = "blastedlandsbonepile03.m2", + value = "blastedlandsbonepile03.m2", }, { fileId = "190439", - value = "blastedlandsskull01.m2", text = "blastedlandsskull01.m2", + value = "blastedlandsskull01.m2", }, { fileId = "190440", - value = "blastedlandsskull02.m2", text = "blastedlandsskull02.m2", + value = "blastedlandsskull02.m2", }, { fileId = "190441", - value = "blastedlandsspine01.m2", text = "blastedlandsspine01.m2", + value = "blastedlandsspine01.m2", }, }, - value = "bones", text = "bones", + value = "bones", }, { children = { { fileId = "190444", - value = "blastedlandsbrokencolumn01.m2", text = "blastedlandsbrokencolumn01.m2", + value = "blastedlandsbrokencolumn01.m2", }, { fileId = "190445", - value = "blastedlandsbrokencolumn02.m2", text = "blastedlandsbrokencolumn02.m2", + value = "blastedlandsbrokencolumn02.m2", }, }, - value = "column", text = "column", + value = "column", }, { children = { { fileId = "190447", - value = "blastedlandsrock01.m2", text = "blastedlandsrock01.m2", + value = "blastedlandsrock01.m2", }, }, - value = "detail", text = "detail", + value = "detail", }, { children = { { fileId = "190450", - value = "blastedlandsportalrock01.m2", text = "blastedlandsportalrock01.m2", + value = "blastedlandsportalrock01.m2", }, { fileId = "190451", - value = "blastedlandsportalrock02.m2", text = "blastedlandsportalrock02.m2", + value = "blastedlandsportalrock02.m2", }, { fileId = "190452", - value = "blastedlandsportalrock03.m2", text = "blastedlandsportalrock03.m2", + value = "blastedlandsportalrock03.m2", }, { fileId = "190453", - value = "blastedlandsrock02.m2", text = "blastedlandsrock02.m2", + value = "blastedlandsrock02.m2", }, { fileId = "190454", - value = "blastedlandsrock03.m2", text = "blastedlandsrock03.m2", + value = "blastedlandsrock03.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "190456", - value = "blastedlandsroot01.m2", text = "blastedlandsroot01.m2", + value = "blastedlandsroot01.m2", }, { fileId = "190457", - value = "blastedlandsroot03.m2", text = "blastedlandsroot03.m2", + value = "blastedlandsroot03.m2", }, }, - value = "roots", text = "roots", + value = "roots", }, { children = { { fileId = "190462", - value = "blastedlandsportalruins01.m2", text = "blastedlandsportalruins01.m2", + value = "blastedlandsportalruins01.m2", }, { fileId = "190463", - value = "blastedlandsportalruins02.m2", text = "blastedlandsportalruins02.m2", + value = "blastedlandsportalruins02.m2", }, { fileId = "190464", - value = "blastedlandsportalruins03.m2", text = "blastedlandsportalruins03.m2", + value = "blastedlandsportalruins03.m2", }, { fileId = "190466", - value = "blastedlandsruins01.m2", text = "blastedlandsruins01.m2", + value = "blastedlandsruins01.m2", }, { fileId = "190467", - value = "blastedlandsruins02.m2", text = "blastedlandsruins02.m2", + value = "blastedlandsruins02.m2", }, { fileId = "190468", - value = "blastedlandsruins03.m2", text = "blastedlandsruins03.m2", + value = "blastedlandsruins03.m2", }, { fileId = "190469", - value = "blastedlandsruinstusk.m2", text = "blastedlandsruinstusk.m2", + value = "blastedlandsruinstusk.m2", }, { fileId = "190470", - value = "brokengatearch.m2", text = "brokengatearch.m2", + value = "brokengatearch.m2", }, { fileId = "190471", - value = "brokengatechain01.m2", text = "brokengatechain01.m2", + value = "brokengatechain01.m2", }, { fileId = "190472", - value = "brokengatechain02.m2", text = "brokengatechain02.m2", + value = "brokengatechain02.m2", }, { fileId = "190474", - value = "brokengateside01.m2", text = "brokengateside01.m2", + value = "brokengateside01.m2", }, { fileId = "190475", - value = "brokengateside02.m2", text = "brokengateside02.m2", + value = "brokengateside02.m2", }, { fileId = "190476", - value = "brokengatewall.m2", text = "brokengatewall.m2", + value = "brokengatewall.m2", }, { fileId = "190477", - value = "brokengatewood01.m2", text = "brokengatewood01.m2", + value = "brokengatewood01.m2", }, { fileId = "190478", - value = "brokengatewood02.m2", text = "brokengatewood02.m2", + value = "brokengatewood02.m2", }, { fileId = "190479", - value = "brokengatewood03.m2", text = "brokengatewood03.m2", + value = "brokengatewood03.m2", }, }, - value = "ruins", text = "ruins", + value = "ruins", }, { children = { { fileId = "190484", - value = "blastedlandsashtree02.m2", text = "blastedlandsashtree02.m2", + value = "blastedlandsashtree02.m2", }, { fileId = "190485", - value = "blastedlandsashtree03.m2", text = "blastedlandsashtree03.m2", + value = "blastedlandsashtree03.m2", }, { fileId = "190486", - value = "blastedlandsblastedtree01.m2", text = "blastedlandsblastedtree01.m2", + value = "blastedlandsblastedtree01.m2", }, { fileId = "190487", - value = "blastedlandsblastedtree03.m2", text = "blastedlandsblastedtree03.m2", + value = "blastedlandsblastedtree03.m2", }, { fileId = "190488", - value = "blastedlandsblastedtree04.m2", text = "blastedlandsblastedtree04.m2", + value = "blastedlandsblastedtree04.m2", }, { fileId = "190489", - value = "blastedlandstree01.m2", text = "blastedlandstree01.m2", + value = "blastedlandstree01.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "theblastedlands", text = "theblastedlands", + value = "theblastedlands", }, { children = { @@ -44497,60 +44497,60 @@ WeakAuras.ModelPaths = { children = { { fileId = "190505", - value = "westfallchurch.m2", text = "westfallchurch.m2", + value = "westfallchurch.m2", }, }, - value = "church", text = "church", + value = "church", }, { children = { { fileId = "190508", - value = "westfallgrainsilo01.m2", text = "westfallgrainsilo01.m2", + value = "westfallgrainsilo01.m2", }, }, - value = "grainsilo", text = "grainsilo", + value = "grainsilo", }, { children = { { fileId = "190515", - value = "westfalllighthouse.m2", text = "westfalllighthouse.m2", + value = "westfalllighthouse.m2", }, }, - value = "lighthouse", text = "lighthouse", + value = "lighthouse", }, { children = { { fileId = "190517", - value = "westfallshed.m2", text = "westfallshed.m2", + value = "westfallshed.m2", }, }, - value = "shed", text = "shed", + value = "shed", }, { children = { { fileId = "190519", - value = "westfallwindmill.m2", text = "westfallwindmill.m2", + value = "westfallwindmill.m2", }, }, - value = "windmill", text = "windmill", + value = "windmill", }, }, - value = "buildings", text = "buildings", + value = "buildings", }, { children = { @@ -44558,680 +44558,658 @@ WeakAuras.ModelPaths = { children = { { fileId = "190520", - value = "aquaduct_corner1.m2", text = "aquaduct_corner1.m2", + value = "aquaduct_corner1.m2", }, { fileId = "190521", - value = "aquaduct_corner2.m2", text = "aquaduct_corner2.m2", + value = "aquaduct_corner2.m2", }, { fileId = "190522", - value = "aquaduct_longpillar.m2", text = "aquaduct_longpillar.m2", + value = "aquaduct_longpillar.m2", }, { fileId = "190523", - value = "aquaduct_pillar1.m2", text = "aquaduct_pillar1.m2", + value = "aquaduct_pillar1.m2", }, { fileId = "190524", - value = "aquaduct_pillar2.m2", text = "aquaduct_pillar2.m2", + value = "aquaduct_pillar2.m2", }, { fileId = "190525", - value = "aquaduct_pillar3.m2", text = "aquaduct_pillar3.m2", + value = "aquaduct_pillar3.m2", }, { fileId = "190526", - value = "aquaduct_short.m2", text = "aquaduct_short.m2", + value = "aquaduct_short.m2", }, { fileId = "190527", - value = "aquaduct_straight.m2", text = "aquaduct_straight.m2", + value = "aquaduct_straight.m2", }, { fileId = "190528", - value = "aquaduct_straight6.m2", text = "aquaduct_straight6.m2", + value = "aquaduct_straight6.m2", }, { fileId = "190529", - value = "aquaduct_xsupport.m2", text = "aquaduct_xsupport.m2", + value = "aquaduct_xsupport.m2", }, }, - value = "aquaduct", text = "aquaduct", + value = "aquaduct", }, { children = { { fileId = "190535", - value = "westfallbarrel01.m2", text = "westfallbarrel01.m2", + value = "westfallbarrel01.m2", }, }, - value = "barrel", text = "barrel", + value = "barrel", }, { children = { { fileId = "190536", - value = "brokencart.m2", text = "brokencart.m2", + value = "brokencart.m2", }, }, - value = "brokencart", text = "brokencart", + value = "brokencart", }, { children = { { fileId = "190537", - value = "butterchurner.m2", text = "butterchurner.m2", + value = "butterchurner.m2", }, }, - value = "butterchurner", text = "butterchurner", + value = "butterchurner", }, { children = { { fileId = "190541", - value = "hangingcage01.m2", text = "hangingcage01.m2", + value = "hangingcage01.m2", }, { fileId = "190542", - value = "hangingcage02.m2", text = "hangingcage02.m2", + value = "hangingcage02.m2", }, }, - value = "cages", text = "cages", + value = "cages", }, { children = { { fileId = "190543", - value = "westfallcrate.m2", text = "westfallcrate.m2", + value = "westfallcrate.m2", }, }, - value = "crate", text = "crate", + value = "crate", }, { children = { { fileId = "190545", - value = "deadcow.m2", text = "deadcow.m2", + value = "deadcow.m2", }, }, - value = "deadcow", text = "deadcow", + value = "deadcow", }, { children = { { fileId = "190546", - value = "deadmule.m2", text = "deadmule.m2", + value = "deadmule.m2", }, }, - value = "deadmule", text = "deadmule", + value = "deadmule", }, { children = { { fileId = "190548", - value = "deadseamonster.m2", text = "deadseamonster.m2", + value = "deadseamonster.m2", }, { fileId = "190549", - value = "seamonsterchunk.m2", text = "seamonsterchunk.m2", + value = "seamonsterchunk.m2", }, }, - value = "deadseamonster", text = "deadseamonster", + value = "deadseamonster", }, { children = { { fileId = "190564", - value = "westfallberrybush.m2", text = "westfallberrybush.m2", + value = "westfallberrybush.m2", }, { fileId = "190566", - value = "westfallbush01.m2", text = "westfallbush01.m2", + value = "westfallbush01.m2", }, { fileId = "190567", - value = "westfallcabbage.m2", text = "westfallcabbage.m2", + value = "westfallcabbage.m2", }, { fileId = "190568", - value = "westfallcatails.m2", text = "westfallcatails.m2", + value = "westfallcatails.m2", }, { fileId = "190571", - value = "westfallcornfield.m2", text = "westfallcornfield.m2", + value = "westfallcornfield.m2", }, { fileId = "190572", - value = "westfallcotton.m2", text = "westfallcotton.m2", + value = "westfallcotton.m2", }, { fileId = "190573", - value = "westfalldandilion.m2", text = "westfalldandilion.m2", + value = "westfalldandilion.m2", }, { fileId = "190574", - value = "westfalldriftwood.m2", text = "westfalldriftwood.m2", + value = "westfalldriftwood.m2", }, { fileId = "190576", - value = "westfallmandrake.m2", text = "westfallmandrake.m2", + value = "westfallmandrake.m2", }, { fileId = "190577", - value = "westfallreeds01.m2", text = "westfallreeds01.m2", + value = "westfallreeds01.m2", }, { fileId = "190578", - value = "westfalltobbaco.m2", text = "westfalltobbaco.m2", + value = "westfalltobbaco.m2", }, { fileId = "190579", - value = "westfallwheat01.m2", text = "westfallwheat01.m2", + value = "westfallwheat01.m2", }, { fileId = "190580", - value = "westfallwheat02.m2", text = "westfallwheat02.m2", + value = "westfallwheat02.m2", }, { fileId = "190581", - value = "westfallwheat03.m2", text = "westfallwheat03.m2", + value = "westfallwheat03.m2", }, }, - value = "detail", text = "detail", + value = "detail", }, { children = { { fileId = "190586", - value = "westfallbed01.m2", text = "westfallbed01.m2", + value = "westfallbed01.m2", }, }, - value = "furniture", text = "furniture", + value = "furniture", }, { children = { { fileId = "190587", - value = "grindstone.m2", text = "grindstone.m2", + value = "grindstone.m2", }, }, - value = "grindstone", text = "grindstone", + value = "grindstone", }, { children = { { fileId = "190592", - value = "harempillow01.m2", text = "harempillow01.m2", + value = "harempillow01.m2", }, }, - value = "harempillow01", text = "harempillow01", + value = "harempillow01", }, { children = { { fileId = "190595", - value = "harempillow02.m2", text = "harempillow02.m2", + value = "harempillow02.m2", }, }, - value = "harempillow02", text = "harempillow02", + value = "harempillow02", }, { children = { { fileId = "190596", - value = "harness.m2", text = "harness.m2", + value = "harness.m2", }, }, - value = "harness", text = "harness", + value = "harness", }, { children = { { fileId = "190597", - value = "westfallhaystack01.m2", text = "westfallhaystack01.m2", + value = "westfallhaystack01.m2", }, { fileId = "190598", - value = "westfallhaystack02.m2", text = "westfallhaystack02.m2", + value = "westfallhaystack02.m2", }, }, - value = "haystack", text = "haystack", + value = "haystack", }, { children = { { fileId = "190599", - value = "westfallhaywagon.m2", text = "westfallhaywagon.m2", + value = "westfallhaywagon.m2", }, }, - value = "haywagon", text = "haywagon", + value = "haywagon", }, { children = { { fileId = "190608", - value = "lampdeadmines.m2", text = "lampdeadmines.m2", + value = "lampdeadmines.m2", }, }, - value = "lampdeadmines", text = "lampdeadmines", + value = "lampdeadmines", }, { children = { { fileId = "190612", - value = "westfalllamppost.m2", text = "westfalllamppost.m2", + value = "westfalllamppost.m2", }, { fileId = "190613", - value = "westfalllamppost01.m2", text = "westfalllamppost01.m2", + value = "westfalllamppost01.m2", }, { fileId = "190614", - value = "westfalllamppost02.m2", text = "westfalllamppost02.m2", + value = "westfalllamppost02.m2", }, }, - value = "lamppost", text = "lamppost", + value = "lamppost", }, { children = { { fileId = "190615", - value = "lighthouseeffect.m2", text = "lighthouseeffect.m2", + value = "lighthouseeffect.m2", }, }, - value = "lighthousebeam", text = "lighthousebeam", + value = "lighthousebeam", }, { children = { { fileId = "190617", - value = "outhouse.m2", text = "outhouse.m2", + value = "outhouse.m2", }, }, - value = "outhouse", text = "outhouse", + value = "outhouse", }, { children = { { fileId = "190619", - value = "plow.m2", text = "plow.m2", + value = "plow.m2", }, }, - value = "plow", text = "plow", + value = "plow", }, { children = { { fileId = "190620", - value = "rakecart.m2", text = "rakecart.m2", + value = "rakecart.m2", }, }, - value = "rakecart", text = "rakecart", + value = "rakecart", }, { children = { { fileId = "190623", - value = "westfallboulder01.m2", text = "westfallboulder01.m2", + value = "westfallboulder01.m2", }, { fileId = "190624", - value = "westfallboulder02.m2", text = "westfallboulder02.m2", + value = "westfallboulder02.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "190626", - value = "rugrack01.m2", text = "rugrack01.m2", + value = "rugrack01.m2", }, { fileId = "190627", - value = "rugrack02.m2", text = "rugrack02.m2", + value = "rugrack02.m2", }, }, - value = "rugracks", text = "rugracks", + value = "rugracks", }, { children = { { fileId = "190629", - value = "westfallscarecrow.m2", text = "westfallscarecrow.m2", + value = "westfallscarecrow.m2", }, }, - value = "scarecrow", text = "scarecrow", + value = "scarecrow", }, { children = { { fileId = "190632", - value = "sunkenanchor.m2", text = "sunkenanchor.m2", + value = "sunkenanchor.m2", }, }, - value = "sunkenanchor", text = "sunkenanchor", + value = "sunkenanchor", }, { children = { { fileId = "190633", - value = "tombstone01.m2", text = "tombstone01.m2", + value = "tombstone01.m2", }, { fileId = "190634", - value = "tombstone02.m2", text = "tombstone02.m2", + value = "tombstone02.m2", }, { fileId = "190635", - value = "tombstone03.m2", text = "tombstone03.m2", + value = "tombstone03.m2", }, { fileId = "190636", - value = "tombstone04.m2", text = "tombstone04.m2", + value = "tombstone04.m2", }, }, - value = "tombstones", text = "tombstones", + value = "tombstones", }, { children = { { fileId = "190638", - value = "westfalltree01.m2", text = "westfalltree01.m2", + value = "westfalltree01.m2", }, { fileId = "190639", - value = "westfalltree02.m2", text = "westfalltree02.m2", + value = "westfalltree02.m2", }, { fileId = "190640", - value = "westfalltree03.m2", text = "westfalltree03.m2", + value = "westfalltree03.m2", }, { fileId = "190641", - value = "westfalltree04.m2", text = "westfalltree04.m2", + value = "westfalltree04.m2", }, { fileId = "190642", - value = "westfalltreecanopy01.m2", text = "westfalltreecanopy01.m2", + value = "westfalltreecanopy01.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "190647", - value = "westfalltreestump01.m2", text = "westfalltreestump01.m2", + value = "westfalltreestump01.m2", }, { fileId = "190648", - value = "westfalltreestump02.m2", text = "westfalltreestump02.m2", + value = "westfalltreestump02.m2", }, }, - value = "treestumps", text = "treestumps", + value = "treestumps", }, { children = { { fileId = "190650", - value = "bowl.m2", text = "bowl.m2", + value = "bowl.m2", }, { fileId = "190653", - value = "plate.m2", text = "plate.m2", + value = "plate.m2", }, { fileId = "190654", - value = "stein.m2", text = "stein.m2", + value = "stein.m2", }, }, - value = "utensils", text = "utensils", - }, - { - children = { - { - fileId = "190655", - value = "westfallstable01.m2", - text = "westfallstable01.m2", - }, - }, - value = "westfall stable", - text = "westfall stable", - }, - { - children = { - { - fileId = "190657", - value = "westfallwagon01.m2", - text = "westfallwagon01.m2", - }, - }, - value = "westfall wagon", - text = "westfall wagon", + value = "utensils", }, { children = { { fileId = "190658", - value = "westfallchair.m2", text = "westfallchair.m2", + value = "westfallchair.m2", }, }, - value = "westfallchair", text = "westfallchair", + value = "westfallchair", }, { children = { { fileId = "190659", - value = "westfallfence.m2", text = "westfallfence.m2", + value = "westfallfence.m2", }, { fileId = "190660", - value = "westfallfenceend.m2", text = "westfallfenceend.m2", + value = "westfallfenceend.m2", }, { fileId = "190661", - value = "westfallfencepost.m2", text = "westfallfencepost.m2", + value = "westfallfencepost.m2", }, }, - value = "westfallfence", text = "westfallfence", + value = "westfallfence", }, { children = { { fileId = "190662", - value = "westfallfountain.m2", text = "westfallfountain.m2", + value = "westfallfountain.m2", }, }, - value = "westfallfountain", text = "westfallfountain", + value = "westfallfountain", }, { children = { { fileId = "190666", - value = "westfallruins01.m2", text = "westfallruins01.m2", + value = "westfallruins01.m2", }, { fileId = "190667", - value = "westfallruins02.m2", text = "westfallruins02.m2", + value = "westfallruins02.m2", }, { fileId = "190668", - value = "westfallruins03.m2", text = "westfallruins03.m2", + value = "westfallruins03.m2", }, { fileId = "190669", - value = "westfallruins04.m2", text = "westfallruins04.m2", + value = "westfallruins04.m2", }, }, - value = "westfallruins", text = "westfallruins", + value = "westfallruins", }, { children = { { fileId = "190671", - value = "westfallskeleton.m2", text = "westfallskeleton.m2", + value = "westfallskeleton.m2", }, }, - value = "westfallskeleton", text = "westfallskeleton", + value = "westfallskeleton", }, { children = { { fileId = "190673", - value = "westfalltable.m2", text = "westfalltable.m2", + value = "westfalltable.m2", }, }, - value = "westfalltable", text = "westfalltable", + value = "westfalltable", }, { children = { { fileId = "190675", - value = "westfallvineyard01.m2", text = "westfallvineyard01.m2", + value = "westfallvineyard01.m2", }, }, - value = "westfallvineyards", text = "westfallvineyards", + value = "westfallvineyards", }, { children = { { fileId = "190677", - value = "wreckedrowboat.m2", text = "wreckedrowboat.m2", + value = "wreckedrowboat.m2", }, }, - value = "wreckedrowboat", text = "wreckedrowboat", + value = "wreckedrowboat", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "westfall", text = "westfall", + value = "westfall", }, { children = { @@ -45241,59 +45219,59 @@ WeakAuras.ModelPaths = { children = { { fileId = "190678", - value = "collisionwallpendoor01.m2", text = "collisionwallpendoor01.m2", + value = "collisionwallpendoor01.m2", }, { fileId = "190680", - value = "zulgurubforcefield.m2", text = "zulgurubforcefield.m2", + value = "zulgurubforcefield.m2", }, { fileId = "190681", - value = "zulgurubpendoor.m2", text = "zulgurubpendoor.m2", + value = "zulgurubpendoor.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, { children = { { fileId = "190683", - value = "zulgurubmaindoor.m2", text = "zulgurubmaindoor.m2", + value = "zulgurubmaindoor.m2", }, }, - value = "maindoor", text = "maindoor", + value = "maindoor", }, { children = { { fileId = "190685", - value = "nastyspideregg.m2", text = "nastyspideregg.m2", + value = "nastyspideregg.m2", }, }, - value = "spiderarea", text = "spiderarea", + value = "spiderarea", }, { children = { { fileId = "190688", - value = "voodoopile01.m2", text = "voodoopile01.m2", + value = "voodoopile01.m2", }, }, - value = "voodoopile", text = "voodoopile", + value = "voodoopile", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -45301,134 +45279,134 @@ WeakAuras.ModelPaths = { children = { { fileId = "190690", - value = "trollbattotem.m2", text = "trollbattotem.m2", + value = "trollbattotem.m2", }, }, - value = "battotem", text = "battotem", + value = "battotem", }, { children = { { fileId = "190693", - value = "heartofhakkar.m2", text = "heartofhakkar.m2", + value = "heartofhakkar.m2", }, }, - value = "heart", text = "heart", + value = "heart", }, { children = { { fileId = "190694", - value = "zulgurublightningmadness.m2", text = "zulgurublightningmadness.m2", + value = "zulgurublightningmadness.m2", }, }, - value = "lightning", text = "lightning", + value = "lightning", }, { children = { { fileId = "190695", - value = "zulgurubruins04.m2", text = "zulgurubruins04.m2", + value = "zulgurubruins04.m2", }, { fileId = "190696", - value = "zulgurubruins05.m2", text = "zulgurubruins05.m2", + value = "zulgurubruins05.m2", }, { fileId = "190697", - value = "zulgurubruins06.m2", text = "zulgurubruins06.m2", + value = "zulgurubruins06.m2", }, { fileId = "190698", - value = "zulgurubruins07.m2", text = "zulgurubruins07.m2", + value = "zulgurubruins07.m2", }, }, - value = "ruins", text = "ruins", + value = "ruins", }, { children = { { fileId = "190699", - value = "nastyspiderweb01.m2", text = "nastyspiderweb01.m2", + value = "nastyspiderweb01.m2", }, { fileId = "190700", - value = "nastyspiderweb02.m2", text = "nastyspiderweb02.m2", + value = "nastyspiderweb02.m2", }, { fileId = "190701", - value = "nastyspiderweb03.m2", text = "nastyspiderweb03.m2", + value = "nastyspiderweb03.m2", }, { fileId = "190706", - value = "spiderpod01.m2", text = "spiderpod01.m2", + value = "spiderpod01.m2", }, { fileId = "190707", - value = "spiderpod02.m2", text = "spiderpod02.m2", + value = "spiderpod02.m2", }, }, - value = "spiderarea", text = "spiderarea", + value = "spiderarea", }, { children = { { fileId = "190711", - value = "zulgurubtree01.m2", text = "zulgurubtree01.m2", + value = "zulgurubtree01.m2", }, { fileId = "190712", - value = "zulgurubtree02.m2", text = "zulgurubtree02.m2", + value = "zulgurubtree02.m2", }, { fileId = "190713", - value = "zulgurubtree03.m2", text = "zulgurubtree03.m2", + value = "zulgurubtree03.m2", }, { fileId = "190714", - value = "zulgurubtree04.m2", text = "zulgurubtree04.m2", + value = "zulgurubtree04.m2", }, { fileId = "190715", - value = "zulgurubtree05.m2", text = "zulgurubtree05.m2", + value = "zulgurubtree05.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "zulgurub", text = "zulgurub", + value = "zulgurub", }, }, - value = "azeroth", text = "azeroth", + value = "azeroth", }, { children = { @@ -45436,172 +45414,172 @@ WeakAuras.ModelPaths = { children = { { fileId = "190716", - value = "bat01.m2", text = "bat01.m2", + value = "bat01.m2", }, { fileId = "190717", - value = "bat02.m2", text = "bat02.m2", + value = "bat02.m2", }, }, - value = "bats", text = "bats", + value = "bats", }, { children = { { fileId = "190719", - value = "bird01.m2", text = "bird01.m2", + value = "bird01.m2", }, { fileId = "190720", - value = "bird02.m2", text = "bird02.m2", + value = "bird02.m2", }, { fileId = "190723", - value = "wasp01.m2", text = "wasp01.m2", + value = "wasp01.m2", }, { fileId = "190724", - value = "wasp02.m2", text = "wasp02.m2", + value = "wasp02.m2", }, }, - value = "birds", text = "birds", + value = "birds", }, { children = { { fileId = "190725", - value = "butterflyorange01.m2", text = "butterflyorange01.m2", + value = "butterflyorange01.m2", }, { fileId = "190726", - value = "butterflypurple01.m2", text = "butterflypurple01.m2", + value = "butterflypurple01.m2", }, { fileId = "190727", - value = "butterflywhite01.m2", text = "butterflywhite01.m2", + value = "butterflywhite01.m2", }, }, - value = "butterflies", text = "butterflies", + value = "butterflies", }, { children = { { fileId = "190731", - value = "fireflies01.m2", text = "fireflies01.m2", + value = "fireflies01.m2", }, }, - value = "fireflies", text = "fireflies", + value = "fireflies", }, { children = { { fileId = "190733", - value = "fish01.m2", text = "fish01.m2", + value = "fish01.m2", }, }, - value = "fish", text = "fish", + value = "fish", }, { children = { { fileId = "190739", - value = "flies01.m2", text = "flies01.m2", + value = "flies01.m2", }, }, - value = "flies", text = "flies", + value = "flies", }, }, - value = "critter", text = "critter", + value = "critter", }, { children = { { fileId = "2198651", - value = "drkbus01.m2", text = "drkbus01.m2", + value = "drkbus01.m2", }, { fileId = "2198569", - value = "drkbus02.m2", text = "drkbus02.m2", + value = "drkbus02.m2", }, { fileId = "2198633", - value = "drkbus03.m2", text = "drkbus03.m2", + value = "drkbus03.m2", }, { fileId = "2198552", - value = "drkbus04.m2", text = "drkbus04.m2", + value = "drkbus04.m2", }, { fileId = "2198589", - value = "drkbus05.m2", text = "drkbus05.m2", + value = "drkbus05.m2", }, { fileId = "2198528", - value = "drkbus06.m2", text = "drkbus06.m2", + value = "drkbus06.m2", }, { fileId = "2199417", - value = "drkbus07.m2", text = "drkbus07.m2", + value = "drkbus07.m2", }, { fileId = "2198572", - value = "drkgra01.m2", text = "drkgra01.m2", + value = "drkgra01.m2", }, { fileId = "2198494", - value = "drkgra02.m2", text = "drkgra02.m2", + value = "drkgra02.m2", }, { fileId = "2198594", - value = "drkgra03.m2", text = "drkgra03.m2", + value = "drkgra03.m2", }, { fileId = "2198627", - value = "drkgra04.m2", text = "drkgra04.m2", + value = "drkgra04.m2", }, { fileId = "2198545", - value = "drkgra05.m2", text = "drkgra05.m2", + value = "drkgra05.m2", }, { fileId = "2198584", - value = "drkgra06.m2", text = "drkgra06.m2", + value = "drkgra06.m2", }, }, - value = "detail", text = "detail", + value = "detail", }, { children = { @@ -45611,148 +45589,148 @@ WeakAuras.ModelPaths = { children = { { fileId = "190755", - value = "emeralddreamcatcher01.m2", text = "emeralddreamcatcher01.m2", + value = "emeralddreamcatcher01.m2", }, { fileId = "190756", - value = "emeralddreamcatcher02.m2", text = "emeralddreamcatcher02.m2", + value = "emeralddreamcatcher02.m2", }, { fileId = "190757", - value = "emeralddreamcatcher03.m2", text = "emeralddreamcatcher03.m2", + value = "emeralddreamcatcher03.m2", }, { fileId = "190758", - value = "emeralddreamcatcher04.m2", text = "emeralddreamcatcher04.m2", + value = "emeralddreamcatcher04.m2", }, }, - value = "dreamcatchers", text = "dreamcatchers", + value = "dreamcatchers", }, { children = { { fileId = "190760", - value = "emeralddreamgiant01.m2", text = "emeralddreamgiant01.m2", + value = "emeralddreamgiant01.m2", }, }, - value = "emeralddreamgiant", text = "emeralddreamgiant", + value = "emeralddreamgiant", }, { children = { { fileId = "190763", - value = "dnrdreambellflower01.m2", text = "dnrdreambellflower01.m2", + value = "dnrdreambellflower01.m2", }, { fileId = "190764", - value = "dnrdreambellflower02.m2", text = "dnrdreambellflower02.m2", + value = "dnrdreambellflower02.m2", }, { fileId = "190765", - value = "dnrdreambellflower03.m2", text = "dnrdreambellflower03.m2", + value = "dnrdreambellflower03.m2", }, { fileId = "190766", - value = "dnrdreamdrippingflower01.m2", text = "dnrdreamdrippingflower01.m2", + value = "dnrdreamdrippingflower01.m2", }, { fileId = "190767", - value = "dnrdreamdrippingflower02.m2", text = "dnrdreamdrippingflower02.m2", + value = "dnrdreamdrippingflower02.m2", }, { fileId = "190768", - value = "dnrdreamdroopingflower01.m2", text = "dnrdreamdroopingflower01.m2", + value = "dnrdreamdroopingflower01.m2", }, { fileId = "190769", - value = "dnrdreamdroopingflower02.m2", text = "dnrdreamdroopingflower02.m2", + value = "dnrdreamdroopingflower02.m2", }, { fileId = "190770", - value = "dnrdreamorangeflower01.m2", text = "dnrdreamorangeflower01.m2", + value = "dnrdreamorangeflower01.m2", }, { fileId = "190771", - value = "dnrdreamorangeflower02.m2", text = "dnrdreamorangeflower02.m2", + value = "dnrdreamorangeflower02.m2", }, { fileId = "190772", - value = "dnrdreampurpleflower01.m2", text = "dnrdreampurpleflower01.m2", + value = "dnrdreampurpleflower01.m2", }, { fileId = "190773", - value = "dnrdreampurpleflower02.m2", text = "dnrdreampurpleflower02.m2", + value = "dnrdreampurpleflower02.m2", }, { fileId = "190774", - value = "dnrdreampurpleflower03.m2", text = "dnrdreampurpleflower03.m2", + value = "dnrdreampurpleflower03.m2", }, { fileId = "190775", - value = "dnrdreamspinningflower01.m2", text = "dnrdreamspinningflower01.m2", + value = "dnrdreamspinningflower01.m2", }, }, - value = "flowers", text = "flowers", + value = "flowers", }, { children = { { fileId = "190793", - value = "emeralddreamfountaintree01.m2", text = "emeralddreamfountaintree01.m2", + value = "emeralddreamfountaintree01.m2", }, { fileId = "190794", - value = "emeralddreamfountaintree02.m2", text = "emeralddreamfountaintree02.m2", + value = "emeralddreamfountaintree02.m2", }, { fileId = "190795", - value = "emeralddreamfountaintree03.m2", text = "emeralddreamfountaintree03.m2", + value = "emeralddreamfountaintree03.m2", }, { fileId = "190796", - value = "emeralddreamfountaintree04.m2", text = "emeralddreamfountaintree04.m2", + value = "emeralddreamfountaintree04.m2", }, { fileId = "190797", - value = "emeralddreamfountaintree05.m2", text = "emeralddreamfountaintree05.m2", + value = "emeralddreamfountaintree05.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "dreaming", text = "dreaming", + value = "dreaming", }, { children = { @@ -45764,113 +45742,113 @@ WeakAuras.ModelPaths = { children = { { fileId = "190803", - value = "basiliskcrystal02.m2", text = "basiliskcrystal02.m2", + value = "basiliskcrystal02.m2", }, { fileId = "190804", - value = "caveminecrystalformation01.m2", text = "caveminecrystalformation01.m2", + value = "caveminecrystalformation01.m2", }, { fileId = "190805", - value = "caveminecrystalformation02.m2", text = "caveminecrystalformation02.m2", + value = "caveminecrystalformation02.m2", }, { fileId = "190806", - value = "caveminecrystalformation03.m2", text = "caveminecrystalformation03.m2", + value = "caveminecrystalformation03.m2", }, { fileId = "190807", - value = "caveminecrystalformation04.m2", text = "caveminecrystalformation04.m2", + value = "caveminecrystalformation04.m2", }, { fileId = "190808", - value = "caveminecrystalformation05.m2", text = "caveminecrystalformation05.m2", + value = "caveminecrystalformation05.m2", }, { fileId = "190809", - value = "caveminecrystalformation06.m2", text = "caveminecrystalformation06.m2", + value = "caveminecrystalformation06.m2", }, { fileId = "190810", - value = "caveminecrystalformation07.m2", text = "caveminecrystalformation07.m2", + value = "caveminecrystalformation07.m2", }, { fileId = "190811", - value = "caveminecrystalformation08.m2", text = "caveminecrystalformation08.m2", + value = "caveminecrystalformation08.m2", }, }, - value = "crystals", text = "crystals", + value = "crystals", }, { children = { { fileId = "190813", - value = "caveicicle1.m2", text = "caveicicle1.m2", + value = "caveicicle1.m2", }, { fileId = "190814", - value = "caveicicle2.m2", text = "caveicicle2.m2", + value = "caveicicle2.m2", }, }, - value = "icicles", text = "icicles", + value = "icicles", }, { children = { { fileId = "190815", - value = "stalagmite01.m2", text = "stalagmite01.m2", + value = "stalagmite01.m2", }, }, - value = "stalagmite", text = "stalagmite", + value = "stalagmite", }, { children = { { fileId = "190816", - value = "deadminesstalagtite01.m2", text = "deadminesstalagtite01.m2", + value = "deadminesstalagtite01.m2", }, { fileId = "190817", - value = "deadminesstalagtite02.m2", text = "deadminesstalagtite02.m2", + value = "deadminesstalagtite02.m2", }, { fileId = "190819", - value = "stalagtite01.m2", text = "stalagtite01.m2", + value = "stalagtite01.m2", }, { fileId = "190820", - value = "stalagtite02.m2", text = "stalagtite02.m2", + value = "stalagtite02.m2", }, }, - value = "stalagtite", text = "stalagtite", + value = "stalagtite", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "cave", text = "cave", + value = "cave", }, { children = { @@ -45880,16 +45858,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "190822", - value = "caverndoor.m2", text = "caverndoor.m2", + value = "caverndoor.m2", }, }, - value = "cavernsoftimedoor", text = "cavernsoftimedoor", + value = "cavernsoftimedoor", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -45897,153 +45875,153 @@ WeakAuras.ModelPaths = { children = { { fileId = "190823", - value = "cot_portalparticles.m2", text = "cot_portalparticles.m2", + value = "cot_portalparticles.m2", }, { fileId = "190824", - value = "cot_standingstone01.m2", text = "cot_standingstone01.m2", + value = "cot_standingstone01.m2", }, { fileId = "190825", - value = "cot_standingstone02.m2", text = "cot_standingstone02.m2", + value = "cot_standingstone02.m2", }, }, - value = "darkportal", text = "darkportal", + value = "darkportal", }, { children = { { fileId = "190828", - value = "energytrail01.m2", text = "energytrail01.m2", + value = "energytrail01.m2", }, { fileId = "190829", - value = "energytrail01b.m2", text = "energytrail01b.m2", + value = "energytrail01b.m2", }, { fileId = "190830", - value = "energytrail01c.m2", text = "energytrail01c.m2", + value = "energytrail01c.m2", }, { fileId = "190831", - value = "energytrail02.m2", text = "energytrail02.m2", + value = "energytrail02.m2", }, { fileId = "190832", - value = "energytrail02b.m2", text = "energytrail02b.m2", + value = "energytrail02b.m2", }, { fileId = "190833", - value = "energytrail03.m2", text = "energytrail03.m2", + value = "energytrail03.m2", }, { fileId = "190834", - value = "energytrail03b.m2", text = "energytrail03b.m2", + value = "energytrail03b.m2", }, { fileId = "190835", - value = "energytrail04.m2", text = "energytrail04.m2", + value = "energytrail04.m2", }, { fileId = "190836", - value = "energytrail04b.m2", text = "energytrail04b.m2", + value = "energytrail04b.m2", }, { fileId = "190837", - value = "energytrail05.m2", text = "energytrail05.m2", + value = "energytrail05.m2", }, { fileId = "190838", - value = "energytrail05b.m2", text = "energytrail05b.m2", + value = "energytrail05b.m2", }, { fileId = "190839", - value = "energytrail05c.m2", text = "energytrail05c.m2", + value = "energytrail05c.m2", }, { fileId = "190840", - value = "energytrailhourglass.m2", text = "energytrailhourglass.m2", + value = "energytrailhourglass.m2", }, { fileId = "190841", - value = "energytrailhourglassb.m2", text = "energytrailhourglassb.m2", + value = "energytrailhourglassb.m2", }, { fileId = "190842", - value = "energytrailhourglassblue.m2", text = "energytrailhourglassblue.m2", + value = "energytrailhourglassblue.m2", }, { fileId = "190843", - value = "energytrailhourglasspink.m2", text = "energytrailhourglasspink.m2", + value = "energytrailhourglasspink.m2", }, { fileId = "190844", - value = "energytrailhourglassred.m2", text = "energytrailhourglassred.m2", + value = "energytrailhourglassred.m2", }, }, - value = "energytrails", text = "energytrails", + value = "energytrails", }, { children = { { fileId = "190849", - value = "cot_hourglass.m2", text = "cot_hourglass.m2", + value = "cot_hourglass.m2", }, { fileId = "190850", - value = "cot_hourglass_redo.m2", text = "cot_hourglass_redo.m2", + value = "cot_hourglass_redo.m2", }, }, - value = "hourglass", text = "hourglass", + value = "hourglass", }, { children = { { fileId = "190858", - value = "cot_portal01.m2", text = "cot_portal01.m2", + value = "cot_portal01.m2", }, { fileId = "190859", - value = "cot_portalfx.m2", text = "cot_portalfx.m2", + value = "cot_portalfx.m2", }, }, - value = "portal", text = "portal", + value = "portal", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "cavernsoftime", text = "cavernsoftime", + value = "cavernsoftime", }, { children = { @@ -46053,88 +46031,88 @@ WeakAuras.ModelPaths = { children = { { fileId = "190869", - value = "caveminelantern01.m2", text = "caveminelantern01.m2", + value = "caveminelantern01.m2", }, { fileId = "190870", - value = "caveminelantern02.m2", text = "caveminelantern02.m2", + value = "caveminelantern02.m2", }, { fileId = "190871", - value = "caveminelantern03.m2", text = "caveminelantern03.m2", + value = "caveminelantern03.m2", }, }, - value = "cavelanterns", text = "cavelanterns", + value = "cavelanterns", }, { children = { { fileId = "190872", - value = "caveminekobold01.m2", text = "caveminekobold01.m2", + value = "caveminekobold01.m2", }, { fileId = "190873", - value = "caveminekobold02.m2", text = "caveminekobold02.m2", + value = "caveminekobold02.m2", }, { fileId = "190874", - value = "caveminekobold04.m2", text = "caveminekobold04.m2", + value = "caveminekobold04.m2", }, { fileId = "190875", - value = "caveminekobold05.m2", text = "caveminekobold05.m2", + value = "caveminekobold05.m2", }, { fileId = "190876", - value = "caveminekobold06.m2", text = "caveminekobold06.m2", + value = "caveminekobold06.m2", }, }, - value = "caveminekobolds", text = "caveminekobolds", + value = "caveminekobolds", }, { children = { { fileId = "190880", - value = "caveminespiderpillar01.m2", text = "caveminespiderpillar01.m2", + value = "caveminespiderpillar01.m2", }, }, - value = "caveminespiderpillar01", text = "caveminespiderpillar01", + value = "caveminespiderpillar01", }, { children = { { fileId = "190882", - value = "cavespiderweb01.m2", text = "cavespiderweb01.m2", + value = "cavespiderweb01.m2", }, { fileId = "190883", - value = "cavespiderweb02.m2", text = "cavespiderweb02.m2", + value = "cavespiderweb02.m2", }, }, - value = "cavespiderwebs", text = "cavespiderwebs", + value = "cavespiderwebs", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "goldmine", text = "goldmine", + value = "goldmine", }, { children = { @@ -46142,71 +46120,71 @@ WeakAuras.ModelPaths = { children = { { fileId = "190885", - value = "innbarrel.m2", text = "innbarrel.m2", + value = "innbarrel.m2", }, }, - value = "innbarrel", text = "innbarrel", + value = "innbarrel", }, { children = { { fileId = "190886", - value = "innbed.m2", text = "innbed.m2", + value = "innbed.m2", }, }, - value = "innbed", text = "innbed", + value = "innbed", }, { children = { { fileId = "190887", - value = "innbedcanopy.m2", text = "innbedcanopy.m2", + value = "innbedcanopy.m2", }, }, - value = "innbedcanopy", text = "innbedcanopy", + value = "innbedcanopy", }, { children = { { fileId = "190890", - value = "innchandelier.m2", text = "innchandelier.m2", + value = "innchandelier.m2", }, }, - value = "innchandelier", text = "innchandelier", + value = "innchandelier", }, { children = { { fileId = "190893", - value = "innlantern.m2", text = "innlantern.m2", + value = "innlantern.m2", }, }, - value = "innlantern", text = "innlantern", + value = "innlantern", }, { children = { { fileId = "190895", - value = "innpillow.m2", text = "innpillow.m2", + value = "innpillow.m2", }, }, - value = "innpillow", text = "innpillow", + value = "innpillow", }, }, - value = "goldshireinn", text = "goldshireinn", + value = "goldshireinn", }, { children = { @@ -46216,136 +46194,136 @@ WeakAuras.ModelPaths = { children = { { fileId = "190898", - value = "fishfountain.m2", text = "fishfountain.m2", + value = "fishfountain.m2", }, { fileId = "190900", - value = "monasteryfalls.m2", text = "monasteryfalls.m2", + value = "monasteryfalls.m2", }, }, - value = "fountains", text = "fountains", + value = "fountains", }, { children = { { fileId = "190914", - value = "statuedmmountainking.m2", text = "statuedmmountainking.m2", + value = "statuedmmountainking.m2", }, { fileId = "190915", - value = "statuefountain.m2", text = "statuefountain.m2", + value = "statuefountain.m2", }, { fileId = "190916", - value = "statuehefranger.m2", text = "statuehefranger.m2", + value = "statuehefranger.m2", }, { fileId = "190917", - value = "statuehemmage.m2", text = "statuehemmage.m2", + value = "statuehemmage.m2", }, { fileId = "190918", - value = "statuehfspear.m2", text = "statuehfspear.m2", + value = "statuehfspear.m2", }, { fileId = "190919", - value = "statuehfsunshield.m2", text = "statuehfsunshield.m2", + value = "statuehfsunshield.m2", }, { fileId = "190920", - value = "statuehfsunshieldclean.m2", text = "statuehfsunshieldclean.m2", + value = "statuehfsunshieldclean.m2", }, { fileId = "190921", - value = "statuehftwinblades.m2", text = "statuehftwinblades.m2", + value = "statuehftwinblades.m2", }, { fileId = "190922", - value = "statuehmcaptain.m2", text = "statuehmcaptain.m2", + value = "statuehmcaptain.m2", }, { fileId = "190923", - value = "statuehmcaptainclean.m2", text = "statuehmcaptainclean.m2", + value = "statuehmcaptainclean.m2", }, { fileId = "190924", - value = "statuehmcrusader.m2", text = "statuehmcrusader.m2", + value = "statuehmcrusader.m2", }, { fileId = "190925", - value = "statuehmcrusaderclean.m2", text = "statuehmcrusaderclean.m2", + value = "statuehmcrusaderclean.m2", }, { fileId = "190926", - value = "statuehmcrusadersoldier.m2", text = "statuehmcrusadersoldier.m2", + value = "statuehmcrusadersoldier.m2", }, { fileId = "190927", - value = "statuehmonearm.m2", text = "statuehmonearm.m2", + value = "statuehmonearm.m2", }, { fileId = "190928", - value = "statuehmpaladin.m2", text = "statuehmpaladin.m2", + value = "statuehmpaladin.m2", }, { fileId = "190929", - value = "statuehmpriest.m2", text = "statuehmpriest.m2", + value = "statuehmpriest.m2", }, }, - value = "statues", text = "statues", + value = "statues", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "scarletmonastery", text = "scarletmonastery", + value = "scarletmonastery", }, { children = { { fileId = "190933", - value = "sunwell_bushes.m2", text = "sunwell_bushes.m2", + value = "sunwell_bushes.m2", }, { fileId = "190934", - value = "sunwell_lamps.m2", text = "sunwell_lamps.m2", + value = "sunwell_lamps.m2", }, { fileId = "190935", - value = "sunwell_trees.m2", text = "sunwell_trees.m2", + value = "sunwell_trees.m2", }, }, - value = "sunwell", text = "sunwell", + value = "sunwell", }, }, - value = "dungeon", text = "dungeon", + value = "dungeon", }, { children = { @@ -46357,170 +46335,170 @@ WeakAuras.ModelPaths = { children = { { fileId = "190963", - value = "hive_fireflies_01.m2", text = "hive_fireflies_01.m2", + value = "hive_fireflies_01.m2", }, { fileId = "190964", - value = "hive_fireflies_large.m2", text = "hive_fireflies_large.m2", + value = "hive_fireflies_large.m2", }, }, - value = "fireflies", text = "fireflies", + value = "fireflies", }, { children = { { fileId = "190967", - value = "hive_lightshaft01.m2", text = "hive_lightshaft01.m2", + value = "hive_lightshaft01.m2", }, { fileId = "190968", - value = "hive_lightshaft02.m2", text = "hive_lightshaft02.m2", + value = "hive_lightshaft02.m2", }, }, - value = "lightshaft", text = "lightshaft", + value = "lightshaft", }, { children = { { fileId = "190970", - value = "hive_sand.m2", text = "hive_sand.m2", + value = "hive_sand.m2", }, { fileId = "190971", - value = "hive_sandwaterfall.m2", text = "hive_sandwaterfall.m2", + value = "hive_sandwaterfall.m2", }, }, - value = "sandwaterfall", text = "sandwaterfall", + value = "sandwaterfall", }, { children = { { fileId = "190974", - value = "hivesteam.m2", text = "hivesteam.m2", + value = "hivesteam.m2", }, }, - value = "steam", text = "steam", + value = "steam", }, }, - value = "anquiraj", text = "anquiraj", + value = "anquiraj", }, { children = { { fileId = "191009", - value = "animaltrainer.m2", text = "animaltrainer.m2", + value = "animaltrainer.m2", }, { fileId = "191016", - value = "carni_cannon.m2", text = "carni_cannon.m2", + value = "carni_cannon.m2", }, { fileId = "191018", - value = "carni_cannontarget.m2", text = "carni_cannontarget.m2", + value = "carni_cannontarget.m2", }, { fileId = "191019", - value = "carni_wagon01.m2", text = "carni_wagon01.m2", + value = "carni_wagon01.m2", }, { fileId = "191020", - value = "carni_wagon_empty01.m2", text = "carni_wagon_empty01.m2", + value = "carni_wagon_empty01.m2", }, { fileId = "191021", - value = "carnie_merchant01.m2", text = "carnie_merchant01.m2", + value = "carnie_merchant01.m2", }, { fileId = "191022", - value = "carnietent_small01.m2", text = "carnietent_small01.m2", + value = "carnietent_small01.m2", }, { fileId = "191023", - value = "carnival_banner01.m2", text = "carnival_banner01.m2", + value = "carnival_banner01.m2", }, { fileId = "191024", - value = "carnival_banner02.m2", text = "carnival_banner02.m2", + value = "carnival_banner02.m2", }, { fileId = "191025", - value = "carnivalrailing.m2", text = "carnivalrailing.m2", + value = "carnivalrailing.m2", }, { fileId = "191026", - value = "coketent.m2", text = "coketent.m2", + value = "coketent.m2", }, { fileId = "191029", - value = "darkmoonfaireposter.m2", text = "darkmoonfaireposter.m2", + value = "darkmoonfaireposter.m2", }, { fileId = "191031", - value = "foodvendor.m2", text = "foodvendor.m2", + value = "foodvendor.m2", }, { fileId = "191032", - value = "fortuneteller.m2", text = "fortuneteller.m2", + value = "fortuneteller.m2", }, { fileId = "191033", - value = "haybail01.m2", text = "haybail01.m2", + value = "haybail01.m2", }, { fileId = "191034", - value = "haybail02.m2", text = "haybail02.m2", + value = "haybail02.m2", }, { fileId = "191037", - value = "shoutbox.m2", text = "shoutbox.m2", + value = "shoutbox.m2", }, { fileId = "191038", - value = "souvenireshop.m2", text = "souvenireshop.m2", + value = "souvenireshop.m2", }, { fileId = "191039", - value = "targetpractice.m2", text = "targetpractice.m2", + value = "targetpractice.m2", }, { fileId = "191040", - value = "ticketmaster.m2", text = "ticketmaster.m2", + value = "ticketmaster.m2", }, }, - value = "carnival", text = "carnival", + value = "carnival", }, { children = { @@ -46528,46 +46506,46 @@ WeakAuras.ModelPaths = { children = { { fileId = "2198606", - value = "centaur_arch01.m2", text = "centaur_arch01.m2", + value = "centaur_arch01.m2", }, { fileId = "2198556", - value = "centaur_brokearch01.m2", text = "centaur_brokearch01.m2", + value = "centaur_brokearch01.m2", }, { fileId = "2198540", - value = "centaur_brokearch02.m2", text = "centaur_brokearch02.m2", + value = "centaur_brokearch02.m2", }, { fileId = "2198616", - value = "centaur_brokepillar01.m2", text = "centaur_brokepillar01.m2", + value = "centaur_brokepillar01.m2", }, { fileId = "2198523", - value = "centaur_pillar01.m2", text = "centaur_pillar01.m2", + value = "centaur_pillar01.m2", }, { fileId = "2198845", - value = "centaur_wall01.m2", text = "centaur_wall01.m2", + value = "centaur_wall01.m2", }, { fileId = "2198518", - value = "centaur_wall_ruin01.m2", text = "centaur_wall_ruin01.m2", + value = "centaur_wall_ruin01.m2", }, }, - value = "centaurruins", text = "centaurruins", + value = "centaurruins", }, }, - value = "desolace", text = "desolace", + value = "desolace", }, { children = { @@ -46575,134 +46553,134 @@ WeakAuras.ModelPaths = { children = { { fileId = "191084", - value = "altartidalmastery01.m2", text = "altartidalmastery01.m2", + value = "altartidalmastery01.m2", }, }, - value = "altaroftidalmastery", text = "altaroftidalmastery", + value = "altaroftidalmastery", }, { children = { { fileId = "191085", - value = "airrift.m2", text = "airrift.m2", + value = "airrift.m2", }, { fileId = "191087", - value = "earthrift.m2", text = "earthrift.m2", + value = "earthrift.m2", }, { fileId = "191088", - value = "firerift.m2", text = "firerift.m2", + value = "firerift.m2", }, { fileId = "191093", - value = "waterrift.m2", text = "waterrift.m2", + value = "waterrift.m2", }, }, - value = "elementalrifts", text = "elementalrifts", + value = "elementalrifts", }, { children = { { fileId = "191094", - value = "helpwantedposter.m2", text = "helpwantedposter.m2", + value = "helpwantedposter.m2", }, }, - value = "helpwantedposter", text = "helpwantedposter", + value = "helpwantedposter", }, { children = { { fileId = "191096", - value = "ne_lanternblue01.m2", text = "ne_lanternblue01.m2", + value = "ne_lanternblue01.m2", }, }, - value = "nightelflanternblue", text = "nightelflanternblue", + value = "nightelflanternblue", }, { children = { { fileId = "191098", - value = "ne_glaive01.m2", text = "ne_glaive01.m2", + value = "ne_glaive01.m2", }, { fileId = "191099", - value = "ne_glaive02.m2", text = "ne_glaive02.m2", + value = "ne_glaive02.m2", }, { fileId = "191100", - value = "ne_glaive03.m2", text = "ne_glaive03.m2", + value = "ne_glaive03.m2", }, { fileId = "191101", - value = "ne_glaive04.m2", text = "ne_glaive04.m2", + value = "ne_glaive04.m2", }, }, - value = "nightelfweapons", text = "nightelfweapons", + value = "nightelfweapons", }, { children = { { fileId = "191103", - value = "novagrave1.m2", text = "novagrave1.m2", + value = "novagrave1.m2", }, }, - value = "novagrave", text = "novagrave", + value = "novagrave", }, { children = { { fileId = "191107", - value = "horde_package01.m2", text = "horde_package01.m2", + value = "horde_package01.m2", }, }, - value = "package", text = "package", + value = "package", }, { children = { { fileId = "191109", - value = "paladinshrine.m2", text = "paladinshrine.m2", + value = "paladinshrine.m2", }, }, - value = "paladinshrine", text = "paladinshrine", + value = "paladinshrine", }, }, - value = "generaldoodads", text = "generaldoodads", + value = "generaldoodads", }, { children = { { fileId = "191177", - value = "icyrune01.m2", text = "icyrune01.m2", + value = "icyrune01.m2", }, }, - value = "naxxramas", text = "naxxramas", + value = "naxxramas", }, { children = { @@ -46710,21 +46688,21 @@ WeakAuras.ModelPaths = { children = { { fileId = "191217", - value = "plaguecauldronactive.m2", text = "plaguecauldronactive.m2", + value = "plaguecauldronactive.m2", }, { fileId = "191218", - value = "plaguecauldronactivebase.m2", text = "plaguecauldronactivebase.m2", + value = "plaguecauldronactivebase.m2", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, }, - value = "plaguelands", text = "plaguelands", + value = "plaguelands", }, { children = { @@ -46732,24 +46710,24 @@ WeakAuras.ModelPaths = { children = { { fileId = "191347", - value = "cracked_ice01.m2", text = "cracked_ice01.m2", + value = "cracked_ice01.m2", }, }, - value = "crackedice", text = "crackedice", + value = "crackedice", }, }, - value = "winterspringgrove", text = "winterspringgrove", + value = "winterspringgrove", }, }, - value = "doodad", text = "doodad", + value = "doodad", }, }, - value = "environment", text = "environment", + value = "environment", }, { children = { @@ -46763,30 +46741,30 @@ WeakAuras.ModelPaths = { children = { { fileId = "191370", - value = "arakkoahouse_interiorglow.m2", text = "arakkoahouse_interiorglow.m2", + value = "arakkoahouse_interiorglow.m2", }, { fileId = "191371", - value = "arakkoahut_interiorglow.m2", text = "arakkoahut_interiorglow.m2", + value = "arakkoahut_interiorglow.m2", }, { fileId = "191372", - value = "arakkoashack_insideglow.m2", text = "arakkoashack_insideglow.m2", + value = "arakkoashack_insideglow.m2", }, }, - value = "arakkoa_hut_glow", text = "arakkoa_hut_glow", + value = "arakkoa_hut_glow", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "arakkoa", text = "arakkoa", + value = "arakkoa", }, { children = { @@ -46796,195 +46774,195 @@ WeakAuras.ModelPaths = { children = { { fileId = "191379", - value = "auchindoun_bridge_fx.m2", text = "auchindoun_bridge_fx.m2", + value = "auchindoun_bridge_fx.m2", }, { fileId = "191380", - value = "auchindoun_bridge_spirits_floating.m2", text = "auchindoun_bridge_spirits_floating.m2", + value = "auchindoun_bridge_spirits_floating.m2", }, { fileId = "191381", - value = "auchindoun_bridge_spirits_flying.m2", text = "auchindoun_bridge_spirits_flying.m2", + value = "auchindoun_bridge_spirits_flying.m2", }, { fileId = "191382", - value = "auchindoun_bridge_spirits_simple.m2", text = "auchindoun_bridge_spirits_simple.m2", + value = "auchindoun_bridge_spirits_simple.m2", }, { fileId = "191383", - value = "auchindoun_bridge_swirl_filler.m2", text = "auchindoun_bridge_swirl_filler.m2", + value = "auchindoun_bridge_swirl_filler.m2", }, { fileId = "191384", - value = "auchindoun_bridge_volumelight.m2", text = "auchindoun_bridge_volumelight.m2", + value = "auchindoun_bridge_volumelight.m2", }, }, - value = "bridge_fx", text = "bridge_fx", + value = "bridge_fx", }, { children = { { fileId = "191395", - value = "ancient_d_coffin.m2", text = "ancient_d_coffin.m2", + value = "ancient_d_coffin.m2", }, }, - value = "coffin", text = "coffin", + value = "coffin", }, { children = { { fileId = "191398", - value = "auchindoun_door_swinging.m2", text = "auchindoun_door_swinging.m2", + value = "auchindoun_door_swinging.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, { children = { { fileId = "191399", - value = "auchindoun_ethereal_ribbon_type1.m2", text = "auchindoun_ethereal_ribbon_type1.m2", + value = "auchindoun_ethereal_ribbon_type1.m2", }, { fileId = "191400", - value = "auchindoun_ethereal_ribbon_type2.m2", text = "auchindoun_ethereal_ribbon_type2.m2", + value = "auchindoun_ethereal_ribbon_type2.m2", }, { fileId = "191401", - value = "auchindoun_ethereal_ribbon_type3.m2", text = "auchindoun_ethereal_ribbon_type3.m2", + value = "auchindoun_ethereal_ribbon_type3.m2", }, { fileId = "191402", - value = "auchindoun_ethereal_ribbon_type4.m2", text = "auchindoun_ethereal_ribbon_type4.m2", + value = "auchindoun_ethereal_ribbon_type4.m2", }, { fileId = "191403", - value = "auchindoun_ethereal_ribbon_type5.m2", text = "auchindoun_ethereal_ribbon_type5.m2", + value = "auchindoun_ethereal_ribbon_type5.m2", }, }, - value = "ethereal_ribbons", text = "ethereal_ribbons", + value = "ethereal_ribbons", }, { children = { { fileId = "191408", - value = "auch_etherreal_ribbon_type1_part_a.m2", text = "auch_etherreal_ribbon_type1_part_a.m2", + value = "auch_etherreal_ribbon_type1_part_a.m2", }, { fileId = "191409", - value = "auch_etherreal_ribbon_type1_part_b.m2", text = "auch_etherreal_ribbon_type1_part_b.m2", + value = "auch_etherreal_ribbon_type1_part_b.m2", }, { fileId = "191410", - value = "auch_etherreal_ribbon_type1_part_c.m2", text = "auch_etherreal_ribbon_type1_part_c.m2", + value = "auch_etherreal_ribbon_type1_part_c.m2", }, { fileId = "191411", - value = "auch_etherreal_ribbon_type2_part_a.m2", text = "auch_etherreal_ribbon_type2_part_a.m2", + value = "auch_etherreal_ribbon_type2_part_a.m2", }, { fileId = "191412", - value = "auch_etherreal_ribbon_type2_part_b.m2", text = "auch_etherreal_ribbon_type2_part_b.m2", + value = "auch_etherreal_ribbon_type2_part_b.m2", }, { fileId = "191413", - value = "auch_etherreal_ribbon_type2_part_c.m2", text = "auch_etherreal_ribbon_type2_part_c.m2", + value = "auch_etherreal_ribbon_type2_part_c.m2", }, { fileId = "191414", - value = "auch_etherreal_ribbon_type3_part_a.m2", text = "auch_etherreal_ribbon_type3_part_a.m2", + value = "auch_etherreal_ribbon_type3_part_a.m2", }, { fileId = "191415", - value = "auch_etherreal_ribbon_type3_part_b.m2", text = "auch_etherreal_ribbon_type3_part_b.m2", + value = "auch_etherreal_ribbon_type3_part_b.m2", }, { fileId = "191416", - value = "auch_etherreal_ribbon_type3_part_c.m2", text = "auch_etherreal_ribbon_type3_part_c.m2", + value = "auch_etherreal_ribbon_type3_part_c.m2", }, { fileId = "191417", - value = "auch_etherreal_ribbon_type4_part_a.m2", text = "auch_etherreal_ribbon_type4_part_a.m2", + value = "auch_etherreal_ribbon_type4_part_a.m2", }, { fileId = "191418", - value = "auch_etherreal_ribbon_type4_part_b.m2", text = "auch_etherreal_ribbon_type4_part_b.m2", + value = "auch_etherreal_ribbon_type4_part_b.m2", }, { fileId = "191419", - value = "auch_etherreal_ribbon_type4_part_c.m2", text = "auch_etherreal_ribbon_type4_part_c.m2", + value = "auch_etherreal_ribbon_type4_part_c.m2", }, { fileId = "191420", - value = "auch_etherreal_ribbon_type5_part_a.m2", text = "auch_etherreal_ribbon_type5_part_a.m2", + value = "auch_etherreal_ribbon_type5_part_a.m2", }, { fileId = "191421", - value = "auch_etherreal_ribbon_type5_part_b.m2", text = "auch_etherreal_ribbon_type5_part_b.m2", + value = "auch_etherreal_ribbon_type5_part_b.m2", }, { fileId = "191422", - value = "auch_etherreal_ribbon_type5_part_c.m2", text = "auch_etherreal_ribbon_type5_part_c.m2", + value = "auch_etherreal_ribbon_type5_part_c.m2", }, }, - value = "ethereal_ribbons_individual", text = "ethereal_ribbons_individual", + value = "ethereal_ribbons_individual", }, { children = { { fileId = "191425", - value = "draenei_spirit_head.m2", text = "draenei_spirit_head.m2", + value = "draenei_spirit_head.m2", }, { fileId = "191426", - value = "draenei_spirit_red.m2", text = "draenei_spirit_red.m2", + value = "draenei_spirit_red.m2", }, }, - value = "spirit_fx", text = "spirit_fx", + value = "spirit_fx", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "auchindoun", text = "auchindoun", + value = "auchindoun", }, { children = { @@ -46994,51 +46972,51 @@ WeakAuras.ModelPaths = { children = { { fileId = "191427", - value = "blacktemple_gen_door.m2", text = "blacktemple_gen_door.m2", + value = "blacktemple_gen_door.m2", }, { fileId = "191428", - value = "bt_commondoor.m2", text = "bt_commondoor.m2", + value = "bt_commondoor.m2", }, { fileId = "191430", - value = "bt_gate.m2", text = "bt_gate.m2", + value = "bt_gate.m2", }, { fileId = "191433", - value = "bt_gate_solid.m2", text = "bt_gate_solid.m2", + value = "bt_gate_solid.m2", }, { fileId = "191436", - value = "bt_illidan_door.m2", text = "bt_illidan_door.m2", + value = "bt_illidan_door.m2", }, { fileId = "191437", - value = "bt_illidan_door_left.m2", text = "bt_illidan_door_left.m2", + value = "bt_illidan_door_left.m2", }, { fileId = "191438", - value = "bt_illidan_door_right.m2", text = "bt_illidan_door_right.m2", + value = "bt_illidan_door_right.m2", }, { fileId = "191439", - value = "bt_maindoor.m2", text = "bt_maindoor.m2", + value = "bt_maindoor.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -47046,140 +47024,140 @@ WeakAuras.ModelPaths = { children = { { fileId = "191444", - value = "blacktemple_waterfall_type1.m2", text = "blacktemple_waterfall_type1.m2", + value = "blacktemple_waterfall_type1.m2", }, }, - value = "blueenergy", text = "blueenergy", + value = "blueenergy", }, { children = { { fileId = "191447", - value = "bt_brazier.m2", text = "bt_brazier.m2", + value = "bt_brazier.m2", }, { fileId = "191448", - value = "bt_brazier_blue.m2", text = "bt_brazier_blue.m2", + value = "bt_brazier_blue.m2", }, { fileId = "191449", - value = "bt_brazier_broken.m2", text = "bt_brazier_broken.m2", + value = "bt_brazier_broken.m2", }, { fileId = "191450", - value = "bt_brazier_green.m2", text = "bt_brazier_green.m2", + value = "bt_brazier_green.m2", }, { fileId = "191451", - value = "bt_brazier_red.m2", text = "bt_brazier_red.m2", + value = "bt_brazier_red.m2", }, { fileId = "191452", - value = "bt_brazier_violet.m2", text = "bt_brazier_violet.m2", + value = "bt_brazier_violet.m2", }, { fileId = "191453", - value = "bt_brazier_yellow.m2", text = "bt_brazier_yellow.m2", + value = "bt_brazier_yellow.m2", }, }, - value = "brazier", text = "brazier", + value = "brazier", }, { children = { { fileId = "191454", - value = "bt_drapes.m2", text = "bt_drapes.m2", + value = "bt_drapes.m2", }, }, - value = "drapes", text = "drapes", + value = "drapes", }, { children = { { fileId = "191467", - value = "bt_sewerfall.m2", text = "bt_sewerfall.m2", + value = "bt_sewerfall.m2", }, { fileId = "191468", - value = "bt_sewergutter_hall.m2", text = "bt_sewergutter_hall.m2", + value = "bt_sewergutter_hall.m2", }, { fileId = "191469", - value = "bt_sewergutter_section2.m2", text = "bt_sewergutter_section2.m2", + value = "bt_sewergutter_section2.m2", }, { fileId = "191470", - value = "bt_sewerramp.m2", text = "bt_sewerramp.m2", + value = "bt_sewerramp.m2", }, { fileId = "191471", - value = "bt_sewerwater_bossroom.m2", text = "bt_sewerwater_bossroom.m2", + value = "bt_sewerwater_bossroom.m2", }, { fileId = "191472", - value = "bt_sewerwater_section1.m2", text = "bt_sewerwater_section1.m2", + value = "bt_sewerwater_section1.m2", }, }, - value = "sewerwater", text = "sewerwater", + value = "sewerwater", }, { children = { { fileId = "191473", - value = "bt_statueeyes.m2", text = "bt_statueeyes.m2", + value = "bt_statueeyes.m2", }, { fileId = "191474", - value = "bt_statueeyes_green.m2", text = "bt_statueeyes_green.m2", + value = "bt_statueeyes_green.m2", }, }, - value = "statue", text = "statue", + value = "statue", }, { children = { { fileId = "191476", - value = "bt_vines01.m2", text = "bt_vines01.m2", + value = "bt_vines01.m2", }, { fileId = "191477", - value = "bt_vines02.m2", text = "bt_vines02.m2", + value = "bt_vines02.m2", }, }, - value = "vines", text = "vines", + value = "vines", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "blacktemple", text = "blacktemple", + value = "blacktemple", }, { children = { @@ -47187,59 +47165,59 @@ WeakAuras.ModelPaths = { children = { { fileId = "191478", - value = "bladesedgebush01.m2", text = "bladesedgebush01.m2", + value = "bladesedgebush01.m2", }, { fileId = "191479", - value = "bladesedgebush02.m2", text = "bladesedgebush02.m2", + value = "bladesedgebush02.m2", }, }, - value = "bush", text = "bush", + value = "bush", }, { children = { { fileId = "191482", - value = "darkportal_bladesedge_particles.m2", text = "darkportal_bladesedge_particles.m2", + value = "darkportal_bladesedge_particles.m2", }, }, - value = "darkportal", text = "darkportal", + value = "darkportal", }, { children = { { fileId = "191483", - value = "bem_dragon_01.m2", text = "bem_dragon_01.m2", + value = "bem_dragon_01.m2", }, { fileId = "191484", - value = "bem_dragon_02.m2", text = "bem_dragon_02.m2", + value = "bem_dragon_02.m2", }, { fileId = "191485", - value = "bem_dragon_03.m2", text = "bem_dragon_03.m2", + value = "bem_dragon_03.m2", }, { fileId = "191486", - value = "bem_dragon_04.m2", text = "bem_dragon_04.m2", + value = "bem_dragon_04.m2", }, { fileId = "191487", - value = "bem_dragon_05.m2", text = "bem_dragon_05.m2", + value = "bem_dragon_05.m2", }, }, - value = "dragon", text = "dragon", + value = "dragon", }, { children = { @@ -47247,329 +47225,329 @@ WeakAuras.ModelPaths = { children = { { fileId = "191488", - value = "ogrila_crystal01.m2", text = "ogrila_crystal01.m2", + value = "ogrila_crystal01.m2", }, { fileId = "191489", - value = "ogrila_crystal02.m2", text = "ogrila_crystal02.m2", + value = "ogrila_crystal02.m2", }, { fileId = "191490", - value = "ogrila_crystal03.m2", text = "ogrila_crystal03.m2", + value = "ogrila_crystal03.m2", }, }, - value = "ogrilacrystals", text = "ogrilacrystals", + value = "ogrilacrystals", }, { children = { { fileId = "191491", - value = "ogrila_banner.m2", text = "ogrila_banner.m2", + value = "ogrila_banner.m2", }, { fileId = "191492", - value = "ogrila_hut.m2", text = "ogrila_hut.m2", + value = "ogrila_hut.m2", }, }, - value = "ogrilahut", text = "ogrilahut", + value = "ogrilahut", }, }, - value = "ogrila", text = "ogrila", + value = "ogrila", }, { children = { { fileId = "191497", - value = "bladesedge_floatingsmall01.m2", text = "bladesedge_floatingsmall01.m2", + value = "bladesedge_floatingsmall01.m2", }, { fileId = "191498", - value = "bladesedge_floatingsmall02.m2", text = "bladesedge_floatingsmall02.m2", + value = "bladesedge_floatingsmall02.m2", }, { fileId = "191499", - value = "bladesedge_overhangrock_large_01.m2", text = "bladesedge_overhangrock_large_01.m2", + value = "bladesedge_overhangrock_large_01.m2", }, { fileId = "191500", - value = "bladesedge_overhangrock_large_02.m2", text = "bladesedge_overhangrock_large_02.m2", + value = "bladesedge_overhangrock_large_02.m2", }, { fileId = "191501", - value = "bladesedge_overhangrock_small_01.m2", text = "bladesedge_overhangrock_small_01.m2", + value = "bladesedge_overhangrock_small_01.m2", }, { fileId = "191502", - value = "bladesedge_overhangrock_small_02.m2", text = "bladesedge_overhangrock_small_02.m2", + value = "bladesedge_overhangrock_small_02.m2", }, { fileId = "191503", - value = "bladesedge_overhangrock_small_03.m2", text = "bladesedge_overhangrock_small_03.m2", + value = "bladesedge_overhangrock_small_03.m2", }, { fileId = "191504", - value = "bladesedgecliffrock01.m2", text = "bladesedgecliffrock01.m2", + value = "bladesedgecliffrock01.m2", }, { fileId = "191505", - value = "bladesedgecliffrock02.m2", text = "bladesedgecliffrock02.m2", + value = "bladesedgecliffrock02.m2", }, { fileId = "191506", - value = "bladesedgecliffrock03.m2", text = "bladesedgecliffrock03.m2", + value = "bladesedgecliffrock03.m2", }, { fileId = "191507", - value = "bladesedgegroundrock01.m2", text = "bladesedgegroundrock01.m2", + value = "bladesedgegroundrock01.m2", }, { fileId = "191508", - value = "bladesedgegroundrock02.m2", text = "bladesedgegroundrock02.m2", + value = "bladesedgegroundrock02.m2", }, { fileId = "191509", - value = "bladesedgegroundrock03.m2", text = "bladesedgegroundrock03.m2", + value = "bladesedgegroundrock03.m2", }, { fileId = "191510", - value = "bladesedgerock_finger01.m2", text = "bladesedgerock_finger01.m2", + value = "bladesedgerock_finger01.m2", }, { fileId = "191511", - value = "bladesedgerock_finger02.m2", text = "bladesedgerock_finger02.m2", + value = "bladesedgerock_finger02.m2", }, { fileId = "191512", - value = "bladesedgerock_finger03.m2", text = "bladesedgerock_finger03.m2", + value = "bladesedgerock_finger03.m2", }, { fileId = "191514", - value = "bladesedgerockarch01.m2", text = "bladesedgerockarch01.m2", + value = "bladesedgerockarch01.m2", }, { fileId = "191515", - value = "bladesedgerockarch02.m2", text = "bladesedgerockarch02.m2", + value = "bladesedgerockarch02.m2", }, { fileId = "191516", - value = "bladesedgerockbridge01.m2", text = "bladesedgerockbridge01.m2", + value = "bladesedgerockbridge01.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "191535", - value = "simongame_floatingcrystal.m2", text = "simongame_floatingcrystal.m2", + value = "simongame_floatingcrystal.m2", }, { fileId = "191536", - value = "simongame_largebase.m2", text = "simongame_largebase.m2", + value = "simongame_largebase.m2", }, { fileId = "191537", - value = "simongame_largebluetree.m2", text = "simongame_largebluetree.m2", + value = "simongame_largebluetree.m2", }, { fileId = "191538", - value = "simongame_largegreentree.m2", text = "simongame_largegreentree.m2", + value = "simongame_largegreentree.m2", }, { fileId = "191539", - value = "simongame_largeredtree.m2", text = "simongame_largeredtree.m2", + value = "simongame_largeredtree.m2", }, { fileId = "191540", - value = "simongame_largeyellowtree.m2", text = "simongame_largeyellowtree.m2", + value = "simongame_largeyellowtree.m2", }, { fileId = "191541", - value = "simongame_smallbluebase.m2", text = "simongame_smallbluebase.m2", + value = "simongame_smallbluebase.m2", }, { fileId = "191542", - value = "simongame_smallbluetree.m2", text = "simongame_smallbluetree.m2", + value = "simongame_smallbluetree.m2", }, { fileId = "191543", - value = "simongame_smallgreenbase.m2", text = "simongame_smallgreenbase.m2", + value = "simongame_smallgreenbase.m2", }, { fileId = "191544", - value = "simongame_smallgreentree.m2", text = "simongame_smallgreentree.m2", + value = "simongame_smallgreentree.m2", }, { fileId = "191545", - value = "simongame_smallredbase.m2", text = "simongame_smallredbase.m2", + value = "simongame_smallredbase.m2", }, { fileId = "191546", - value = "simongame_smallredtree.m2", text = "simongame_smallredtree.m2", + value = "simongame_smallredtree.m2", }, { fileId = "191547", - value = "simongame_smallyellowbase.m2", text = "simongame_smallyellowbase.m2", + value = "simongame_smallyellowbase.m2", }, { fileId = "191548", - value = "simongame_smallyellowtree.m2", text = "simongame_smallyellowtree.m2", + value = "simongame_smallyellowtree.m2", }, }, - value = "simon", text = "simon", + value = "simon", }, { children = { { fileId = "191550", - value = "bladesedgecrater01.m2", text = "bladesedgecrater01.m2", + value = "bladesedgecrater01.m2", }, { fileId = "191551", - value = "bladesedgetree01.m2", text = "bladesedgetree01.m2", + value = "bladesedgetree01.m2", }, { fileId = "191552", - value = "bladesedgetree02.m2", text = "bladesedgetree02.m2", + value = "bladesedgetree02.m2", }, { fileId = "191553", - value = "bladesedgetree03.m2", text = "bladesedgetree03.m2", + value = "bladesedgetree03.m2", }, { fileId = "191554", - value = "bladesedgetree04.m2", text = "bladesedgetree04.m2", + value = "bladesedgetree04.m2", }, { fileId = "191555", - value = "bladesedgetree05.m2", text = "bladesedgetree05.m2", + value = "bladesedgetree05.m2", }, { fileId = "191556", - value = "bladesedgetree06.m2", text = "bladesedgetree06.m2", + value = "bladesedgetree06.m2", }, { fileId = "191557", - value = "bladesedgetree07.m2", text = "bladesedgetree07.m2", + value = "bladesedgetree07.m2", }, { fileId = "191558", - value = "bladesedgetree08.m2", text = "bladesedgetree08.m2", + value = "bladesedgetree08.m2", }, { fileId = "191559", - value = "bladesedgetreestump.m2", text = "bladesedgetreestump.m2", + value = "bladesedgetreestump.m2", }, { fileId = "191561", - value = "bladesterokkarbush01.m2", text = "bladesterokkarbush01.m2", + value = "bladesterokkarbush01.m2", }, { fileId = "191562", - value = "bladesterokkarfallentree.m2", text = "bladesterokkarfallentree.m2", + value = "bladesterokkarfallentree.m2", }, { fileId = "191563", - value = "bladesterokkartreelarge.m2", text = "bladesterokkartreelarge.m2", + value = "bladesterokkartreelarge.m2", }, { fileId = "191564", - value = "bladesterokkartreemedium.m2", text = "bladesterokkartreemedium.m2", + value = "bladesterokkartreemedium.m2", }, { fileId = "191565", - value = "bladesterokkartreenoleaves01.m2", text = "bladesterokkartreenoleaves01.m2", + value = "bladesterokkartreenoleaves01.m2", }, { fileId = "191566", - value = "bladesterokkartreenoleaves02.m2", text = "bladesterokkartreenoleaves02.m2", + value = "bladesterokkartreenoleaves02.m2", }, { fileId = "191567", - value = "bladesterokkartreesapling.m2", text = "bladesterokkartreesapling.m2", + value = "bladesterokkartreesapling.m2", }, { fileId = "191568", - value = "bladesterokkartreesmall.m2", text = "bladesterokkartreesmall.m2", + value = "bladesterokkartreesmall.m2", }, { fileId = "191569", - value = "bladesterokkartreestump.m2", text = "bladesterokkartreestump.m2", + value = "bladesterokkartreestump.m2", }, { fileId = "191570", - value = "bladesterokkartreestump02.m2", text = "bladesterokkartreestump02.m2", + value = "bladesterokkartreestump02.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "bladesedge", text = "bladesedge", + value = "bladesedge", }, { children = { @@ -47577,226 +47555,226 @@ WeakAuras.ModelPaths = { children = { { fileId = "191576", - value = "bloodmyst_be_portal.m2", text = "bloodmyst_be_portal.m2", + value = "bloodmyst_be_portal.m2", }, }, - value = "be_portal", text = "be_portal", + value = "be_portal", }, { children = { { fileId = "191579", - value = "bloodmystcrystal01.m2", text = "bloodmystcrystal01.m2", + value = "bloodmystcrystal01.m2", }, { fileId = "191580", - value = "bloodmystcrystal02.m2", text = "bloodmystcrystal02.m2", + value = "bloodmystcrystal02.m2", }, { fileId = "191581", - value = "bloodmystcrystal03.m2", text = "bloodmystcrystal03.m2", + value = "bloodmystcrystal03.m2", }, { fileId = "191583", - value = "bloodmystcrystalaparatus01.m2", text = "bloodmystcrystalaparatus01.m2", + value = "bloodmystcrystalaparatus01.m2", }, { fileId = "191584", - value = "bloodmystcrystalbig01_corrupted.m2", text = "bloodmystcrystalbig01_corrupted.m2", + value = "bloodmystcrystalbig01_corrupted.m2", }, { fileId = "191585", - value = "bloodmystcrystalbig02_corrupted.m2", text = "bloodmystcrystalbig02_corrupted.m2", + value = "bloodmystcrystalbig02_corrupted.m2", }, { fileId = "191586", - value = "bloodmystcrystalbig03_corrupted.m2", text = "bloodmystcrystalbig03_corrupted.m2", + value = "bloodmystcrystalbig03_corrupted.m2", }, { fileId = "191588", - value = "bloodmystcrystalfloating01.m2", text = "bloodmystcrystalfloating01.m2", + value = "bloodmystcrystalfloating01.m2", }, { fileId = "191589", - value = "bloodmystcrystalsmall01_corrupted.m2", text = "bloodmystcrystalsmall01_corrupted.m2", + value = "bloodmystcrystalsmall01_corrupted.m2", }, { fileId = "191590", - value = "bloodmystcrystalsmall02_corrupted.m2", text = "bloodmystcrystalsmall02_corrupted.m2", + value = "bloodmystcrystalsmall02_corrupted.m2", }, { fileId = "191591", - value = "bloodmystcrystalsmall03_corrupted.m2", text = "bloodmystcrystalsmall03_corrupted.m2", + value = "bloodmystcrystalsmall03_corrupted.m2", }, }, - value = "crystals", text = "crystals", + value = "crystals", }, { children = { { fileId = "191594", - value = "bloodmyst_powercore.m2", text = "bloodmyst_powercore.m2", + value = "bloodmyst_powercore.m2", }, { fileId = "191614", - value = "powercore_coil_fx.m2", text = "powercore_coil_fx.m2", + value = "powercore_coil_fx.m2", }, }, - value = "powercore", text = "powercore", + value = "powercore", }, { children = { { fileId = "191616", - value = "bloodmystrockrune01.m2", text = "bloodmystrockrune01.m2", + value = "bloodmystrockrune01.m2", }, { fileId = "191618", - value = "bloodmystrockrune02.m2", text = "bloodmystrockrune02.m2", + value = "bloodmystrockrune02.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "191627", - value = "bloodmystbush01.m2", text = "bloodmystbush01.m2", + value = "bloodmystbush01.m2", }, { fileId = "191628", - value = "bloodmystbush02.m2", text = "bloodmystbush02.m2", + value = "bloodmystbush02.m2", }, { fileId = "191629", - value = "bloodmystbush03.m2", text = "bloodmystbush03.m2", + value = "bloodmystbush03.m2", }, { fileId = "191631", - value = "bloodmystredwaterfall.m2", text = "bloodmystredwaterfall.m2", + value = "bloodmystredwaterfall.m2", }, { fileId = "191632", - value = "bloodmysttree01.m2", text = "bloodmysttree01.m2", + value = "bloodmysttree01.m2", }, { fileId = "191633", - value = "bloodmysttree01_web.m2", text = "bloodmysttree01_web.m2", + value = "bloodmysttree01_web.m2", }, { fileId = "191634", - value = "bloodmysttree02.m2", text = "bloodmysttree02.m2", + value = "bloodmysttree02.m2", }, { fileId = "191635", - value = "bloodmysttree02_web.m2", text = "bloodmysttree02_web.m2", + value = "bloodmysttree02_web.m2", }, { fileId = "191636", - value = "bloodmysttree03_web.m2", text = "bloodmysttree03_web.m2", + value = "bloodmysttree03_web.m2", }, { fileId = "191637", - value = "bloodmysttree07_web.m2", text = "bloodmysttree07_web.m2", + value = "bloodmysttree07_web.m2", }, { fileId = "191638", - value = "bloodmysttreecrystal01.m2", text = "bloodmysttreecrystal01.m2", + value = "bloodmysttreecrystal01.m2", }, { fileId = "191639", - value = "bloodmysttreecrystal02.m2", text = "bloodmysttreecrystal02.m2", + value = "bloodmysttreecrystal02.m2", }, { fileId = "191640", - value = "bloodmysttreefallen.m2", text = "bloodmysttreefallen.m2", + value = "bloodmysttreefallen.m2", }, { fileId = "191641", - value = "bloodmysttreerunes01.m2", text = "bloodmysttreerunes01.m2", + value = "bloodmysttreerunes01.m2", }, { fileId = "191642", - value = "bloodmysttreerunes02.m2", text = "bloodmysttreerunes02.m2", + value = "bloodmysttreerunes02.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "191644", - value = "cocoon_yellow.m2", text = "cocoon_yellow.m2", + value = "cocoon_yellow.m2", }, { fileId = "191645", - value = "cocoontrap_yellow.m2", text = "cocoontrap_yellow.m2", + value = "cocoontrap_yellow.m2", }, { fileId = "191648", - value = "nastyspiderweb_yellow.m2", text = "nastyspiderweb_yellow.m2", + value = "nastyspiderweb_yellow.m2", }, { fileId = "191651", - value = "spidereggsack_yellow.m2", text = "spidereggsack_yellow.m2", + value = "spidereggsack_yellow.m2", }, { fileId = "191652", - value = "spidereggsground_yellow.m2", text = "spidereggsground_yellow.m2", + value = "spidereggsground_yellow.m2", }, { fileId = "191656", - value = "webdangle_yellow.m2", text = "webdangle_yellow.m2", + value = "webdangle_yellow.m2", }, }, - value = "webs", text = "webs", + value = "webs", }, }, - value = "bloodmyst", text = "bloodmyst", + value = "bloodmyst", }, { children = { @@ -47804,52 +47782,52 @@ WeakAuras.ModelPaths = { children = { { fileId = "191658", - value = "bonewastesboneshrine01.m2", text = "bonewastesboneshrine01.m2", + value = "bonewastesboneshrine01.m2", }, }, - value = "boneshrine", text = "boneshrine", + value = "boneshrine", }, { children = { { fileId = "191661", - value = "bonewastestreetrunk01.m2", text = "bonewastestreetrunk01.m2", + value = "bonewastestreetrunk01.m2", }, { fileId = "191663", - value = "bonewastestreetrunk02.m2", text = "bonewastestreetrunk02.m2", + value = "bonewastestreetrunk02.m2", }, { fileId = "191664", - value = "bonewastestreetrunk03.m2", text = "bonewastestreetrunk03.m2", + value = "bonewastestreetrunk03.m2", }, { fileId = "191665", - value = "bonewastestreetrunk04.m2", text = "bonewastestreetrunk04.m2", + value = "bonewastestreetrunk04.m2", }, { fileId = "191666", - value = "bonewastestreetrunk05.m2", text = "bonewastestreetrunk05.m2", + value = "bonewastestreetrunk05.m2", }, { fileId = "191667", - value = "bonewastestreetrunk06.m2", text = "bonewastestreetrunk06.m2", + value = "bonewastestreetrunk06.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "bonewastes", text = "bonewastes", + value = "bonewastes", }, { children = { @@ -47859,107 +47837,96 @@ WeakAuras.ModelPaths = { children = { { fileId = "191668", - value = "cf_elevatorplatform.m2", text = "cf_elevatorplatform.m2", + value = "cf_elevatorplatform.m2", }, { fileId = "191669", - value = "cf_elevatorplatform_small.m2", text = "cf_elevatorplatform_small.m2", + value = "cf_elevatorplatform_small.m2", }, }, - value = "elevator", text = "elevator", - }, - { - children = { - { - fileId = "191671", - value = "coilfang towers e_particle.m2", - text = "coilfang towers e_particle.m2", - }, - }, - value = "energytower", - text = "energytower", + value = "elevator", }, { children = { { fileId = "191683", - value = "coilfang_pumpingdoor.m2", text = "coilfang_pumpingdoor.m2", + value = "coilfang_pumpingdoor.m2", }, }, - value = "pumpingdoor", text = "pumpingdoor", + value = "pumpingdoor", }, { children = { { fileId = "191688", - value = "coilfang_raid_bridge_part1.m2", text = "coilfang_raid_bridge_part1.m2", + value = "coilfang_raid_bridge_part1.m2", }, { fileId = "191689", - value = "coilfang_raid_bridge_part2.m2", text = "coilfang_raid_bridge_part2.m2", + value = "coilfang_raid_bridge_part2.m2", }, { fileId = "191690", - value = "coilfang_raid_bridge_part3.m2", text = "coilfang_raid_bridge_part3.m2", + value = "coilfang_raid_bridge_part3.m2", }, }, - value = "raid_bridge", text = "raid_bridge", + value = "raid_bridge", }, { children = { { fileId = "191705", - value = "coilfang_raid_bridge_controls.m2", text = "coilfang_raid_bridge_controls.m2", + value = "coilfang_raid_bridge_controls.m2", }, { fileId = "191706", - value = "coilfang_raid_console.m2", text = "coilfang_raid_console.m2", + value = "coilfang_raid_console.m2", }, { fileId = "191707", - value = "coilfang_raid_gate.m2", text = "coilfang_raid_gate.m2", + value = "coilfang_raid_gate.m2", }, }, - value = "raid_bridge_control", text = "raid_bridge_control", + value = "raid_bridge_control", }, { children = { { fileId = "191715", - value = "coilfang_raid_door.m2", text = "coilfang_raid_door.m2", + value = "coilfang_raid_door.m2", }, }, - value = "raid_door", text = "raid_door", + value = "raid_door", }, { children = { { fileId = "191724", - value = "coilfang_steam_off_on.m2", text = "coilfang_steam_off_on.m2", + value = "coilfang_steam_off_on.m2", }, }, - value = "steam", text = "steam", + value = "steam", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -47967,195 +47934,195 @@ WeakAuras.ModelPaths = { children = { { fileId = "191725", - value = "coilfang_blue_energy.m2", text = "coilfang_blue_energy.m2", + value = "coilfang_blue_energy.m2", }, }, - value = "blueenergy", text = "blueenergy", + value = "blueenergy", }, { children = { { fileId = "191727", - value = "cf_groundcage.m2", text = "cf_groundcage.m2", + value = "cf_groundcage.m2", }, { fileId = "191728", - value = "cf_hangingcage.m2", text = "cf_hangingcage.m2", + value = "cf_hangingcage.m2", }, }, - value = "cages", text = "cages", + value = "cages", }, { children = { { fileId = "191729", - value = "coilfang_circularlightwindow_blue.m2", text = "coilfang_circularlightwindow_blue.m2", + value = "coilfang_circularlightwindow_blue.m2", }, { fileId = "191730", - value = "coilfang_floor_light.m2", text = "coilfang_floor_light.m2", + value = "coilfang_floor_light.m2", }, { fileId = "191731", - value = "coilfang_orb.m2", text = "coilfang_orb.m2", + value = "coilfang_orb.m2", }, { fileId = "191732", - value = "coilfang_orb_orange.m2", text = "coilfang_orb_orange.m2", + value = "coilfang_orb_orange.m2", }, { fileId = "191733", - value = "coilfang_wall_light.m2", text = "coilfang_wall_light.m2", + value = "coilfang_wall_light.m2", }, }, - value = "lights", text = "lights", + value = "lights", }, { children = { { fileId = "191745", - value = "zangarmushroom06_blueglow.m2", text = "zangarmushroom06_blueglow.m2", + value = "zangarmushroom06_blueglow.m2", }, { fileId = "191746", - value = "zangarmushroom07_blueglow.m2", text = "zangarmushroom07_blueglow.m2", + value = "zangarmushroom07_blueglow.m2", }, }, - value = "mushrooms", text = "mushrooms", + value = "mushrooms", }, { children = { { fileId = "191747", - value = "cf_pipea.m2", text = "cf_pipea.m2", + value = "cf_pipea.m2", }, { fileId = "191748", - value = "cf_pipeb.m2", text = "cf_pipeb.m2", + value = "cf_pipeb.m2", }, { fileId = "191749", - value = "cf_pipec.m2", text = "cf_pipec.m2", + value = "cf_pipec.m2", }, }, - value = "pipepieces", text = "pipepieces", + value = "pipepieces", }, { children = { { fileId = "191752", - value = "coilfang_pump.m2", text = "coilfang_pump.m2", + value = "coilfang_pump.m2", }, { fileId = "191753", - value = "coilfang_pump_raidwater.m2", text = "coilfang_pump_raidwater.m2", + value = "coilfang_pump_raidwater.m2", }, }, - value = "pump", text = "pump", + value = "pump", }, { children = { { fileId = "191756", - value = "cf_raid_giantpump.m2", text = "cf_raid_giantpump.m2", + value = "cf_raid_giantpump.m2", }, }, - value = "raid", text = "raid", + value = "raid", }, { children = { { fileId = "191760", - value = "cf_railing.m2", text = "cf_railing.m2", + value = "cf_railing.m2", }, }, - value = "railing", text = "railing", + value = "railing", }, { children = { { fileId = "191762", - value = "coilfang_steam.m2", text = "coilfang_steam.m2", + value = "coilfang_steam.m2", }, { fileId = "191763", - value = "coilfang_steam_choppy.m2", text = "coilfang_steam_choppy.m2", + value = "coilfang_steam_choppy.m2", }, }, - value = "steam", text = "steam", + value = "steam", }, { children = { { fileId = "191766", - value = "coilfang_marsh_waterfall.m2", text = "coilfang_marsh_waterfall.m2", + value = "coilfang_marsh_waterfall.m2", }, { fileId = "191767", - value = "coilfang_waterfall_type1.m2", text = "coilfang_waterfall_type1.m2", + value = "coilfang_waterfall_type1.m2", }, { fileId = "191768", - value = "coilfang_waterfall_type2.m2", text = "coilfang_waterfall_type2.m2", + value = "coilfang_waterfall_type2.m2", }, { fileId = "191769", - value = "coilfang_waterfall_type3.m2", text = "coilfang_waterfall_type3.m2", + value = "coilfang_waterfall_type3.m2", }, }, - value = "waterfalls", text = "waterfalls", + value = "waterfalls", }, { children = { { fileId = "191770", - value = "giantglasswindow01.m2", text = "giantglasswindow01.m2", + value = "giantglasswindow01.m2", }, }, - value = "windows", text = "windows", + value = "windows", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "coilfang", text = "coilfang", + value = "coilfang", }, { children = { @@ -48163,58 +48130,58 @@ WeakAuras.ModelPaths = { children = { { fileId = "191771", - value = "be_fence_eversong01.m2", text = "be_fence_eversong01.m2", + value = "be_fence_eversong01.m2", }, { fileId = "191772", - value = "be_fence_eversong02.m2", text = "be_fence_eversong02.m2", + value = "be_fence_eversong02.m2", }, { fileId = "191773", - value = "be_fence_eversong03.m2", text = "be_fence_eversong03.m2", + value = "be_fence_eversong03.m2", }, }, - value = "fence", text = "fence", + value = "fence", }, { children = { { fileId = "191775", - value = "be_lamppost_eversong01-optimized.m2", text = "be_lamppost_eversong01-optimized.m2", + value = "be_lamppost_eversong01-optimized.m2", }, { fileId = "191776", - value = "be_lamppost_eversong01.m2", text = "be_lamppost_eversong01.m2", + value = "be_lamppost_eversong01.m2", }, }, - value = "lamppost", text = "lamppost", + value = "lamppost", }, { children = { { fileId = "191777", - value = "be_signpost_eversong.m2", text = "be_signpost_eversong.m2", + value = "be_signpost_eversong.m2", }, { fileId = "191778", - value = "be_signpost_sign_eversong.m2", text = "be_signpost_sign_eversong.m2", + value = "be_signpost_sign_eversong.m2", }, }, - value = "signpost", text = "signpost", + value = "signpost", }, }, - value = "eversong", text = "eversong", + value = "eversong", }, { children = { @@ -48224,406 +48191,406 @@ WeakAuras.ModelPaths = { children = { { fileId = "191780", - value = "ao_banner01.m2", text = "ao_banner01.m2", + value = "ao_banner01.m2", }, { fileId = "191781", - value = "ao_banner02.m2", text = "ao_banner02.m2", + value = "ao_banner02.m2", }, { fileId = "191783", - value = "ao_wall_hanging_01.m2", text = "ao_wall_hanging_01.m2", + value = "ao_wall_hanging_01.m2", }, { fileId = "191784", - value = "ao_wall_hanging_02.m2", text = "ao_wall_hanging_02.m2", + value = "ao_wall_hanging_02.m2", }, { fileId = "191785", - value = "ao_wall_hanging_03.m2", text = "ao_wall_hanging_03.m2", + value = "ao_wall_hanging_03.m2", }, { fileId = "191786", - value = "ao_wall_hanging_04.m2", text = "ao_wall_hanging_04.m2", + value = "ao_wall_hanging_04.m2", }, }, - value = "banners", text = "banners", + value = "banners", }, { children = { { fileId = "191787", - value = "ao_barrel01.m2", text = "ao_barrel01.m2", + value = "ao_barrel01.m2", }, }, - value = "barrel", text = "barrel", + value = "barrel", }, { children = { { fileId = "191790", - value = "ao_boardwalk01.m2", text = "ao_boardwalk01.m2", + value = "ao_boardwalk01.m2", }, { fileId = "191791", - value = "ao_boardwalk02.m2", text = "ao_boardwalk02.m2", + value = "ao_boardwalk02.m2", }, { fileId = "191792", - value = "ao_boardwalk03.m2", text = "ao_boardwalk03.m2", + value = "ao_boardwalk03.m2", }, { fileId = "191793", - value = "ao_boardwalk04.m2", text = "ao_boardwalk04.m2", + value = "ao_boardwalk04.m2", }, { fileId = "191794", - value = "ao_boardwalk05.m2", text = "ao_boardwalk05.m2", + value = "ao_boardwalk05.m2", }, { fileId = "191795", - value = "ao_boardwalk_corner.m2", text = "ao_boardwalk_corner.m2", + value = "ao_boardwalk_corner.m2", }, }, - value = "boardwalk", text = "boardwalk", + value = "boardwalk", }, { children = { { fileId = "191796", - value = "ao_bridgelong01.m2", text = "ao_bridgelong01.m2", + value = "ao_bridgelong01.m2", }, { fileId = "191797", - value = "ao_bridgelong02.m2", text = "ao_bridgelong02.m2", + value = "ao_bridgelong02.m2", }, { fileId = "191798", - value = "ao_bridgerock01.m2", text = "ao_bridgerock01.m2", + value = "ao_bridgerock01.m2", }, { fileId = "191801", - value = "ao_bridgetree01.m2", text = "ao_bridgetree01.m2", + value = "ao_bridgetree01.m2", }, }, - value = "bridgepieces", text = "bridgepieces", + value = "bridgepieces", }, { children = { { fileId = "191802", - value = "ao_orccrate01.m2", text = "ao_orccrate01.m2", + value = "ao_orccrate01.m2", }, { fileId = "191803", - value = "ao_orccrate02.m2", text = "ao_orccrate02.m2", + value = "ao_orccrate02.m2", }, { fileId = "191804", - value = "ao_orccrate03.m2", text = "ao_orccrate03.m2", + value = "ao_orccrate03.m2", }, }, - value = "crates", text = "crates", + value = "crates", }, { children = { { fileId = "191807", - value = "ao_lamppost01.m2", text = "ao_lamppost01.m2", + value = "ao_lamppost01.m2", }, { fileId = "191808", - value = "ao_lamppost02.m2", text = "ao_lamppost02.m2", + value = "ao_lamppost02.m2", }, }, - value = "lampost", text = "lampost", + value = "lampost", }, { children = { { fileId = "191809", - value = "ao_outpostwall01.m2", text = "ao_outpostwall01.m2", + value = "ao_outpostwall01.m2", }, { fileId = "191810", - value = "ao_outpostwall02.m2", text = "ao_outpostwall02.m2", + value = "ao_outpostwall02.m2", }, { fileId = "191811", - value = "ao_outpostwall03.m2", text = "ao_outpostwall03.m2", + value = "ao_outpostwall03.m2", }, { fileId = "191812", - value = "ao_outpostwall04.m2", text = "ao_outpostwall04.m2", + value = "ao_outpostwall04.m2", }, { fileId = "191813", - value = "ao_outpostwall05.m2", text = "ao_outpostwall05.m2", + value = "ao_outpostwall05.m2", }, { fileId = "191814", - value = "ao_outpostwall06.m2", text = "ao_outpostwall06.m2", + value = "ao_outpostwall06.m2", }, { fileId = "191815", - value = "ao_outpostwall07.m2", text = "ao_outpostwall07.m2", + value = "ao_outpostwall07.m2", }, }, - value = "outpostwalls", text = "outpostwalls", + value = "outpostwalls", }, { children = { { fileId = "191817", - value = "ao_pyre01.m2", text = "ao_pyre01.m2", + value = "ao_pyre01.m2", }, { fileId = "191818", - value = "ao_pyre02.m2", text = "ao_pyre02.m2", + value = "ao_pyre02.m2", }, }, - value = "pyres", text = "pyres", + value = "pyres", }, { children = { { fileId = "191820", - value = "ao_signpost01.m2", text = "ao_signpost01.m2", + value = "ao_signpost01.m2", }, { fileId = "191821", - value = "ao_signpostpointer01.m2", text = "ao_signpostpointer01.m2", + value = "ao_signpostpointer01.m2", }, }, - value = "signposts", text = "signposts", + value = "signposts", }, { children = { { fileId = "191822", - value = "ao_sticks_01.m2", text = "ao_sticks_01.m2", + value = "ao_sticks_01.m2", }, }, - value = "sticks", text = "sticks", + value = "sticks", }, { children = { { fileId = "191823", - value = "ao_totem01.m2", text = "ao_totem01.m2", + value = "ao_totem01.m2", }, }, - value = "totem", text = "totem", + value = "totem", }, { children = { { fileId = "191824", - value = "ao_windmill.m2", text = "ao_windmill.m2", + value = "ao_windmill.m2", }, }, - value = "windmill", text = "windmill", + value = "windmill", }, }, - value = "ancientorc", text = "ancientorc", + value = "ancientorc", }, { children = { { fileId = "191825", - value = "ak_alchemybottle01.m2", text = "ak_alchemybottle01.m2", + value = "ak_alchemybottle01.m2", }, { fileId = "191826", - value = "ak_alchemybottle02.m2", text = "ak_alchemybottle02.m2", + value = "ak_alchemybottle02.m2", }, { fileId = "191827", - value = "ak_alchemybottle03.m2", text = "ak_alchemybottle03.m2", + value = "ak_alchemybottle03.m2", }, { children = { { fileId = "191829", - value = "ak_banner01.m2", text = "ak_banner01.m2", + value = "ak_banner01.m2", }, }, - value = "banners", text = "banners", + value = "banners", }, { children = { { fileId = "191830", - value = "ak_crystalball01.m2", text = "ak_crystalball01.m2", + value = "ak_crystalball01.m2", }, { fileId = "191831", - value = "ak_crystalball02.m2", text = "ak_crystalball02.m2", + value = "ak_crystalball02.m2", }, }, - value = "crystalball", text = "crystalball", + value = "crystalball", }, { children = { { fileId = "191832", - value = "ak_egg01.m2", text = "ak_egg01.m2", + value = "ak_egg01.m2", }, { fileId = "191833", - value = "ak_egg02.m2", text = "ak_egg02.m2", + value = "ak_egg02.m2", }, { fileId = "191834", - value = "ak_nest01.m2", text = "ak_nest01.m2", + value = "ak_nest01.m2", }, { fileId = "191835", - value = "ak_nestdebris01.m2", text = "ak_nestdebris01.m2", + value = "ak_nestdebris01.m2", }, }, - value = "nest", text = "nest", + value = "nest", }, { children = { { fileId = "191839", - value = "ak_scarecrow01.m2", text = "ak_scarecrow01.m2", + value = "ak_scarecrow01.m2", }, }, - value = "scarecrow", text = "scarecrow", + value = "scarecrow", }, { children = { { fileId = "191841", - value = "ak_shelter01.m2", text = "ak_shelter01.m2", + value = "ak_shelter01.m2", }, { fileId = "191842", - value = "ak_shelter02.m2", text = "ak_shelter02.m2", + value = "ak_shelter02.m2", }, { fileId = "191843", - value = "ak_shelter03.m2", text = "ak_shelter03.m2", + value = "ak_shelter03.m2", }, }, - value = "shelters", text = "shelters", + value = "shelters", }, { children = { { fileId = "191858", - value = "ak_torch01.m2", text = "ak_torch01.m2", + value = "ak_torch01.m2", }, }, - value = "torch", text = "torch", + value = "torch", }, { children = { { fileId = "191859", - value = "ak_totem01.m2", text = "ak_totem01.m2", + value = "ak_totem01.m2", }, { fileId = "191860", - value = "ak_totem02.m2", text = "ak_totem02.m2", + value = "ak_totem02.m2", }, }, - value = "totem", text = "totem", + value = "totem", }, { children = { { fileId = "191863", - value = "ak_alchemyset01.m2", text = "ak_alchemyset01.m2", + value = "ak_alchemyset01.m2", }, { fileId = "191864", - value = "ak_blacksmithset01.m2", text = "ak_blacksmithset01.m2", + value = "ak_blacksmithset01.m2", }, }, - value = "tradeskill", text = "tradeskill", + value = "tradeskill", }, }, - value = "arakkoa", text = "arakkoa", + value = "arakkoa", }, { children = { @@ -48631,1627 +48598,1627 @@ WeakAuras.ModelPaths = { children = { { fileId = "191874", - value = "be_ballista01.m2", text = "be_ballista01.m2", + value = "be_ballista01.m2", }, { fileId = "191875", - value = "be_ballistaarm.m2", text = "be_ballistaarm.m2", + value = "be_ballistaarm.m2", }, { fileId = "191876", - value = "be_ballistarail.m2", text = "be_ballistarail.m2", + value = "be_ballistarail.m2", }, { fileId = "191877", - value = "be_ballistashield.m2", text = "be_ballistashield.m2", + value = "be_ballistashield.m2", }, { fileId = "191878", - value = "be_ballistaslide.m2", text = "be_ballistaslide.m2", + value = "be_ballistaslide.m2", }, { fileId = "191879", - value = "be_ballistawheel.m2", text = "be_ballistawheel.m2", + value = "be_ballistawheel.m2", }, { fileId = "191880", - value = "be_ballistawinch.m2", text = "be_ballistawinch.m2", + value = "be_ballistawinch.m2", }, { fileId = "191882", - value = "be_ballistawrecked01.m2", text = "be_ballistawrecked01.m2", + value = "be_ballistawrecked01.m2", }, { fileId = "191885", - value = "be_statueghostlands01.m2", text = "be_statueghostlands01.m2", + value = "be_statueghostlands01.m2", }, }, - value = "ballista", text = "ballista", + value = "ballista", }, { children = { { fileId = "191887", - value = "be_banner01.m2", text = "be_banner01.m2", + value = "be_banner01.m2", }, { fileId = "191889", - value = "be_banner02.m2", text = "be_banner02.m2", + value = "be_banner02.m2", }, { fileId = "191891", - value = "be_banner03.m2", text = "be_banner03.m2", + value = "be_banner03.m2", }, { fileId = "191893", - value = "be_banner04.m2", text = "be_banner04.m2", + value = "be_banner04.m2", }, { fileId = "191894", - value = "be_banner_kael_01.m2", text = "be_banner_kael_01.m2", + value = "be_banner_kael_01.m2", }, { fileId = "191896", - value = "be_banner_kael_02.m2", text = "be_banner_kael_02.m2", + value = "be_banner_kael_02.m2", }, { fileId = "191898", - value = "be_banner_kael_03.m2", text = "be_banner_kael_03.m2", + value = "be_banner_kael_03.m2", }, { fileId = "191901", - value = "be_banner_shatariskyguard.m2", text = "be_banner_shatariskyguard.m2", + value = "be_banner_shatariskyguard.m2", }, { fileId = "191903", - value = "be_banner_tallblack.m2", text = "be_banner_tallblack.m2", + value = "be_banner_tallblack.m2", }, { fileId = "191905", - value = "be_banner_tallblue.m2", text = "be_banner_tallblue.m2", + value = "be_banner_tallblue.m2", }, { fileId = "191907", - value = "be_banner_tallpurple.m2", text = "be_banner_tallpurple.m2", + value = "be_banner_tallpurple.m2", }, { fileId = "191909", - value = "be_banner_tallred.m2", text = "be_banner_tallred.m2", + value = "be_banner_tallred.m2", }, { fileId = "191911", - value = "be_banner_wide_black.m2", text = "be_banner_wide_black.m2", + value = "be_banner_wide_black.m2", }, { fileId = "191912", - value = "be_banner_wide_blue.m2", text = "be_banner_wide_blue.m2", + value = "be_banner_wide_blue.m2", }, { fileId = "191913", - value = "be_banner_wide_purple.m2", text = "be_banner_wide_purple.m2", + value = "be_banner_wide_purple.m2", }, { fileId = "191914", - value = "be_banner_wide_red.m2", text = "be_banner_wide_red.m2", + value = "be_banner_wide_red.m2", }, { fileId = "191915", - value = "be_banner_wide_red_anim.m2", text = "be_banner_wide_red_anim.m2", + value = "be_banner_wide_red_anim.m2", }, { fileId = "191916", - value = "be_banner_wide_red_anim02.m2", text = "be_banner_wide_red_anim02.m2", + value = "be_banner_wide_red_anim02.m2", }, { fileId = "191917", - value = "be_banner_wide_red_anim03.m2", text = "be_banner_wide_red_anim03.m2", + value = "be_banner_wide_red_anim03.m2", }, { fileId = "191918", - value = "be_banner_wide_red_torn01.m2", text = "be_banner_wide_red_torn01.m2", + value = "be_banner_wide_red_torn01.m2", }, }, - value = "banners", text = "banners", + value = "banners", }, { children = { { fileId = "191919", - value = "be_bannister.m2", text = "be_bannister.m2", + value = "be_bannister.m2", }, }, - value = "bannister", text = "bannister", + value = "bannister", }, { children = { { fileId = "191921", - value = "be_barrel_01.m2", text = "be_barrel_01.m2", + value = "be_barrel_01.m2", }, { fileId = "191922", - value = "be_barrel_broken_01.m2", text = "be_barrel_broken_01.m2", + value = "be_barrel_broken_01.m2", }, { fileId = "191923", - value = "be_barrel_broken_02.m2", text = "be_barrel_broken_02.m2", + value = "be_barrel_broken_02.m2", }, { fileId = "191924", - value = "be_barrel_fruit01.m2", text = "be_barrel_fruit01.m2", + value = "be_barrel_fruit01.m2", }, }, - value = "barrel", text = "barrel", + value = "barrel", }, { children = { { fileId = "191927", - value = "be_barrierspikes01.m2", text = "be_barrierspikes01.m2", + value = "be_barrierspikes01.m2", }, { fileId = "191928", - value = "be_barrierspikes02.m2", text = "be_barrierspikes02.m2", + value = "be_barrierspikes02.m2", }, { fileId = "191929", - value = "be_barrierspikes03.m2", text = "be_barrierspikes03.m2", + value = "be_barrierspikes03.m2", }, }, - value = "barrierspikes", text = "barrierspikes", + value = "barrierspikes", }, { children = { { fileId = "191931", - value = "be_bed_01.m2", text = "be_bed_01.m2", + value = "be_bed_01.m2", }, { fileId = "191933", - value = "be_bed_02.m2", text = "be_bed_02.m2", + value = "be_bed_02.m2", }, { fileId = "191934", - value = "be_bed_wrecked_01.m2", text = "be_bed_wrecked_01.m2", + value = "be_bed_wrecked_01.m2", }, }, - value = "beds", text = "beds", + value = "beds", }, { children = { { fileId = "191936", - value = "be_bench01.m2", text = "be_bench01.m2", + value = "be_bench01.m2", }, { fileId = "191938", - value = "be_bench_garden01.m2", text = "be_bench_garden01.m2", + value = "be_bench_garden01.m2", }, { fileId = "191939", - value = "be_bench_wrecked_01.m2", text = "be_bench_wrecked_01.m2", + value = "be_bench_wrecked_01.m2", }, }, - value = "benches", text = "benches", + value = "benches", }, { children = { { fileId = "191942", - value = "be_book_large01.m2", text = "be_book_large01.m2", + value = "be_book_large01.m2", }, { fileId = "191943", - value = "be_book_large02.m2", text = "be_book_large02.m2", + value = "be_book_large02.m2", }, { fileId = "191945", - value = "be_book_large05.m2", text = "be_book_large05.m2", + value = "be_book_large05.m2", }, { fileId = "191946", - value = "be_book_medium01.m2", text = "be_book_medium01.m2", + value = "be_book_medium01.m2", }, { fileId = "191947", - value = "be_book_medium02.m2", text = "be_book_medium02.m2", + value = "be_book_medium02.m2", }, { fileId = "191948", - value = "be_book_small01.m2", text = "be_book_small01.m2", + value = "be_book_small01.m2", }, { fileId = "191949", - value = "be_book_small02.m2", text = "be_book_small02.m2", + value = "be_book_small02.m2", }, }, - value = "books", text = "books", + value = "books", }, { children = { { fileId = "191954", - value = "be_bookshelf_wrecked_01.m2", text = "be_bookshelf_wrecked_01.m2", + value = "be_bookshelf_wrecked_01.m2", }, { fileId = "191955", - value = "be_bookshelf_wrecked_02.m2", text = "be_bookshelf_wrecked_02.m2", + value = "be_bookshelf_wrecked_02.m2", }, { fileId = "191956", - value = "be_bookshelfempty_01.m2", text = "be_bookshelfempty_01.m2", + value = "be_bookshelfempty_01.m2", }, { fileId = "191957", - value = "be_bookshelfempty_02.m2", text = "be_bookshelfempty_02.m2", + value = "be_bookshelfempty_02.m2", }, { fileId = "191958", - value = "be_bookshelffilled_01.m2", text = "be_bookshelffilled_01.m2", + value = "be_bookshelffilled_01.m2", }, { fileId = "191959", - value = "be_bookshelffilled_02.m2", text = "be_bookshelffilled_02.m2", + value = "be_bookshelffilled_02.m2", }, { fileId = "191960", - value = "be_bookshelfshort.m2", text = "be_bookshelfshort.m2", + value = "be_bookshelfshort.m2", }, { fileId = "191961", - value = "be_bookshelfspiral.m2", text = "be_bookshelfspiral.m2", + value = "be_bookshelfspiral.m2", }, { fileId = "191962", - value = "be_bookshelftall.m2", text = "be_bookshelftall.m2", + value = "be_bookshelftall.m2", }, }, - value = "bookshelf", text = "bookshelf", + value = "bookshelf", }, { children = { { fileId = "191963", - value = "be_bottle01.m2", text = "be_bottle01.m2", + value = "be_bottle01.m2", }, { fileId = "191964", - value = "be_bottle02.m2", text = "be_bottle02.m2", + value = "be_bottle02.m2", }, { fileId = "191965", - value = "be_bottle03.m2", text = "be_bottle03.m2", + value = "be_bottle03.m2", }, { fileId = "191966", - value = "be_bottle04.m2", text = "be_bottle04.m2", + value = "be_bottle04.m2", }, }, - value = "bottles", text = "bottles", + value = "bottles", }, { children = { { fileId = "191969", - value = "be_mop01.m2", text = "be_mop01.m2", + value = "be_mop01.m2", }, }, - value = "broom", text = "broom", + value = "broom", }, { children = { { fileId = "191971", - value = "be_campfire01.m2", text = "be_campfire01.m2", + value = "be_campfire01.m2", }, { fileId = "191973", - value = "be_campfire02.m2", text = "be_campfire02.m2", + value = "be_campfire02.m2", }, }, - value = "campfire", text = "campfire", + value = "campfire", }, { children = { { fileId = "191978", - value = "be_candle_01.m2", text = "be_candle_01.m2", + value = "be_candle_01.m2", }, { fileId = "191979", - value = "be_candle_02.m2", text = "be_candle_02.m2", + value = "be_candle_02.m2", }, { fileId = "191980", - value = "be_candleabra01.m2", text = "be_candleabra01.m2", + value = "be_candleabra01.m2", }, }, - value = "candles", text = "candles", + value = "candles", }, { children = { { fileId = "191981", - value = "be_chair01.m2", text = "be_chair01.m2", + value = "be_chair01.m2", }, { fileId = "191982", - value = "be_chair02.m2", text = "be_chair02.m2", + value = "be_chair02.m2", }, { fileId = "191983", - value = "be_chair03.m2", text = "be_chair03.m2", + value = "be_chair03.m2", }, { fileId = "191984", - value = "be_chair04.m2", text = "be_chair04.m2", + value = "be_chair04.m2", }, { fileId = "191985", - value = "be_chair_wrecked_01.m2", text = "be_chair_wrecked_01.m2", + value = "be_chair_wrecked_01.m2", }, { fileId = "191986", - value = "be_chair_wrecked_02.m2", text = "be_chair_wrecked_02.m2", + value = "be_chair_wrecked_02.m2", }, { fileId = "191992", - value = "be_throne_01.m2", text = "be_throne_01.m2", + value = "be_throne_01.m2", }, }, - value = "chairs", text = "chairs", + value = "chairs", }, { children = { { fileId = "191994", - value = "be_chandelier01.m2", text = "be_chandelier01.m2", + value = "be_chandelier01.m2", }, }, - value = "chandelier", text = "chandelier", + value = "chandelier", }, { children = { { fileId = "191999", - value = "be_cookpot01.m2", text = "be_cookpot01.m2", + value = "be_cookpot01.m2", }, }, - value = "cookpot", text = "cookpot", + value = "cookpot", }, { children = { { fileId = "192001", - value = "be_couch01.m2", text = "be_couch01.m2", + value = "be_couch01.m2", }, }, - value = "couch", text = "couch", + value = "couch", }, { children = { { fileId = "192002", - value = "be_crate01.m2", text = "be_crate01.m2", + value = "be_crate01.m2", }, }, - value = "crate", text = "crate", + value = "crate", }, { children = { { fileId = "192003", - value = "be_cup01.m2", text = "be_cup01.m2", + value = "be_cup01.m2", }, { fileId = "192004", - value = "be_cup02.m2", text = "be_cup02.m2", + value = "be_cup02.m2", }, { fileId = "192008", - value = "be_mug01.m2", text = "be_mug01.m2", + value = "be_mug01.m2", }, }, - value = "cups", text = "cups", + value = "cups", }, { children = { { fileId = "192010", - value = "be_demoncrystal_01.m2", text = "be_demoncrystal_01.m2", + value = "be_demoncrystal_01.m2", }, { fileId = "192011", - value = "be_demoncrystal_02.m2", text = "be_demoncrystal_02.m2", + value = "be_demoncrystal_02.m2", }, }, - value = "demoncrystals", text = "demoncrystals", + value = "demoncrystals", }, { children = { { fileId = "192014", - value = "be_demonenergycollector01.m2", text = "be_demonenergycollector01.m2", + value = "be_demonenergycollector01.m2", }, }, - value = "demonenergycollectors", text = "demonenergycollectors", + value = "demonenergycollectors", }, { children = { { fileId = "192017", - value = "be_drapery_01.m2", text = "be_drapery_01.m2", + value = "be_drapery_01.m2", }, { fileId = "192018", - value = "be_drapery_02.m2", text = "be_drapery_02.m2", + value = "be_drapery_02.m2", }, { fileId = "192019", - value = "be_drapery_03.m2", text = "be_drapery_03.m2", + value = "be_drapery_03.m2", }, { fileId = "192020", - value = "be_drapery_04.m2", text = "be_drapery_04.m2", + value = "be_drapery_04.m2", }, { fileId = "192021", - value = "be_drapery_05.m2", text = "be_drapery_05.m2", + value = "be_drapery_05.m2", }, { fileId = "192022", - value = "be_drapery_06.m2", text = "be_drapery_06.m2", + value = "be_drapery_06.m2", }, }, - value = "drapery", text = "drapery", + value = "drapery", }, { children = { { fileId = "192026", - value = "be_fish01.m2", text = "be_fish01.m2", + value = "be_fish01.m2", }, { fileId = "192028", - value = "be_meat01.m2", text = "be_meat01.m2", + value = "be_meat01.m2", }, }, - value = "food", text = "food", + value = "food", }, { children = { { fileId = "192030", - value = "be_forge.m2", text = "be_forge.m2", + value = "be_forge.m2", }, { fileId = "192031", - value = "be_forge01.m2", text = "be_forge01.m2", + value = "be_forge01.m2", }, }, - value = "forge", text = "forge", + value = "forge", }, { children = { { fileId = "192034", - value = "be_fountain01.m2", text = "be_fountain01.m2", + value = "be_fountain01.m2", }, { fileId = "192035", - value = "be_fountain01_base.m2", text = "be_fountain01_base.m2", + value = "be_fountain01_base.m2", }, { fileId = "192045", - value = "be_fountaininnardssilvermoon.m2", text = "be_fountaininnardssilvermoon.m2", + value = "be_fountaininnardssilvermoon.m2", }, }, - value = "fountains", text = "fountains", + value = "fountains", }, { children = { { fileId = "192049", - value = "be_gravestone01.m2", text = "be_gravestone01.m2", + value = "be_gravestone01.m2", }, { fileId = "192050", - value = "be_gravestone02.m2", text = "be_gravestone02.m2", + value = "be_gravestone02.m2", }, { fileId = "192051", - value = "be_gravestone03.m2", text = "be_gravestone03.m2", + value = "be_gravestone03.m2", }, { fileId = "192054", - value = "be_tomb01.m2", text = "be_tomb01.m2", + value = "be_tomb01.m2", }, }, - value = "graveyard", text = "graveyard", + value = "graveyard", }, { children = { { fileId = "192055", - value = "be_hedge_hanging01.m2", text = "be_hedge_hanging01.m2", + value = "be_hedge_hanging01.m2", }, { fileId = "192056", - value = "be_hedge_hanging02.m2", text = "be_hedge_hanging02.m2", + value = "be_hedge_hanging02.m2", }, { fileId = "192057", - value = "be_hedge_hanging03.m2", text = "be_hedge_hanging03.m2", + value = "be_hedge_hanging03.m2", }, { fileId = "192058", - value = "be_hedge_hanging04.m2", text = "be_hedge_hanging04.m2", + value = "be_hedge_hanging04.m2", }, { fileId = "192059", - value = "be_hedge_hanging05.m2", text = "be_hedge_hanging05.m2", + value = "be_hedge_hanging05.m2", }, { fileId = "192060", - value = "be_hedge_hanging06.m2", text = "be_hedge_hanging06.m2", + value = "be_hedge_hanging06.m2", }, { fileId = "192061", - value = "be_hedge_hanging07.m2", text = "be_hedge_hanging07.m2", + value = "be_hedge_hanging07.m2", }, { fileId = "192062", - value = "be_hedge_hanging08.m2", text = "be_hedge_hanging08.m2", + value = "be_hedge_hanging08.m2", }, { fileId = "192063", - value = "be_hedge_hanging09.m2", text = "be_hedge_hanging09.m2", + value = "be_hedge_hanging09.m2", }, { fileId = "192064", - value = "be_hedge_hanging10.m2", text = "be_hedge_hanging10.m2", + value = "be_hedge_hanging10.m2", }, { fileId = "192065", - value = "be_hedge_hanging11.m2", text = "be_hedge_hanging11.m2", + value = "be_hedge_hanging11.m2", }, { fileId = "192066", - value = "be_hedge_hanging12.m2", text = "be_hedge_hanging12.m2", + value = "be_hedge_hanging12.m2", }, { fileId = "192071", - value = "silvermoonhedge01.m2", text = "silvermoonhedge01.m2", + value = "silvermoonhedge01.m2", }, }, - value = "hedge", text = "hedge", + value = "hedge", }, { children = { { fileId = "192073", - value = "be_hookah_01.m2", text = "be_hookah_01.m2", + value = "be_hookah_01.m2", }, { fileId = "192074", - value = "be_hookah_02.m2", text = "be_hookah_02.m2", + value = "be_hookah_02.m2", }, }, - value = "hookah", text = "hookah", + value = "hookah", }, { children = { { fileId = "192076", - value = "be_incense_01.m2", text = "be_incense_01.m2", + value = "be_incense_01.m2", }, }, - value = "incense", text = "incense", + value = "incense", }, { children = { { fileId = "192078", - value = "be_harp01.m2", text = "be_harp01.m2", + value = "be_harp01.m2", }, { fileId = "192080", - value = "be_lute01.m2", text = "be_lute01.m2", + value = "be_lute01.m2", }, }, - value = "instruments", text = "instruments", + value = "instruments", }, { children = { { fileId = "192082", - value = "be_jar_03.m2", text = "be_jar_03.m2", + value = "be_jar_03.m2", }, { fileId = "192083", - value = "be_jar_04.m2", text = "be_jar_04.m2", + value = "be_jar_04.m2", }, }, - value = "jars", text = "jars", + value = "jars", }, { children = { { fileId = "192085", - value = "be_magicalknickknack02.m2", text = "be_magicalknickknack02.m2", + value = "be_magicalknickknack02.m2", }, { fileId = "192087", - value = "be_magicalknickknack03.m2", text = "be_magicalknickknack03.m2", + value = "be_magicalknickknack03.m2", }, { fileId = "192089", - value = "be_magicalknickknack04.m2", text = "be_magicalknickknack04.m2", + value = "be_magicalknickknack04.m2", }, }, - value = "knickknacks", text = "knickknacks", + value = "knickknacks", }, { children = { { fileId = "192091", - value = "be_lamp01.m2", text = "be_lamp01.m2", + value = "be_lamp01.m2", }, }, - value = "lamp", text = "lamp", + value = "lamp", }, { children = { { fileId = "192093", - value = "be_lantern01.m2", text = "be_lantern01.m2", + value = "be_lantern01.m2", }, }, - value = "lantern", text = "lantern", + value = "lantern", }, { children = { { fileId = "192094", - value = "be_lavapool.m2", text = "be_lavapool.m2", + value = "be_lavapool.m2", }, }, - value = "lava", text = "lava", + value = "lava", }, { children = { { fileId = "192095", - value = "be_loom_01.m2", text = "be_loom_01.m2", + value = "be_loom_01.m2", }, }, - value = "loom", text = "loom", + value = "loom", }, { children = { { fileId = "192098", - value = "be_merchantstand01.m2", text = "be_merchantstand01.m2", + value = "be_merchantstand01.m2", }, { fileId = "192099", - value = "be_merchantstand02.m2", text = "be_merchantstand02.m2", + value = "be_merchantstand02.m2", }, { fileId = "192100", - value = "be_merchantstand03.m2", text = "be_merchantstand03.m2", + value = "be_merchantstand03.m2", }, }, - value = "merchantstand", text = "merchantstand", + value = "merchantstand", }, { children = { { fileId = "192103", - value = "be_roadpillar01.m2", text = "be_roadpillar01.m2", + value = "be_roadpillar01.m2", }, }, - value = "pillar", text = "pillar", + value = "pillar", }, { children = { { fileId = "192105", - value = "be_pillow_01.m2", text = "be_pillow_01.m2", + value = "be_pillow_01.m2", }, { fileId = "192106", - value = "be_pillow_02.m2", text = "be_pillow_02.m2", + value = "be_pillow_02.m2", }, { fileId = "192107", - value = "be_pillow_03.m2", text = "be_pillow_03.m2", + value = "be_pillow_03.m2", }, { fileId = "192108", - value = "be_pillow_04.m2", text = "be_pillow_04.m2", + value = "be_pillow_04.m2", }, }, - value = "pillows", text = "pillows", + value = "pillows", }, { children = { { fileId = "192113", - value = "be_planetarium.m2", text = "be_planetarium.m2", + value = "be_planetarium.m2", }, { fileId = "192114", - value = "be_planetarium_active.m2", text = "be_planetarium_active.m2", + value = "be_planetarium_active.m2", }, { fileId = "192115", - value = "be_planetariumdestroyed01.m2", text = "be_planetariumdestroyed01.m2", + value = "be_planetariumdestroyed01.m2", }, { fileId = "192116", - value = "be_planetariumdestroyed02.m2", text = "be_planetariumdestroyed02.m2", + value = "be_planetariumdestroyed02.m2", }, { fileId = "192117", - value = "be_planetariumdestroyed03.m2", text = "be_planetariumdestroyed03.m2", + value = "be_planetariumdestroyed03.m2", }, { fileId = "192118", - value = "be_planetariumdestroyed04.m2", text = "be_planetariumdestroyed04.m2", + value = "be_planetariumdestroyed04.m2", }, }, - value = "planetarium", text = "planetarium", + value = "planetarium", }, { children = { { fileId = "192120", - value = "be_planter_flowers_01.m2", text = "be_planter_flowers_01.m2", + value = "be_planter_flowers_01.m2", }, { fileId = "192121", - value = "be_planter_long_01.m2", text = "be_planter_long_01.m2", + value = "be_planter_long_01.m2", }, { fileId = "192122", - value = "be_planter_long_02.m2", text = "be_planter_long_02.m2", + value = "be_planter_long_02.m2", }, { fileId = "192123", - value = "be_planter_long_03.m2", text = "be_planter_long_03.m2", + value = "be_planter_long_03.m2", }, { fileId = "192124", - value = "be_planter_medium_01.m2", text = "be_planter_medium_01.m2", + value = "be_planter_medium_01.m2", }, { fileId = "192125", - value = "be_planter_medium_02.m2", text = "be_planter_medium_02.m2", + value = "be_planter_medium_02.m2", }, { fileId = "192126", - value = "be_planter_medium_03.m2", text = "be_planter_medium_03.m2", + value = "be_planter_medium_03.m2", }, { fileId = "192127", - value = "be_planter_short_01.m2", text = "be_planter_short_01.m2", + value = "be_planter_short_01.m2", }, { fileId = "192128", - value = "be_planter_short_02.m2", text = "be_planter_short_02.m2", + value = "be_planter_short_02.m2", }, { fileId = "192129", - value = "be_planter_short_03.m2", text = "be_planter_short_03.m2", + value = "be_planter_short_03.m2", }, }, - value = "planters", text = "planters", + value = "planters", }, { children = { { fileId = "192131", - value = "be_podium01.m2", text = "be_podium01.m2", + value = "be_podium01.m2", }, }, - value = "podium", text = "podium", + value = "podium", }, { children = { { fileId = "192133", - value = "be_signs_wanted.m2", text = "be_signs_wanted.m2", + value = "be_signs_wanted.m2", }, }, - value = "posters", text = "posters", + value = "posters", }, { children = { { fileId = "192134", - value = "bloodelf_powerorb_green.m2", text = "bloodelf_powerorb_green.m2", + value = "bloodelf_powerorb_green.m2", }, { fileId = "192135", - value = "bloodelf_powerorb_red.m2", text = "bloodelf_powerorb_red.m2", + value = "bloodelf_powerorb_red.m2", }, }, - value = "powerorb", text = "powerorb", + value = "powerorb", }, { children = { { fileId = "192149", - value = "be_roadsign_sign01.m2", text = "be_roadsign_sign01.m2", + value = "be_roadsign_sign01.m2", }, }, - value = "roadsign", text = "roadsign", + value = "roadsign", }, { children = { { fileId = "192151", - value = "be_rowboat.m2", text = "be_rowboat.m2", + value = "be_rowboat.m2", }, { fileId = "192153", - value = "be_rowboatwrecked.m2", text = "be_rowboatwrecked.m2", + value = "be_rowboatwrecked.m2", }, }, - value = "rowboat", text = "rowboat", + value = "rowboat", }, { children = { { fileId = "192154", - value = "be_rug_large01.m2", text = "be_rug_large01.m2", + value = "be_rug_large01.m2", }, { fileId = "192155", - value = "be_rug_large02.m2", text = "be_rug_large02.m2", + value = "be_rug_large02.m2", }, { fileId = "192156", - value = "be_rug_largeruined01.m2", text = "be_rug_largeruined01.m2", + value = "be_rug_largeruined01.m2", }, { fileId = "192157", - value = "be_rug_largeruined02.m2", text = "be_rug_largeruined02.m2", + value = "be_rug_largeruined02.m2", }, { fileId = "192159", - value = "be_rug_medium01.m2", text = "be_rug_medium01.m2", + value = "be_rug_medium01.m2", }, { fileId = "192160", - value = "be_rug_medium02.m2", text = "be_rug_medium02.m2", + value = "be_rug_medium02.m2", }, { fileId = "192161", - value = "be_rug_mediumruined01.m2", text = "be_rug_mediumruined01.m2", + value = "be_rug_mediumruined01.m2", }, { fileId = "192162", - value = "be_rug_mediumruined02.m2", text = "be_rug_mediumruined02.m2", + value = "be_rug_mediumruined02.m2", }, { fileId = "192163", - value = "be_rug_small01.m2", text = "be_rug_small01.m2", + value = "be_rug_small01.m2", }, { fileId = "192164", - value = "be_rug_small02.m2", text = "be_rug_small02.m2", + value = "be_rug_small02.m2", }, { fileId = "192165", - value = "be_rug_smallruined01.m2", text = "be_rug_smallruined01.m2", + value = "be_rug_smallruined01.m2", }, { fileId = "192166", - value = "be_rug_smallruined02.m2", text = "be_rug_smallruined02.m2", + value = "be_rug_smallruined02.m2", }, }, - value = "rugs", text = "rugs", + value = "rugs", }, { children = { { fileId = "192173", - value = "be_runestone01.m2", text = "be_runestone01.m2", + value = "be_runestone01.m2", }, }, - value = "runestone", text = "runestone", + value = "runestone", }, { children = { { fileId = "192175", - value = "be_sconce01.m2", text = "be_sconce01.m2", + value = "be_sconce01.m2", }, { fileId = "192176", - value = "be_sconce02.m2", text = "be_sconce02.m2", + value = "be_sconce02.m2", }, }, - value = "sconce", text = "sconce", + value = "sconce", }, { children = { { fileId = "192179", - value = "be_scryingorb.m2", text = "be_scryingorb.m2", + value = "be_scryingorb.m2", }, { fileId = "192180", - value = "be_scryingorb_epic.m2", text = "be_scryingorb_epic.m2", + value = "be_scryingorb_epic.m2", }, }, - value = "scryingorb", text = "scryingorb", + value = "scryingorb", }, { children = { { fileId = "192181", - value = "be_shield01.m2", text = "be_shield01.m2", + value = "be_shield01.m2", }, { fileId = "192182", - value = "be_shield02.m2", text = "be_shield02.m2", + value = "be_shield02.m2", }, { fileId = "192183", - value = "be_shield03.m2", text = "be_shield03.m2", + value = "be_shield03.m2", }, }, - value = "shield", text = "shield", + value = "shield", }, { children = { { fileId = "192184", - value = "be_signs_alchemy.m2", text = "be_signs_alchemy.m2", + value = "be_signs_alchemy.m2", }, { fileId = "192186", - value = "be_signs_axe.m2", text = "be_signs_axe.m2", + value = "be_signs_axe.m2", }, { fileId = "192188", - value = "be_signs_bank.m2", text = "be_signs_bank.m2", + value = "be_signs_bank.m2", }, { fileId = "192190", - value = "be_signs_book.m2", text = "be_signs_book.m2", + value = "be_signs_book.m2", }, { fileId = "192192", - value = "be_signs_bow.m2", text = "be_signs_bow.m2", + value = "be_signs_bow.m2", }, { fileId = "192194", - value = "be_signs_bread.m2", text = "be_signs_bread.m2", + value = "be_signs_bread.m2", }, { fileId = "192196", - value = "be_signs_cheese.m2", text = "be_signs_cheese.m2", + value = "be_signs_cheese.m2", }, { fileId = "192198", - value = "be_signs_cooking.m2", text = "be_signs_cooking.m2", + value = "be_signs_cooking.m2", }, { fileId = "192200", - value = "be_signs_drink.m2", text = "be_signs_drink.m2", + value = "be_signs_drink.m2", }, { fileId = "192202", - value = "be_signs_engineering.m2", text = "be_signs_engineering.m2", + value = "be_signs_engineering.m2", }, { fileId = "192204", - value = "be_signs_generalshop.m2", text = "be_signs_generalshop.m2", + value = "be_signs_generalshop.m2", }, { fileId = "192206", - value = "be_signs_helm.m2", text = "be_signs_helm.m2", + value = "be_signs_helm.m2", }, { fileId = "192208", - value = "be_signs_herbalism.m2", text = "be_signs_herbalism.m2", + value = "be_signs_herbalism.m2", }, { fileId = "192210", - value = "be_signs_meat.m2", text = "be_signs_meat.m2", + value = "be_signs_meat.m2", }, { fileId = "192212", - value = "be_signs_poison.m2", text = "be_signs_poison.m2", + value = "be_signs_poison.m2", }, { fileId = "192214", - value = "be_signs_shield.m2", text = "be_signs_shield.m2", + value = "be_signs_shield.m2", }, { fileId = "192216", - value = "be_signs_staff.m2", text = "be_signs_staff.m2", + value = "be_signs_staff.m2", }, { fileId = "192218", - value = "be_signs_sword.m2", text = "be_signs_sword.m2", + value = "be_signs_sword.m2", }, { fileId = "192220", - value = "be_signs_tailor.m2", text = "be_signs_tailor.m2", + value = "be_signs_tailor.m2", }, { fileId = "192222", - value = "be_signs_tavern.m2", text = "be_signs_tavern.m2", + value = "be_signs_tavern.m2", }, }, - value = "shopsigns", text = "shopsigns", + value = "shopsigns", }, { children = { { fileId = "192224", - value = "ghostlandsshroom01.m2", text = "ghostlandsshroom01.m2", + value = "ghostlandsshroom01.m2", }, { fileId = "192228", - value = "ghostlandssporemound01.m2", text = "ghostlandssporemound01.m2", + value = "ghostlandssporemound01.m2", }, }, - value = "shrooms", text = "shrooms", + value = "shrooms", }, { children = { { fileId = "192229", - value = "be_statue01.m2", text = "be_statue01.m2", + value = "be_statue01.m2", }, { fileId = "192230", - value = "be_statue02.m2", text = "be_statue02.m2", + value = "be_statue02.m2", }, { fileId = "192232", - value = "be_statuebig.m2", text = "be_statuebig.m2", + value = "be_statuebig.m2", }, { fileId = "192234", - value = "be_statuemale.m2", text = "be_statuemale.m2", + value = "be_statuemale.m2", }, { fileId = "192236", - value = "be_statueranger.m2", text = "be_statueranger.m2", + value = "be_statueranger.m2", }, }, - value = "statues", text = "statues", + value = "statues", }, { children = { { fileId = "192242", - value = "be_table_large01.m2", text = "be_table_large01.m2", + value = "be_table_large01.m2", }, { fileId = "192243", - value = "be_table_large02.m2", text = "be_table_large02.m2", + value = "be_table_large02.m2", }, { fileId = "192244", - value = "be_table_large03.m2", text = "be_table_large03.m2", + value = "be_table_large03.m2", }, { fileId = "192245", - value = "be_table_small01.m2", text = "be_table_small01.m2", + value = "be_table_small01.m2", }, { fileId = "192247", - value = "be_table_wrecked_01.m2", text = "be_table_wrecked_01.m2", + value = "be_table_wrecked_01.m2", }, { fileId = "192248", - value = "be_table_wrecked_02.m2", text = "be_table_wrecked_02.m2", + value = "be_table_wrecked_02.m2", }, }, - value = "tables", text = "tables", + value = "tables", }, { children = { { fileId = "192250", - value = "be_teleporter_01.m2", text = "be_teleporter_01.m2", + value = "be_teleporter_01.m2", }, }, - value = "teleporter", text = "teleporter", + value = "teleporter", }, { children = { { fileId = "192252", - value = "be_tent01.m2", text = "be_tent01.m2", + value = "be_tent01.m2", }, { fileId = "192253", - value = "be_tent02.m2", text = "be_tent02.m2", + value = "be_tent02.m2", }, { fileId = "192254", - value = "be_tent03.m2", text = "be_tent03.m2", + value = "be_tent03.m2", }, { fileId = "192255", - value = "be_tent04.m2", text = "be_tent04.m2", + value = "be_tent04.m2", }, { fileId = "192257", - value = "be_tentwrecked01.m2", text = "be_tentwrecked01.m2", + value = "be_tentwrecked01.m2", }, { fileId = "192258", - value = "be_tentwrecked02.m2", text = "be_tentwrecked02.m2", + value = "be_tentwrecked02.m2", }, }, - value = "tents", text = "tents", + value = "tents", }, { children = { { fileId = "192262", - value = "be_translocator.m2", text = "be_translocator.m2", + value = "be_translocator.m2", }, { fileId = "192266", - value = "be_translocator_minor.m2", text = "be_translocator_minor.m2", + value = "be_translocator_minor.m2", }, }, - value = "translocator", text = "translocator", + value = "translocator", }, { children = { { fileId = "192279", - value = "ghostlandssmalltree01.m2", text = "ghostlandssmalltree01.m2", + value = "ghostlandssmalltree01.m2", }, { fileId = "192280", - value = "ghostlandssmalltree02.m2", text = "ghostlandssmalltree02.m2", + value = "ghostlandssmalltree02.m2", }, { fileId = "192281", - value = "ghostlandssmalltree03.m2", text = "ghostlandssmalltree03.m2", + value = "ghostlandssmalltree03.m2", }, { fileId = "192282", - value = "ghostlandstree01.m2", text = "ghostlandstree01.m2", + value = "ghostlandstree01.m2", }, { fileId = "192283", - value = "ghostlandstree02.m2", text = "ghostlandstree02.m2", + value = "ghostlandstree02.m2", }, { fileId = "192284", - value = "ghostlandstree03.m2", text = "ghostlandstree03.m2", + value = "ghostlandstree03.m2", }, { fileId = "192285", - value = "ghostlandstree04.m2", text = "ghostlandstree04.m2", + value = "ghostlandstree04.m2", }, { fileId = "192286", - value = "ghostlandstree05.m2", text = "ghostlandstree05.m2", + value = "ghostlandstree05.m2", }, { fileId = "192287", - value = "silvermoonbush01.m2", text = "silvermoonbush01.m2", + value = "silvermoonbush01.m2", }, { fileId = "192289", - value = "silvermoonbush02.m2", text = "silvermoonbush02.m2", + value = "silvermoonbush02.m2", }, { fileId = "192291", - value = "silvermoonbush03.m2", text = "silvermoonbush03.m2", + value = "silvermoonbush03.m2", }, { fileId = "192292", - value = "silvermoonbush04.m2", text = "silvermoonbush04.m2", + value = "silvermoonbush04.m2", }, { fileId = "192293", - value = "silvermoontree09.m2", text = "silvermoontree09.m2", + value = "silvermoontree09.m2", }, { fileId = "192294", - value = "silvermoontree10.m2", text = "silvermoontree10.m2", + value = "silvermoontree10.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "192299", - value = "be_wagon.m2", text = "be_wagon.m2", + value = "be_wagon.m2", }, { fileId = "192300", - value = "be_wagon02.m2", text = "be_wagon02.m2", + value = "be_wagon02.m2", }, { fileId = "192303", - value = "be_wagon_wrecked.m2", text = "be_wagon_wrecked.m2", + value = "be_wagon_wrecked.m2", }, }, - value = "wagon", text = "wagon", + value = "wagon", }, { children = { { fileId = "192306", - value = "be_weaponrack_01.m2", text = "be_weaponrack_01.m2", + value = "be_weaponrack_01.m2", }, { fileId = "192307", - value = "be_weaponrack_02.m2", text = "be_weaponrack_02.m2", + value = "be_weaponrack_02.m2", }, }, - value = "weaponracks", text = "weaponracks", + value = "weaponracks", }, { children = { { fileId = "192309", - value = "be_knife01.m2", text = "be_knife01.m2", + value = "be_knife01.m2", }, { fileId = "192310", - value = "be_knife02.m2", text = "be_knife02.m2", + value = "be_knife02.m2", }, { fileId = "192311", - value = "be_knife03.m2", text = "be_knife03.m2", + value = "be_knife03.m2", }, { fileId = "192312", - value = "be_stave01.m2", text = "be_stave01.m2", + value = "be_stave01.m2", }, { fileId = "192313", - value = "be_stave02.m2", text = "be_stave02.m2", + value = "be_stave02.m2", }, { fileId = "192314", - value = "be_sword01.m2", text = "be_sword01.m2", + value = "be_sword01.m2", }, { fileId = "192315", - value = "be_sword02.m2", text = "be_sword02.m2", + value = "be_sword02.m2", }, { fileId = "192316", - value = "be_sword03.m2", text = "be_sword03.m2", + value = "be_sword03.m2", }, }, - value = "weapons", text = "weapons", + value = "weapons", }, }, - value = "bloodelf", text = "bloodelf", + value = "bloodelf", }, { children = { @@ -50259,185 +50226,185 @@ WeakAuras.ModelPaths = { children = { { fileId = "192317", - value = "bu_banner_01.m2", text = "bu_banner_01.m2", + value = "bu_banner_01.m2", }, { fileId = "192318", - value = "bu_banner_02.m2", text = "bu_banner_02.m2", + value = "bu_banner_02.m2", }, }, - value = "banners", text = "banners", + value = "banners", }, { children = { { fileId = "192324", - value = "bu_brazier_01.m2", text = "bu_brazier_01.m2", + value = "bu_brazier_01.m2", }, }, - value = "braziers", text = "braziers", + value = "braziers", }, { children = { { fileId = "192327", - value = "bu_cannon_01.m2", text = "bu_cannon_01.m2", + value = "bu_cannon_01.m2", }, { fileId = "192328", - value = "bu_cannon_base.m2", text = "bu_cannon_base.m2", + value = "bu_cannon_base.m2", }, { fileId = "192329", - value = "bu_cannon_base_02.m2", text = "bu_cannon_base_02.m2", + value = "bu_cannon_base_02.m2", }, }, - value = "cannon", text = "cannon", + value = "cannon", }, { children = { { fileId = "192331", - value = "bu_crystalforge.m2", text = "bu_crystalforge.m2", + value = "bu_crystalforge.m2", }, { fileId = "192332", - value = "bu_crystalforgecontroller.m2", text = "bu_crystalforgecontroller.m2", + value = "bu_crystalforgecontroller.m2", }, }, - value = "crystalforge", text = "crystalforge", + value = "crystalforge", }, { children = { { fileId = "192333", - value = "felcannonballs01.m2", text = "felcannonballs01.m2", + value = "felcannonballs01.m2", }, { fileId = "192334", - value = "felcannonballs02.m2", text = "felcannonballs02.m2", + value = "felcannonballs02.m2", }, }, - value = "felcannonballs", text = "felcannonballs", + value = "felcannonballs", }, { children = { { fileId = "192335", - value = "bu_felreaver_01.m2", text = "bu_felreaver_01.m2", + value = "bu_felreaver_01.m2", }, { fileId = "192336", - value = "bu_felreaver_02.m2", text = "bu_felreaver_02.m2", + value = "bu_felreaver_02.m2", }, { fileId = "192337", - value = "bu_felreaver_03.m2", text = "bu_felreaver_03.m2", + value = "bu_felreaver_03.m2", }, { fileId = "192338", - value = "bu_felreaver_04.m2", text = "bu_felreaver_04.m2", + value = "bu_felreaver_04.m2", }, { fileId = "192339", - value = "bu_felreaver_05.m2", text = "bu_felreaver_05.m2", + value = "bu_felreaver_05.m2", }, { fileId = "192340", - value = "bu_felreaver_06.m2", text = "bu_felreaver_06.m2", + value = "bu_felreaver_06.m2", }, }, - value = "felreaver", text = "felreaver", + value = "felreaver", }, { children = { { fileId = "192342", - value = "bu_generator_01.m2", text = "bu_generator_01.m2", + value = "bu_generator_01.m2", }, }, - value = "generator", text = "generator", + value = "generator", }, { children = { { fileId = "192343", - value = "bu_junk_01.m2", text = "bu_junk_01.m2", + value = "bu_junk_01.m2", }, { fileId = "192344", - value = "bu_junk_02.m2", text = "bu_junk_02.m2", + value = "bu_junk_02.m2", }, { fileId = "192346", - value = "bu_oblisk_01.m2", text = "bu_oblisk_01.m2", + value = "bu_oblisk_01.m2", }, { fileId = "192347", - value = "bu_smoke_stack_01.m2", text = "bu_smoke_stack_01.m2", + value = "bu_smoke_stack_01.m2", }, }, - value = "ruins", text = "ruins", + value = "ruins", }, { children = { { fileId = "192349", - value = "bu_teleporter_01.m2", text = "bu_teleporter_01.m2", + value = "bu_teleporter_01.m2", }, { fileId = "192350", - value = "bu_teleporter_02.m2", text = "bu_teleporter_02.m2", + value = "bu_teleporter_02.m2", }, }, - value = "teleporter", text = "teleporter", + value = "teleporter", }, { children = { { fileId = "192354", - value = "bu_forge_01.m2", text = "bu_forge_01.m2", + value = "bu_forge_01.m2", }, }, - value = "tradeskill", text = "tradeskill", + value = "tradeskill", }, }, - value = "burninglegion", text = "burninglegion", + value = "burninglegion", }, { children = { @@ -50445,830 +50412,830 @@ WeakAuras.ModelPaths = { children = { { fileId = "192356", - value = "dr_banner01.m2", text = "dr_banner01.m2", + value = "dr_banner01.m2", }, }, - value = "banner", text = "banner", + value = "banner", }, { children = { { fileId = "192358", - value = "draenei_bed01.m2", text = "draenei_bed01.m2", + value = "draenei_bed01.m2", }, }, - value = "bed", text = "bed", + value = "bed", }, { children = { { fileId = "192359", - value = "dr_bench_01.m2", text = "dr_bench_01.m2", + value = "dr_bench_01.m2", }, }, - value = "bench", text = "bench", + value = "bench", }, { children = { { fileId = "192362", - value = "dr_anvil_01.m2", text = "dr_anvil_01.m2", + value = "dr_anvil_01.m2", }, { fileId = "192363", - value = "dr_forge_01.m2", text = "dr_forge_01.m2", + value = "dr_forge_01.m2", }, }, - value = "blacksmith", text = "blacksmith", + value = "blacksmith", }, { children = { { fileId = "192364", - value = "dr_bottle_01.m2", text = "dr_bottle_01.m2", + value = "dr_bottle_01.m2", }, { fileId = "192365", - value = "dr_bottle_02.m2", text = "dr_bottle_02.m2", + value = "dr_bottle_02.m2", }, }, - value = "bottles", text = "bottles", + value = "bottles", }, { children = { { fileId = "192367", - value = "dr_bowl_01.m2", text = "dr_bowl_01.m2", + value = "dr_bowl_01.m2", }, { fileId = "192368", - value = "dr_bowl_02.m2", text = "dr_bowl_02.m2", + value = "dr_bowl_02.m2", }, }, - value = "bowls", text = "bowls", + value = "bowls", }, { children = { { fileId = "192371", - value = "dr_brazier_01.m2", text = "dr_brazier_01.m2", + value = "dr_brazier_01.m2", }, { fileId = "192373", - value = "dr_brazier_02.m2", text = "dr_brazier_02.m2", + value = "dr_brazier_02.m2", }, { fileId = "192374", - value = "dr_brazier_03.m2", text = "dr_brazier_03.m2", + value = "dr_brazier_03.m2", }, }, - value = "brazier", text = "brazier", + value = "brazier", }, { children = { { fileId = "192375", - value = "dr_cable_medium.m2", text = "dr_cable_medium.m2", + value = "dr_cable_medium.m2", }, { fileId = "192376", - value = "dr_cable_thin.m2", text = "dr_cable_thin.m2", + value = "dr_cable_thin.m2", }, { fileId = "192377", - value = "dr_cable_wide.m2", text = "dr_cable_wide.m2", + value = "dr_cable_wide.m2", }, }, - value = "cables", text = "cables", + value = "cables", }, { children = { { fileId = "192379", - value = "dr_chandelier_01.m2", text = "dr_chandelier_01.m2", + value = "dr_chandelier_01.m2", }, }, - value = "chandelier", text = "chandelier", + value = "chandelier", }, { children = { { fileId = "192381", - value = "dr_cookpot_01.m2", text = "dr_cookpot_01.m2", + value = "dr_cookpot_01.m2", }, }, - value = "cookpots", text = "cookpots", + value = "cookpots", }, { children = { { fileId = "192382", - value = "dr_crashplate01.m2", text = "dr_crashplate01.m2", + value = "dr_crashplate01.m2", }, { fileId = "192383", - value = "dr_crashplate02.m2", text = "dr_crashplate02.m2", + value = "dr_crashplate02.m2", }, }, - value = "crashplate", text = "crashplate", + value = "crashplate", }, { children = { { fileId = "192387", - value = "dr_crate_01.m2", text = "dr_crate_01.m2", + value = "dr_crate_01.m2", }, { fileId = "192388", - value = "dr_crate_02.m2", text = "dr_crate_02.m2", + value = "dr_crate_02.m2", }, }, - value = "crates", text = "crates", + value = "crates", }, { children = { { fileId = "192390", - value = "dr_cryopod_bottom.m2", text = "dr_cryopod_bottom.m2", + value = "dr_cryopod_bottom.m2", }, { fileId = "192391", - value = "dr_cryopod_intact.m2", text = "dr_cryopod_intact.m2", + value = "dr_cryopod_intact.m2", }, { fileId = "192392", - value = "dr_cryopod_top.m2", text = "dr_cryopod_top.m2", + value = "dr_cryopod_top.m2", }, { fileId = "192393", - value = "dr_cryopod_wrecked.m2", text = "dr_cryopod_wrecked.m2", + value = "dr_cryopod_wrecked.m2", }, }, - value = "cryopods", text = "cryopods", + value = "cryopods", }, { children = { { fileId = "192397", - value = "hellfirecrystalformation_01_pink.m2", text = "hellfirecrystalformation_01_pink.m2", + value = "hellfirecrystalformation_01_pink.m2", }, }, - value = "crystals", text = "crystals", + value = "crystals", }, { children = { { fileId = "192398", - value = "dr_cup_01.m2", text = "dr_cup_01.m2", + value = "dr_cup_01.m2", }, { fileId = "192399", - value = "dr_cup_02.m2", text = "dr_cup_02.m2", + value = "dr_cup_02.m2", }, }, - value = "cups", text = "cups", + value = "cups", }, { children = { { fileId = "192401", - value = "tech_arch01.m2", text = "tech_arch01.m2", + value = "tech_arch01.m2", }, { fileId = "192402", - value = "tech_arch02.m2", text = "tech_arch02.m2", + value = "tech_arch02.m2", }, }, - value = "draenei_arches", text = "draenei_arches", + value = "draenei_arches", }, { children = { { fileId = "192403", - value = "draenei_wreckage_claw.m2", text = "draenei_wreckage_claw.m2", + value = "draenei_wreckage_claw.m2", }, { fileId = "192404", - value = "draenei_wreckage_frame.m2", text = "draenei_wreckage_frame.m2", + value = "draenei_wreckage_frame.m2", }, { fileId = "192405", - value = "draenei_wreckage_smallwindow.m2", text = "draenei_wreckage_smallwindow.m2", + value = "draenei_wreckage_smallwindow.m2", }, }, - value = "draenei_wreckage", text = "draenei_wreckage", + value = "draenei_wreckage", }, { children = { { fileId = "192406", - value = "exodarbridge01.m2", text = "exodarbridge01.m2", + value = "exodarbridge01.m2", }, { fileId = "192407", - value = "exodarbridge02.m2", text = "exodarbridge02.m2", + value = "exodarbridge02.m2", }, { fileId = "192408", - value = "exodarbridge03.m2", text = "exodarbridge03.m2", + value = "exodarbridge03.m2", }, { fileId = "192409", - value = "exodarplatform01.m2", text = "exodarplatform01.m2", + value = "exodarplatform01.m2", }, }, - value = "exodar", text = "exodar", + value = "exodar", }, { children = { { fileId = "192410", - value = "dr_exodarwall01.m2", text = "dr_exodarwall01.m2", + value = "dr_exodarwall01.m2", }, { fileId = "192411", - value = "dr_exodarwall02.m2", text = "dr_exodarwall02.m2", + value = "dr_exodarwall02.m2", }, }, - value = "exxodarwalls", text = "exxodarwalls", + value = "exxodarwalls", }, { children = { { fileId = "192412", - value = "glowywaterstream01.m2", text = "glowywaterstream01.m2", + value = "glowywaterstream01.m2", }, }, - value = "fountain", text = "fountain", + value = "fountain", }, { children = { { fileId = "192413", - value = "dr_fountian.m2", text = "dr_fountian.m2", + value = "dr_fountian.m2", }, { fileId = "192414", - value = "dr_fountian_ruined.m2", text = "dr_fountian_ruined.m2", + value = "dr_fountian_ruined.m2", }, }, - value = "fountian", text = "fountian", + value = "fountian", }, { children = { { fileId = "192416", - value = "dr_glow.m2", text = "dr_glow.m2", + value = "dr_glow.m2", }, { fileId = "192417", - value = "dr_glow_blue.m2", text = "dr_glow_blue.m2", + value = "dr_glow_blue.m2", }, { fileId = "192418", - value = "dr_rays_blue.m2", text = "dr_rays_blue.m2", + value = "dr_rays_blue.m2", }, { fileId = "192419", - value = "dr_rays_orange.m2", text = "dr_rays_orange.m2", + value = "dr_rays_orange.m2", }, { fileId = "192420", - value = "dr_rays_pink.m2", text = "dr_rays_pink.m2", + value = "dr_rays_pink.m2", }, }, - value = "glow", text = "glow", + value = "glow", }, { children = { { fileId = "192423", - value = "dr_tomb.m2", text = "dr_tomb.m2", + value = "dr_tomb.m2", }, { fileId = "192424", - value = "dr_tombstone01.m2", text = "dr_tombstone01.m2", + value = "dr_tombstone01.m2", }, { fileId = "192425", - value = "dr_tombstone02.m2", text = "dr_tombstone02.m2", + value = "dr_tombstone02.m2", }, { fileId = "192426", - value = "dr_tombstone03.m2", text = "dr_tombstone03.m2", + value = "dr_tombstone03.m2", }, }, - value = "graveyard", text = "graveyard", + value = "graveyard", }, { children = { { fileId = "192427", - value = "dr_draenei_holorunes01.m2", text = "dr_draenei_holorunes01.m2", + value = "dr_draenei_holorunes01.m2", }, { fileId = "192428", - value = "dr_draenei_holorunes01_big.m2", text = "dr_draenei_holorunes01_big.m2", + value = "dr_draenei_holorunes01_big.m2", }, { fileId = "192429", - value = "dr_draenei_holorunes01_bigred.m2", text = "dr_draenei_holorunes01_bigred.m2", + value = "dr_draenei_holorunes01_bigred.m2", }, { fileId = "192430", - value = "dr_draenei_holorunes02.m2", text = "dr_draenei_holorunes02.m2", + value = "dr_draenei_holorunes02.m2", }, { fileId = "192431", - value = "dr_draenei_holorunes02_big.m2", text = "dr_draenei_holorunes02_big.m2", + value = "dr_draenei_holorunes02_big.m2", }, { fileId = "192432", - value = "dr_draenei_holorunes02_bigred.m2", text = "dr_draenei_holorunes02_bigred.m2", + value = "dr_draenei_holorunes02_bigred.m2", }, { fileId = "192433", - value = "dr_draenei_holorunes03.m2", text = "dr_draenei_holorunes03.m2", + value = "dr_draenei_holorunes03.m2", }, { fileId = "192434", - value = "dr_draenei_holorunes03_big.m2", text = "dr_draenei_holorunes03_big.m2", + value = "dr_draenei_holorunes03_big.m2", }, { fileId = "192435", - value = "dr_draenei_holorunes03_bigred.m2", text = "dr_draenei_holorunes03_bigred.m2", + value = "dr_draenei_holorunes03_bigred.m2", }, }, - value = "holo", text = "holo", + value = "holo", }, { children = { { fileId = "192441", - value = "dr_holographic_stand.m2", text = "dr_holographic_stand.m2", + value = "dr_holographic_stand.m2", }, }, - value = "holographicstand", text = "holographicstand", + value = "holographicstand", }, { children = { { fileId = "192445", - value = "dr_banner02.m2", text = "dr_banner02.m2", + value = "dr_banner02.m2", }, { fileId = "192446", - value = "dr_cryopod_intact2.m2", text = "dr_cryopod_intact2.m2", + value = "dr_cryopod_intact2.m2", }, { fileId = "192447", - value = "dr_knickknack_01.m2", text = "dr_knickknack_01.m2", + value = "dr_knickknack_01.m2", }, { fileId = "192448", - value = "dr_knickknack_02.m2", text = "dr_knickknack_02.m2", + value = "dr_knickknack_02.m2", }, { fileId = "192449", - value = "dr_knickknack_02b.m2", text = "dr_knickknack_02b.m2", + value = "dr_knickknack_02b.m2", }, { fileId = "192450", - value = "dr_knickknack_03.m2", text = "dr_knickknack_03.m2", + value = "dr_knickknack_03.m2", }, { fileId = "192451", - value = "dr_knickknack_04.m2", text = "dr_knickknack_04.m2", + value = "dr_knickknack_04.m2", }, }, - value = "knickknacks", text = "knickknacks", + value = "knickknacks", }, { children = { { fileId = "192455", - value = "dr_lamppost_01.m2", text = "dr_lamppost_01.m2", + value = "dr_lamppost_01.m2", }, { fileId = "192456", - value = "dr_lamppost_02.m2", text = "dr_lamppost_02.m2", + value = "dr_lamppost_02.m2", }, }, - value = "lampposts", text = "lampposts", + value = "lampposts", }, { children = { { fileId = "192458", - value = "dr_lantern_01.m2", text = "dr_lantern_01.m2", + value = "dr_lantern_01.m2", }, }, - value = "lanterns", text = "lanterns", + value = "lanterns", }, { children = { { fileId = "192460", - value = "dr_loom_01.m2", text = "dr_loom_01.m2", + value = "dr_loom_01.m2", }, }, - value = "loom", text = "loom", + value = "loom", }, { children = { { fileId = "192461", - value = "dr_machineparts01.m2", text = "dr_machineparts01.m2", + value = "dr_machineparts01.m2", }, }, - value = "machines", text = "machines", + value = "machines", }, { children = { { fileId = "192464", - value = "draeneipostbox.m2", text = "draeneipostbox.m2", + value = "draeneipostbox.m2", }, }, - value = "mailbox", text = "mailbox", + value = "mailbox", }, { children = { { fileId = "192465", - value = "dr_parasol_large.m2", text = "dr_parasol_large.m2", + value = "dr_parasol_large.m2", }, { fileId = "192466", - value = "dr_parasol_small.m2", text = "dr_parasol_small.m2", + value = "dr_parasol_small.m2", }, }, - value = "parasol", text = "parasol", + value = "parasol", }, { children = { { fileId = "192468", - value = "dr_signs_wanted.m2", text = "dr_signs_wanted.m2", + value = "dr_signs_wanted.m2", }, }, - value = "posters", text = "posters", + value = "posters", }, { children = { { fileId = "192470", - value = "dr_signs_alchemy.m2", text = "dr_signs_alchemy.m2", + value = "dr_signs_alchemy.m2", }, { fileId = "192472", - value = "dr_signs_anvil.m2", text = "dr_signs_anvil.m2", + value = "dr_signs_anvil.m2", }, { fileId = "192474", - value = "dr_signs_axes.m2", text = "dr_signs_axes.m2", + value = "dr_signs_axes.m2", }, { fileId = "192476", - value = "dr_signs_bank.m2", text = "dr_signs_bank.m2", + value = "dr_signs_bank.m2", }, { fileId = "192479", - value = "dr_signs_book.m2", text = "dr_signs_book.m2", + value = "dr_signs_book.m2", }, { fileId = "192481", - value = "dr_signs_bow.m2", text = "dr_signs_bow.m2", + value = "dr_signs_bow.m2", }, { fileId = "192483", - value = "dr_signs_bread.m2", text = "dr_signs_bread.m2", + value = "dr_signs_bread.m2", }, { fileId = "192485", - value = "dr_signs_cheese.m2", text = "dr_signs_cheese.m2", + value = "dr_signs_cheese.m2", }, { fileId = "192487", - value = "dr_signs_container.m2", text = "dr_signs_container.m2", + value = "dr_signs_container.m2", }, { fileId = "192489", - value = "dr_signs_cooking.m2", text = "dr_signs_cooking.m2", + value = "dr_signs_cooking.m2", }, { fileId = "192491", - value = "dr_signs_engineering.m2", text = "dr_signs_engineering.m2", + value = "dr_signs_engineering.m2", }, { fileId = "192493", - value = "dr_signs_generalshop.m2", text = "dr_signs_generalshop.m2", + value = "dr_signs_generalshop.m2", }, { fileId = "192495", - value = "dr_signs_helm.m2", text = "dr_signs_helm.m2", + value = "dr_signs_helm.m2", }, { fileId = "192497", - value = "dr_signs_herbalism.m2", text = "dr_signs_herbalism.m2", + value = "dr_signs_herbalism.m2", }, { fileId = "192499", - value = "dr_signs_meat.m2", text = "dr_signs_meat.m2", + value = "dr_signs_meat.m2", }, { fileId = "192501", - value = "dr_signs_poisons.m2", text = "dr_signs_poisons.m2", + value = "dr_signs_poisons.m2", }, { fileId = "192503", - value = "dr_signs_shield.m2", text = "dr_signs_shield.m2", + value = "dr_signs_shield.m2", }, { fileId = "192505", - value = "dr_signs_staff.m2", text = "dr_signs_staff.m2", + value = "dr_signs_staff.m2", }, { fileId = "192507", - value = "dr_signs_swords.m2", text = "dr_signs_swords.m2", + value = "dr_signs_swords.m2", }, { fileId = "192509", - value = "dr_signs_tailor.m2", text = "dr_signs_tailor.m2", + value = "dr_signs_tailor.m2", }, { fileId = "192511", - value = "dr_signs_tavern.m2", text = "dr_signs_tavern.m2", + value = "dr_signs_tavern.m2", }, }, - value = "shopsigns", text = "shopsigns", + value = "shopsigns", }, { children = { { fileId = "192513", - value = "dr_signpost_01.m2", text = "dr_signpost_01.m2", + value = "dr_signpost_01.m2", }, { fileId = "192514", - value = "dr_signpost_sign01.m2", text = "dr_signpost_sign01.m2", + value = "dr_signpost_sign01.m2", }, }, - value = "signs", text = "signs", + value = "signs", }, { children = { { fileId = "192515", - value = "dr_table_medium_01.m2", text = "dr_table_medium_01.m2", + value = "dr_table_medium_01.m2", }, { fileId = "192516", - value = "dr_table_small_02.m2", text = "dr_table_small_02.m2", + value = "dr_table_small_02.m2", }, }, - value = "tables", text = "tables", + value = "tables", }, { children = { { fileId = "192518", - value = "atriumbridge.m2", text = "atriumbridge.m2", + value = "atriumbridge.m2", }, { fileId = "192529", - value = "factorybridge.m2", text = "factorybridge.m2", + value = "factorybridge.m2", }, { fileId = "192530", - value = "factoryelevator.m2", text = "factoryelevator.m2", + value = "factoryelevator.m2", }, { fileId = "192531", - value = "factoryenergycube.m2", text = "factoryenergycube.m2", + value = "factoryenergycube.m2", }, { fileId = "192532", - value = "factoryenergycube_3x3.m2", text = "factoryenergycube_3x3.m2", + value = "factoryenergycube_3x3.m2", }, { fileId = "192533", - value = "factoryfloor.m2", text = "factoryfloor.m2", + value = "factoryfloor.m2", }, { fileId = "192535", - value = "narru_crystal_corrupted.m2", text = "narru_crystal_corrupted.m2", + value = "narru_crystal_corrupted.m2", }, { fileId = "192536", - value = "narru_crystal_corrupted_no_lightning.m2", text = "narru_crystal_corrupted_no_lightning.m2", + value = "narru_crystal_corrupted_no_lightning.m2", }, { fileId = "192537", - value = "raid_circle_floor.m2", text = "raid_circle_floor.m2", + value = "raid_circle_floor.m2", }, }, - value = "tempestkeep", text = "tempestkeep", + value = "tempestkeep", }, { children = { { fileId = "192542", - value = "dr_tent_01.m2", text = "dr_tent_01.m2", + value = "dr_tent_01.m2", }, { fileId = "192543", - value = "dr_tent_02.m2", text = "dr_tent_02.m2", + value = "dr_tent_02.m2", }, }, - value = "tents", text = "tents", + value = "tents", }, { children = { { fileId = "192545", - value = "draenei_tubes.m2", text = "draenei_tubes.m2", + value = "draenei_tubes.m2", }, { fileId = "192546", - value = "draenei_tubes_offset.m2", text = "draenei_tubes_offset.m2", + value = "draenei_tubes_offset.m2", }, }, - value = "tubes", text = "tubes", + value = "tubes", }, { children = { { fileId = "192554", - value = "draenei_ancientwall01.m2", text = "draenei_ancientwall01.m2", + value = "draenei_ancientwall01.m2", }, { fileId = "192555", - value = "draenei_ancientwall02.m2", text = "draenei_ancientwall02.m2", + value = "draenei_ancientwall02.m2", }, }, - value = "wall", text = "wall", + value = "wall", }, }, - value = "draenei", text = "draenei", + value = "draenei", }, { children = { @@ -51276,166 +51243,166 @@ WeakAuras.ModelPaths = { children = { { fileId = "192556", - value = "et_barrel01.m2", text = "et_barrel01.m2", + value = "et_barrel01.m2", }, { fileId = "192557", - value = "et_barrel01off.m2", text = "et_barrel01off.m2", + value = "et_barrel01off.m2", }, }, - value = "barrel", text = "barrel", + value = "barrel", }, { children = { { fileId = "192559", - value = "et_cage.m2", text = "et_cage.m2", + value = "et_cage.m2", }, { fileId = "192561", - value = "et_cagebase.m2", text = "et_cagebase.m2", + value = "et_cagebase.m2", }, }, - value = "cage", text = "cage", + value = "cage", }, { children = { { fileId = "192562", - value = "et_collector01.m2", text = "et_collector01.m2", + value = "et_collector01.m2", }, }, - value = "collector", text = "collector", + value = "collector", }, { children = { { fileId = "192563", - value = "et_crate01.m2", text = "et_crate01.m2", + value = "et_crate01.m2", }, { fileId = "192564", - value = "et_crate01off.m2", text = "et_crate01off.m2", + value = "et_crate01off.m2", }, }, - value = "crate", text = "crate", + value = "crate", }, { children = { { fileId = "192566", - value = "et_crystalforge.m2", text = "et_crystalforge.m2", + value = "et_crystalforge.m2", }, { fileId = "192567", - value = "et_crystalforgecontroller.m2", text = "et_crystalforgecontroller.m2", + value = "et_crystalforgecontroller.m2", }, }, - value = "crystalforge", text = "crystalforge", + value = "crystalforge", }, { children = { { fileId = "192568", - value = "et_holographic_stand.m2", text = "et_holographic_stand.m2", + value = "et_holographic_stand.m2", }, }, - value = "holographicstand", text = "holographicstand", + value = "holographicstand", }, { children = { { fileId = "192569", - value = "et_lamppost01.m2", text = "et_lamppost01.m2", + value = "et_lamppost01.m2", }, { fileId = "192570", - value = "et_lamppost01off.m2", text = "et_lamppost01off.m2", + value = "et_lamppost01off.m2", }, }, - value = "lamppost", text = "lamppost", + value = "lamppost", }, { children = { { fileId = "192572", - value = "et_portal01.m2", text = "et_portal01.m2", + value = "et_portal01.m2", }, { fileId = "192573", - value = "et_portal01off.m2", text = "et_portal01off.m2", + value = "et_portal01off.m2", }, { fileId = "192574", - value = "et_portal01offhalf.m2", text = "et_portal01offhalf.m2", + value = "et_portal01offhalf.m2", }, }, - value = "portal", text = "portal", + value = "portal", }, { children = { { fileId = "192576", - value = "et_standard.m2", text = "et_standard.m2", + value = "et_standard.m2", }, }, - value = "standard", text = "standard", + value = "standard", }, { children = { { fileId = "192577", - value = "et_tent01.m2", text = "et_tent01.m2", + value = "et_tent01.m2", }, { fileId = "192578", - value = "et_tent02.m2", text = "et_tent02.m2", + value = "et_tent02.m2", }, }, - value = "tents", text = "tents", + value = "tents", }, }, - value = "ethereal", text = "ethereal", + value = "ethereal", }, { children = { { fileId = "192579", - value = "fishfrenzy.m2", text = "fishfrenzy.m2", + value = "fishfrenzy.m2", }, }, - value = "fishfrenzy", text = "fishfrenzy", + value = "fishfrenzy", }, { children = { @@ -51443,107 +51410,107 @@ WeakAuras.ModelPaths = { children = { { fileId = "192581", - value = "ghostlands_gravestone01.m2", text = "ghostlands_gravestone01.m2", + value = "ghostlands_gravestone01.m2", }, { fileId = "192582", - value = "ghostlands_gravestone02.m2", text = "ghostlands_gravestone02.m2", + value = "ghostlands_gravestone02.m2", }, { fileId = "192583", - value = "ghostlands_gravestone03.m2", text = "ghostlands_gravestone03.m2", + value = "ghostlands_gravestone03.m2", }, { fileId = "192585", - value = "ghostlands_tomb01.m2", text = "ghostlands_tomb01.m2", + value = "ghostlands_tomb01.m2", }, }, - value = "graveyard", text = "graveyard", + value = "graveyard", }, }, - value = "ghostlands", text = "ghostlands", + value = "ghostlands", }, { children = { { fileId = "192586", - value = "hologram_doomguard.m2", text = "hologram_doomguard.m2", + value = "hologram_doomguard.m2", }, { fileId = "192590", - value = "hologram_dreadlord.m2", text = "hologram_dreadlord.m2", + value = "hologram_dreadlord.m2", }, { fileId = "192593", - value = "hologram_eredar.m2", text = "hologram_eredar.m2", + value = "hologram_eredar.m2", }, { fileId = "192596", - value = "hologram_felguard.m2", text = "hologram_felguard.m2", + value = "hologram_felguard.m2", }, { fileId = "192598", - value = "hologram_felhound.m2", text = "hologram_felhound.m2", + value = "hologram_felhound.m2", }, { fileId = "192600", - value = "hologram_ganarg.m2", text = "hologram_ganarg.m2", + value = "hologram_ganarg.m2", }, { fileId = "192602", - value = "hologram_imp.m2", text = "hologram_imp.m2", + value = "hologram_imp.m2", }, { fileId = "192604", - value = "hologram_infernal.m2", text = "hologram_infernal.m2", + value = "hologram_infernal.m2", }, { fileId = "192606", - value = "hologram_moarg.m2", text = "hologram_moarg.m2", + value = "hologram_moarg.m2", }, { fileId = "192608", - value = "hologram_pitlord.m2", text = "hologram_pitlord.m2", + value = "hologram_pitlord.m2", }, { fileId = "192612", - value = "hologram_shivan.m2", text = "hologram_shivan.m2", + value = "hologram_shivan.m2", }, { fileId = "192615", - value = "hologram_succubus.m2", text = "hologram_succubus.m2", + value = "hologram_succubus.m2", }, { fileId = "192619", - value = "hologram_voidwalker.m2", text = "hologram_voidwalker.m2", + value = "hologram_voidwalker.m2", }, { fileId = "192621", - value = "hologram_wrathguard.m2", text = "hologram_wrathguard.m2", + value = "hologram_wrathguard.m2", }, }, - value = "holograms", text = "holograms", + value = "holograms", }, { children = { @@ -51551,16 +51518,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "192623", - value = "bannerillidan.m2", text = "bannerillidan.m2", + value = "bannerillidan.m2", }, }, - value = "banners", text = "banners", + value = "banners", }, }, - value = "illidan", text = "illidan", + value = "illidan", }, { children = { @@ -51568,27 +51535,27 @@ WeakAuras.ModelPaths = { children = { { fileId = "192626", - value = "lo_wagon_01.m2", text = "lo_wagon_01.m2", + value = "lo_wagon_01.m2", }, }, - value = "wagon", text = "wagon", + value = "wagon", }, { children = { { fileId = "192631", - value = "lo_weaponrack.m2", text = "lo_weaponrack.m2", + value = "lo_weaponrack.m2", }, }, - value = "weaponrack", text = "weaponrack", + value = "weaponrack", }, }, - value = "lostones", text = "lostones", + value = "lostones", }, { children = { @@ -51596,108 +51563,108 @@ WeakAuras.ModelPaths = { children = { { fileId = "192633", - value = "na_ark.m2", text = "na_ark.m2", + value = "na_ark.m2", }, }, - value = "ark", text = "ark", + value = "ark", }, { children = { { fileId = "192637", - value = "na_banner01.m2", text = "na_banner01.m2", + value = "na_banner01.m2", }, }, - value = "banner", text = "banner", + value = "banner", }, { children = { { fileId = "192638", - value = "na_crate01.m2", text = "na_crate01.m2", + value = "na_crate01.m2", }, { fileId = "192639", - value = "na_crate02.m2", text = "na_crate02.m2", + value = "na_crate02.m2", }, }, - value = "crates", text = "crates", + value = "crates", }, { children = { { fileId = "192641", - value = "na_distiller.m2", text = "na_distiller.m2", + value = "na_distiller.m2", }, }, - value = "distiller", text = "distiller", + value = "distiller", }, { children = { { fileId = "192642", - value = "na_jar01.m2", text = "na_jar01.m2", + value = "na_jar01.m2", }, { fileId = "192643", - value = "na_jar02.m2", text = "na_jar02.m2", + value = "na_jar02.m2", }, }, - value = "jars", text = "jars", + value = "jars", }, { children = { { fileId = "192645", - value = "nagapagodahut01.m2", text = "nagapagodahut01.m2", + value = "nagapagodahut01.m2", }, }, - value = "pagoda", text = "pagoda", + value = "pagoda", }, { children = { { fileId = "192647", - value = "na_torch01.m2", text = "na_torch01.m2", + value = "na_torch01.m2", }, }, - value = "torch", text = "torch", + value = "torch", }, { children = { { fileId = "192649", - value = "na_weaponstack01.m2", text = "na_weaponstack01.m2", + value = "na_weaponstack01.m2", }, { fileId = "192650", - value = "na_weaponstack02.m2", text = "na_weaponstack02.m2", + value = "na_weaponstack02.m2", }, }, - value = "weaponstacks", text = "weaponstacks", + value = "weaponstacks", }, }, - value = "naga", text = "naga", + value = "naga", }, { children = { @@ -51705,243 +51672,243 @@ WeakAuras.ModelPaths = { children = { { fileId = "192651", - value = "om_bones_01.m2", text = "om_bones_01.m2", + value = "om_bones_01.m2", }, { fileId = "192652", - value = "om_bones_02.m2", text = "om_bones_02.m2", + value = "om_bones_02.m2", }, { fileId = "192653", - value = "om_bones_03.m2", text = "om_bones_03.m2", + value = "om_bones_03.m2", }, }, - value = "bones", text = "bones", + value = "bones", }, { children = { { fileId = "192655", - value = "om_chains_01.m2", text = "om_chains_01.m2", + value = "om_chains_01.m2", }, { fileId = "192656", - value = "om_chains_02.m2", text = "om_chains_02.m2", + value = "om_chains_02.m2", }, { fileId = "192657", - value = "om_chains_03.m2", text = "om_chains_03.m2", + value = "om_chains_03.m2", }, { fileId = "192658", - value = "om_chains_04.m2", text = "om_chains_04.m2", + value = "om_chains_04.m2", }, }, - value = "chains", text = "chains", + value = "chains", }, { children = { { fileId = "192659", - value = "om_chair_01.m2", text = "om_chair_01.m2", + value = "om_chair_01.m2", }, }, - value = "chair", text = "chair", + value = "chair", }, { children = { { fileId = "192662", - value = "om_campfire_01.m2", text = "om_campfire_01.m2", + value = "om_campfire_01.m2", }, { fileId = "192664", - value = "om_torch_01.m2", text = "om_torch_01.m2", + value = "om_torch_01.m2", }, }, - value = "fires", text = "fires", + value = "fires", }, { children = { { fileId = "192666", - value = "om_forge_01.m2", text = "om_forge_01.m2", + value = "om_forge_01.m2", }, }, - value = "forge", text = "forge", + value = "forge", }, { children = { { fileId = "192667", - value = "om_pillar_01.m2", text = "om_pillar_01.m2", + value = "om_pillar_01.m2", }, }, - value = "pillar", text = "pillar", + value = "pillar", }, { children = { { fileId = "192668", - value = "om_rock_01.m2", text = "om_rock_01.m2", + value = "om_rock_01.m2", }, { fileId = "192669", - value = "om_rock_02.m2", text = "om_rock_02.m2", + value = "om_rock_02.m2", }, { fileId = "192670", - value = "om_rock_03.m2", text = "om_rock_03.m2", + value = "om_rock_03.m2", }, { fileId = "192671", - value = "om_rock_04.m2", text = "om_rock_04.m2", + value = "om_rock_04.m2", }, { fileId = "192672", - value = "om_rock_05.m2", text = "om_rock_05.m2", + value = "om_rock_05.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "192674", - value = "om_iron_spike_01.m2", text = "om_iron_spike_01.m2", + value = "om_iron_spike_01.m2", }, { fileId = "192675", - value = "om_iron_spike_02.m2", text = "om_iron_spike_02.m2", + value = "om_iron_spike_02.m2", }, }, - value = "spikes", text = "spikes", + value = "spikes", }, { children = { { fileId = "192677", - value = "om_stonehenge_01.m2", text = "om_stonehenge_01.m2", + value = "om_stonehenge_01.m2", }, { fileId = "192678", - value = "om_stonehenge_02.m2", text = "om_stonehenge_02.m2", + value = "om_stonehenge_02.m2", }, { fileId = "192679", - value = "om_stonehenge_03.m2", text = "om_stonehenge_03.m2", + value = "om_stonehenge_03.m2", }, }, - value = "stonehenge", text = "stonehenge", + value = "stonehenge", }, { children = { { fileId = "192680", - value = "om_table_01.m2", text = "om_table_01.m2", + value = "om_table_01.m2", }, }, - value = "table", text = "table", + value = "table", }, { children = { { fileId = "192682", - value = "om_tent_01.m2", text = "om_tent_01.m2", + value = "om_tent_01.m2", }, { fileId = "192683", - value = "om_tent_02.m2", text = "om_tent_02.m2", + value = "om_tent_02.m2", }, { fileId = "192684", - value = "om_tent_03.m2", text = "om_tent_03.m2", + value = "om_tent_03.m2", }, }, - value = "tents", text = "tents", + value = "tents", }, { children = { { fileId = "192685", - value = "om_totem_01.m2", text = "om_totem_01.m2", + value = "om_totem_01.m2", }, }, - value = "totem", text = "totem", + value = "totem", }, { children = { { fileId = "192686", - value = "om_weaponrack_01.m2", text = "om_weaponrack_01.m2", + value = "om_weaponrack_01.m2", }, { fileId = "192687", - value = "om_weapons_01.m2", text = "om_weapons_01.m2", + value = "om_weapons_01.m2", }, { fileId = "192688", - value = "om_weapons_02.m2", text = "om_weapons_02.m2", + value = "om_weapons_02.m2", }, { fileId = "192689", - value = "om_weapons_03.m2", text = "om_weapons_03.m2", + value = "om_weapons_03.m2", }, { fileId = "192690", - value = "om_weapons_04.m2", text = "om_weapons_04.m2", + value = "om_weapons_04.m2", }, }, - value = "weapons", text = "weapons", + value = "weapons", }, }, - value = "ogre", text = "ogre", + value = "ogre", }, { children = { @@ -51949,41 +51916,41 @@ WeakAuras.ModelPaths = { children = { { fileId = "192692", - value = "overhangrock_large_01.m2", text = "overhangrock_large_01.m2", + value = "overhangrock_large_01.m2", }, { fileId = "192693", - value = "overhangrock_large_02.m2", text = "overhangrock_large_02.m2", + value = "overhangrock_large_02.m2", }, { fileId = "192694", - value = "overhangrock_large_03.m2", text = "overhangrock_large_03.m2", + value = "overhangrock_large_03.m2", }, { fileId = "192695", - value = "overhangrock_small_01.m2", text = "overhangrock_small_01.m2", + value = "overhangrock_small_01.m2", }, { fileId = "192696", - value = "overhangrock_small_02.m2", text = "overhangrock_small_02.m2", + value = "overhangrock_small_02.m2", }, { fileId = "192697", - value = "overhangrock_small_03.m2", text = "overhangrock_small_03.m2", + value = "overhangrock_small_03.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, }, - value = "outland", text = "outland", + value = "outland", }, { children = { @@ -51991,64 +51958,64 @@ WeakAuras.ModelPaths = { children = { { fileId = "192699", - value = "shadowcouncil_banner01.m2", text = "shadowcouncil_banner01.m2", + value = "shadowcouncil_banner01.m2", }, { fileId = "192700", - value = "shadowcouncil_banner02.m2", text = "shadowcouncil_banner02.m2", + value = "shadowcouncil_banner02.m2", }, }, - value = "banners", text = "banners", + value = "banners", }, { children = { { fileId = "192701", - value = "shadowcouncil_magicdevice01.m2", text = "shadowcouncil_magicdevice01.m2", + value = "shadowcouncil_magicdevice01.m2", }, { fileId = "192702", - value = "shadowcouncil_magicdevice02.m2", text = "shadowcouncil_magicdevice02.m2", + value = "shadowcouncil_magicdevice02.m2", }, }, - value = "magicdevices", text = "magicdevices", + value = "magicdevices", }, { children = { { fileId = "192704", - value = "shadowcouncil_tent01.m2", text = "shadowcouncil_tent01.m2", + value = "shadowcouncil_tent01.m2", }, { fileId = "192705", - value = "shadowcouncil_tent02.m2", text = "shadowcouncil_tent02.m2", + value = "shadowcouncil_tent02.m2", }, }, - value = "tents", text = "tents", + value = "tents", }, { children = { { fileId = "192707", - value = "shadowcouncil_torch.m2", text = "shadowcouncil_torch.m2", + value = "shadowcouncil_torch.m2", }, }, - value = "torch", text = "torch", + value = "torch", }, }, - value = "shadowcouncil", text = "shadowcouncil", + value = "shadowcouncil", }, { children = { @@ -52056,60 +52023,60 @@ WeakAuras.ModelPaths = { children = { { fileId = "192710", - value = "jewelcraft_figurine01.m2", text = "jewelcraft_figurine01.m2", + value = "jewelcraft_figurine01.m2", }, { fileId = "192711", - value = "jewelcraft_figurine02.m2", text = "jewelcraft_figurine02.m2", + value = "jewelcraft_figurine02.m2", }, { fileId = "192712", - value = "jewelcraft_gemcut_01.m2", text = "jewelcraft_gemcut_01.m2", + value = "jewelcraft_gemcut_01.m2", }, { fileId = "192713", - value = "jewelcraft_gemcut_02.m2", text = "jewelcraft_gemcut_02.m2", + value = "jewelcraft_gemcut_02.m2", }, { fileId = "192714", - value = "jewelcraft_gemcut_03.m2", text = "jewelcraft_gemcut_03.m2", + value = "jewelcraft_gemcut_03.m2", }, { fileId = "192715", - value = "jewelcraft_gemuncut_01.m2", text = "jewelcraft_gemuncut_01.m2", + value = "jewelcraft_gemuncut_01.m2", }, { fileId = "192716", - value = "jewelcraft_gemuncut_02.m2", text = "jewelcraft_gemuncut_02.m2", + value = "jewelcraft_gemuncut_02.m2", }, { fileId = "192717", - value = "jewelcraft_gemuncut_03.m2", text = "jewelcraft_gemuncut_03.m2", + value = "jewelcraft_gemuncut_03.m2", }, { fileId = "192718", - value = "jewelcraft_grinder01.m2", text = "jewelcraft_grinder01.m2", + value = "jewelcraft_grinder01.m2", }, }, - value = "jewelcrafting", text = "jewelcrafting", + value = "jewelcrafting", }, }, - value = "tradeskill", text = "tradeskill", + value = "tradeskill", }, }, - value = "generic", text = "generic", + value = "generic", }, { children = { @@ -52117,243 +52084,243 @@ WeakAuras.ModelPaths = { children = { { fileId = "192723", - value = "ghostlands_arch_01.m2", text = "ghostlands_arch_01.m2", + value = "ghostlands_arch_01.m2", }, }, - value = "arch", text = "arch", + value = "arch", }, { children = { { fileId = "192725", - value = "ghostlandsbush01.m2", text = "ghostlandsbush01.m2", + value = "ghostlandsbush01.m2", }, { fileId = "192726", - value = "ghostlandsbush02.m2", text = "ghostlandsbush02.m2", + value = "ghostlandsbush02.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "192727", - value = "fence_ghostlands01.m2", text = "fence_ghostlands01.m2", + value = "fence_ghostlands01.m2", }, { fileId = "192728", - value = "fence_ghostlands02.m2", text = "fence_ghostlands02.m2", + value = "fence_ghostlands02.m2", }, { fileId = "192729", - value = "fence_ghostlands03.m2", text = "fence_ghostlands03.m2", + value = "fence_ghostlands03.m2", }, { fileId = "192730", - value = "fence_ghostlands04.m2", text = "fence_ghostlands04.m2", + value = "fence_ghostlands04.m2", }, }, - value = "fence", text = "fence", + value = "fence", }, { children = { { fileId = "192732", - value = "be_lamppost_ghostlands01.m2", text = "be_lamppost_ghostlands01.m2", + value = "be_lamppost_ghostlands01.m2", }, { fileId = "192733", - value = "be_lamppost_ghostlands02.m2", text = "be_lamppost_ghostlands02.m2", + value = "be_lamppost_ghostlands02.m2", }, }, - value = "lampposts", text = "lampposts", + value = "lampposts", }, { children = { { fileId = "192734", - value = "ghostlands_moonstone.m2", text = "ghostlands_moonstone.m2", + value = "ghostlands_moonstone.m2", }, }, - value = "moonstone", text = "moonstone", + value = "moonstone", }, { children = { { fileId = "192738", - value = "ghostland_obelisk_01.m2", text = "ghostland_obelisk_01.m2", + value = "ghostland_obelisk_01.m2", }, { fileId = "192739", - value = "ghostland_obelisk_02.m2", text = "ghostland_obelisk_02.m2", + value = "ghostland_obelisk_02.m2", }, { fileId = "192740", - value = "ghostland_obelisk_03.m2", text = "ghostland_obelisk_03.m2", + value = "ghostland_obelisk_03.m2", }, }, - value = "obelisk", text = "obelisk", + value = "obelisk", }, { children = { { fileId = "192742", - value = "ghostland_planter_01.m2", text = "ghostland_planter_01.m2", + value = "ghostland_planter_01.m2", }, { fileId = "192743", - value = "ghostland_planter_02.m2", text = "ghostland_planter_02.m2", + value = "ghostland_planter_02.m2", }, { fileId = "192744", - value = "ghostland_planter_03.m2", text = "ghostland_planter_03.m2", + value = "ghostland_planter_03.m2", }, }, - value = "planter", text = "planter", + value = "planter", }, { children = { { fileId = "192746", - value = "gl_bluepollen.m2", text = "gl_bluepollen.m2", + value = "gl_bluepollen.m2", }, }, - value = "pollen", text = "pollen", + value = "pollen", }, { children = { { fileId = "192747", - value = "ghostlandscliffrock01.m2", text = "ghostlandscliffrock01.m2", + value = "ghostlandscliffrock01.m2", }, { fileId = "192748", - value = "ghostlandscliffrock02.m2", text = "ghostlandscliffrock02.m2", + value = "ghostlandscliffrock02.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "192750", - value = "ghostlandssmallroots01.m2", text = "ghostlandssmallroots01.m2", + value = "ghostlandssmallroots01.m2", }, { fileId = "192751", - value = "ghostlandssmallroots02.m2", text = "ghostlandssmallroots02.m2", + value = "ghostlandssmallroots02.m2", }, { fileId = "192752", - value = "ghostlandssmallroots03.m2", text = "ghostlandssmallroots03.m2", + value = "ghostlandssmallroots03.m2", }, { fileId = "192753", - value = "ghostlandssmallroots04.m2", text = "ghostlandssmallroots04.m2", + value = "ghostlandssmallroots04.m2", }, }, - value = "roots", text = "roots", + value = "roots", }, { children = { { fileId = "192754", - value = "be_signpost_ghostlands.m2", text = "be_signpost_ghostlands.m2", + value = "be_signpost_ghostlands.m2", }, { fileId = "192755", - value = "be_signpost_sign_ghostlands.m2", text = "be_signpost_sign_ghostlands.m2", + value = "be_signpost_sign_ghostlands.m2", }, }, - value = "signpost", text = "signpost", + value = "signpost", }, { children = { { fileId = "192756", - value = "swath_skull.m2", text = "swath_skull.m2", + value = "swath_skull.m2", }, }, - value = "skulls", text = "skulls", + value = "skulls", }, { children = { { fileId = "192759", - value = "ghostlands_webstretch_01.m2", text = "ghostlands_webstretch_01.m2", + value = "ghostlands_webstretch_01.m2", }, { fileId = "192760", - value = "ghostlandsweb_01.m2", text = "ghostlandsweb_01.m2", + value = "ghostlandsweb_01.m2", }, { fileId = "192761", - value = "ghostlandsweb_02.m2", text = "ghostlandsweb_02.m2", + value = "ghostlandsweb_02.m2", }, { fileId = "192762", - value = "ghostlandsweb_03.m2", text = "ghostlandsweb_03.m2", + value = "ghostlandsweb_03.m2", }, { fileId = "192763", - value = "ghostlandswebdangle_01.m2", text = "ghostlandswebdangle_01.m2", + value = "ghostlandswebdangle_01.m2", }, { fileId = "192764", - value = "ghostlandswebdangle_02.m2", text = "ghostlandswebdangle_02.m2", + value = "ghostlandswebdangle_02.m2", }, }, - value = "webs", text = "webs", + value = "webs", }, }, - value = "ghostlands", text = "ghostlands", + value = "ghostlands", }, { children = { @@ -52363,48 +52330,48 @@ WeakAuras.ModelPaths = { children = { { fileId = "192766", - value = "magtheradoncube.m2", text = "magtheradoncube.m2", + value = "magtheradoncube.m2", }, }, - value = "cube", text = "cube", + value = "cube", }, { children = { { fileId = "192768", - value = "hellfire_bossdoor01.m2", text = "hellfire_bossdoor01.m2", + value = "hellfire_bossdoor01.m2", }, { fileId = "192769", - value = "hf_mag_door.m2", text = "hf_mag_door.m2", + value = "hf_mag_door.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, { children = { { fileId = "192771", - value = "hellfire_raid_fx.m2", text = "hellfire_raid_fx.m2", + value = "hellfire_raid_fx.m2", }, { fileId = "192772", - value = "raid_column_fx.m2", text = "raid_column_fx.m2", + value = "raid_column_fx.m2", }, }, - value = "raid_fx", text = "raid_fx", + value = "raid_fx", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -52414,81 +52381,81 @@ WeakAuras.ModelPaths = { children = { { fileId = "192781", - value = "hellfire_dw_fellconversionchamber.m2", text = "hellfire_dw_fellconversionchamber.m2", + value = "hellfire_dw_fellconversionchamber.m2", }, }, - value = "chamber", text = "chamber", + value = "chamber", }, { children = { { fileId = "192782", - value = "hellfire_dw_largefloor_crack_onoff.m2", text = "hellfire_dw_largefloor_crack_onoff.m2", + value = "hellfire_dw_largefloor_crack_onoff.m2", }, { fileId = "192783", - value = "hellfire_dw_smallfloor_crack_onoff.m2", text = "hellfire_dw_smallfloor_crack_onoff.m2", + value = "hellfire_dw_smallfloor_crack_onoff.m2", }, }, - value = "cracks", text = "cracks", + value = "cracks", }, { children = { { fileId = "192784", - value = "hellfire_dw_mainprisonentry.m2", text = "hellfire_dw_mainprisonentry.m2", + value = "hellfire_dw_mainprisonentry.m2", }, { fileId = "192785", - value = "hellfire_dw_prisondoor.m2", text = "hellfire_dw_prisondoor.m2", + value = "hellfire_dw_prisondoor.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, { children = { { fileId = "192786", - value = "hellfire_dw_summonroomdoor.m2", text = "hellfire_dw_summonroomdoor.m2", + value = "hellfire_dw_summonroomdoor.m2", }, }, - value = "summon_door", text = "summon_door", + value = "summon_door", }, { children = { { fileId = "192790", - value = "hellfire_dw_summonpower.m2", text = "hellfire_dw_summonpower.m2", + value = "hellfire_dw_summonpower.m2", }, }, - value = "summoning_power_room", text = "summoning_power_room", + value = "summoning_power_room", }, { children = { { fileId = "192793", - value = "hf_floor_switch.m2", text = "hf_floor_switch.m2", + value = "hf_floor_switch.m2", }, }, - value = "switches", text = "switches", + value = "switches", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -52496,219 +52463,214 @@ WeakAuras.ModelPaths = { children = { { fileId = "192802", - value = "dw_conversionchamber.m2", text = "dw_conversionchamber.m2", + value = "dw_conversionchamber.m2", }, { fileId = "192806", - value = "hellfire_dw_conversionchamber_broken.m2", text = "hellfire_dw_conversionchamber_broken.m2", + value = "hellfire_dw_conversionchamber_broken.m2", }, }, - value = "chamber", text = "chamber", + value = "chamber", }, { children = { { fileId = "192811", - value = "hellfire_dw_largefloor_crack.m2", text = "hellfire_dw_largefloor_crack.m2", + value = "hellfire_dw_largefloor_crack.m2", }, { fileId = "192812", - value = "hellfire_dw_largewall_crack.m2", text = "hellfire_dw_largewall_crack.m2", + value = "hellfire_dw_largewall_crack.m2", }, { fileId = "192813", - value = "hellfire_dw_smallfloor_crack.m2", text = "hellfire_dw_smallfloor_crack.m2", + value = "hellfire_dw_smallfloor_crack.m2", }, { fileId = "192814", - value = "hellfire_dw_smallwall_crack.m2", text = "hellfire_dw_smallwall_crack.m2", + value = "hellfire_dw_smallwall_crack.m2", }, }, - value = "cracks", text = "cracks", + value = "cracks", }, { children = { { fileId = "192818", - value = "hellfire_dw_celldoor.m2", text = "hellfire_dw_celldoor.m2", + value = "hellfire_dw_celldoor.m2", }, { fileId = "192819", - value = "hellfire_dw_prisonentry.m2", text = "hellfire_dw_prisonentry.m2", - }, - { - fileId = "3918700", - value = "main_prison _door.m2", - text = "main_prison _door.m2", + value = "hellfire_dw_prisonentry.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, { children = { { fileId = "192822", - value = "hellfire_dw_banner_type01.m2", text = "hellfire_dw_banner_type01.m2", + value = "hellfire_dw_banner_type01.m2", }, { fileId = "192823", - value = "hellfire_dw_banner_type02.m2", text = "hellfire_dw_banner_type02.m2", + value = "hellfire_dw_banner_type02.m2", }, { fileId = "192824", - value = "hellfire_dw_banner_type03.m2", text = "hellfire_dw_banner_type03.m2", + value = "hellfire_dw_banner_type03.m2", }, { fileId = "192825", - value = "hellfire_dw_banner_type04.m2", text = "hellfire_dw_banner_type04.m2", + value = "hellfire_dw_banner_type04.m2", }, { fileId = "192826", - value = "hellfire_dw_banner_typelarge_longchain.m2", text = "hellfire_dw_banner_typelarge_longchain.m2", + value = "hellfire_dw_banner_typelarge_longchain.m2", }, { fileId = "192827", - value = "hellfire_dw_banner_typewide.m2", text = "hellfire_dw_banner_typewide.m2", + value = "hellfire_dw_banner_typewide.m2", }, }, - value = "dw_banners", text = "dw_banners", + value = "dw_banners", }, { children = { { fileId = "192830", - value = "hellfire_dw_floorbraizer.m2", text = "hellfire_dw_floorbraizer.m2", + value = "hellfire_dw_floorbraizer.m2", }, { fileId = "192831", - value = "hellfire_dw_hangingbraizer.m2", text = "hellfire_dw_hangingbraizer.m2", + value = "hellfire_dw_hangingbraizer.m2", }, }, - value = "dw_braizer", text = "dw_braizer", + value = "dw_braizer", }, { children = { { fileId = "192833", - value = "hellfire_dw_hook.m2", text = "hellfire_dw_hook.m2", + value = "hellfire_dw_hook.m2", }, { fileId = "192834", - value = "hellfire_dw_hook_swing.m2", text = "hellfire_dw_hook_swing.m2", + value = "hellfire_dw_hook_swing.m2", }, }, - value = "dw_hooks", text = "dw_hooks", + value = "dw_hooks", }, { children = { { fileId = "192836", - value = "hf_demonwing_lantern_nolight.m2", text = "hf_demonwing_lantern_nolight.m2", + value = "hf_demonwing_lantern_nolight.m2", }, }, - value = "dw_lantern", text = "dw_lantern", + value = "dw_lantern", }, { children = { { fileId = "192839", - value = "hellfire_dw_pipe_type1.m2", text = "hellfire_dw_pipe_type1.m2", + value = "hellfire_dw_pipe_type1.m2", }, { fileId = "192840", - value = "hellfire_dw_pipe_type2.m2", text = "hellfire_dw_pipe_type2.m2", + value = "hellfire_dw_pipe_type2.m2", }, { fileId = "192841", - value = "hellfire_dw_pipe_type3.m2", text = "hellfire_dw_pipe_type3.m2", + value = "hellfire_dw_pipe_type3.m2", }, { fileId = "192842", - value = "hellfire_dw_pipe_type4.m2", text = "hellfire_dw_pipe_type4.m2", + value = "hellfire_dw_pipe_type4.m2", }, { fileId = "192843", - value = "hellfire_dw_pipe_typebasic.m2", text = "hellfire_dw_pipe_typebasic.m2", + value = "hellfire_dw_pipe_typebasic.m2", }, }, - value = "dw_pipes", text = "dw_pipes", + value = "dw_pipes", }, { children = { { fileId = "192853", - value = "hf_demonwing_lantern.m2", text = "hf_demonwing_lantern.m2", + value = "hf_demonwing_lantern.m2", }, }, - value = "lantern", text = "lantern", + value = "lantern", }, { children = { { fileId = "192863", - value = "hellfire_dw_machine_fin2.m2", text = "hellfire_dw_machine_fin2.m2", + value = "hellfire_dw_machine_fin2.m2", }, { fileId = "192864", - value = "hellfire_dw_machine_ver2.m2", text = "hellfire_dw_machine_ver2.m2", + value = "hellfire_dw_machine_ver2.m2", }, { fileId = "192865", - value = "hellfire_dw_machine_ver3.m2", text = "hellfire_dw_machine_ver3.m2", + value = "hellfire_dw_machine_ver3.m2", }, { fileId = "192866", - value = "hellfire_dw_tank.m2", text = "hellfire_dw_tank.m2", + value = "hellfire_dw_tank.m2", }, }, - value = "machine", text = "machine", + value = "machine", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "demonwing", text = "demonwing", + value = "demonwing", }, { children = { @@ -52716,124 +52678,124 @@ WeakAuras.ModelPaths = { children = { { fileId = "192870", - value = "hellfire_banner_type01.m2", text = "hellfire_banner_type01.m2", + value = "hellfire_banner_type01.m2", }, { fileId = "192871", - value = "hellfire_banner_type01_burning.m2", text = "hellfire_banner_type01_burning.m2", + value = "hellfire_banner_type01_burning.m2", }, { fileId = "192872", - value = "hellfire_banner_type02.m2", text = "hellfire_banner_type02.m2", + value = "hellfire_banner_type02.m2", }, { fileId = "192873", - value = "hellfire_banner_type03.m2", text = "hellfire_banner_type03.m2", + value = "hellfire_banner_type03.m2", }, { fileId = "192874", - value = "hellfire_banner_type04.m2", text = "hellfire_banner_type04.m2", + value = "hellfire_banner_type04.m2", }, { fileId = "192875", - value = "hellfire_banner_typelarge_longchain.m2", text = "hellfire_banner_typelarge_longchain.m2", + value = "hellfire_banner_typelarge_longchain.m2", }, { fileId = "192876", - value = "hellfire_banner_typesmall_shortchain.m2", text = "hellfire_banner_typesmall_shortchain.m2", + value = "hellfire_banner_typesmall_shortchain.m2", }, { fileId = "192877", - value = "hellfire_banner_typewide.m2", text = "hellfire_banner_typewide.m2", + value = "hellfire_banner_typewide.m2", }, }, - value = "banners", text = "banners", + value = "banners", }, { children = { { fileId = "192879", - value = "hellfire_barrier.m2", text = "hellfire_barrier.m2", + value = "hellfire_barrier.m2", }, }, - value = "barrier", text = "barrier", + value = "barrier", }, { children = { { fileId = "192883", - value = "hellfire_floorbraizer.m2", text = "hellfire_floorbraizer.m2", + value = "hellfire_floorbraizer.m2", }, { fileId = "192884", - value = "hellfire_floorbraizer_broken.m2", text = "hellfire_floorbraizer_broken.m2", + value = "hellfire_floorbraizer_broken.m2", }, { fileId = "192885", - value = "hellfire_floorbraizer_purple.m2", text = "hellfire_floorbraizer_purple.m2", + value = "hellfire_floorbraizer_purple.m2", }, { fileId = "192886", - value = "hellfire_hangingbraizer.m2", text = "hellfire_hangingbraizer.m2", + value = "hellfire_hangingbraizer.m2", }, { fileId = "192887", - value = "hellfire_hangingbraizer_purpleflame.m2", text = "hellfire_hangingbraizer_purpleflame.m2", + value = "hellfire_hangingbraizer_purpleflame.m2", }, { fileId = "192888", - value = "hellfire_standingbraizer_purple.m2", text = "hellfire_standingbraizer_purple.m2", + value = "hellfire_standingbraizer_purple.m2", }, }, - value = "braizers", text = "braizers", + value = "braizers", }, { children = { { fileId = "192891", - value = "hellfire_militarywing_throne.m2", text = "hellfire_militarywing_throne.m2", + value = "hellfire_militarywing_throne.m2", }, }, - value = "throne", text = "throne", + value = "throne", }, { children = { { fileId = "192893", - value = "hellfire_gastorch01.m2", text = "hellfire_gastorch01.m2", + value = "hellfire_gastorch01.m2", }, }, - value = "torches", text = "torches", + value = "torches", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "hellfirecitadel", text = "hellfirecitadel", + value = "hellfirecitadel", }, { children = { @@ -52841,648 +52803,648 @@ WeakAuras.ModelPaths = { children = { { fileId = "192895", - value = "hellfire_oldorcbanner01.m2", text = "hellfire_oldorcbanner01.m2", + value = "hellfire_oldorcbanner01.m2", }, { fileId = "192896", - value = "hellfire_oldorcbanner02.m2", text = "hellfire_oldorcbanner02.m2", + value = "hellfire_oldorcbanner02.m2", }, }, - value = "banners", text = "banners", + value = "banners", }, { children = { { fileId = "192899", - value = "hellfirebushthorn01.m2", text = "hellfirebushthorn01.m2", + value = "hellfirebushthorn01.m2", }, { fileId = "192900", - value = "hellfirebushthorn02.m2", text = "hellfirebushthorn02.m2", + value = "hellfirebushthorn02.m2", }, { fileId = "192901", - value = "hellfirebushthorn03.m2", text = "hellfirebushthorn03.m2", + value = "hellfirebushthorn03.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "192903", - value = "hellfirecrystal01.m2", text = "hellfirecrystal01.m2", + value = "hellfirecrystal01.m2", }, { fileId = "192905", - value = "hellfirecrystalformation_01.m2", text = "hellfirecrystalformation_01.m2", + value = "hellfirecrystalformation_01.m2", }, { fileId = "192906", - value = "hellfirecrystalformation_02.m2", text = "hellfirecrystalformation_02.m2", + value = "hellfirecrystalformation_02.m2", }, { fileId = "192907", - value = "hellfirecrystalformation_03.m2", text = "hellfirecrystalformation_03.m2", + value = "hellfirecrystalformation_03.m2", }, }, - value = "crystals", text = "crystals", + value = "crystals", }, { children = { { fileId = "192909", - value = "hellfire_fireparticle.m2", text = "hellfire_fireparticle.m2", + value = "hellfire_fireparticle.m2", }, { fileId = "192910", - value = "hellfirecurb_01.m2", text = "hellfirecurb_01.m2", + value = "hellfirecurb_01.m2", }, { fileId = "192911", - value = "hellfirecurb_02.m2", text = "hellfirecurb_02.m2", + value = "hellfirecurb_02.m2", }, { fileId = "192912", - value = "hellfirecurb_03.m2", text = "hellfirecurb_03.m2", + value = "hellfirecurb_03.m2", }, { fileId = "192913", - value = "hellfirecurb_fire_01.m2", text = "hellfirecurb_fire_01.m2", + value = "hellfirecurb_fire_01.m2", }, { fileId = "192914", - value = "hellfirecurb_fire_02.m2", text = "hellfirecurb_fire_02.m2", + value = "hellfirecurb_fire_02.m2", }, }, - value = "curb", text = "curb", + value = "curb", }, { children = { { fileId = "192920", - value = "hellfire_darkportal_fx.m2", text = "hellfire_darkportal_fx.m2", + value = "hellfire_darkportal_fx.m2", }, }, - value = "darkportal", text = "darkportal", + value = "darkportal", }, { children = { { fileId = "192930", - value = "dr_post_hellfire.m2", text = "dr_post_hellfire.m2", + value = "dr_post_hellfire.m2", }, { fileId = "192931", - value = "dr_post_hellfire_ruin.m2", text = "dr_post_hellfire_ruin.m2", + value = "dr_post_hellfire_ruin.m2", }, { fileId = "192932", - value = "dr_wall_hellfire.m2", text = "dr_wall_hellfire.m2", + value = "dr_wall_hellfire.m2", }, { fileId = "192933", - value = "dr_wall_hellfire_ruin.m2", text = "dr_wall_hellfire_ruin.m2", + value = "dr_wall_hellfire_ruin.m2", }, }, - value = "draeneifence", text = "draeneifence", + value = "draeneifence", }, { children = { { fileId = "192938", - value = "hellfire_fel_firewall_01.m2", text = "hellfire_fel_firewall_01.m2", + value = "hellfire_fel_firewall_01.m2", }, { fileId = "192939", - value = "hellfire_firewall_01.m2", text = "hellfire_firewall_01.m2", + value = "hellfire_firewall_01.m2", }, }, - value = "firewall", text = "firewall", + value = "firewall", }, { children = { { fileId = "192940", - value = "hellfire_gravestones_alliance_01.m2", text = "hellfire_gravestones_alliance_01.m2", + value = "hellfire_gravestones_alliance_01.m2", }, { fileId = "192941", - value = "hellfire_gravestones_alliance_02.m2", text = "hellfire_gravestones_alliance_02.m2", + value = "hellfire_gravestones_alliance_02.m2", }, { fileId = "192942", - value = "hellfire_gravestones_alliance_03.m2", text = "hellfire_gravestones_alliance_03.m2", + value = "hellfire_gravestones_alliance_03.m2", }, { fileId = "192943", - value = "hellfire_gravestones_horde_01.m2", text = "hellfire_gravestones_horde_01.m2", + value = "hellfire_gravestones_horde_01.m2", }, { fileId = "192944", - value = "hellfire_gravestones_horde_02.m2", text = "hellfire_gravestones_horde_02.m2", + value = "hellfire_gravestones_horde_02.m2", }, { fileId = "192945", - value = "hellfire_gravestones_horde_03.m2", text = "hellfire_gravestones_horde_03.m2", + value = "hellfire_gravestones_horde_03.m2", }, }, - value = "gravestones", text = "gravestones", + value = "gravestones", }, { children = { { fileId = "192948", - value = "hellfirefloatingrock_large_01.m2", text = "hellfirefloatingrock_large_01.m2", + value = "hellfirefloatingrock_large_01.m2", }, { fileId = "192949", - value = "hellfirefloatingrock_large_02.m2", text = "hellfirefloatingrock_large_02.m2", + value = "hellfirefloatingrock_large_02.m2", }, { fileId = "192950", - value = "hellfirefloatingrock_large_03.m2", text = "hellfirefloatingrock_large_03.m2", + value = "hellfirefloatingrock_large_03.m2", }, { fileId = "192951", - value = "hellfirefloatingrock_small_01.m2", text = "hellfirefloatingrock_small_01.m2", + value = "hellfirefloatingrock_small_01.m2", }, { fileId = "192952", - value = "hellfirefloatingrock_small_02.m2", text = "hellfirefloatingrock_small_02.m2", + value = "hellfirefloatingrock_small_02.m2", }, { fileId = "192953", - value = "hellfirefloatingrock_small_03.m2", text = "hellfirefloatingrock_small_03.m2", + value = "hellfirefloatingrock_small_03.m2", }, }, - value = "hellfirefloatingrock", text = "hellfirefloatingrock", + value = "hellfirefloatingrock", }, { children = { { fileId = "192956", - value = "hellfire_overhangrock_large_01.m2", text = "hellfire_overhangrock_large_01.m2", + value = "hellfire_overhangrock_large_01.m2", }, { fileId = "192957", - value = "hellfire_overhangrock_large_02.m2", text = "hellfire_overhangrock_large_02.m2", + value = "hellfire_overhangrock_large_02.m2", }, { fileId = "192958", - value = "hellfire_overhangrock_large_03.m2", text = "hellfire_overhangrock_large_03.m2", + value = "hellfire_overhangrock_large_03.m2", }, { fileId = "192959", - value = "hellfire_overhangrock_small_01.m2", text = "hellfire_overhangrock_small_01.m2", + value = "hellfire_overhangrock_small_01.m2", }, { fileId = "192960", - value = "hellfire_overhangrock_small_02.m2", text = "hellfire_overhangrock_small_02.m2", + value = "hellfire_overhangrock_small_02.m2", }, { fileId = "192961", - value = "hellfire_overhangrock_small_03.m2", text = "hellfire_overhangrock_small_03.m2", + value = "hellfire_overhangrock_small_03.m2", }, }, - value = "hellfireoverhangrock", text = "hellfireoverhangrock", + value = "hellfireoverhangrock", }, { children = { { fileId = "192964", - value = "hellfirewarpstorm01.m2", text = "hellfirewarpstorm01.m2", + value = "hellfirewarpstorm01.m2", }, }, - value = "hellfirewarpstorm", text = "hellfirewarpstorm", + value = "hellfirewarpstorm", }, { children = { { fileId = "192965", - value = "ancient_drainei_lamppost.m2", text = "ancient_drainei_lamppost.m2", + value = "ancient_drainei_lamppost.m2", }, { fileId = "192966", - value = "ancient_drainei_lamppost_ruined.m2", text = "ancient_drainei_lamppost_ruined.m2", + value = "ancient_drainei_lamppost_ruined.m2", }, { fileId = "192968", - value = "dr_signpost_ancient.m2", text = "dr_signpost_ancient.m2", + value = "dr_signpost_ancient.m2", }, { fileId = "192969", - value = "dr_signpost_sign_ancient.m2", text = "dr_signpost_sign_ancient.m2", + value = "dr_signpost_sign_ancient.m2", }, }, - value = "lamppost", text = "lamppost", + value = "lamppost", }, { children = { { fileId = "192972", - value = "hellfiremonolith01.m2", text = "hellfiremonolith01.m2", + value = "hellfiremonolith01.m2", }, }, - value = "monolith", text = "monolith", + value = "monolith", }, { children = { { fileId = "192973", - value = "ancient_draenei_plaform_06.m2", text = "ancient_draenei_plaform_06.m2", + value = "ancient_draenei_plaform_06.m2", }, { fileId = "192974", - value = "ancient_draenei_plaform_07.m2", text = "ancient_draenei_plaform_07.m2", + value = "ancient_draenei_plaform_07.m2", }, }, - value = "platform", text = "platform", + value = "platform", }, { children = { { fileId = "192977", - value = "hellfire_pvpflags_northfort.m2", text = "hellfire_pvpflags_northfort.m2", + value = "hellfire_pvpflags_northfort.m2", }, { fileId = "192978", - value = "hellfire_pvpflags_northfortflagsa.m2", text = "hellfire_pvpflags_northfortflagsa.m2", + value = "hellfire_pvpflags_northfortflagsa.m2", }, { fileId = "192979", - value = "hellfire_pvpflags_northfortflagsh.m2", text = "hellfire_pvpflags_northfortflagsh.m2", + value = "hellfire_pvpflags_northfortflagsh.m2", }, { fileId = "192980", - value = "hellfire_pvpflags_northfortflagsn.m2", text = "hellfire_pvpflags_northfortflagsn.m2", + value = "hellfire_pvpflags_northfortflagsn.m2", }, { fileId = "192981", - value = "hellfire_pvpflags_southfort.m2", text = "hellfire_pvpflags_southfort.m2", + value = "hellfire_pvpflags_southfort.m2", }, { fileId = "192982", - value = "hellfire_pvpflags_southfortflagsa.m2", text = "hellfire_pvpflags_southfortflagsa.m2", + value = "hellfire_pvpflags_southfortflagsa.m2", }, { fileId = "192983", - value = "hellfire_pvpflags_southfortflagsh.m2", text = "hellfire_pvpflags_southfortflagsh.m2", + value = "hellfire_pvpflags_southfortflagsh.m2", }, { fileId = "192984", - value = "hellfire_pvpflags_southfortflagsn.m2", text = "hellfire_pvpflags_southfortflagsn.m2", + value = "hellfire_pvpflags_southfortflagsn.m2", }, { fileId = "192985", - value = "hellfire_pvpflags_westfort.m2", text = "hellfire_pvpflags_westfort.m2", + value = "hellfire_pvpflags_westfort.m2", }, { fileId = "192986", - value = "hellfire_pvpflags_westfortflagsa.m2", text = "hellfire_pvpflags_westfortflagsa.m2", + value = "hellfire_pvpflags_westfortflagsa.m2", }, { fileId = "192987", - value = "hellfire_pvpflags_westfortflagsh.m2", text = "hellfire_pvpflags_westfortflagsh.m2", + value = "hellfire_pvpflags_westfortflagsh.m2", }, { fileId = "192988", - value = "hellfire_pvpflags_westfortflagsn.m2", text = "hellfire_pvpflags_westfortflagsn.m2", + value = "hellfire_pvpflags_westfortflagsn.m2", }, }, - value = "pvpflags", text = "pvpflags", + value = "pvpflags", }, { children = { { fileId = "192990", - value = "hellfirerock_razor01.m2", text = "hellfirerock_razor01.m2", + value = "hellfirerock_razor01.m2", }, { fileId = "192991", - value = "hellfirerock_razor02.m2", text = "hellfirerock_razor02.m2", + value = "hellfirerock_razor02.m2", }, { fileId = "192992", - value = "hellfirerock_razor03.m2", text = "hellfirerock_razor03.m2", + value = "hellfirerock_razor03.m2", }, { fileId = "192993", - value = "hellfirerock_short01.m2", text = "hellfirerock_short01.m2", + value = "hellfirerock_short01.m2", }, { fileId = "192994", - value = "hellfirerock_short02.m2", text = "hellfirerock_short02.m2", + value = "hellfirerock_short02.m2", }, { fileId = "192995", - value = "hellfirerock_short03.m2", text = "hellfirerock_short03.m2", + value = "hellfirerock_short03.m2", }, { fileId = "192996", - value = "hellfirerock_tall01.m2", text = "hellfirerock_tall01.m2", + value = "hellfirerock_tall01.m2", }, { fileId = "192997", - value = "hellfirerock_tall02.m2", text = "hellfirerock_tall02.m2", + value = "hellfirerock_tall02.m2", }, { fileId = "192998", - value = "hellfirerock_tall03.m2", text = "hellfirerock_tall03.m2", + value = "hellfirerock_tall03.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "193001", - value = "hellfirecliffrocks01.m2", text = "hellfirecliffrocks01.m2", + value = "hellfirecliffrocks01.m2", }, { fileId = "193002", - value = "hellfirecliffrocks02.m2", text = "hellfirecliffrocks02.m2", + value = "hellfirecliffrocks02.m2", }, { fileId = "193003", - value = "hellfirecliffrocks03.m2", text = "hellfirecliffrocks03.m2", + value = "hellfirecliffrocks03.m2", }, { fileId = "193004", - value = "hellfirecliffrocks04.m2", text = "hellfirecliffrocks04.m2", + value = "hellfirecliffrocks04.m2", }, { fileId = "193005", - value = "hellfirecliffrocks05.m2", text = "hellfirecliffrocks05.m2", + value = "hellfirecliffrocks05.m2", }, }, - value = "rockscliff", text = "rockscliff", + value = "rockscliff", }, { children = { { fileId = "193007", - value = "hellfirerocks_floatinglarge01.m2", text = "hellfirerocks_floatinglarge01.m2", + value = "hellfirerocks_floatinglarge01.m2", }, { fileId = "193008", - value = "hellfirerocks_floatinglarge02.m2", text = "hellfirerocks_floatinglarge02.m2", + value = "hellfirerocks_floatinglarge02.m2", }, { fileId = "193009", - value = "hellfirerocks_floatinglarge03.m2", text = "hellfirerocks_floatinglarge03.m2", + value = "hellfirerocks_floatinglarge03.m2", }, { fileId = "193010", - value = "hellfirerocks_floatingmedium01.m2", text = "hellfirerocks_floatingmedium01.m2", + value = "hellfirerocks_floatingmedium01.m2", }, { fileId = "193011", - value = "hellfirerocks_floatingmedium02.m2", text = "hellfirerocks_floatingmedium02.m2", + value = "hellfirerocks_floatingmedium02.m2", }, { fileId = "193012", - value = "hellfirerocks_floatingmedium03.m2", text = "hellfirerocks_floatingmedium03.m2", + value = "hellfirerocks_floatingmedium03.m2", }, { fileId = "193013", - value = "hellfirerocks_floatingsmall01.m2", text = "hellfirerocks_floatingsmall01.m2", + value = "hellfirerocks_floatingsmall01.m2", }, { fileId = "193014", - value = "hellfirerocks_floatingsmall02.m2", text = "hellfirerocks_floatingsmall02.m2", + value = "hellfirerocks_floatingsmall02.m2", }, { fileId = "193015", - value = "hellfirerocks_floatingsmall03.m2", text = "hellfirerocks_floatingsmall03.m2", + value = "hellfirerocks_floatingsmall03.m2", }, }, - value = "rocksfloating", text = "rocksfloating", + value = "rocksfloating", }, { children = { { fileId = "193016", - value = "hellfiresandtrap.m2", text = "hellfiresandtrap.m2", + value = "hellfiresandtrap.m2", }, }, - value = "sandtrap", text = "sandtrap", + value = "sandtrap", }, { children = { { fileId = "193019", - value = "hellfiresupplies_01.m2", text = "hellfiresupplies_01.m2", + value = "hellfiresupplies_01.m2", }, { fileId = "193020", - value = "hellfiresupplies_02.m2", text = "hellfiresupplies_02.m2", + value = "hellfiresupplies_02.m2", }, { fileId = "193021", - value = "hellfiresupplies_03.m2", text = "hellfiresupplies_03.m2", + value = "hellfiresupplies_03.m2", }, { fileId = "193022", - value = "hellfiresupplies_04.m2", text = "hellfiresupplies_04.m2", + value = "hellfiresupplies_04.m2", }, { fileId = "193023", - value = "hellfiresupplies_05.m2", text = "hellfiresupplies_05.m2", + value = "hellfiresupplies_05.m2", }, { fileId = "193024", - value = "hellfiresupplies_06.m2", text = "hellfiresupplies_06.m2", + value = "hellfiresupplies_06.m2", }, }, - value = "supplies", text = "supplies", + value = "supplies", }, { children = { { fileId = "193027", - value = "hellfireseedpod01.m2", text = "hellfireseedpod01.m2", + value = "hellfireseedpod01.m2", }, { fileId = "193028", - value = "hellfiretreethorns01.m2", text = "hellfiretreethorns01.m2", + value = "hellfiretreethorns01.m2", }, { fileId = "193029", - value = "hellfiretreethorns02.m2", text = "hellfiretreethorns02.m2", + value = "hellfiretreethorns02.m2", }, { fileId = "193030", - value = "hellfiretreethorns03.m2", text = "hellfiretreethorns03.m2", + value = "hellfiretreethorns03.m2", }, { fileId = "193031", - value = "hellfiretreethorns04.m2", text = "hellfiretreethorns04.m2", + value = "hellfiretreethorns04.m2", }, { fileId = "193032", - value = "hellfiretreethorns05.m2", text = "hellfiretreethorns05.m2", + value = "hellfiretreethorns05.m2", }, { fileId = "193033", - value = "hellfiretreethorns06.m2", text = "hellfiretreethorns06.m2", + value = "hellfiretreethorns06.m2", }, { fileId = "193034", - value = "hellfiretreethornspods01.m2", text = "hellfiretreethornspods01.m2", + value = "hellfiretreethornspods01.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "193036", - value = "humanwagon01.m2", text = "humanwagon01.m2", + value = "humanwagon01.m2", }, { fileId = "193038", - value = "orcwagon07.m2", text = "orcwagon07.m2", + value = "orcwagon07.m2", }, }, - value = "wagons", text = "wagons", + value = "wagons", }, }, - value = "hellfirepeninsula", text = "hellfirepeninsula", + value = "hellfirepeninsula", }, { children = { { fileId = "193039", - value = "m2_light_lightblue.m2", text = "m2_light_lightblue.m2", + value = "m2_light_lightblue.m2", }, }, - value = "m2lights", text = "m2lights", + value = "m2lights", }, { children = { @@ -53490,342 +53452,337 @@ WeakAuras.ModelPaths = { children = { { fileId = "193041", - value = "nagrandbush01.m2", text = "nagrandbush01.m2", + value = "nagrandbush01.m2", }, { fileId = "193043", - value = "nagrandbush02.m2", text = "nagrandbush02.m2", + value = "nagrandbush02.m2", }, { fileId = "193045", - value = "nagrandbush03.m2", text = "nagrandbush03.m2", + value = "nagrandbush03.m2", }, { fileId = "193047", - value = "nagrandbush04.m2", text = "nagrandbush04.m2", + value = "nagrandbush04.m2", }, }, - value = "bush", text = "bush", + value = "bush", }, { children = { { fileId = "193048", - value = "darkportal_nagrand_particles.m2", text = "darkportal_nagrand_particles.m2", + value = "darkportal_nagrand_particles.m2", }, }, - value = "darkportal", text = "darkportal", + value = "darkportal", }, { children = { - { - fileId = "193057", - value = "diamond moutain.m2", - text = "diamond moutain.m2", - }, { fileId = "193063", - value = "diamondmountain_bit.m2", text = "diamondmountain_bit.m2", + value = "diamondmountain_bit.m2", }, { fileId = "193064", - value = "diamondmountain_final.m2", text = "diamondmountain_final.m2", + value = "diamondmountain_final.m2", }, { fileId = "193065", - value = "diamondmountain_mediumbit.m2", text = "diamondmountain_mediumbit.m2", + value = "diamondmountain_mediumbit.m2", }, { fileId = "193066", - value = "dm_crystal_bunch.m2", text = "dm_crystal_bunch.m2", + value = "dm_crystal_bunch.m2", }, { fileId = "193067", - value = "dm_crystal_large.m2", text = "dm_crystal_large.m2", + value = "dm_crystal_large.m2", }, { fileId = "193068", - value = "dm_crystal_slim.m2", text = "dm_crystal_slim.m2", + value = "dm_crystal_slim.m2", }, }, - value = "diamondmount", text = "diamondmount", + value = "diamondmount", }, { children = { { fileId = "193074", - value = "nagrandtest.m2", text = "nagrandtest.m2", + value = "nagrandtest.m2", }, }, - value = "grass", text = "grass", + value = "grass", }, { children = { { fileId = "193077", - value = "nagrand_arch_01.m2", text = "nagrand_arch_01.m2", + value = "nagrand_arch_01.m2", }, { fileId = "193078", - value = "nagrand_arch_02.m2", text = "nagrand_arch_02.m2", + value = "nagrand_arch_02.m2", }, { fileId = "193079", - value = "nagrand_arch_03.m2", text = "nagrand_arch_03.m2", + value = "nagrand_arch_03.m2", }, { fileId = "193080", - value = "nagrand_arch_04.m2", text = "nagrand_arch_04.m2", + value = "nagrand_arch_04.m2", }, { fileId = "193081", - value = "nagrand_arch_05.m2", text = "nagrand_arch_05.m2", + value = "nagrand_arch_05.m2", }, { fileId = "193082", - value = "nagrand_arch_06.m2", text = "nagrand_arch_06.m2", + value = "nagrand_arch_06.m2", }, { fileId = "193083", - value = "nagrand_arch_07.m2", text = "nagrand_arch_07.m2", + value = "nagrand_arch_07.m2", }, { fileId = "193084", - value = "nagrand_arch_08.m2", text = "nagrand_arch_08.m2", + value = "nagrand_arch_08.m2", }, { fileId = "193085", - value = "nagrand_arch_09.m2", text = "nagrand_arch_09.m2", + value = "nagrand_arch_09.m2", }, { fileId = "193086", - value = "nagrand_arch_10.m2", text = "nagrand_arch_10.m2", + value = "nagrand_arch_10.m2", }, { fileId = "193087", - value = "nagrand_arch_11.m2", text = "nagrand_arch_11.m2", + value = "nagrand_arch_11.m2", }, { fileId = "193088", - value = "nagrand_largerock_01.m2", text = "nagrand_largerock_01.m2", + value = "nagrand_largerock_01.m2", }, { fileId = "193089", - value = "nagrand_largerock_02.m2", text = "nagrand_largerock_02.m2", + value = "nagrand_largerock_02.m2", }, { fileId = "193090", - value = "nagrand_largerock_03.m2", text = "nagrand_largerock_03.m2", + value = "nagrand_largerock_03.m2", }, { fileId = "193091", - value = "nagrand_rockfloating_huge01.m2", text = "nagrand_rockfloating_huge01.m2", + value = "nagrand_rockfloating_huge01.m2", }, { fileId = "193096", - value = "nagrand_smallrock_01.m2", text = "nagrand_smallrock_01.m2", + value = "nagrand_smallrock_01.m2", }, { fileId = "193097", - value = "nagrand_smallrock_02.m2", text = "nagrand_smallrock_02.m2", + value = "nagrand_smallrock_02.m2", }, { fileId = "193098", - value = "nagrand_smallrock_03.m2", text = "nagrand_smallrock_03.m2", + value = "nagrand_smallrock_03.m2", }, { fileId = "193099", - value = "nagrand_smallrock_04.m2", text = "nagrand_smallrock_04.m2", + value = "nagrand_smallrock_04.m2", }, { fileId = "193100", - value = "nagrand_smallrock_05.m2", text = "nagrand_smallrock_05.m2", + value = "nagrand_smallrock_05.m2", }, { fileId = "193101", - value = "nagrand_smallrock_06.m2", text = "nagrand_smallrock_06.m2", + value = "nagrand_smallrock_06.m2", }, { fileId = "193102", - value = "nagrand_waterfalls_forfloatingrocks.m2", text = "nagrand_waterfalls_forfloatingrocks.m2", + value = "nagrand_waterfalls_forfloatingrocks.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "193108", - value = "nagrandcorruptedroot01.m2", text = "nagrandcorruptedroot01.m2", + value = "nagrandcorruptedroot01.m2", }, { fileId = "193109", - value = "nagrandcorruptedroot02.m2", text = "nagrandcorruptedroot02.m2", + value = "nagrandcorruptedroot02.m2", }, { fileId = "193110", - value = "nagrandroot01.m2", text = "nagrandroot01.m2", + value = "nagrandroot01.m2", }, { fileId = "193111", - value = "nagrandroot01vara.m2", text = "nagrandroot01vara.m2", + value = "nagrandroot01vara.m2", }, { fileId = "193112", - value = "nagrandroot02.m2", text = "nagrandroot02.m2", + value = "nagrandroot02.m2", }, { fileId = "193113", - value = "nagrandroot02vara.m2", text = "nagrandroot02vara.m2", + value = "nagrandroot02vara.m2", }, { fileId = "193114", - value = "nagrandroot03.m2", text = "nagrandroot03.m2", + value = "nagrandroot03.m2", }, { fileId = "193115", - value = "nagrandroot03vara.m2", text = "nagrandroot03vara.m2", + value = "nagrandroot03vara.m2", }, { fileId = "193116", - value = "nagrandroot04.m2", text = "nagrandroot04.m2", + value = "nagrandroot04.m2", }, { fileId = "193117", - value = "nagrandroot04vara.m2", text = "nagrandroot04vara.m2", + value = "nagrandroot04vara.m2", }, { fileId = "193118", - value = "nagrandroot05.m2", text = "nagrandroot05.m2", + value = "nagrandroot05.m2", }, { fileId = "193119", - value = "nagrandroot05vara.m2", text = "nagrandroot05vara.m2", + value = "nagrandroot05vara.m2", }, }, - value = "roots", text = "roots", + value = "roots", }, { children = { { fileId = "193123", - value = "nagrandcorruptedtree01.m2", text = "nagrandcorruptedtree01.m2", + value = "nagrandcorruptedtree01.m2", }, { fileId = "193124", - value = "nagrandcorruptedtree02.m2", text = "nagrandcorruptedtree02.m2", + value = "nagrandcorruptedtree02.m2", }, { fileId = "193125", - value = "nagrandcorruptedtree03.m2", text = "nagrandcorruptedtree03.m2", + value = "nagrandcorruptedtree03.m2", }, { fileId = "193127", - value = "nagrandtree01.m2", text = "nagrandtree01.m2", + value = "nagrandtree01.m2", }, { fileId = "193128", - value = "nagrandtree02.m2", text = "nagrandtree02.m2", + value = "nagrandtree02.m2", }, { fileId = "193129", - value = "nagrandtree03.m2", text = "nagrandtree03.m2", + value = "nagrandtree03.m2", }, { fileId = "193130", - value = "nagrandtree04.m2", text = "nagrandtree04.m2", + value = "nagrandtree04.m2", }, { fileId = "193131", - value = "nagrandtree05.m2", text = "nagrandtree05.m2", + value = "nagrandtree05.m2", }, { fileId = "193132", - value = "nagrandtree06.m2", text = "nagrandtree06.m2", + value = "nagrandtree06.m2", }, { fileId = "193133", - value = "nagrandtree07.m2", text = "nagrandtree07.m2", + value = "nagrandtree07.m2", }, { fileId = "193134", - value = "nagrandtree08.m2", text = "nagrandtree08.m2", + value = "nagrandtree08.m2", }, { fileId = "193135", - value = "nagrandtree09.m2", text = "nagrandtree09.m2", + value = "nagrandtree09.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "nagrand", text = "nagrand", + value = "nagrand", }, { children = { @@ -53833,433 +53790,433 @@ WeakAuras.ModelPaths = { children = { { fileId = "193142", - value = "ns_biodome_all_fx_north.m2", text = "ns_biodome_all_fx_north.m2", + value = "ns_biodome_all_fx_north.m2", }, { fileId = "193143", - value = "ns_biodome_all_fx_south.m2", text = "ns_biodome_all_fx_south.m2", + value = "ns_biodome_all_fx_south.m2", }, { fileId = "193144", - value = "ns_biodome_all_fx_stormspire.m2", text = "ns_biodome_all_fx_stormspire.m2", + value = "ns_biodome_all_fx_stormspire.m2", }, { fileId = "193146", - value = "ns_biodome_bg.m2", text = "ns_biodome_bg.m2", + value = "ns_biodome_bg.m2", }, { fileId = "193147", - value = "ns_biodome_device.m2", text = "ns_biodome_device.m2", + value = "ns_biodome_device.m2", }, { fileId = "193148", - value = "ns_biodome_generic.m2", text = "ns_biodome_generic.m2", + value = "ns_biodome_generic.m2", }, { fileId = "193149", - value = "ns_biodome_pylon_effects.m2", text = "ns_biodome_pylon_effects.m2", + value = "ns_biodome_pylon_effects.m2", }, { fileId = "193152", - value = "ns_biodome_stormspire.m2", text = "ns_biodome_stormspire.m2", + value = "ns_biodome_stormspire.m2", }, }, - value = "biodomes", text = "biodomes", + value = "biodomes", }, { children = { { fileId = "193155", - value = "nethercollectorcap.m2", text = "nethercollectorcap.m2", + value = "nethercollectorcap.m2", }, }, - value = "collectorcap", text = "collectorcap", + value = "collectorcap", }, { children = { { fileId = "193156", - value = "collectortop.m2", text = "collectortop.m2", + value = "collectortop.m2", }, { fileId = "193157", - value = "collectortop_nether.m2", text = "collectortop_nether.m2", + value = "collectortop_nether.m2", }, { fileId = "193158", - value = "collectortop_off.m2", text = "collectortop_off.m2", + value = "collectortop_off.m2", }, }, - value = "collectortop", text = "collectortop", + value = "collectortop", }, { children = { { fileId = "193165", - value = "collectortubes.m2", text = "collectortubes.m2", + value = "collectortubes.m2", }, { fileId = "193166", - value = "collectortubes_building_attach.m2", text = "collectortubes_building_attach.m2", + value = "collectortubes_building_attach.m2", }, { fileId = "193167", - value = "collectortubes_building_attach_off.m2", text = "collectortubes_building_attach_off.m2", + value = "collectortubes_building_attach_off.m2", }, { fileId = "193168", - value = "collectortubes_joint_45.m2", text = "collectortubes_joint_45.m2", + value = "collectortubes_joint_45.m2", }, { fileId = "193169", - value = "collectortubes_joint_90.m2", text = "collectortubes_joint_90.m2", + value = "collectortubes_joint_90.m2", }, { fileId = "193170", - value = "collectortubes_joint_ground.m2", text = "collectortubes_joint_ground.m2", + value = "collectortubes_joint_ground.m2", }, { fileId = "193171", - value = "collectortubes_straight.m2", text = "collectortubes_straight.m2", + value = "collectortubes_straight.m2", }, { fileId = "193172", - value = "collectortubes_straight_medium.m2", text = "collectortubes_straight_medium.m2", + value = "collectortubes_straight_medium.m2", }, { fileId = "193173", - value = "collectortubes_straight_medium_off.m2", text = "collectortubes_straight_medium_off.m2", + value = "collectortubes_straight_medium_off.m2", }, { fileId = "193174", - value = "collectortubes_straight_off.m2", text = "collectortubes_straight_off.m2", + value = "collectortubes_straight_off.m2", }, { fileId = "193175", - value = "collectortubes_straight_short.m2", text = "collectortubes_straight_short.m2", + value = "collectortubes_straight_short.m2", }, { fileId = "193176", - value = "collectortubes_straight_short_off.m2", text = "collectortubes_straight_short_off.m2", + value = "collectortubes_straight_short_off.m2", }, { fileId = "193177", - value = "collectortubes_straight_states.m2", text = "collectortubes_straight_states.m2", + value = "collectortubes_straight_states.m2", }, { fileId = "193178", - value = "collectortubes_support.m2", text = "collectortubes_support.m2", + value = "collectortubes_support.m2", }, }, - value = "collectortubes", text = "collectortubes", + value = "collectortubes", }, { children = { { fileId = "193180", - value = "netherstormcracksmoke01.m2", text = "netherstormcracksmoke01.m2", + value = "netherstormcracksmoke01.m2", }, { fileId = "193181", - value = "netherstormcracksmokeblue.m2", text = "netherstormcracksmokeblue.m2", + value = "netherstormcracksmokeblue.m2", }, }, - value = "crackeffects", text = "crackeffects", + value = "crackeffects", }, { children = { { fileId = "193184", - value = "nethergravedirtmound01.m2", text = "nethergravedirtmound01.m2", + value = "nethergravedirtmound01.m2", }, }, - value = "dirt", text = "dirt", + value = "dirt", }, { children = { { fileId = "193185", - value = "netherstorm_particles.m2", text = "netherstorm_particles.m2", + value = "netherstorm_particles.m2", }, { fileId = "193186", - value = "netherstorm_particles_pink.m2", text = "netherstorm_particles_pink.m2", + value = "netherstorm_particles_pink.m2", }, }, - value = "float_particles", text = "float_particles", + value = "float_particles", }, { children = { { fileId = "193191", - value = "netherstorm_floatingsmall01.m2", text = "netherstorm_floatingsmall01.m2", + value = "netherstorm_floatingsmall01.m2", }, { fileId = "193192", - value = "netherstorm_floatingsmall02.m2", text = "netherstorm_floatingsmall02.m2", + value = "netherstorm_floatingsmall02.m2", }, { fileId = "193193", - value = "netherstorm_overhangrock_large_01.m2", text = "netherstorm_overhangrock_large_01.m2", + value = "netherstorm_overhangrock_large_01.m2", }, { fileId = "193194", - value = "netherstorm_overhangrock_large_02.m2", text = "netherstorm_overhangrock_large_02.m2", + value = "netherstorm_overhangrock_large_02.m2", }, { fileId = "193195", - value = "netherstorm_overhangrock_small_01.m2", text = "netherstorm_overhangrock_small_01.m2", + value = "netherstorm_overhangrock_small_01.m2", }, { fileId = "193196", - value = "netherstorm_overhangrock_small_02.m2", text = "netherstorm_overhangrock_small_02.m2", + value = "netherstorm_overhangrock_small_02.m2", }, { fileId = "193197", - value = "netherstorm_overhangrock_small_03.m2", text = "netherstorm_overhangrock_small_03.m2", + value = "netherstorm_overhangrock_small_03.m2", }, { fileId = "193198", - value = "netherstorm_short02.m2", text = "netherstorm_short02.m2", + value = "netherstorm_short02.m2", }, }, - value = "floatingrocks", text = "floatingrocks", + value = "floatingrocks", }, { children = { { fileId = "193201", - value = "ol_goblinbridge_gears01.m2", text = "ol_goblinbridge_gears01.m2", + value = "ol_goblinbridge_gears01.m2", }, }, - value = "goblinbridge", text = "goblinbridge", + value = "goblinbridge", }, { children = { { fileId = "193203", - value = "netherstorm_goblinwall01.m2", text = "netherstorm_goblinwall01.m2", + value = "netherstorm_goblinwall01.m2", }, { fileId = "193204", - value = "netherstorm_goblinwall02.m2", text = "netherstorm_goblinwall02.m2", + value = "netherstorm_goblinwall02.m2", }, { fileId = "193205", - value = "netherstorm_goblinwall_blasteast.m2", text = "netherstorm_goblinwall_blasteast.m2", + value = "netherstorm_goblinwall_blasteast.m2", }, { fileId = "193206", - value = "netherstorm_goblinwall_blastwest.m2", text = "netherstorm_goblinwall_blastwest.m2", + value = "netherstorm_goblinwall_blastwest.m2", }, { fileId = "193207", - value = "netherstorm_goblinwallcurve01.m2", text = "netherstorm_goblinwallcurve01.m2", + value = "netherstorm_goblinwallcurve01.m2", }, { fileId = "193208", - value = "netherstorm_goblinwallgate01.m2", text = "netherstorm_goblinwallgate01.m2", + value = "netherstorm_goblinwallgate01.m2", }, { fileId = "193210", - value = "netherstorm_goblinwallpost01.m2", text = "netherstorm_goblinwallpost01.m2", + value = "netherstorm_goblinwallpost01.m2", }, }, - value = "goblinwall", text = "goblinwall", + value = "goblinwall", }, { children = { { fileId = "193211", - value = "netherstormcracklighting01.m2", text = "netherstormcracklighting01.m2", + value = "netherstormcracklighting01.m2", }, { fileId = "193212", - value = "netherstormcracksmokeonly01.m2", text = "netherstormcracksmokeonly01.m2", + value = "netherstormcracksmokeonly01.m2", }, { fileId = "193214", - value = "netherstormlightning01.m2", text = "netherstormlightning01.m2", + value = "netherstormlightning01.m2", }, { fileId = "193215", - value = "netherstormlightning02.m2", text = "netherstormlightning02.m2", + value = "netherstormlightning02.m2", }, { fileId = "193216", - value = "netherstormlightning03.m2", text = "netherstormlightning03.m2", + value = "netherstormlightning03.m2", }, { fileId = "193217", - value = "netherstormlightning04.m2", text = "netherstormlightning04.m2", + value = "netherstormlightning04.m2", }, { fileId = "193218", - value = "netherstormlightning05.m2", text = "netherstormlightning05.m2", + value = "netherstormlightning05.m2", }, { fileId = "193219", - value = "netherstormlightning06.m2", text = "netherstormlightning06.m2", + value = "netherstormlightning06.m2", }, }, - value = "lightning", text = "lightning", + value = "lightning", }, { children = { { fileId = "193227", - value = "ns_rock_01.m2", text = "ns_rock_01.m2", + value = "ns_rock_01.m2", }, { fileId = "193228", - value = "ns_rock_02.m2", text = "ns_rock_02.m2", + value = "ns_rock_02.m2", }, { fileId = "193229", - value = "ns_rock_03.m2", text = "ns_rock_03.m2", + value = "ns_rock_03.m2", }, { fileId = "193230", - value = "ns_rock_04.m2", text = "ns_rock_04.m2", + value = "ns_rock_04.m2", }, { fileId = "193231", - value = "ns_rock_05.m2", text = "ns_rock_05.m2", + value = "ns_rock_05.m2", }, { fileId = "193232", - value = "ns_rock_06.m2", text = "ns_rock_06.m2", + value = "ns_rock_06.m2", }, { fileId = "193233", - value = "ns_rock_07.m2", text = "ns_rock_07.m2", + value = "ns_rock_07.m2", }, { fileId = "193234", - value = "ns_rock_08.m2", text = "ns_rock_08.m2", + value = "ns_rock_08.m2", }, { fileId = "193235", - value = "ns_rock_09.m2", text = "ns_rock_09.m2", + value = "ns_rock_09.m2", }, { fileId = "193236", - value = "ns_rock_10.m2", text = "ns_rock_10.m2", + value = "ns_rock_10.m2", }, { fileId = "193237", - value = "ns_rock_11.m2", text = "ns_rock_11.m2", + value = "ns_rock_11.m2", }, { fileId = "193238", - value = "ns_rock_12.m2", text = "ns_rock_12.m2", + value = "ns_rock_12.m2", }, { fileId = "193239", - value = "ns_rock_13.m2", text = "ns_rock_13.m2", + value = "ns_rock_13.m2", }, { fileId = "193240", - value = "ns_rock_14.m2", text = "ns_rock_14.m2", + value = "ns_rock_14.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "193242", - value = "netherstormsporemound01.m2", text = "netherstormsporemound01.m2", + value = "netherstormsporemound01.m2", }, }, - value = "sporemound", text = "sporemound", + value = "sporemound", }, }, - value = "netherstorm", text = "netherstorm", + value = "netherstorm", }, { children = { @@ -54269,40 +54226,40 @@ WeakAuras.ModelPaths = { children = { { fileId = "193243", - value = "pvp_lordaeron_door.m2", text = "pvp_lordaeron_door.m2", + value = "pvp_lordaeron_door.m2", }, { fileId = "193244", - value = "pvp_ogre_door_front.m2", text = "pvp_ogre_door_front.m2", + value = "pvp_ogre_door_front.m2", }, { fileId = "193245", - value = "pvp_ogre_door_interior.m2", text = "pvp_ogre_door_interior.m2", + value = "pvp_ogre_door_interior.m2", }, { fileId = "193246", - value = "pvp_orc_door_front.m2", text = "pvp_orc_door_front.m2", + value = "pvp_orc_door_front.m2", }, { fileId = "193247", - value = "pvp_orc_door_interior.m2", text = "pvp_orc_door_interior.m2", + value = "pvp_orc_door_interior.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, }, - value = "pvp", text = "pvp", + value = "pvp", }, { children = { @@ -54310,349 +54267,349 @@ WeakAuras.ModelPaths = { children = { { fileId = "193248", - value = "ol_dwarvenbattlementmossy01.m2", text = "ol_dwarvenbattlementmossy01.m2", + value = "ol_dwarvenbattlementmossy01.m2", }, { fileId = "193249", - value = "ol_dwarvenbattlementmossy02.m2", text = "ol_dwarvenbattlementmossy02.m2", + value = "ol_dwarvenbattlementmossy02.m2", }, { fileId = "193250", - value = "ol_dwarvenbattlementmossy03.m2", text = "ol_dwarvenbattlementmossy03.m2", + value = "ol_dwarvenbattlementmossy03.m2", }, { fileId = "193251", - value = "ol_dwarvenbattlementmossy04.m2", text = "ol_dwarvenbattlementmossy04.m2", + value = "ol_dwarvenbattlementmossy04.m2", }, { fileId = "193252", - value = "ol_dwarvenbattlementmossy05.m2", text = "ol_dwarvenbattlementmossy05.m2", + value = "ol_dwarvenbattlementmossy05.m2", }, { fileId = "193253", - value = "ol_dwarvenbattlementmossy06.m2", text = "ol_dwarvenbattlementmossy06.m2", + value = "ol_dwarvenbattlementmossy06.m2", }, { fileId = "193254", - value = "ol_dwarvenbattlementmossy07.m2", text = "ol_dwarvenbattlementmossy07.m2", + value = "ol_dwarvenbattlementmossy07.m2", }, { fileId = "193255", - value = "ol_lochlamppost.m2", text = "ol_lochlamppost.m2", + value = "ol_lochlamppost.m2", }, { fileId = "193257", - value = "ol_lochmodanstonefence02.m2", text = "ol_lochmodanstonefence02.m2", + value = "ol_lochmodanstonefence02.m2", }, }, - value = "base", text = "base", + value = "base", }, { children = { { fileId = "193261", - value = "shadowmoonblacktemplebrazier01.m2", text = "shadowmoonblacktemplebrazier01.m2", + value = "shadowmoonblacktemplebrazier01.m2", }, }, - value = "brazier", text = "brazier", + value = "brazier", }, { children = { { fileId = "193263", - value = "chromaticcrystralformation_01.m2", text = "chromaticcrystralformation_01.m2", + value = "chromaticcrystralformation_01.m2", }, { fileId = "193264", - value = "chromaticcrystralformation_02.m2", text = "chromaticcrystralformation_02.m2", + value = "chromaticcrystralformation_02.m2", }, { fileId = "193265", - value = "chromaticcrystralformation_03.m2", text = "chromaticcrystralformation_03.m2", + value = "chromaticcrystralformation_03.m2", }, }, - value = "crystals", text = "crystals", + value = "crystals", }, { children = { { fileId = "193269", - value = "shadowmoon_gravestones_horde_01.m2", text = "shadowmoon_gravestones_horde_01.m2", + value = "shadowmoon_gravestones_horde_01.m2", }, { fileId = "193270", - value = "shadowmoon_gravestones_horde_02.m2", text = "shadowmoon_gravestones_horde_02.m2", + value = "shadowmoon_gravestones_horde_02.m2", }, { fileId = "193271", - value = "shadowmoon_gravestones_horde_03.m2", text = "shadowmoon_gravestones_horde_03.m2", + value = "shadowmoon_gravestones_horde_03.m2", }, }, - value = "graveyard", text = "graveyard", + value = "graveyard", }, { children = { { fileId = "193278", - value = "shadowmoon_lavaguyser.m2", text = "shadowmoon_lavaguyser.m2", + value = "shadowmoon_lavaguyser.m2", }, { fileId = "193279", - value = "shadowmoon_lavasplash01.m2", text = "shadowmoon_lavasplash01.m2", + value = "shadowmoon_lavasplash01.m2", }, { fileId = "193280", - value = "shadowmoon_lavasplash02.m2", text = "shadowmoon_lavasplash02.m2", + value = "shadowmoon_lavasplash02.m2", }, }, - value = "guyser", text = "guyser", + value = "guyser", }, { children = { { fileId = "193282", - value = "shadowmoonlavaplaug01.m2", text = "shadowmoonlavaplaug01.m2", + value = "shadowmoonlavaplaug01.m2", }, { fileId = "193283", - value = "shadowmoonlavaplaug02.m2", text = "shadowmoonlavaplaug02.m2", + value = "shadowmoonlavaplaug02.m2", }, }, - value = "lavaplugs", text = "lavaplugs", + value = "lavaplugs", }, { children = { { fileId = "193284", - value = "markofkael.m2", text = "markofkael.m2", + value = "markofkael.m2", }, }, - value = "markofkael", text = "markofkael", + value = "markofkael", }, { children = { { fileId = "193286", - value = "shadowmoonmeteora.m2", text = "shadowmoonmeteora.m2", + value = "shadowmoonmeteora.m2", }, { fileId = "193287", - value = "shadowmoonmeteorb.m2", text = "shadowmoonmeteorb.m2", + value = "shadowmoonmeteorb.m2", }, { fileId = "193288", - value = "shadowmoonmeteorc.m2", text = "shadowmoonmeteorc.m2", + value = "shadowmoonmeteorc.m2", }, { fileId = "193289", - value = "shadowmoonmeteord.m2", text = "shadowmoonmeteord.m2", + value = "shadowmoonmeteord.m2", }, { fileId = "193290", - value = "shadowmoonmeteore.m2", text = "shadowmoonmeteore.m2", + value = "shadowmoonmeteore.m2", }, }, - value = "meteor", text = "meteor", + value = "meteor", }, { children = { { fileId = "193291", - value = "infernallowpoly.m2", text = "infernallowpoly.m2", + value = "infernallowpoly.m2", }, }, - value = "quest", text = "quest", + value = "quest", }, { children = { { fileId = "193293", - value = "shadowmoon_floatingsmall01.m2", text = "shadowmoon_floatingsmall01.m2", + value = "shadowmoon_floatingsmall01.m2", }, { fileId = "193294", - value = "shadowmoon_floatingsmall02.m2", text = "shadowmoon_floatingsmall02.m2", + value = "shadowmoon_floatingsmall02.m2", }, { fileId = "193295", - value = "shadowmoon_overhangrock_large_01.m2", text = "shadowmoon_overhangrock_large_01.m2", + value = "shadowmoon_overhangrock_large_01.m2", }, { fileId = "193296", - value = "shadowmoon_overhangrock_large_02.m2", text = "shadowmoon_overhangrock_large_02.m2", + value = "shadowmoon_overhangrock_large_02.m2", }, { fileId = "193297", - value = "shadowmoon_overhangrock_small_01.m2", text = "shadowmoon_overhangrock_small_01.m2", + value = "shadowmoon_overhangrock_small_01.m2", }, { fileId = "193298", - value = "shadowmoon_overhangrock_small_02.m2", text = "shadowmoon_overhangrock_small_02.m2", + value = "shadowmoon_overhangrock_small_02.m2", }, { fileId = "193299", - value = "shadowmoon_overhangrock_small_03.m2", text = "shadowmoon_overhangrock_small_03.m2", + value = "shadowmoon_overhangrock_small_03.m2", }, { fileId = "193300", - value = "shadowmoon_rock_01.m2", text = "shadowmoon_rock_01.m2", + value = "shadowmoon_rock_01.m2", }, { fileId = "193301", - value = "shadowmoon_rock_02.m2", text = "shadowmoon_rock_02.m2", + value = "shadowmoon_rock_02.m2", }, { fileId = "193302", - value = "shadowmoon_rock_03.m2", text = "shadowmoon_rock_03.m2", + value = "shadowmoon_rock_03.m2", }, { fileId = "193303", - value = "shadowmoon_rock_04.m2", text = "shadowmoon_rock_04.m2", + value = "shadowmoon_rock_04.m2", }, { fileId = "193304", - value = "shadowmoon_rock_05.m2", text = "shadowmoon_rock_05.m2", + value = "shadowmoon_rock_05.m2", }, { fileId = "193305", - value = "shadowmoon_rock_06.m2", text = "shadowmoon_rock_06.m2", + value = "shadowmoon_rock_06.m2", }, { fileId = "193306", - value = "shadowmoon_rock_07.m2", text = "shadowmoon_rock_07.m2", + value = "shadowmoon_rock_07.m2", }, { fileId = "193307", - value = "shadowmoon_short02.m2", text = "shadowmoon_short02.m2", + value = "shadowmoon_short02.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "193312", - value = "shadowmoon_rune1.m2", text = "shadowmoon_rune1.m2", + value = "shadowmoon_rune1.m2", }, { fileId = "193313", - value = "shadowmoon_rune2.m2", text = "shadowmoon_rune2.m2", + value = "shadowmoon_rune2.m2", }, }, - value = "rune", text = "rune", + value = "rune", }, { children = { { fileId = "193314", - value = "shadowmoon_scaffolding01.m2", text = "shadowmoon_scaffolding01.m2", + value = "shadowmoon_scaffolding01.m2", }, { fileId = "193315", - value = "shadowmoon_scaffolding02.m2", text = "shadowmoon_scaffolding02.m2", + value = "shadowmoon_scaffolding02.m2", }, { fileId = "193316", - value = "shadowmoon_scaffolding03.m2", text = "shadowmoon_scaffolding03.m2", + value = "shadowmoon_scaffolding03.m2", }, }, - value = "scaffolding", text = "scaffolding", + value = "scaffolding", }, { children = { { fileId = "193318", - value = "burningash02.m2", text = "burningash02.m2", + value = "burningash02.m2", }, { fileId = "193319", - value = "burningash03.m2", text = "burningash03.m2", + value = "burningash03.m2", }, { fileId = "193321", - value = "shadowmooncracksmoke01.m2", text = "shadowmooncracksmoke01.m2", + value = "shadowmooncracksmoke01.m2", }, }, - value = "smoke", text = "smoke", + value = "smoke", }, { children = { { fileId = "193326", - value = "shadowmoonvolcanotop.m2", text = "shadowmoonvolcanotop.m2", + value = "shadowmoonvolcanotop.m2", }, }, - value = "volcano", text = "volcano", + value = "volcano", }, }, - value = "shadowmoon", text = "shadowmoon", + value = "shadowmoon", }, { children = { @@ -54662,32 +54619,32 @@ WeakAuras.ModelPaths = { children = { { fileId = "193328", - value = "ancdrae_elevatorpiece.m2", text = "ancdrae_elevatorpiece.m2", + value = "ancdrae_elevatorpiece.m2", }, { fileId = "193329", - value = "ancdrae_elevatorpiece_netherstorm.m2", text = "ancdrae_elevatorpiece_netherstorm.m2", + value = "ancdrae_elevatorpiece_netherstorm.m2", }, }, - value = "elevator", text = "elevator", + value = "elevator", }, { children = { { fileId = "193330", - value = "shattrathsouptent.m2", text = "shattrathsouptent.m2", + value = "shattrathsouptent.m2", }, }, - value = "events", text = "events", + value = "events", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -54695,196 +54652,196 @@ WeakAuras.ModelPaths = { children = { { fileId = "193331", - value = "battlemasterpedestal.m2", text = "battlemasterpedestal.m2", + value = "battlemasterpedestal.m2", }, }, - value = "battlemasterpedestal", text = "battlemasterpedestal", + value = "battlemasterpedestal", }, { children = { { fileId = "193332", - value = "ancient_d_bookshelf.m2", text = "ancient_d_bookshelf.m2", + value = "ancient_d_bookshelf.m2", }, }, - value = "bookshelf", text = "bookshelf", + value = "bookshelf", }, { children = { { fileId = "193340", - value = "shattrath_narru_energy_fx.m2", text = "shattrath_narru_energy_fx.m2", + value = "shattrath_narru_energy_fx.m2", }, }, - value = "central_energy_fx", text = "central_energy_fx", + value = "central_energy_fx", }, { children = { { fileId = "193342", - value = "hf_outpostcrystals.m2", text = "hf_outpostcrystals.m2", + value = "hf_outpostcrystals.m2", }, { fileId = "193343", - value = "outpost_crystals1.m2", text = "outpost_crystals1.m2", + value = "outpost_crystals1.m2", }, { fileId = "193347", - value = "shattrath_crystal_bank.m2", text = "shattrath_crystal_bank.m2", + value = "shattrath_crystal_bank.m2", }, { fileId = "193348", - value = "shattrath_crystal_holyaldurtemple.m2", text = "shattrath_crystal_holyaldurtemple.m2", + value = "shattrath_crystal_holyaldurtemple.m2", }, { fileId = "193349", - value = "shattrath_crystal_huta.m2", text = "shattrath_crystal_huta.m2", + value = "shattrath_crystal_huta.m2", }, { fileId = "193350", - value = "shattrath_crystal_hutb.m2", text = "shattrath_crystal_hutb.m2", + value = "shattrath_crystal_hutb.m2", }, { fileId = "193351", - value = "shattrath_crystal_hutc.m2", text = "shattrath_crystal_hutc.m2", + value = "shattrath_crystal_hutc.m2", }, { fileId = "193352", - value = "shattrath_crystal_inn_bottom.m2", text = "shattrath_crystal_inn_bottom.m2", + value = "shattrath_crystal_inn_bottom.m2", }, { fileId = "193353", - value = "shattrath_crystal_inn_floating.m2", text = "shattrath_crystal_inn_floating.m2", + value = "shattrath_crystal_inn_floating.m2", }, { fileId = "193355", - value = "shattrath_crystal_outpost.m2", text = "shattrath_crystal_outpost.m2", + value = "shattrath_crystal_outpost.m2", }, { fileId = "193356", - value = "shattrath_crystal_temple_ext.m2", text = "shattrath_crystal_temple_ext.m2", + value = "shattrath_crystal_temple_ext.m2", }, { fileId = "193357", - value = "shattrath_crystal_temple_int.m2", text = "shattrath_crystal_temple_int.m2", + value = "shattrath_crystal_temple_int.m2", }, { fileId = "193358", - value = "shattrath_crystal_terrace.m2", text = "shattrath_crystal_terrace.m2", + value = "shattrath_crystal_terrace.m2", }, }, - value = "crystal_tops", text = "crystal_tops", + value = "crystal_tops", }, { children = { { fileId = "193359", - value = "shattrath_scryerdoodads.m2", text = "shattrath_scryerdoodads.m2", + value = "shattrath_scryerdoodads.m2", }, { fileId = "193360", - value = "shattrath_scryerdoodads_backcrates.m2", text = "shattrath_scryerdoodads_backcrates.m2", + value = "shattrath_scryerdoodads_backcrates.m2", }, }, - value = "giantdoodads", text = "giantdoodads", + value = "giantdoodads", }, { children = { { fileId = "193362", - value = "shattrath_draenei_holy_fx.m2", text = "shattrath_draenei_holy_fx.m2", + value = "shattrath_draenei_holy_fx.m2", }, }, - value = "holy_energy_fx", text = "holy_energy_fx", + value = "holy_energy_fx", }, { children = { { fileId = "193363", - value = "ancient_d_braizer.m2", text = "ancient_d_braizer.m2", + value = "ancient_d_braizer.m2", }, { fileId = "193364", - value = "ancient_d_braizer_blue.m2", text = "ancient_d_braizer_blue.m2", + value = "ancient_d_braizer_blue.m2", }, { fileId = "193365", - value = "ancient_d_braizer_blue_lowbatch.m2", text = "ancient_d_braizer_blue_lowbatch.m2", + value = "ancient_d_braizer_blue_lowbatch.m2", }, { fileId = "193366", - value = "ancient_d_braizer_blue_shortsmoke.m2", text = "ancient_d_braizer_blue_shortsmoke.m2", + value = "ancient_d_braizer_blue_shortsmoke.m2", }, { fileId = "193367", - value = "ancient_d_braizer_broken.m2", text = "ancient_d_braizer_broken.m2", + value = "ancient_d_braizer_broken.m2", }, { fileId = "193368", - value = "ancient_d_braizer_red.m2", text = "ancient_d_braizer_red.m2", + value = "ancient_d_braizer_red.m2", }, { fileId = "193369", - value = "ancient_d_sconce.m2", text = "ancient_d_sconce.m2", + value = "ancient_d_sconce.m2", }, { fileId = "193370", - value = "ancient_d_sconce_off.m2", text = "ancient_d_sconce_off.m2", + value = "ancient_d_sconce_off.m2", }, { fileId = "193371", - value = "ancient_d_standing_light.m2", text = "ancient_d_standing_light.m2", + value = "ancient_d_standing_light.m2", }, { fileId = "193372", - value = "ancient_d_standing_light_off.m2", text = "ancient_d_standing_light_off.m2", + value = "ancient_d_standing_light_off.m2", }, }, - value = "lighting", text = "lighting", + value = "lighting", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "shattrath", text = "shattrath", + value = "shattrath", }, { children = { @@ -54892,106 +54849,106 @@ WeakAuras.ModelPaths = { children = { { fileId = "193383", - value = "silvermoonbush05.m2", text = "silvermoonbush05.m2", + value = "silvermoonbush05.m2", }, { fileId = "193384", - value = "silvermoonbush06.m2", text = "silvermoonbush06.m2", + value = "silvermoonbush06.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "193386", - value = "floatingdandelions01.m2", text = "floatingdandelions01.m2", + value = "floatingdandelions01.m2", }, }, - value = "floatingdandelions", text = "floatingdandelions", + value = "floatingdandelions", }, { children = { { fileId = "193392", - value = "silvermoonflower01.m2", text = "silvermoonflower01.m2", + value = "silvermoonflower01.m2", }, { fileId = "193393", - value = "silvermoonflower02.m2", text = "silvermoonflower02.m2", + value = "silvermoonflower02.m2", }, { fileId = "193394", - value = "silvermoonflower03.m2", text = "silvermoonflower03.m2", + value = "silvermoonflower03.m2", }, { fileId = "193395", - value = "silvermoonflower04.m2", text = "silvermoonflower04.m2", + value = "silvermoonflower04.m2", }, { fileId = "193396", - value = "silvermoonflower05.m2", text = "silvermoonflower05.m2", + value = "silvermoonflower05.m2", }, { fileId = "193397", - value = "silvermoonflower06.m2", text = "silvermoonflower06.m2", + value = "silvermoonflower06.m2", }, }, - value = "flowers", text = "flowers", + value = "flowers", }, { children = { { fileId = "193399", - value = "eversongcliffrock01.m2", text = "eversongcliffrock01.m2", + value = "eversongcliffrock01.m2", }, { fileId = "193400", - value = "eversongcliffrock02.m2", text = "eversongcliffrock02.m2", + value = "eversongcliffrock02.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "193402", - value = "silvermoontree08.m2", text = "silvermoontree08.m2", + value = "silvermoontree08.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "193405", - value = "bigfountainwater.m2", text = "bigfountainwater.m2", + value = "bigfountainwater.m2", }, }, - value = "water", text = "water", + value = "water", }, }, - value = "silvermoon", text = "silvermoon", + value = "silvermoon", }, { children = { @@ -54999,319 +54956,319 @@ WeakAuras.ModelPaths = { children = { { fileId = "193407", - value = "silvermystbush01.m2", text = "silvermystbush01.m2", + value = "silvermystbush01.m2", }, { fileId = "193408", - value = "silvermystbush02.m2", text = "silvermystbush02.m2", + value = "silvermystbush02.m2", }, { fileId = "193409", - value = "silvermystbush03.m2", text = "silvermystbush03.m2", + value = "silvermystbush03.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "193414", - value = "silvermystcompass01.m2", text = "silvermystcompass01.m2", + value = "silvermystcompass01.m2", }, }, - value = "compass", text = "compass", + value = "compass", }, { children = { { fileId = "193420", - value = "silvermyst_elfinn_crystal.m2", text = "silvermyst_elfinn_crystal.m2", + value = "silvermyst_elfinn_crystal.m2", }, { fileId = "193421", - value = "silvermystcrystal01.m2", text = "silvermystcrystal01.m2", + value = "silvermystcrystal01.m2", }, { fileId = "193422", - value = "silvermystcrystal01_orange.m2", text = "silvermystcrystal01_orange.m2", + value = "silvermystcrystal01_orange.m2", }, { fileId = "193423", - value = "silvermystcrystal01_yellow.m2", text = "silvermystcrystal01_yellow.m2", + value = "silvermystcrystal01_yellow.m2", }, { fileId = "193424", - value = "silvermystcrystal02.m2", text = "silvermystcrystal02.m2", + value = "silvermystcrystal02.m2", }, { fileId = "193425", - value = "silvermystcrystal02_orange.m2", text = "silvermystcrystal02_orange.m2", + value = "silvermystcrystal02_orange.m2", }, { fileId = "193426", - value = "silvermystcrystal02_yellow.m2", text = "silvermystcrystal02_yellow.m2", + value = "silvermystcrystal02_yellow.m2", }, { fileId = "193427", - value = "silvermystcrystal03.m2", text = "silvermystcrystal03.m2", + value = "silvermystcrystal03.m2", }, { fileId = "193428", - value = "silvermystcrystal03_orange.m2", text = "silvermystcrystal03_orange.m2", + value = "silvermystcrystal03_orange.m2", }, { fileId = "193429", - value = "silvermystcrystal03_yellow.m2", text = "silvermystcrystal03_yellow.m2", + value = "silvermystcrystal03_yellow.m2", }, { fileId = "193434", - value = "silvermystcrystalbig01.m2", text = "silvermystcrystalbig01.m2", + value = "silvermystcrystalbig01.m2", }, { fileId = "193435", - value = "silvermystcrystalbig01_orange.m2", text = "silvermystcrystalbig01_orange.m2", + value = "silvermystcrystalbig01_orange.m2", }, { fileId = "193436", - value = "silvermystcrystalbig01_yellow.m2", text = "silvermystcrystalbig01_yellow.m2", + value = "silvermystcrystalbig01_yellow.m2", }, { fileId = "193437", - value = "silvermystcrystalbig02.m2", text = "silvermystcrystalbig02.m2", + value = "silvermystcrystalbig02.m2", }, { fileId = "193438", - value = "silvermystcrystalbig02_orange.m2", text = "silvermystcrystalbig02_orange.m2", + value = "silvermystcrystalbig02_orange.m2", }, { fileId = "193439", - value = "silvermystcrystalbig02_yellow.m2", text = "silvermystcrystalbig02_yellow.m2", + value = "silvermystcrystalbig02_yellow.m2", }, { fileId = "193440", - value = "silvermystcrystalbig03.m2", text = "silvermystcrystalbig03.m2", + value = "silvermystcrystalbig03.m2", }, { fileId = "193441", - value = "silvermystcrystalbig03_orange.m2", text = "silvermystcrystalbig03_orange.m2", + value = "silvermystcrystalbig03_orange.m2", }, { fileId = "193442", - value = "silvermystcrystalbig03_yellow.m2", text = "silvermystcrystalbig03_yellow.m2", + value = "silvermystcrystalbig03_yellow.m2", }, { fileId = "193446", - value = "silvermystcrystalsmall01.m2", text = "silvermystcrystalsmall01.m2", + value = "silvermystcrystalsmall01.m2", }, { fileId = "193447", - value = "silvermystcrystalsmall01_orange.m2", text = "silvermystcrystalsmall01_orange.m2", + value = "silvermystcrystalsmall01_orange.m2", }, { fileId = "193448", - value = "silvermystcrystalsmall01_yellow.m2", text = "silvermystcrystalsmall01_yellow.m2", + value = "silvermystcrystalsmall01_yellow.m2", }, { fileId = "193449", - value = "silvermystcrystalsmall02.m2", text = "silvermystcrystalsmall02.m2", + value = "silvermystcrystalsmall02.m2", }, { fileId = "193450", - value = "silvermystcrystalsmall02_orange.m2", text = "silvermystcrystalsmall02_orange.m2", + value = "silvermystcrystalsmall02_orange.m2", }, { fileId = "193451", - value = "silvermystcrystalsmall02_yellow.m2", text = "silvermystcrystalsmall02_yellow.m2", + value = "silvermystcrystalsmall02_yellow.m2", }, { fileId = "193452", - value = "silvermystcrystalsmall03.m2", text = "silvermystcrystalsmall03.m2", + value = "silvermystcrystalsmall03.m2", }, { fileId = "193453", - value = "silvermystcrystalsmall03_orange.m2", text = "silvermystcrystalsmall03_orange.m2", + value = "silvermystcrystalsmall03_orange.m2", }, { fileId = "193454", - value = "silvermystcrystalsmall03_yellow.m2", text = "silvermystcrystalsmall03_yellow.m2", + value = "silvermystcrystalsmall03_yellow.m2", }, }, - value = "crystals", text = "crystals", + value = "crystals", }, { children = { { fileId = "193457", - value = "silvermyst_leafpile.m2", text = "silvermyst_leafpile.m2", + value = "silvermyst_leafpile.m2", }, }, - value = "leafpile", text = "leafpile", + value = "leafpile", }, { children = { { fileId = "193458", - value = "silvermystlightningbolt01.m2", text = "silvermystlightningbolt01.m2", + value = "silvermystlightningbolt01.m2", }, }, - value = "lightning", text = "lightning", + value = "lightning", }, { children = { { fileId = "193460", - value = "silvermyst_lightshaft.m2", text = "silvermyst_lightshaft.m2", + value = "silvermyst_lightshaft.m2", }, { fileId = "193461", - value = "silvermyst_lightshaft02.m2", text = "silvermyst_lightshaft02.m2", + value = "silvermyst_lightshaft02.m2", }, { fileId = "193462", - value = "silvermyst_lightshaft03.m2", text = "silvermyst_lightshaft03.m2", + value = "silvermyst_lightshaft03.m2", }, }, - value = "lightshaft", text = "lightshaft", + value = "lightshaft", }, { children = { { fileId = "193464", - value = "silvermyst_moonstone_blue.m2", text = "silvermyst_moonstone_blue.m2", + value = "silvermyst_moonstone_blue.m2", }, { fileId = "193466", - value = "silvermyst_moonstone_green.m2", text = "silvermyst_moonstone_green.m2", + value = "silvermyst_moonstone_green.m2", }, { fileId = "193468", - value = "silvermyst_moonstone_red.m2", text = "silvermyst_moonstone_red.m2", + value = "silvermyst_moonstone_red.m2", }, }, - value = "moonstone", text = "moonstone", + value = "moonstone", }, { children = { { fileId = "193469", - value = "d_smoke.m2", text = "d_smoke.m2", + value = "d_smoke.m2", }, }, - value = "smoke", text = "smoke", + value = "smoke", }, { children = { { fileId = "193478", - value = "silvermysttree01.m2", text = "silvermysttree01.m2", + value = "silvermysttree01.m2", }, { fileId = "193479", - value = "silvermysttree02.m2", text = "silvermysttree02.m2", + value = "silvermysttree02.m2", }, { fileId = "193480", - value = "silvermysttree03.m2", text = "silvermysttree03.m2", + value = "silvermysttree03.m2", }, { fileId = "193481", - value = "silvermysttree04.m2", text = "silvermysttree04.m2", + value = "silvermysttree04.m2", }, { fileId = "193482", - value = "silvermysttree05.m2", text = "silvermysttree05.m2", + value = "silvermysttree05.m2", }, { fileId = "193483", - value = "silvermysttree_fallen01.m2", text = "silvermysttree_fallen01.m2", + value = "silvermysttree_fallen01.m2", }, { fileId = "193484", - value = "silvermysttreeroots01.m2", text = "silvermysttreeroots01.m2", + value = "silvermysttreeroots01.m2", }, { fileId = "193485", - value = "silvermysttreetorn01.m2", text = "silvermysttreetorn01.m2", + value = "silvermysttreetorn01.m2", }, { fileId = "193486", - value = "silvermysttreetorn02.m2", text = "silvermysttreetorn02.m2", + value = "silvermysttreetorn02.m2", }, { fileId = "193487", - value = "silvermysttreetorn03.m2", text = "silvermysttreetorn03.m2", + value = "silvermysttreetorn03.m2", }, { fileId = "193488", - value = "silvermysttreetorn04.m2", text = "silvermysttreetorn04.m2", + value = "silvermysttreetorn04.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "silvermyst", text = "silvermyst", + value = "silvermyst", }, { children = { @@ -55321,75 +55278,75 @@ WeakAuras.ModelPaths = { children = { { fileId = "193491", - value = "frostwurmfellfire_birth.m2", text = "frostwurmfellfire_birth.m2", + value = "frostwurmfellfire_birth.m2", }, { fileId = "193497", - value = "sunwell_bosscollision01.m2", text = "sunwell_bosscollision01.m2", + value = "sunwell_bosscollision01.m2", }, { fileId = "193498", - value = "sunwell_bosscollision02.m2", text = "sunwell_bosscollision02.m2", + value = "sunwell_bosscollision02.m2", }, { fileId = "193499", - value = "sunwell_bossforcefield.m2", text = "sunwell_bossforcefield.m2", + value = "sunwell_bossforcefield.m2", }, { fileId = "193508", - value = "sunwell_fx.m2", text = "sunwell_fx.m2", + value = "sunwell_fx.m2", }, { fileId = "193511", - value = "sunwell_ice_barrier.m2", text = "sunwell_ice_barrier.m2", + value = "sunwell_ice_barrier.m2", }, { fileId = "193518", - value = "sunwell_replica.m2", text = "sunwell_replica.m2", + value = "sunwell_replica.m2", }, { fileId = "193525", - value = "sunwell_windowdust.m2", text = "sunwell_windowdust.m2", + value = "sunwell_windowdust.m2", }, { fileId = "193527", - value = "sunwellraid_gate_01.m2", text = "sunwellraid_gate_01.m2", + value = "sunwellraid_gate_01.m2", }, { fileId = "193528", - value = "sunwellraid_gate_02.m2", text = "sunwellraid_gate_02.m2", + value = "sunwellraid_gate_02.m2", }, { fileId = "193529", - value = "sunwellraid_gate_03.m2", text = "sunwellraid_gate_03.m2", + value = "sunwellraid_gate_03.m2", }, { fileId = "193530", - value = "sunwellraid_gate_04.m2", text = "sunwellraid_gate_04.m2", + value = "sunwellraid_gate_04.m2", }, }, - value = "sunwell", text = "sunwell", + value = "sunwell", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "sunwell", text = "sunwell", + value = "sunwell", }, { children = { @@ -55399,129 +55356,129 @@ WeakAuras.ModelPaths = { children = { { fileId = "193538", - value = "tk_boss_pod.m2", text = "tk_boss_pod.m2", + value = "tk_boss_pod.m2", }, }, - value = "arcane_boss_pod", text = "arcane_boss_pod", + value = "arcane_boss_pod", }, { children = { { fileId = "193539", - value = "tk_arcane_door_horiz.m2", text = "tk_arcane_door_horiz.m2", + value = "tk_arcane_door_horiz.m2", }, { fileId = "193540", - value = "tk_arcane_door_vert.m2", text = "tk_arcane_door_vert.m2", + value = "tk_arcane_door_vert.m2", }, }, - value = "arcane_doors", text = "arcane_doors", + value = "arcane_doors", }, { children = { { fileId = "193541", - value = "tk_prison_cell.m2", text = "tk_prison_cell.m2", + value = "tk_prison_cell.m2", }, }, - value = "arcane_pod", text = "arcane_pod", + value = "arcane_pod", }, { children = { { fileId = "193551", - value = "tk_main_control_console.m2", text = "tk_main_control_console.m2", + value = "tk_main_control_console.m2", }, { fileId = "193552", - value = "tk_short_control_console.m2", text = "tk_short_control_console.m2", + value = "tk_short_control_console.m2", }, { fileId = "193553", - value = "tk_tall_control_console.m2", text = "tk_tall_control_console.m2", + value = "tk_tall_control_console.m2", }, }, - value = "control_console", text = "control_console", + value = "control_console", }, { children = { { fileId = "193558", - value = "tk_exterior_crystals.m2", text = "tk_exterior_crystals.m2", + value = "tk_exterior_crystals.m2", }, }, - value = "crystals", text = "crystals", + value = "crystals", }, { children = { { fileId = "193564", - value = "tk_factory_door.m2", text = "tk_factory_door.m2", + value = "tk_factory_door.m2", }, { fileId = "193565", - value = "tk_factory_door_vert.m2", text = "tk_factory_door_vert.m2", + value = "tk_factory_door_vert.m2", }, }, - value = "factory_door", text = "factory_door", + value = "factory_door", }, { children = { { fileId = "193566", - value = "kael_explode_fx_left.m2", text = "kael_explode_fx_left.m2", + value = "kael_explode_fx_left.m2", }, { fileId = "193567", - value = "kael_explode_fx_right.m2", text = "kael_explode_fx_right.m2", + value = "kael_explode_fx_right.m2", }, }, - value = "kael_statue", text = "kael_statue", + value = "kael_statue", }, { children = { { fileId = "193569", - value = "tk_raid_door.m2", text = "tk_raid_door.m2", + value = "tk_raid_door.m2", }, }, - value = "raid_door", text = "raid_door", + value = "raid_door", }, { children = { { fileId = "193572", - value = "tk_raid_windows_tall.m2", text = "tk_raid_windows_tall.m2", + value = "tk_raid_windows_tall.m2", }, }, - value = "raid_windows", text = "raid_windows", + value = "raid_windows", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -55529,206 +55486,206 @@ WeakAuras.ModelPaths = { children = { { fileId = "193573", - value = "tk_bridge_graphics.m2", text = "tk_bridge_graphics.m2", + value = "tk_bridge_graphics.m2", }, { fileId = "193574", - value = "tk_bridge_graphics2.m2", text = "tk_bridge_graphics2.m2", + value = "tk_bridge_graphics2.m2", }, }, - value = "bridges", text = "bridges", + value = "bridges", }, { children = { { fileId = "193577", - value = "tk_container_01.m2", text = "tk_container_01.m2", + value = "tk_container_01.m2", }, { fileId = "193578", - value = "tk_container_02.m2", text = "tk_container_02.m2", + value = "tk_container_02.m2", }, }, - value = "container", text = "container", + value = "container", }, { children = { { fileId = "193585", - value = "tk_exterior_crystals_bottom.m2", text = "tk_exterior_crystals_bottom.m2", + value = "tk_exterior_crystals_bottom.m2", }, { fileId = "193586", - value = "tk_exterior_crystals_top.m2", text = "tk_exterior_crystals_top.m2", + value = "tk_exterior_crystals_top.m2", }, { fileId = "193587", - value = "tk_smallwing_arcane_crystals_bottom.m2", text = "tk_smallwing_arcane_crystals_bottom.m2", + value = "tk_smallwing_arcane_crystals_bottom.m2", }, { fileId = "193588", - value = "tk_smallwing_arcane_crystals_top.m2", text = "tk_smallwing_arcane_crystals_top.m2", + value = "tk_smallwing_arcane_crystals_top.m2", }, { fileId = "193589", - value = "tk_smallwing_crystals.m2", text = "tk_smallwing_crystals.m2", + value = "tk_smallwing_crystals.m2", }, { fileId = "193590", - value = "tk_smallwing_crystals_bottom.m2", text = "tk_smallwing_crystals_bottom.m2", + value = "tk_smallwing_crystals_bottom.m2", }, { fileId = "193591", - value = "tk_smallwing_crystals_top.m2", text = "tk_smallwing_crystals_top.m2", + value = "tk_smallwing_crystals_top.m2", }, { fileId = "193592", - value = "tk_smallwing_factory_crystals_bottom.m2", text = "tk_smallwing_factory_crystals_bottom.m2", + value = "tk_smallwing_factory_crystals_bottom.m2", }, { fileId = "193593", - value = "tk_smallwing_factory_crystals_top.m2", text = "tk_smallwing_factory_crystals_top.m2", + value = "tk_smallwing_factory_crystals_top.m2", }, }, - value = "crystals", text = "crystals", + value = "crystals", }, { children = { { fileId = "193595", - value = "tk_energy_exhaust_01.m2", text = "tk_energy_exhaust_01.m2", + value = "tk_energy_exhaust_01.m2", }, { fileId = "193596", - value = "tk_forcefield_atrium_outline.m2", text = "tk_forcefield_atrium_outline.m2", + value = "tk_forcefield_atrium_outline.m2", }, { fileId = "193597", - value = "tk_forcefield_entry_outline.m2", text = "tk_forcefield_entry_outline.m2", + value = "tk_forcefield_entry_outline.m2", }, { fileId = "193598", - value = "tk_forcefield_outline.m2", text = "tk_forcefield_outline.m2", + value = "tk_forcefield_outline.m2", }, }, - value = "forcefields", text = "forcefields", + value = "forcefields", }, { children = { { fileId = "193605", - value = "tk_helix_floor_reflection.m2", text = "tk_helix_floor_reflection.m2", + value = "tk_helix_floor_reflection.m2", }, { fileId = "193606", - value = "tk_main_bridge_reflection.m2", text = "tk_main_bridge_reflection.m2", + value = "tk_main_bridge_reflection.m2", }, { fileId = "193607", - value = "tk_ramp_reflection.m2", text = "tk_ramp_reflection.m2", + value = "tk_ramp_reflection.m2", }, }, - value = "prisonbridges", text = "prisonbridges", + value = "prisonbridges", }, { children = { { fileId = "193614", - value = "tk_prison_cell_dark.m2", text = "tk_prison_cell_dark.m2", + value = "tk_prison_cell_dark.m2", }, { fileId = "193615", - value = "tk_prison_cell_illuminated.m2", text = "tk_prison_cell_illuminated.m2", + value = "tk_prison_cell_illuminated.m2", }, { fileId = "193616", - value = "tk_prison_cell_toponly.m2", text = "tk_prison_cell_toponly.m2", + value = "tk_prison_cell_toponly.m2", }, }, - value = "prisoncellglass", text = "prisoncellglass", + value = "prisoncellglass", }, { children = { { fileId = "193626", - value = "tk_lightning_ball.m2", text = "tk_lightning_ball.m2", + value = "tk_lightning_ball.m2", }, { fileId = "193627", - value = "tk_lightning_diagonal.m2", text = "tk_lightning_diagonal.m2", + value = "tk_lightning_diagonal.m2", }, { fileId = "193628", - value = "tk_lightning_diagonal_ball.m2", text = "tk_lightning_diagonal_ball.m2", + value = "tk_lightning_diagonal_ball.m2", }, { fileId = "193629", - value = "tk_lightning_fx_3_sides_room.m2", text = "tk_lightning_fx_3_sides_room.m2", + value = "tk_lightning_fx_3_sides_room.m2", }, { fileId = "193630", - value = "tk_lightning_fx_helix_room.m2", text = "tk_lightning_fx_helix_room.m2", + value = "tk_lightning_fx_helix_room.m2", }, { fileId = "193631", - value = "tk_lightning_fx_tri_room.m2", text = "tk_lightning_fx_tri_room.m2", + value = "tk_lightning_fx_tri_room.m2", }, { fileId = "193632", - value = "tk_lightning_horizontal.m2", text = "tk_lightning_horizontal.m2", + value = "tk_lightning_horizontal.m2", }, { fileId = "193633", - value = "tk_prison_fx.m2", text = "tk_prison_fx.m2", + value = "tk_prison_fx.m2", }, }, - value = "prisonfx", text = "prisonfx", + value = "prisonfx", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "tempestkeep", text = "tempestkeep", + value = "tempestkeep", }, { children = { @@ -55736,343 +55693,343 @@ WeakAuras.ModelPaths = { children = { { fileId = "193634", - value = "be_arcanebomb.m2", text = "be_arcanebomb.m2", + value = "be_arcanebomb.m2", }, { fileId = "193639", - value = "be_arcanebomb_orb.m2", text = "be_arcanebomb_orb.m2", + value = "be_arcanebomb_orb.m2", }, }, - value = "bomb", text = "bomb", + value = "bomb", }, { children = { { fileId = "193645", - value = "terokkar_bonepile01.m2", text = "terokkar_bonepile01.m2", + value = "terokkar_bonepile01.m2", }, { fileId = "193646", - value = "terokkar_bonepile02.m2", text = "terokkar_bonepile02.m2", + value = "terokkar_bonepile02.m2", }, }, - value = "bonepile", text = "bonepile", + value = "bonepile", }, { children = { { fileId = "193648", - value = "chokeberrybush.m2", text = "chokeberrybush.m2", + value = "chokeberrybush.m2", }, { fileId = "193650", - value = "terokkarbush01.m2", text = "terokkarbush01.m2", + value = "terokkarbush01.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "193653", - value = "terokkarcrystal01.m2", text = "terokkarcrystal01.m2", + value = "terokkarcrystal01.m2", }, { fileId = "193654", - value = "terokkarcrystal02.m2", text = "terokkarcrystal02.m2", + value = "terokkarcrystal02.m2", }, { fileId = "193655", - value = "terokkarcrystal03.m2", text = "terokkarcrystal03.m2", + value = "terokkarcrystal03.m2", }, }, - value = "crystal", text = "crystal", + value = "crystal", }, { children = { { fileId = "193659", - value = "terokkar_lightray01.m2", text = "terokkar_lightray01.m2", + value = "terokkar_lightray01.m2", }, { fileId = "193660", - value = "terokkar_lightray02.m2", text = "terokkar_lightray02.m2", + value = "terokkar_lightray02.m2", }, }, - value = "lightray", text = "lightray", + value = "lightray", }, { children = { { fileId = "193663", - value = "terokkarpinecone.m2", text = "terokkarpinecone.m2", + value = "terokkarpinecone.m2", }, }, - value = "pinecone", text = "pinecone", + value = "pinecone", }, { children = { { fileId = "193666", - value = "terokkar_floatingsmall01.m2", text = "terokkar_floatingsmall01.m2", + value = "terokkar_floatingsmall01.m2", }, { fileId = "193667", - value = "terokkar_floatingsmall02.m2", text = "terokkar_floatingsmall02.m2", + value = "terokkar_floatingsmall02.m2", }, { fileId = "193668", - value = "terokkar_overhangrock_large_01.m2", text = "terokkar_overhangrock_large_01.m2", + value = "terokkar_overhangrock_large_01.m2", }, { fileId = "193669", - value = "terokkar_overhangrock_large_02.m2", text = "terokkar_overhangrock_large_02.m2", + value = "terokkar_overhangrock_large_02.m2", }, { fileId = "193670", - value = "terokkar_overhangrock_small_01.m2", text = "terokkar_overhangrock_small_01.m2", + value = "terokkar_overhangrock_small_01.m2", }, { fileId = "193671", - value = "terokkar_overhangrock_small_02.m2", text = "terokkar_overhangrock_small_02.m2", + value = "terokkar_overhangrock_small_02.m2", }, { fileId = "193672", - value = "terokkar_overhangrock_small_03.m2", text = "terokkar_overhangrock_small_03.m2", + value = "terokkar_overhangrock_small_03.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "193674", - value = "terokkar_auch_ruin01.m2", text = "terokkar_auch_ruin01.m2", + value = "terokkar_auch_ruin01.m2", }, { fileId = "193675", - value = "terokkar_auch_ruin02.m2", text = "terokkar_auch_ruin02.m2", + value = "terokkar_auch_ruin02.m2", }, { fileId = "193676", - value = "terokkar_auch_ruin03.m2", text = "terokkar_auch_ruin03.m2", + value = "terokkar_auch_ruin03.m2", }, { fileId = "193677", - value = "terokkar_auch_ruin04.m2", text = "terokkar_auch_ruin04.m2", + value = "terokkar_auch_ruin04.m2", }, { fileId = "193678", - value = "terokkar_auch_ruin05.m2", text = "terokkar_auch_ruin05.m2", + value = "terokkar_auch_ruin05.m2", }, { fileId = "193679", - value = "terokkar_auch_ruin06.m2", text = "terokkar_auch_ruin06.m2", + value = "terokkar_auch_ruin06.m2", }, { fileId = "193680", - value = "terokkar_auch_ruin07.m2", text = "terokkar_auch_ruin07.m2", + value = "terokkar_auch_ruin07.m2", }, { fileId = "193681", - value = "terokkar_auch_ruin08.m2", text = "terokkar_auch_ruin08.m2", + value = "terokkar_auch_ruin08.m2", }, { fileId = "193682", - value = "terokkar_auch_ruin09.m2", text = "terokkar_auch_ruin09.m2", + value = "terokkar_auch_ruin09.m2", }, { fileId = "193683", - value = "terokkar_auch_ruin10.m2", text = "terokkar_auch_ruin10.m2", + value = "terokkar_auch_ruin10.m2", }, }, - value = "ruin", text = "ruin", + value = "ruin", }, { children = { { fileId = "193686", - value = "terokkar_boneshrine_arch01.m2", text = "terokkar_boneshrine_arch01.m2", + value = "terokkar_boneshrine_arch01.m2", }, { fileId = "193687", - value = "terokkar_boneshrine_arch02.m2", text = "terokkar_boneshrine_arch02.m2", + value = "terokkar_boneshrine_arch02.m2", }, }, - value = "shrine", text = "shrine", + value = "shrine", }, { children = { { fileId = "193688", - value = "terokkar_signpost_01.m2", text = "terokkar_signpost_01.m2", + value = "terokkar_signpost_01.m2", }, { fileId = "193689", - value = "terokkar_signpost_sign.m2", text = "terokkar_signpost_sign.m2", + value = "terokkar_signpost_sign.m2", }, }, - value = "signposts", text = "signposts", + value = "signposts", }, { children = { { fileId = "193691", - value = "terokkarfallentree.m2", text = "terokkarfallentree.m2", + value = "terokkarfallentree.m2", }, { fileId = "193692", - value = "terokkartreelarge.m2", text = "terokkartreelarge.m2", + value = "terokkartreelarge.m2", }, { fileId = "193693", - value = "terokkartreelargepinecones.m2", text = "terokkartreelargepinecones.m2", + value = "terokkartreelargepinecones.m2", }, { fileId = "193694", - value = "terokkartreemedium.m2", text = "terokkartreemedium.m2", + value = "terokkartreemedium.m2", }, { fileId = "193695", - value = "terokkartreemediumpinecones.m2", text = "terokkartreemediumpinecones.m2", + value = "terokkartreemediumpinecones.m2", }, { fileId = "193696", - value = "terokkartreenoleaves01.m2", text = "terokkartreenoleaves01.m2", + value = "terokkartreenoleaves01.m2", }, { fileId = "193697", - value = "terokkartreenoleaves02.m2", text = "terokkartreenoleaves02.m2", + value = "terokkartreenoleaves02.m2", }, { fileId = "193698", - value = "terokkartreesapling.m2", text = "terokkartreesapling.m2", + value = "terokkartreesapling.m2", }, { fileId = "193699", - value = "terokkartreesmall.m2", text = "terokkartreesmall.m2", + value = "terokkartreesmall.m2", }, { fileId = "193700", - value = "terokkartreestump.m2", text = "terokkartreestump.m2", + value = "terokkartreestump.m2", }, { fileId = "193701", - value = "terokkartreestump02.m2", text = "terokkartreestump02.m2", + value = "terokkartreestump02.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "193710", - value = "terokkar_post_01.m2", text = "terokkar_post_01.m2", + value = "terokkar_post_01.m2", }, { fileId = "193711", - value = "terokkar_post_ruin_01.m2", text = "terokkar_post_ruin_01.m2", + value = "terokkar_post_ruin_01.m2", }, { fileId = "193712", - value = "terokkar_wall_01.m2", text = "terokkar_wall_01.m2", + value = "terokkar_wall_01.m2", }, { fileId = "193713", - value = "terokkar_wall_ruin_01.m2", text = "terokkar_wall_ruin_01.m2", + value = "terokkar_wall_ruin_01.m2", }, }, - value = "walls", text = "walls", + value = "walls", }, { children = { { fileId = "193719", - value = "terokkarweb01.m2", text = "terokkarweb01.m2", + value = "terokkarweb01.m2", }, { fileId = "193720", - value = "terokkarweb02.m2", text = "terokkarweb02.m2", + value = "terokkarweb02.m2", }, { fileId = "193721", - value = "terokkarweb03.m2", text = "terokkarweb03.m2", + value = "terokkarweb03.m2", }, { fileId = "193722", - value = "terokkarweb04.m2", text = "terokkarweb04.m2", + value = "terokkarweb04.m2", }, }, - value = "webs", text = "webs", + value = "webs", }, }, - value = "terokkar", text = "terokkar", + value = "terokkar", }, { children = { @@ -56082,328 +56039,328 @@ WeakAuras.ModelPaths = { children = { { fileId = "193727", - value = "exodar_long_banner.m2", text = "exodar_long_banner.m2", + value = "exodar_long_banner.m2", }, { fileId = "193728", - value = "exodar_long_banner_anim.m2", text = "exodar_long_banner_anim.m2", + value = "exodar_long_banner_anim.m2", }, { fileId = "193729", - value = "exodar_medium_banner.m2", text = "exodar_medium_banner.m2", + value = "exodar_medium_banner.m2", }, { fileId = "193730", - value = "exodar_medium_banner_anim.m2", text = "exodar_medium_banner_anim.m2", + value = "exodar_medium_banner_anim.m2", }, { fileId = "193731", - value = "exodar_medium_hang_banner.m2", text = "exodar_medium_hang_banner.m2", + value = "exodar_medium_hang_banner.m2", }, { fileId = "193732", - value = "exodar_medium_hang_banner_anim.m2", text = "exodar_medium_hang_banner_anim.m2", + value = "exodar_medium_hang_banner_anim.m2", }, { fileId = "193733", - value = "exodar_medium_hang_banner_anim_type2.m2", text = "exodar_medium_hang_banner_anim_type2.m2", + value = "exodar_medium_hang_banner_anim_type2.m2", }, { fileId = "193734", - value = "exodar_thin2_hang_banner.m2", text = "exodar_thin2_hang_banner.m2", + value = "exodar_thin2_hang_banner.m2", }, { fileId = "193735", - value = "exodar_thin_banner.m2", text = "exodar_thin_banner.m2", + value = "exodar_thin_banner.m2", }, { fileId = "193736", - value = "exodar_thin_banner_anim.m2", text = "exodar_thin_banner_anim.m2", + value = "exodar_thin_banner_anim.m2", }, { fileId = "193737", - value = "exodar_thin_hang_banner.m2", text = "exodar_thin_hang_banner.m2", + value = "exodar_thin_hang_banner.m2", }, { fileId = "193738", - value = "exodar_thin_hang_banner_anim.m2", text = "exodar_thin_hang_banner_anim.m2", + value = "exodar_thin_hang_banner_anim.m2", }, { fileId = "193739", - value = "exodar_thin_hang_banner_animtype2.m2", text = "exodar_thin_hang_banner_animtype2.m2", + value = "exodar_thin_hang_banner_animtype2.m2", }, { fileId = "193740", - value = "exodar_thin_hang_banner_animtype3.m2", text = "exodar_thin_hang_banner_animtype3.m2", + value = "exodar_thin_hang_banner_animtype3.m2", }, { fileId = "193741", - value = "exodar_tri_banner_blue.m2", text = "exodar_tri_banner_blue.m2", + value = "exodar_tri_banner_blue.m2", }, { fileId = "193742", - value = "exodar_tri_banner_red.m2", text = "exodar_tri_banner_red.m2", + value = "exodar_tri_banner_red.m2", }, { fileId = "193743", - value = "exodar_tri_banner_s_blue.m2", text = "exodar_tri_banner_s_blue.m2", + value = "exodar_tri_banner_s_blue.m2", }, { fileId = "193744", - value = "exodar_tri_banner_s_red.m2", text = "exodar_tri_banner_s_red.m2", + value = "exodar_tri_banner_s_red.m2", }, { fileId = "193745", - value = "exodar_wide_banner.m2", text = "exodar_wide_banner.m2", + value = "exodar_wide_banner.m2", }, { fileId = "193746", - value = "exodar_wide_banner_anim.m2", text = "exodar_wide_banner_anim.m2", + value = "exodar_wide_banner_anim.m2", }, { fileId = "193747", - value = "exodar_wide_hang_banner.m2", text = "exodar_wide_hang_banner.m2", + value = "exodar_wide_hang_banner.m2", }, { fileId = "193748", - value = "exodar_wide_hang_banner_anim.m2", text = "exodar_wide_hang_banner_anim.m2", + value = "exodar_wide_hang_banner_anim.m2", }, { fileId = "193749", - value = "exodar_wide_hang_banner_anim_type2.m2", text = "exodar_wide_hang_banner_anim_type2.m2", + value = "exodar_wide_hang_banner_anim_type2.m2", }, { fileId = "193750", - value = "exodar_wide_hang_banner_anim_type3.m2", text = "exodar_wide_hang_banner_anim_type3.m2", + value = "exodar_wide_hang_banner_anim_type3.m2", }, }, - value = "clothobjects", text = "clothobjects", + value = "clothobjects", }, { children = { { fileId = "193754", - value = "crystal_corrupted.m2", text = "crystal_corrupted.m2", + value = "crystal_corrupted.m2", }, { fileId = "193756", - value = "narru_crystal_pot.m2", text = "narru_crystal_pot.m2", + value = "narru_crystal_pot.m2", }, { fileId = "193757", - value = "narru_crystal_pure.m2", text = "narru_crystal_pure.m2", + value = "narru_crystal_pure.m2", }, }, - value = "crystal", text = "crystal", + value = "crystal", }, { children = { { fileId = "193760", - value = "exodar_center_naaru_crystals.m2", text = "exodar_center_naaru_crystals.m2", + value = "exodar_center_naaru_crystals.m2", }, { fileId = "193761", - value = "exodar_crystal_chandelier.m2", text = "exodar_crystal_chandelier.m2", + value = "exodar_crystal_chandelier.m2", }, { fileId = "193762", - value = "exodar_crystal_large.m2", text = "exodar_crystal_large.m2", + value = "exodar_crystal_large.m2", }, { fileId = "193763", - value = "exodar_crystal_large_yelllow.m2", text = "exodar_crystal_large_yelllow.m2", + value = "exodar_crystal_large_yelllow.m2", }, { fileId = "193764", - value = "exodar_crystal_thin.m2", text = "exodar_crystal_thin.m2", + value = "exodar_crystal_thin.m2", }, { fileId = "193765", - value = "exodar_crystal_thin_type2.m2", text = "exodar_crystal_thin_type2.m2", + value = "exodar_crystal_thin_type2.m2", }, { fileId = "193766", - value = "exodar_crystal_thin_yellow.m2", text = "exodar_crystal_thin_yellow.m2", + value = "exodar_crystal_thin_yellow.m2", }, { fileId = "193767", - value = "exodar_crystal_yellow_bunch.m2", text = "exodar_crystal_yellow_bunch.m2", + value = "exodar_crystal_yellow_bunch.m2", }, }, - value = "crystals", text = "crystals", + value = "crystals", }, { children = { { fileId = "193780", - value = "exodar_sconce.m2", text = "exodar_sconce.m2", + value = "exodar_sconce.m2", }, { fileId = "193781", - value = "exodar_sconce_blue.m2", text = "exodar_sconce_blue.m2", + value = "exodar_sconce_blue.m2", }, { fileId = "193782", - value = "exodar_sconce_magenta.m2", text = "exodar_sconce_magenta.m2", + value = "exodar_sconce_magenta.m2", }, }, - value = "light_sconces", text = "light_sconces", + value = "light_sconces", }, { children = { { fileId = "193789", - value = "exodar_narucore_fx.m2", text = "exodar_narucore_fx.m2", + value = "exodar_narucore_fx.m2", }, }, - value = "naaru_core", text = "naaru_core", + value = "naaru_core", }, { children = { { fileId = "193800", - value = "exodar_paladin_shrine_energyfx.m2", text = "exodar_paladin_shrine_energyfx.m2", + value = "exodar_paladin_shrine_energyfx.m2", }, }, - value = "paladin_energy_fx", text = "paladin_energy_fx", + value = "paladin_energy_fx", }, { children = { { fileId = "193805", - value = "draenei_shamen_stones_t1.m2", text = "draenei_shamen_stones_t1.m2", + value = "draenei_shamen_stones_t1.m2", }, { fileId = "193806", - value = "draenei_shamen_stones_t1_broken.m2", text = "draenei_shamen_stones_t1_broken.m2", + value = "draenei_shamen_stones_t1_broken.m2", }, { fileId = "193807", - value = "draenei_shamen_stones_t2.m2", text = "draenei_shamen_stones_t2.m2", + value = "draenei_shamen_stones_t2.m2", }, { fileId = "193808", - value = "draenei_shamen_stones_yellow_t1.m2", text = "draenei_shamen_stones_yellow_t1.m2", + value = "draenei_shamen_stones_yellow_t1.m2", }, { fileId = "193809", - value = "draenei_shamen_stones_yellow_t1_broken.m2", text = "draenei_shamen_stones_yellow_t1_broken.m2", + value = "draenei_shamen_stones_yellow_t1_broken.m2", }, { fileId = "193810", - value = "draenei_shamen_stones_yellow_t2.m2", text = "draenei_shamen_stones_yellow_t2.m2", + value = "draenei_shamen_stones_yellow_t2.m2", }, }, - value = "shamen_stones", text = "shamen_stones", + value = "shamen_stones", }, { children = { { fileId = "193823", - value = "exodar_cheese_sign.m2", text = "exodar_cheese_sign.m2", + value = "exodar_cheese_sign.m2", }, { fileId = "193824", - value = "exodar_herbalism_sign.m2", text = "exodar_herbalism_sign.m2", + value = "exodar_herbalism_sign.m2", }, { fileId = "193825", - value = "exodar_hunter_sign.m2", text = "exodar_hunter_sign.m2", + value = "exodar_hunter_sign.m2", }, { fileId = "193826", - value = "exodar_inn_sign.m2", text = "exodar_inn_sign.m2", + value = "exodar_inn_sign.m2", }, { fileId = "193828", - value = "exodar_smith_sign.m2", text = "exodar_smith_sign.m2", + value = "exodar_smith_sign.m2", }, { fileId = "193829", - value = "exodar_warrior_sign.m2", text = "exodar_warrior_sign.m2", + value = "exodar_warrior_sign.m2", }, }, - value = "signs", text = "signs", + value = "signs", }, { children = { { fileId = "193841", - value = "exodar_sky_portal.m2", text = "exodar_sky_portal.m2", + value = "exodar_sky_portal.m2", }, }, - value = "sky_portal", text = "sky_portal", + value = "sky_portal", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "theexodar", text = "theexodar", + value = "theexodar", }, { children = { @@ -56411,682 +56368,682 @@ WeakAuras.ModelPaths = { children = { { fileId = "193845", - value = "zangargrass01.m2", text = "zangargrass01.m2", + value = "zangargrass01.m2", }, { fileId = "193846", - value = "zangargrass01_husk.m2", text = "zangargrass01_husk.m2", + value = "zangargrass01_husk.m2", }, }, - value = "bush", text = "bush", + value = "bush", }, { children = { { fileId = "193856", - value = "zangarmarsh_floatingspore01.m2", text = "zangarmarsh_floatingspore01.m2", + value = "zangarmarsh_floatingspore01.m2", }, { fileId = "193857", - value = "zangarmarsh_floatingspore02.m2", text = "zangarmarsh_floatingspore02.m2", + value = "zangarmarsh_floatingspore02.m2", }, { fileId = "193858", - value = "zm_big_spore_01.m2", text = "zm_big_spore_01.m2", + value = "zm_big_spore_01.m2", }, { fileId = "193859", - value = "zm_big_spore_02.m2", text = "zm_big_spore_02.m2", + value = "zm_big_spore_02.m2", }, { fileId = "193860", - value = "zm_big_spore_03.m2", text = "zm_big_spore_03.m2", + value = "zm_big_spore_03.m2", }, { fileId = "193861", - value = "zm_big_spore_anim_01.m2", text = "zm_big_spore_anim_01.m2", + value = "zm_big_spore_anim_01.m2", }, { fileId = "193862", - value = "zm_big_spore_anim_02.m2", text = "zm_big_spore_anim_02.m2", + value = "zm_big_spore_anim_02.m2", }, { fileId = "193863", - value = "zm_big_spore_anim_03.m2", text = "zm_big_spore_anim_03.m2", + value = "zm_big_spore_anim_03.m2", }, }, - value = "floatingspore", text = "floatingspore", + value = "floatingspore", }, { children = { { fileId = "193865", - value = "zangarfogring01.m2", text = "zangarfogring01.m2", + value = "zangarfogring01.m2", }, }, - value = "fog", text = "fog", + value = "fog", }, { children = { { fileId = "193876", - value = "zangarfountain01.m2", text = "zangarfountain01.m2", + value = "zangarfountain01.m2", }, }, - value = "fountain", text = "fountain", + value = "fountain", }, { children = { { fileId = "193878", - value = "zangarlamppost01.m2", text = "zangarlamppost01.m2", + value = "zangarlamppost01.m2", }, }, - value = "lamp", text = "lamp", + value = "lamp", }, { children = { { fileId = "193882", - value = "zangarlilypad01.m2", text = "zangarlilypad01.m2", + value = "zangarlilypad01.m2", }, { fileId = "193886", - value = "zangarlilypad02.m2", text = "zangarlilypad02.m2", + value = "zangarlilypad02.m2", }, { fileId = "193887", - value = "zangarlilypad03.m2", text = "zangarlilypad03.m2", + value = "zangarlilypad03.m2", }, { fileId = "193888", - value = "zangarlilypad04.m2", text = "zangarlilypad04.m2", + value = "zangarlilypad04.m2", }, { fileId = "193889", - value = "zangarlilypad05.m2", text = "zangarlilypad05.m2", + value = "zangarlilypad05.m2", }, { fileId = "193890", - value = "zangarlilypad06.m2", text = "zangarlilypad06.m2", + value = "zangarlilypad06.m2", }, }, - value = "lilypads", text = "lilypads", + value = "lilypads", }, { children = { { fileId = "193892", - value = "zangarlog01.m2", text = "zangarlog01.m2", + value = "zangarlog01.m2", }, { fileId = "193894", - value = "zangarlog02.m2", text = "zangarlog02.m2", + value = "zangarlog02.m2", }, }, - value = "logs", text = "logs", + value = "logs", }, { children = { { fileId = "193897", - value = "lo_well_01.m2", text = "lo_well_01.m2", + value = "lo_well_01.m2", }, }, - value = "lostones", text = "lostones", + value = "lostones", }, { children = { { fileId = "193909", - value = "zangarfallenshroom01.m2", text = "zangarfallenshroom01.m2", + value = "zangarfallenshroom01.m2", }, { fileId = "193910", - value = "zangarfallenshroom02.m2", text = "zangarfallenshroom02.m2", + value = "zangarfallenshroom02.m2", }, { fileId = "193911", - value = "zangarmushroom01.m2", text = "zangarmushroom01.m2", + value = "zangarmushroom01.m2", }, { fileId = "193912", - value = "zangarmushroom02.m2", text = "zangarmushroom02.m2", + value = "zangarmushroom02.m2", }, { fileId = "193914", - value = "zangarmushroom03.m2", text = "zangarmushroom03.m2", + value = "zangarmushroom03.m2", }, { fileId = "193915", - value = "zangarmushroom04.m2", text = "zangarmushroom04.m2", + value = "zangarmushroom04.m2", }, { fileId = "193917", - value = "zangarmushroom05.m2", text = "zangarmushroom05.m2", + value = "zangarmushroom05.m2", }, { fileId = "193918", - value = "zangarmushroom06_blue.m2", text = "zangarmushroom06_blue.m2", + value = "zangarmushroom06_blue.m2", }, { fileId = "193919", - value = "zangarmushroom06_green.m2", text = "zangarmushroom06_green.m2", + value = "zangarmushroom06_green.m2", }, { fileId = "193920", - value = "zangarmushroom06_orange.m2", text = "zangarmushroom06_orange.m2", + value = "zangarmushroom06_orange.m2", }, { fileId = "193921", - value = "zangarmushroom07_blue.m2", text = "zangarmushroom07_blue.m2", + value = "zangarmushroom07_blue.m2", }, { fileId = "193922", - value = "zangarmushroom07_green.m2", text = "zangarmushroom07_green.m2", + value = "zangarmushroom07_green.m2", }, { fileId = "193923", - value = "zangarmushroom07_orange.m2", text = "zangarmushroom07_orange.m2", + value = "zangarmushroom07_orange.m2", }, { fileId = "193924", - value = "zangarmushroomblue.m2", text = "zangarmushroomblue.m2", + value = "zangarmushroomblue.m2", }, { fileId = "193925", - value = "zangarmushroomgreen.m2", text = "zangarmushroomgreen.m2", + value = "zangarmushroomgreen.m2", }, { fileId = "193926", - value = "zangarmushroompurple.m2", text = "zangarmushroompurple.m2", + value = "zangarmushroompurple.m2", }, { fileId = "193932", - value = "zangarmushroomshelf01.m2", text = "zangarmushroomshelf01.m2", + value = "zangarmushroomshelf01.m2", }, { fileId = "193933", - value = "zangarmushroomshelf02.m2", text = "zangarmushroomshelf02.m2", + value = "zangarmushroomshelf02.m2", }, { fileId = "193934", - value = "zangarmushroomshelf03.m2", text = "zangarmushroomshelf03.m2", + value = "zangarmushroomshelf03.m2", }, { fileId = "193936", - value = "zangarmushroomtree05.m2", text = "zangarmushroomtree05.m2", + value = "zangarmushroomtree05.m2", }, { fileId = "193937", - value = "zangarmushroomtree06.m2", text = "zangarmushroomtree06.m2", + value = "zangarmushroomtree06.m2", }, { fileId = "193938", - value = "zangarmushroomtree07.m2", text = "zangarmushroomtree07.m2", + value = "zangarmushroomtree07.m2", }, { fileId = "193940", - value = "zangarmushroomtree08dead.m2", text = "zangarmushroomtree08dead.m2", + value = "zangarmushroomtree08dead.m2", }, { fileId = "193942", - value = "zangarmushroomtree09dying.m2", text = "zangarmushroomtree09dying.m2", + value = "zangarmushroomtree09dying.m2", }, { fileId = "193944", - value = "zangarmushroomtreesmall01.m2", text = "zangarmushroomtreesmall01.m2", + value = "zangarmushroomtreesmall01.m2", }, { fileId = "193945", - value = "zangarmushroomtreesmall02.m2", text = "zangarmushroomtreesmall02.m2", + value = "zangarmushroomtreesmall02.m2", }, { fileId = "193946", - value = "zangarmushroomtreesmall03.m2", text = "zangarmushroomtreesmall03.m2", + value = "zangarmushroomtreesmall03.m2", }, { fileId = "193947", - value = "zangarmushroomwater01.m2", text = "zangarmushroomwater01.m2", + value = "zangarmushroomwater01.m2", }, { fileId = "193948", - value = "zangarmushroomwater02.m2", text = "zangarmushroomwater02.m2", + value = "zangarmushroomwater02.m2", }, { fileId = "193949", - value = "zangarmushroomwater03.m2", text = "zangarmushroomwater03.m2", + value = "zangarmushroomwater03.m2", }, { fileId = "193950", - value = "zangartreesmallblue.m2", text = "zangartreesmallblue.m2", + value = "zangartreesmallblue.m2", }, { fileId = "193951", - value = "zangartreesmallblue01.m2", text = "zangartreesmallblue01.m2", + value = "zangartreesmallblue01.m2", }, { fileId = "193952", - value = "zangartreesmallgreen.m2", text = "zangartreesmallgreen.m2", + value = "zangartreesmallgreen.m2", }, { fileId = "193953", - value = "zangartreesmallgreen01.m2", text = "zangartreesmallgreen01.m2", + value = "zangartreesmallgreen01.m2", }, { fileId = "193954", - value = "zangartreesmallpurple.m2", text = "zangartreesmallpurple.m2", + value = "zangartreesmallpurple.m2", }, { fileId = "193955", - value = "zangartreesmallpurple01.m2", text = "zangartreesmallpurple01.m2", + value = "zangartreesmallpurple01.m2", }, }, - value = "mushroom", text = "mushroom", + value = "mushroom", }, { children = { { fileId = "193956", - value = "mushroombase_beacon.m2", text = "mushroombase_beacon.m2", + value = "mushroombase_beacon.m2", }, { fileId = "193957", - value = "mushroombase_bottom.m2", text = "mushroombase_bottom.m2", + value = "mushroombase_bottom.m2", }, { fileId = "193958", - value = "mushroombase_elevator.m2", text = "mushroombase_elevator.m2", + value = "mushroombase_elevator.m2", }, }, - value = "mushroombase", text = "mushroombase", + value = "mushroombase", }, { children = { { fileId = "193962", - value = "zangarbushwithered01.m2", text = "zangarbushwithered01.m2", + value = "zangarbushwithered01.m2", }, { fileId = "193963", - value = "zangarbushwithered02.m2", text = "zangarbushwithered02.m2", + value = "zangarbushwithered02.m2", }, { fileId = "193970", - value = "zangarmushroomtree01.m2", text = "zangarmushroomtree01.m2", + value = "zangarmushroomtree01.m2", }, { fileId = "193971", - value = "zangarmushroomtree02.m2", text = "zangarmushroomtree02.m2", + value = "zangarmushroomtree02.m2", }, { fileId = "193972", - value = "zangarmushroomtree03.m2", text = "zangarmushroomtree03.m2", + value = "zangarmushroomtree03.m2", }, { fileId = "193973", - value = "zangarmushroomtree04.m2", text = "zangarmushroomtree04.m2", + value = "zangarmushroomtree04.m2", }, { fileId = "193978", - value = "zangartreeblue01.m2", text = "zangartreeblue01.m2", + value = "zangartreeblue01.m2", }, { fileId = "193979", - value = "zangartreeblue02.m2", text = "zangartreeblue02.m2", + value = "zangartreeblue02.m2", }, { fileId = "193980", - value = "zangartreeblue03.m2", text = "zangartreeblue03.m2", + value = "zangartreeblue03.m2", }, { fileId = "193981", - value = "zangartreeblue04.m2", text = "zangartreeblue04.m2", + value = "zangartreeblue04.m2", }, { fileId = "193982", - value = "zangartreegreen01.m2", text = "zangartreegreen01.m2", + value = "zangartreegreen01.m2", }, { fileId = "193983", - value = "zangartreegreen02.m2", text = "zangartreegreen02.m2", + value = "zangartreegreen02.m2", }, { fileId = "193984", - value = "zangartreegreen03.m2", text = "zangartreegreen03.m2", + value = "zangartreegreen03.m2", }, { fileId = "193985", - value = "zangartreegreen04.m2", text = "zangartreegreen04.m2", + value = "zangartreegreen04.m2", }, { fileId = "193986", - value = "zangartreepurple01.m2", text = "zangartreepurple01.m2", + value = "zangartreepurple01.m2", }, { fileId = "193987", - value = "zangartreepurple02.m2", text = "zangartreepurple02.m2", + value = "zangartreepurple02.m2", }, { fileId = "193988", - value = "zangartreepurple03.m2", text = "zangartreepurple03.m2", + value = "zangartreepurple03.m2", }, { fileId = "193989", - value = "zangartreepurple04.m2", text = "zangartreepurple04.m2", + value = "zangartreepurple04.m2", }, { fileId = "193990", - value = "zangartreewithered01.m2", text = "zangartreewithered01.m2", + value = "zangartreewithered01.m2", }, { fileId = "193991", - value = "zangartreewithered02.m2", text = "zangartreewithered02.m2", + value = "zangartreewithered02.m2", }, { fileId = "193992", - value = "zangartreewithered03.m2", text = "zangartreewithered03.m2", + value = "zangartreewithered03.m2", }, { fileId = "193993", - value = "zangartreewithered04.m2", text = "zangartreewithered04.m2", + value = "zangartreewithered04.m2", }, { fileId = "193994", - value = "zangartreewithered05.m2", text = "zangartreewithered05.m2", + value = "zangartreewithered05.m2", }, }, - value = "mushroomtrees", text = "mushroomtrees", + value = "mushroomtrees", }, { children = { { fileId = "193995", - value = "zangarplantgroup01.m2", text = "zangarplantgroup01.m2", + value = "zangarplantgroup01.m2", }, { fileId = "193996", - value = "zangarplantgroup02.m2", text = "zangarplantgroup02.m2", + value = "zangarplantgroup02.m2", }, { fileId = "193997", - value = "zangarplantgroup03.m2", text = "zangarplantgroup03.m2", + value = "zangarplantgroup03.m2", }, { fileId = "193998", - value = "zangarplantgroup04.m2", text = "zangarplantgroup04.m2", + value = "zangarplantgroup04.m2", }, { fileId = "193999", - value = "zangarplantgroup05.m2", text = "zangarplantgroup05.m2", + value = "zangarplantgroup05.m2", }, }, - value = "plantgroups", text = "plantgroups", + value = "plantgroups", }, { children = { { fileId = "194001", - value = "zm_bluepollen.m2", text = "zm_bluepollen.m2", + value = "zm_bluepollen.m2", }, { fileId = "194002", - value = "zm_orangepollen.m2", text = "zm_orangepollen.m2", + value = "zm_orangepollen.m2", }, }, - value = "pollen", text = "pollen", + value = "pollen", }, { children = { { fileId = "194003", - value = "zangarwalkway01.m2", text = "zangarwalkway01.m2", + value = "zangarwalkway01.m2", }, { fileId = "194004", - value = "zangarwalkway02.m2", text = "zangarwalkway02.m2", + value = "zangarwalkway02.m2", }, { fileId = "194005", - value = "zangarwalkway03.m2", text = "zangarwalkway03.m2", + value = "zangarwalkway03.m2", }, { fileId = "194006", - value = "zangarwalkway_board.m2", text = "zangarwalkway_board.m2", + value = "zangarwalkway_board.m2", }, { fileId = "194007", - value = "zangarwalkway_pole.m2", text = "zangarwalkway_pole.m2", + value = "zangarwalkway_pole.m2", }, { fileId = "194008", - value = "zangarwalkway_wide01.m2", text = "zangarwalkway_wide01.m2", + value = "zangarwalkway_wide01.m2", }, { fileId = "194009", - value = "zangarwalkway_wide02.m2", text = "zangarwalkway_wide02.m2", + value = "zangarwalkway_wide02.m2", }, { fileId = "194010", - value = "zangarwalkway_wide03.m2", text = "zangarwalkway_wide03.m2", + value = "zangarwalkway_wide03.m2", }, { fileId = "194011", - value = "zangarwalkway_wide04.m2", text = "zangarwalkway_wide04.m2", + value = "zangarwalkway_wide04.m2", }, { fileId = "194012", - value = "zangarwalkwayend01.m2", text = "zangarwalkwayend01.m2", + value = "zangarwalkwayend01.m2", }, { fileId = "194013", - value = "zangarwalkwayend02.m2", text = "zangarwalkwayend02.m2", + value = "zangarwalkwayend02.m2", }, }, - value = "road", text = "road", + value = "road", }, { children = { { fileId = "194015", - value = "dirtmound_zangar.m2", text = "dirtmound_zangar.m2", + value = "dirtmound_zangar.m2", }, { fileId = "194017", - value = "zangar_floatingsmall01.m2", text = "zangar_floatingsmall01.m2", + value = "zangar_floatingsmall01.m2", }, { fileId = "194018", - value = "zangar_floatingsmall02.m2", text = "zangar_floatingsmall02.m2", + value = "zangar_floatingsmall02.m2", }, { fileId = "194019", - value = "zangar_overhangrock_large_01.m2", text = "zangar_overhangrock_large_01.m2", + value = "zangar_overhangrock_large_01.m2", }, { fileId = "194020", - value = "zangar_overhangrock_large_02.m2", text = "zangar_overhangrock_large_02.m2", + value = "zangar_overhangrock_large_02.m2", }, { fileId = "194021", - value = "zangar_overhangrock_small_01.m2", text = "zangar_overhangrock_small_01.m2", + value = "zangar_overhangrock_small_01.m2", }, { fileId = "194022", - value = "zangar_overhangrock_small_02.m2", text = "zangar_overhangrock_small_02.m2", + value = "zangar_overhangrock_small_02.m2", }, { fileId = "194023", - value = "zangar_overhangrock_small_03.m2", text = "zangar_overhangrock_small_03.m2", + value = "zangar_overhangrock_small_03.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "194025", - value = "zangarsignpost01.m2", text = "zangarsignpost01.m2", + value = "zangarsignpost01.m2", }, { fileId = "194026", - value = "zangarsignpostpointer01.m2", text = "zangarsignpostpointer01.m2", + value = "zangarsignpostpointer01.m2", }, }, - value = "signposts", text = "signposts", + value = "signposts", }, { children = { { fileId = "194028", - value = "zangarshroomstump01.m2", text = "zangarshroomstump01.m2", + value = "zangarshroomstump01.m2", }, { fileId = "194030", - value = "zangarshroomstump02.m2", text = "zangarshroomstump02.m2", + value = "zangarshroomstump02.m2", }, { fileId = "194032", - value = "zangarshroomstump03.m2", text = "zangarshroomstump03.m2", + value = "zangarshroomstump03.m2", }, }, - value = "stump", text = "stump", + value = "stump", }, }, - value = "zangar", text = "zangar", + value = "zangar", }, { children = { @@ -57094,265 +57051,265 @@ WeakAuras.ModelPaths = { children = { { fileId = "194044", - value = "zulaman_entrancegate.m2", text = "zulaman_entrancegate.m2", + value = "zulaman_entrancegate.m2", }, { fileId = "194045", - value = "zulaman_firedoor.m2", text = "zulaman_firedoor.m2", + value = "zulaman_firedoor.m2", }, { fileId = "194046", - value = "zulaman_lynxgate.m2", text = "zulaman_lynxgate.m2", + value = "zulaman_lynxgate.m2", }, { fileId = "194047", - value = "zulaman_torchfire.m2", text = "zulaman_torchfire.m2", + value = "zulaman_torchfire.m2", }, { fileId = "194048", - value = "zulaman_winddoor.m2", text = "zulaman_winddoor.m2", + value = "zulaman_winddoor.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, { children = { { fileId = "194050", - value = "foresttrolldungeonfountain.m2", text = "foresttrolldungeonfountain.m2", + value = "foresttrolldungeonfountain.m2", }, }, - value = "fountain", text = "fountain", + value = "fountain", }, { children = { { fileId = "194052", - value = "eaglegargoyle.m2", text = "eaglegargoyle.m2", + value = "eaglegargoyle.m2", }, }, - value = "gargoyle", text = "gargoyle", + value = "gargoyle", }, { children = { { fileId = "194054", - value = "foresttrolldungeongong.m2", text = "foresttrolldungeongong.m2", + value = "foresttrolldungeongong.m2", }, }, - value = "gong", text = "gong", + value = "gong", }, { children = { { fileId = "194057", - value = "trollruins_zulaman_01.m2", text = "trollruins_zulaman_01.m2", + value = "trollruins_zulaman_01.m2", }, { fileId = "194058", - value = "trollruins_zulaman_02.m2", text = "trollruins_zulaman_02.m2", + value = "trollruins_zulaman_02.m2", }, { fileId = "194059", - value = "trollruins_zulaman_03.m2", text = "trollruins_zulaman_03.m2", + value = "trollruins_zulaman_03.m2", }, { fileId = "194060", - value = "trollruins_zulaman_04.m2", text = "trollruins_zulaman_04.m2", + value = "trollruins_zulaman_04.m2", }, { fileId = "194061", - value = "trollruins_zulaman_05.m2", text = "trollruins_zulaman_05.m2", + value = "trollruins_zulaman_05.m2", }, { fileId = "194062", - value = "trollruins_zulaman_06.m2", text = "trollruins_zulaman_06.m2", + value = "trollruins_zulaman_06.m2", }, { fileId = "194063", - value = "trollruins_zulaman_07.m2", text = "trollruins_zulaman_07.m2", + value = "trollruins_zulaman_07.m2", }, { fileId = "194064", - value = "trollruins_zulaman_08.m2", text = "trollruins_zulaman_08.m2", + value = "trollruins_zulaman_08.m2", }, { fileId = "194065", - value = "trollruins_zulaman_09.m2", text = "trollruins_zulaman_09.m2", + value = "trollruins_zulaman_09.m2", }, { fileId = "194066", - value = "trollruins_zulaman_10.m2", text = "trollruins_zulaman_10.m2", + value = "trollruins_zulaman_10.m2", }, { fileId = "194067", - value = "trollruins_zulaman_11.m2", text = "trollruins_zulaman_11.m2", + value = "trollruins_zulaman_11.m2", }, { fileId = "194068", - value = "trollruins_zulaman_12.m2", text = "trollruins_zulaman_12.m2", + value = "trollruins_zulaman_12.m2", }, { fileId = "194069", - value = "trollruins_zulaman_14.m2", text = "trollruins_zulaman_14.m2", + value = "trollruins_zulaman_14.m2", }, { fileId = "194070", - value = "trollruins_zulaman_15.m2", text = "trollruins_zulaman_15.m2", + value = "trollruins_zulaman_15.m2", }, { fileId = "194071", - value = "trollruins_zulaman_16.m2", text = "trollruins_zulaman_16.m2", + value = "trollruins_zulaman_16.m2", }, { fileId = "194072", - value = "trollruins_zulaman_17.m2", text = "trollruins_zulaman_17.m2", + value = "trollruins_zulaman_17.m2", }, { fileId = "194073", - value = "trollruins_zulaman_18.m2", text = "trollruins_zulaman_18.m2", + value = "trollruins_zulaman_18.m2", }, { fileId = "194074", - value = "trollruins_zulaman_20.m2", text = "trollruins_zulaman_20.m2", + value = "trollruins_zulaman_20.m2", }, { fileId = "194075", - value = "trollruins_zulaman_21.m2", text = "trollruins_zulaman_21.m2", + value = "trollruins_zulaman_21.m2", }, }, - value = "ruins", text = "ruins", + value = "ruins", }, { children = { { fileId = "194083", - value = "eaglestatue01.m2", text = "eaglestatue01.m2", + value = "eaglestatue01.m2", }, }, - value = "statues", text = "statues", + value = "statues", }, { children = { { fileId = "194086", - value = "foresttrolltablet.m2", text = "foresttrolltablet.m2", + value = "foresttrolltablet.m2", }, }, - value = "tablet", text = "tablet", + value = "tablet", }, { children = { { fileId = "194087", - value = "eaglethrone01.m2", text = "eaglethrone01.m2", + value = "eaglethrone01.m2", }, }, - value = "throne", text = "throne", + value = "throne", }, { children = { { fileId = "194088", - value = "trollskulltiki.m2", text = "trollskulltiki.m2", + value = "trollskulltiki.m2", }, }, - value = "tiki", text = "tiki", + value = "tiki", }, { children = { { fileId = "194097", - value = "zulamantree01.m2", text = "zulamantree01.m2", + value = "zulamantree01.m2", }, { fileId = "194098", - value = "zulamantree02.m2", text = "zulamantree02.m2", + value = "zulamantree02.m2", }, { fileId = "194099", - value = "zulamantree03.m2", text = "zulamantree03.m2", + value = "zulamantree03.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "194100", - value = "foresttrolldungeonbasinwall.m2", text = "foresttrolldungeonbasinwall.m2", + value = "foresttrolldungeonbasinwall.m2", }, }, - value = "wall", text = "wall", + value = "wall", }, { children = { { fileId = "194105", - value = "zulamanwaterfalls.m2", text = "zulamanwaterfalls.m2", + value = "zulamanwaterfalls.m2", }, }, - value = "waterfalls", text = "waterfalls", + value = "waterfalls", }, }, - value = "zulaman", text = "zulaman", + value = "zulaman", }, }, - value = "doodads", text = "doodads", + value = "doodads", }, }, - value = "expansion01", text = "expansion01", + value = "expansion01", }, { children = { @@ -57366,43 +57323,43 @@ WeakAuras.ModelPaths = { children = { { fileId = "195197", - value = "sunshatter_banner01.m2", text = "sunshatter_banner01.m2", + value = "sunshatter_banner01.m2", }, { fileId = "195198", - value = "sunshatter_banner02.m2", text = "sunshatter_banner02.m2", + value = "sunshatter_banner02.m2", }, { fileId = "195199", - value = "sunshatter_banner03.m2", text = "sunshatter_banner03.m2", + value = "sunshatter_banner03.m2", }, { fileId = "195200", - value = "sunshatter_monument.m2", text = "sunshatter_monument.m2", + value = "sunshatter_monument.m2", }, }, - value = "banner", text = "banner", + value = "banner", }, }, - value = "sunshatter", text = "sunshatter", + value = "sunshatter", }, }, - value = "generic", text = "generic", + value = "generic", }, }, - value = "doodads", text = "doodads", + value = "doodads", }, }, - value = "expansion02", text = "expansion02", + value = "expansion02", }, { children = { @@ -57412,99 +57369,99 @@ WeakAuras.ModelPaths = { children = { { fileId = "196975", - value = "berrybush01.m2", text = "berrybush01.m2", + value = "berrybush01.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "196976", - value = "chest01.m2", text = "chest01.m2", + value = "chest01.m2", }, }, - value = "chest01", text = "chest01", + value = "chest01", }, { children = { { fileId = "196979", - value = "chest02.m2", text = "chest02.m2", + value = "chest02.m2", }, }, - value = "chest02", text = "chest02", + value = "chest02", }, { children = { { fileId = "196982", - value = "chest03.m2", text = "chest03.m2", + value = "chest03.m2", }, }, - value = "chest03", text = "chest03", + value = "chest03", }, { children = { { fileId = "196987", - value = "chest04.m2", text = "chest04.m2", + value = "chest04.m2", }, }, - value = "chest04", text = "chest04", + value = "chest04", }, { children = { { fileId = "196988", - value = "chest01b.m2", text = "chest01b.m2", + value = "chest01b.m2", }, { fileId = "196989", - value = "chest01c.m2", text = "chest01c.m2", + value = "chest01c.m2", }, { fileId = "196990", - value = "chestactive01.m2", text = "chestactive01.m2", + value = "chestactive01.m2", }, }, - value = "chests", text = "chests", + value = "chests", }, { children = { { fileId = "196993", - value = "snowballmound01.m2", text = "snowballmound01.m2", + value = "snowballmound01.m2", }, }, - value = "christmas", text = "christmas", + value = "christmas", }, { children = { { fileId = "196998", - value = "giantclamactive.m2", text = "giantclamactive.m2", + value = "giantclamactive.m2", }, }, - value = "clam", text = "clam", + value = "clam", }, { children = { @@ -57512,395 +57469,294 @@ WeakAuras.ModelPaths = { children = { { fileId = "197001", - value = "giantportcullisflatbottom01.m2", text = "giantportcullisflatbottom01.m2", + value = "giantportcullisflatbottom01.m2", }, }, - value = "giantportcullis", text = "giantportcullis", + value = "giantportcullis", }, { children = { { fileId = "197002", - value = "gnomeregandoor01.m2", text = "gnomeregandoor01.m2", + value = "gnomeregandoor01.m2", }, }, - value = "gnomeregandoors", text = "gnomeregandoors", + value = "gnomeregandoors", }, { children = { { fileId = "197003", - value = "sunktemple_portcullis.m2", text = "sunktemple_portcullis.m2", + value = "sunktemple_portcullis.m2", }, }, - value = "sunkentempledoors", text = "sunkentempledoors", + value = "sunkentempledoors", }, { children = { { fileId = "197004", - value = "uldamandoor01.m2", text = "uldamandoor01.m2", + value = "uldamandoor01.m2", }, }, - value = "uldamandoors", text = "uldamandoors", + value = "uldamandoors", }, }, - value = "doors", text = "doors", + value = "doors", }, { children = { { fileId = "197007", - value = "instanceportal.m2", text = "instanceportal.m2", + value = "instanceportal.m2", }, { fileId = "197008", - value = "instanceportal_green.m2", text = "instanceportal_green.m2", + value = "instanceportal_green.m2", }, { fileId = "197009", - value = "instanceportal_purpledifficulty.m2", text = "instanceportal_purpledifficulty.m2", + value = "instanceportal_purpledifficulty.m2", }, { fileId = "197010", - value = "instanceportal_purpledifficultyicon.m2", text = "instanceportal_purpledifficultyicon.m2", + value = "instanceportal_purpledifficultyicon.m2", }, { fileId = "197011", - value = "instanceportal_red.m2", text = "instanceportal_red.m2", + value = "instanceportal_red.m2", }, { fileId = "197012", - value = "instanceportal_white.m2", text = "instanceportal_white.m2", + value = "instanceportal_white.m2", }, { fileId = "197013", - value = "instanceportalcollision.m2", text = "instanceportalcollision.m2", + value = "instanceportalcollision.m2", }, { fileId = "197017", - value = "summon_ritual.m2", text = "summon_ritual.m2", + value = "summon_ritual.m2", }, { fileId = "197018", - value = "temporal_displacement.m2", text = "temporal_displacement.m2", + value = "temporal_displacement.m2", }, }, - value = "instanceportal", text = "instanceportal", + value = "instanceportal", }, { children = { { fileId = "197020", - value = "stormwindmageportal01.m2", text = "stormwindmageportal01.m2", + value = "stormwindmageportal01.m2", }, }, - value = "mageportals", text = "mageportals", + value = "mageportals", }, { children = { { fileId = "197022", - value = "meetingstone01.m2", text = "meetingstone01.m2", + value = "meetingstone01.m2", }, { fileId = "197024", - value = "meetingstone02.m2", text = "meetingstone02.m2", + value = "meetingstone02.m2", }, { fileId = "197026", - value = "meetingstone03.m2", text = "meetingstone03.m2", + value = "meetingstone03.m2", }, { fileId = "197028", - value = "meetingstone04.m2", text = "meetingstone04.m2", + value = "meetingstone04.m2", }, { fileId = "197030", - value = "meetingstone05.m2", text = "meetingstone05.m2", + value = "meetingstone05.m2", }, }, - value = "meetingstones", text = "meetingstones", + value = "meetingstones", }, { children = { { fileId = "197038", - value = "gemrock01.m2", text = "gemrock01.m2", + value = "gemrock01.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "197042", - value = "mageportal_darnassus.m2", text = "mageportal_darnassus.m2", + value = "mageportal_darnassus.m2", }, { fileId = "197043", - value = "mageportal_exodar.m2", text = "mageportal_exodar.m2", + value = "mageportal_exodar.m2", }, { fileId = "197044", - value = "mageportal_ironforge.m2", text = "mageportal_ironforge.m2", + value = "mageportal_ironforge.m2", }, { fileId = "197045", - value = "mageportal_karazhan.m2", text = "mageportal_karazhan.m2", + value = "mageportal_karazhan.m2", }, { fileId = "197046", - value = "mageportal_maraudon.m2", text = "mageportal_maraudon.m2", + value = "mageportal_maraudon.m2", }, { fileId = "197047", - value = "mageportal_ogrimmar.m2", text = "mageportal_ogrimmar.m2", + value = "mageportal_ogrimmar.m2", }, { fileId = "197048", - value = "mageportal_shattrath.m2", text = "mageportal_shattrath.m2", + value = "mageportal_shattrath.m2", }, { fileId = "197049", - value = "mageportal_silvermoon.m2", text = "mageportal_silvermoon.m2", + value = "mageportal_silvermoon.m2", }, { fileId = "197050", - value = "mageportal_stonard.m2", text = "mageportal_stonard.m2", + value = "mageportal_stonard.m2", }, { fileId = "197051", - value = "mageportal_stormwind.m2", text = "mageportal_stormwind.m2", + value = "mageportal_stormwind.m2", }, { fileId = "197052", - value = "mageportal_sunwell.m2", text = "mageportal_sunwell.m2", + value = "mageportal_sunwell.m2", }, { fileId = "197053", - value = "mageportal_theramore.m2", text = "mageportal_theramore.m2", + value = "mageportal_theramore.m2", }, { fileId = "197054", - value = "mageportal_thunderbluff.m2", text = "mageportal_thunderbluff.m2", + value = "mageportal_thunderbluff.m2", }, { fileId = "197055", - value = "mageportal_undercity.m2", text = "mageportal_undercity.m2", + value = "mageportal_undercity.m2", }, }, - value = "spellportals", text = "spellportals", + value = "spellportals", }, { children = { { fileId = "197063", - value = "trollchest.m2", text = "trollchest.m2", + value = "trollchest.m2", }, }, - value = "trollchest", text = "trollchest", + value = "trollchest", }, { children = { { fileId = "197068", - value = "worldtreeportal01.m2", text = "worldtreeportal01.m2", + value = "worldtreeportal01.m2", }, }, - value = "worldtreeportals", text = "worldtreeportals", + value = "worldtreeportals", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { { children = { { - fileId = "197074", - value = "be_fence_001.m2", - text = "be_fence_001.m2", + fileId = "197108", + text = "humantentlarge.m2", + value = "humantentlarge.m2", }, + }, + text = "humantentlarge", + value = "humantentlarge", + }, + { + children = { { - fileId = "197076", - value = "be_fencepost_001.m2", - text = "be_fencepost_001.m2", - }, - { - fileId = "197080", - value = "be_jar_01.m2", - text = "be_jar_01.m2", - }, - { - fileId = "197082", - value = "be_jar_02.m2", - text = "be_jar_02.m2", - }, - { - fileId = "197083", - value = "be_lantern_blue_001.m2", - text = "be_lantern_blue_001.m2", - }, - { - fileId = "197084", - value = "be_lantern_busted_001.m2", - text = "be_lantern_busted_001.m2", - }, - { - fileId = "197085", - value = "be_lantern_red_001.m2", - text = "be_lantern_red_001.m2", - }, - { - fileId = "197087", - value = "be_sign_post_001.m2", - text = "be_sign_post_001.m2", - }, - { - fileId = "197089", - value = "be_signpostsign_stone_01.m2", - text = "be_signpostsign_stone_01.m2", - }, - { - fileId = "197090", - value = "be_signpostsign_wood_01.m2", - text = "be_signpostsign_wood_01.m2", - }, - { - fileId = "197094", - value = "bl_round_crate_001.m2", - text = "bl_round_crate_001.m2", - }, - { - fileId = "197095", - value = "bl_round_crate_002.m2", - text = "bl_round_crate_002.m2", - }, - { - fileId = "197096", - value = "bl_round_crate_003.m2", - text = "bl_round_crate_003.m2", - }, - { - fileId = "197097", - value = "bl_round_crate_004_lid.m2", - text = "bl_round_crate_004_lid.m2", - }, - { - fileId = "197098", - value = "bl_round_crate_004_open.m2", - text = "bl_round_crate_004_open.m2", - }, - { - fileId = "197099", - value = "bl_sq_crate_001.m2", - text = "bl_sq_crate_001.m2", - }, - { - fileId = "197100", - value = "bl_sq_crate_002.m2", - text = "bl_sq_crate_002.m2", - }, - { - fileId = "197101", - value = "bl_sq_crate_003.m2", - text = "bl_sq_crate_003.m2", - }, - { - fileId = "197102", - value = "bl_sq_crate_004_lid.m2", - text = "bl_sq_crate_004_lid.m2", - }, - { - fileId = "197103", - value = "bl_sq_crate_004_open.m2", - text = "bl_sq_crate_004_open.m2", + fileId = "197109", + text = "humantentmedium.m2", + value = "humantentmedium.m2", }, }, - value = "passive doodads", - text = "passive doodads", + text = "humantentmedium", + value = "humantentmedium", }, }, - value = "bloodelf", - text = "bloodelf", + text = "buildings", + value = "buildings", }, { children = { { - children = { - { - fileId = "197108", - value = "humantentlarge.m2", - text = "humantentlarge.m2", - }, - }, - value = "humantentlarge", - text = "humantentlarge", - }, - { - children = { - { - fileId = "197109", - value = "humantentmedium.m2", - text = "humantentmedium.m2", - }, - }, - value = "humantentmedium", - text = "humantentmedium", + fileId = "197122", + text = "collision_pcsize.m2", + value = "collision_pcsize.m2", }, }, - value = "buildings", - text = "buildings", + text = "collision", + value = "collision", }, { children = { @@ -57909,78 +57765,21 @@ WeakAuras.ModelPaths = { { children = { { - fileId = "197113", - value = "centaur_arch01.m2", - text = "centaur_arch01.m2", - }, - { - fileId = "197114", - value = "centaur_brokearch01.m2", - text = "centaur_brokearch01.m2", - }, - { - fileId = "197115", - value = "centaur_brokearch02.m2", - text = "centaur_brokearch02.m2", - }, - { - fileId = "197116", - value = "centaur_brokepillar01.m2", - text = "centaur_brokepillar01.m2", - }, - { - fileId = "197117", - value = "centaur_pillar01.m2", - text = "centaur_pillar01.m2", - }, - { - fileId = "197118", - value = "centaur_wall01.m2", - text = "centaur_wall01.m2", - }, - { - fileId = "197119", - value = "centaur_wall_ruin01.m2", - text = "centaur_wall_ruin01.m2", - }, - }, - value = "centaurruins", - text = "centaurruins", - }, - { - children = { - { - fileId = "197120", - value = "centaurtent01.m2", - text = "centaurtent01.m2", - }, - { - fileId = "197121", - value = "centaurtent02.m2", - text = "centaurtent02.m2", + fileId = "197230", + text = "fishingchair.m2", + value = "fishingchair.m2", }, }, - value = "centaurtents", - text = "centaurtents", + text = "chair", + value = "chair", }, }, - value = "passive doodads", - text = "passive doodads", - }, - }, - value = "centaur", - text = "centaur", - }, - { - children = { - { - fileId = "197122", - value = "collision_pcsize.m2", - text = "collision_pcsize.m2", + text = "fishing", + value = "fishing", }, }, - value = "collision", - text = "collision", + text = "doodads", + value = "doodads", }, { children = { @@ -57989,517 +57788,324 @@ WeakAuras.ModelPaths = { { children = { { - fileId = "197124", - value = "darkirondwarfrune_a.m2", - text = "darkirondwarfrune_a.m2", - }, - { - fileId = "197125", - value = "darkirondwarfrune_a1.m2", - text = "darkirondwarfrune_a1.m2", - }, - { - fileId = "197126", - value = "darkirondwarfrune_b.m2", - text = "darkirondwarfrune_b.m2", - }, - { - fileId = "197127", - value = "darkirondwarfrune_c.m2", - text = "darkirondwarfrune_c.m2", - }, - { - fileId = "197128", - value = "darkirondwarfrune_d.m2", - text = "darkirondwarfrune_d.m2", - }, - { - fileId = "197129", - value = "darkirondwarfrune_e.m2", - text = "darkirondwarfrune_e.m2", - }, - { - fileId = "197130", - value = "darkirondwarfrune_f.m2", - text = "darkirondwarfrune_f.m2", - }, - { - fileId = "197131", - value = "darkirondwarfrune_g.m2", - text = "darkirondwarfrune_g.m2", + fileId = "197635", + text = "gnomemachine.m2", + value = "gnomemachine.m2", }, }, - value = "runes", - text = "runes", + text = "gnomemachine", + value = "gnomemachine", }, }, - value = "active doodads", - text = "active doodads", + text = "activedoodads", + value = "activedoodads", }, + }, + text = "gnome", + value = "gnome", + }, + { + children = { { children = { { children = { { - fileId = "197132", - value = "darkirondwarfbed01.m2", - text = "darkirondwarfbed01.m2", - }, - { - fileId = "197133", - value = "darkirondwarfbed02.m2", - text = "darkirondwarfbed02.m2", - }, - { - fileId = "197134", - value = "darkirondwarfbed03.m2", - text = "darkirondwarfbed03.m2", - }, - }, - value = "beds", - text = "beds", - }, - { - children = { - { - fileId = "197137", - value = "darkironchair01.m2", - text = "darkironchair01.m2", - }, - { - fileId = "197138", - value = "darkironchair02.m2", - text = "darkironchair02.m2", - }, - { - fileId = "197139", - value = "darkironchair03.m2", - text = "darkironchair03.m2", - }, - { - fileId = "197140", - value = "darkironchairbroken01.m2", - text = "darkironchairbroken01.m2", - }, - { - fileId = "197141", - value = "darkironchairbroken02.m2", - text = "darkironchairbroken02.m2", - }, - { - fileId = "197142", - value = "darkironchairbroken03.m2", - text = "darkironchairbroken03.m2", + fileId = "197760", + text = "goblincontrolpanel.m2", + value = "goblincontrolpanel.m2", }, }, - value = "chairs", - text = "chairs", + text = "controlpanel", + value = "controlpanel", }, { children = { { - fileId = "197145", - value = "darkirondwarfcorpse01.m2", - text = "darkirondwarfcorpse01.m2", - }, - { - fileId = "197146", - value = "darkirondwarfcorpse02.m2", - text = "darkirondwarfcorpse02.m2", + fileId = "197766", + text = "goblinhutbottles.m2", + value = "goblinhutbottles.m2", }, { - fileId = "197147", - value = "darkirondwarfcorpse03.m2", - text = "darkirondwarfcorpse03.m2", + fileId = "197767", + text = "goblinmachinery.m2", + value = "goblinmachinery.m2", }, { - fileId = "197148", - value = "darkirondwarfcorpse04.m2", - text = "darkirondwarfcorpse04.m2", + fileId = "197768", + text = "goblinweathervane.m2", + value = "goblinweathervane.m2", }, }, - value = "corpses", - text = "corpses", + text = "goblinmachinery", + value = "goblinmachinery", }, { children = { { - fileId = "197150", - value = "darkironcrate01.m2", - text = "darkironcrate01.m2", + fileId = "197777", + text = "crashedgoblinrc.m2", + value = "crashedgoblinrc.m2", }, { - fileId = "197152", - value = "darkironcrate02.m2", - text = "darkironcrate02.m2", + fileId = "197779", + text = "goblinrocketcart01.m2", + value = "goblinrocketcart01.m2", }, { - fileId = "197153", - value = "darkironcratebroken01.m2", - text = "darkironcratebroken01.m2", + fileId = "197780", + text = "goblinrocketcart02.m2", + value = "goblinrocketcart02.m2", }, { - fileId = "197154", - value = "darkironcratebroken02.m2", - text = "darkironcratebroken02.m2", + fileId = "197781", + text = "goblinrocketcart03.m2", + value = "goblinrocketcart03.m2", }, - }, - value = "crates", - text = "crates", - }, - { - children = { { - fileId = "197155", - value = "darkirongrindingwheel.m2", - text = "darkirongrindingwheel.m2", + fileId = "197782", + text = "goblinrocketcart04.m2", + value = "goblinrocketcart04.m2", }, { - fileId = "197156", - value = "darkirongrindingwheelbroken.m2", - text = "darkirongrindingwheelbroken.m2", + fileId = "197783", + text = "goblinrocketcart05.m2", + value = "goblinrocketcart05.m2", }, - }, - value = "grindingwheels", - text = "grindingwheels", - }, - { - children = { { - fileId = "197158", - value = "darkhaypilelarge01.m2", - text = "darkhaypilelarge01.m2", + fileId = "197784", + text = "goblinrocketcart_rc.m2", + value = "goblinrocketcart_rc.m2", }, }, - value = "haypiles", - text = "haypiles", + text = "goblinrocketcarts", + value = "goblinrocketcarts", }, { children = { { - fileId = "197162", - value = "darkironkeg01.m2", - text = "darkironkeg01.m2", - }, - { - fileId = "197163", - value = "darkironkegbroken01.m2", - text = "darkironkegbroken01.m2", - }, - { - fileId = "197164", - value = "darkironkegbroken02.m2", - text = "darkironkegbroken02.m2", - }, - { - fileId = "197165", - value = "darkironkegstand01.m2", - text = "darkironkegstand01.m2", + fileId = "197789", + text = "goblinshreddersuit01.m2", + value = "goblinshreddersuit01.m2", }, { - fileId = "197166", - value = "darkironkegwstand01.m2", - text = "darkironkegwstand01.m2", + fileId = "197790", + text = "goblinshreddersuit02.m2", + value = "goblinshreddersuit02.m2", }, }, - value = "kegs", - text = "kegs", + text = "goblinshreddersuit", + value = "goblinshreddersuit", }, { children = { { - fileId = "197167", - value = "darkironhanginglamp01.m2", - text = "darkironhanginglamp01.m2", + fileId = "197791", + text = "goblintent01.m2", + value = "goblintent01.m2", }, { - fileId = "197168", - value = "darkironhanginglamp02.m2", - text = "darkironhanginglamp02.m2", + fileId = "197792", + text = "goblintent02.m2", + value = "goblintent02.m2", }, { - fileId = "197169", - value = "darkironhanginglampbroken01.m2", - text = "darkironhanginglampbroken01.m2", + fileId = "197793", + text = "goblintent03.m2", + value = "goblintent03.m2", }, - }, - value = "lamps", - text = "lamps", - }, - { - children = { { - fileId = "197171", - value = "darkironlight01.m2", - text = "darkironlight01.m2", + fileId = "197794", + text = "goblintent04.m2", + value = "goblintent04.m2", }, { - fileId = "197172", - value = "darkironlight02.m2", - text = "darkironlight02.m2", + fileId = "197795", + text = "goblintent05.m2", + value = "goblintent05.m2", }, { - fileId = "197173", - value = "darkironlightbroken01.m2", - text = "darkironlightbroken01.m2", + fileId = "197796", + text = "goblintent06.m2", + value = "goblintent06.m2", }, { - fileId = "197174", - value = "darkironlightbroken02.m2", - text = "darkironlightbroken02.m2", + fileId = "197797", + text = "goblintent07.m2", + value = "goblintent07.m2", }, }, - value = "lights", - text = "lights", + text = "goblintents", + value = "goblintents", }, { children = { { - fileId = "197177", - value = "blackrockorcmanacle01.m2", - text = "blackrockorcmanacle01.m2", - }, - { - fileId = "197179", - value = "darkirondwarfmanacle01.m2", - text = "darkirondwarfmanacle01.m2", + fileId = "197799", + text = "goblinwagontnt_01.m2", + value = "goblinwagontnt_01.m2", }, }, - value = "manacles", - text = "manacles", + text = "goblintntwagon", + value = "goblintntwagon", }, { children = { { - fileId = "197181", - value = "darkironmural01.m2", - text = "darkironmural01.m2", - }, - { - fileId = "197183", - value = "darkironmural02.m2", - text = "darkironmural02.m2", - }, - { - fileId = "197185", - value = "darkironmural03.m2", - text = "darkironmural03.m2", + fileId = "197802", + text = "go_rocketship.m2", + value = "go_rocketship.m2", }, }, - value = "murals", - text = "murals", + text = "rocketship", + value = "rocketship", }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "goblin", + value = "goblin", + }, + { + children = { + { + children = { { children = { { - fileId = "197190", - value = "skeletonlaying01.m2", - text = "skeletonlaying01.m2", - }, - { - fileId = "197191", - value = "skeletonlaying02.m2", - text = "skeletonlaying02.m2", - }, - { - fileId = "197192", - value = "skeletonlaying03.m2", - text = "skeletonlaying03.m2", - }, - { - fileId = "197193", - value = "skeletonsitting01.m2", - text = "skeletonsitting01.m2", + fileId = "197803", + text = "deadminedoor01.m2", + value = "deadminedoor01.m2", }, { - fileId = "197194", - value = "skeletonsitting02.m2", - text = "skeletonsitting02.m2", + fileId = "197804", + text = "deadminedoor02.m2", + value = "deadminedoor02.m2", }, { - fileId = "197195", - value = "skeletonsitting03.m2", - text = "skeletonsitting03.m2", + fileId = "197807", + text = "farmdoor01test.m2", + value = "farmdoor01test.m2", }, { - fileId = "197196", - value = "skeletonsitting04.m2", - text = "skeletonsitting04.m2", + fileId = "197810", + text = "genericwroughtgate01.m2", + value = "genericwroughtgate01.m2", }, - }, - value = "skeletons", - text = "skeletons", - }, - { - children = { { - fileId = "197199", - value = "blackrockstretchedskin01.m2", - text = "blackrockstretchedskin01.m2", + fileId = "197814", + text = "monestarybossdoor.m2", + value = "monestarybossdoor.m2", }, { - fileId = "197200", - value = "blackrockstretchedskin02.m2", - text = "blackrockstretchedskin02.m2", + fileId = "197815", + text = "monestaryhalldoor.m2", + value = "monestaryhalldoor.m2", }, - }, - value = "stretchedskins", - text = "stretchedskins", - }, - { - children = { { - fileId = "197201", - value = "darkirontable01.m2", - text = "darkirontable01.m2", + fileId = "197816", + text = "monestarysecretdoor.m2", + value = "monestarysecretdoor.m2", }, { - fileId = "197202", - value = "darkirontablebroken01.m2", - text = "darkirontablebroken01.m2", + fileId = "197817", + text = "portcullisactive.m2", + value = "portcullisactive.m2", }, - }, - value = "tables", - text = "tables", - }, - { - children = { { - fileId = "197206", - value = "darkirontapestry01.m2", - text = "darkirontapestry01.m2", + fileId = "197819", + text = "scarletcathedraldoor.m2", + value = "scarletcathedraldoor.m2", }, { - fileId = "197207", - value = "darkirontapestry02.m2", - text = "darkirontapestry02.m2", + fileId = "197820", + text = "shadowfangdoor01.m2", + value = "shadowfangdoor01.m2", }, { - fileId = "197208", - value = "darkirontapestry03.m2", - text = "darkirontapestry03.m2", + fileId = "197821", + text = "shadowfangdoor02.m2", + value = "shadowfangdoor02.m2", }, - }, - value = "tapestries", - text = "tapestries", - }, - { - children = { { - fileId = "197210", - value = "darkironthrone.m2", - text = "darkironthrone.m2", + fileId = "197823", + text = "undeadwroughtgate01.m2", + value = "undeadwroughtgate01.m2", }, - }, - value = "throne", - text = "throne", - }, - { - children = { { - fileId = "197212", - value = "darkironsaw01.m2", - text = "darkironsaw01.m2", + fileId = "197825", + text = "wroughtirondoor.m2", + value = "wroughtirondoor.m2", }, { - fileId = "197213", - value = "darkironsawbroken01.m2", - text = "darkironsawbroken01.m2", + fileId = "197827", + text = "wroughtirondoor02.m2", + value = "wroughtirondoor02.m2", }, }, - value = "tools", - text = "tools", + text = "doors", + value = "doors", }, { children = { { - fileId = "197214", - value = "darkironwoodpile01.m2", - text = "darkironwoodpile01.m2", - }, - { - fileId = "197215", - value = "darkironwoodpile02.m2", - text = "darkironwoodpile02.m2", + fileId = "197829", + text = "wizardssphere.m2", + value = "wizardssphere.m2", }, }, - value = "woodpiles", - text = "woodpiles", + text = "shadowfang", + value = "shadowfang", }, + }, + text = "activedoodads", + value = "activedoodads", + }, + { + children = { { children = { { - fileId = "197216", - value = "darkironwoodplanks01.m2", - text = "darkironwoodplanks01.m2", - }, - { - fileId = "197217", - value = "darkironwoodplanks02.m2", - text = "darkironwoodplanks02.m2", - }, - { - fileId = "197218", - value = "darkironwoodplanks03.m2", - text = "darkironwoodplanks03.m2", - }, - { - fileId = "197219", - value = "darkironwoodplanks04.m2", - text = "darkironwoodplanks04.m2", - }, - { - fileId = "197220", - value = "darkironwoodplanks05.m2", - text = "darkironwoodplanks05.m2", - }, - { - fileId = "197221", - value = "darkironwoodplanks06.m2", - text = "darkironwoodplanks06.m2", - }, - { - fileId = "197222", - value = "darkironwoodplanks07.m2", - text = "darkironwoodplanks07.m2", + fileId = "198678", + text = "prisoncell01.m2", + value = "prisoncell01.m2", }, }, - value = "woodplanks", - text = "woodplanks", + text = "prisoncell", + value = "prisoncell", }, + }, + text = "passivedoodads", + value = "passivedoodads", + }, + }, + text = "human", + value = "human", + }, + { + children = { + { + children = { { children = { { - fileId = "197224", - value = "darkironworkbench01.m2", - text = "darkironworkbench01.m2", - }, - { - fileId = "197225", - value = "darkironworkbench02.m2", - text = "darkironworkbench02.m2", - }, - { - fileId = "197226", - value = "darkironworkbenchbroken01.m2", - text = "darkironworkbenchbroken01.m2", - }, - { - fileId = "197227", - value = "darkironworkbenchbroken02.m2", - text = "darkironworkbenchbroken02.m2", + fileId = "198720", + text = "bfd_brassdoors.m2", + value = "bfd_brassdoors.m2", }, }, - value = "workbenches", - text = "workbenches", + text = "doors", + value = "doors", }, }, - value = "passive doodads", - text = "passive doodads", + text = "activedoodads", + value = "activedoodads", }, }, - value = "darkirondwarf", - text = "darkirondwarf", + text = "nightelf", + value = "nightelf", }, { children = { @@ -58508,14558 +58114,3258 @@ WeakAuras.ModelPaths = { { children = { { - fileId = "197230", - value = "fishingchair.m2", - text = "fishingchair.m2", + fileId = "198984", + text = "glowingogrehead.m2", + value = "glowingogrehead.m2", + }, + { + fileId = "198986", + text = "pikeforked.m2", + value = "pikeforked.m2", }, }, - value = "chair", - text = "chair", + text = "ogrehead", + value = "ogrehead", }, }, - value = "fishing", - text = "fishing", + text = "activedoodads", + value = "activedoodads", }, }, - value = "doodads", - text = "doodads", + text = "ogre", + value = "ogre", + }, + { + children = { + { + fileId = "199040", + text = "green_omni.m2", + value = "green_omni.m2", + }, + }, + text = "omnilights", + value = "omnilights", }, { children = { { children = { { - children = { - { - fileId = "197231", - value = "dwarventunnelportcullis.m2", - text = "dwarventunnelportcullis.m2", - }, - }, - value = "doors", - text = "doors", + fileId = "199458", + text = "owlbearskull01.m2", + value = "owlbearskull01.m2", }, }, - value = "active doodads", - text = "active doodads", + text = "owlbearskulls", + value = "owlbearskulls", }, { children = { { - children = { - { - fileId = "197234", - value = "ironforgebanner01.m2", - text = "ironforgebanner01.m2", - }, - { - fileId = "197235", - value = "ironforgebanner_ornate01.m2", - text = "ironforgebanner_ornate01.m2", - }, - { - fileId = "197236", - value = "ironforgebannerstill.m2", - text = "ironforgebannerstill.m2", - }, - }, - value = "banners", - text = "banners", + fileId = "199460", + text = "owlbearhangingtotem01.m2", + value = "owlbearhangingtotem01.m2", }, { - children = { - { - fileId = "197238", - value = "dwarvenbarrel01.m2", - text = "dwarvenbarrel01.m2", - }, - }, - value = "barrels", - text = "barrels", - }, - { - children = { - { - fileId = "197239", - value = "dwarvenbattlementlarge01.m2", - text = "dwarvenbattlementlarge01.m2", - }, - { - fileId = "197240", - value = "dwarvenbattlementmossy01.m2", - text = "dwarvenbattlementmossy01.m2", - }, - { - fileId = "197241", - value = "dwarvenbattlementmossy02.m2", - text = "dwarvenbattlementmossy02.m2", - }, - { - fileId = "197242", - value = "dwarvenbattlementmossy03.m2", - text = "dwarvenbattlementmossy03.m2", - }, - { - fileId = "197243", - value = "dwarvenbattlementmossy04.m2", - text = "dwarvenbattlementmossy04.m2", - }, - { - fileId = "197244", - value = "dwarvenbattlementmossy05.m2", - text = "dwarvenbattlementmossy05.m2", - }, - { - fileId = "197245", - value = "dwarvenbattlementmossy06.m2", - text = "dwarvenbattlementmossy06.m2", - }, - { - fileId = "197246", - value = "dwarvenbattlementmossy07.m2", - text = "dwarvenbattlementmossy07.m2", - }, - { - fileId = "197247", - value = "dwarvenbattlementsmall01.m2", - text = "dwarvenbattlementsmall01.m2", - }, - { - fileId = "197248", - value = "dwarvenbattlementsnowy01.m2", - text = "dwarvenbattlementsnowy01.m2", - }, - { - fileId = "197249", - value = "dwarvenbattlementsnowy02.m2", - text = "dwarvenbattlementsnowy02.m2", - }, - { - fileId = "197250", - value = "dwarvenbattlementsnowy03.m2", - text = "dwarvenbattlementsnowy03.m2", - }, - { - fileId = "197251", - value = "dwarvenbattlementsnowy04.m2", - text = "dwarvenbattlementsnowy04.m2", - }, - { - fileId = "197252", - value = "dwarvenbattlementsnowy05.m2", - text = "dwarvenbattlementsnowy05.m2", - }, - { - fileId = "197253", - value = "dwarvenbattlementsnowy06.m2", - text = "dwarvenbattlementsnowy06.m2", - }, - { - fileId = "197254", - value = "dwarvenbattlementsnowy07.m2", - text = "dwarvenbattlementsnowy07.m2", - }, - { - fileId = "197260", - value = "snowybattlementlarge01.m2", - text = "snowybattlementlarge01.m2", - }, - { - fileId = "197261", - value = "snowybattlementsmall01.m2", - text = "snowybattlementsmall01.m2", - }, - }, - value = "battlements", - text = "battlements", - }, - { - children = { - { - fileId = "197266", - value = "dwarvenbed01.m2", - text = "dwarvenbed01.m2", - }, - }, - value = "beds", - text = "beds", - }, - { - children = { - { - fileId = "197270", - value = "ironforgebench_average01.m2", - text = "ironforgebench_average01.m2", - }, - { - fileId = "197272", - value = "ironforgebench_ornate01.m2", - text = "ironforgebench_ornate01.m2", - }, - { - fileId = "197274", - value = "ironforgebench_simple01.m2", - text = "ironforgebench_simple01.m2", - }, - }, - value = "benches", - text = "benches", - }, - { - children = { - { - fileId = "197275", - value = "bookshelfdwarvenaverage01.m2", - text = "bookshelfdwarvenaverage01.m2", - }, - { - fileId = "197276", - value = "bookshelfdwarvenaverage02.m2", - text = "bookshelfdwarvenaverage02.m2", - }, - { - fileId = "197277", - value = "bookshelfdwarvenaverage03.m2", - text = "bookshelfdwarvenaverage03.m2", - }, - { - fileId = "197278", - value = "bookshelfdwarvenaverage05.m2", - text = "bookshelfdwarvenaverage05.m2", - }, - { - fileId = "197279", - value = "bookshelfdwarvenornate01.m2", - text = "bookshelfdwarvenornate01.m2", - }, - { - fileId = "197280", - value = "bookshelfdwarvenornate02.m2", - text = "bookshelfdwarvenornate02.m2", - }, - { - fileId = "197281", - value = "bookshelfdwarvenornate03.m2", - text = "bookshelfdwarvenornate03.m2", - }, - { - fileId = "197282", - value = "bookshelfdwarvenornate04.m2", - text = "bookshelfdwarvenornate04.m2", - }, - { - fileId = "197283", - value = "bookshelfdwarvenornate05.m2", - text = "bookshelfdwarvenornate05.m2", - }, - { - fileId = "197284", - value = "bookshelfdwarvensimple01.m2", - text = "bookshelfdwarvensimple01.m2", - }, - { - fileId = "197285", - value = "bookshelfdwarvensimple02.m2", - text = "bookshelfdwarvensimple02.m2", - }, - { - fileId = "197286", - value = "bookshelfdwarvensimple03.m2", - text = "bookshelfdwarvensimple03.m2", - }, - { - fileId = "197287", - value = "bookshelfdwarvensimple04.m2", - text = "bookshelfdwarvensimple04.m2", - }, - { - fileId = "197288", - value = "dwarvenbookshelflarge.m2", - text = "dwarvenbookshelflarge.m2", - }, - { - fileId = "197289", - value = "dwarvenbookshelfsmall.m2", - text = "dwarvenbookshelfsmall.m2", - }, - }, - value = "bookshelves", - text = "bookshelves", - }, - { - children = { - { - fileId = "197292", - value = "dwarvenbrazier01.m2", - text = "dwarvenbrazier01.m2", - }, - { - fileId = "197293", - value = "dwarvenbrazier02.m2", - text = "dwarvenbrazier02.m2", - }, - { - fileId = "197295", - value = "stormwinddwarfbrazier.m2", - text = "stormwinddwarfbrazier.m2", - }, - }, - value = "braziers", - text = "braziers", - }, - { - children = { - { - fileId = "197297", - value = "ts_chain01.m2", - text = "ts_chain01.m2", - }, - { - fileId = "197298", - value = "ts_chain02.m2", - text = "ts_chain02.m2", - }, - { - fileId = "197299", - value = "ts_chainmounting01.m2", - text = "ts_chainmounting01.m2", - }, - }, - value = "chainlinks", - text = "chainlinks", - }, - { - children = { - { - fileId = "197300", - value = "dwarvenchair01.m2", - text = "dwarvenchair01.m2", - }, - { - fileId = "197301", - value = "dwarvenchair02.m2", - text = "dwarvenchair02.m2", - }, - { - fileId = "197302", - value = "dwarvenchair03.m2", - text = "dwarvenchair03.m2", - }, - { - fileId = "197304", - value = "dwarvenhighendchair.m2", - text = "dwarvenhighendchair.m2", - }, - { - fileId = "197307", - value = "ironforgechair_average01.m2", - text = "ironforgechair_average01.m2", - }, - { - fileId = "197309", - value = "ironforgechair_ornate01.m2", - text = "ironforgechair_ornate01.m2", - }, - { - fileId = "197311", - value = "ironforgechair_simple01.m2", - text = "ironforgechair_simple01.m2", - }, - }, - value = "chairs", - text = "chairs", - }, - { - children = { - { - fileId = "197315", - value = "underconstruction01.m2", - text = "underconstruction01.m2", - }, - { - fileId = "197316", - value = "underconstruction02.m2", - text = "underconstruction02.m2", - }, - }, - value = "constructionsigns", - text = "constructionsigns", - }, - { - children = { - { - fileId = "197317", - value = "ts_debris01.m2", - text = "ts_debris01.m2", - }, - { - fileId = "197318", - value = "ts_debris02.m2", - text = "ts_debris02.m2", - }, - { - fileId = "197319", - value = "ts_debris03.m2", - text = "ts_debris03.m2", - }, - { - fileId = "197320", - value = "ts_debris04.m2", - text = "ts_debris04.m2", - }, - { - fileId = "197321", - value = "ts_debris05.m2", - text = "ts_debris05.m2", - }, - { - fileId = "197322", - value = "ts_debris06.m2", - text = "ts_debris06.m2", - }, - { - fileId = "197323", - value = "ts_debris07.m2", - text = "ts_debris07.m2", - }, - { - fileId = "197324", - value = "ts_debris08.m2", - text = "ts_debris08.m2", - }, - { - fileId = "197325", - value = "ts_debris09.m2", - text = "ts_debris09.m2", - }, - { - fileId = "197326", - value = "ts_debris10.m2", - text = "ts_debris10.m2", - }, - }, - value = "debris", - text = "debris", - }, - { - children = { - { - fileId = "197327", - value = "anvilmardock01.m2", - text = "anvilmardock01.m2", - }, - }, - value = "docks", - text = "docks", - }, - { - children = { - { - fileId = "197330", - value = "corpseskeletondwarf.m2", - text = "corpseskeletondwarf.m2", - }, - }, - value = "dwarfcorpse", - text = "dwarfcorpse", - }, - { - children = { - { - fileId = "197331", - value = "gunshopdynamitebundle.m2", - text = "gunshopdynamitebundle.m2", - }, - }, - value = "dynamite", - text = "dynamite", - }, - { - children = { - { - fileId = "197332", - value = "excavationbannerstand.m2", - text = "excavationbannerstand.m2", - }, - { - fileId = "197333", - value = "excavationbannerstand01.m2", - text = "excavationbannerstand01.m2", - }, - { - fileId = "197334", - value = "excavationbannerstand02.m2", - text = "excavationbannerstand02.m2", - }, - }, - value = "excavationbannerstands", - text = "excavationbannerstands", - }, - { - children = { - { - fileId = "197337", - value = "excavationbarrierplank.m2", - text = "excavationbarrierplank.m2", - }, - { - fileId = "197338", - value = "excavationbarrierplank02.m2", - text = "excavationbarrierplank02.m2", - }, - { - fileId = "197339", - value = "excavationbarrierplank02b.m2", - text = "excavationbarrierplank02b.m2", - }, - { - fileId = "197340", - value = "excavationbarrierplank02c.m2", - text = "excavationbarrierplank02c.m2", - }, - { - fileId = "197341", - value = "excavationbarrierplank03.m2", - text = "excavationbarrierplank03.m2", - }, - { - fileId = "197342", - value = "excavationbarrierplank03b.m2", - text = "excavationbarrierplank03b.m2", - }, - { - fileId = "197343", - value = "excavationbarrierplank03c.m2", - text = "excavationbarrierplank03c.m2", - }, - }, - value = "excavationbarrierplank", - text = "excavationbarrierplank", - }, - { - children = { - { - fileId = "197344", - value = "excavationbarrierpole.m2", - text = "excavationbarrierpole.m2", - }, - { - fileId = "197345", - value = "excavationbarrierpole02.m2", - text = "excavationbarrierpole02.m2", - }, - { - fileId = "197346", - value = "excavationbarrierpole03.m2", - text = "excavationbarrierpole03.m2", - }, - { - fileId = "197347", - value = "excavationbarrierpole04.m2", - text = "excavationbarrierpole04.m2", - }, - }, - value = "excavationbarrierpole", - text = "excavationbarrierpole", - }, - { - children = { - { - fileId = "197348", - value = "excavationbarrier01.m2", - text = "excavationbarrier01.m2", - }, - { - fileId = "197349", - value = "excavationbarrier01_pvpcollision.m2", - text = "excavationbarrier01_pvpcollision.m2", - }, - { - fileId = "197350", - value = "excavationbarrier01b.m2", - text = "excavationbarrier01b.m2", - }, - { - fileId = "197351", - value = "excavationbarrier01b_pvpcollision.m2", - text = "excavationbarrier01b_pvpcollision.m2", - }, - { - fileId = "197352", - value = "excavationbarrier02.m2", - text = "excavationbarrier02.m2", - }, - { - fileId = "197353", - value = "excavationbarrier02_pvpcollision.m2", - text = "excavationbarrier02_pvpcollision.m2", - }, - { - fileId = "197354", - value = "excavationbarrier02b.m2", - text = "excavationbarrier02b.m2", - }, - { - fileId = "197355", - value = "excavationbarrier02b_pvpcollision.m2", - text = "excavationbarrier02b_pvpcollision.m2", - }, - { - fileId = "197356", - value = "excavationbarrier03.m2", - text = "excavationbarrier03.m2", - }, - { - fileId = "197357", - value = "excavationbarrier03_pvpcollision.m2", - text = "excavationbarrier03_pvpcollision.m2", - }, - { - fileId = "197358", - value = "excavationbarrier03b.m2", - text = "excavationbarrier03b.m2", - }, - { - fileId = "197359", - value = "excavationbarrier03b_pvpcollision.m2", - text = "excavationbarrier03b_pvpcollision.m2", - }, - { - fileId = "197360", - value = "excavationbarrier04.m2", - text = "excavationbarrier04.m2", - }, - { - fileId = "197361", - value = "excavationbarrier04_pvpcollision.m2", - text = "excavationbarrier04_pvpcollision.m2", - }, - { - fileId = "197362", - value = "excavationbarrier04b.m2", - text = "excavationbarrier04b.m2", - }, - { - fileId = "197363", - value = "excavationbarrier04b_pvpcollision.m2", - text = "excavationbarrier04b_pvpcollision.m2", - }, - }, - value = "excavationbarriers", - text = "excavationbarriers", - }, - { - children = { - { - fileId = "197366", - value = "excavationcrane.m2", - text = "excavationcrane.m2", - }, - }, - value = "excavationcrane", - text = "excavationcrane", - }, - { - children = { - { - fileId = "197372", - value = "excavationdwarvenruins01.m2", - text = "excavationdwarvenruins01.m2", - }, - { - fileId = "197373", - value = "excavationdwarvenruins02.m2", - text = "excavationdwarvenruins02.m2", - }, - }, - value = "excavationdwarvenruins", - text = "excavationdwarvenruins", - }, - { - children = { - { - fileId = "197374", - value = "excavationrailingpost.m2", - text = "excavationrailingpost.m2", - }, - { - fileId = "197375", - value = "excavationrailingpostrope.m2", - text = "excavationrailingpostrope.m2", - }, - }, - value = "excavationrailingpost", - text = "excavationrailingpost", - }, - { - children = { - { - fileId = "197377", - value = "excavationrailingrail.m2", - text = "excavationrailingrail.m2", - }, - }, - value = "excavationrailingrail", - text = "excavationrailingrail", - }, - { - children = { - { - fileId = "197378", - value = "excavationrope.m2", - text = "excavationrope.m2", - }, - { - fileId = "197379", - value = "excavationropestake.m2", - text = "excavationropestake.m2", - }, - }, - value = "excavationropestake", - text = "excavationropestake", - }, - { - children = { - { - fileId = "197382", - value = "excavationstake.m2", - text = "excavationstake.m2", - }, - }, - value = "excavationstake", - text = "excavationstake", - }, - { - children = { - { - fileId = "197383", - value = "excavationtentpavillion.m2", - text = "excavationtentpavillion.m2", - }, - }, - value = "excavationtentpavillion", - text = "excavationtentpavillion", - }, - { - children = { - { - fileId = "197385", - value = "excavationtentpavillionruined01.m2", - text = "excavationtentpavillionruined01.m2", - }, - }, - value = "excavationtentpavillionruined", - text = "excavationtentpavillionruined", - }, - { - children = { - { - fileId = "197388", - value = "excavationtent01.m2", - text = "excavationtent01.m2", - }, - { - fileId = "197389", - value = "excavationtent02.m2", - text = "excavationtent02.m2", - }, - { - fileId = "197390", - value = "excavationtentruined01.m2", - text = "excavationtentruined01.m2", - }, - { - fileId = "197391", - value = "excavationtentruined02.m2", - text = "excavationtentruined02.m2", - }, - }, - value = "excavationtents", - text = "excavationtents", - }, - { - children = { - { - fileId = "197394", - value = "excavationwaterwagon.m2", - text = "excavationwaterwagon.m2", - }, - }, - value = "excavationwaterwagon", - text = "excavationwaterwagon", - }, - { - children = { - { - fileId = "197395", - value = "forgebonfire.m2", - text = "forgebonfire.m2", - }, - }, - value = "forgebonfire", - text = "forgebonfire", - }, - { - children = { - { - fileId = "197398", - value = "gunrack01a.m2", - text = "gunrack01a.m2", - }, - { - fileId = "197399", - value = "gunrack01b.m2", - text = "gunrack01b.m2", - }, - { - fileId = "197400", - value = "gunrack01c.m2", - text = "gunrack01c.m2", - }, - { - fileId = "197401", - value = "gunrack01d.m2", - text = "gunrack01d.m2", - }, - { - fileId = "197402", - value = "gunrack02a.m2", - text = "gunrack02a.m2", - }, - { - fileId = "197403", - value = "gunrack02b.m2", - text = "gunrack02b.m2", - }, - { - fileId = "197404", - value = "gunrack02c.m2", - text = "gunrack02c.m2", - }, - { - fileId = "197405", - value = "gunrack02d.m2", - text = "gunrack02d.m2", - }, - }, - value = "gunracks", - text = "gunracks", - }, - { - children = { - { - fileId = "197406", - value = "rifledwarven.m2", - text = "rifledwarven.m2", - }, - }, - value = "guns", - text = "guns", - }, - { - children = { - { - fileId = "197408", - value = "gyrocopter.m2", - text = "gyrocopter.m2", - }, - }, - value = "gyrocopter", - text = "gyrocopter", - }, - { - children = { - { - fileId = "197409", - value = "anvilmarlamppost.m2", - text = "anvilmarlamppost.m2", - }, - { - fileId = "197411", - value = "lochlamppost.m2", - text = "lochlamppost.m2", - }, - }, - value = "lampposts", - text = "lampposts", - }, - { - children = { - { - fileId = "197416", - value = "dwarvenhanginglanternhuge.m2", - text = "dwarvenhanginglanternhuge.m2", - }, - { - fileId = "197418", - value = "dwarvenhanginglanternlarge01.m2", - text = "dwarvenhanginglanternlarge01.m2", - }, - { - fileId = "197419", - value = "dwarvenhanginglanternmedium01.m2", - text = "dwarvenhanginglanternmedium01.m2", - }, - { - fileId = "197420", - value = "dwarvenhanginglanternsmall01.m2", - text = "dwarvenhanginglanternsmall01.m2", - }, - { - fileId = "197424", - value = "giantlantern01.m2", - text = "giantlantern01.m2", - }, - { - fileId = "197429", - value = "ironforgehanginglantern01.m2", - text = "ironforgehanginglantern01.m2", - }, - { - fileId = "197430", - value = "ironforgehanginglantern_new.m2", - text = "ironforgehanginglantern_new.m2", - }, - { - fileId = "197434", - value = "mediumlantern01.m2", - text = "mediumlantern01.m2", - }, - { - fileId = "197435", - value = "mediumlantern02.m2", - text = "mediumlantern02.m2", - }, - { - fileId = "197436", - value = "mininglamp01.m2", - text = "mininglamp01.m2", - }, - { - fileId = "197437", - value = "mininglamp02.m2", - text = "mininglamp02.m2", - }, - { - fileId = "197438", - value = "new_large_lantern01.m2", - text = "new_large_lantern01.m2", - }, - { - fileId = "197439", - value = "new_medium_lantern02.m2", - text = "new_medium_lantern02.m2", - }, - { - fileId = "197440", - value = "new_small_lantern01.m2", - text = "new_small_lantern01.m2", - }, - { - fileId = "197441", - value = "new_small_lantern02.m2", - text = "new_small_lantern02.m2", - }, - { - fileId = "197442", - value = "smalllantern01.m2", - text = "smalllantern01.m2", - }, - { - fileId = "197443", - value = "smalllantern02.m2", - text = "smalllantern02.m2", - }, - }, - value = "lanterns", - text = "lanterns", - }, - { - children = { - { - fileId = "197453", - value = "minecartgiant.m2", - text = "minecartgiant.m2", - }, - }, - value = "minecarts", - text = "minecarts", - }, - { - children = { - { - fileId = "197456", - value = "fossil01.m2", - text = "fossil01.m2", - }, - }, - value = "museum", - text = "museum", - }, - { - children = { - { - fileId = "197459", - value = "plattergoldornate01.m2", - text = "plattergoldornate01.m2", - }, - { - fileId = "197460", - value = "plattergoldornate02.m2", - text = "plattergoldornate02.m2", - }, - { - fileId = "197461", - value = "plattergoldsimple01.m2", - text = "plattergoldsimple01.m2", - }, - { - fileId = "197462", - value = "plattergoldsimple02.m2", - text = "plattergoldsimple02.m2", - }, - }, - value = "platters", - text = "platters", - }, - { - children = { - { - fileId = "197463", - value = "powderkeg01.m2", - text = "powderkeg01.m2", - }, - { - fileId = "197464", - value = "powderkegfused.m2", - text = "powderkegfused.m2", - }, - }, - value = "powderkegs", - text = "powderkegs", - }, - { - children = { - { - fileId = "197466", - value = "dwarvensharpeningwheel01.m2", - text = "dwarvensharpeningwheel01.m2", - }, - }, - value = "sharpeningwheel", - text = "sharpeningwheel", - }, - { - children = { - { - fileId = "197471", - value = "dwarvensignpost01.m2", - text = "dwarvensignpost01.m2", - }, - { - fileId = "197472", - value = "dwarvensignpostpointer01.m2", - text = "dwarvensignpostpointer01.m2", - }, - }, - value = "signposts", - text = "signposts", - }, - { - children = { - { - fileId = "197475", - value = "dwarfsign_alchemist.m2", - text = "dwarfsign_alchemist.m2", - }, - { - fileId = "197477", - value = "dwarfsign_armory.m2", - text = "dwarfsign_armory.m2", - }, - { - fileId = "197478", - value = "dwarfsign_axes.m2", - text = "dwarfsign_axes.m2", - }, - { - fileId = "197480", - value = "dwarfsign_bags.m2", - text = "dwarfsign_bags.m2", - }, - { - fileId = "197482", - value = "dwarfsign_bakery.m2", - text = "dwarfsign_bakery.m2", - }, - { - fileId = "197484", - value = "dwarfsign_bank.m2", - text = "dwarfsign_bank.m2", - }, - { - fileId = "197486", - value = "dwarfsign_blacksmith.m2", - text = "dwarfsign_blacksmith.m2", - }, - { - fileId = "197488", - value = "dwarfsign_cartography.m2", - text = "dwarfsign_cartography.m2", - }, - { - fileId = "197490", - value = "dwarfsign_cheese.m2", - text = "dwarfsign_cheese.m2", - }, - { - fileId = "197492", - value = "dwarfsign_clotharmor.m2", - text = "dwarfsign_clotharmor.m2", - }, - { - fileId = "197494", - value = "dwarfsign_cook.m2", - text = "dwarfsign_cook.m2", - }, - { - fileId = "197496", - value = "dwarfsign_daggers.m2", - text = "dwarfsign_daggers.m2", - }, - { - fileId = "197498", - value = "dwarfsign_drinks.m2", - text = "dwarfsign_drinks.m2", - }, - { - fileId = "197500", - value = "dwarfsign_enchanting.m2", - text = "dwarfsign_enchanting.m2", - }, - { - fileId = "197502", - value = "dwarfsign_fireworks.m2", - text = "dwarfsign_fireworks.m2", - }, - { - fileId = "197504", - value = "dwarfsign_firstaid.m2", - text = "dwarfsign_firstaid.m2", - }, - { - fileId = "197506", - value = "dwarfsign_fishing.m2", - text = "dwarfsign_fishing.m2", - }, - { - fileId = "197508", - value = "dwarfsign_fletcher.m2", - text = "dwarfsign_fletcher.m2", - }, - { - fileId = "197509", - value = "dwarfsign_generalgoods.m2", - text = "dwarfsign_generalgoods.m2", - }, - { - fileId = "197512", - value = "dwarfsign_gryphon.m2", - text = "dwarfsign_gryphon.m2", - }, - { - fileId = "197514", - value = "dwarfsign_gunsmith.m2", - text = "dwarfsign_gunsmith.m2", - }, - { - fileId = "197516", - value = "dwarfsign_herbalist.m2", - text = "dwarfsign_herbalist.m2", - }, - { - fileId = "197518", - value = "dwarfsign_inscribing.m2", - text = "dwarfsign_inscribing.m2", - }, - { - fileId = "197520", - value = "dwarfsign_leatherarmor.m2", - text = "dwarfsign_leatherarmor.m2", - }, - { - fileId = "197522", - value = "dwarfsign_lockpicking.m2", - text = "dwarfsign_lockpicking.m2", - }, - { - fileId = "197524", - value = "dwarfsign_maces.m2", - text = "dwarfsign_maces.m2", - }, - { - fileId = "197526", - value = "dwarfsign_magicshop.m2", - text = "dwarfsign_magicshop.m2", - }, - { - fileId = "197528", - value = "dwarfsign_mailarmor.m2", - text = "dwarfsign_mailarmor.m2", - }, - { - fileId = "197530", - value = "dwarfsign_meat.m2", - text = "dwarfsign_meat.m2", - }, - { - fileId = "197532", - value = "dwarfsign_miner.m2", - text = "dwarfsign_miner.m2", - }, - { - fileId = "197534", - value = "dwarfsign_misc.m2", - text = "dwarfsign_misc.m2", - }, - { - fileId = "197536", - value = "dwarfsign_staves.m2", - text = "dwarfsign_staves.m2", - }, - { - fileId = "197538", - value = "dwarfsign_swords.m2", - text = "dwarfsign_swords.m2", - }, - { - fileId = "197540", - value = "dwarfsign_tabard.m2", - text = "dwarfsign_tabard.m2", - }, - { - fileId = "197542", - value = "dwarfsign_tailor.m2", - text = "dwarfsign_tailor.m2", - }, - { - fileId = "197544", - value = "dwarfsign_tavern.m2", - text = "dwarfsign_tavern.m2", - }, - { - fileId = "197545", - value = "dwarfsign_weaponry.m2", - text = "dwarfsign_weaponry.m2", - }, - { - fileId = "197548", - value = "dwarfsign_winery.m2", - text = "dwarfsign_winery.m2", - }, - { - fileId = "197550", - value = "gnomesign_engineer.m2", - text = "gnomesign_engineer.m2", - }, - }, - value = "signs", - text = "signs", - }, - { - children = { - { - fileId = "197551", - value = "dwarvenstein01.m2", - text = "dwarvenstein01.m2", - }, - { - fileId = "197552", - value = "dwarvenstein02.m2", - text = "dwarvenstein02.m2", - }, - }, - value = "steins", - text = "steins", - }, - { - children = { - { - fileId = "197555", - value = "dwarventableaverage01.m2", - text = "dwarventableaverage01.m2", - }, - { - fileId = "197556", - value = "dwarventableaverage02.m2", - text = "dwarventableaverage02.m2", - }, - { - fileId = "197557", - value = "dwarventableaverage03.m2", - text = "dwarventableaverage03.m2", - }, - { - fileId = "197558", - value = "dwarventableaverage04.m2", - text = "dwarventableaverage04.m2", - }, - { - fileId = "197559", - value = "dwarventableaverage05.m2", - text = "dwarventableaverage05.m2", - }, - { - fileId = "197561", - value = "dwarventablelarge.m2", - text = "dwarventablelarge.m2", - }, - { - fileId = "197562", - value = "dwarventableornate01.m2", - text = "dwarventableornate01.m2", - }, - { - fileId = "197563", - value = "dwarventableornate02.m2", - text = "dwarventableornate02.m2", - }, - { - fileId = "197564", - value = "dwarventableornate03.m2", - text = "dwarventableornate03.m2", - }, - { - fileId = "197565", - value = "dwarventableornate04.m2", - text = "dwarventableornate04.m2", - }, - { - fileId = "197566", - value = "dwarventableornate05.m2", - text = "dwarventableornate05.m2", - }, - { - fileId = "197567", - value = "dwarventableornate06.m2", - text = "dwarventableornate06.m2", - }, - { - fileId = "197568", - value = "dwarventableornate07.m2", - text = "dwarventableornate07.m2", - }, - { - fileId = "197569", - value = "dwarventableornate08.m2", - text = "dwarventableornate08.m2", - }, - { - fileId = "197571", - value = "dwarventablesimple01.m2", - text = "dwarventablesimple01.m2", - }, - { - fileId = "197572", - value = "dwarventablesimple02.m2", - text = "dwarventablesimple02.m2", - }, - { - fileId = "197573", - value = "dwarventablesimple03.m2", - text = "dwarventablesimple03.m2", - }, - { - fileId = "197574", - value = "dwarventablesimple04.m2", - text = "dwarventablesimple04.m2", - }, - { - fileId = "197575", - value = "dwarventablesimple05.m2", - text = "dwarventablesimple05.m2", - }, - { - fileId = "197576", - value = "dwarventablesmall.m2", - text = "dwarventablesmall.m2", - }, - { - fileId = "197579", - value = "readingtable01.m2", - text = "readingtable01.m2", - }, - }, - value = "tables", - text = "tables", - }, - { - children = { - { - fileId = "197588", - value = "guntargetstand.m2", - text = "guntargetstand.m2", - }, - { - fileId = "197591", - value = "targetaxe01.m2", - text = "targetaxe01.m2", - }, - { - fileId = "197592", - value = "targetaxe02.m2", - text = "targetaxe02.m2", - }, - { - fileId = "197593", - value = "targetaxe03.m2", - text = "targetaxe03.m2", - }, - { - fileId = "197594", - value = "targethammer01.m2", - text = "targethammer01.m2", - }, - { - fileId = "197595", - value = "targethammer02.m2", - text = "targethammer02.m2", - }, - { - fileId = "197596", - value = "targethammer03.m2", - text = "targethammer03.m2", - }, - { - fileId = "197597", - value = "targetogre01.m2", - text = "targetogre01.m2", - }, - { - fileId = "197598", - value = "targetorc01.m2", - text = "targetorc01.m2", - }, - { - fileId = "197599", - value = "targetorc02.m2", - text = "targetorc02.m2", - }, - }, - value = "targets", - text = "targets", - }, - { - children = { - { - fileId = "197601", - value = "alekegfoot.m2", - text = "alekegfoot.m2", - }, - { - fileId = "197602", - value = "alekegs01.m2", - text = "alekegs01.m2", - }, - { - fileId = "197603", - value = "alekegsingle.m2", - text = "alekegsingle.m2", - }, - { - fileId = "197604", - value = "brewerytanks01.m2", - text = "brewerytanks01.m2", - }, - { - fileId = "197607", - value = "grainsacs01.m2", - text = "grainsacs01.m2", - }, - { - fileId = "197608", - value = "grainsacs02.m2", - text = "grainsacs02.m2", - }, - { - fileId = "197610", - value = "sink01.m2", - text = "sink01.m2", - }, - }, - value = "tavernstuff", - text = "tavernstuff", - }, - { - children = { - { - fileId = "197614", - value = "dwarventiling01.m2", - text = "dwarventiling01.m2", - }, - { - fileId = "197615", - value = "dwarventiling02.m2", - text = "dwarventiling02.m2", - }, - { - fileId = "197616", - value = "dwarventiling03.m2", - text = "dwarventiling03.m2", - }, - }, - value = "tilings", - text = "tilings", - }, - { - children = { - { - fileId = "197617", - value = "lunchbox01.m2", - text = "lunchbox01.m2", - }, - { - fileId = "197618", - value = "mallet01.m2", - text = "mallet01.m2", - }, - { - fileId = "197619", - value = "screwdriver01.m2", - text = "screwdriver01.m2", - }, - { - fileId = "197621", - value = "toolbox01.m2", - text = "toolbox01.m2", - }, - { - fileId = "197622", - value = "wrench01.m2", - text = "wrench01.m2", - }, - }, - value = "tools", - text = "tools", - }, - { - children = { - { - fileId = "197626", - value = "wardrobedwarvenaverage01.m2", - text = "wardrobedwarvenaverage01.m2", - }, - { - fileId = "197627", - value = "wardrobedwarvenaverage02.m2", - text = "wardrobedwarvenaverage02.m2", - }, - { - fileId = "197628", - value = "wardrobedwarvenaverage03.m2", - text = "wardrobedwarvenaverage03.m2", - }, - { - fileId = "197629", - value = "wardrobedwarvenornate01.m2", - text = "wardrobedwarvenornate01.m2", - }, - { - fileId = "197630", - value = "wardrobedwarvenornate02.m2", - text = "wardrobedwarvenornate02.m2", - }, - { - fileId = "197631", - value = "wardrobedwarvenornate03.m2", - text = "wardrobedwarvenornate03.m2", - }, - { - fileId = "197632", - value = "wardrobedwarvensimple01.m2", - text = "wardrobedwarvensimple01.m2", - }, - { - fileId = "197633", - value = "wardrobedwarvensimple02.m2", - text = "wardrobedwarvensimple02.m2", - }, - { - fileId = "197634", - value = "wardrobedwarvensimple03.m2", - text = "wardrobedwarvensimple03.m2", - }, - }, - value = "wardrobe", - text = "wardrobe", - }, - }, - value = "passive doodads", - text = "passive doodads", - }, - }, - value = "dwarf", - text = "dwarf", - }, - { - children = { - { - children = { - { - children = { - { - fileId = "197635", - value = "gnomemachine.m2", - text = "gnomemachine.m2", - }, - }, - value = "gnomemachine", - text = "gnomemachine", - }, - }, - value = "activedoodads", - text = "activedoodads", - }, - { - children = { - { - children = { - { - fileId = "197640", - value = "gnomebucket01.m2", - text = "gnomebucket01.m2", - }, - { - fileId = "197641", - value = "gnomebucket02.m2", - text = "gnomebucket02.m2", - }, - { - fileId = "197642", - value = "gnomebucket03.m2", - text = "gnomebucket03.m2", - }, - { - fileId = "197643", - value = "gnomebucket04.m2", - text = "gnomebucket04.m2", - }, - { - fileId = "197644", - value = "gnomebucket05.m2", - text = "gnomebucket05.m2", - }, - }, - value = "buckets", - text = "buckets", - }, - { - children = { - { - fileId = "197646", - value = "gnomeelevatorcar01.m2", - text = "gnomeelevatorcar01.m2", - }, - { - fileId = "197647", - value = "gnomeelevatorcar02.m2", - text = "gnomeelevatorcar02.m2", - }, - { - fileId = "197648", - value = "gnomeelevatorcar03.m2", - text = "gnomeelevatorcar03.m2", - }, - { - fileId = "197649", - value = "gnomeelevatorcar05.m2", - text = "gnomeelevatorcar05.m2", - }, - }, - value = "elevatorparts", - text = "elevatorparts", - }, - { - children = { - { - fileId = "197653", - value = "gnomebed01.m2", - text = "gnomebed01.m2", - }, - { - fileId = "197654", - value = "gnomebed02.m2", - text = "gnomebed02.m2", - }, - { - fileId = "197655", - value = "gnomebed03.m2", - text = "gnomebed03.m2", - }, - { - fileId = "197656", - value = "gnomebedslanted01.m2", - text = "gnomebedslanted01.m2", - }, - { - fileId = "197657", - value = "gnomebenchsittable.m2", - text = "gnomebenchsittable.m2", - }, - { - fileId = "197658", - value = "gnomechair01.m2", - text = "gnomechair01.m2", - }, - { - fileId = "197659", - value = "gnomechair02.m2", - text = "gnomechair02.m2", - }, - { - fileId = "197660", - value = "gnomechair03.m2", - text = "gnomechair03.m2", - }, - { - fileId = "197661", - value = "gnometable01.m2", - text = "gnometable01.m2", - }, - { - fileId = "197662", - value = "gnometable02.m2", - text = "gnometable02.m2", - }, - { - fileId = "197663", - value = "gnometable03.m2", - text = "gnometable03.m2", - }, - { - fileId = "197664", - value = "gnometable04.m2", - text = "gnometable04.m2", - }, - { - fileId = "197665", - value = "gnometable05.m2", - text = "gnometable05.m2", - }, - }, - value = "furniture", - text = "furniture", - }, - { - children = { - { - fileId = "197671", - value = "gnomebiggear.m2", - text = "gnomebiggear.m2", - }, - { - fileId = "197672", - value = "gnomegauge01.m2", - text = "gnomegauge01.m2", - }, - { - fileId = "197673", - value = "gnomelever.m2", - text = "gnomelever.m2", - }, - { - fileId = "197674", - value = "gnomemcwheel.m2", - text = "gnomemcwheel.m2", - }, - { - fileId = "197675", - value = "gnomesmallgear.m2", - text = "gnomesmallgear.m2", - }, - }, - value = "gears&levers", - text = "gears&levers", - }, - { - children = { - { - fileId = "197678", - value = "gnomemachine01.m2", - text = "gnomemachine01.m2", - }, - { - fileId = "197679", - value = "gnomemachine02.m2", - text = "gnomemachine02.m2", - }, - { - fileId = "197680", - value = "gnomemachine03.m2", - text = "gnomemachine03.m2", - }, - { - fileId = "197681", - value = "gnomemachine04.m2", - text = "gnomemachine04.m2", - }, - { - fileId = "197682", - value = "gnomemachine05.m2", - text = "gnomemachine05.m2", - }, - { - fileId = "197683", - value = "gnomemachine06.m2", - text = "gnomemachine06.m2", - }, - { - fileId = "197684", - value = "gnomemachinebroken03.m2", - text = "gnomemachinebroken03.m2", - }, - { - fileId = "197685", - value = "gnomemachinebroken04.m2", - text = "gnomemachinebroken04.m2", - }, - { - fileId = "197686", - value = "gnomemachinebroken05.m2", - text = "gnomemachinebroken05.m2", - }, - { - fileId = "197687", - value = "gnomesubwayglass.m2", - text = "gnomesubwayglass.m2", - }, - { - fileId = "197688", - value = "gnomesubwaysign.m2", - text = "gnomesubwaysign.m2", - }, - }, - value = "gnomemachine", - text = "gnomemachine", - }, - { - children = { - { - fileId = "197700", - value = "gnomehutelevator.m2", - text = "gnomehutelevator.m2", - }, - { - fileId = "197701", - value = "gnomehutmachinery.m2", - text = "gnomehutmachinery.m2", - }, - }, - value = "gnomemachinery", - text = "gnomemachinery", - }, - { - children = { - { - fileId = "197704", - value = "gnomeroboarm.m2", - text = "gnomeroboarm.m2", - }, - }, - value = "gnomeroboarm", - text = "gnomeroboarm", - }, - { - children = { - { - fileId = "197705", - value = "crashedgnomerc.m2", - text = "crashedgnomerc.m2", - }, - { - fileId = "197707", - value = "gnomerocketcart.m2", - text = "gnomerocketcart.m2", - }, - }, - value = "gnomerocketcarts", - text = "gnomerocketcarts", - }, - { - children = { - { - fileId = "197708", - value = "gnomewalladdon01.m2", - text = "gnomewalladdon01.m2", - }, - }, - value = "gnomewalladdons", - text = "gnomewalladdons", - }, - { - children = { - { - fileId = "197709", - value = "gnomehazardlight01.m2", - text = "gnomehazardlight01.m2", - }, - { - fileId = "197710", - value = "gnomehazardlight02.m2", - text = "gnomehazardlight02.m2", - }, - { - fileId = "197711", - value = "gnomehazardlightred.m2", - text = "gnomehazardlightred.m2", - }, - }, - value = "hazardlights", - text = "hazardlights", - }, - { - children = { - { - fileId = "197716", - value = "gnomemaintenancelight01.m2", - text = "gnomemaintenancelight01.m2", - }, - { - fileId = "197717", - value = "gnomemaintenancelight02.m2", - text = "gnomemaintenancelight02.m2", - }, - { - fileId = "197718", - value = "gnomestructuralspotlight01.m2", - text = "gnomestructuralspotlight01.m2", - }, - { - fileId = "197719", - value = "gnomestructuralspotlight02.m2", - text = "gnomestructuralspotlight02.m2", - }, - }, - value = "lights", - text = "lights", - }, - { - children = { - { - fileId = "197722", - value = "gnomescrew01.m2", - text = "gnomescrew01.m2", - }, - { - fileId = "197723", - value = "gnomescrew02.m2", - text = "gnomescrew02.m2", - }, - { - fileId = "197724", - value = "gnomescrew03.m2", - text = "gnomescrew03.m2", - }, - { - fileId = "197725", - value = "gnomescrew04.m2", - text = "gnomescrew04.m2", - }, - { - fileId = "197726", - value = "gnomescrew05.m2", - text = "gnomescrew05.m2", - }, - { - fileId = "197727", - value = "gnomescrew06.m2", - text = "gnomescrew06.m2", - }, - { - fileId = "197728", - value = "gnomescrew07.m2", - text = "gnomescrew07.m2", - }, - { - fileId = "197729", - value = "gnomescrew08.m2", - text = "gnomescrew08.m2", - }, - { - fileId = "197730", - value = "gnomescrew09.m2", - text = "gnomescrew09.m2", - }, - { - fileId = "197731", - value = "gnomesteelplate01.m2", - text = "gnomesteelplate01.m2", - }, - { - fileId = "197732", - value = "gnomesteelplate02.m2", - text = "gnomesteelplate02.m2", - }, - { - fileId = "197733", - value = "gnomesteelplate03.m2", - text = "gnomesteelplate03.m2", - }, - { - fileId = "197734", - value = "gnomesteelplate04.m2", - text = "gnomesteelplate04.m2", - }, - { - fileId = "197735", - value = "gnomesteelplate05.m2", - text = "gnomesteelplate05.m2", - }, - }, - value = "parts", - text = "parts", - }, - { - children = { - { - fileId = "197736", - value = "gnomepipe01.m2", - text = "gnomepipe01.m2", - }, - { - fileId = "197737", - value = "gnomepipe02.m2", - text = "gnomepipe02.m2", - }, - { - fileId = "197738", - value = "gnomepipe03.m2", - text = "gnomepipe03.m2", - }, - { - fileId = "197739", - value = "gnomepipe04.m2", - text = "gnomepipe04.m2", - }, - }, - value = "pipes", - text = "pipes", - }, - { - children = { - { - fileId = "197740", - value = "gnomesignpost01.m2", - text = "gnomesignpost01.m2", - }, - { - fileId = "197741", - value = "gnomesignpost02.m2", - text = "gnomesignpost02.m2", - }, - { - fileId = "197742", - value = "gnomestreetsign01.m2", - text = "gnomestreetsign01.m2", - }, - }, - value = "signposts", - text = "signposts", - }, - { - children = { - { - fileId = "197745", - value = "gnomespidertank01.m2", - text = "gnomespidertank01.m2", - }, - }, - value = "spidertank", - text = "spidertank", - }, - { - children = { - { - fileId = "197747", - value = "gnomewhistle02.m2", - text = "gnomewhistle02.m2", - }, - { - fileId = "197748", - value = "gnomewhistle03.m2", - text = "gnomewhistle03.m2", - }, - { - fileId = "197749", - value = "gnomewhistle04.m2", - text = "gnomewhistle04.m2", - }, - }, - value = "steamwhistles", - text = "steamwhistles", - }, - { - children = { - { - fileId = "197751", - value = "subwaycar.m2", - text = "subwaycar.m2", - }, - { - fileId = "197752", - value = "subwayramp.m2", - text = "subwayramp.m2", - }, - { - fileId = "197753", - value = "underwaterlightshaft.m2", - text = "underwaterlightshaft.m2", - }, - }, - value = "subway", - text = "subway", - }, - { - children = { - { - fileId = "197754", - value = "gnometool01.m2", - text = "gnometool01.m2", - }, - { - fileId = "197755", - value = "gnometool02.m2", - text = "gnometool02.m2", - }, - { - fileId = "197756", - value = "gnometool03.m2", - text = "gnometool03.m2", - }, - { - fileId = "197757", - value = "gnometool04.m2", - text = "gnometool04.m2", - }, - { - fileId = "197758", - value = "gnometool05.m2", - text = "gnometool05.m2", - }, - { - fileId = "197759", - value = "gnometool06.m2", - text = "gnometool06.m2", - }, - }, - value = "tools", - text = "tools", - }, - }, - value = "passive doodads", - text = "passive doodads", - }, - }, - value = "gnome", - text = "gnome", - }, - { - children = { - { - children = { - { - children = { - { - fileId = "197760", - value = "goblincontrolpanel.m2", - text = "goblincontrolpanel.m2", - }, - }, - value = "controlpanel", - text = "controlpanel", - }, - { - children = { - { - fileId = "197766", - value = "goblinhutbottles.m2", - text = "goblinhutbottles.m2", - }, - { - fileId = "197767", - value = "goblinmachinery.m2", - text = "goblinmachinery.m2", - }, - { - fileId = "197768", - value = "goblinweathervane.m2", - text = "goblinweathervane.m2", - }, - }, - value = "goblinmachinery", - text = "goblinmachinery", - }, - { - children = { - { - fileId = "197777", - value = "crashedgoblinrc.m2", - text = "crashedgoblinrc.m2", - }, - { - fileId = "197779", - value = "goblinrocketcart01.m2", - text = "goblinrocketcart01.m2", - }, - { - fileId = "197780", - value = "goblinrocketcart02.m2", - text = "goblinrocketcart02.m2", - }, - { - fileId = "197781", - value = "goblinrocketcart03.m2", - text = "goblinrocketcart03.m2", - }, - { - fileId = "197782", - value = "goblinrocketcart04.m2", - text = "goblinrocketcart04.m2", - }, - { - fileId = "197783", - value = "goblinrocketcart05.m2", - text = "goblinrocketcart05.m2", - }, - { - fileId = "197784", - value = "goblinrocketcart_rc.m2", - text = "goblinrocketcart_rc.m2", - }, - }, - value = "goblinrocketcarts", - text = "goblinrocketcarts", - }, - { - children = { - { - fileId = "197789", - value = "goblinshreddersuit01.m2", - text = "goblinshreddersuit01.m2", - }, - { - fileId = "197790", - value = "goblinshreddersuit02.m2", - text = "goblinshreddersuit02.m2", - }, - }, - value = "goblinshreddersuit", - text = "goblinshreddersuit", - }, - { - children = { - { - fileId = "197791", - value = "goblintent01.m2", - text = "goblintent01.m2", - }, - { - fileId = "197792", - value = "goblintent02.m2", - text = "goblintent02.m2", - }, - { - fileId = "197793", - value = "goblintent03.m2", - text = "goblintent03.m2", - }, - { - fileId = "197794", - value = "goblintent04.m2", - text = "goblintent04.m2", - }, - { - fileId = "197795", - value = "goblintent05.m2", - text = "goblintent05.m2", - }, - { - fileId = "197796", - value = "goblintent06.m2", - text = "goblintent06.m2", - }, - { - fileId = "197797", - value = "goblintent07.m2", - text = "goblintent07.m2", - }, - }, - value = "goblintents", - text = "goblintents", - }, - { - children = { - { - fileId = "197799", - value = "goblinwagontnt_01.m2", - text = "goblinwagontnt_01.m2", - }, - }, - value = "goblintntwagon", - text = "goblintntwagon", - }, - { - children = { - { - fileId = "197802", - value = "go_rocketship.m2", - text = "go_rocketship.m2", - }, - }, - value = "rocketship", - text = "rocketship", - }, - }, - value = "passivedoodads", - text = "passivedoodads", - }, - }, - value = "goblin", - text = "goblin", - }, - { - children = { - { - children = { - { - children = { - { - fileId = "197803", - value = "deadminedoor01.m2", - text = "deadminedoor01.m2", - }, - { - fileId = "197804", - value = "deadminedoor02.m2", - text = "deadminedoor02.m2", - }, - { - fileId = "197807", - value = "farmdoor01test.m2", - text = "farmdoor01test.m2", - }, - { - fileId = "197810", - value = "genericwroughtgate01.m2", - text = "genericwroughtgate01.m2", - }, - { - fileId = "197814", - value = "monestarybossdoor.m2", - text = "monestarybossdoor.m2", - }, - { - fileId = "197815", - value = "monestaryhalldoor.m2", - text = "monestaryhalldoor.m2", - }, - { - fileId = "197816", - value = "monestarysecretdoor.m2", - text = "monestarysecretdoor.m2", - }, - { - fileId = "197817", - value = "portcullisactive.m2", - text = "portcullisactive.m2", - }, - { - fileId = "197819", - value = "scarletcathedraldoor.m2", - text = "scarletcathedraldoor.m2", - }, - { - fileId = "197820", - value = "shadowfangdoor01.m2", - text = "shadowfangdoor01.m2", - }, - { - fileId = "197821", - value = "shadowfangdoor02.m2", - text = "shadowfangdoor02.m2", - }, - { - fileId = "197823", - value = "undeadwroughtgate01.m2", - text = "undeadwroughtgate01.m2", - }, - { - fileId = "197825", - value = "wroughtirondoor.m2", - text = "wroughtirondoor.m2", - }, - { - fileId = "197827", - value = "wroughtirondoor02.m2", - text = "wroughtirondoor02.m2", - }, - }, - value = "doors", - text = "doors", - }, - { - children = { - { - fileId = "197829", - value = "wizardssphere.m2", - text = "wizardssphere.m2", - }, - }, - value = "shadowfang", - text = "shadowfang", - }, - }, - value = "activedoodads", - text = "activedoodads", - }, - { - children = { - { - children = { - { - fileId = "197831", - value = "altar01.m2", - text = "altar01.m2", - }, - { - fileId = "197832", - value = "altar02.m2", - text = "altar02.m2", - }, - { - fileId = "197835", - value = "generalaltar01.m2", - text = "generalaltar01.m2", - }, - }, - value = "altars", - text = "altars", - }, - { - children = { - { - fileId = "197836", - value = "deadmineanchor.m2", - text = "deadmineanchor.m2", - }, - }, - value = "anchor", - text = "anchor", - }, - { - children = { - { - fileId = "197838", - value = "bootyanchor.m2", - text = "bootyanchor.m2", - }, - }, - value = "anchors", - text = "anchors", - }, - { - children = { - { - fileId = "197841", - value = "duskwoodboarhead01.m2", - text = "duskwoodboarhead01.m2", - }, - { - fileId = "197842", - value = "duskwooddeerhead01.m2", - text = "duskwooddeerhead01.m2", - }, - { - fileId = "197845", - value = "stuffedbear.m2", - text = "stuffedbear.m2", - }, - { - fileId = "197846", - value = "stuffedfrenzy.m2", - text = "stuffedfrenzy.m2", - }, - { - fileId = "197847", - value = "stuffedtallstrider.m2", - text = "stuffedtallstrider.m2", - }, - }, - value = "animalheads", - text = "animalheads", - }, - { - children = { - { - fileId = "197849", - value = "stormwindarcherytarget01.m2", - text = "stormwindarcherytarget01.m2", - }, - }, - value = "archerytargets", - text = "archerytargets", - }, - { - children = { - { - fileId = "197851", - value = "gardenarch.m2", - text = "gardenarch.m2", - }, - { - fileId = "197852", - value = "gardenarchleftpost.m2", - text = "gardenarchleftpost.m2", - }, - { - fileId = "197853", - value = "gardenarchrightpost.m2", - text = "gardenarchrightpost.m2", - }, - { - fileId = "197854", - value = "gardenarchtop.m2", - text = "gardenarchtop.m2", - }, - { - fileId = "197858", - value = "trellis01.m2", - text = "trellis01.m2", - }, - { - fileId = "197859", - value = "trellis02.m2", - text = "trellis02.m2", - }, - }, - value = "arches", - text = "arches", - }, - { - children = { - { - fileId = "197860", - value = "armorbracerblue.m2", - text = "armorbracerblue.m2", - }, - { - fileId = "197861", - value = "armorbracergold.m2", - text = "armorbracergold.m2", - }, - { - fileId = "197862", - value = "armorbracersilver.m2", - text = "armorbracersilver.m2", - }, - { - fileId = "197863", - value = "armorbracertrim.m2", - text = "armorbracertrim.m2", - }, - { - fileId = "197864", - value = "armorbreastplateblue.m2", - text = "armorbreastplateblue.m2", - }, - { - fileId = "197865", - value = "armorbreastplategold.m2", - text = "armorbreastplategold.m2", - }, - { - fileId = "197866", - value = "armorbreastplategreen.m2", - text = "armorbreastplategreen.m2", - }, - { - fileId = "197867", - value = "armorbreastplatetrim.m2", - text = "armorbreastplatetrim.m2", - }, - { - fileId = "197869", - value = "armorhelmbluevisordown.m2", - text = "armorhelmbluevisordown.m2", - }, - { - fileId = "197870", - value = "armorhelmbluevisorup.m2", - text = "armorhelmbluevisorup.m2", - }, - { - fileId = "197871", - value = "armorhelmgold.m2", - text = "armorhelmgold.m2", - }, - { - fileId = "197872", - value = "armorhelmgreen.m2", - text = "armorhelmgreen.m2", - }, - { - fileId = "197873", - value = "armorhelmgreenflat.m2", - text = "armorhelmgreenflat.m2", - }, - { - fileId = "197874", - value = "armorhelmtrim.m2", - text = "armorhelmtrim.m2", - }, - { - fileId = "197875", - value = "armorhelmtrimflat.m2", - text = "armorhelmtrimflat.m2", - }, - { - fileId = "197876", - value = "armorhelmvisorblue.m2", - text = "armorhelmvisorblue.m2", - }, - { - fileId = "197877", - value = "armorleatherbracerblack.m2", - text = "armorleatherbracerblack.m2", - }, - { - fileId = "197878", - value = "armorleatherbracerbrown.m2", - text = "armorleatherbracerbrown.m2", - }, - { - fileId = "197879", - value = "armorleatherbracerdark.m2", - text = "armorleatherbracerdark.m2", - }, - { - fileId = "197880", - value = "armorleatherbracerorange.m2", - text = "armorleatherbracerorange.m2", - }, - { - fileId = "197881", - value = "armorleatherhelmblack.m2", - text = "armorleatherhelmblack.m2", - }, - { - fileId = "197882", - value = "armorleatherhelmblackflat.m2", - text = "armorleatherhelmblackflat.m2", - }, - { - fileId = "197883", - value = "armorleatherhelmbrown.m2", - text = "armorleatherhelmbrown.m2", - }, - { - fileId = "197884", - value = "armorleatherhelmbrownflat.m2", - text = "armorleatherhelmbrownflat.m2", - }, - { - fileId = "197885", - value = "armorleatherlegplateblack.m2", - text = "armorleatherlegplateblack.m2", - }, - { - fileId = "197886", - value = "armorleatherlegplatebrown.m2", - text = "armorleatherlegplatebrown.m2", - }, - { - fileId = "197887", - value = "armorleatherlegplatedark.m2", - text = "armorleatherlegplatedark.m2", - }, - { - fileId = "197888", - value = "armorleatherlegplateorange.m2", - text = "armorleatherlegplateorange.m2", - }, - { - fileId = "197889", - value = "armorleathershirtblack.m2", - text = "armorleathershirtblack.m2", - }, - { - fileId = "197890", - value = "armorleathershirtbrown.m2", - text = "armorleathershirtbrown.m2", - }, - { - fileId = "197891", - value = "armorleathershirtdark.m2", - text = "armorleathershirtdark.m2", - }, - { - fileId = "197892", - value = "armorleathershirtorange.m2", - text = "armorleathershirtorange.m2", - }, - { - fileId = "197893", - value = "armorleathershoulderblack.m2", - text = "armorleathershoulderblack.m2", - }, - { - fileId = "197894", - value = "armorleathershoulderdark.m2", - text = "armorleathershoulderdark.m2", - }, - { - fileId = "197895", - value = "armorleathershoulderorange.m2", - text = "armorleathershoulderorange.m2", - }, - { - fileId = "197896", - value = "armorlegplateblue.m2", - text = "armorlegplateblue.m2", - }, - { - fileId = "197897", - value = "armorlegplategold.m2", - text = "armorlegplategold.m2", - }, - { - fileId = "197898", - value = "armorlegplatesilver.m2", - text = "armorlegplatesilver.m2", - }, - { - fileId = "197899", - value = "armorlegplatetrim.m2", - text = "armorlegplatetrim.m2", - }, - { - fileId = "197900", - value = "armormailhangingblue.m2", - text = "armormailhangingblue.m2", - }, - { - fileId = "197901", - value = "armormailhangingbluelong.m2", - text = "armormailhangingbluelong.m2", - }, - { - fileId = "197902", - value = "armormailhanginggold.m2", - text = "armormailhanginggold.m2", - }, - { - fileId = "197903", - value = "armormailhanginggoldlong.m2", - text = "armormailhanginggoldlong.m2", - }, - { - fileId = "197904", - value = "armormailhangingred.m2", - text = "armormailhangingred.m2", - }, - { - fileId = "197905", - value = "armormailhangingredlong.m2", - text = "armormailhangingredlong.m2", - }, - { - fileId = "197906", - value = "armorshoulderblue.m2", - text = "armorshoulderblue.m2", - }, - { - fileId = "197907", - value = "armorshouldergold.m2", - text = "armorshouldergold.m2", - }, - { - fileId = "197908", - value = "armorshouldersilver.m2", - text = "armorshouldersilver.m2", - }, - { - fileId = "197909", - value = "armorshouldertrim.m2", - text = "armorshouldertrim.m2", - }, - { - fileId = "197910", - value = "armorstand.m2", - text = "armorstand.m2", - }, - { - fileId = "197911", - value = "armorstandmailblue.m2", - text = "armorstandmailblue.m2", - }, - { - fileId = "197912", - value = "armorstandmailcoifblue.m2", - text = "armorstandmailcoifblue.m2", - }, - }, - value = "armor", - text = "armor", - }, - { - children = { - { - fileId = "197927", - value = "painting05.m2", - text = "painting05.m2", - }, - { - fileId = "197928", - value = "painting06.m2", - text = "painting06.m2", - }, - { - fileId = "197929", - value = "painting07.m2", - text = "painting07.m2", - }, - { - fileId = "197930", - value = "painting08.m2", - text = "painting08.m2", - }, - { - fileId = "197931", - value = "painting09.m2", - text = "painting09.m2", - }, - { - fileId = "197932", - value = "painting10.m2", - text = "painting10.m2", - }, - { - fileId = "197933", - value = "painting11.m2", - text = "painting11.m2", - }, - { - fileId = "197934", - value = "painting12.m2", - text = "painting12.m2", - }, - { - fileId = "197935", - value = "painting13.m2", - text = "painting13.m2", - }, - { - fileId = "197936", - value = "painting14.m2", - text = "painting14.m2", - }, - { - fileId = "197937", - value = "painting15.m2", - text = "painting15.m2", - }, - { - fileId = "197939", - value = "stormwindpainting01.m2", - text = "stormwindpainting01.m2", - }, - { - fileId = "197940", - value = "stormwindpainting02.m2", - text = "stormwindpainting02.m2", - }, - { - fileId = "197941", - value = "stormwindpainting03.m2", - text = "stormwindpainting03.m2", - }, - { - fileId = "197942", - value = "stormwindpainting04.m2", - text = "stormwindpainting04.m2", - }, - { - fileId = "197943", - value = "stormwindpainting05.m2", - text = "stormwindpainting05.m2", - }, - }, - value = "artwork", - text = "artwork", - }, - { - children = { - { - fileId = "197946", - value = "ballandchain01.m2", - text = "ballandchain01.m2", - }, - }, - value = "ballandchain", - text = "ballandchain", - }, - { - children = { - { - fileId = "197948", - value = "ballistabow01.m2", - text = "ballistabow01.m2", - }, - { - fileId = "197949", - value = "ballistaframe01.m2", - text = "ballistaframe01.m2", - }, - { - fileId = "197950", - value = "ballistamissle01.m2", - text = "ballistamissle01.m2", - }, - { - fileId = "197951", - value = "ballistawheel01.m2", - text = "ballistawheel01.m2", - }, - }, - value = "ballistaruins", - text = "ballistaruins", - }, - { - children = { - { - fileId = "197953", - value = "allianceveteranbanner01.m2", - text = "allianceveteranbanner01.m2", - }, - { - fileId = "197955", - value = "allianceveteranbanner02.m2", - text = "allianceveteranbanner02.m2", - }, - { - fileId = "197956", - value = "allianceveteranbanner03.m2", - text = "allianceveteranbanner03.m2", - }, - { - fileId = "197957", - value = "allianceveteranbanner04.m2", - text = "allianceveteranbanner04.m2", - }, - { - fileId = "197959", - value = "bannerargentdawn.m2", - text = "bannerargentdawn.m2", - }, - { - fileId = "197961", - value = "bluelorderonbanner.m2", - text = "bluelorderonbanner.m2", - }, - { - fileId = "197962", - value = "crimsonbanner01.m2", - text = "crimsonbanner01.m2", - }, - { - fileId = "197964", - value = "durnholdebanner01.m2", - text = "durnholdebanner01.m2", - }, - { - fileId = "197965", - value = "durnholdebanner02.m2", - text = "durnholdebanner02.m2", - }, - { - fileId = "197966", - value = "durnholdebannernew.m2", - text = "durnholdebannernew.m2", - }, - { - fileId = "197968", - value = "dwarvenbanner01.m2", - text = "dwarvenbanner01.m2", - }, - { - fileId = "197971", - value = "holybanner01.m2", - text = "holybanner01.m2", - }, - { - fileId = "197973", - value = "kultirasbanner01.m2", - text = "kultirasbanner01.m2", - }, - { - fileId = "197974", - value = "kultirasbanner02.m2", - text = "kultirasbanner02.m2", - }, - { - fileId = "197977", - value = "magicbanner01.m2", - text = "magicbanner01.m2", - }, - { - fileId = "197979", - value = "nightelf01.m2", - text = "nightelf01.m2", - }, - { - fileId = "197982", - value = "scarletbanner01.m2", - text = "scarletbanner01.m2", - }, - { - fileId = "197986", - value = "scarletbanner02.m2", - text = "scarletbanner02.m2", - }, - { - fileId = "197987", - value = "scarletbanner03.m2", - text = "scarletbanner03.m2", - }, - { - fileId = "197988", - value = "scarletbannerclean.m2", - text = "scarletbannerclean.m2", - }, - { - fileId = "197989", - value = "scarletbannerlong.m2", - text = "scarletbannerlong.m2", - }, - { - fileId = "197991", - value = "shadowfangbanner01.m2", - text = "shadowfangbanner01.m2", - }, - { - fileId = "197992", - value = "shadowfangbanner02.m2", - text = "shadowfangbanner02.m2", - }, - { - fileId = "197995", - value = "stormwindgriffonbanner01.m2", - text = "stormwindgriffonbanner01.m2", - }, - { - fileId = "197996", - value = "stormwindlionbanner.m2", - text = "stormwindlionbanner.m2", - }, - { - fileId = "197997", - value = "stormwindmagebanner01.m2", - text = "stormwindmagebanner01.m2", - }, - { - fileId = "198000", - value = "warriorbanner01.m2", - text = "warriorbanner01.m2", - }, - }, - value = "banners", - text = "banners", - }, - { - children = { - { - fileId = "198001", - value = "bunkbed01.m2", - text = "bunkbed01.m2", - }, - { - fileId = "198002", - value = "duskwoodbed.m2", - text = "duskwoodbed.m2", - }, - }, - value = "beds", - text = "beds", - }, - { - children = { - { - fileId = "198004", - value = "beerkeg01.m2", - text = "beerkeg01.m2", - }, - { - fileId = "198005", - value = "beerkeg01_nocollide.m2", - text = "beerkeg01_nocollide.m2", - }, - { - fileId = "198006", - value = "beerkeg02.m2", - text = "beerkeg02.m2", - }, - }, - value = "beerkegs", - text = "beerkegs", - }, - { - children = { - { - fileId = "198008", - value = "bellows.m2", - text = "bellows.m2", - }, - { - fileId = "198009", - value = "duskwoodbellows.m2", - text = "duskwoodbellows.m2", - }, - }, - value = "bellows", - text = "bellows", - }, - { - children = { - { - fileId = "198011", - value = "duskwoodbench.m2", - text = "duskwoodbench.m2", - }, - { - fileId = "198012", - value = "innbench.m2", - text = "innbench.m2", - }, - { - fileId = "198013", - value = "shadowfangbench01.m2", - text = "shadowfangbench01.m2", - }, - { - fileId = "198014", - value = "shadowfangbench02.m2", - text = "shadowfangbench02.m2", - }, - { - fileId = "198015", - value = "stormwindbench01.m2", - text = "stormwindbench01.m2", - }, - }, - value = "benches", - text = "benches", - }, - { - children = { - { - fileId = "198016", - value = "booklarge01.m2", - text = "booklarge01.m2", - }, - { - fileId = "198017", - value = "booklarge02.m2", - text = "booklarge02.m2", - }, - { - fileId = "198018", - value = "booklarge03.m2", - text = "booklarge03.m2", - }, - { - fileId = "198019", - value = "booklargeopen01.m2", - text = "booklargeopen01.m2", - }, - { - fileId = "198020", - value = "booklargeopen02.m2", - text = "booklargeopen02.m2", - }, - { - fileId = "198021", - value = "booklargeopen03.m2", - text = "booklargeopen03.m2", - }, - { - fileId = "198022", - value = "bookmedium01.m2", - text = "bookmedium01.m2", - }, - { - fileId = "198023", - value = "bookmedium02.m2", - text = "bookmedium02.m2", - }, - { - fileId = "198024", - value = "bookmedium03.m2", - text = "bookmedium03.m2", - }, - { - fileId = "198025", - value = "bookmedium04.m2", - text = "bookmedium04.m2", - }, - { - fileId = "198026", - value = "bookmedium05.m2", - text = "bookmedium05.m2", - }, - { - fileId = "198027", - value = "bookmedium06.m2", - text = "bookmedium06.m2", - }, - { - fileId = "198028", - value = "bookmedium07.m2", - text = "bookmedium07.m2", - }, - { - fileId = "198029", - value = "bookmediumopen01.m2", - text = "bookmediumopen01.m2", - }, - { - fileId = "198030", - value = "bookmediumopen02.m2", - text = "bookmediumopen02.m2", - }, - { - fileId = "198031", - value = "bookmediumopen03.m2", - text = "bookmediumopen03.m2", - }, - { - fileId = "198032", - value = "bookmediumopen04.m2", - text = "bookmediumopen04.m2", - }, - { - fileId = "198033", - value = "bookmediumopen05.m2", - text = "bookmediumopen05.m2", - }, - { - fileId = "198035", - value = "booksmall01.m2", - text = "booksmall01.m2", - }, - { - fileId = "198036", - value = "booksmall02.m2", - text = "booksmall02.m2", - }, - { - fileId = "198037", - value = "booksmall03.m2", - text = "booksmall03.m2", - }, - { - fileId = "198038", - value = "booksmall04.m2", - text = "booksmall04.m2", - }, - { - fileId = "198039", - value = "booksmall05.m2", - text = "booksmall05.m2", - }, - { - fileId = "198040", - value = "booksmallopen01.m2", - text = "booksmallopen01.m2", - }, - { - fileId = "198041", - value = "booksmallopen02.m2", - text = "booksmallopen02.m2", - }, - { - fileId = "198042", - value = "booksmallopen03.m2", - text = "booksmallopen03.m2", - }, - { - fileId = "198043", - value = "booksmallopen04.m2", - text = "booksmallopen04.m2", - }, - { - fileId = "198044", - value = "booksmallopen05.m2", - text = "booksmallopen05.m2", - }, - { - fileId = "198046", - value = "generalbook01.m2", - text = "generalbook01.m2", - }, - }, - value = "books", - text = "books", - }, - { - children = { - { - fileId = "198047", - value = "abbeyshelf01.m2", - text = "abbeyshelf01.m2", - }, - { - fileId = "198048", - value = "abbeyshelf01_unselectable.m2", - text = "abbeyshelf01_unselectable.m2", - }, - { - fileId = "198049", - value = "abbeyshelf02.m2", - text = "abbeyshelf02.m2", - }, - { - fileId = "198050", - value = "abbeyshelf02_unselectable.m2", - text = "abbeyshelf02_unselectable.m2", - }, - { - fileId = "198052", - value = "duskwoodbookshelf01.m2", - text = "duskwoodbookshelf01.m2", - }, - { - fileId = "198053", - value = "duskwoodbookshelf02.m2", - text = "duskwoodbookshelf02.m2", - }, - { - fileId = "198054", - value = "duskwoodbookshelf03.m2", - text = "duskwoodbookshelf03.m2", - }, - }, - value = "bookshelves", - text = "bookshelves", - }, - { - children = { - { - fileId = "198055", - value = "generalbookstackshort01.m2", - text = "generalbookstackshort01.m2", - }, - { - fileId = "198056", - value = "generalbookstacktall01.m2", - text = "generalbookstacktall01.m2", - }, - }, - value = "bookstacks", - text = "bookstacks", - }, - { - children = { - { - fileId = "198057", - value = "bottle01.m2", - text = "bottle01.m2", - }, - { - fileId = "198058", - value = "bottlesmoke.m2", - text = "bottlesmoke.m2", - }, - { - fileId = "198060", - value = "greenbottle01.m2", - text = "greenbottle01.m2", - }, - { - fileId = "198061", - value = "greenbottle02.m2", - text = "greenbottle02.m2", - }, - }, - value = "bottles", - text = "bottles", - }, - { - children = { - { - fileId = "198064", - value = "humanbraziercorrupt.m2", - text = "humanbraziercorrupt.m2", - }, - { - fileId = "198065", - value = "humanbraziermagic.m2", - text = "humanbraziermagic.m2", - }, - { - fileId = "198067", - value = "stormwindbrazier01.m2", - text = "stormwindbrazier01.m2", - }, - }, - value = "braziers", - text = "braziers", - }, - { - children = { - { - fileId = "198068", - value = "bucket.m2", - text = "bucket.m2", - }, - { - fileId = "198069", - value = "cavekoboldbucket.m2", - text = "cavekoboldbucket.m2", - }, - }, - value = "buckets", - text = "buckets", - }, - { - children = { - { - fileId = "198073", - value = "candelabratall01.m2", - text = "candelabratall01.m2", - }, - { - fileId = "198074", - value = "candelabratall02.m2", - text = "candelabratall02.m2", - }, - { - fileId = "198076", - value = "generalcandelabra01.m2", - text = "generalcandelabra01.m2", - }, - }, - value = "candelabras", - text = "candelabras", - }, - { - children = { - { - fileId = "198078", - value = "cannon01.m2", - text = "cannon01.m2", - }, - { - fileId = "198079", - value = "cannonlarge.m2", - text = "cannonlarge.m2", - }, - { - fileId = "198082", - value = "deadminescannon01.m2", - text = "deadminescannon01.m2", - }, - }, - value = "cannon", - text = "cannon", - }, - { - children = { - { - fileId = "198084", - value = "deadminecannonballstack.m2", - text = "deadminecannonballstack.m2", - }, - }, - value = "cannonballstack", - text = "cannonballstack", - }, - { - children = { - { - fileId = "198085", - value = "deadminecargoboxes.m2", - text = "deadminecargoboxes.m2", - }, - }, - value = "cargoboxes", - text = "cargoboxes", - }, - { - children = { - { - fileId = "198086", - value = "deadminecargonetboxes.m2", - text = "deadminecargonetboxes.m2", - }, - }, - value = "cargonetboxes", - text = "cargonetboxes", - }, - { - children = { - { - fileId = "198087", - value = "deadminecargonet01.m2", - text = "deadminecargonet01.m2", - }, - { - fileId = "198088", - value = "deadminecargonet02.m2", - text = "deadminecargonet02.m2", - }, - { - fileId = "198089", - value = "deadminecargonethang.m2", - text = "deadminecargonethang.m2", - }, - { - fileId = "198090", - value = "deadminecargonethangshort.m2", - text = "deadminecargonethangshort.m2", - }, - { - fileId = "198091", - value = "deadminecargonetlarge.m2", - text = "deadminecargonetlarge.m2", - }, - }, - value = "cargonets", - text = "cargonets", - }, - { - children = { - { - fileId = "198093", - value = "catapultarm.m2", - text = "catapultarm.m2", - }, - { - fileId = "198095", - value = "catapultball01.m2", - text = "catapultball01.m2", - }, - { - fileId = "198096", - value = "catapultbeam.m2", - text = "catapultbeam.m2", - }, - { - fileId = "198097", - value = "catapulttrunk01.m2", - text = "catapulttrunk01.m2", - }, - { - fileId = "198098", - value = "catapulttrunk02.m2", - text = "catapulttrunk02.m2", - }, - { - fileId = "198099", - value = "catapultwheel01.m2", - text = "catapultwheel01.m2", - }, - }, - value = "catapultruins", - text = "catapultruins", - }, - { - children = { - { - fileId = "198100", - value = "cauldron.m2", - text = "cauldron.m2", - }, - { - fileId = "198101", - value = "cauldronempty.m2", - text = "cauldronempty.m2", - }, - }, - value = "cauldrons", - text = "cauldrons", - }, - { - children = { - { - fileId = "198109", - value = "minepump01.m2", - text = "minepump01.m2", - }, - }, - value = "caveminepump", - text = "caveminepump", - }, - { - children = { - { - fileId = "198110", - value = "deadminescaveroof.m2", - text = "deadminescaveroof.m2", - }, - { - fileId = "198111", - value = "dnrdeadminescaveroof.m2", - text = "dnrdeadminescaveroof.m2", - }, - }, - value = "caveroof", - text = "caveroof", - }, - { - children = { - { - fileId = "198114", - value = "generalchairhighend01.m2", - text = "generalchairhighend01.m2", - }, - { - fileId = "198115", - value = "generalchairloend01.m2", - text = "generalchairloend01.m2", - }, - { - fileId = "198116", - value = "generalmedchair01.m2", - text = "generalmedchair01.m2", - }, - { - fileId = "198117", - value = "gmchairloend01.m2", - text = "gmchairloend01.m2", - }, - { - fileId = "198119", - value = "shadowfangchair01.m2", - text = "shadowfangchair01.m2", - }, - { - fileId = "198120", - value = "shadowfangchair02.m2", - text = "shadowfangchair02.m2", - }, - }, - value = "chairs", - text = "chairs", - }, - { - children = { - { - fileId = "198122", - value = "generalchimney01.m2", - text = "generalchimney01.m2", - }, - { - fileId = "198123", - value = "generalchimney02.m2", - text = "generalchimney02.m2", - }, - }, - value = "chimneys", - text = "chimneys", - }, - { - children = { - { - fileId = "198124", - value = "clothboltblue.m2", - text = "clothboltblue.m2", - }, - { - fileId = "198125", - value = "clothboltgreen.m2", - text = "clothboltgreen.m2", - }, - { - fileId = "198126", - value = "clothboltred.m2", - text = "clothboltred.m2", - }, - { - fileId = "198127", - value = "clothboltwhite.m2", - text = "clothboltwhite.m2", - }, - { - fileId = "198128", - value = "clothspoolblue.m2", - text = "clothspoolblue.m2", - }, - { - fileId = "198129", - value = "clothspoolbluelow.m2", - text = "clothspoolbluelow.m2", - }, - { - fileId = "198130", - value = "clothspoolredlow.m2", - text = "clothspoolredlow.m2", - }, - { - fileId = "198131", - value = "clothspoolyellow.m2", - text = "clothspoolyellow.m2", - }, - { - fileId = "198133", - value = "clothyarnblue.m2", - text = "clothyarnblue.m2", - }, - { - fileId = "198134", - value = "clothyarnbluelow.m2", - text = "clothyarnbluelow.m2", - }, - { - fileId = "198135", - value = "clothyarnredlow.m2", - text = "clothyarnredlow.m2", - }, - { - fileId = "198136", - value = "clothyarnyellow.m2", - text = "clothyarnyellow.m2", - }, - }, - value = "cloth", - text = "cloth", - }, - { - children = { - { - fileId = "198138", - value = "bootrack01.m2", - text = "bootrack01.m2", - }, - { - fileId = "198139", - value = "bootsleatherblack.m2", - text = "bootsleatherblack.m2", - }, - { - fileId = "198140", - value = "bootsleatherbrown01.m2", - text = "bootsleatherbrown01.m2", - }, - { - fileId = "198141", - value = "bootsleatherdark.m2", - text = "bootsleatherdark.m2", - }, - { - fileId = "198142", - value = "clothyarnballred.m2", - text = "clothyarnballred.m2", - }, - { - fileId = "198143", - value = "clothyarnballyellow.m2", - text = "clothyarnballyellow.m2", - }, - { - fileId = "198144", - value = "foldedpantsbrown.m2", - text = "foldedpantsbrown.m2", - }, - { - fileId = "198145", - value = "foldedpantsgrey.m2", - text = "foldedpantsgrey.m2", - }, - { - fileId = "198146", - value = "foldedshirtbrown.m2", - text = "foldedshirtbrown.m2", - }, - { - fileId = "198147", - value = "foldershirtgreen.m2", - text = "foldershirtgreen.m2", - }, - { - fileId = "198148", - value = "hangingcloakblue.m2", - text = "hangingcloakblue.m2", - }, - { - fileId = "198149", - value = "hangingcloakred.m2", - text = "hangingcloakred.m2", - }, - { - fileId = "198150", - value = "hangingpantsbrown.m2", - text = "hangingpantsbrown.m2", - }, - { - fileId = "198151", - value = "hangingpantsclotheslinebrown.m2", - text = "hangingpantsclotheslinebrown.m2", - }, - { - fileId = "198152", - value = "hangingpantsclotheslinegrey.m2", - text = "hangingpantsclotheslinegrey.m2", - }, - { - fileId = "198153", - value = "hangingpantsgrey.m2", - text = "hangingpantsgrey.m2", - }, - { - fileId = "198154", - value = "hangingshirtbrown.m2", - text = "hangingshirtbrown.m2", - }, - { - fileId = "198155", - value = "hangingshirtclotheslinebrown.m2", - text = "hangingshirtclotheslinebrown.m2", - }, - { - fileId = "198156", - value = "hangingshirtclotheslinegreen.m2", - text = "hangingshirtclotheslinegreen.m2", - }, - { - fileId = "198157", - value = "hangingshirtgreen.m2", - text = "hangingshirtgreen.m2", - }, - }, - value = "clothing", - text = "clothing", - }, - { - children = { - { - fileId = "198158", - value = "crategrain01.m2", - text = "crategrain01.m2", - }, - { - fileId = "198159", - value = "crategrainempty.m2", - text = "crategrainempty.m2", - }, - { - fileId = "198160", - value = "crategrainlid.m2", - text = "crategrainlid.m2", - }, - { - fileId = "198161", - value = "crategrainopen.m2", - text = "crategrainopen.m2", - }, - { - fileId = "198163", - value = "graincrate01.m2", - text = "graincrate01.m2", - }, - { - fileId = "198165", - value = "replacecrate01.m2", - text = "replacecrate01.m2", - }, - { - fileId = "198166", - value = "replacecrate02.m2", - text = "replacecrate02.m2", - }, - { - fileId = "198167", - value = "replacecrate03.m2", - text = "replacecrate03.m2", - }, - { - fileId = "198168", - value = "stormwindcrate01.m2", - text = "stormwindcrate01.m2", - }, - }, - value = "crates", - text = "crates", - }, - { - children = { - { - fileId = "198169", - value = "metalcup03.m2", - text = "metalcup03.m2", - }, - { - fileId = "198170", - value = "metalcup04.m2", - text = "metalcup04.m2", - }, - }, - value = "cups", - text = "cups", - }, - { - children = { - { - fileId = "198172", - value = "deadminecleat.m2", - text = "deadminecleat.m2", - }, - }, - value = "deadminecleat", - text = "deadminecleat", - }, - { - children = { - { - fileId = "198173", - value = "deadminepowderkeg.m2", - text = "deadminepowderkeg.m2", - }, - }, - value = "deadminepowderkeg", - text = "deadminepowderkeg", - }, - { - children = { - { - fileId = "198175", - value = "fancydesk01.m2", - text = "fancydesk01.m2", - }, - }, - value = "desks", - text = "desks", - }, - { - children = { - { - fileId = "198177", - value = "doghouse.m2", - text = "doghouse.m2", - }, - }, - value = "doghouses", - text = "doghouses", - }, - { - children = { - { - fileId = "198178", - value = "ragdoll01.m2", - text = "ragdoll01.m2", - }, - { - fileId = "198179", - value = "ragdoll_02.m2", - text = "ragdoll_02.m2", - }, - { - fileId = "198180", - value = "ragdoll_03.m2", - text = "ragdoll_03.m2", - }, - { - fileId = "198181", - value = "ragdoll_04.m2", - text = "ragdoll_04.m2", - }, - { - fileId = "198182", - value = "ragdoll_05.m2", - text = "ragdoll_05.m2", - }, - }, - value = "dolls", - text = "dolls", - }, - { - children = { - { - fileId = "198185", - value = "drapery01.m2", - text = "drapery01.m2", - }, - { - fileId = "198186", - value = "drapery02.m2", - text = "drapery02.m2", - }, - }, - value = "drapery", - text = "drapery", - }, - { - children = { - { - fileId = "198189", - value = "cavekobolddredge.m2", - text = "cavekobolddredge.m2", - }, - }, - value = "dredge", - text = "dredge", - }, - { - children = { - { - fileId = "198191", - value = "burningsteppselevator.m2", - text = "burningsteppselevator.m2", - }, - }, - value = "elevatorparts", - text = "elevatorparts", - }, - { - children = { - { - fileId = "198193", - value = "undeadcampfire.m2", - text = "undeadcampfire.m2", - }, - { - fileId = "198194", - value = "undeadfirelarge.m2", - text = "undeadfirelarge.m2", - }, - { - fileId = "198195", - value = "undeadfiresmall.m2", - text = "undeadfiresmall.m2", - }, - }, - value = "fire", - text = "fire", - }, - { - children = { - { - fileId = "198197", - value = "firewoodpile01.m2", - text = "firewoodpile01.m2", - }, - { - fileId = "198198", - value = "firewoodpile03.m2", - text = "firewoodpile03.m2", - }, - }, - value = "firewood", - text = "firewood", - }, - { - children = { - { - fileId = "198199", - value = "flagpole01.m2", - text = "flagpole01.m2", - }, - }, - value = "flagpole", - text = "flagpole", - }, - { - children = { - { - fileId = "198202", - value = "flowersbunch01.m2", - text = "flowersbunch01.m2", - }, - { - fileId = "198203", - value = "flowersbunch02.m2", - text = "flowersbunch02.m2", - }, - { - fileId = "198204", - value = "flowersbunch03.m2", - text = "flowersbunch03.m2", - }, - { - fileId = "198205", - value = "flowersbunch04.m2", - text = "flowersbunch04.m2", - }, - { - fileId = "198206", - value = "flowersbunch05.m2", - text = "flowersbunch05.m2", - }, - { - fileId = "198207", - value = "flowersbunchdead01.m2", - text = "flowersbunchdead01.m2", - }, - { - fileId = "198208", - value = "flowersbunchdead02.m2", - text = "flowersbunchdead02.m2", - }, - { - fileId = "198209", - value = "flowerswreath01.m2", - text = "flowerswreath01.m2", - }, - { - fileId = "198210", - value = "flowerswreath02.m2", - text = "flowerswreath02.m2", - }, - { - fileId = "198211", - value = "flowerswreathdead01.m2", - text = "flowerswreathdead01.m2", - }, - }, - value = "flowers", - text = "flowers", - }, - { - children = { - { - fileId = "198212", - value = "bread01.m2", - text = "bread01.m2", - }, - { - fileId = "198214", - value = "breadfrench01.m2", - text = "breadfrench01.m2", - }, - { - fileId = "198215", - value = "breadfrenchhalf.m2", - text = "breadfrenchhalf.m2", - }, - { - fileId = "198216", - value = "breadloaf01.m2", - text = "breadloaf01.m2", - }, - { - fileId = "198217", - value = "breadloafhalf.m2", - text = "breadloafhalf.m2", - }, - { - fileId = "198218", - value = "breadslice.m2", - text = "breadslice.m2", - }, - { - fileId = "198219", - value = "cheesewedge01.m2", - text = "cheesewedge01.m2", - }, - { - fileId = "198220", - value = "cheesewedgeswiss01.m2", - text = "cheesewedgeswiss01.m2", - }, - { - fileId = "198221", - value = "cheesewheel01.m2", - text = "cheesewheel01.m2", - }, - { - fileId = "198222", - value = "cheesewheelswiss01.m2", - text = "cheesewheelswiss01.m2", - }, - { - fileId = "198223", - value = "fishplatter01.m2", - text = "fishplatter01.m2", - }, - { - fileId = "198224", - value = "goldfruitbowl01.m2", - text = "goldfruitbowl01.m2", - }, - { - fileId = "198226", - value = "muffin01.m2", - text = "muffin01.m2", - }, - { - fileId = "198227", - value = "pie01.m2", - text = "pie01.m2", - }, - { - fileId = "198228", - value = "roastboarplatter.m2", - text = "roastboarplatter.m2", - }, - }, - value = "food", - text = "food", - }, - { - children = { - { - fileId = "198230", - value = "cleaver01.m2", - text = "cleaver01.m2", - }, - { - fileId = "198232", - value = "haunch.m2", - text = "haunch.m2", - }, - { - fileId = "198234", - value = "kitchenknife.m2", - text = "kitchenknife.m2", - }, - { - fileId = "198235", - value = "kitchenknife01.m2", - text = "kitchenknife01.m2", - }, - { - fileId = "198236", - value = "turkeyleg.m2", - text = "turkeyleg.m2", - }, - }, - value = "food&utensils", - text = "food&utensils", - }, - { - children = { - { - fileId = "198238", - value = "duskwoodfootlocker01.m2", - text = "duskwoodfootlocker01.m2", - }, - }, - value = "footlockers", - text = "footlockers", - }, - { - children = { - { - fileId = "198240", - value = "plaguedfountain.m2", - text = "plaguedfountain.m2", - }, - { - fileId = "198243", - value = "snowfountain.m2", - text = "snowfountain.m2", - }, - { - fileId = "198247", - value = "stormwindfountain01.m2", - text = "stormwindfountain01.m2", - }, - { - fileId = "198253", - value = "tirisfallfountain.m2", - text = "tirisfallfountain.m2", - }, - }, - value = "fountains", - text = "fountains", - }, - { - children = { - { - fileId = "198254", - value = "globe01.m2", - text = "globe01.m2", - }, - }, - value = "globes", - text = "globes", - }, - { - children = { - { - fileId = "198256", - value = "goblet02.m2", - text = "goblet02.m2", - }, - }, - value = "goblets", - text = "goblets", - }, - { - children = { - { - fileId = "198261", - value = "gryphonroost01.m2", - text = "gryphonroost01.m2", - }, - }, - value = "gryphonroost", - text = "gryphonroost", - }, - { - children = { - { - fileId = "198262", - value = "gunlongrifle.m2", - text = "gunlongrifle.m2", - }, - { - fileId = "198263", - value = "gunshopammoboxblue.m2", - text = "gunshopammoboxblue.m2", - }, - { - fileId = "198264", - value = "gunshopammoboxblueblock.m2", - text = "gunshopammoboxblueblock.m2", - }, - { - fileId = "198265", - value = "gunshopammoboxred.m2", - text = "gunshopammoboxred.m2", - }, - { - fileId = "198266", - value = "gunshopammoboxredblock.m2", - text = "gunshopammoboxredblock.m2", - }, - { - fileId = "198267", - value = "gunshopbomb.m2", - text = "gunshopbomb.m2", - }, - { - fileId = "198268", - value = "gunshopdynamite.m2", - text = "gunshopdynamite.m2", - }, - { - fileId = "198269", - value = "gunshopfireworks01.m2", - text = "gunshopfireworks01.m2", - }, - { - fileId = "198270", - value = "gunshopfireworks02.m2", - text = "gunshopfireworks02.m2", - }, - { - fileId = "198271", - value = "gunshopfireworks03.m2", - text = "gunshopfireworks03.m2", - }, - { - fileId = "198272", - value = "gunshopfireworks04.m2", - text = "gunshopfireworks04.m2", - }, - { - fileId = "198273", - value = "gunshopfireworksbarrel.m2", - text = "gunshopfireworksbarrel.m2", - }, - { - fileId = "198274", - value = "gunshopfireworksbig01.m2", - text = "gunshopfireworksbig01.m2", - }, - { - fileId = "198275", - value = "gunshopfireworksbig02.m2", - text = "gunshopfireworksbig02.m2", - }, - { - fileId = "198276", - value = "gunshopgunbarrel.m2", - text = "gunshopgunbarrel.m2", - }, - { - fileId = "198277", - value = "gunshopgunstock.m2", - text = "gunshopgunstock.m2", - }, - { - fileId = "198278", - value = "gunshopmortar.m2", - text = "gunshopmortar.m2", - }, - { - fileId = "198279", - value = "gunshopmortarshell.m2", - text = "gunshopmortarshell.m2", - }, - { - fileId = "198280", - value = "gunshoppowderkegopen.m2", - text = "gunshoppowderkegopen.m2", - }, - { - fileId = "198281", - value = "gunshoptarget01.m2", - text = "gunshoptarget01.m2", - }, - { - fileId = "198282", - value = "gunshoptarget02.m2", - text = "gunshoptarget02.m2", - }, - { - fileId = "198283", - value = "gunshoptarget03.m2", - text = "gunshoptarget03.m2", - }, - { - fileId = "198284", - value = "gunshoptarget04.m2", - text = "gunshoptarget04.m2", - }, - { - fileId = "198285", - value = "gunsniperrifle.m2", - text = "gunsniperrifle.m2", - }, - { - fileId = "198286", - value = "guntripod.m2", - text = "guntripod.m2", - }, - }, - value = "gunshop", - text = "gunshop", - }, - { - children = { - { - fileId = "198288", - value = "stormwindgypsywagon01.m2", - text = "stormwindgypsywagon01.m2", - }, - }, - value = "gypsywagons", - text = "gypsywagons", - }, - { - children = { - { - fileId = "198289", - value = "generalhangingcage01.m2", - text = "generalhangingcage01.m2", - }, - }, - value = "hanging cages", - text = "hanging cages", - }, - { - children = { - { - fileId = "198291", - value = "generalhanginglantern01.m2", - text = "generalhanginglantern01.m2", - }, - { - fileId = "198292", - value = "generalhanginglanternlong.m2", - text = "generalhanginglanternlong.m2", - }, - }, - value = "hanginglanterns", - text = "hanginglanterns", - }, - { - children = { - { - fileId = "198294", - value = "darkhaypilemedium01.m2", - text = "darkhaypilemedium01.m2", - }, - { - fileId = "198296", - value = "shadowfanghaypile01.m2", - text = "shadowfanghaypile01.m2", - }, - { - fileId = "198297", - value = "shadowfanghaypile02.m2", - text = "shadowfanghaypile02.m2", - }, - }, - value = "haypiles", - text = "haypiles", - }, - { - children = { - { - fileId = "198301", - value = "moonbrookhearse.m2", - text = "moonbrookhearse.m2", - }, - }, - value = "hearse", - text = "hearse", - }, - { - children = { - { - fileId = "198303", - value = "duskwoodlamppost.m2", - text = "duskwoodlamppost.m2", - }, - { - fileId = "198304", - value = "duskwoodlamppostbroken.m2", - text = "duskwoodlamppostbroken.m2", - }, - }, - value = "lampposts", - text = "lampposts", - }, - { - children = { - { - fileId = "198310", - value = "lamppostbroken.m2", - text = "lamppostbroken.m2", - }, - { - fileId = "198312", - value = "plaguelandslamp.m2", - text = "plaguelandslamp.m2", - }, - { - fileId = "198315", - value = "stormwindcanallamp01.m2", - text = "stormwindcanallamp01.m2", - }, - { - fileId = "198316", - value = "stormwindstreetlamp01.m2", - text = "stormwindstreetlamp01.m2", - }, - { - fileId = "198318", - value = "tirisfallstreetlamp01.m2", - text = "tirisfallstreetlamp01.m2", - }, - { - fileId = "198319", - value = "westernplaguelandslampost01.m2", - text = "westernplaguelandslampost01.m2", - }, - { - fileId = "198320", - value = "westernplaguelandslampost02.m2", - text = "westernplaguelandslampost02.m2", - }, - { - fileId = "198321", - value = "westernplaguelandslampostbroken01.m2", - text = "westernplaguelandslampostbroken01.m2", - }, - { - fileId = "198322", - value = "westernplaguelandslampostbroken02.m2", - text = "westernplaguelandslampostbroken02.m2", - }, - { - fileId = "198323", - value = "westernplaguelandslampoststraight.m2", - text = "westernplaguelandslampoststraight.m2", - }, - { - fileId = "198324", - value = "westernplaguelandslampoststraightoff.m2", - text = "westernplaguelandslampoststraightoff.m2", - }, - }, - value = "lamps", - text = "lamps", - }, - { - children = { - { - fileId = "198327", - value = "generallantern01.m2", - text = "generallantern01.m2", - }, - { - fileId = "198328", - value = "generallantern02.m2", - text = "generallantern02.m2", - }, - { - fileId = "198329", - value = "generallantern03.m2", - text = "generallantern03.m2", - }, - { - fileId = "198330", - value = "generallantern04.m2", - text = "generallantern04.m2", - }, - }, - value = "lanterns", - text = "lanterns", - }, - { - children = { - { - fileId = "198331", - value = "logmachine01.m2", - text = "logmachine01.m2", - }, - { - fileId = "198332", - value = "logmachine02.m2", - text = "logmachine02.m2", - }, - { - fileId = "198333", - value = "logmachine03.m2", - text = "logmachine03.m2", - }, - { - fileId = "198334", - value = "logmachine04.m2", - text = "logmachine04.m2", - }, - }, - value = "logmachines", - text = "logmachines", - }, - { - children = { - { - fileId = "198337", - value = "loomhumanblue.m2", - text = "loomhumanblue.m2", - }, - { - fileId = "198338", - value = "loomhumanwhite.m2", - text = "loomhumanwhite.m2", - }, - }, - value = "loom", - text = "loom", - }, - { - children = { - { - fileId = "198339", - value = "deadminelumberpilelarge.m2", - text = "deadminelumberpilelarge.m2", - }, - { - fileId = "198340", - value = "deadminelumberpilesmall.m2", - text = "deadminelumberpilesmall.m2", - }, - }, - value = "lumberpiles", - text = "lumberpiles", - }, - { - children = { - { - fileId = "198343", - value = "bloodymeat01.m2", - text = "bloodymeat01.m2", - }, - { - fileId = "198344", - value = "bloodymeat02.m2", - text = "bloodymeat02.m2", - }, - }, - value = "meat", - text = "meat", - }, - { - children = { - { - fileId = "198346", - value = "cavekoboldminemachine.m2", - text = "cavekoboldminemachine.m2", - }, - }, - value = "minemachine", - text = "minemachine", - }, - { - children = { - { - fileId = "198351", - value = "miningsifter01.m2", - text = "miningsifter01.m2", - }, - { - fileId = "198352", - value = "miningsifter02.m2", - text = "miningsifter02.m2", - }, - }, - value = "miningsifters", - text = "miningsifters", - }, - { - children = { - { - fileId = "198355", - value = "miningtroughlarge.m2", - text = "miningtroughlarge.m2", - }, - { - fileId = "198356", - value = "miningtroughsmall.m2", - text = "miningtroughsmall.m2", - }, - }, - value = "miningtroughs", - text = "miningtroughs", - }, - { - children = { - { - fileId = "198357", - value = "mop.m2", - text = "mop.m2", - }, - }, - value = "mops", - text = "mops", - }, - { - children = { - { - fileId = "198358", - value = "goldgoblet01.m2", - text = "goldgoblet01.m2", - }, - { - fileId = "198359", - value = "goldgobletfilled01.m2", - text = "goldgobletfilled01.m2", - }, - { - fileId = "198360", - value = "mug01.m2", - text = "mug01.m2", - }, - { - fileId = "198361", - value = "mug02.m2", - text = "mug02.m2", - }, - { - fileId = "198366", - value = "mugfoam01.m2", - text = "mugfoam01.m2", - }, - { - fileId = "198367", - value = "stein01.m2", - text = "stein01.m2", - }, - }, - value = "mugs", - text = "mugs", - }, - { - children = { - { - fileId = "198369", - value = "dragonskeletonhanging.m2", - text = "dragonskeletonhanging.m2", - }, - { - fileId = "198370", - value = "dragonskullhanging.m2", - text = "dragonskullhanging.m2", - }, - }, - value = "museumskeletons", - text = "museumskeletons", - }, - { - children = { - { - fileId = "198372", - value = "oildrum01.m2", - text = "oildrum01.m2", - }, - }, - value = "oildrums", - text = "oildrums", - }, - { - children = { - { - fileId = "198376", - value = "oilrigstack01.m2", - text = "oilrigstack01.m2", - }, - { - fileId = "198377", - value = "oilrigstack02.m2", - text = "oilrigstack02.m2", - }, - }, - value = "oilrigstacks", - text = "oilrigstacks", - }, - { - children = { - { - fileId = "198378", - value = "alliancehangingnefariantrophy.m2", - text = "alliancehangingnefariantrophy.m2", - }, - { - fileId = "198379", - value = "alliancehangingonyxiatrophy.m2", - text = "alliancehangingonyxiatrophy.m2", - }, - }, - value = "onxiatrophy", - text = "onxiatrophy", - }, - { - children = { - { - fileId = "198380", - value = "generaloutpost01.m2", - text = "generaloutpost01.m2", - }, - { - fileId = "198381", - value = "generaloutpost02.m2", - text = "generaloutpost02.m2", - }, - { - fileId = "198382", - value = "generaloutpost03.m2", - text = "generaloutpost03.m2", - }, - { - fileId = "198383", - value = "generaloutpost04.m2", - text = "generaloutpost04.m2", - }, - { - fileId = "198384", - value = "generaloutpost05.m2", - text = "generaloutpost05.m2", - }, - { - fileId = "198385", - value = "generaloutpost06.m2", - text = "generaloutpost06.m2", - }, - { - fileId = "198386", - value = "generaloutpost07.m2", - text = "generaloutpost07.m2", - }, - }, - value = "outposts", - text = "outposts", - }, - { - children = { - { - fileId = "198389", - value = "peasantlumber01.m2", - text = "peasantlumber01.m2", - }, - }, - value = "peasantlumber", - text = "peasantlumber", - }, - { - children = { - { - fileId = "198390", - value = "generalchurchpew01.m2", - text = "generalchurchpew01.m2", - }, - }, - value = "pews", - text = "pews", - }, - { - children = { - { - fileId = "198395", - value = "stormwindplanter.m2", - text = "stormwindplanter.m2", - }, - { - fileId = "198396", - value = "stormwindwindowplantera.m2", - text = "stormwindwindowplantera.m2", - }, - { - fileId = "198397", - value = "stormwindwindowplanterb.m2", - text = "stormwindwindowplanterb.m2", - }, - { - fileId = "198398", - value = "stormwindwindowplanterempty.m2", - text = "stormwindwindowplanterempty.m2", - }, - { - fileId = "198399", - value = "stormwindwindowplantergrass.m2", - text = "stormwindwindowplantergrass.m2", - }, - { - fileId = "198402", - value = "tirisfallplanter.m2", - text = "tirisfallplanter.m2", - }, - { - fileId = "198403", - value = "tirisfallwindowplantera.m2", - text = "tirisfallwindowplantera.m2", - }, - { - fileId = "198404", - value = "tirisfallwindowplanterb.m2", - text = "tirisfallwindowplanterb.m2", - }, - }, - value = "planterboxes", - text = "planterboxes", - }, - { - children = { - { - fileId = "198405", - value = "generaldirtyplate01.m2", - text = "generaldirtyplate01.m2", - }, - }, - value = "plates", - text = "plates", - }, - { - children = { - { - fileId = "198407", - value = "duskwoodpodium01.m2", - text = "duskwoodpodium01.m2", - }, - }, - value = "podiums", - text = "podiums", - }, - { - children = { - { - fileId = "198409", - value = "missingposter01.m2", - text = "missingposter01.m2", - }, - { - fileId = "198411", - value = "missingposter02.m2", - text = "missingposter02.m2", - }, - }, - value = "posters", - text = "posters", - }, - { - children = { - { - fileId = "198412", - value = "exteriorpulley.m2", - text = "exteriorpulley.m2", - }, - { - fileId = "198413", - value = "exteriorpulleyfore3.m2", - text = "exteriorpulleyfore3.m2", - }, - }, - value = "pulleys", - text = "pulleys", - }, - { - children = { - { - fileId = "198418", - value = "deadminegiantramrod.m2", - text = "deadminegiantramrod.m2", - }, - }, - value = "ramrod", - text = "ramrod", - }, - { - children = { - { - fileId = "198421", - value = "ropeladder01.m2", - text = "ropeladder01.m2", - }, - }, - value = "ropeladders", - text = "ropeladders", - }, - { - children = { - { - fileId = "198422", - value = "cavekoboldropecoil.m2", - text = "cavekoboldropecoil.m2", - }, - }, - value = "ropes", - text = "ropes", - }, - { - children = { - { - fileId = "198426", - value = "generalbearskinrug01.m2", - text = "generalbearskinrug01.m2", - }, - { - fileId = "198428", - value = "karazahnruggreen.m2", - text = "karazahnruggreen.m2", - }, - { - fileId = "198430", - value = "karazahnrugorange.m2", - text = "karazahnrugorange.m2", - }, - { - fileId = "198432", - value = "karazahnrugpurple.m2", - text = "karazahnrugpurple.m2", - }, - { - fileId = "198434", - value = "karazahnrugred.m2", - text = "karazahnrugred.m2", - }, - { - fileId = "198435", - value = "stormwindrug01.m2", - text = "stormwindrug01.m2", - }, - { - fileId = "198436", - value = "stormwindrug02.m2", - text = "stormwindrug02.m2", - }, - }, - value = "rugs", - text = "rugs", - }, - { - children = { - { - fileId = "198437", - value = "plaguedgrainsack01.m2", - text = "plaguedgrainsack01.m2", - }, - { - fileId = "198438", - value = "plaguedgrainsack02.m2", - text = "plaguedgrainsack02.m2", - }, - { - fileId = "198440", - value = "sackherbspeacebloom01.m2", - text = "sackherbspeacebloom01.m2", - }, - { - fileId = "198441", - value = "sackherbsstack01.m2", - text = "sackherbsstack01.m2", - }, - { - fileId = "198442", - value = "sackherbsstack02.m2", - text = "sackherbsstack02.m2", - }, - { - fileId = "198443", - value = "sackherbsstranglekelp01.m2", - text = "sackherbsstranglekelp01.m2", - }, - }, - value = "sacks", - text = "sacks", - }, - { - children = { - { - fileId = "198445", - value = "sarcophagus.m2", - text = "sarcophagus.m2", - }, - }, - value = "sarcophagi", - text = "sarcophagi", - }, - { - children = { - { - fileId = "198447", - value = "stormwindscaffold_01.m2", - text = "stormwindscaffold_01.m2", - }, - }, - value = "scaffold", - text = "scaffold", - }, - { - children = { - { - fileId = "198449", - value = "generalscribestation01.m2", - text = "generalscribestation01.m2", - }, - }, - value = "scribestations", - text = "scribestations", - }, - { - children = { - { - fileId = "198451", - value = "scrolla02.m2", - text = "scrolla02.m2", - }, - { - fileId = "198452", - value = "scrolla03.m2", - text = "scrolla03.m2", - }, - { - fileId = "198453", - value = "scrollb01.m2", - text = "scrollb01.m2", - }, - { - fileId = "198454", - value = "scrollb02.m2", - text = "scrollb02.m2", - }, - { - fileId = "198455", - value = "scrollb03.m2", - text = "scrollb03.m2", - }, - { - fileId = "198457", - value = "scrollmap.m2", - text = "scrollmap.m2", - }, - }, - value = "scrolls", - text = "scrolls", - }, - { - children = { - { - fileId = "198459", - value = "shack.m2", - text = "shack.m2", - }, - }, - value = "shack", - text = "shack", - }, - { - children = { - { - fileId = "198461", - value = "duskwoodshopcounter.m2", - text = "duskwoodshopcounter.m2", - }, - { - fileId = "198462", - value = "duskwoodshopcounter02.m2", - text = "duskwoodshopcounter02.m2", - }, - }, - value = "shopcounter", - text = "shopcounter", - }, - { - children = { - { - fileId = "198463", - value = "humansignpost01.m2", - text = "humansignpost01.m2", - }, - { - fileId = "198464", - value = "humansignpost02.m2", - text = "humansignpost02.m2", - }, - { - fileId = "198465", - value = "humansignpost03.m2", - text = "humansignpost03.m2", - }, - { - fileId = "198466", - value = "humansignpost04.m2", - text = "humansignpost04.m2", - }, - { - fileId = "198467", - value = "humansignpost05.m2", - text = "humansignpost05.m2", - }, - { - fileId = "198468", - value = "humansignpostpointer01.m2", - text = "humansignpostpointer01.m2", - }, - { - fileId = "198469", - value = "humansignpostpointer02.m2", - text = "humansignpostpointer02.m2", - }, - { - fileId = "198470", - value = "humansignpostpointer03.m2", - text = "humansignpostpointer03.m2", - }, - { - fileId = "198471", - value = "humansignpostpointer04.m2", - text = "humansignpostpointer04.m2", - }, - { - fileId = "198472", - value = "humansignpostpointer05.m2", - text = "humansignpostpointer05.m2", - }, - { - fileId = "198476", - value = "stonesignpointer01.m2", - text = "stonesignpointer01.m2", - }, - { - fileId = "198477", - value = "stonesignpost01.m2", - text = "stonesignpost01.m2", - }, - { - fileId = "198478", - value = "woodsignpointernice01.m2", - text = "woodsignpointernice01.m2", - }, - { - fileId = "198479", - value = "woodsignpointerworn01.m2", - text = "woodsignpointerworn01.m2", - }, - { - fileId = "198480", - value = "woodsignpostnice01.m2", - text = "woodsignpostnice01.m2", - }, - { - fileId = "198481", - value = "woodsignpostworn01.m2", - text = "woodsignpostworn01.m2", - }, - }, - value = "signposts", - text = "signposts", - }, - { - children = { - { - fileId = "198484", - value = "alchemistsshop01.m2", - text = "alchemistsshop01.m2", - }, - { - fileId = "198486", - value = "armorershop01.m2", - text = "armorershop01.m2", - }, - { - fileId = "198488", - value = "bakershop01.m2", - text = "bakershop01.m2", - }, - { - fileId = "198490", - value = "bank01.m2", - text = "bank01.m2", - }, - { - fileId = "198492", - value = "butchershopsign01.m2", - text = "butchershopsign01.m2", - }, - { - fileId = "198493", - value = "cavekobolddangersign.m2", - text = "cavekobolddangersign.m2", - }, - { - fileId = "198497", - value = "cheeseshop01.m2", - text = "cheeseshop01.m2", - }, - { - fileId = "198500", - value = "fletchershop01.m2", - text = "fletchershop01.m2", - }, - { - fileId = "198502", - value = "florist01.m2", - text = "florist01.m2", - }, - { - fileId = "198504", - value = "generalstore01.m2", - text = "generalstore01.m2", - }, - { - fileId = "198506", - value = "noblehouse01.m2", - text = "noblehouse01.m2", - }, - { - fileId = "198508", - value = "tailor01.m2", - text = "tailor01.m2", - }, - { - fileId = "198510", - value = "tavern01.m2", - text = "tavern01.m2", - }, - { - fileId = "198512", - value = "visitorscenter01.m2", - text = "visitorscenter01.m2", - }, - { - fileId = "198514", - value = "weaponsmithshop01.m2", - text = "weaponsmithshop01.m2", - }, - { - fileId = "198516", - value = "wineshopsign01.m2", - text = "wineshopsign01.m2", - }, - }, - value = "signs", - text = "signs", - }, - { - children = { - { - fileId = "198517", - value = "smokestack.m2", - text = "smokestack.m2", - }, - }, - value = "smokestack", - text = "smokestack", - }, - { - children = { - { - fileId = "198519", - value = "cavekoboldspidereggsground.m2", - text = "cavekoboldspidereggsground.m2", - }, - }, - value = "spidereggsground", - text = "spidereggsground", - }, - { - children = { - { - fileId = "198522", - value = "cavekoboldspidereggssack.m2", - text = "cavekoboldspidereggssack.m2", - }, - { - fileId = "198525", - value = "spidereggsack02.m2", - text = "spidereggsack02.m2", - }, - { - fileId = "198526", - value = "spidereggsack03.m2", - text = "spidereggsack03.m2", - }, - { - fileId = "198527", - value = "spidereggsack04.m2", - text = "spidereggsack04.m2", - }, - }, - value = "spidereggssack", - text = "spidereggssack", - }, - { - children = { - { - fileId = "198538", - value = "busthf01.m2", - text = "busthf01.m2", - }, - { - fileId = "198539", - value = "busthf02.m2", - text = "busthf02.m2", - }, - { - fileId = "198540", - value = "busthf04.m2", - text = "busthf04.m2", - }, - { - fileId = "198542", - value = "busthm01.m2", - text = "busthm01.m2", - }, - { - fileId = "198544", - value = "busthm02.m2", - text = "busthm02.m2", - }, - { - fileId = "198551", - value = "duskstatue01.m2", - text = "duskstatue01.m2", - }, - { - fileId = "198552", - value = "duskstatue02.m2", - text = "duskstatue02.m2", - }, - { - fileId = "198558", - value = "northshireabbeybust01.m2", - text = "northshireabbeybust01.m2", - }, - { - fileId = "198559", - value = "statuealleria.m2", - text = "statuealleria.m2", - }, - { - fileId = "198560", - value = "statuedanath.m2", - text = "statuedanath.m2", - }, - { - fileId = "198561", - value = "statuekhadgar.m2", - text = "statuekhadgar.m2", - }, - { - fileId = "198562", - value = "statuekurdran.m2", - text = "statuekurdran.m2", - }, - { - fileId = "198563", - value = "statuelion.m2", - text = "statuelion.m2", - }, - { - fileId = "198564", - value = "statueturalyon.m2", - text = "statueturalyon.m2", - }, - { - fileId = "198570", - value = "utherstatue.m2", - text = "utherstatue.m2", - }, - }, - value = "statues", - text = "statues", - }, - { - children = { - { - fileId = "198571", - value = "deadminesteam01.m2", - text = "deadminesteam01.m2", - }, - { - fileId = "198572", - value = "deadminesteam02.m2", - text = "deadminesteam02.m2", - }, - }, - value = "steam", - text = "steam", - }, - { - children = { - { - fileId = "198573", - value = "deadminesteamgauge01.m2", - text = "deadminesteamgauge01.m2", - }, - { - fileId = "198574", - value = "deadminesteamgauge02.m2", - text = "deadminesteamgauge02.m2", - }, - { - fileId = "198575", - value = "deadminesteamgauge03.m2", - text = "deadminesteamgauge03.m2", - }, - }, - value = "steamgauges", - text = "steamgauges", - }, - { - children = { - { - fileId = "198576", - value = "deadminesteamwhistle.m2", - text = "deadminesteamwhistle.m2", - }, - { - fileId = "198577", - value = "deadminesteamwhistleon.m2", - text = "deadminesteamwhistleon.m2", - }, - }, - value = "steamwhistles", - text = "steamwhistles", - }, - { - children = { - { - fileId = "198578", - value = "genericfencepost.m2", - text = "genericfencepost.m2", - }, - { - fileId = "198580", - value = "genericwroughtfence01.m2", - text = "genericwroughtfence01.m2", - }, - }, - value = "stonefence", - text = "stonefence", - }, - { - children = { - { - fileId = "198581", - value = "stonepyre01.m2", - text = "stonepyre01.m2", - }, - }, - value = "stonepyres", - text = "stonepyres", - }, - { - children = { - { - fileId = "198582", - value = "alliancemaptable.m2", - text = "alliancemaptable.m2", - }, - { - fileId = "198590", - value = "stormwinddoor.m2", - text = "stormwinddoor.m2", - }, - { - fileId = "198591", - value = "stormwindnightelftree.m2", - text = "stormwindnightelftree.m2", - }, - { - fileId = "198592", - value = "treefacade01.m2", - text = "treefacade01.m2", - }, - { - fileId = "198593", - value = "treefacade02.m2", - text = "treefacade02.m2", - }, - }, - value = "stormwind", - text = "stormwind", - }, - { - children = { - { - fileId = "198595", - value = "potbellystove.m2", - text = "potbellystove.m2", - }, - { - fileId = "198596", - value = "potbellystovepipe.m2", - text = "potbellystovepipe.m2", - }, - { - fileId = "198597", - value = "potbellystovewall.m2", - text = "potbellystovewall.m2", - }, - }, - value = "stoves", - text = "stoves", - }, - { - children = { - { - fileId = "198598", - value = "bloodytable1.m2", - text = "bloodytable1.m2", - }, - { - fileId = "198599", - value = "bloodytable2.m2", - text = "bloodytable2.m2", - }, - { - fileId = "198600", - value = "bloodytable3.m2", - text = "bloodytable3.m2", - }, - { - fileId = "198602", - value = "duskwoodtable01.m2", - text = "duskwoodtable01.m2", - }, - { - fileId = "198603", - value = "inntable.m2", - text = "inntable.m2", - }, - { - fileId = "198604", - value = "inntablesmall.m2", - text = "inntablesmall.m2", - }, - { - fileId = "198605", - value = "inntabletiny.m2", - text = "inntabletiny.m2", - }, - { - fileId = "198608", - value = "shadowfangtable01.m2", - text = "shadowfangtable01.m2", - }, - { - fileId = "198609", - value = "shadowfangtable02.m2", - text = "shadowfangtable02.m2", - }, - }, - value = "tables", - text = "tables", - }, - { - children = { - { - fileId = "198611", - value = "generalironmaiden01.m2", - text = "generalironmaiden01.m2", - }, - { - fileId = "198612", - value = "generalrack01.m2", - text = "generalrack01.m2", - }, - { - fileId = "198613", - value = "generalstocks01.m2", - text = "generalstocks01.m2", - }, - }, - value = "torturedevices", - text = "torturedevices", - }, - { - children = { - { - fileId = "198616", - value = "deadminevalve.m2", - text = "deadminevalve.m2", - }, - }, - value = "valves", - text = "valves", - }, - { - children = { - { - fileId = "198617", - value = "deadminevalvesteam01.m2", - text = "deadminevalvesteam01.m2", - }, - { - fileId = "198618", - value = "deadminevalvesteam02.m2", - text = "deadminevalvesteam02.m2", - }, - }, - value = "valvesteam", - text = "valvesteam", - }, - { - children = { - { - fileId = "198619", - value = "deadminevalvewaterdrip.m2", - text = "deadminevalvewaterdrip.m2", - }, - }, - value = "valvewaterdrip", - text = "valvewaterdrip", - }, - { - children = { - { - fileId = "198620", - value = "stormwindvendorawning01.m2", - text = "stormwindvendorawning01.m2", - }, - }, - value = "vendorawnings", - text = "vendorawnings", - }, - { - children = { - { - fileId = "198621", - value = "stormwindvendortent01.m2", - text = "stormwindvendortent01.m2", - }, - }, - value = "vendortents", - text = "vendortents", - }, - { - children = { - { - fileId = "198626", - value = "smallvials.m2", - text = "smallvials.m2", - }, - { - fileId = "198630", - value = "vialsbottles.m2", - text = "vialsbottles.m2", - }, - }, - value = "vials", - text = "vials", - }, - { - children = { - { - fileId = "198632", - value = "greatwall_portcullis.m2", - text = "greatwall_portcullis.m2", - }, - }, - value = "walls", - text = "walls", - }, - { - children = { - { - fileId = "198633", - value = "duskwoodwardrobe01.m2", - text = "duskwoodwardrobe01.m2", - }, - { - fileId = "198634", - value = "duskwoodwardrobe02.m2", - text = "duskwoodwardrobe02.m2", - }, - }, - value = "wardrobe", - text = "wardrobe", - }, - { - children = { - { - fileId = "198635", - value = "deadminewaterdrops.m2", - text = "deadminewaterdrops.m2", - }, - }, - value = "waterdrops", - text = "waterdrops", - }, - { - children = { - { - fileId = "198636", - value = "generalweaponrack01.m2", - text = "generalweaponrack01.m2", - }, - }, - value = "weaponracks", - text = "weaponracks", - }, - { - children = { - { - fileId = "198637", - value = "2sidedpickaxe.m2", - text = "2sidedpickaxe.m2", - }, - { - fileId = "198639", - value = "crimsonwallshield01.m2", - text = "crimsonwallshield01.m2", - }, - { - fileId = "198642", - value = "humanarrow.m2", - text = "humanarrow.m2", - }, - { - fileId = "198643", - value = "humanarrows.m2", - text = "humanarrows.m2", - }, - { - fileId = "198644", - value = "humanaxe01.m2", - text = "humanaxe01.m2", - }, - { - fileId = "198645", - value = "humanaxe02.m2", - text = "humanaxe02.m2", - }, - { - fileId = "198646", - value = "humanbow01.m2", - text = "humanbow01.m2", - }, - { - fileId = "198647", - value = "humanbow02.m2", - text = "humanbow02.m2", - }, - { - fileId = "198648", - value = "humanhammer01.m2", - text = "humanhammer01.m2", - }, - { - fileId = "198649", - value = "humanhammer02.m2", - text = "humanhammer02.m2", - }, - { - fileId = "198650", - value = "humanmace01.m2", - text = "humanmace01.m2", - }, - { - fileId = "198651", - value = "humanmace02.m2", - text = "humanmace02.m2", - }, - { - fileId = "198652", - value = "humanspear01.m2", - text = "humanspear01.m2", - }, - { - fileId = "198653", - value = "humanspear02.m2", - text = "humanspear02.m2", - }, - { - fileId = "198654", - value = "humanstaff01.m2", - text = "humanstaff01.m2", - }, - { - fileId = "198655", - value = "humanstaff02.m2", - text = "humanstaff02.m2", - }, - { - fileId = "198656", - value = "humansword01.m2", - text = "humansword01.m2", - }, - { - fileId = "198657", - value = "humansword02.m2", - text = "humansword02.m2", - }, - { - fileId = "198658", - value = "orcarrow.m2", - text = "orcarrow.m2", - }, - { - fileId = "198660", - value = "wallshield03.m2", - text = "wallshield03.m2", - }, - { - fileId = "198662", - value = "wallsword01.m2", - text = "wallsword01.m2", - }, - }, - value = "weapons&armor", - text = "weapons&armor", - }, - { - fileId = "198664", - value = "westfallgrainsilodestroyed01.m2", - text = "westfallgrainsilodestroyed01.m2", - }, - { - children = { - { - fileId = "198665", - value = "generalwoodendummy02.m2", - text = "generalwoodendummy02.m2", - }, - { - fileId = "198666", - value = "stormwindwoodendummy01.m2", - text = "stormwindwoodendummy01.m2", - }, - }, - value = "woodendummies", - text = "woodendummies", - }, - { - children = { - { - fileId = "198668", - value = "rail_wooden01.m2", - text = "rail_wooden01.m2", - }, - { - fileId = "198669", - value = "rail_wooden02.m2", - text = "rail_wooden02.m2", - }, - }, - value = "woodenrails", - text = "woodenrails", - }, - { - children = { - { - fileId = "198670", - value = "woodenstairs01.m2", - text = "woodenstairs01.m2", - }, - { - fileId = "198671", - value = "woodenstairs02.m2", - text = "woodenstairs02.m2", - }, - }, - value = "woodenstairs", - text = "woodenstairs", - }, - { - children = { - { - fileId = "198672", - value = "wreckedbuildinghbase01.m2", - text = "wreckedbuildinghbase01.m2", - }, - { - fileId = "198673", - value = "wreckedbuildinghbase02.m2", - text = "wreckedbuildinghbase02.m2", - }, - { - fileId = "198674", - value = "wreckedbuildinghbase03.m2", - text = "wreckedbuildinghbase03.m2", - }, - { - fileId = "198675", - value = "wreckedbuildinghredbrick01.m2", - text = "wreckedbuildinghredbrick01.m2", - }, - { - fileId = "198676", - value = "wreckedbuildinghwall01.m2", - text = "wreckedbuildinghwall01.m2", - }, - { - fileId = "198677", - value = "wreckedbuildinghwall02.m2", - text = "wreckedbuildinghwall02.m2", - }, - }, - value = "wreckedbuildings", - text = "wreckedbuildings", - }, - }, - value = "passive doodads", - text = "passive doodads", - }, - { - children = { - { - children = { - { - fileId = "198678", - value = "prisoncell01.m2", - text = "prisoncell01.m2", - }, - }, - value = "prisoncell", - text = "prisoncell", - }, - }, - value = "passivedoodads", - text = "passivedoodads", - }, - }, - value = "human", - text = "human", - }, - { - children = { - { - children = { - { - children = { - { - fileId = "198708", - value = "makurashells01.m2", - text = "makurashells01.m2", - }, - { - fileId = "198709", - value = "makurashells02.m2", - text = "makurashells02.m2", - }, - { - fileId = "198710", - value = "makurashells03.m2", - text = "makurashells03.m2", - }, - { - fileId = "198711", - value = "makurashells04.m2", - text = "makurashells04.m2", - }, - { - fileId = "198712", - value = "makurashells05.m2", - text = "makurashells05.m2", - }, - { - fileId = "198713", - value = "makurashells06.m2", - text = "makurashells06.m2", - }, - { - fileId = "198714", - value = "makurashells07.m2", - text = "makurashells07.m2", - }, - { - fileId = "198715", - value = "makurashells08.m2", - text = "makurashells08.m2", - }, - }, - value = "makurashells", - text = "makurashells", - }, - }, - value = "passive doodads", - text = "passive doodads", - }, - }, - value = "makura", - text = "makura", - }, - { - children = { - { - children = { - { - children = { - { - fileId = "198717", - value = "murlocaltar_01.m2", - text = "murlocaltar_01.m2", - }, - }, - value = "altars", - text = "altars", - }, - { - children = { - { - fileId = "198719", - value = "greatpearl_01.m2", - text = "greatpearl_01.m2", - }, - }, - value = "pearl", - text = "pearl", - }, - }, - value = "passive doodads", - text = "passive doodads", - }, - }, - value = "murloc", - text = "murloc", - }, - { - children = { - { - children = { - { - children = { - { - fileId = "198720", - value = "bfd_brassdoors.m2", - text = "bfd_brassdoors.m2", - }, - }, - value = "doors", - text = "doors", - }, - }, - value = "activedoodads", - text = "activedoodads", - }, - { - children = { - { - children = { - { - fileId = "198725", - value = "nightelfowlbanner01.m2", - text = "nightelfowlbanner01.m2", - }, - { - fileId = "198726", - value = "nightelfowlbanner02.m2", - text = "nightelfowlbanner02.m2", - }, - { - fileId = "198727", - value = "nightelfowlbanner03.m2", - text = "nightelfowlbanner03.m2", - }, - { - fileId = "198729", - value = "nightelftreebanner01.m2", - text = "nightelftreebanner01.m2", - }, - { - fileId = "198731", - value = "nightelftreebanner02.m2", - text = "nightelftreebanner02.m2", - }, - }, - value = "banners", - text = "banners", - }, - { - children = { - { - fileId = "198733", - value = "elfbarrel01.m2", - text = "elfbarrel01.m2", - }, - }, - value = "barrel", - text = "barrel", - }, - { - children = { - { - fileId = "198734", - value = "elfbed01.m2", - text = "elfbed01.m2", - }, - { - fileId = "198735", - value = "elfbed02.m2", - text = "elfbed02.m2", - }, - { - fileId = "198736", - value = "elfbed03.m2", - text = "elfbed03.m2", - }, - }, - value = "beds", - text = "beds", - }, - { - children = { - { - fileId = "198741", - value = "nightelfbowl.m2", - text = "nightelfbowl.m2", - }, - }, - value = "bowls", - text = "bowls", - }, - { - children = { - { - fileId = "198743", - value = "ne_candle01.m2", - text = "ne_candle01.m2", - }, - { - fileId = "198744", - value = "ne_floatingcandles.m2", - text = "ne_floatingcandles.m2", - }, - }, - value = "candles", - text = "candles", - }, - { - children = { - { - fileId = "198748", - value = "elfcrate01.m2", - text = "elfcrate01.m2", - }, - }, - value = "crates", - text = "crates", - }, - { - children = { - { - fileId = "198749", - value = "ne_dresser01.m2", - text = "ne_dresser01.m2", - }, - }, - value = "dressers", - text = "dressers", - }, - { - children = { - { - fileId = "198752", - value = "wailingdruidbed.m2", - text = "wailingdruidbed.m2", - }, - }, - value = "druidbeds", - text = "druidbeds", - }, - { - children = { - { - fileId = "198754", - value = "elvenfountain.m2", - text = "elvenfountain.m2", - }, - }, - value = "fountains", - text = "fountains", - }, - { - children = { - { - fileId = "198755", - value = "elvenstonestool01.m2", - text = "elvenstonestool01.m2", - }, - { - fileId = "198756", - value = "elvenstonetable01.m2", - text = "elvenstonetable01.m2", - }, - { - fileId = "198757", - value = "stonebench01.m2", - text = "stonebench01.m2", - }, - }, - value = "furniture", - text = "furniture", - }, - { - children = { - { - fileId = "198758", - value = "gardenbench01.m2", - text = "gardenbench01.m2", - }, - { - fileId = "198759", - value = "gardenbench02.m2", - text = "gardenbench02.m2", - }, - { - fileId = "198760", - value = "gardenbench03.m2", - text = "gardenbench03.m2", - }, - }, - value = "gardenbenches", - text = "gardenbenches", - }, - { - children = { - { - fileId = "198761", - value = "kalidarmoongate.m2", - text = "kalidarmoongate.m2", - }, - }, - value = "gates", - text = "gates", - }, - { - children = { - { - fileId = "198762", - value = "kalidargazibo.m2", - text = "kalidargazibo.m2", - }, - }, - value = "gazibos", - text = "gazibos", - }, - { - children = { - { - fileId = "198764", - value = "nightelfglaivethrower_doodad01.m2", - text = "nightelfglaivethrower_doodad01.m2", - }, - { - fileId = "198765", - value = "nightelfglaivethrowerblade_doodad01.m2", - text = "nightelfglaivethrowerblade_doodad01.m2", - }, - }, - value = "glaivethrower", - text = "glaivethrower", - }, - { - children = { - { - fileId = "198768", - value = "hippogryphroost.m2", - text = "hippogryphroost.m2", - }, - }, - value = "hippogryphroost", - text = "hippogryphroost", - }, - { - children = { - { - fileId = "198770", - value = "darnassusstreetlamp01.m2", - text = "darnassusstreetlamp01.m2", - }, - { - fileId = "198771", - value = "darnassusstreetlamp02.m2", - text = "darnassusstreetlamp02.m2", - }, - { - fileId = "198772", - value = "darnassuswreckedstreetlamp01.m2", - text = "darnassuswreckedstreetlamp01.m2", - }, - { - fileId = "198773", - value = "darnassuswreckedstreetlamp02.m2", - text = "darnassuswreckedstreetlamp02.m2", - }, - { - fileId = "198776", - value = "kalidarstreetlamp01.m2", - text = "kalidarstreetlamp01.m2", - }, - { - fileId = "198777", - value = "kalidarstreetlamp02.m2", - text = "kalidarstreetlamp02.m2", - }, - }, - value = "lamps", - text = "lamps", - }, - { - children = { - { - fileId = "198779", - value = "nightelfhanginglantern.m2", - text = "nightelfhanginglantern.m2", - }, - { - fileId = "198780", - value = "nightelflantern01.m2", - text = "nightelflantern01.m2", - }, - { - fileId = "198781", - value = "nightelflantern02.m2", - text = "nightelflantern02.m2", - }, - }, - value = "lanterns", - text = "lanterns", - }, - { - children = { - { - fileId = "198785", - value = "nemagicimplement01.m2", - text = "nemagicimplement01.m2", - }, - { - fileId = "198786", - value = "nemagicimplement02.m2", - text = "nemagicimplement02.m2", - }, - { - fileId = "198787", - value = "nemagicimplement03.m2", - text = "nemagicimplement03.m2", - }, - { - fileId = "198788", - value = "nemagicimplement04.m2", - text = "nemagicimplement04.m2", - }, - { - fileId = "198789", - value = "nemagicimplement05.m2", - text = "nemagicimplement05.m2", - }, - { - fileId = "198790", - value = "nemagicimplement06.m2", - text = "nemagicimplement06.m2", - }, - { - fileId = "198791", - value = "nemagicimplement07.m2", - text = "nemagicimplement07.m2", - }, - { - fileId = "198792", - value = "nemagicimplement08.m2", - text = "nemagicimplement08.m2", - }, - { - fileId = "198793", - value = "nemagicimplement09.m2", - text = "nemagicimplement09.m2", - }, - { - fileId = "198794", - value = "nemagicimplement10.m2", - text = "nemagicimplement10.m2", - }, - }, - value = "magicalimplements", - text = "magicalimplements", - }, - { - children = { - { - fileId = "198798", - value = "moonwelllight.m2", - text = "moonwelllight.m2", - }, - }, - value = "moonwelllight", - text = "moonwelllight", - }, - { - children = { - { - fileId = "198801", - value = "elvenpottery01.m2", - text = "elvenpottery01.m2", - }, - { - fileId = "198802", - value = "elvenpottery02.m2", - text = "elvenpottery02.m2", - }, - { - fileId = "198803", - value = "elvenpottery03.m2", - text = "elvenpottery03.m2", - }, - { - fileId = "198804", - value = "elvenpottery04.m2", - text = "elvenpottery04.m2", - }, - }, - value = "pottery", - text = "pottery", - }, - { - children = { - { - fileId = "198805", - value = "aszharapvp_walls_01.m2", - text = "aszharapvp_walls_01.m2", - }, - { - fileId = "198806", - value = "aszharapvp_walls_02.m2", - text = "aszharapvp_walls_02.m2", - }, - { - fileId = "198807", - value = "aszharapvp_walls_03.m2", - text = "aszharapvp_walls_03.m2", - }, - }, - value = "pvpwalls", - text = "pvpwalls", - }, - { - children = { - { - fileId = "198808", - value = "azrelfruin01.m2", - text = "azrelfruin01.m2", - }, - { - fileId = "198809", - value = "azrelfruin02.m2", - text = "azrelfruin02.m2", - }, - { - fileId = "198810", - value = "azrelfruin03.m2", - text = "azrelfruin03.m2", - }, - { - fileId = "198811", - value = "azrelfruin04.m2", - text = "azrelfruin04.m2", - }, - { - fileId = "198812", - value = "azrelfruin05.m2", - text = "azrelfruin05.m2", - }, - { - fileId = "198813", - value = "azrelfruin06.m2", - text = "azrelfruin06.m2", - }, - { - fileId = "198814", - value = "azrelfruin07.m2", - text = "azrelfruin07.m2", - }, - { - fileId = "198815", - value = "azrelfruin08.m2", - text = "azrelfruin08.m2", - }, - { - fileId = "198816", - value = "azrelfruin09.m2", - text = "azrelfruin09.m2", - }, - { - fileId = "198817", - value = "azrelfruin10.m2", - text = "azrelfruin10.m2", - }, - { - fileId = "198824", - value = "newelfruin01.m2", - text = "newelfruin01.m2", - }, - { - fileId = "198825", - value = "newelfruin02.m2", - text = "newelfruin02.m2", - }, - { - fileId = "198826", - value = "newelfruin03.m2", - text = "newelfruin03.m2", - }, - { - fileId = "198827", - value = "newelfruin04.m2", - text = "newelfruin04.m2", - }, - { - fileId = "198828", - value = "newelfruin05.m2", - text = "newelfruin05.m2", - }, - { - fileId = "198829", - value = "newelfruin06.m2", - text = "newelfruin06.m2", - }, - { - fileId = "198830", - value = "newelfruin07.m2", - text = "newelfruin07.m2", - }, - { - fileId = "198831", - value = "newelfruin08.m2", - text = "newelfruin08.m2", - }, - { - fileId = "198832", - value = "newelfruin09.m2", - text = "newelfruin09.m2", - }, - { - fileId = "198833", - value = "newelfruin10.m2", - text = "newelfruin10.m2", - }, - { - fileId = "198834", - value = "nightelfruins01.m2", - text = "nightelfruins01.m2", - }, - { - fileId = "198835", - value = "nightelfruins02.m2", - text = "nightelfruins02.m2", - }, - { - fileId = "198836", - value = "nightelfruins03.m2", - text = "nightelfruins03.m2", - }, - { - fileId = "198837", - value = "nightelfruins04.m2", - text = "nightelfruins04.m2", - }, - { - fileId = "198838", - value = "nightelfruins05.m2", - text = "nightelfruins05.m2", - }, - { - fileId = "198839", - value = "nightelfruins07.m2", - text = "nightelfruins07.m2", - }, - }, - value = "ruins", - text = "ruins", - }, - { - children = { - { - fileId = "198842", - value = "ne_screen01.m2", - text = "ne_screen01.m2", - }, - }, - value = "screens", - text = "screens", - }, - { - children = { - { - fileId = "198845", - value = "nightelfsignpost01.m2", - text = "nightelfsignpost01.m2", - }, - { - fileId = "198846", - value = "nightelfsignpost02.m2", - text = "nightelfsignpost02.m2", - }, - { - fileId = "198847", - value = "nightelfsignpostpointer01.m2", - text = "nightelfsignpostpointer01.m2", - }, - { - fileId = "198848", - value = "nightelfsignpostpointer02.m2", - text = "nightelfsignpostpointer02.m2", - }, - }, - value = "signposts", - text = "signposts", - }, - { - children = { - { - fileId = "198888", - value = "nightelfshopsignbase01.m2", - text = "nightelfshopsignbase01.m2", - }, - { - fileId = "198889", - value = "nightelfsign_alchemist.m2", - text = "nightelfsign_alchemist.m2", - }, - { - fileId = "198890", - value = "nightelfsign_armory.m2", - text = "nightelfsign_armory.m2", - }, - { - fileId = "198891", - value = "nightelfsign_axes.m2", - text = "nightelfsign_axes.m2", - }, - { - fileId = "198892", - value = "nightelfsign_bags.m2", - text = "nightelfsign_bags.m2", - }, - { - fileId = "198893", - value = "nightelfsign_baker.m2", - text = "nightelfsign_baker.m2", - }, - { - fileId = "198894", - value = "nightelfsign_bank.m2", - text = "nightelfsign_bank.m2", - }, - { - fileId = "198895", - value = "nightelfsign_blacksmith.m2", - text = "nightelfsign_blacksmith.m2", - }, - { - fileId = "198896", - value = "nightelfsign_bows.m2", - text = "nightelfsign_bows.m2", - }, - { - fileId = "198897", - value = "nightelfsign_breadshop.m2", - text = "nightelfsign_breadshop.m2", - }, - { - fileId = "198898", - value = "nightelfsign_cartography.m2", - text = "nightelfsign_cartography.m2", - }, - { - fileId = "198899", - value = "nightelfsign_clotharmor.m2", - text = "nightelfsign_clotharmor.m2", - }, - { - fileId = "198900", - value = "nightelfsign_cooking.m2", - text = "nightelfsign_cooking.m2", - }, - { - fileId = "198901", - value = "nightelfsign_daggers.m2", - text = "nightelfsign_daggers.m2", - }, - { - fileId = "198902", - value = "nightelfsign_drinks.m2", - text = "nightelfsign_drinks.m2", - }, - { - fileId = "198903", - value = "nightelfsign_enchanting.m2", - text = "nightelfsign_enchanting.m2", - }, - { - fileId = "198904", - value = "nightelfsign_engineering.m2", - text = "nightelfsign_engineering.m2", - }, - { - fileId = "198905", - value = "nightelfsign_firstaid.m2", - text = "nightelfsign_firstaid.m2", - }, - { - fileId = "198906", - value = "nightelfsign_fishing.m2", - text = "nightelfsign_fishing.m2", - }, - { - fileId = "198907", - value = "nightelfsign_fletcher.m2", - text = "nightelfsign_fletcher.m2", - }, - { - fileId = "198908", - value = "nightelfsign_florist.m2", - text = "nightelfsign_florist.m2", - }, - { - fileId = "198909", - value = "nightelfsign_general.m2", - text = "nightelfsign_general.m2", - }, - { - fileId = "198910", - value = "nightelfsign_herbalist.m2", - text = "nightelfsign_herbalist.m2", - }, - { - fileId = "198911", - value = "nightelfsign_hippogryph.m2", - text = "nightelfsign_hippogryph.m2", - }, - { - fileId = "198912", - value = "nightelfsign_inscribing.m2", - text = "nightelfsign_inscribing.m2", - }, - { - fileId = "198913", - value = "nightelfsign_leatherarmor.m2", - text = "nightelfsign_leatherarmor.m2", - }, - { - fileId = "198914", - value = "nightelfsign_lockpicking.m2", - text = "nightelfsign_lockpicking.m2", - }, - { - fileId = "198915", - value = "nightelfsign_maces.m2", - text = "nightelfsign_maces.m2", - }, - { - fileId = "198916", - value = "nightelfsign_magicshop.m2", - text = "nightelfsign_magicshop.m2", - }, - { - fileId = "198917", - value = "nightelfsign_mailarmor.m2", - text = "nightelfsign_mailarmor.m2", - }, - { - fileId = "198918", - value = "nightelfsign_meatshop.m2", - text = "nightelfsign_meatshop.m2", - }, - { - fileId = "198919", - value = "nightelfsign_mining.m2", - text = "nightelfsign_mining.m2", - }, - { - fileId = "198920", - value = "nightelfsign_noblehouse.m2", - text = "nightelfsign_noblehouse.m2", - }, - { - fileId = "198921", - value = "nightelfsign_poisons.m2", - text = "nightelfsign_poisons.m2", - }, - { - fileId = "198922", - value = "nightelfsign_shields.m2", - text = "nightelfsign_shields.m2", - }, - { - fileId = "198923", - value = "nightelfsign_staves.m2", - text = "nightelfsign_staves.m2", - }, - { - fileId = "198924", - value = "nightelfsign_swords.m2", - text = "nightelfsign_swords.m2", - }, - { - fileId = "198925", - value = "nightelfsign_tabard.m2", - text = "nightelfsign_tabard.m2", - }, - { - fileId = "198926", - value = "nightelfsign_tailor.m2", - text = "nightelfsign_tailor.m2", - }, - { - fileId = "198927", - value = "nightelfsign_tavern.m2", - text = "nightelfsign_tavern.m2", - }, - { - fileId = "198928", - value = "nightelfsign_weaponsmith.m2", - text = "nightelfsign_weaponsmith.m2", - }, - { - fileId = "198929", - value = "nightelfsign_welcome.m2", - text = "nightelfsign_welcome.m2", - }, - { - fileId = "198930", - value = "nightelfsign_wine.m2", - text = "nightelfsign_wine.m2", - }, - }, - value = "signs", - text = "signs", - }, - { - children = { - { - fileId = "198931", - value = "kalidarwoodstatue02.m2", - text = "kalidarwoodstatue02.m2", - }, - }, - value = "statue", - text = "statue", - }, - { - children = { - { - fileId = "2198619", - value = "druidstone.m2", - text = "druidstone.m2", - }, - { - fileId = "198936", - value = "kalidarwoodstatue01.m2", - text = "kalidarwoodstatue01.m2", - }, - { - fileId = "198942", - value = "statueaszharaarm.m2", - text = "statueaszharaarm.m2", - }, - { - fileId = "198943", - value = "statueaszharafeet.m2", - text = "statueaszharafeet.m2", - }, - { - fileId = "198944", - value = "statueaszharahead.m2", - text = "statueaszharahead.m2", - }, - { - fileId = "198945", - value = "statuenepriestess.m2", - text = "statuenepriestess.m2", - }, - { - fileId = "198946", - value = "woodwreckedstatue02.m2", - text = "woodwreckedstatue02.m2", - }, - }, - value = "statues", - text = "statues", - }, - { - children = { - { - fileId = "198947", - value = "steppingstone01.m2", - text = "steppingstone01.m2", - }, - { - fileId = "198948", - value = "steppingstone02.m2", - text = "steppingstone02.m2", - }, - }, - value = "steppingstones", - text = "steppingstones", - }, - { - children = { - { - fileId = "198949", - value = "kalidarstonerune01.m2", - text = "kalidarstonerune01.m2", - }, - { - fileId = "198950", - value = "kalidarstonerune02.m2", - text = "kalidarstonerune02.m2", - }, - { - fileId = "198951", - value = "kalidarstonerune03.m2", - text = "kalidarstonerune03.m2", - }, - }, - value = "stonerunes", - text = "stonerunes", - }, - { - children = { - { - fileId = "198952", - value = "elvenwoodentable01.m2", - text = "elvenwoodentable01.m2", - }, - }, - value = "tables", - text = "tables", - }, - { - children = { - { - fileId = "198955", - value = "taxiflagnightelf.m2", - text = "taxiflagnightelf.m2", - }, - }, - value = "taxiflags", - text = "taxiflags", - }, - { - children = { - { - fileId = "198959", - value = "teleporttree.m2", - text = "teleporttree.m2", - }, - }, - value = "teleporttree", - text = "teleporttree", - }, - { - children = { - { - fileId = "198960", - value = "nightelfwarningtotem_01.m2", - text = "nightelfwarningtotem_01.m2", - }, - { - fileId = "198961", - value = "nightelfwarningtotem_02.m2", - text = "nightelfwarningtotem_02.m2", - }, - { - fileId = "198962", - value = "nightelfwarningtotem_03.m2", - text = "nightelfwarningtotem_03.m2", - }, - }, - value = "totems", - text = "totems", - }, - { - children = { - { - fileId = "198965", - value = "nightelfcart.m2", - text = "nightelfcart.m2", - }, - { - fileId = "198969", - value = "nightelfwagon.m2", - text = "nightelfwagon.m2", - }, - }, - value = "wagons", - text = "wagons", - }, - { - children = { - { - fileId = "198972", - value = "elfwallhanging01.m2", - text = "elfwallhanging01.m2", - }, - { - fileId = "198973", - value = "elfwallhanging02.m2", - text = "elfwallhanging02.m2", - }, - { - fileId = "198974", - value = "elfwallhanging03.m2", - text = "elfwallhanging03.m2", - }, - { - fileId = "198975", - value = "elfwallhanging04.m2", - text = "elfwallhanging04.m2", - }, - { - fileId = "198976", - value = "elfwallhanging05.m2", - text = "elfwallhanging05.m2", - }, - { - fileId = "198977", - value = "elfwallhanging06.m2", - text = "elfwallhanging06.m2", - }, - { - fileId = "198978", - value = "elfwallhanging07.m2", - text = "elfwallhanging07.m2", - }, - { - fileId = "198979", - value = "elfwallhanging08.m2", - text = "elfwallhanging08.m2", - }, - { - fileId = "198980", - value = "elfwallhanging09.m2", - text = "elfwallhanging09.m2", - }, - { - fileId = "198981", - value = "elfwallhanging10.m2", - text = "elfwallhanging10.m2", - }, - { - fileId = "198982", - value = "elfwallhanging11.m2", - text = "elfwallhanging11.m2", - }, - { - fileId = "198983", - value = "elfwallhanging12.m2", - text = "elfwallhanging12.m2", - }, - }, - value = "wallhangings", - text = "wallhangings", - }, - }, - value = "passive doodads", - text = "passive doodads", - }, - }, - value = "nightelf", - text = "nightelf", - }, - { - children = { - { - children = { - { - children = { - { - fileId = "198984", - value = "glowingogrehead.m2", - text = "glowingogrehead.m2", - }, - { - fileId = "198986", - value = "pikeforked.m2", - text = "pikeforked.m2", - }, - }, - value = "ogrehead", - text = "ogrehead", - }, - }, - value = "activedoodads", - text = "activedoodads", - }, - { - children = { - { - children = { - { - fileId = "198987", - value = "gruul_facade_01.m2", - text = "gruul_facade_01.m2", - }, - }, - value = "gronnfacade", - text = "gronnfacade", - }, - { - children = { - { - fileId = "198988", - value = "portcullis_gronn.m2", - text = "portcullis_gronn.m2", - }, - }, - value = "gronngates", - text = "gronngates", - }, - { - children = { - { - fileId = "198989", - value = "ogrebackpack01.m2", - text = "ogrebackpack01.m2", - }, - { - fileId = "198990", - value = "ogrebackpack02.m2", - text = "ogrebackpack02.m2", - }, - }, - value = "ogrebackpacks", - text = "ogrebackpacks", - }, - { - children = { - { - fileId = "198992", - value = "ogremeatchain01.m2", - text = "ogremeatchain01.m2", - }, - { - fileId = "198994", - value = "ogremeatchain02.m2", - text = "ogremeatchain02.m2", - }, - { - fileId = "198995", - value = "ogremeatchain03.m2", - text = "ogremeatchain03.m2", - }, - { - fileId = "198996", - value = "ogremeatchain04.m2", - text = "ogremeatchain04.m2", - }, - }, - value = "ogremeatchains", - text = "ogremeatchains", - }, - { - children = { - { - fileId = "198998", - value = "brogremoundrock01.m2", - text = "brogremoundrock01.m2", - }, - { - fileId = "198999", - value = "brogremoundrock02.m2", - text = "brogremoundrock02.m2", - }, - { - fileId = "199000", - value = "brogremoundrock03.m2", - text = "brogremoundrock03.m2", - }, - { - fileId = "199001", - value = "brogremoundrock04.m2", - text = "brogremoundrock04.m2", - }, - { - fileId = "199002", - value = "brogremoundrock05.m2", - text = "brogremoundrock05.m2", - }, - { - fileId = "199003", - value = "brogremoundrock06.m2", - text = "brogremoundrock06.m2", - }, - { - fileId = "199004", - value = "grogremoundrock01.m2", - text = "grogremoundrock01.m2", - }, - { - fileId = "199005", - value = "grogremoundrock02.m2", - text = "grogremoundrock02.m2", - }, - { - fileId = "199006", - value = "grogremoundrock03.m2", - text = "grogremoundrock03.m2", - }, - { - fileId = "199007", - value = "grogremoundrock04.m2", - text = "grogremoundrock04.m2", - }, - { - fileId = "199008", - value = "grogremoundrock05.m2", - text = "grogremoundrock05.m2", - }, - { - fileId = "199009", - value = "grogremoundrock06.m2", - text = "grogremoundrock06.m2", - }, - { - fileId = "199010", - value = "ogremoundrock01.m2", - text = "ogremoundrock01.m2", - }, - { - fileId = "199011", - value = "ogremoundrock02.m2", - text = "ogremoundrock02.m2", - }, - { - fileId = "199012", - value = "ogremoundrock03.m2", - text = "ogremoundrock03.m2", - }, - { - fileId = "199013", - value = "ogremoundrock04.m2", - text = "ogremoundrock04.m2", - }, - { - fileId = "199014", - value = "ogremoundrock05.m2", - text = "ogremoundrock05.m2", - }, - { - fileId = "199015", - value = "ogremoundrock06.m2", - text = "ogremoundrock06.m2", - }, - { - fileId = "199016", - value = "snogremoundrock01.m2", - text = "snogremoundrock01.m2", - }, - { - fileId = "199017", - value = "snogremoundrock02.m2", - text = "snogremoundrock02.m2", - }, - { - fileId = "199018", - value = "snogremoundrock03.m2", - text = "snogremoundrock03.m2", - }, - { - fileId = "199019", - value = "snogremoundrock04.m2", - text = "snogremoundrock04.m2", - }, - { - fileId = "199020", - value = "snogremoundrock05.m2", - text = "snogremoundrock05.m2", - }, - { - fileId = "199021", - value = "snogremoundrock06.m2", - text = "snogremoundrock06.m2", - }, - }, - value = "ogremoundrocks", - text = "ogremoundrocks", - }, - { - children = { - { - fileId = "199022", - value = "ogresmokevent01.m2", - text = "ogresmokevent01.m2", - }, - }, - value = "ogremoundvent", - text = "ogremoundvent", - }, - { - children = { - { - fileId = "199025", - value = "ogrethrone.m2", - text = "ogrethrone.m2", - }, - }, - value = "ogrethrone", - text = "ogrethrone", - }, - { - children = { - { - fileId = "199028", - value = "poodad01.m2", - text = "poodad01.m2", - }, - }, - value = "poodad", - text = "poodad", - }, - { - children = { - { - fileId = "199034", - value = "ogrewalltorch.m2", - text = "ogrewalltorch.m2", - }, - { - fileId = "199035", - value = "ogrewalltorchblue.m2", - text = "ogrewalltorchblue.m2", - }, - { - fileId = "199036", - value = "ogrewalltorchgreen.m2", - text = "ogrewalltorchgreen.m2", - }, - { - fileId = "199037", - value = "ogrewalltorchpurple.m2", - text = "ogrewalltorchpurple.m2", - }, - { - fileId = "199038", - value = "ogrewalltorchred.m2", - text = "ogrewalltorchred.m2", - }, - }, - value = "torches", - text = "torches", - }, - }, - value = "passive doodads", - text = "passive doodads", - }, - }, - value = "ogre", - text = "ogre", - }, - { - children = { - { - fileId = "199040", - value = "green_omni.m2", - text = "green_omni.m2", - }, - }, - value = "omnilights", - text = "omnilights", - }, - { - children = { - { - children = { - { - children = { - { - fileId = "199041", - value = "altarofstormsstatue.m2", - text = "altarofstormsstatue.m2", - }, - }, - value = "altarofstormsstatues", - text = "altarofstormsstatues", - }, - { - children = { - { - fileId = "199049", - value = "boarskull.m2", - text = "boarskull.m2", - }, - { - fileId = "199050", - value = "carnosaurskull.m2", - text = "carnosaurskull.m2", - }, - { - fileId = "199052", - value = "tallstriderskull.m2", - text = "tallstriderskull.m2", - }, - { - fileId = "199054", - value = "tigerskull.m2", - text = "tigerskull.m2", - }, - }, - value = "animalskulls", - text = "animalskulls", - }, - { - children = { - { - fileId = "199056", - value = "clanbanner.m2", - text = "clanbanner.m2", - }, - { - fileId = "199058", - value = "clanbanner01.m2", - text = "clanbanner01.m2", - }, - { - fileId = "199060", - value = "clanbanner02.m2", - text = "clanbanner02.m2", - }, - { - fileId = "199062", - value = "clanbanner03.m2", - text = "clanbanner03.m2", - }, - { - fileId = "199064", - value = "clanbanner04.m2", - text = "clanbanner04.m2", - }, - { - fileId = "199066", - value = "clanbanner05.m2", - text = "clanbanner05.m2", - }, - { - fileId = "199068", - value = "clanbanner06.m2", - text = "clanbanner06.m2", - }, - { - fileId = "199070", - value = "clanbanner07warsong.m2", - text = "clanbanner07warsong.m2", - }, - { - fileId = "199071", - value = "felorcbanner01.m2", - text = "felorcbanner01.m2", - }, - { - fileId = "199074", - value = "ogrebannerboar.m2", - text = "ogrebannerboar.m2", - }, - { - fileId = "199077", - value = "ogrebannersnow.m2", - text = "ogrebannersnow.m2", - }, - { - fileId = "199078", - value = "ogrebannertiger.m2", - text = "ogrebannertiger.m2", - }, - { - fileId = "199081", - value = "orcbanner1.m2", - text = "orcbanner1.m2", - }, - { - fileId = "199082", - value = "orcbanner2.m2", - text = "orcbanner2.m2", - }, - { - fileId = "199083", - value = "orcbanner3.m2", - text = "orcbanner3.m2", - }, - }, - value = "banners", - text = "banners", - }, - { - children = { - { - fileId = "199090", - value = "orcbarrel01.m2", - text = "orcbarrel01.m2", - }, - { - fileId = "199091", - value = "orcbarrel03.m2", - text = "orcbarrel03.m2", - }, - { - fileId = "199092", - value = "orcbarrel04.m2", - text = "orcbarrel04.m2", - }, - { - fileId = "199094", - value = "orccrate01.m2", - text = "orccrate01.m2", - }, - { - fileId = "199095", - value = "orccrate02.m2", - text = "orccrate02.m2", - }, - { - fileId = "199096", - value = "orccrate03.m2", - text = "orccrate03.m2", - }, - { - fileId = "199097", - value = "orccrate06.m2", - text = "orccrate06.m2", - }, - { - fileId = "199099", - value = "orccrate07.m2", - text = "orccrate07.m2", - }, - { - fileId = "199100", - value = "orccrate08.m2", - text = "orccrate08.m2", - }, - { - fileId = "199101", - value = "orccrate09.m2", - text = "orccrate09.m2", - }, - { - fileId = "199102", - value = "orccrate10.m2", - text = "orccrate10.m2", - }, - { - fileId = "199103", - value = "orccratebroken01.m2", - text = "orccratebroken01.m2", - }, - { - fileId = "199104", - value = "orccratebroken02.m2", - text = "orccratebroken02.m2", - }, - { - fileId = "199105", - value = "orccratebroken03.m2", - text = "orccratebroken03.m2", - }, - }, - value = "barrelsandcrates", - text = "barrelsandcrates", - }, - { - children = { - { - fileId = "199107", - value = "marketblanket01.m2", - text = "marketblanket01.m2", - }, - }, - value = "blankets", - text = "blankets", - }, - { - children = { - { - fileId = "199114", - value = "wailingcavernshangingbones01.m2", - text = "wailingcavernshangingbones01.m2", - }, - { - fileId = "199115", - value = "wailingcavernshangingbones02.m2", - text = "wailingcavernshangingbones02.m2", - }, - { - fileId = "199116", - value = "wailingcavernshangingbones03.m2", - text = "wailingcavernshangingbones03.m2", - }, - }, - value = "bones", - text = "bones", - }, - { - children = { - { - fileId = "199118", - value = "hookahbong01.m2", - text = "hookahbong01.m2", - }, - }, - value = "bongs", - text = "bongs", - }, - { - children = { - { - fileId = "199120", - value = "orcbottle01.m2", - text = "orcbottle01.m2", - }, - }, - value = "bottles", - text = "bottles", - }, - { - children = { - { - fileId = "199121", - value = "bowlwood01.m2", - text = "bowlwood01.m2", - }, - { - fileId = "199122", - value = "bowlwood02.m2", - text = "bowlwood02.m2", - }, - }, - value = "bowls", - text = "bowls", - }, - { - children = { - { - fileId = "199127", - value = "blackrockorccampfire.m2", - text = "blackrockorccampfire.m2", - }, - { - fileId = "199129", - value = "mediumbrazier01.m2", - text = "mediumbrazier01.m2", - }, - { - fileId = "199130", - value = "mediumbraziernoomni01.m2", - text = "mediumbraziernoomni01.m2", - }, - { - fileId = "199131", - value = "mediumbrazierpurple01.m2", - text = "mediumbrazierpurple01.m2", - }, - { - fileId = "199132", - value = "orcbrazier_campfire01.m2", - text = "orcbrazier_campfire01.m2", - }, - { - fileId = "199134", - value = "orcpvpbonfirelarge.m2", - text = "orcpvpbonfirelarge.m2", - }, - { - fileId = "199136", - value = "smallbrazier01.m2", - text = "smallbrazier01.m2", - }, - { - fileId = "199137", - value = "smallbraziernoomni01.m2", - text = "smallbraziernoomni01.m2", - }, - { - fileId = "199138", - value = "smallbrazierpurple01.m2", - text = "smallbrazierpurple01.m2", - }, - { - fileId = "199139", - value = "smallbrazierpurplehanging.m2", - text = "smallbrazierpurplehanging.m2", - }, - { - fileId = "199141", - value = "tallbrazier01.m2", - text = "tallbrazier01.m2", - }, - { - fileId = "199142", - value = "tallbraziernoomni01.m2", - text = "tallbraziernoomni01.m2", - }, - }, - value = "braziers", - text = "braziers", - }, - { - children = { - { - fileId = "199144", - value = "burntoutpost01.m2", - text = "burntoutpost01.m2", - }, - { - fileId = "199145", - value = "burntoutpost02.m2", - text = "burntoutpost02.m2", - }, - { - fileId = "199146", - value = "burntoutpost03.m2", - text = "burntoutpost03.m2", - }, - { - fileId = "199147", - value = "burntoutpost04.m2", - text = "burntoutpost04.m2", - }, - { - fileId = "199148", - value = "burntoutpost05.m2", - text = "burntoutpost05.m2", - }, - { - fileId = "199149", - value = "burntoutpost06.m2", - text = "burntoutpost06.m2", - }, - { - fileId = "199150", - value = "burntoutpost07.m2", - text = "burntoutpost07.m2", - }, - }, - value = "burntoutposts", - text = "burntoutposts", - }, - { - children = { - { - fileId = "199153", - value = "feedtroph01.m2", - text = "feedtroph01.m2", - }, - }, - value = "feedingtroughs", - text = "feedingtroughs", - }, - { - children = { - { - fileId = "199155", - value = "largefirepit01.m2", - text = "largefirepit01.m2", - }, - { - fileId = "199156", - value = "smallfirepit01.m2", - text = "smallfirepit01.m2", - }, - }, - value = "firepits", - text = "firepits", - }, - { - children = { - { - fileId = "199157", - value = "orcflappingflag01.m2", - text = "orcflappingflag01.m2", - }, - }, - value = "flags", - text = "flags", - }, - { - children = { - { - fileId = "199159", - value = "steamgeyser.m2", - text = "steamgeyser.m2", - }, - }, - value = "geyser", - text = "geyser", - }, - { - children = { - { - fileId = "199160", - value = "hammock01.m2", - text = "hammock01.m2", - }, - { - fileId = "199161", - value = "hammock02.m2", - text = "hammock02.m2", - }, - { - fileId = "199162", - value = "hammock03.m2", - text = "hammock03.m2", - }, - { - fileId = "199163", - value = "hammock04.m2", - text = "hammock04.m2", - }, - }, - value = "hammocks", - text = "hammocks", - }, - { - children = { - { - fileId = "199166", - value = "orchangingbones01.m2", - text = "orchangingbones01.m2", - }, - { - fileId = "199167", - value = "orchangingbones02.m2", - text = "orchangingbones02.m2", - }, - { - fileId = "199168", - value = "orchangingbones03.m2", - text = "orchangingbones03.m2", - }, - { - fileId = "199169", - value = "orchangingbones04.m2", - text = "orchangingbones04.m2", - }, - }, - value = "hangingbones", - text = "hangingbones", - }, - { - children = { - { - fileId = "199173", - value = "hordebanner01.m2", - text = "hordebanner01.m2", - }, - { - fileId = "199174", - value = "hordebanner02.m2", - text = "hordebanner02.m2", - }, - { - fileId = "199175", - value = "hordebanner03.m2", - text = "hordebanner03.m2", - }, - { - fileId = "199176", - value = "hordebanner04.m2", - text = "hordebanner04.m2", - }, - { - fileId = "244208", - value = "hordebanner05.m2", - text = "hordebanner05.m2", - }, - }, - value = "hordebanners", - text = "hordebanners", - }, - { - children = { - { - fileId = "199179", - value = "jarorc01.m2", - text = "jarorc01.m2", - }, - { - fileId = "199180", - value = "jarorc02.m2", - text = "jarorc02.m2", - }, - { - fileId = "199181", - value = "jarorc03.m2", - text = "jarorc03.m2", - }, - { - fileId = "199182", - value = "jarorc04.m2", - text = "jarorc04.m2", - }, - { - fileId = "199183", - value = "jarorc05.m2", - text = "jarorc05.m2", - }, - { - fileId = "199184", - value = "jarorc06.m2", - text = "jarorc06.m2", - }, - }, - value = "jars", - text = "jars", - }, - { - children = { - { - fileId = "199191", - value = "orcjug01.m2", - text = "orcjug01.m2", - }, - { - fileId = "199192", - value = "orcjug02.m2", - text = "orcjug02.m2", - }, - }, - value = "jugs", - text = "jugs", - }, - { - children = { - { - fileId = "199195", - value = "kodowagon.m2", - text = "kodowagon.m2", - }, - }, - value = "kodowagon", - text = "kodowagon", - }, - { - children = { - { - fileId = "199196", - value = "orcbrazier_lightpostbarrens.m2", - text = "orcbrazier_lightpostbarrens.m2", - }, - { - fileId = "199197", - value = "orcbrazierlamppost01.m2", - text = "orcbrazierlamppost01.m2", - }, - { - fileId = "199198", - value = "orcbrazierstreetlamp.m2", - text = "orcbrazierstreetlamp.m2", - }, - }, - value = "lampposts", - text = "lampposts", - }, - { - children = { - { - fileId = "199201", - value = "orchanginglantern.m2", - text = "orchanginglantern.m2", - }, - }, - value = "lanterns", - text = "lanterns", - }, - { - children = { - { - fileId = "199203", - value = "rawmeatrack01.m2", - text = "rawmeatrack01.m2", - }, - { - fileId = "199205", - value = "smokedmeatrack01.m2", - text = "smokedmeatrack01.m2", - }, - }, - value = "meatracks", - text = "meatracks", - }, - { - children = { - { - fileId = "199207", - value = "orcmug01.m2", - text = "orcmug01.m2", - }, - }, - value = "mugs", - text = "mugs", - }, - { - children = { - { - fileId = "199208", - value = "orcbellow.m2", - text = "orcbellow.m2", - }, - }, - value = "orcbellows", - text = "orcbellows", - }, - { - children = { - { - fileId = "199209", - value = "orcfence.m2", - text = "orcfence.m2", - }, - { - fileId = "199210", - value = "orcfencepost.m2", - text = "orcfencepost.m2", - }, - }, - value = "orcfence", - text = "orcfence", - }, - { - children = { - { - fileId = "199211", - value = "quillboarpinata.m2", - text = "quillboarpinata.m2", - }, - }, - value = "pinata", - text = "pinata", - }, - { - children = { - { - fileId = "199212", - value = "orcpitcher01.m2", - text = "orcpitcher01.m2", - }, - }, - value = "pitchers", - text = "pitchers", - }, - { - children = { - { - fileId = "199215", - value = "wailingfern06.m2", - text = "wailingfern06.m2", - }, - { - fileId = "199217", - value = "wailingplant01.m2", - text = "wailingplant01.m2", - }, - { - fileId = "199218", - value = "wailingplant02.m2", - text = "wailingplant02.m2", - }, - { - fileId = "199220", - value = "wailingplantpurple01.m2", - text = "wailingplantpurple01.m2", - }, - }, - value = "plants", - text = "plants", - }, - { - children = { - { - fileId = "199222", - value = "wailingcavernsraptoreggs01.m2", - text = "wailingcavernsraptoreggs01.m2", - }, - { - fileId = "199223", - value = "wailingcavernsraptoreggs02.m2", - text = "wailingcavernsraptoreggs02.m2", - }, - { - fileId = "199224", - value = "wailingcavernsraptoreggs03.m2", - text = "wailingcavernsraptoreggs03.m2", - }, - { - fileId = "199225", - value = "wailingcavernsraptoreggs04.m2", - text = "wailingcavernsraptoreggs04.m2", - }, - }, - value = "raptoreggs", - text = "raptoreggs", - }, - { - children = { - { - fileId = "199226", - value = "wailingcavernsraptornest01.m2", - text = "wailingcavernsraptornest01.m2", - }, - { - fileId = "199227", - value = "wailingcavernsraptornest02.m2", - text = "wailingcavernsraptornest02.m2", - }, - }, - value = "raptornests", - text = "raptornests", - }, - { - children = { - { - fileId = "199229", - value = "rickshaw.m2", - text = "rickshaw.m2", - }, - }, - value = "rickshaw", - text = "rickshaw", - }, - { - children = { - { - fileId = "199231", - value = "roastboar.m2", - text = "roastboar.m2", - }, - { - fileId = "199234", - value = "roasttallstrider01.m2", - text = "roasttallstrider01.m2", - }, - { - fileId = "199235", - value = "roasttallstrider02.m2", - text = "roasttallstrider02.m2", - }, - }, - value = "roasts", - text = "roasts", - }, - { - children = { - { - fileId = "199239", - value = "centaurrug01.m2", - text = "centaurrug01.m2", - }, - { - fileId = "199241", - value = "furrug01.m2", - text = "furrug01.m2", - }, - { - fileId = "199242", - value = "kotoskinrug01.m2", - text = "kotoskinrug01.m2", - }, - }, - value = "rugs", - text = "rugs", - }, - { - children = { - { - fileId = "199243", - value = "direwolfsaddle.m2", - text = "direwolfsaddle.m2", - }, - { - fileId = "199245", - value = "tallstridersaddle.m2", - text = "tallstridersaddle.m2", - }, - { - fileId = "199247", - value = "wyvernsaddle.m2", - text = "wyvernsaddle.m2", - }, - }, - value = "saddles", - text = "saddles", - }, - { - children = { - { - fileId = "199250", - value = "orcshield01.m2", - text = "orcshield01.m2", - }, - { - fileId = "199252", - value = "orcshield02.m2", - text = "orcshield02.m2", - }, - { - fileId = "199254", - value = "orcshield03.m2", - text = "orcshield03.m2", - }, - }, - value = "shields", - text = "shields", - }, - { - children = { - { - fileId = "199257", - value = "orcsignpost01.m2", - text = "orcsignpost01.m2", - }, - { - fileId = "199258", - value = "orcsignpost02.m2", - text = "orcsignpost02.m2", - }, - { - fileId = "199259", - value = "orcsignpost03.m2", - text = "orcsignpost03.m2", - }, - { - fileId = "199260", - value = "orcsignpostpointer01.m2", - text = "orcsignpostpointer01.m2", - }, - { - fileId = "199261", - value = "orcsignpostpointer02.m2", - text = "orcsignpostpointer02.m2", - }, - { - fileId = "199262", - value = "orcsignpostpointer03.m2", - text = "orcsignpostpointer03.m2", - }, - }, - value = "signposts", - text = "signposts", - }, - { - children = { - { - fileId = "199263", - value = "orcsign_alchemist.m2", - text = "orcsign_alchemist.m2", - }, - { - fileId = "199266", - value = "orcsign_armory.m2", - text = "orcsign_armory.m2", - }, - { - fileId = "199267", - value = "orcsign_axes.m2", - text = "orcsign_axes.m2", - }, - { - fileId = "199269", - value = "orcsign_bags.m2", - text = "orcsign_bags.m2", - }, - { - fileId = "199271", - value = "orcsign_bank.m2", - text = "orcsign_bank.m2", - }, - { - fileId = "199273", - value = "orcsign_blacksmith.m2", - text = "orcsign_blacksmith.m2", - }, - { - fileId = "199275", - value = "orcsign_bows.m2", - text = "orcsign_bows.m2", - }, - { - fileId = "199277", - value = "orcsign_bread.m2", - text = "orcsign_bread.m2", - }, - { - fileId = "199279", - value = "orcsign_cartography.m2", - text = "orcsign_cartography.m2", - }, - { - fileId = "199281", - value = "orcsign_cheese.m2", - text = "orcsign_cheese.m2", - }, - { - fileId = "199283", - value = "orcsign_clotharmor.m2", - text = "orcsign_clotharmor.m2", - }, - { - fileId = "199285", - value = "orcsign_cooking.m2", - text = "orcsign_cooking.m2", - }, - { - fileId = "199287", - value = "orcsign_daggers.m2", - text = "orcsign_daggers.m2", - }, - { - fileId = "199289", - value = "orcsign_drinks.m2", - text = "orcsign_drinks.m2", - }, - { - fileId = "199291", - value = "orcsign_enchanting.m2", - text = "orcsign_enchanting.m2", - }, - { - fileId = "199293", - value = "orcsign_engineering.m2", - text = "orcsign_engineering.m2", - }, - { - fileId = "199295", - value = "orcsign_firstaid.m2", - text = "orcsign_firstaid.m2", - }, - { - fileId = "199297", - value = "orcsign_fishing.m2", - text = "orcsign_fishing.m2", - }, - { - fileId = "199299", - value = "orcsign_fletcher.m2", - text = "orcsign_fletcher.m2", - }, - { - fileId = "199301", - value = "orcsign_food.m2", - text = "orcsign_food.m2", - }, - { - fileId = "199303", - value = "orcsign_general.m2", - text = "orcsign_general.m2", - }, - { - fileId = "199305", - value = "orcsign_guns.m2", - text = "orcsign_guns.m2", - }, - { - fileId = "199307", - value = "orcsign_herbalist.m2", - text = "orcsign_herbalist.m2", - }, - { - fileId = "199309", - value = "orcsign_inscribing.m2", - text = "orcsign_inscribing.m2", - }, - { - fileId = "199311", - value = "orcsign_leatherarmor.m2", - text = "orcsign_leatherarmor.m2", - }, - { - fileId = "199313", - value = "orcsign_lockpicking.m2", - text = "orcsign_lockpicking.m2", - }, - { - fileId = "199315", - value = "orcsign_maces.m2", - text = "orcsign_maces.m2", - }, - { - fileId = "199317", - value = "orcsign_magicshop.m2", - text = "orcsign_magicshop.m2", - }, - { - fileId = "199319", - value = "orcsign_mailarmor.m2", - text = "orcsign_mailarmor.m2", - }, - { - fileId = "199320", - value = "orcsign_meat.m2", - text = "orcsign_meat.m2", - }, - { - fileId = "199322", - value = "orcsign_mining.m2", - text = "orcsign_mining.m2", - }, - { - fileId = "199324", - value = "orcsign_misc.m2", - text = "orcsign_misc.m2", - }, - { - fileId = "199326", - value = "orcsign_poisons.m2", - text = "orcsign_poisons.m2", - }, - { - fileId = "199327", - value = "orcsign_shields.m2", - text = "orcsign_shields.m2", - }, - { - fileId = "199329", - value = "orcsign_staves.m2", - text = "orcsign_staves.m2", - }, - { - fileId = "199331", - value = "orcsign_swords.m2", - text = "orcsign_swords.m2", - }, - { - fileId = "199333", - value = "orcsign_tabard.m2", - text = "orcsign_tabard.m2", - }, - { - fileId = "199335", - value = "orcsign_tailor.m2", - text = "orcsign_tailor.m2", - }, - { - fileId = "199337", - value = "orcsign_tavern.m2", - text = "orcsign_tavern.m2", - }, - { - fileId = "199339", - value = "orcsign_visitorcenter.m2", - text = "orcsign_visitorcenter.m2", - }, - { - fileId = "199340", - value = "orcsign_weapons.m2", - text = "orcsign_weapons.m2", - }, - { - fileId = "199343", - value = "orcsign_winery.m2", - text = "orcsign_winery.m2", - }, - { - fileId = "199345", - value = "orcsign_wyvern.m2", - text = "orcsign_wyvern.m2", - }, - }, - value = "signs", - text = "signs", - }, - { - children = { - { - fileId = "199346", - value = "spitmetal.m2", - text = "spitmetal.m2", - }, - { - fileId = "199347", - value = "spitwood.m2", - text = "spitwood.m2", - }, - }, - value = "spits", - text = "spits", - }, - { - children = { - { - fileId = "199349", - value = "hellscreammonument_01.m2", - text = "hellscreammonument_01.m2", - }, - }, - value = "statues", - text = "statues", - }, - { - children = { - { - fileId = "199351", - value = "wailingstonebrazier.m2", - text = "wailingstonebrazier.m2", - }, - }, - value = "stonebrazier", - text = "stonebrazier", - }, - { - children = { - { - fileId = "199354", - value = "orctablecooker01.m2", - text = "orctablecooker01.m2", - }, - { - fileId = "199355", - value = "orctablecooker01fire.m2", - text = "orctablecooker01fire.m2", - }, - }, - value = "tablecooker", - text = "tablecooker", - }, - { - children = { - { - fileId = "199356", - value = "orcbench01.m2", - text = "orcbench01.m2", - }, - { - fileId = "199357", - value = "orctable01.m2", - text = "orctable01.m2", - }, - }, - value = "tables", - text = "tables", - }, - { - children = { - { - children = { - { - fileId = "199358", - value = "orcboltblue.m2", - text = "orcboltblue.m2", - }, - { - fileId = "199359", - value = "orcboltgreen.m2", - text = "orcboltgreen.m2", - }, - { - fileId = "199360", - value = "orcboltred.m2", - text = "orcboltred.m2", - }, - { - fileId = "199361", - value = "orcboltwhite.m2", - text = "orcboltwhite.m2", - }, - }, - value = "bolts", - text = "bolts", - }, - { - children = { - { - fileId = "199363", - value = "orcboots01.m2", - text = "orcboots01.m2", - }, - { - fileId = "199364", - value = "orcboots02.m2", - text = "orcboots02.m2", - }, - { - fileId = "199365", - value = "orcboots03.m2", - text = "orcboots03.m2", - }, - }, - value = "boots", - text = "boots", - }, - { - children = { - { - fileId = "199369", - value = "orchangingpants01.m2", - text = "orchangingpants01.m2", - }, - { - fileId = "199370", - value = "orchangingshirt01.m2", - text = "orchangingshirt01.m2", - }, - { - fileId = "199371", - value = "orcpants01.m2", - text = "orcpants01.m2", - }, - { - fileId = "199372", - value = "orcshirt01.m2", - text = "orcshirt01.m2", - }, - }, - value = "clothes", - text = "clothes", - }, - { - children = { - { - fileId = "199373", - value = "orcspoolbluelow.m2", - text = "orcspoolbluelow.m2", - }, - { - fileId = "199374", - value = "orcspoolgreenlow.m2", - text = "orcspoolgreenlow.m2", - }, - { - fileId = "199375", - value = "orcspoolorange.m2", - text = "orcspoolorange.m2", - }, - { - fileId = "199376", - value = "orcspoolpurple.m2", - text = "orcspoolpurple.m2", - }, - { - fileId = "199377", - value = "orcspoolred.m2", - text = "orcspoolred.m2", - }, - { - fileId = "199378", - value = "orcspoolredlow.m2", - text = "orcspoolredlow.m2", - }, - { - fileId = "199379", - value = "orcspoolyellow.m2", - text = "orcspoolyellow.m2", - }, - }, - value = "spools", - text = "spools", - }, - { - children = { - { - fileId = "199380", - value = "orcyarnred.m2", - text = "orcyarnred.m2", - }, - { - fileId = "199381", - value = "orcyarnyellow.m2", - text = "orcyarnyellow.m2", - }, - }, - value = "yarn", - text = "yarn", - }, - }, - value = "tailoring", - text = "tailoring", - }, - { - children = { - { - fileId = "199383", - value = "orctaxiflag.m2", - text = "orctaxiflag.m2", - }, - }, - value = "taxiflags", - text = "taxiflags", - }, - { - children = { - { - fileId = "199384", - value = "durotarorctent01.m2", - text = "durotarorctent01.m2", - }, - { - fileId = "199385", - value = "durotarorctent02.m2", - text = "durotarorctent02.m2", - }, - { - fileId = "199387", - value = "orctent01.m2", - text = "orctent01.m2", - }, - { - fileId = "199389", - value = "orctent02.m2", - text = "orctent02.m2", - }, - }, - value = "tents", - text = "tents", - }, - { - children = { - { - fileId = "199390", - value = "eggtray.m2", - text = "eggtray.m2", - }, - }, - value = "trays", - text = "trays", - }, - { - children = { - { - fileId = "199392", - value = "ladlemetal.m2", - text = "ladlemetal.m2", - }, - { - fileId = "199394", - value = "ladlewood.m2", - text = "ladlewood.m2", - }, - { - fileId = "199396", - value = "serratedcleaver.m2", - text = "serratedcleaver.m2", - }, - }, - value = "utensils", - text = "utensils", - }, - { - children = { - { - fileId = "199397", - value = "bubblingbowl01.m2", - text = "bubblingbowl01.m2", - }, - { - fileId = "199398", - value = "bubblingbowl02.m2", - text = "bubblingbowl02.m2", - }, - { - fileId = "199401", - value = "skullcandle01.m2", - text = "skullcandle01.m2", - }, - { - fileId = "199402", - value = "skullcandle02.m2", - text = "skullcandle02.m2", - }, - { - fileId = "199407", - value = "voodoodoll01.m2", - text = "voodoodoll01.m2", - }, - { - fileId = "199408", - value = "voodoodoll02.m2", - text = "voodoodoll02.m2", - }, - { - fileId = "199410", - value = "voodoodrum01.m2", - text = "voodoodrum01.m2", - }, - { - fileId = "199412", - value = "voodoodrum02.m2", - text = "voodoodrum02.m2", - }, - { - fileId = "199413", - value = "voodoodrum03.m2", - text = "voodoodrum03.m2", - }, - }, - value = "voodoostuff", - text = "voodoostuff", - }, - { - children = { - { - fileId = "199414", - value = "orcwagon01.m2", - text = "orcwagon01.m2", - }, - { - fileId = "199415", - value = "orcwagon02.m2", - text = "orcwagon02.m2", - }, - { - fileId = "199416", - value = "orcwagon03.m2", - text = "orcwagon03.m2", - }, - { - fileId = "199417", - value = "orcwagon04.m2", - text = "orcwagon04.m2", - }, - { - fileId = "199418", - value = "orcwagon05.m2", - text = "orcwagon05.m2", - }, - { - fileId = "199419", - value = "orcwagon06.m2", - text = "orcwagon06.m2", - }, - }, - value = "wagons", - text = "wagons", - }, - { - children = { - { - fileId = "199421", - value = "wantedposterframed01.m2", - text = "wantedposterframed01.m2", - }, - { - fileId = "199424", - value = "wantedposterscroll01.m2", - text = "wantedposterscroll01.m2", - }, - { - fileId = "199426", - value = "wantedposterstuck01.m2", - text = "wantedposterstuck01.m2", - }, - { - fileId = "199428", - value = "wantedposterwood01.m2", - text = "wantedposterwood01.m2", - }, - }, - value = "wantedposters", - text = "wantedposters", - }, - { - children = { - { - fileId = "199430", - value = "orcaxe01.m2", - text = "orcaxe01.m2", - }, - { - fileId = "199432", - value = "orcaxe02.m2", - text = "orcaxe02.m2", - }, - { - fileId = "199434", - value = "orcaxe03.m2", - text = "orcaxe03.m2", - }, - { - fileId = "199436", - value = "orcspear01.m2", - text = "orcspear01.m2", - }, - { - fileId = "199438", - value = "orcspear02.m2", - text = "orcspear02.m2", - }, - { - fileId = "199439", - value = "orcspear03.m2", - text = "orcspear03.m2", - }, - { - fileId = "199440", - value = "orcstaff01.m2", - text = "orcstaff01.m2", - }, - { - fileId = "199441", - value = "orcstaff02.m2", - text = "orcstaff02.m2", - }, - { - fileId = "199442", - value = "orcstaff03.m2", - text = "orcstaff03.m2", - }, - { - fileId = "199443", - value = "orcstaff04.m2", - text = "orcstaff04.m2", - }, - { - fileId = "199444", - value = "orcstaff05.m2", - text = "orcstaff05.m2", - }, - { - fileId = "199446", - value = "orcsword02.m2", - text = "orcsword02.m2", - }, - { - fileId = "199448", - value = "orcsword03.m2", - text = "orcsword03.m2", - }, - }, - value = "weapons", - text = "weapons", - }, - { - children = { - { - fileId = "199451", - value = "wyvernnest01.m2", - text = "wyvernnest01.m2", - }, - { - fileId = "199452", - value = "wyvernnest02.m2", - text = "wyvernnest02.m2", - }, - }, - value = "wyvernnests", - text = "wyvernnests", - }, - { - children = { - { - fileId = "199454", - value = "wyvernroost01.m2", - text = "wyvernroost01.m2", - }, - { - fileId = "199456", - value = "wyvernroost_ruined.m2", - text = "wyvernroost_ruined.m2", - }, - }, - value = "wyvernroost", - text = "wyvernroost", - }, - }, - value = "passive doodads", - text = "passive doodads", - }, - }, - value = "orc", - text = "orc", - }, - { - children = { - { - children = { - { - fileId = "199458", - value = "owlbearskull01.m2", - text = "owlbearskull01.m2", - }, - }, - value = "owlbearskulls", - text = "owlbearskulls", - }, - { - children = { - { - fileId = "199460", - value = "owlbearhangingtotem01.m2", - text = "owlbearhangingtotem01.m2", - }, - { - fileId = "199461", - value = "owlbearhangingtotem02.m2", - text = "owlbearhangingtotem02.m2", + fileId = "199461", + text = "owlbearhangingtotem02.m2", + value = "owlbearhangingtotem02.m2", }, { fileId = "199462", - value = "owlbearhangingtotem03.m2", text = "owlbearhangingtotem03.m2", + value = "owlbearhangingtotem03.m2", }, { fileId = "199463", - value = "owlbearscarecrow01.m2", text = "owlbearscarecrow01.m2", + value = "owlbearscarecrow01.m2", }, { fileId = "199464", - value = "owlbearscarecrow02.m2", text = "owlbearscarecrow02.m2", + value = "owlbearscarecrow02.m2", }, - { - fileId = "199466", - value = "owlbeartotem01.m2", - text = "owlbeartotem01.m2", - }, - }, - value = "owlbeartotems", - text = "owlbeartotems", - }, - { - children = { - { - fileId = "199467", - value = "owlbearrock01.m2", - text = "owlbearrock01.m2", - }, - { - fileId = "199468", - value = "owlbearrock02.m2", - text = "owlbearrock02.m2", - }, - { - fileId = "199469", - value = "owlbearrock03.m2", - text = "owlbearrock03.m2", - }, - }, - value = "rocks", - text = "rocks", - }, - }, - value = "owlbear", - text = "owlbear", - }, - { - children = { - { - children = { - { - fileId = "199472", - value = "shoutbox_generic.m2", - text = "shoutbox_generic.m2", - }, - }, - value = "shoutbox", - text = "shoutbox", - }, - { - children = { - { - fileId = "199473", - value = "newwantedposter01.m2", - text = "newwantedposter01.m2", - }, - { - fileId = "199475", - value = "newwantedposter02.m2", - text = "newwantedposter02.m2", - }, - { - fileId = "199476", - value = "newwantedposter03.m2", - text = "newwantedposter03.m2", - }, - { - fileId = "199477", - value = "newwantedposter04.m2", - text = "newwantedposter04.m2", - }, - { - fileId = "4208854", - value = "newwantedposter05.m2", - text = "newwantedposter05.m2", - }, - }, - value = "wantedposters", - text = "wantedposters", - }, - }, - value = "passive doodads", - text = "passive doodads", - }, - { - children = { - { - children = { - { - fileId = "199478", - value = "cloth_level01.m2", - text = "cloth_level01.m2", - }, - { - fileId = "199479", - value = "cloth_level02.m2", - text = "cloth_level02.m2", - }, - { - fileId = "199480", - value = "cloth_level03.m2", - text = "cloth_level03.m2", - }, - { - fileId = "199481", - value = "cloth_level04.m2", - text = "cloth_level04.m2", - }, - { - fileId = "199482", - value = "cloth_level05.m2", - text = "cloth_level05.m2", - }, - { - fileId = "199483", - value = "cloth_level06.m2", - text = "cloth_level06.m2", - }, - { - fileId = "199484", - value = "food_level02.m2", - text = "food_level02.m2", - }, - { - fileId = "199485", - value = "food_level03.m2", - text = "food_level03.m2", - }, - { - fileId = "199486", - value = "food_level04.m2", - text = "food_level04.m2", - }, - { - fileId = "199487", - value = "food_level05.m2", - text = "food_level05.m2", - }, - { - fileId = "199488", - value = "food_level06.m2", - text = "food_level06.m2", - }, - { - fileId = "199489", - value = "foodherbs_level01.m2", - text = "foodherbs_level01.m2", - }, - { - fileId = "199490", - value = "herbs_level02.m2", - text = "herbs_level02.m2", - }, - { - fileId = "199491", - value = "herbs_level03.m2", - text = "herbs_level03.m2", - }, - { - fileId = "199492", - value = "herbs_level04.m2", - text = "herbs_level04.m2", - }, - { - fileId = "199493", - value = "herbs_level05.m2", - text = "herbs_level05.m2", - }, - { - fileId = "199494", - value = "herbs_level06.m2", - text = "herbs_level06.m2", - }, - { - fileId = "199495", - value = "horde_cloth01.m2", - text = "horde_cloth01.m2", - }, - { - fileId = "199496", - value = "horde_cloth02.m2", - text = "horde_cloth02.m2", - }, - { - fileId = "199497", - value = "horde_cloth03.m2", - text = "horde_cloth03.m2", - }, - { - fileId = "199498", - value = "horde_cloth04.m2", - text = "horde_cloth04.m2", - }, - { - fileId = "199499", - value = "horde_cloth05.m2", - text = "horde_cloth05.m2", - }, - { - fileId = "199500", - value = "horde_cloth06.m2", - text = "horde_cloth06.m2", - }, - { - fileId = "199501", - value = "horde_food01.m2", - text = "horde_food01.m2", - }, - { - fileId = "199502", - value = "horde_food02.m2", - text = "horde_food02.m2", - }, - { - fileId = "199503", - value = "horde_food03.m2", - text = "horde_food03.m2", - }, - { - fileId = "199504", - value = "horde_food04.m2", - text = "horde_food04.m2", - }, - { - fileId = "199505", - value = "horde_food05.m2", - text = "horde_food05.m2", - }, - { - fileId = "199506", - value = "horde_food06.m2", - text = "horde_food06.m2", - }, - { - fileId = "199507", - value = "horde_furs01.m2", - text = "horde_furs01.m2", - }, - { - fileId = "199508", - value = "horde_furs02.m2", - text = "horde_furs02.m2", - }, - { - fileId = "199509", - value = "horde_furs03.m2", - text = "horde_furs03.m2", - }, - { - fileId = "199510", - value = "horde_furs04.m2", - text = "horde_furs04.m2", - }, - { - fileId = "199511", - value = "horde_furs05.m2", - text = "horde_furs05.m2", - }, - { - fileId = "199512", - value = "horde_furs06.m2", - text = "horde_furs06.m2", - }, - { - fileId = "199513", - value = "horde_herbs01.m2", - text = "horde_herbs01.m2", - }, - { - fileId = "199514", - value = "horde_herbs02.m2", - text = "horde_herbs02.m2", - }, - { - fileId = "199515", - value = "horde_herbs03.m2", - text = "horde_herbs03.m2", - }, - { - fileId = "199516", - value = "horde_herbs04.m2", - text = "horde_herbs04.m2", - }, - { - fileId = "199517", - value = "horde_herbs05.m2", - text = "horde_herbs05.m2", - }, - { - fileId = "199518", - value = "horde_herbs06.m2", - text = "horde_herbs06.m2", - }, - { - fileId = "199519", - value = "horde_metal01.m2", - text = "horde_metal01.m2", - }, - { - fileId = "199520", - value = "horde_metal02.m2", - text = "horde_metal02.m2", - }, - { - fileId = "199521", - value = "horde_metal03.m2", - text = "horde_metal03.m2", - }, - { - fileId = "199522", - value = "horde_metal04.m2", - text = "horde_metal04.m2", - }, - { - fileId = "199523", - value = "horde_metal05.m2", - text = "horde_metal05.m2", - }, - { - fileId = "199524", - value = "horde_metal06.m2", - text = "horde_metal06.m2", - }, - { - fileId = "199526", - value = "leather_level01.m2", - text = "leather_level01.m2", - }, - { - fileId = "199527", - value = "leather_level02.m2", - text = "leather_level02.m2", - }, - { - fileId = "199528", - value = "leather_level03.m2", - text = "leather_level03.m2", - }, - { - fileId = "199529", - value = "leather_level04.m2", - text = "leather_level04.m2", - }, - { - fileId = "199530", - value = "leather_level05.m2", - text = "leather_level05.m2", - }, - { - fileId = "199531", - value = "leather_level06.m2", - text = "leather_level06.m2", - }, - { - fileId = "199536", - value = "metals_level01.m2", - text = "metals_level01.m2", - }, - { - fileId = "199537", - value = "metals_level02.m2", - text = "metals_level02.m2", - }, - { - fileId = "199538", - value = "metals_level03.m2", - text = "metals_level03.m2", - }, - { - fileId = "199539", - value = "metals_level04.m2", - text = "metals_level04.m2", - }, - { - fileId = "199540", - value = "metals_level05.m2", - text = "metals_level05.m2", - }, - { - fileId = "199541", - value = "metals_level06.m2", - text = "metals_level06.m2", - }, - }, - value = "ahnqiraj", - text = "ahnqiraj", - }, - { - children = { - { - fileId = "199546", - value = "baby_dw.m2", - text = "baby_dw.m2", - }, - { - fileId = "199547", - value = "baby_gn.m2", - text = "baby_gn.m2", - }, - { - fileId = "199548", - value = "baby_hu.m2", - text = "baby_hu.m2", - }, - { - fileId = "199549", - value = "baby_ne.m2", - text = "baby_ne.m2", - }, - { - fileId = "199550", - value = "baby_or.m2", - text = "baby_or.m2", - }, - { - fileId = "199551", - value = "baby_ta.m2", - text = "baby_ta.m2", - }, - { - fileId = "199552", - value = "baby_tr.m2", - text = "baby_tr.m2", - }, - }, - value = "babies", - text = "babies", - }, - { - children = { - { - fileId = "199562", - value = "final_stage.m2", - text = "final_stage.m2", - }, - }, - value = "band", - text = "band", - }, - { - children = { - { - fileId = "199563", - value = "barrel01.m2", - text = "barrel01.m2", - }, - { - fileId = "199565", - value = "barrellowpoly.m2", - text = "barrellowpoly.m2", - }, - { - fileId = "199566", - value = "brokenbarrel01.m2", - text = "brokenbarrel01.m2", - }, - { - fileId = "199567", - value = "brokenbarrel02.m2", - text = "brokenbarrel02.m2", - }, - }, - value = "barrel", - text = "barrel", - }, - { - children = { - { - fileId = "199571", - value = "newbindstone.m2", - text = "newbindstone.m2", - }, - }, - value = "bindstone", - text = "bindstone", - }, - { - children = { - { - fileId = "199572", - value = "bleacherseat1a.m2", - text = "bleacherseat1a.m2", - }, - { - fileId = "199573", - value = "bleacherseat1b.m2", - text = "bleacherseat1b.m2", - }, - { - fileId = "199574", - value = "bleacherseat1c.m2", - text = "bleacherseat1c.m2", - }, - { - fileId = "199575", - value = "bleacherseat1d.m2", - text = "bleacherseat1d.m2", - }, - { - fileId = "199576", - value = "bleacherswood01.m2", - text = "bleacherswood01.m2", + { + fileId = "199466", + text = "owlbeartotem01.m2", + value = "owlbeartotem01.m2", }, }, - value = "bleachers", - text = "bleachers", + text = "owlbeartotems", + value = "owlbeartotems", }, { children = { { - fileId = "199577", - value = "beerfest_molemachine.m2", - text = "beerfest_molemachine.m2", + fileId = "199467", + text = "owlbearrock01.m2", + value = "owlbearrock01.m2", }, { - fileId = "244221", - value = "beerfest_molemachine_anim_set2.m2", - text = "beerfest_molemachine_anim_set2.m2", + fileId = "199468", + text = "owlbearrock02.m2", + value = "owlbearrock02.m2", }, - }, - value = "brewfest", - text = "brewfest", - }, - { - children = { { - fileId = "199580", - value = "brokenfreezingtrap.m2", - text = "brokenfreezingtrap.m2", + fileId = "199469", + text = "owlbearrock03.m2", + value = "owlbearrock03.m2", }, }, - value = "brokentrap", - text = "brokentrap", + text = "rocks", + value = "rocks", }, + }, + text = "owlbear", + value = "owlbear", + }, + { + children = { { children = { { - fileId = "199591", - value = "g_nutcracker.m2", - text = "g_nutcracker.m2", + fileId = "199478", + text = "cloth_level01.m2", + value = "cloth_level01.m2", }, { - fileId = "199592", - value = "g_xmaswreath.m2", - text = "g_xmaswreath.m2", + fileId = "199479", + text = "cloth_level02.m2", + value = "cloth_level02.m2", }, { - fileId = "199594", - value = "lunarnewyear_lights.m2", - text = "lunarnewyear_lights.m2", + fileId = "199480", + text = "cloth_level03.m2", + value = "cloth_level03.m2", }, { - fileId = "199595", - value = "lunarnewyear_lightsx3.m2", - text = "lunarnewyear_lightsx3.m2", + fileId = "199481", + text = "cloth_level04.m2", + value = "cloth_level04.m2", }, { - fileId = "199596", - value = "mistletoe.m2", - text = "mistletoe.m2", + fileId = "199482", + text = "cloth_level05.m2", + value = "cloth_level05.m2", }, { - fileId = "199597", - value = "mistletoe02.m2", - text = "mistletoe02.m2", + fileId = "199483", + text = "cloth_level06.m2", + value = "cloth_level06.m2", }, { - fileId = "199600", - value = "xmas_lights.m2", - text = "xmas_lights.m2", + fileId = "199484", + text = "food_level02.m2", + value = "food_level02.m2", }, { - fileId = "199601", - value = "xmas_lights_broken.m2", - text = "xmas_lights_broken.m2", + fileId = "199485", + text = "food_level03.m2", + value = "food_level03.m2", }, { - fileId = "199602", - value = "xmas_lights_broken3x.m2", - text = "xmas_lights_broken3x.m2", + fileId = "199486", + text = "food_level04.m2", + value = "food_level04.m2", }, { - fileId = "199603", - value = "xmas_lightsx3.m2", - text = "xmas_lightsx3.m2", + fileId = "199487", + text = "food_level05.m2", + value = "food_level05.m2", }, { - fileId = "199604", - value = "xmasgift01.m2", - text = "xmasgift01.m2", + fileId = "199488", + text = "food_level06.m2", + value = "food_level06.m2", }, { - fileId = "199605", - value = "xmasgift02.m2", - text = "xmasgift02.m2", + fileId = "199489", + text = "foodherbs_level01.m2", + value = "foodherbs_level01.m2", }, { - fileId = "199606", - value = "xmasgift03.m2", - text = "xmasgift03.m2", + fileId = "199490", + text = "herbs_level02.m2", + value = "herbs_level02.m2", }, { - fileId = "199607", - value = "xmasgift04.m2", - text = "xmasgift04.m2", + fileId = "199491", + text = "herbs_level03.m2", + value = "herbs_level03.m2", }, { - fileId = "199608", - value = "xmasgift05.m2", - text = "xmasgift05.m2", + fileId = "199492", + text = "herbs_level04.m2", + value = "herbs_level04.m2", }, { - fileId = "199609", - value = "xmasgift06.m2", - text = "xmasgift06.m2", + fileId = "199493", + text = "herbs_level05.m2", + value = "herbs_level05.m2", }, { - fileId = "199610", - value = "xmasropeline.m2", - text = "xmasropeline.m2", + fileId = "199494", + text = "herbs_level06.m2", + value = "herbs_level06.m2", }, { - fileId = "199611", - value = "xmasropelinepole.m2", - text = "xmasropelinepole.m2", + fileId = "199495", + text = "horde_cloth01.m2", + value = "horde_cloth01.m2", }, { - fileId = "199612", - value = "xmasstocking01.m2", - text = "xmasstocking01.m2", + fileId = "199496", + text = "horde_cloth02.m2", + value = "horde_cloth02.m2", }, { - fileId = "199613", - value = "xmasstocking02.m2", - text = "xmasstocking02.m2", + fileId = "199497", + text = "horde_cloth03.m2", + value = "horde_cloth03.m2", }, { - fileId = "199614", - value = "xmasstocking03.m2", - text = "xmasstocking03.m2", + fileId = "199498", + text = "horde_cloth04.m2", + value = "horde_cloth04.m2", }, { - fileId = "199615", - value = "xmastree_largealliance01.m2", - text = "xmastree_largealliance01.m2", + fileId = "199499", + text = "horde_cloth05.m2", + value = "horde_cloth05.m2", }, { - fileId = "199616", - value = "xmastree_largealliance01white.m2", - text = "xmastree_largealliance01white.m2", + fileId = "199500", + text = "horde_cloth06.m2", + value = "horde_cloth06.m2", }, { - fileId = "199617", - value = "xmastree_largehorde01.m2", - text = "xmastree_largehorde01.m2", + fileId = "199501", + text = "horde_food01.m2", + value = "horde_food01.m2", }, { - fileId = "199618", - value = "xmastree_mediumalliance01.m2", - text = "xmastree_mediumalliance01.m2", + fileId = "199502", + text = "horde_food02.m2", + value = "horde_food02.m2", }, { - fileId = "199619", - value = "xmastree_mediumhorde01.m2", - text = "xmastree_mediumhorde01.m2", + fileId = "199503", + text = "horde_food03.m2", + value = "horde_food03.m2", }, - }, - value = "christmas", - text = "christmas", - }, - { - children = { { - fileId = "199632", - value = "crate01.m2", - text = "crate01.m2", + fileId = "199504", + text = "horde_food04.m2", + value = "horde_food04.m2", }, - }, - value = "crate01", - text = "crate01", - }, - { - children = { { - fileId = "199634", - value = "crate02.m2", - text = "crate02.m2", + fileId = "199505", + text = "horde_food05.m2", + value = "horde_food05.m2", }, - }, - value = "crate02", - text = "crate02", - }, - { - children = { { - fileId = "199636", - value = "cratealliancefirstaid01.m2", - text = "cratealliancefirstaid01.m2", + fileId = "199506", + text = "horde_food06.m2", + value = "horde_food06.m2", }, { - fileId = "199639", - value = "cratehordefirstaid01.m2", - text = "cratehordefirstaid01.m2", + fileId = "199507", + text = "horde_furs01.m2", + value = "horde_furs01.m2", }, - }, - value = "cratesfirstaid", - text = "cratesfirstaid", - }, - { - children = { { - fileId = "199640", - value = "dragonfootsoldierbones.m2", - text = "dragonfootsoldierbones.m2", + fileId = "199508", + text = "horde_furs02.m2", + value = "horde_furs02.m2", }, - }, - value = "creaturedeathskeletons", - text = "creaturedeathskeletons", - }, - { - children = { { - fileId = "199642", - value = "darkportal01.m2", - text = "darkportal01.m2", + fileId = "199509", + text = "horde_furs03.m2", + value = "horde_furs03.m2", }, { - fileId = "199643", - value = "darkportal_blasted_fx.m2", - text = "darkportal_blasted_fx.m2", + fileId = "199510", + text = "horde_furs04.m2", + value = "horde_furs04.m2", }, - }, - value = "darkportals", - text = "darkportals", - }, - { - children = { { - fileId = "199652", - value = "deadtreelog01.m2", - text = "deadtreelog01.m2", + fileId = "199511", + text = "horde_furs05.m2", + value = "horde_furs05.m2", }, { - fileId = "199653", - value = "deadtreelog02.m2", - text = "deadtreelog02.m2", + fileId = "199512", + text = "horde_furs06.m2", + value = "horde_furs06.m2", }, { - fileId = "199654", - value = "deadtreelog03.m2", - text = "deadtreelog03.m2", + fileId = "199513", + text = "horde_herbs01.m2", + value = "horde_herbs01.m2", }, { - fileId = "199655", - value = "deadtreelog04.m2", - text = "deadtreelog04.m2", + fileId = "199514", + text = "horde_herbs02.m2", + value = "horde_herbs02.m2", }, - }, - value = "deadtreelogs", - text = "deadtreelogs", - }, - { - children = { { - fileId = "199660", - value = "bloodelffemaledeathskeleton.m2", - text = "bloodelffemaledeathskeleton.m2", + fileId = "199515", + text = "horde_herbs03.m2", + value = "horde_herbs03.m2", }, { - fileId = "199661", - value = "bloodelfmaledeathskeleton.m2", - text = "bloodelfmaledeathskeleton.m2", + fileId = "199516", + text = "horde_herbs04.m2", + value = "horde_herbs04.m2", }, { - fileId = "199664", - value = "draeneifemaledeathskeleton.m2", - text = "draeneifemaledeathskeleton.m2", + fileId = "199517", + text = "horde_herbs05.m2", + value = "horde_herbs05.m2", }, { - fileId = "199665", - value = "draeneimaledeathskeleton.m2", - text = "draeneimaledeathskeleton.m2", + fileId = "199518", + text = "horde_herbs06.m2", + value = "horde_herbs06.m2", }, { - fileId = "199666", - value = "dwarffemaledeathskeleton.m2", - text = "dwarffemaledeathskeleton.m2", + fileId = "199519", + text = "horde_metal01.m2", + value = "horde_metal01.m2", }, { - fileId = "199667", - value = "dwarfmaledeathskeleton.m2", - text = "dwarfmaledeathskeleton.m2", + fileId = "199520", + text = "horde_metal02.m2", + value = "horde_metal02.m2", }, { - fileId = "199668", - value = "gnomefemaledeathskeleton.m2", - text = "gnomefemaledeathskeleton.m2", + fileId = "199521", + text = "horde_metal03.m2", + value = "horde_metal03.m2", }, { - fileId = "199669", - value = "gnomemaledeathskeleton.m2", - text = "gnomemaledeathskeleton.m2", + fileId = "199522", + text = "horde_metal04.m2", + value = "horde_metal04.m2", }, { - fileId = "323069", - value = "goblinfemaledeathskeleton.m2", - text = "goblinfemaledeathskeleton.m2", + fileId = "199523", + text = "horde_metal05.m2", + value = "horde_metal05.m2", }, { - fileId = "323070", - value = "goblinmaledeathskeleton.m2", - text = "goblinmaledeathskeleton.m2", + fileId = "199524", + text = "horde_metal06.m2", + value = "horde_metal06.m2", }, { - fileId = "199670", - value = "humanfemaledeathskeleton.m2", - text = "humanfemaledeathskeleton.m2", + fileId = "199526", + text = "leather_level01.m2", + value = "leather_level01.m2", }, { - fileId = "199671", - value = "humanmaledeathskeleton.m2", - text = "humanmaledeathskeleton.m2", + fileId = "199527", + text = "leather_level02.m2", + value = "leather_level02.m2", }, { - fileId = "199672", - value = "nightelffemaledeathskeleton.m2", - text = "nightelffemaledeathskeleton.m2", + fileId = "199528", + text = "leather_level03.m2", + value = "leather_level03.m2", }, { - fileId = "199673", - value = "nightelfmaledeathskeleton.m2", - text = "nightelfmaledeathskeleton.m2", + fileId = "199529", + text = "leather_level04.m2", + value = "leather_level04.m2", }, { - fileId = "199674", - value = "orcfemaledeathskeleton.m2", - text = "orcfemaledeathskeleton.m2", + fileId = "199530", + text = "leather_level05.m2", + value = "leather_level05.m2", }, { - fileId = "199675", - value = "orcmaledeathskeleton.m2", - text = "orcmaledeathskeleton.m2", + fileId = "199531", + text = "leather_level06.m2", + value = "leather_level06.m2", }, { - fileId = "199676", - value = "scourgefemaledeathskeleton.m2", - text = "scourgefemaledeathskeleton.m2", + fileId = "199536", + text = "metals_level01.m2", + value = "metals_level01.m2", }, { - fileId = "199677", - value = "scourgemaledeathskeleton.m2", - text = "scourgemaledeathskeleton.m2", + fileId = "199537", + text = "metals_level02.m2", + value = "metals_level02.m2", }, { - fileId = "199678", - value = "taurenfemaledeathskeleton.m2", - text = "taurenfemaledeathskeleton.m2", + fileId = "199538", + text = "metals_level03.m2", + value = "metals_level03.m2", }, { - fileId = "199679", - value = "taurenmaledeathskeleton.m2", - text = "taurenmaledeathskeleton.m2", + fileId = "199539", + text = "metals_level04.m2", + value = "metals_level04.m2", }, { - fileId = "199680", - value = "trollfemaledeathskeleton.m2", - text = "trollfemaledeathskeleton.m2", + fileId = "199540", + text = "metals_level05.m2", + value = "metals_level05.m2", }, { - fileId = "199681", - value = "trollmaledeathskeleton.m2", - text = "trollmaledeathskeleton.m2", + fileId = "199541", + text = "metals_level06.m2", + value = "metals_level06.m2", }, }, - value = "deathskeletons", - text = "deathskeletons", + text = "ahnqiraj", + value = "ahnqiraj", }, { children = { { - fileId = "199683", - value = "directionalmarker.m2", - text = "directionalmarker.m2", + fileId = "199546", + text = "baby_dw.m2", + value = "baby_dw.m2", }, { - fileId = "199684", - value = "directionalmarker02.m2", - text = "directionalmarker02.m2", + fileId = "199547", + text = "baby_gn.m2", + value = "baby_gn.m2", + }, + { + fileId = "199548", + text = "baby_hu.m2", + value = "baby_hu.m2", + }, + { + fileId = "199549", + text = "baby_ne.m2", + value = "baby_ne.m2", + }, + { + fileId = "199550", + text = "baby_or.m2", + value = "baby_or.m2", + }, + { + fileId = "199551", + text = "baby_ta.m2", + value = "baby_ta.m2", + }, + { + fileId = "199552", + text = "baby_tr.m2", + value = "baby_tr.m2", }, }, - value = "directionalmarker", - text = "directionalmarker", + text = "babies", + value = "babies", }, { children = { { - fileId = "199686", - value = "doortest01.m2", - text = "doortest01.m2", + fileId = "199562", + text = "final_stage.m2", + value = "final_stage.m2", + }, + }, + text = "band", + value = "band", + }, + { + children = { + { + fileId = "199563", + text = "barrel01.m2", + value = "barrel01.m2", + }, + { + fileId = "199565", + text = "barrellowpoly.m2", + value = "barrellowpoly.m2", + }, + { + fileId = "199566", + text = "brokenbarrel01.m2", + value = "brokenbarrel01.m2", + }, + { + fileId = "199567", + text = "brokenbarrel02.m2", + value = "brokenbarrel02.m2", }, }, - value = "doors", - text = "doors", + text = "barrel", + value = "barrel", }, { children = { { - fileId = "199687", - value = "duelingflag.m2", - text = "duelingflag.m2", + fileId = "199571", + text = "newbindstone.m2", + value = "newbindstone.m2", }, }, - value = "duelingflag", - text = "duelingflag", + text = "bindstone", + value = "bindstone", }, { children = { { - fileId = "199691", - value = "easteregg01.m2", - text = "easteregg01.m2", + fileId = "199572", + text = "bleacherseat1a.m2", + value = "bleacherseat1a.m2", }, { - fileId = "199693", - value = "easteregg02.m2", - text = "easteregg02.m2", + fileId = "199573", + text = "bleacherseat1b.m2", + value = "bleacherseat1b.m2", }, { - fileId = "199695", - value = "easteregg03.m2", - text = "easteregg03.m2", + fileId = "199574", + text = "bleacherseat1c.m2", + value = "bleacherseat1c.m2", }, { - fileId = "199697", - value = "easteregg04.m2", - text = "easteregg04.m2", + fileId = "199575", + text = "bleacherseat1d.m2", + value = "bleacherseat1d.m2", }, { - fileId = "199699", - value = "easteregg05.m2", - text = "easteregg05.m2", + fileId = "199576", + text = "bleacherswood01.m2", + value = "bleacherswood01.m2", }, }, - value = "eastereggs", - text = "eastereggs", + text = "bleachers", + value = "bleachers", }, { children = { { - fileId = "199701", - value = "spring.m2", - text = "spring.m2", + fileId = "199577", + text = "beerfest_molemachine.m2", + value = "beerfest_molemachine.m2", }, { - fileId = "199702", - value = "spring02.m2", - text = "spring02.m2", + fileId = "244221", + text = "beerfest_molemachine_anim_set2.m2", + value = "beerfest_molemachine_anim_set2.m2", }, }, - value = "engineering", - text = "engineering", + text = "brewfest", + value = "brewfest", }, { children = { { - fileId = "199704", - value = "featherbigblue.m2", - text = "featherbigblue.m2", - }, - { - fileId = "199706", - value = "featherbigbrown.m2", - text = "featherbigbrown.m2", - }, - { - fileId = "199708", - value = "featherbigred.m2", - text = "featherbigred.m2", + fileId = "199580", + text = "brokenfreezingtrap.m2", + value = "brokenfreezingtrap.m2", }, }, - value = "feathers", - text = "feathers", + text = "brokentrap", + value = "brokentrap", }, { children = { { - fileId = "199710", - value = "fishskel01.m2", - text = "fishskel01.m2", + fileId = "199591", + text = "g_nutcracker.m2", + value = "g_nutcracker.m2", }, { - fileId = "199712", - value = "fishskel02.m2", - text = "fishskel02.m2", + fileId = "199592", + text = "g_xmaswreath.m2", + value = "g_xmaswreath.m2", }, - }, - value = "fish", - text = "fish", - }, - { - children = { { - fileId = "199713", - value = "floatingbarrel01.m2", - text = "floatingbarrel01.m2", + fileId = "199594", + text = "lunarnewyear_lights.m2", + value = "lunarnewyear_lights.m2", }, { - fileId = "199714", - value = "floatingbarrel02.m2", - text = "floatingbarrel02.m2", + fileId = "199595", + text = "lunarnewyear_lightsx3.m2", + value = "lunarnewyear_lightsx3.m2", }, { - fileId = "199715", - value = "floatingboards01.m2", - text = "floatingboards01.m2", + fileId = "199596", + text = "mistletoe.m2", + value = "mistletoe.m2", }, { - fileId = "199716", - value = "floatingboardsburning01.m2", - text = "floatingboardsburning01.m2", + fileId = "199597", + text = "mistletoe02.m2", + value = "mistletoe02.m2", }, { - fileId = "199717", - value = "floatingcoffin01.m2", - text = "floatingcoffin01.m2", + fileId = "199600", + text = "xmas_lights.m2", + value = "xmas_lights.m2", }, { - fileId = "199718", - value = "floatingcrate01.m2", - text = "floatingcrate01.m2", + fileId = "199601", + text = "xmas_lights_broken.m2", + value = "xmas_lights_broken.m2", }, { - fileId = "199719", - value = "floatingtree01.m2", - text = "floatingtree01.m2", + fileId = "199602", + text = "xmas_lights_broken3x.m2", + value = "xmas_lights_broken3x.m2", }, { - fileId = "199720", - value = "floatingtree02.m2", - text = "floatingtree02.m2", + fileId = "199603", + text = "xmas_lightsx3.m2", + value = "xmas_lightsx3.m2", }, { - fileId = "199721", - value = "floatingtree03.m2", - text = "floatingtree03.m2", + fileId = "199604", + text = "xmasgift01.m2", + value = "xmasgift01.m2", }, - }, - value = "floatingdebris", - text = "floatingdebris", - }, - { - children = { { - fileId = "199723", - value = "flyingsmallinsects.m2", - text = "flyingsmallinsects.m2", + fileId = "199605", + text = "xmasgift02.m2", + value = "xmasgift02.m2", }, - }, - value = "flyinginsects", - text = "flyinginsects", - }, - { - children = { { - fileId = "199724", - value = "fruit_apple.m2", - text = "fruit_apple.m2", + fileId = "199606", + text = "xmasgift03.m2", + value = "xmasgift03.m2", }, { - fileId = "199725", - value = "fruit_banana.m2", - text = "fruit_banana.m2", + fileId = "199607", + text = "xmasgift04.m2", + value = "xmasgift04.m2", }, { - fileId = "199726", - value = "fruit_bananabunch.m2", - text = "fruit_bananabunch.m2", + fileId = "199608", + text = "xmasgift05.m2", + value = "xmasgift05.m2", }, { - fileId = "199727", - value = "fruit_melon.m2", - text = "fruit_melon.m2", + fileId = "199609", + text = "xmasgift06.m2", + value = "xmasgift06.m2", }, { - fileId = "199728", - value = "fruit_melonslice01.m2", - text = "fruit_melonslice01.m2", + fileId = "199610", + text = "xmasropeline.m2", + value = "xmasropeline.m2", }, { - fileId = "199729", - value = "fruit_melonslice02.m2", - text = "fruit_melonslice02.m2", + fileId = "199611", + text = "xmasropelinepole.m2", + value = "xmasropelinepole.m2", }, { - fileId = "199730", - value = "fruit_orange.m2", - text = "fruit_orange.m2", + fileId = "199612", + text = "xmasstocking01.m2", + value = "xmasstocking01.m2", }, { - fileId = "199731", - value = "fruit_orangeslice.m2", - text = "fruit_orangeslice.m2", + fileId = "199613", + text = "xmasstocking02.m2", + value = "xmasstocking02.m2", }, { - fileId = "199732", - value = "fruit_pear.m2", - text = "fruit_pear.m2", + fileId = "199614", + text = "xmasstocking03.m2", + value = "xmasstocking03.m2", }, { - fileId = "199734", - value = "fruitbowl_apples.m2", - text = "fruitbowl_apples.m2", + fileId = "199615", + text = "xmastree_largealliance01.m2", + value = "xmastree_largealliance01.m2", }, { - fileId = "199735", - value = "fruitbowl_empty.m2", - text = "fruitbowl_empty.m2", + fileId = "199616", + text = "xmastree_largealliance01white.m2", + value = "xmastree_largealliance01white.m2", }, { - fileId = "199736", - value = "fruitbowl_mixed.m2", - text = "fruitbowl_mixed.m2", + fileId = "199617", + text = "xmastree_largehorde01.m2", + value = "xmastree_largehorde01.m2", }, - }, - value = "fruits", - text = "fruits", - }, - { - children = { { - children = { - { - fileId = "199737", - value = "barrel02.m2", - text = "barrel02.m2", - }, - { - fileId = "199739", - value = "crate03.m2", - text = "crate03.m2", - }, - { - fileId = "199742", - value = "exploding_package.m2", - text = "exploding_package.m2", - }, - { - fileId = "199744", - value = "lichcontainer01.m2", - text = "lichcontainer01.m2", - }, - { - fileId = "199745", - value = "sack01.m2", - text = "sack01.m2", - }, - { - fileId = "199746", - value = "sack02.m2", - text = "sack02.m2", - }, - { - fileId = "199748", - value = "titanchest.m2", - text = "titanchest.m2", - }, - { - fileId = "199751", - value = "titanvase01.m2", - text = "titanvase01.m2", - }, - { - fileId = "199753", - value = "titanvase02.m2", - text = "titanvase02.m2", - }, - }, - value = "containers", - text = "containers", + fileId = "199618", + text = "xmastree_mediumalliance01.m2", + value = "xmastree_mediumalliance01.m2", }, { - children = { - { - fileId = "199754", - value = "bone01.m2", - text = "bone01.m2", - }, - { - fileId = "199755", - value = "bone02.m2", - text = "bone02.m2", - }, - }, - value = "refuse", - text = "refuse", + fileId = "199619", + text = "xmastree_mediumhorde01.m2", + value = "xmastree_mediumhorde01.m2", }, }, - value = "furniture", - text = "furniture", + text = "christmas", + value = "christmas", }, { children = { { - fileId = "199756", - value = "gallows01.m2", - text = "gallows01.m2", + fileId = "199632", + text = "crate01.m2", + value = "crate01.m2", }, }, - value = "gallows", - text = "gallows", + text = "crate01", + value = "crate01", }, { children = { { - fileId = "199757", - value = "graystone01.m2", - text = "graystone01.m2", - }, - { - fileId = "199758", - value = "graystone02.m2", - text = "graystone02.m2", + fileId = "199634", + text = "crate02.m2", + value = "crate02.m2", }, }, - value = "graystone", - text = "graystone", + text = "crate02", + value = "crate02", }, { children = { { - fileId = "199760", - value = "guildvault_bloodelf_01.m2", - text = "guildvault_bloodelf_01.m2", - }, - { - fileId = "199763", - value = "guildvault_draenei_01.m2", - text = "guildvault_draenei_01.m2", - }, - { - fileId = "199765", - value = "guildvault_dwarf_01.m2", - text = "guildvault_dwarf_01.m2", - }, - { - fileId = "199767", - value = "guildvault_goblin_01.m2", - text = "guildvault_goblin_01.m2", - }, - { - fileId = "199769", - value = "guildvault_human_01.m2", - text = "guildvault_human_01.m2", + fileId = "199636", + text = "cratealliancefirstaid01.m2", + value = "cratealliancefirstaid01.m2", }, { - fileId = "199770", - value = "guildvault_nightelf_01.m2", - text = "guildvault_nightelf_01.m2", + fileId = "199639", + text = "cratehordefirstaid01.m2", + value = "cratehordefirstaid01.m2", }, + }, + text = "cratesfirstaid", + value = "cratesfirstaid", + }, + { + children = { { - fileId = "199772", - value = "guildvault_orc_01.m2", - text = "guildvault_orc_01.m2", + fileId = "199640", + text = "dragonfootsoldierbones.m2", + value = "dragonfootsoldierbones.m2", }, + }, + text = "creaturedeathskeletons", + value = "creaturedeathskeletons", + }, + { + children = { { - fileId = "199777", - value = "guildvault_tauren_01.m2", - text = "guildvault_tauren_01.m2", + fileId = "199642", + text = "darkportal01.m2", + value = "darkportal01.m2", }, { - fileId = "199779", - value = "guildvault_undercity_01.m2", - text = "guildvault_undercity_01.m2", + fileId = "199643", + text = "darkportal_blasted_fx.m2", + value = "darkportal_blasted_fx.m2", }, }, - value = "guildbank", - text = "guildbank", + text = "darkportals", + value = "darkportals", }, { children = { { - fileId = "199786", - value = "burningash01.m2", - text = "burningash01.m2", + fileId = "199652", + text = "deadtreelog01.m2", + value = "deadtreelog01.m2", }, { - fileId = "199787", - value = "burningwickerman01.m2", - text = "burningwickerman01.m2", + fileId = "199653", + text = "deadtreelog02.m2", + value = "deadtreelog02.m2", }, { - fileId = "199788", - value = "hangingskulllight01.m2", - text = "hangingskulllight01.m2", + fileId = "199654", + text = "deadtreelog03.m2", + value = "deadtreelog03.m2", }, { - fileId = "199789", - value = "hangingskulllight02.m2", - text = "hangingskulllight02.m2", + fileId = "199655", + text = "deadtreelog04.m2", + value = "deadtreelog04.m2", }, }, - value = "halloween", - text = "halloween", + text = "deadtreelogs", + value = "deadtreelogs", }, { children = { { - fileId = "199795", - value = "hidestack01.m2", - text = "hidestack01.m2", + fileId = "199660", + text = "bloodelffemaledeathskeleton.m2", + value = "bloodelffemaledeathskeleton.m2", }, { - fileId = "199796", - value = "hidestack02.m2", - text = "hidestack02.m2", + fileId = "199661", + text = "bloodelfmaledeathskeleton.m2", + value = "bloodelfmaledeathskeleton.m2", }, - }, - value = "hides", - text = "hides", - }, - { - children = { { - fileId = "199797", - value = "bigcandle.m2", - text = "bigcandle.m2", + fileId = "199664", + text = "draeneifemaledeathskeleton.m2", + value = "draeneifemaledeathskeleton.m2", }, { - fileId = "199801", - value = "candelabra01.m2", - text = "candelabra01.m2", + fileId = "199665", + text = "draeneimaledeathskeleton.m2", + value = "draeneimaledeathskeleton.m2", }, { - fileId = "199802", - value = "candelabra02.m2", - text = "candelabra02.m2", + fileId = "199666", + text = "dwarffemaledeathskeleton.m2", + value = "dwarffemaledeathskeleton.m2", }, { - fileId = "199803", - value = "candelabratallwall01.m2", - text = "candelabratallwall01.m2", + fileId = "199667", + text = "dwarfmaledeathskeleton.m2", + value = "dwarfmaledeathskeleton.m2", }, { - fileId = "199804", - value = "candelabratallwall02.m2", - text = "candelabratallwall02.m2", + fileId = "199668", + text = "gnomefemaledeathskeleton.m2", + value = "gnomefemaledeathskeleton.m2", }, { - fileId = "199806", - value = "candle01.m2", - text = "candle01.m2", + fileId = "199669", + text = "gnomemaledeathskeleton.m2", + value = "gnomemaledeathskeleton.m2", }, { - fileId = "199807", - value = "candle02.m2", - text = "candle02.m2", + fileId = "323069", + text = "goblinfemaledeathskeleton.m2", + value = "goblinfemaledeathskeleton.m2", + }, + { + fileId = "323070", + text = "goblinmaledeathskeleton.m2", + value = "goblinmaledeathskeleton.m2", }, { - fileId = "199808", - value = "candle03.m2", - text = "candle03.m2", + fileId = "199670", + text = "humanfemaledeathskeleton.m2", + value = "humanfemaledeathskeleton.m2", }, { - fileId = "199809", - value = "candleblack01.m2", - text = "candleblack01.m2", + fileId = "199671", + text = "humanmaledeathskeleton.m2", + value = "humanmaledeathskeleton.m2", }, { - fileId = "199810", - value = "candleoff01.m2", - text = "candleoff01.m2", + fileId = "199672", + text = "nightelffemaledeathskeleton.m2", + value = "nightelffemaledeathskeleton.m2", }, { - fileId = "199811", - value = "candleoff02.m2", - text = "candleoff02.m2", + fileId = "199673", + text = "nightelfmaledeathskeleton.m2", + value = "nightelfmaledeathskeleton.m2", }, { - fileId = "199812", - value = "candleoff03.m2", - text = "candleoff03.m2", + fileId = "199674", + text = "orcfemaledeathskeleton.m2", + value = "orcfemaledeathskeleton.m2", }, { - fileId = "199813", - value = "chandelier01.m2", - text = "chandelier01.m2", + fileId = "199675", + text = "orcmaledeathskeleton.m2", + value = "orcmaledeathskeleton.m2", }, { - fileId = "199815", - value = "freestandingtorch01.m2", - text = "freestandingtorch01.m2", + fileId = "199676", + text = "scourgefemaledeathskeleton.m2", + value = "scourgefemaledeathskeleton.m2", }, { - fileId = "199816", - value = "freestandingtorch02.m2", - text = "freestandingtorch02.m2", + fileId = "199677", + text = "scourgemaledeathskeleton.m2", + value = "scourgemaledeathskeleton.m2", }, { - fileId = "199817", - value = "freestandingtorch04_giant.m2", - text = "freestandingtorch04_giant.m2", + fileId = "199678", + text = "taurenfemaledeathskeleton.m2", + value = "taurenfemaledeathskeleton.m2", }, { - fileId = "199818", - value = "freestandingtorch04_huge.m2", - text = "freestandingtorch04_huge.m2", + fileId = "199679", + text = "taurenmaledeathskeleton.m2", + value = "taurenmaledeathskeleton.m2", }, { - fileId = "199819", - value = "freestandingtorch04_hugeblue.m2", - text = "freestandingtorch04_hugeblue.m2", + fileId = "199680", + text = "trollfemaledeathskeleton.m2", + value = "trollfemaledeathskeleton.m2", }, { - fileId = "199820", - value = "generaltorch01.m2", - text = "generaltorch01.m2", + fileId = "199681", + text = "trollmaledeathskeleton.m2", + value = "trollmaledeathskeleton.m2", }, + }, + text = "deathskeletons", + value = "deathskeletons", + }, + { + children = { { - fileId = "199821", - value = "generaltorch02.m2", - text = "generaltorch02.m2", + fileId = "199683", + text = "directionalmarker.m2", + value = "directionalmarker.m2", }, { - fileId = "199823", - value = "torch.m2", - text = "torch.m2", + fileId = "199684", + text = "directionalmarker02.m2", + value = "directionalmarker02.m2", }, + }, + text = "directionalmarker", + value = "directionalmarker", + }, + { + children = { { - fileId = "199825", - value = "torch_out.m2", - text = "torch_out.m2", + fileId = "199686", + text = "doortest01.m2", + value = "doortest01.m2", }, }, - value = "lights", - text = "lights", + text = "doors", + value = "doors", }, { children = { { - fileId = "199829", - value = "firecrackerstring_blue01.m2", - text = "firecrackerstring_blue01.m2", + fileId = "199687", + text = "duelingflag.m2", + value = "duelingflag.m2", }, + }, + text = "duelingflag", + value = "duelingflag", + }, + { + children = { { - fileId = "199830", - value = "firecrackerstring_red01.m2", - text = "firecrackerstring_red01.m2", + fileId = "199691", + text = "easteregg01.m2", + value = "easteregg01.m2", }, { - fileId = "199832", - value = "luckymoneyenvelope_01.m2", - text = "luckymoneyenvelope_01.m2", + fileId = "199693", + text = "easteregg02.m2", + value = "easteregg02.m2", }, { - fileId = "199834", - value = "lunarnewyear_heroportrait_dw.m2", - text = "lunarnewyear_heroportrait_dw.m2", + fileId = "199695", + text = "easteregg03.m2", + value = "easteregg03.m2", }, { - fileId = "199836", - value = "lunarnewyear_heroportrait_gn.m2", - text = "lunarnewyear_heroportrait_gn.m2", + fileId = "199697", + text = "easteregg04.m2", + value = "easteregg04.m2", }, { - fileId = "199838", - value = "lunarnewyear_heroportrait_hu.m2", - text = "lunarnewyear_heroportrait_hu.m2", + fileId = "199699", + text = "easteregg05.m2", + value = "easteregg05.m2", }, + }, + text = "eastereggs", + value = "eastereggs", + }, + { + children = { { - fileId = "199840", - value = "lunarnewyear_heroportrait_ne.m2", - text = "lunarnewyear_heroportrait_ne.m2", + fileId = "199701", + text = "spring.m2", + value = "spring.m2", }, { - fileId = "199842", - value = "lunarnewyear_heroportrait_or.m2", - text = "lunarnewyear_heroportrait_or.m2", + fileId = "199702", + text = "spring02.m2", + value = "spring02.m2", }, + }, + text = "engineering", + value = "engineering", + }, + { + children = { { - fileId = "199844", - value = "lunarnewyear_heroportrait_sc.m2", - text = "lunarnewyear_heroportrait_sc.m2", + fileId = "199704", + text = "featherbigblue.m2", + value = "featherbigblue.m2", }, { - fileId = "199846", - value = "lunarnewyear_heroportrait_ta.m2", - text = "lunarnewyear_heroportrait_ta.m2", + fileId = "199706", + text = "featherbigbrown.m2", + value = "featherbigbrown.m2", }, { - fileId = "199848", - value = "lunarnewyear_heroportrait_tr.m2", - text = "lunarnewyear_heroportrait_tr.m2", + fileId = "199708", + text = "featherbigred.m2", + value = "featherbigred.m2", }, + }, + text = "feathers", + value = "feathers", + }, + { + children = { { - fileId = "199849", - value = "lunarnewyearbanner_alliance_hanging.m2", - text = "lunarnewyearbanner_alliance_hanging.m2", + fileId = "199710", + text = "fishskel01.m2", + value = "fishskel01.m2", }, { - fileId = "199850", - value = "lunarnewyearbanner_alliance_hanging02.m2", - text = "lunarnewyearbanner_alliance_hanging02.m2", + fileId = "199712", + text = "fishskel02.m2", + value = "fishskel02.m2", }, + }, + text = "fish", + value = "fish", + }, + { + children = { { - fileId = "199851", - value = "lunarnewyearbanner_alliance_standing.m2", - text = "lunarnewyearbanner_alliance_standing.m2", + fileId = "199713", + text = "floatingbarrel01.m2", + value = "floatingbarrel01.m2", }, { - fileId = "199852", - value = "lunarnewyearbanner_horde_hanging.m2", - text = "lunarnewyearbanner_horde_hanging.m2", + fileId = "199714", + text = "floatingbarrel02.m2", + value = "floatingbarrel02.m2", }, { - fileId = "199853", - value = "lunarnewyearbanner_horde_hanging02.m2", - text = "lunarnewyearbanner_horde_hanging02.m2", + fileId = "199715", + text = "floatingboards01.m2", + value = "floatingboards01.m2", }, { - fileId = "199854", - value = "lunarnewyearbanner_horde_standing.m2", - text = "lunarnewyearbanner_horde_standing.m2", + fileId = "199716", + text = "floatingboardsburning01.m2", + value = "floatingboardsburning01.m2", }, { - fileId = "199855", - value = "lunarnewyearlantern_alliance_hanging.m2", - text = "lunarnewyearlantern_alliance_hanging.m2", + fileId = "199717", + text = "floatingcoffin01.m2", + value = "floatingcoffin01.m2", }, { - fileId = "199856", - value = "lunarnewyearlantern_alliance_standing.m2", - text = "lunarnewyearlantern_alliance_standing.m2", + fileId = "199718", + text = "floatingcrate01.m2", + value = "floatingcrate01.m2", }, { - fileId = "199857", - value = "lunarnewyearlantern_horde_hanging.m2", - text = "lunarnewyearlantern_horde_hanging.m2", + fileId = "199719", + text = "floatingtree01.m2", + value = "floatingtree01.m2", }, { - fileId = "199858", - value = "lunarnewyearlantern_horde_standing.m2", - text = "lunarnewyearlantern_horde_standing.m2", + fileId = "199720", + text = "floatingtree02.m2", + value = "floatingtree02.m2", + }, + { + fileId = "199721", + text = "floatingtree03.m2", + value = "floatingtree03.m2", }, }, - value = "lunarnewyear", - text = "lunarnewyear", + text = "floatingdebris", + value = "floatingdebris", }, { children = { { - fileId = "199860", - value = "metalbars01copper.m2", - text = "metalbars01copper.m2", + fileId = "199723", + text = "flyingsmallinsects.m2", + value = "flyingsmallinsects.m2", }, + }, + text = "flyinginsects", + value = "flyinginsects", + }, + { + children = { { - fileId = "199861", - value = "metalbars01iron.m2", - text = "metalbars01iron.m2", + fileId = "199724", + text = "fruit_apple.m2", + value = "fruit_apple.m2", }, { - fileId = "199862", - value = "metalbars01mithril.m2", - text = "metalbars01mithril.m2", + fileId = "199725", + text = "fruit_banana.m2", + value = "fruit_banana.m2", }, { - fileId = "199863", - value = "metalbars01truesilver.m2", - text = "metalbars01truesilver.m2", + fileId = "199726", + text = "fruit_bananabunch.m2", + value = "fruit_bananabunch.m2", }, { - fileId = "199867", - value = "metalbarstack01copper.m2", - text = "metalbarstack01copper.m2", + fileId = "199727", + text = "fruit_melon.m2", + value = "fruit_melon.m2", }, { - fileId = "199868", - value = "metalbarstack01iron.m2", - text = "metalbarstack01iron.m2", + fileId = "199728", + text = "fruit_melonslice01.m2", + value = "fruit_melonslice01.m2", }, { - fileId = "199869", - value = "metalbarstack01mithril.m2", - text = "metalbarstack01mithril.m2", + fileId = "199729", + text = "fruit_melonslice02.m2", + value = "fruit_melonslice02.m2", }, { - fileId = "199870", - value = "metalbarstack01truesilver.m2", - text = "metalbarstack01truesilver.m2", + fileId = "199730", + text = "fruit_orange.m2", + value = "fruit_orange.m2", }, { - fileId = "199871", - value = "metalbarstack02copper.m2", - text = "metalbarstack02copper.m2", + fileId = "199731", + text = "fruit_orangeslice.m2", + value = "fruit_orangeslice.m2", }, { - fileId = "199872", - value = "metalbarstack02iron.m2", - text = "metalbarstack02iron.m2", + fileId = "199732", + text = "fruit_pear.m2", + value = "fruit_pear.m2", }, { - fileId = "199873", - value = "metalbarstack02mithril.m2", - text = "metalbarstack02mithril.m2", + fileId = "199734", + text = "fruitbowl_apples.m2", + value = "fruitbowl_apples.m2", }, { - fileId = "199874", - value = "metalbarstack02truesilver.m2", - text = "metalbarstack02truesilver.m2", + fileId = "199735", + text = "fruitbowl_empty.m2", + value = "fruitbowl_empty.m2", + }, + { + fileId = "199736", + text = "fruitbowl_mixed.m2", + value = "fruitbowl_mixed.m2", }, }, - value = "metalbars", - text = "metalbars", + text = "fruits", + value = "fruits", }, { children = { { children = { { - fileId = "199876", - value = "caveminecar01.m2", - text = "caveminecar01.m2", + fileId = "199737", + text = "barrel02.m2", + value = "barrel02.m2", }, { - fileId = "199880", - value = "caveminecarwrecked01.m2", - text = "caveminecarwrecked01.m2", + fileId = "199739", + text = "crate03.m2", + value = "crate03.m2", }, { - fileId = "199881", - value = "caveminecarwrecked02.m2", - text = "caveminecarwrecked02.m2", + fileId = "199742", + text = "exploding_package.m2", + value = "exploding_package.m2", }, { - fileId = "199882", - value = "caveminepulley01.m2", - text = "caveminepulley01.m2", + fileId = "199744", + text = "lichcontainer01.m2", + value = "lichcontainer01.m2", }, { - fileId = "199883", - value = "caveminepulley02.m2", - text = "caveminepulley02.m2", + fileId = "199745", + text = "sack01.m2", + value = "sack01.m2", }, - }, - value = "minecars", - text = "minecars", - }, - { - children = { { - fileId = "199885", - value = "pulley.m2", - text = "pulley.m2", + fileId = "199746", + text = "sack02.m2", + value = "sack02.m2", + }, + { + fileId = "199748", + text = "titanchest.m2", + value = "titanchest.m2", + }, + { + fileId = "199751", + text = "titanvase01.m2", + value = "titanvase01.m2", + }, + { + fileId = "199753", + text = "titanvase02.m2", + value = "titanvase02.m2", }, }, - value = "pulleys", - text = "pulleys", + text = "containers", + value = "containers", }, { children = { { - fileId = "199886", - value = "caveminewheelbarrow01.m2", - text = "caveminewheelbarrow01.m2", + fileId = "199754", + text = "bone01.m2", + value = "bone01.m2", + }, + { + fileId = "199755", + text = "bone02.m2", + value = "bone02.m2", }, }, - value = "wheelbarrow", - text = "wheelbarrow", - }, - }, - value = "misc", - text = "misc", - }, - { - children = { - { - fileId = "199889", - value = "beerfest_banner01.m2", - text = "beerfest_banner01.m2", - }, - { - fileId = "199891", - value = "beerfest_banner02.m2", - text = "beerfest_banner02.m2", - }, - { - fileId = "199892", - value = "beerfest_beervendor.m2", - text = "beerfest_beervendor.m2", - }, - { - fileId = "199893", - value = "beerfest_foodtent.m2", - text = "beerfest_foodtent.m2", - }, - { - fileId = "199894", - value = "beerfest_opentent.m2", - text = "beerfest_opentent.m2", - }, - { - fileId = "199896", - value = "beerfest_wagon.m2", - text = "beerfest_wagon.m2", - }, - { - fileId = "199897", - value = "beerfest_wagon_full.m2", - text = "beerfest_wagon_full.m2", - }, - { - fileId = "199901", - value = "flamingpumpkinhead.m2", - text = "flamingpumpkinhead.m2", - }, - { - fileId = "199902", - value = "pumpkinhead.m2", - text = "pumpkinhead.m2", + text = "refuse", + value = "refuse", }, }, - value = "oktoberfest", - text = "oktoberfest", + text = "furniture", + value = "furniture", }, { children = { { - fileId = "199904", - value = "ashenvalewisps.m2", - text = "ashenvalewisps.m2", - }, - { - fileId = "199905", - value = "aurablue.m2", - text = "aurablue.m2", - }, - { - fileId = "199906", - value = "aurabluehuge.m2", - text = "aurabluehuge.m2", - }, - { - fileId = "199907", - value = "aurablueshort.m2", - text = "aurablueshort.m2", - }, - { - fileId = "199908", - value = "aurabluetall.m2", - text = "aurabluetall.m2", + fileId = "199756", + text = "gallows01.m2", + value = "gallows01.m2", }, + }, + text = "gallows", + value = "gallows", + }, + { + children = { { - fileId = "199909", - value = "aurablueverytall.m2", - text = "aurablueverytall.m2", + fileId = "199757", + text = "graystone01.m2", + value = "graystone01.m2", }, { - fileId = "199910", - value = "auragreen.m2", - text = "auragreen.m2", + fileId = "199758", + text = "graystone02.m2", + value = "graystone02.m2", }, + }, + text = "graystone", + value = "graystone", + }, + { + children = { { - fileId = "199911", - value = "auragreenshort.m2", - text = "auragreenshort.m2", + fileId = "199760", + text = "guildvault_bloodelf_01.m2", + value = "guildvault_bloodelf_01.m2", }, { - fileId = "199912", - value = "auragreentall.m2", - text = "auragreentall.m2", + fileId = "199763", + text = "guildvault_draenei_01.m2", + value = "guildvault_draenei_01.m2", }, { - fileId = "199913", - value = "auragreenverytall.m2", - text = "auragreenverytall.m2", + fileId = "199765", + text = "guildvault_dwarf_01.m2", + value = "guildvault_dwarf_01.m2", }, { - fileId = "199914", - value = "aurapurple.m2", - text = "aurapurple.m2", + fileId = "199767", + text = "guildvault_goblin_01.m2", + value = "guildvault_goblin_01.m2", }, { - fileId = "199915", - value = "aurapurpleshort.m2", - text = "aurapurpleshort.m2", + fileId = "199769", + text = "guildvault_human_01.m2", + value = "guildvault_human_01.m2", }, { - fileId = "199916", - value = "aurapurpletall.m2", - text = "aurapurpletall.m2", + fileId = "199770", + text = "guildvault_nightelf_01.m2", + value = "guildvault_nightelf_01.m2", }, { - fileId = "199917", - value = "aurapurpleverytall.m2", - text = "aurapurpleverytall.m2", + fileId = "199772", + text = "guildvault_orc_01.m2", + value = "guildvault_orc_01.m2", }, { - fileId = "199918", - value = "aurared.m2", - text = "aurared.m2", + fileId = "199777", + text = "guildvault_tauren_01.m2", + value = "guildvault_tauren_01.m2", }, { - fileId = "199919", - value = "auraredhuge.m2", - text = "auraredhuge.m2", + fileId = "199779", + text = "guildvault_undercity_01.m2", + value = "guildvault_undercity_01.m2", }, + }, + text = "guildbank", + value = "guildbank", + }, + { + children = { { - fileId = "199920", - value = "auraredshort.m2", - text = "auraredshort.m2", + fileId = "199786", + text = "burningash01.m2", + value = "burningash01.m2", }, { - fileId = "199921", - value = "auraredtall.m2", - text = "auraredtall.m2", + fileId = "199787", + text = "burningwickerman01.m2", + value = "burningwickerman01.m2", }, { - fileId = "199922", - value = "auraredverytall.m2", - text = "auraredverytall.m2", + fileId = "199788", + text = "hangingskulllight01.m2", + value = "hangingskulllight01.m2", }, { - fileId = "199923", - value = "aurayellow.m2", - text = "aurayellow.m2", + fileId = "199789", + text = "hangingskulllight02.m2", + value = "hangingskulllight02.m2", }, + }, + text = "halloween", + value = "halloween", + }, + { + children = { { - fileId = "199924", - value = "aurayellowhuge.m2", - text = "aurayellowhuge.m2", + fileId = "199795", + text = "hidestack01.m2", + value = "hidestack01.m2", }, { - fileId = "199925", - value = "aurayellowshort.m2", - text = "aurayellowshort.m2", + fileId = "199796", + text = "hidestack02.m2", + value = "hidestack02.m2", }, + }, + text = "hides", + value = "hides", + }, + { + children = { { - fileId = "199926", - value = "aurayellowtall.m2", - text = "aurayellowtall.m2", + fileId = "199797", + text = "bigcandle.m2", + value = "bigcandle.m2", }, { - fileId = "199927", - value = "aurayellowverytall.m2", - text = "aurayellowverytall.m2", + fileId = "199801", + text = "candelabra01.m2", + value = "candelabra01.m2", }, { - fileId = "199929", - value = "blacksmith_smoke.m2", - text = "blacksmith_smoke.m2", + fileId = "199802", + text = "candelabra02.m2", + value = "candelabra02.m2", }, { - fileId = "199930", - value = "blastedlandslightningbolt01.m2", - text = "blastedlandslightningbolt01.m2", + fileId = "199803", + text = "candelabratallwall01.m2", + value = "candelabratallwall01.m2", }, { - fileId = "199932", - value = "bubbles01.m2", - text = "bubbles01.m2", + fileId = "199804", + text = "candelabratallwall02.m2", + value = "candelabratallwall02.m2", }, { - fileId = "199933", - value = "bubblesb.m2", - text = "bubblesb.m2", + fileId = "199806", + text = "candle01.m2", + value = "candle01.m2", }, { - fileId = "199934", - value = "bubblesb_bigemitter.m2", - text = "bubblesb_bigemitter.m2", + fileId = "199807", + text = "candle02.m2", + value = "candle02.m2", }, { - fileId = "199935", - value = "ceilingdustemitter.m2", - text = "ceilingdustemitter.m2", + fileId = "199808", + text = "candle03.m2", + value = "candle03.m2", }, { - fileId = "199938", - value = "druidwisp01.m2", - text = "druidwisp01.m2", + fileId = "199809", + text = "candleblack01.m2", + value = "candleblack01.m2", }, { - fileId = "199939", - value = "dustwallowgroundfog.m2", - text = "dustwallowgroundfog.m2", + fileId = "199810", + text = "candleoff01.m2", + value = "candleoff01.m2", }, { - fileId = "199940", - value = "dustwallowgroundfogplane.m2", - text = "dustwallowgroundfogplane.m2", + fileId = "199811", + text = "candleoff02.m2", + value = "candleoff02.m2", }, { - fileId = "199941", - value = "feralaslightblue.m2", - text = "feralaslightblue.m2", + fileId = "199812", + text = "candleoff03.m2", + value = "candleoff03.m2", }, { - fileId = "199942", - value = "feralaslightgreen.m2", - text = "feralaslightgreen.m2", + fileId = "199813", + text = "chandelier01.m2", + value = "chandelier01.m2", }, { - fileId = "199944", - value = "feralaslightpurple.m2", - text = "feralaslightpurple.m2", + fileId = "199815", + text = "freestandingtorch01.m2", + value = "freestandingtorch01.m2", }, { - fileId = "199945", - value = "feralaslightyellow.m2", - text = "feralaslightyellow.m2", + fileId = "199816", + text = "freestandingtorch02.m2", + value = "freestandingtorch02.m2", }, { - fileId = "199946", - value = "flamecircle.m2", - text = "flamecircle.m2", + fileId = "199817", + text = "freestandingtorch04_giant.m2", + value = "freestandingtorch04_giant.m2", }, { - fileId = "199947", - value = "flyswarms.m2", - text = "flyswarms.m2", + fileId = "199818", + text = "freestandingtorch04_huge.m2", + value = "freestandingtorch04_huge.m2", }, { - fileId = "199948", - value = "fogbox.m2", - text = "fogbox.m2", + fileId = "199819", + text = "freestandingtorch04_hugeblue.m2", + value = "freestandingtorch04_hugeblue.m2", }, { - fileId = "199949", - value = "fountainparticles.m2", - text = "fountainparticles.m2", + fileId = "199820", + text = "generaltorch01.m2", + value = "generaltorch01.m2", }, { - fileId = "199950", - value = "greengroundfog.m2", - text = "greengroundfog.m2", + fileId = "199821", + text = "generaltorch02.m2", + value = "generaltorch02.m2", }, { - fileId = "199951", - value = "greygroundfog.m2", - text = "greygroundfog.m2", + fileId = "199823", + text = "torch.m2", + value = "torch.m2", }, { - fileId = "199954", - value = "housesmoke.m2", - text = "housesmoke.m2", + fileId = "199825", + text = "torch_out.m2", + value = "torch_out.m2", }, + }, + text = "lights", + value = "lights", + }, + { + children = { { - fileId = "199956", - value = "lavaparticlesplash.m2", - text = "lavaparticlesplash.m2", + fileId = "199829", + text = "firecrackerstring_blue01.m2", + value = "firecrackerstring_blue01.m2", }, { - fileId = "199957", - value = "lavasmokeemitter.m2", - text = "lavasmokeemitter.m2", + fileId = "199830", + text = "firecrackerstring_red01.m2", + value = "firecrackerstring_red01.m2", }, { - fileId = "199958", - value = "lavasmokeemitterb.m2", - text = "lavasmokeemitterb.m2", + fileId = "199832", + text = "luckymoneyenvelope_01.m2", + value = "luckymoneyenvelope_01.m2", }, { - fileId = "199959", - value = "lavasplashparticle.m2", - text = "lavasplashparticle.m2", + fileId = "199834", + text = "lunarnewyear_heroportrait_dw.m2", + value = "lunarnewyear_heroportrait_dw.m2", }, { - fileId = "199962", - value = "mountaincaveriver.m2", - text = "mountaincaveriver.m2", + fileId = "199836", + text = "lunarnewyear_heroportrait_gn.m2", + value = "lunarnewyear_heroportrait_gn.m2", }, { - fileId = "199964", - value = "orangegroundfog.m2", - text = "orangegroundfog.m2", + fileId = "199838", + text = "lunarnewyear_heroportrait_hu.m2", + value = "lunarnewyear_heroportrait_hu.m2", }, { - fileId = "199965", - value = "outlanddemonglow.m2", - text = "outlanddemonglow.m2", + fileId = "199840", + text = "lunarnewyear_heroportrait_ne.m2", + value = "lunarnewyear_heroportrait_ne.m2", }, { - fileId = "199967", - value = "purplegroundfog.m2", - text = "purplegroundfog.m2", + fileId = "199842", + text = "lunarnewyear_heroportrait_or.m2", + value = "lunarnewyear_heroportrait_or.m2", }, { - fileId = "199968", - value = "shadowfangfog01.m2", - text = "shadowfangfog01.m2", + fileId = "199844", + text = "lunarnewyear_heroportrait_sc.m2", + value = "lunarnewyear_heroportrait_sc.m2", }, { - fileId = "199969", - value = "shrineaurablue.m2", - text = "shrineaurablue.m2", + fileId = "199846", + text = "lunarnewyear_heroportrait_ta.m2", + value = "lunarnewyear_heroportrait_ta.m2", }, { - fileId = "199970", - value = "steam02.m2", - text = "steam02.m2", + fileId = "199848", + text = "lunarnewyear_heroportrait_tr.m2", + value = "lunarnewyear_heroportrait_tr.m2", }, { - fileId = "199971", - value = "steam03.m2", - text = "steam03.m2", + fileId = "199849", + text = "lunarnewyearbanner_alliance_hanging.m2", + value = "lunarnewyearbanner_alliance_hanging.m2", }, { - fileId = "199972", - value = "steam04.m2", - text = "steam04.m2", + fileId = "199850", + text = "lunarnewyearbanner_alliance_hanging02.m2", + value = "lunarnewyearbanner_alliance_hanging02.m2", }, { - fileId = "199973", - value = "sunkenflame01.m2", - text = "sunkenflame01.m2", + fileId = "199851", + text = "lunarnewyearbanner_alliance_standing.m2", + value = "lunarnewyearbanner_alliance_standing.m2", }, - }, - value = "particleemitters", - text = "particleemitters", - }, - { - children = { { - fileId = "199975", - value = "plainrune.m2", - text = "plainrune.m2", + fileId = "199852", + text = "lunarnewyearbanner_horde_hanging.m2", + value = "lunarnewyearbanner_horde_hanging.m2", }, { - fileId = "199976", - value = "runestone.m2", - text = "runestone.m2", + fileId = "199853", + text = "lunarnewyearbanner_horde_hanging02.m2", + value = "lunarnewyearbanner_horde_hanging02.m2", }, - }, - value = "plainrune", - text = "plainrune", - }, - { - children = { { - fileId = "199981", - value = "plaquebronze01.m2", - text = "plaquebronze01.m2", + fileId = "199854", + text = "lunarnewyearbanner_horde_standing.m2", + value = "lunarnewyearbanner_horde_standing.m2", }, { - fileId = "199983", - value = "plaquebronze02.m2", - text = "plaquebronze02.m2", + fileId = "199855", + text = "lunarnewyearlantern_alliance_hanging.m2", + value = "lunarnewyearlantern_alliance_hanging.m2", }, { - fileId = "199985", - value = "plaquesilver01.m2", - text = "plaquesilver01.m2", + fileId = "199856", + text = "lunarnewyearlantern_alliance_standing.m2", + value = "lunarnewyearlantern_alliance_standing.m2", }, { - fileId = "199987", - value = "plaquesilver02.m2", - text = "plaquesilver02.m2", + fileId = "199857", + text = "lunarnewyearlantern_horde_hanging.m2", + value = "lunarnewyearlantern_horde_hanging.m2", }, { - fileId = "199989", - value = "plaquestone01.m2", - text = "plaquestone01.m2", + fileId = "199858", + text = "lunarnewyearlantern_horde_standing.m2", + value = "lunarnewyearlantern_horde_standing.m2", }, }, - value = "plaque", - text = "plaque", + text = "lunarnewyear", + value = "lunarnewyear", }, { children = { { - fileId = "199991", - value = "postboxbloodelf.m2", - text = "postboxbloodelf.m2", - }, - { - fileId = "199993", - value = "postboxdwarf.m2", - text = "postboxdwarf.m2", - }, - { - fileId = "199996", - value = "postboxgnome.m2", - text = "postboxgnome.m2", + fileId = "199860", + text = "metalbars01copper.m2", + value = "metalbars01copper.m2", }, { - fileId = "199999", - value = "postboxhuman.m2", - text = "postboxhuman.m2", + fileId = "199861", + text = "metalbars01iron.m2", + value = "metalbars01iron.m2", }, { - fileId = "200004", - value = "postboxnightelf.m2", - text = "postboxnightelf.m2", + fileId = "199862", + text = "metalbars01mithril.m2", + value = "metalbars01mithril.m2", }, { - fileId = "200007", - value = "postboxorc.m2", - text = "postboxorc.m2", + fileId = "199863", + text = "metalbars01truesilver.m2", + value = "metalbars01truesilver.m2", }, { - fileId = "200010", - value = "postboxtauren.m2", - text = "postboxtauren.m2", + fileId = "199867", + text = "metalbarstack01copper.m2", + value = "metalbarstack01copper.m2", }, { - fileId = "200012", - value = "postboxtroll.m2", - text = "postboxtroll.m2", + fileId = "199868", + text = "metalbarstack01iron.m2", + value = "metalbarstack01iron.m2", }, { - fileId = "200014", - value = "postboxundead.m2", - text = "postboxundead.m2", + fileId = "199869", + text = "metalbarstack01mithril.m2", + value = "metalbarstack01mithril.m2", }, - }, - value = "postboxes", - text = "postboxes", - }, - { - children = { { - fileId = "200024", - value = "shamanstone01.m2", - text = "shamanstone01.m2", + fileId = "199870", + text = "metalbarstack01truesilver.m2", + value = "metalbarstack01truesilver.m2", }, - }, - value = "shamanstone", - text = "shamanstone", - }, - { - children = { { - fileId = "200030", - value = "rackshieldalliance01.m2", - text = "rackshieldalliance01.m2", + fileId = "199871", + text = "metalbarstack02copper.m2", + value = "metalbarstack02copper.m2", }, { - fileId = "200031", - value = "rackshieldalliance02.m2", - text = "rackshieldalliance02.m2", + fileId = "199872", + text = "metalbarstack02iron.m2", + value = "metalbarstack02iron.m2", }, { - fileId = "200032", - value = "rackshieldhorde01.m2", - text = "rackshieldhorde01.m2", + fileId = "199873", + text = "metalbarstack02mithril.m2", + value = "metalbarstack02mithril.m2", }, { - fileId = "200033", - value = "rackshieldhorde02.m2", - text = "rackshieldhorde02.m2", + fileId = "199874", + text = "metalbarstack02truesilver.m2", + value = "metalbarstack02truesilver.m2", }, }, - value = "shieldracks", - text = "shieldracks", + text = "metalbars", + value = "metalbars", }, { children = { { children = { { - fileId = "200046", - value = "transportship_ne_doodadsmoving.m2", - text = "transportship_ne_doodadsmoving.m2", + fileId = "199876", + text = "caveminecar01.m2", + value = "caveminecar01.m2", }, { - fileId = "200047", - value = "transportship_ne_doodadsstationary.m2", - text = "transportship_ne_doodadsstationary.m2", + fileId = "199880", + text = "caveminecarwrecked01.m2", + value = "caveminecarwrecked01.m2", }, { - fileId = "200048", - value = "transportship_ne_doodadsstationaryplanked.m2", - text = "transportship_ne_doodadsstationaryplanked.m2", + fileId = "199881", + text = "caveminecarwrecked02.m2", + value = "caveminecarwrecked02.m2", }, { - fileId = "200049", - value = "transportship_sails.m2", - text = "transportship_sails.m2", + fileId = "199882", + text = "caveminepulley01.m2", + value = "caveminepulley01.m2", + }, + { + fileId = "199883", + text = "caveminepulley02.m2", + value = "caveminepulley02.m2", }, }, - value = "shipanimation", - text = "shipanimation", + text = "minecars", + value = "minecars", }, { children = { { - fileId = "200052", - value = "shipramp01.m2", - text = "shipramp01.m2", + fileId = "199885", + text = "pulley.m2", + value = "pulley.m2", }, }, - value = "shipramps", - text = "shipramps", + text = "pulleys", + value = "pulleys", }, { children = { { - fileId = "200053", - value = "zepanimation.m2", - text = "zepanimation.m2", + fileId = "199886", + text = "caveminewheelbarrow01.m2", + value = "caveminewheelbarrow01.m2", }, }, - value = "zeppelinanimation", - text = "zeppelinanimation", + text = "wheelbarrow", + value = "wheelbarrow", }, }, - value = "ships", - text = "ships", + text = "misc", + value = "misc", }, { children = { { - fileId = "200056", - value = "chainedskeleton01.m2", - text = "chainedskeleton01.m2", - }, - { - fileId = "200057", - value = "chainedskeleton02.m2", - text = "chainedskeleton02.m2", - }, - { - fileId = "200058", - value = "chainedskeleton03.m2", - text = "chainedskeleton03.m2", - }, - { - fileId = "200059", - value = "chainedskeleton04.m2", - text = "chainedskeleton04.m2", - }, - { - fileId = "200060", - value = "chainedskeleton05.m2", - text = "chainedskeleton05.m2", - }, - { - fileId = "200061", - value = "chainedskeleton06.m2", - text = "chainedskeleton06.m2", - }, - { - fileId = "200062", - value = "lightskeletonlaying01.m2", - text = "lightskeletonlaying01.m2", - }, - { - fileId = "200063", - value = "lightskeletonlaying02.m2", - text = "lightskeletonlaying02.m2", + fileId = "199889", + text = "beerfest_banner01.m2", + value = "beerfest_banner01.m2", }, { - fileId = "200064", - value = "lightskeletonlaying03.m2", - text = "lightskeletonlaying03.m2", + fileId = "199891", + text = "beerfest_banner02.m2", + value = "beerfest_banner02.m2", }, { - fileId = "200065", - value = "lightskeletonsitting01.m2", - text = "lightskeletonsitting01.m2", + fileId = "199892", + text = "beerfest_beervendor.m2", + value = "beerfest_beervendor.m2", }, { - fileId = "200066", - value = "lightskeletonsitting02.m2", - text = "lightskeletonsitting02.m2", + fileId = "199893", + text = "beerfest_foodtent.m2", + value = "beerfest_foodtent.m2", }, { - fileId = "200067", - value = "lightskeletonsitting03.m2", - text = "lightskeletonsitting03.m2", + fileId = "199894", + text = "beerfest_opentent.m2", + value = "beerfest_opentent.m2", }, { - fileId = "200068", - value = "lightskeletonsitting04.m2", - text = "lightskeletonsitting04.m2", + fileId = "199896", + text = "beerfest_wagon.m2", + value = "beerfest_wagon.m2", }, { - fileId = "200070", - value = "skeletalservant01.m2", - text = "skeletalservant01.m2", + fileId = "199897", + text = "beerfest_wagon_full.m2", + value = "beerfest_wagon_full.m2", }, { - fileId = "200071", - value = "skeletalservant02.m2", - text = "skeletalservant02.m2", + fileId = "199901", + text = "flamingpumpkinhead.m2", + value = "flamingpumpkinhead.m2", }, { - fileId = "200072", - value = "skeletalservant03.m2", - text = "skeletalservant03.m2", + fileId = "199902", + text = "pumpkinhead.m2", + value = "pumpkinhead.m2", }, }, - value = "skeletons", - text = "skeletons", + text = "oktoberfest", + value = "oktoberfest", }, { children = { { - fileId = "200078", - value = "summerfest_banner_01.m2", - text = "summerfest_banner_01.m2", - }, - { - fileId = "200079", - value = "summerfest_bonfire_base_01.m2", - text = "summerfest_bonfire_base_01.m2", - }, - { - fileId = "200080", - value = "summerfest_bonfire_large01.m2", - text = "summerfest_bonfire_large01.m2", - }, - { - fileId = "200081", - value = "summerfest_bonfire_large02.m2", - text = "summerfest_bonfire_large02.m2", - }, - { - fileId = "200082", - value = "summerfest_bonfire_large03.m2", - text = "summerfest_bonfire_large03.m2", + fileId = "199904", + text = "ashenvalewisps.m2", + value = "ashenvalewisps.m2", }, { - fileId = "200083", - value = "summerfest_bonfire_large04.m2", - text = "summerfest_bonfire_large04.m2", + fileId = "199905", + text = "aurablue.m2", + value = "aurablue.m2", }, { - fileId = "200084", - value = "summerfest_bonfire_off.m2", - text = "summerfest_bonfire_off.m2", + fileId = "199906", + text = "aurabluehuge.m2", + value = "aurabluehuge.m2", }, { - fileId = "200085", - value = "summerfest_bonfire_on.m2", - text = "summerfest_bonfire_on.m2", + fileId = "199907", + text = "aurablueshort.m2", + value = "aurablueshort.m2", }, { - fileId = "200086", - value = "summerfest_bonfire_small01.m2", - text = "summerfest_bonfire_small01.m2", + fileId = "199908", + text = "aurabluetall.m2", + value = "aurabluetall.m2", }, { - fileId = "200087", - value = "summerfest_bonfire_small02.m2", - text = "summerfest_bonfire_small02.m2", + fileId = "199909", + text = "aurablueverytall.m2", + value = "aurablueverytall.m2", }, { - fileId = "200088", - value = "summerfest_bonfire_small03.m2", - text = "summerfest_bonfire_small03.m2", + fileId = "199910", + text = "auragreen.m2", + value = "auragreen.m2", }, { - fileId = "200089", - value = "summerfest_bonfire_small04.m2", - text = "summerfest_bonfire_small04.m2", + fileId = "199911", + text = "auragreenshort.m2", + value = "auragreenshort.m2", }, { - fileId = "200090", - value = "summerfest_brazer_nocollision.m2", - text = "summerfest_brazer_nocollision.m2", + fileId = "199912", + text = "auragreentall.m2", + value = "auragreentall.m2", }, { - fileId = "200091", - value = "summerfest_brazier_01.m2", - text = "summerfest_brazier_01.m2", + fileId = "199913", + text = "auragreenverytall.m2", + value = "auragreenverytall.m2", }, { - fileId = "200092", - value = "summerfest_brazier_02.m2", - text = "summerfest_brazier_02.m2", + fileId = "199914", + text = "aurapurple.m2", + value = "aurapurple.m2", }, { - fileId = "200093", - value = "summerfest_brazier_03.m2", - text = "summerfest_brazier_03.m2", + fileId = "199915", + text = "aurapurpleshort.m2", + value = "aurapurpleshort.m2", }, { - fileId = "200094", - value = "summerfest_candle_01.m2", - text = "summerfest_candle_01.m2", + fileId = "199916", + text = "aurapurpletall.m2", + value = "aurapurpletall.m2", }, { - fileId = "200095", - value = "summerfest_candle_02.m2", - text = "summerfest_candle_02.m2", + fileId = "199917", + text = "aurapurpleverytall.m2", + value = "aurapurpleverytall.m2", }, { - fileId = "200096", - value = "summerfest_crate.m2", - text = "summerfest_crate.m2", + fileId = "199918", + text = "aurared.m2", + value = "aurared.m2", }, { - fileId = "200098", - value = "summerfest_icestone_01.m2", - text = "summerfest_icestone_01.m2", + fileId = "199919", + text = "auraredhuge.m2", + value = "auraredhuge.m2", }, { - fileId = "200099", - value = "summerfest_maypole.m2", - text = "summerfest_maypole.m2", + fileId = "199920", + text = "auraredshort.m2", + value = "auraredshort.m2", }, { - fileId = "200101", - value = "summerfest_pavilion_01.m2", - text = "summerfest_pavilion_01.m2", + fileId = "199921", + text = "auraredtall.m2", + value = "auraredtall.m2", }, { - fileId = "200102", - value = "summerfest_ribbon01huge.m2", - text = "summerfest_ribbon01huge.m2", + fileId = "199922", + text = "auraredverytall.m2", + value = "auraredverytall.m2", }, { - fileId = "200103", - value = "summerfest_ribbon02.m2", - text = "summerfest_ribbon02.m2", + fileId = "199923", + text = "aurayellow.m2", + value = "aurayellow.m2", }, { - fileId = "200104", - value = "summerfest_streamers.m2", - text = "summerfest_streamers.m2", + fileId = "199924", + text = "aurayellowhuge.m2", + value = "aurayellowhuge.m2", }, { - fileId = "200106", - value = "summerfest_streamersx3.m2", - text = "summerfest_streamersx3.m2", + fileId = "199925", + text = "aurayellowshort.m2", + value = "aurayellowshort.m2", }, { - fileId = "200107", - value = "summerfest_wreath01.m2", - text = "summerfest_wreath01.m2", + fileId = "199926", + text = "aurayellowtall.m2", + value = "aurayellowtall.m2", }, { - fileId = "200108", - value = "summerfest_wreathfloating.m2", - text = "summerfest_wreathfloating.m2", + fileId = "199927", + text = "aurayellowverytall.m2", + value = "aurayellowverytall.m2", }, { - fileId = "200109", - value = "summerfest_wreathhanginghuge.m2", - text = "summerfest_wreathhanginghuge.m2", + fileId = "199929", + text = "blacksmith_smoke.m2", + value = "blacksmith_smoke.m2", }, - }, - value = "summerfestival", - text = "summerfestival", - }, - { - children = { { - fileId = "200117", - value = "testball.m2", - text = "testball.m2", + fileId = "199930", + text = "blastedlandslightningbolt01.m2", + value = "blastedlandslightningbolt01.m2", }, - }, - value = "testball", - text = "testball", - }, - { - children = { { - fileId = "200118", - value = "g_cornucopia.m2", - text = "g_cornucopia.m2", + fileId = "199932", + text = "bubbles01.m2", + value = "bubbles01.m2", }, { - fileId = "200119", - value = "g_indiancorn_basket.m2", - text = "g_indiancorn_basket.m2", + fileId = "199933", + text = "bubblesb.m2", + value = "bubblesb.m2", }, { - fileId = "200120", - value = "g_pilgrimhat.m2", - text = "g_pilgrimhat.m2", + fileId = "199934", + text = "bubblesb_bigemitter.m2", + value = "bubblesb_bigemitter.m2", }, { - fileId = "200121", - value = "g_pumpkin.m2", - text = "g_pumpkin.m2", + fileId = "199935", + text = "ceilingdustemitter.m2", + value = "ceilingdustemitter.m2", }, { - fileId = "200122", - value = "g_pumpkinwhat.m2", - text = "g_pumpkinwhat.m2", + fileId = "199938", + text = "druidwisp01.m2", + value = "druidwisp01.m2", }, { - fileId = "200123", - value = "g_squash01.m2", - text = "g_squash01.m2", + fileId = "199939", + text = "dustwallowgroundfog.m2", + value = "dustwallowgroundfog.m2", }, { - fileId = "200124", - value = "g_squash02.m2", - text = "g_squash02.m2", + fileId = "199940", + text = "dustwallowgroundfogplane.m2", + value = "dustwallowgroundfogplane.m2", }, { - fileId = "200125", - value = "g_squash03.m2", - text = "g_squash03.m2", + fileId = "199941", + text = "feralaslightblue.m2", + value = "feralaslightblue.m2", }, { - fileId = "200126", - value = "g_squash04.m2", - text = "g_squash04.m2", + fileId = "199942", + text = "feralaslightgreen.m2", + value = "feralaslightgreen.m2", }, { - fileId = "200127", - value = "g_squashgreen.m2", - text = "g_squashgreen.m2", + fileId = "199944", + text = "feralaslightpurple.m2", + value = "feralaslightpurple.m2", }, { - fileId = "200128", - value = "g_squashlong.m2", - text = "g_squashlong.m2", + fileId = "199945", + text = "feralaslightyellow.m2", + value = "feralaslightyellow.m2", }, - }, - value = "thanksgiving", - text = "thanksgiving", - }, - { - children = { { - fileId = "2199319", - value = "spellobject_invisibletrap.m2", - text = "spellobject_invisibletrap.m2", + fileId = "199946", + text = "flamecircle.m2", + value = "flamecircle.m2", }, - }, - value = "traps", - text = "traps", - }, - { - children = { { - fileId = "200135", - value = "goldpilelarge01.m2", - text = "goldpilelarge01.m2", + fileId = "199947", + text = "flyswarms.m2", + value = "flyswarms.m2", }, { - fileId = "200136", - value = "goldpilemedium01.m2", - text = "goldpilemedium01.m2", + fileId = "199948", + text = "fogbox.m2", + value = "fogbox.m2", }, { - fileId = "200137", - value = "goldpilesmall01.m2", - text = "goldpilesmall01.m2", + fileId = "199949", + text = "fountainparticles.m2", + value = "fountainparticles.m2", }, - }, - value = "treasurepiles", - text = "treasurepiles", - }, - { - children = { { - fileId = "200143", - value = "gryphonroost_ruined.m2", - text = "gryphonroost_ruined.m2", + fileId = "199950", + text = "greengroundfog.m2", + value = "greengroundfog.m2", }, { - fileId = "200151", - value = "tugofwar_dustextractor.m2", - text = "tugofwar_dustextractor.m2", + fileId = "199951", + text = "greygroundfog.m2", + value = "greygroundfog.m2", }, { - fileId = "200152", - value = "tugofwar_reddustbag01.m2", - text = "tugofwar_reddustbag01.m2", + fileId = "199954", + text = "housesmoke.m2", + value = "housesmoke.m2", }, { - fileId = "200153", - value = "tugofwar_redspiceexplosion.m2", - text = "tugofwar_redspiceexplosion.m2", + fileId = "199956", + text = "lavaparticlesplash.m2", + value = "lavaparticlesplash.m2", }, { - fileId = "200154", - value = "tugofwar_redspicegeyser.m2", - text = "tugofwar_redspicegeyser.m2", + fileId = "199957", + text = "lavasmokeemitter.m2", + value = "lavasmokeemitter.m2", }, { - fileId = "200155", - value = "tugofwar_redspicemissile.m2", - text = "tugofwar_redspicemissile.m2", + fileId = "199958", + text = "lavasmokeemitterb.m2", + value = "lavasmokeemitterb.m2", }, { - fileId = "200156", - value = "tugofwar_redspicepile.m2", - text = "tugofwar_redspicepile.m2", + fileId = "199959", + text = "lavasplashparticle.m2", + value = "lavasplashparticle.m2", }, - }, - value = "tugofwar", - text = "tugofwar", - }, - { - children = { { - fileId = "200163", - value = "valentinebasket_01.m2", - text = "valentinebasket_01.m2", + fileId = "199962", + text = "mountaincaveriver.m2", + value = "mountaincaveriver.m2", }, { - fileId = "200165", - value = "valentines_blanket.m2", - text = "valentines_blanket.m2", + fileId = "199964", + text = "orangegroundfog.m2", + value = "orangegroundfog.m2", }, { - fileId = "200167", - value = "valentinesarc.m2", - text = "valentinesarc.m2", + fileId = "199965", + text = "outlanddemonglow.m2", + value = "outlanddemonglow.m2", }, { - fileId = "200170", - value = "valentinescandle.m2", - text = "valentinescandle.m2", + fileId = "199967", + text = "purplegroundfog.m2", + value = "purplegroundfog.m2", }, { - fileId = "200172", - value = "valentineschocolate.m2", - text = "valentineschocolate.m2", + fileId = "199968", + text = "shadowfangfog01.m2", + value = "shadowfangfog01.m2", }, { - fileId = "200174", - value = "valentineschocolategreen.m2", - text = "valentineschocolategreen.m2", + fileId = "199969", + text = "shrineaurablue.m2", + value = "shrineaurablue.m2", }, { - fileId = "200176", - value = "valentineschocolatepurple.m2", - text = "valentineschocolatepurple.m2", + fileId = "199970", + text = "steam02.m2", + value = "steam02.m2", }, { - fileId = "200178", - value = "valentineschocolateyellow.m2", - text = "valentineschocolateyellow.m2", + fileId = "199971", + text = "steam03.m2", + value = "steam03.m2", }, { - fileId = "200180", - value = "valentinescolognebottle.m2", - text = "valentinescolognebottle.m2", + fileId = "199972", + text = "steam04.m2", + value = "steam04.m2", }, { - fileId = "200181", - value = "valentinescrate.m2", - text = "valentinescrate.m2", + fileId = "199973", + text = "sunkenflame01.m2", + value = "sunkenflame01.m2", }, + }, + text = "particleemitters", + value = "particleemitters", + }, + { + children = { { - fileId = "200183", - value = "valentinesperfumebottle.m2", - text = "valentinesperfumebottle.m2", + fileId = "199975", + text = "plainrune.m2", + value = "plainrune.m2", }, { - fileId = "200185", - value = "valentinesplant.m2", - text = "valentinesplant.m2", + fileId = "199976", + text = "runestone.m2", + value = "runestone.m2", }, + }, + text = "plainrune", + value = "plainrune", + }, + { + children = { { - fileId = "200187", - value = "valentinesribbon01.m2", - text = "valentinesribbon01.m2", + fileId = "199981", + text = "plaquebronze01.m2", + value = "plaquebronze01.m2", }, { - fileId = "200188", - value = "valentinesribbon01huge.m2", - text = "valentinesribbon01huge.m2", + fileId = "199983", + text = "plaquebronze02.m2", + value = "plaquebronze02.m2", }, { - fileId = "200189", - value = "valentinesribbon02.m2", - text = "valentinesribbon02.m2", + fileId = "199985", + text = "plaquesilver01.m2", + value = "plaquesilver01.m2", }, { - fileId = "200190", - value = "valentinesstreamers.m2", - text = "valentinesstreamers.m2", + fileId = "199987", + text = "plaquesilver02.m2", + value = "plaquesilver02.m2", }, { - fileId = "200191", - value = "valentinesstreamersx3.m2", - text = "valentinesstreamersx3.m2", + fileId = "199989", + text = "plaquestone01.m2", + value = "plaquestone01.m2", }, + }, + text = "plaque", + value = "plaque", + }, + { + children = { { - fileId = "200192", - value = "valentineswreath01.m2", - text = "valentineswreath01.m2", + fileId = "199991", + text = "postboxbloodelf.m2", + value = "postboxbloodelf.m2", }, { - fileId = "200193", - value = "valentineswreath01huge.m2", - text = "valentineswreath01huge.m2", + fileId = "199993", + text = "postboxdwarf.m2", + value = "postboxdwarf.m2", }, { - fileId = "200194", - value = "valentineswreathfloating.m2", - text = "valentineswreathfloating.m2", + fileId = "199996", + text = "postboxgnome.m2", + value = "postboxgnome.m2", }, { - fileId = "200195", - value = "valentineswreathhanging.m2", - text = "valentineswreathhanging.m2", + fileId = "199999", + text = "postboxhuman.m2", + value = "postboxhuman.m2", }, { - fileId = "200196", - value = "valentineswreathhanginghuge.m2", - text = "valentineswreathhanginghuge.m2", + fileId = "200004", + text = "postboxnightelf.m2", + value = "postboxnightelf.m2", }, { - fileId = "200197", - value = "valentineumbrella_01.m2", - text = "valentineumbrella_01.m2", + fileId = "200007", + text = "postboxorc.m2", + value = "postboxorc.m2", }, - }, - value = "valentinesday", - text = "valentinesday", - }, - { - children = { { - children = { - { - fileId = "200200", - value = "cavewallbones01.m2", - text = "cavewallbones01.m2", - }, - { - fileId = "200201", - value = "cavewallbones02.m2", - text = "cavewallbones02.m2", - }, - }, - value = "bones", - text = "bones", + fileId = "200010", + text = "postboxtauren.m2", + value = "postboxtauren.m2", }, - }, - value = "wall", - text = "wall", - }, - { - children = { { - fileId = "200202", - value = "newwaterfall.m2", - text = "newwaterfall.m2", + fileId = "200012", + text = "postboxtroll.m2", + value = "postboxtroll.m2", }, { - fileId = "200203", - value = "waterfall-long.m2", - text = "waterfall-long.m2", + fileId = "200014", + text = "postboxundead.m2", + value = "postboxundead.m2", }, }, - value = "waterfall", - text = "waterfall", + text = "postboxes", + value = "postboxes", }, { children = { { - fileId = "200204", - value = "damwaterfall01.m2", - text = "damwaterfall01.m2", + fileId = "200024", + text = "shamanstone01.m2", + value = "shamanstone01.m2", }, }, - value = "waterfalls", - text = "waterfalls", + text = "shamanstone", + value = "shamanstone", }, { children = { { - fileId = "200208", - value = "weaponcratealliancesword.m2", - text = "weaponcratealliancesword.m2", - }, - { - fileId = "200209", - value = "weaponcrateallianceswordlid.m2", - text = "weaponcrateallianceswordlid.m2", - }, - { - fileId = "200210", - value = "weaponcrateallianceswordopen.m2", - text = "weaponcrateallianceswordopen.m2", + fileId = "200030", + text = "rackshieldalliance01.m2", + value = "rackshieldalliance01.m2", }, { - fileId = "200211", - value = "weaponcratehordeaxe.m2", - text = "weaponcratehordeaxe.m2", + fileId = "200031", + text = "rackshieldalliance02.m2", + value = "rackshieldalliance02.m2", }, { - fileId = "200212", - value = "weaponcratehordeaxelid.m2", - text = "weaponcratehordeaxelid.m2", + fileId = "200032", + text = "rackshieldhorde01.m2", + value = "rackshieldhorde01.m2", }, { - fileId = "200213", - value = "weaponcratehordeaxeopen.m2", - text = "weaponcratehordeaxeopen.m2", + fileId = "200033", + text = "rackshieldhorde02.m2", + value = "rackshieldhorde02.m2", }, }, - value = "weaponcrates", - text = "weaponcrates", + text = "shieldracks", + value = "shieldracks", }, { children = { { - fileId = "200214", - value = "bone_bow.m2", - text = "bone_bow.m2", + children = { + { + fileId = "200046", + text = "transportship_ne_doodadsmoving.m2", + value = "transportship_ne_doodadsmoving.m2", + }, + { + fileId = "200047", + text = "transportship_ne_doodadsstationary.m2", + value = "transportship_ne_doodadsstationary.m2", + }, + { + fileId = "200048", + text = "transportship_ne_doodadsstationaryplanked.m2", + value = "transportship_ne_doodadsstationaryplanked.m2", + }, + { + fileId = "200049", + text = "transportship_sails.m2", + value = "transportship_sails.m2", + }, + }, + text = "shipanimation", + value = "shipanimation", }, { - fileId = "200215", - value = "bone_shield.m2", - text = "bone_shield.m2", + children = { + { + fileId = "200052", + text = "shipramp01.m2", + value = "shipramp01.m2", + }, + }, + text = "shipramps", + value = "shipramps", }, { - fileId = "200217", - value = "boneclub01.m2", - text = "boneclub01.m2", + children = { + { + fileId = "200053", + text = "zepanimation.m2", + value = "zepanimation.m2", + }, + }, + text = "zeppelinanimation", + value = "zeppelinanimation", }, + }, + text = "ships", + value = "ships", + }, + { + children = { { - fileId = "200218", - value = "caveman_club01.m2", - text = "caveman_club01.m2", + fileId = "200056", + text = "chainedskeleton01.m2", + value = "chainedskeleton01.m2", }, { - fileId = "200219", - value = "flint_club01.m2", - text = "flint_club01.m2", + fileId = "200057", + text = "chainedskeleton02.m2", + value = "chainedskeleton02.m2", }, { - fileId = "200220", - value = "flint_spear02.m2", - text = "flint_spear02.m2", + fileId = "200058", + text = "chainedskeleton03.m2", + value = "chainedskeleton03.m2", }, { - fileId = "200223", - value = "flintspear01.m2", - text = "flintspear01.m2", + fileId = "200059", + text = "chainedskeleton04.m2", + value = "chainedskeleton04.m2", }, { - fileId = "200225", - value = "knotted_club01.m2", - text = "knotted_club01.m2", + fileId = "200060", + text = "chainedskeleton05.m2", + value = "chainedskeleton05.m2", }, { - fileId = "200227", - value = "leather_shield.m2", - text = "leather_shield.m2", + fileId = "200061", + text = "chainedskeleton06.m2", + value = "chainedskeleton06.m2", }, { - fileId = "200228", - value = "naga_trident.m2", - text = "naga_trident.m2", + fileId = "200062", + text = "lightskeletonlaying01.m2", + value = "lightskeletonlaying01.m2", }, { - fileId = "200233", - value = "skullclub01.m2", - text = "skullclub01.m2", + fileId = "200063", + text = "lightskeletonlaying02.m2", + value = "lightskeletonlaying02.m2", }, { - fileId = "200234", - value = "skullspear01.m2", - text = "skullspear01.m2", + fileId = "200064", + text = "lightskeletonlaying03.m2", + value = "lightskeletonlaying03.m2", }, { - fileId = "200235", - value = "spiked_club01.m2", - text = "spiked_club01.m2", + fileId = "200065", + text = "lightskeletonsitting01.m2", + value = "lightskeletonsitting01.m2", }, { - fileId = "200237", - value = "steelspear01.m2", - text = "steelspear01.m2", + fileId = "200066", + text = "lightskeletonsitting02.m2", + value = "lightskeletonsitting02.m2", }, { - fileId = "200238", - value = "stone_club01.m2", - text = "stone_club01.m2", + fileId = "200067", + text = "lightskeletonsitting03.m2", + value = "lightskeletonsitting03.m2", }, { - fileId = "200239", - value = "stone_spear01.m2", - text = "stone_spear01.m2", + fileId = "200068", + text = "lightskeletonsitting04.m2", + value = "lightskeletonsitting04.m2", }, { - fileId = "200243", - value = "wicker_bow.m2", - text = "wicker_bow.m2", + fileId = "200070", + text = "skeletalservant01.m2", + value = "skeletalservant01.m2", }, { - fileId = "200244", - value = "wicker_shield.m2", - text = "wicker_shield.m2", + fileId = "200071", + text = "skeletalservant02.m2", + value = "skeletalservant02.m2", }, { - fileId = "200246", - value = "woodclub01.m2", - text = "woodclub01.m2", + fileId = "200072", + text = "skeletalservant03.m2", + value = "skeletalservant03.m2", }, }, - value = "weapons", - text = "weapons", + text = "skeletons", + value = "skeletons", }, { children = { { - fileId = "200252", - value = "well.m2", - text = "well.m2", + fileId = "200078", + text = "summerfest_banner_01.m2", + value = "summerfest_banner_01.m2", }, - }, - value = "well", - text = "well", - }, - { - children = { { - fileId = "200254", - value = "dustwestfall.m2", - text = "dustwestfall.m2", + fileId = "200079", + text = "summerfest_bonfire_base_01.m2", + value = "summerfest_bonfire_base_01.m2", }, { - fileId = "200256", - value = "snowdunmorogh.m2", - text = "snowdunmorogh.m2", + fileId = "200080", + text = "summerfest_bonfire_large01.m2", + value = "summerfest_bonfire_large01.m2", }, - }, - value = "windblown", - text = "windblown", - }, - { - children = { { - fileId = "200257", - value = "windowbeam01.m2", - text = "windowbeam01.m2", + fileId = "200081", + text = "summerfest_bonfire_large02.m2", + value = "summerfest_bonfire_large02.m2", }, { - fileId = "200258", - value = "windowbeam02.m2", - text = "windowbeam02.m2", + fileId = "200082", + text = "summerfest_bonfire_large03.m2", + value = "summerfest_bonfire_large03.m2", }, - }, - value = "windowbeam", - text = "windowbeam", - }, - }, - value = "passivedoodads", - text = "passivedoodads", - }, - { - children = { - { - children = { { - children = { - { - fileId = "200259", - value = "piratelandmark.m2", - text = "piratelandmark.m2", - }, - }, - value = "piratelandmarks", - text = "piratelandmarks", + fileId = "200083", + text = "summerfest_bonfire_large04.m2", + value = "summerfest_bonfire_large04.m2", }, - }, - value = "passive doodads", - text = "passive doodads", - }, - }, - value = "pirate", - text = "pirate", - }, - { - children = { - { - children = { { - fileId = "200264", - value = "battlefieldbanner_state_base_plaguelands.m2", - text = "battlefieldbanner_state_base_plaguelands.m2", + fileId = "200084", + text = "summerfest_bonfire_off.m2", + value = "summerfest_bonfire_off.m2", }, { - fileId = "200265", - value = "battlefieldbanner_state_flaga_plaguelands.m2", - text = "battlefieldbanner_state_flaga_plaguelands.m2", + fileId = "200085", + text = "summerfest_bonfire_on.m2", + value = "summerfest_bonfire_on.m2", }, { - fileId = "200266", - value = "battlefieldbanner_state_flagh_plaguelands.m2", - text = "battlefieldbanner_state_flagh_plaguelands.m2", + fileId = "200086", + text = "summerfest_bonfire_small01.m2", + value = "summerfest_bonfire_small01.m2", }, { - fileId = "200267", - value = "battlefieldbanner_state_flagn_plaguelands.m2", - text = "battlefieldbanner_state_flagn_plaguelands.m2", + fileId = "200087", + text = "summerfest_bonfire_small02.m2", + value = "summerfest_bonfire_small02.m2", }, { - fileId = "200268", - value = "battlefieldbanneralliance.m2", - text = "battlefieldbanneralliance.m2", + fileId = "200088", + text = "summerfest_bonfire_small03.m2", + value = "summerfest_bonfire_small03.m2", }, { - fileId = "200269", - value = "battlefieldbanneralliance_static.m2", - text = "battlefieldbanneralliance_static.m2", + fileId = "200089", + text = "summerfest_bonfire_small04.m2", + value = "summerfest_bonfire_small04.m2", }, { - fileId = "200270", - value = "battlefieldbanneralliancebw.m2", - text = "battlefieldbanneralliancebw.m2", + fileId = "200090", + text = "summerfest_brazer_nocollision.m2", + value = "summerfest_brazer_nocollision.m2", }, { - fileId = "200271", - value = "battlefieldbanneralliancebwflagonly.m2", - text = "battlefieldbanneralliancebwflagonly.m2", + fileId = "200091", + text = "summerfest_brazier_01.m2", + value = "summerfest_brazier_01.m2", }, { - fileId = "200272", - value = "battlefieldbannerallianceflagonly.m2", - text = "battlefieldbannerallianceflagonly.m2", + fileId = "200092", + text = "summerfest_brazier_02.m2", + value = "summerfest_brazier_02.m2", }, { - fileId = "200273", - value = "battlefieldbanneralliancelarge.m2", - text = "battlefieldbanneralliancelarge.m2", + fileId = "200093", + text = "summerfest_brazier_03.m2", + value = "summerfest_brazier_03.m2", }, { - fileId = "200274", - value = "battlefieldbanneralliancelargebw.m2", - text = "battlefieldbanneralliancelargebw.m2", + fileId = "200094", + text = "summerfest_candle_01.m2", + value = "summerfest_candle_01.m2", }, { - fileId = "200275", - value = "battlefieldbanneralliancestatusbar2min.m2", - text = "battlefieldbanneralliancestatusbar2min.m2", + fileId = "200095", + text = "summerfest_candle_02.m2", + value = "summerfest_candle_02.m2", }, { - fileId = "200276", - value = "battlefieldbannerhorde.m2", - text = "battlefieldbannerhorde.m2", + fileId = "200096", + text = "summerfest_crate.m2", + value = "summerfest_crate.m2", }, { - fileId = "200277", - value = "battlefieldbannerhorde_static.m2", - text = "battlefieldbannerhorde_static.m2", + fileId = "200098", + text = "summerfest_icestone_01.m2", + value = "summerfest_icestone_01.m2", }, { - fileId = "200278", - value = "battlefieldbannerhordebw.m2", - text = "battlefieldbannerhordebw.m2", + fileId = "200099", + text = "summerfest_maypole.m2", + value = "summerfest_maypole.m2", }, { - fileId = "200279", - value = "battlefieldbannerhordebwflagonly.m2", - text = "battlefieldbannerhordebwflagonly.m2", + fileId = "200101", + text = "summerfest_pavilion_01.m2", + value = "summerfest_pavilion_01.m2", }, { - fileId = "200280", - value = "battlefieldbannerhordeflagonly.m2", - text = "battlefieldbannerhordeflagonly.m2", + fileId = "200102", + text = "summerfest_ribbon01huge.m2", + value = "summerfest_ribbon01huge.m2", }, { - fileId = "200281", - value = "battlefieldbannerhordelarge.m2", - text = "battlefieldbannerhordelarge.m2", + fileId = "200103", + text = "summerfest_ribbon02.m2", + value = "summerfest_ribbon02.m2", }, { - fileId = "200282", - value = "battlefieldbannerhordelargebw.m2", - text = "battlefieldbannerhordelargebw.m2", + fileId = "200104", + text = "summerfest_streamers.m2", + value = "summerfest_streamers.m2", }, { - fileId = "200283", - value = "battlefieldbannerneutral.m2", - text = "battlefieldbannerneutral.m2", + fileId = "200106", + text = "summerfest_streamersx3.m2", + value = "summerfest_streamersx3.m2", }, { - fileId = "200284", - value = "battlefieldbannerneutralflagonly.m2", - text = "battlefieldbannerneutralflagonly.m2", + fileId = "200107", + text = "summerfest_wreath01.m2", + value = "summerfest_wreath01.m2", }, { - fileId = "200285", - value = "battlefieldbannerneutralpost.m2", - text = "battlefieldbannerneutralpost.m2", + fileId = "200108", + text = "summerfest_wreathfloating.m2", + value = "summerfest_wreathfloating.m2", + }, + { + fileId = "200109", + text = "summerfest_wreathhanginghuge.m2", + value = "summerfest_wreathhanginghuge.m2", }, }, - value = "battlefieldbanners", - text = "battlefieldbanners", + text = "summerfestival", + value = "summerfestival", }, { children = { { - fileId = "200293", - value = "collisionwallpvp01.m2", - text = "collisionwallpvp01.m2", - }, - { - fileId = "200294", - value = "collisionwallpvp01_textured.m2", - text = "collisionwallpvp01_textured.m2", - }, - { - fileId = "527813", - value = "collisionwallpvp02.m2", - text = "collisionwallpvp02.m2", + fileId = "200117", + text = "testball.m2", + value = "testball.m2", }, }, - value = "collisionwall", - text = "collisionwall", + text = "testball", + value = "testball", }, { children = { { - fileId = "200296", - value = "alliancectfflag.m2", - text = "alliancectfflag.m2", + fileId = "200118", + text = "g_cornucopia.m2", + value = "g_cornucopia.m2", }, { - fileId = "200299", - value = "hordectfflag.m2", - text = "hordectfflag.m2", + fileId = "200119", + text = "g_indiancorn_basket.m2", + value = "g_indiancorn_basket.m2", }, { - fileId = "200301", - value = "neutralctfflag.m2", - text = "neutralctfflag.m2", + fileId = "200120", + text = "g_pilgrimhat.m2", + value = "g_pilgrimhat.m2", }, - }, - value = "ctfflags", - text = "ctfflags", - }, - { - children = { { - fileId = "200302", - value = "lowpolyfire.m2", - text = "lowpolyfire.m2", + fileId = "200121", + text = "g_pumpkin.m2", + value = "g_pumpkin.m2", }, { - fileId = "200303", - value = "lowpolyfireanim.m2", - text = "lowpolyfireanim.m2", + fileId = "200122", + text = "g_pumpkinwhat.m2", + value = "g_pumpkinwhat.m2", }, - }, - value = "fires", - text = "fires", - }, - { - children = { { - fileId = "200305", - value = "pvp_rune_berserker.m2", - text = "pvp_rune_berserker.m2", + fileId = "200123", + text = "g_squash01.m2", + value = "g_squash01.m2", }, { - fileId = "200307", - value = "pvp_rune_invis.m2", - text = "pvp_rune_invis.m2", + fileId = "200124", + text = "g_squash02.m2", + value = "g_squash02.m2", }, { - fileId = "200308", - value = "pvp_rune_restoration.m2", - text = "pvp_rune_restoration.m2", + fileId = "200125", + text = "g_squash03.m2", + value = "g_squash03.m2", }, { - fileId = "200309", - value = "pvp_rune_speed.m2", - text = "pvp_rune_speed.m2", + fileId = "200126", + text = "g_squash04.m2", + value = "g_squash04.m2", }, { - fileId = "200310", - value = "pvp_rune_speed_icon.m2", - text = "pvp_rune_speed_icon.m2", + fileId = "200127", + text = "g_squashgreen.m2", + value = "g_squashgreen.m2", + }, + { + fileId = "200128", + text = "g_squashlong.m2", + value = "g_squashlong.m2", }, }, - value = "runes", - text = "runes", + text = "thanksgiving", + value = "thanksgiving", }, { children = { { - fileId = "200314", - value = "ud_pvptaunt.m2", - text = "ud_pvptaunt.m2", + fileId = "2199319", + text = "spellobject_invisibletrap.m2", + value = "spellobject_invisibletrap.m2", }, }, - value = "upperdeck", - text = "upperdeck", + text = "traps", + value = "traps", }, { children = { { - fileId = "200316", - value = "nightelfctfflagplaceglow.m2", - text = "nightelfctfflagplaceglow.m2", - }, - { - fileId = "200317", - value = "orcctfflagplaceglow.m2", - text = "orcctfflagplaceglow.m2", - }, - { - fileId = "200319", - value = "warsongctfnightelftoplight.m2", - text = "warsongctfnightelftoplight.m2", - }, - { - fileId = "200320", - value = "warsonggulch_orc_door01.m2", - text = "warsonggulch_orc_door01.m2", + fileId = "200135", + text = "goldpilelarge01.m2", + value = "goldpilelarge01.m2", }, { - children = { - { - fileId = "200324", - value = "elfwindow.m2", - text = "elfwindow.m2", - }, - { - fileId = "200325", - value = "orcwindow.m2", - text = "orcwindow.m2", - }, - }, - value = "windows", - text = "windows", + fileId = "200136", + text = "goldpilemedium01.m2", + value = "goldpilemedium01.m2", }, - }, - value = "warsong", - text = "warsong", - }, - }, - value = "pvp", - text = "pvp", - }, - { - children = { - { - children = { { - children = { - { - fileId = "200328", - value = "razorfenforcefield01.m2", - text = "razorfenforcefield01.m2", - }, - }, - value = "doors", - text = "doors", + fileId = "200137", + text = "goldpilesmall01.m2", + value = "goldpilesmall01.m2", }, }, - value = "activedoodads", - text = "activedoodads", + text = "treasurepiles", + value = "treasurepiles", }, { children = { { - children = { - { - fileId = "200329", - value = "barbs_01.m2", - text = "barbs_01.m2", - }, - { - fileId = "200330", - value = "barbs_02.m2", - text = "barbs_02.m2", - }, - }, - value = "barbs", - text = "barbs", + fileId = "200143", + text = "gryphonroost_ruined.m2", + value = "gryphonroost_ruined.m2", }, { - children = { - { - fileId = "200332", - value = "quillboar_hut01.m2", - text = "quillboar_hut01.m2", - }, - { - fileId = "200333", - value = "quillboar_small_hut01.m2", - text = "quillboar_small_hut01.m2", - }, - }, - value = "huts", - text = "huts", + fileId = "200151", + text = "tugofwar_dustextractor.m2", + value = "tugofwar_dustextractor.m2", }, { - children = { - { - fileId = "200335", - value = "razorfen leanto03.m2", - text = "razorfen leanto03.m2", - }, - }, - value = "leantos", - text = "leantos", + fileId = "200152", + text = "tugofwar_reddustbag01.m2", + value = "tugofwar_reddustbag01.m2", }, { - children = { - { - fileId = "200336", - value = "quillboarpost.m2", - text = "quillboarpost.m2", - }, - }, - value = "post", - text = "post", + fileId = "200153", + text = "tugofwar_redspiceexplosion.m2", + value = "tugofwar_redspiceexplosion.m2", }, { - children = { - { - fileId = "200337", - value = "quillboarpaintingcliff01.m2", - text = "quillboarpaintingcliff01.m2", - }, - { - fileId = "200338", - value = "quillboarpaintingrock01.m2", - text = "quillboarpaintingrock01.m2", - }, - }, - value = "quilboarrockpaintings", - text = "quilboarrockpaintings", + fileId = "200154", + text = "tugofwar_redspicegeyser.m2", + value = "tugofwar_redspicegeyser.m2", }, { - children = { - { - fileId = "200342", - value = "razorfen_canopy01.m2", - text = "razorfen_canopy01.m2", - }, - { - fileId = "200343", - value = "razorfen_canopy01_hole.m2", - text = "razorfen_canopy01_hole.m2", - }, - { - fileId = "200344", - value = "razorfen_canopy02.m2", - text = "razorfen_canopy02.m2", - }, - { - fileId = "200345", - value = "thorncanopy_01.m2", - text = "thorncanopy_01.m2", - }, - { - fileId = "200346", - value = "thorncanopy_02.m2", - text = "thorncanopy_02.m2", - }, - { - fileId = "200347", - value = "thorncanopy_03.m2", - text = "thorncanopy_03.m2", - }, - }, - value = "thorncanopies", - text = "thorncanopies", + fileId = "200155", + text = "tugofwar_redspicemissile.m2", + value = "tugofwar_redspicemissile.m2", }, { - children = { - { - fileId = "200349", - value = "razorfentrough01.m2", - text = "razorfentrough01.m2", - }, - }, - value = "troughs", - text = "troughs", + fileId = "200156", + text = "tugofwar_redspicepile.m2", + value = "tugofwar_redspicepile.m2", }, }, - value = "passive doodads", - text = "passive doodads", + text = "tugofwar", + value = "tugofwar", }, - }, - value = "quilboar", - text = "quilboar", - }, - { - children = { { children = { { - children = { - { - fileId = "200350", - value = "satyrcontainer01.m2", - text = "satyrcontainer01.m2", - }, - { - fileId = "200351", - value = "satyrcontainer02.m2", - text = "satyrcontainer02.m2", - }, - { - fileId = "200352", - value = "satyrcontainer03.m2", - text = "satyrcontainer03.m2", - }, - }, - value = "container", - text = "container", + fileId = "200163", + text = "valentinebasket_01.m2", + value = "valentinebasket_01.m2", }, { - children = { - { - fileId = "200353", - value = "satyrtent01.m2", - text = "satyrtent01.m2", - }, - { - fileId = "200355", - value = "satyrtent02.m2", - text = "satyrtent02.m2", - }, - { - fileId = "200356", - value = "satyrtent03.m2", - text = "satyrtent03.m2", - }, - }, - value = "tents", - text = "tents", + fileId = "200165", + text = "valentines_blanket.m2", + value = "valentines_blanket.m2", }, - }, - value = "passive doodads", - text = "passive doodads", - }, - }, - value = "satyr", - text = "satyr", - }, - { - children = { - { - children = { { - children = { - { - fileId = "200357", - value = "animalcage01.m2", - text = "animalcage01.m2", - }, - { - fileId = "200358", - value = "animalcage02.m2", - text = "animalcage02.m2", - }, - { - fileId = "200359", - value = "animalcage03.m2", - text = "animalcage03.m2", - }, - { - fileId = "200360", - value = "animalcage04.m2", - text = "animalcage04.m2", - }, - }, - value = "animalcages", - text = "animalcages", + fileId = "200167", + text = "valentinesarc.m2", + value = "valentinesarc.m2", }, { - children = { - { - fileId = "200363", - value = "archerytargetdwarf01.m2", - text = "archerytargetdwarf01.m2", - }, - { - fileId = "200364", - value = "archerytargethuman01.m2", - text = "archerytargethuman01.m2", - }, - }, - value = "archerytargets", - text = "archerytargets", + fileId = "200170", + text = "valentinescandle.m2", + value = "valentinescandle.m2", }, { - children = { - { - fileId = "200365", - value = "babywheel01.m2", - text = "babywheel01.m2", - }, - }, - value = "babywheels", - text = "babywheels", + fileId = "200172", + text = "valentineschocolate.m2", + value = "valentineschocolate.m2", }, { - children = { - { - fileId = "200369", - value = "taurenballhoopstand.m2", - text = "taurenballhoopstand.m2", - }, - { - fileId = "200370", - value = "taurenleatherball.m2", - text = "taurenleatherball.m2", - }, - }, - value = "ballandhoop", - text = "ballandhoop", + fileId = "200174", + text = "valentineschocolategreen.m2", + value = "valentineschocolategreen.m2", }, { - children = { - { - fileId = "200371", - value = "flatbasket01.m2", - text = "flatbasket01.m2", - }, - { - fileId = "200372", - value = "largebasket01.m2", - text = "largebasket01.m2", - }, - { - fileId = "200373", - value = "largebasket02.m2", - text = "largebasket02.m2", - }, - { - fileId = "200374", - value = "largebasket03.m2", - text = "largebasket03.m2", - }, - { - fileId = "200375", - value = "smallbasket01.m2", - text = "smallbasket01.m2", - }, - { - fileId = "200376", - value = "smallbasket02.m2", - text = "smallbasket02.m2", - }, - { - fileId = "200377", - value = "smallbasket03.m2", - text = "smallbasket03.m2", - }, - }, - value = "baskets", - text = "baskets", + fileId = "200176", + text = "valentineschocolatepurple.m2", + value = "valentineschocolatepurple.m2", }, { - children = { - { - fileId = "200378", - value = "taurenbowl01.m2", - text = "taurenbowl01.m2", - }, - { - fileId = "200379", - value = "taurenbowl02.m2", - text = "taurenbowl02.m2", - }, - { - fileId = "200380", - value = "taurenbowl03.m2", - text = "taurenbowl03.m2", - }, - { - fileId = "200381", - value = "taurenbowl04.m2", - text = "taurenbowl04.m2", - }, - { - fileId = "200382", - value = "taurenbowl05.m2", - text = "taurenbowl05.m2", - }, - { - fileId = "200383", - value = "taurenbowl06.m2", - text = "taurenbowl06.m2", - }, - { - fileId = "200384", - value = "taurenbowl07.m2", - text = "taurenbowl07.m2", - }, - { - fileId = "200385", - value = "taurenbowl08.m2", - text = "taurenbowl08.m2", - }, - { - fileId = "200386", - value = "taurenbowl09.m2", - text = "taurenbowl09.m2", - }, - }, - value = "bowls", - text = "bowls", + fileId = "200178", + text = "valentineschocolateyellow.m2", + value = "valentineschocolateyellow.m2", }, { - children = { - { - fileId = "200388", - value = "carvingchisel01.m2", - text = "carvingchisel01.m2", - }, - { - fileId = "200389", - value = "carvingchisel02.m2", - text = "carvingchisel02.m2", - }, - { - fileId = "200390", - value = "carvinghammer01.m2", - text = "carvinghammer01.m2", - }, - { - fileId = "200391", - value = "carvinghatchet01.m2", - text = "carvinghatchet01.m2", - }, - }, - value = "carvingtools", - text = "carvingtools", + fileId = "200180", + text = "valentinescolognebottle.m2", + value = "valentinescolognebottle.m2", }, { - children = { - { - fileId = "200393", - value = "taurenlogchair01.m2", - text = "taurenlogchair01.m2", - }, - { - fileId = "200394", - value = "taurenlogchair02.m2", - text = "taurenlogchair02.m2", - }, - }, - value = "chairs", - text = "chairs", + fileId = "200181", + text = "valentinescrate.m2", + value = "valentinescrate.m2", }, { - children = { - { - fileId = "200395", - value = "taurenchimesbells.m2", - text = "taurenchimesbells.m2", - }, - { - fileId = "200396", - value = "taurenchimeswood.m2", - text = "taurenchimeswood.m2", - }, - }, - value = "chimes", - text = "chimes", + fileId = "200183", + text = "valentinesperfumebottle.m2", + value = "valentinesperfumebottle.m2", + }, + { + fileId = "200185", + text = "valentinesplant.m2", + value = "valentinesplant.m2", + }, + { + fileId = "200187", + text = "valentinesribbon01.m2", + value = "valentinesribbon01.m2", + }, + { + fileId = "200188", + text = "valentinesribbon01huge.m2", + value = "valentinesribbon01huge.m2", + }, + { + fileId = "200189", + text = "valentinesribbon02.m2", + value = "valentinesribbon02.m2", + }, + { + fileId = "200190", + text = "valentinesstreamers.m2", + value = "valentinesstreamers.m2", + }, + { + fileId = "200191", + text = "valentinesstreamersx3.m2", + value = "valentinesstreamersx3.m2", }, { - children = { - { - fileId = "200397", - value = "dreamcatcher01.m2", - text = "dreamcatcher01.m2", - }, - { - fileId = "200398", - value = "dreamcatcher02.m2", - text = "dreamcatcher02.m2", - }, - { - fileId = "200399", - value = "dreamcatcher03.m2", - text = "dreamcatcher03.m2", - }, - }, - value = "dreamcatchers", - text = "dreamcatchers", + fileId = "200192", + text = "valentineswreath01.m2", + value = "valentineswreath01.m2", }, { - children = { - { - fileId = "200401", - value = "taurendrumgiant01.m2", - text = "taurendrumgiant01.m2", - }, - { - fileId = "200402", - value = "taurendrummed01.m2", - text = "taurendrummed01.m2", - }, - { - fileId = "200403", - value = "taurendrumsmall01.m2", - text = "taurendrumsmall01.m2", - }, - }, - value = "drums", - text = "drums", + fileId = "200193", + text = "valentineswreath01huge.m2", + value = "valentineswreath01huge.m2", }, { - children = { - { - fileId = "200405", - value = "funeralpyre02.m2", - text = "funeralpyre02.m2", - }, - }, - value = "funeralpyres", - text = "funeralpyres", + fileId = "200194", + text = "valentineswreathfloating.m2", + value = "valentineswreathfloating.m2", }, { - children = { - { - fileId = "200406", - value = "taurenhitchingpost.m2", - text = "taurenhitchingpost.m2", - }, - }, - value = "hitchingposts", - text = "hitchingposts", + fileId = "200195", + text = "valentineswreathhanging.m2", + value = "valentineswreathhanging.m2", }, { - children = { - { - fileId = "200407", - value = "hotspringssteam.m2", - text = "hotspringssteam.m2", - }, - }, - value = "hotspringssteam", - text = "hotspringssteam", + fileId = "200196", + text = "valentineswreathhanginghuge.m2", + value = "valentineswreathhanginghuge.m2", }, { - children = { - { - fileId = "200409", - value = "taurenkiln01.m2", - text = "taurenkiln01.m2", - }, - }, - value = "kilns", - text = "kilns", + fileId = "200197", + text = "valentineumbrella_01.m2", + value = "valentineumbrella_01.m2", }, + }, + text = "valentinesday", + value = "valentinesday", + }, + { + children = { { children = { { - fileId = "200410", - value = "taurenkite01.m2", - text = "taurenkite01.m2", - }, - { - fileId = "200411", - value = "taurenkite02.m2", - text = "taurenkite02.m2", + fileId = "200200", + text = "cavewallbones01.m2", + value = "cavewallbones01.m2", }, { - fileId = "200412", - value = "taurenkite03.m2", - text = "taurenkite03.m2", + fileId = "200201", + text = "cavewallbones02.m2", + value = "cavewallbones02.m2", }, }, - value = "kites", - text = "kites", + text = "bones", + value = "bones", }, + }, + text = "wall", + value = "wall", + }, + { + children = { { - children = { - { - fileId = "200416", - value = "taurenkodohide.m2", - text = "taurenkodohide.m2", - }, - }, - value = "kodohide", - text = "kodohide", + fileId = "200202", + text = "newwaterfall.m2", + value = "newwaterfall.m2", }, { - children = { - { - fileId = "200417", - value = "bagkodohorns.m2", - text = "bagkodohorns.m2", - }, - { - fileId = "200418", - value = "basketkodohorns.m2", - text = "basketkodohorns.m2", - }, - { - fileId = "200419", - value = "basketkodohorns2.m2", - text = "basketkodohorns2.m2", - }, - }, - value = "kodohorncontainers", - text = "kodohorncontainers", + fileId = "200203", + text = "waterfall-long.m2", + value = "waterfall-long.m2", }, + }, + text = "waterfall", + value = "waterfall", + }, + { + children = { { - children = { - { - fileId = "200420", - value = "kodoskulls01.m2", - text = "kodoskulls01.m2", - }, - { - fileId = "200421", - value = "kodoskulls02.m2", - text = "kodoskulls02.m2", - }, - { - fileId = "200422", - value = "kodoskulls03.m2", - text = "kodoskulls03.m2", - }, - }, - value = "kodoskulls", - text = "kodoskulls", + fileId = "200204", + text = "damwaterfall01.m2", + value = "damwaterfall01.m2", }, + }, + text = "waterfalls", + value = "waterfalls", + }, + { + children = { { - children = { - { - fileId = "200426", - value = "taurenlamppost.m2", - text = "taurenlamppost.m2", - }, - { - fileId = "200427", - value = "taurenlamppost02.m2", - text = "taurenlamppost02.m2", - }, - { - fileId = "200428", - value = "taurenlamppostbroken.m2", - text = "taurenlamppostbroken.m2", - }, - { - fileId = "200429", - value = "taurenlamppostbroken02.m2", - text = "taurenlamppostbroken02.m2", - }, - }, - value = "lampposts", - text = "lampposts", + fileId = "200208", + text = "weaponcratealliancesword.m2", + value = "weaponcratealliancesword.m2", }, { - children = { - { - fileId = "200431", - value = "taurenloomblue.m2", - text = "taurenloomblue.m2", - }, - { - fileId = "200432", - value = "taurenloomwhite.m2", - text = "taurenloomwhite.m2", - }, - }, - value = "loom", - text = "loom", + fileId = "200209", + text = "weaponcrateallianceswordlid.m2", + value = "weaponcrateallianceswordlid.m2", }, { - children = { - { - fileId = "200433", - value = "mortarpestle.m2", - text = "mortarpestle.m2", - }, - }, - value = "mortarpestle", - text = "mortarpestle", + fileId = "200210", + text = "weaponcrateallianceswordopen.m2", + value = "weaponcrateallianceswordopen.m2", }, { - children = { - { - fileId = "200434", - value = "peacepipe05.m2", - text = "peacepipe05.m2", - }, - }, - value = "peacepipe", - text = "peacepipe", + fileId = "200211", + text = "weaponcratehordeaxe.m2", + value = "weaponcratehordeaxe.m2", }, { - children = { - { - fileId = "200436", - value = "azsharataurnwallpvp_01.m2", - text = "azsharataurnwallpvp_01.m2", - }, - }, - value = "pvpwalls", - text = "pvpwalls", + fileId = "200212", + text = "weaponcratehordeaxelid.m2", + value = "weaponcratehordeaxelid.m2", }, { - children = { - { - fileId = "200439", - value = "taurenrattle01.m2", - text = "taurenrattle01.m2", - }, - { - fileId = "200440", - value = "taurenrattle02.m2", - text = "taurenrattle02.m2", - }, - }, - value = "rattles", - text = "rattles", + fileId = "200213", + text = "weaponcratehordeaxeopen.m2", + value = "weaponcratehordeaxeopen.m2", }, + }, + text = "weaponcrates", + value = "weaponcrates", + }, + { + children = { { - children = { - { - fileId = "200441", - value = "taurensack01.m2", - text = "taurensack01.m2", - }, - { - fileId = "200442", - value = "taurensack02.m2", - text = "taurensack02.m2", - }, - { - fileId = "200443", - value = "taurensack03.m2", - text = "taurensack03.m2", - }, - }, - value = "sacks", - text = "sacks", + fileId = "200214", + text = "bone_bow.m2", + value = "bone_bow.m2", }, { - children = { - { - fileId = "200444", - value = "taurensandpainting01.m2", - text = "taurensandpainting01.m2", - }, - { - fileId = "200445", - value = "taurensandpainting02.m2", - text = "taurensandpainting02.m2", - }, - { - fileId = "200446", - value = "taurensandpainting03.m2", - text = "taurensandpainting03.m2", - }, - { - fileId = "200447", - value = "taurensandpainting04.m2", - text = "taurensandpainting04.m2", - }, - { - fileId = "200448", - value = "taurensandpainting05.m2", - text = "taurensandpainting05.m2", - }, - }, - value = "sandpaintings", - text = "sandpaintings", + fileId = "200215", + text = "bone_shield.m2", + value = "bone_shield.m2", }, { - children = { - { - fileId = "200451", - value = "taurensignpost01.m2", - text = "taurensignpost01.m2", - }, - { - fileId = "200452", - value = "taurensignpost02.m2", - text = "taurensignpost02.m2", - }, - { - fileId = "200453", - value = "taurensignpostpointer01.m2", - text = "taurensignpostpointer01.m2", - }, - { - fileId = "200454", - value = "taurensignpostpointer02.m2", - text = "taurensignpostpointer02.m2", - }, - }, - value = "signposts", - text = "signposts", + fileId = "200217", + text = "boneclub01.m2", + value = "boneclub01.m2", }, { - children = { - { - fileId = "200455", - value = "taurensign_alchemist.m2", - text = "taurensign_alchemist.m2", - }, - { - fileId = "200458", - value = "taurensign_armory.m2", - text = "taurensign_armory.m2", - }, - { - fileId = "200460", - value = "taurensign_bank.m2", - text = "taurensign_bank.m2", - }, - { - fileId = "200462", - value = "taurensign_blacksmith.m2", - text = "taurensign_blacksmith.m2", - }, - { - fileId = "200464", - value = "taurensign_bows.m2", - text = "taurensign_bows.m2", - }, - { - fileId = "200466", - value = "taurensign_cartography.m2", - text = "taurensign_cartography.m2", - }, - { - fileId = "200468", - value = "taurensign_clotharmor.m2", - text = "taurensign_clotharmor.m2", - }, - { - fileId = "200470", - value = "taurensign_cooking.m2", - text = "taurensign_cooking.m2", - }, - { - fileId = "200472", - value = "taurensign_drinks.m2", - text = "taurensign_drinks.m2", - }, - { - fileId = "200474", - value = "taurensign_enchanting.m2", - text = "taurensign_enchanting.m2", - }, - { - fileId = "200476", - value = "taurensign_engineering.m2", - text = "taurensign_engineering.m2", - }, - { - fileId = "200478", - value = "taurensign_firstaid.m2", - text = "taurensign_firstaid.m2", - }, - { - fileId = "200480", - value = "taurensign_fishing.m2", - text = "taurensign_fishing.m2", - }, - { - fileId = "200482", - value = "taurensign_fletcher.m2", - text = "taurensign_fletcher.m2", - }, - { - fileId = "200484", - value = "taurensign_food.m2", - text = "taurensign_food.m2", - }, - { - fileId = "200485", - value = "taurensign_general.m2", - text = "taurensign_general.m2", - }, - { - fileId = "200488", - value = "taurensign_guns.m2", - text = "taurensign_guns.m2", - }, - { - fileId = "200490", - value = "taurensign_herbalist.m2", - text = "taurensign_herbalist.m2", - }, - { - fileId = "200492", - value = "taurensign_inn.m2", - text = "taurensign_inn.m2", - }, - { - fileId = "200494", - value = "taurensign_inscribing.m2", - text = "taurensign_inscribing.m2", - }, - { - fileId = "200496", - value = "taurensign_leatherarmor.m2", - text = "taurensign_leatherarmor.m2", - }, - { - fileId = "200498", - value = "taurensign_lockpicking.m2", - text = "taurensign_lockpicking.m2", - }, - { - fileId = "200500", - value = "taurensign_maces.m2", - text = "taurensign_maces.m2", - }, - { - fileId = "200502", - value = "taurensign_magicshop.m2", - text = "taurensign_magicshop.m2", - }, - { - fileId = "200504", - value = "taurensign_mailarmor.m2", - text = "taurensign_mailarmor.m2", - }, - { - fileId = "200506", - value = "taurensign_meat.m2", - text = "taurensign_meat.m2", - }, - { - fileId = "200508", - value = "taurensign_mining.m2", - text = "taurensign_mining.m2", - }, - { - fileId = "200510", - value = "taurensign_poisons.m2", - text = "taurensign_poisons.m2", - }, - { - fileId = "200512", - value = "taurensign_swords.m2", - text = "taurensign_swords.m2", - }, - { - fileId = "200514", - value = "taurensign_tabard.m2", - text = "taurensign_tabard.m2", - }, - { - fileId = "200516", - value = "taurensign_tailor.m2", - text = "taurensign_tailor.m2", - }, - { - fileId = "200518", - value = "taurensign_tavern.m2", - text = "taurensign_tavern.m2", - }, - { - fileId = "200520", - value = "taurensign_warharness.m2", - text = "taurensign_warharness.m2", - }, - { - fileId = "200522", - value = "taurensign_weapons.m2", - text = "taurensign_weapons.m2", - }, - { - fileId = "200524", - value = "taurensign_wine.m2", - text = "taurensign_wine.m2", - }, - { - fileId = "200526", - value = "taurensign_wyvern.m2", - text = "taurensign_wyvern.m2", - }, - }, - value = "signs", - text = "signs", + fileId = "200218", + text = "caveman_club01.m2", + value = "caveman_club01.m2", }, { - children = { - { - fileId = "200527", - value = "taurencoloredsmoke01.m2", - text = "taurencoloredsmoke01.m2", - }, - }, - value = "smoke", - text = "smoke", + fileId = "200219", + text = "flint_club01.m2", + value = "flint_club01.m2", }, { - children = { - { - fileId = "200528", - value = "tallstridermeat01.m2", - text = "tallstridermeat01.m2", - }, - { - fileId = "200529", - value = "tallstridermeat02.m2", - text = "tallstridermeat02.m2", - }, - }, - value = "tallstridermeat", - text = "tallstridermeat", + fileId = "200220", + text = "flint_spear02.m2", + value = "flint_spear02.m2", }, { - children = { - { - fileId = "200532", - value = "taurencanoe.m2", - text = "taurencanoe.m2", - }, - }, - value = "taurencanoe", - text = "taurencanoe", + fileId = "200223", + text = "flintspear01.m2", + value = "flintspear01.m2", }, { - children = { - { - fileId = "200533", - value = "taurenbeadcurtain01.m2", - text = "taurenbeadcurtain01.m2", - }, - }, - value = "taurencurtains", - text = "taurencurtains", + fileId = "200225", + text = "knotted_club01.m2", + value = "knotted_club01.m2", }, { - children = { - { - fileId = "200534", - value = "taurenmummy.m2", - text = "taurenmummy.m2", - }, - }, - value = "taurenmummies", - text = "taurenmummies", + fileId = "200227", + text = "leather_shield.m2", + value = "leather_shield.m2", }, { - children = { - { - fileId = "200535", - value = "taurenplow.m2", - text = "taurenplow.m2", - }, - }, - value = "taurenplow", - text = "taurenplow", + fileId = "200228", + text = "naga_trident.m2", + value = "naga_trident.m2", }, { - children = { - { - fileId = "200536", - value = "taurenrug01.m2", - text = "taurenrug01.m2", - }, - { - fileId = "200537", - value = "taurenrug02.m2", - text = "taurenrug02.m2", - }, - { - fileId = "200538", - value = "taurenrug03.m2", - text = "taurenrug03.m2", - }, - { - fileId = "200539", - value = "taurenrug04.m2", - text = "taurenrug04.m2", - }, - }, - value = "taurenrugs", - text = "taurenrugs", + fileId = "200233", + text = "skullclub01.m2", + value = "skullclub01.m2", }, { - children = { - { - fileId = "200540", - value = "taurenshirthangingblue.m2", - text = "taurenshirthangingblue.m2", - }, - { - fileId = "200541", - value = "taurenshirthangingbrown.m2", - text = "taurenshirthangingbrown.m2", - }, - }, - value = "taurenshirts", - text = "taurenshirts", + fileId = "200234", + text = "skullspear01.m2", + value = "skullspear01.m2", }, { - children = { - { - fileId = "200545", - value = "travois.m2", - text = "travois.m2", - }, - }, - value = "taurentravois", - text = "taurentravois", + fileId = "200235", + text = "spiked_club01.m2", + value = "spiked_club01.m2", }, { - children = { - { - fileId = "200547", - value = "taurenwallhanging01.m2", - text = "taurenwallhanging01.m2", - }, - { - fileId = "200548", - value = "taurenwallhanging02.m2", - text = "taurenwallhanging02.m2", - }, - { - fileId = "200549", - value = "taurenwallhanging03.m2", - text = "taurenwallhanging03.m2", - }, - }, - value = "taurenwallhangings", - text = "taurenwallhangings", + fileId = "200237", + text = "steelspear01.m2", + value = "steelspear01.m2", }, { - children = { - { - fileId = "200551", - value = "taurenwallscroll01.m2", - text = "taurenwallscroll01.m2", - }, - { - fileId = "200552", - value = "taurenwallscroll01blue.m2", - text = "taurenwallscroll01blue.m2", - }, - { - fileId = "200553", - value = "taurenwallscroll02.m2", - text = "taurenwallscroll02.m2", - }, - { - fileId = "200554", - value = "taurenwallscroll02blue.m2", - text = "taurenwallscroll02blue.m2", - }, - { - fileId = "200555", - value = "taurenwallscroll03.m2", - text = "taurenwallscroll03.m2", - }, - }, - value = "taurenwallscrolls", - text = "taurenwallscrolls", + fileId = "200238", + text = "stone_club01.m2", + value = "stone_club01.m2", }, { - children = { - { - fileId = "200557", - value = "waterpump.m2", - text = "waterpump.m2", - }, - }, - value = "taurenwaterpump", - text = "taurenwaterpump", + fileId = "200239", + text = "stone_spear01.m2", + value = "stone_spear01.m2", }, { - children = { - { - fileId = "200566", - value = "taurenwindmilla.m2", - text = "taurenwindmilla.m2", - }, - { - fileId = "200567", - value = "taurenwindmillb.m2", - text = "taurenwindmillb.m2", - }, - { - fileId = "200568", - value = "taurenwindmillc.m2", - text = "taurenwindmillc.m2", - }, - }, - value = "taurenwindmills", - text = "taurenwindmills", + fileId = "200243", + text = "wicker_bow.m2", + value = "wicker_bow.m2", }, { - children = { - { - fileId = "200571", - value = "burned_totem01.m2", - text = "burned_totem01.m2", - }, - { - fileId = "200572", - value = "burned_totem02.m2", - text = "burned_totem02.m2", - }, - { - fileId = "200573", - value = "grimtotem01.m2", - text = "grimtotem01.m2", - }, - { - fileId = "200574", - value = "grimtotem02.m2", - text = "grimtotem02.m2", - }, - { - fileId = "200575", - value = "grimtotem03.m2", - text = "grimtotem03.m2", - }, - { - fileId = "200576", - value = "grimtotem04.m2", - text = "grimtotem04.m2", - }, - { - fileId = "200577", - value = "taurentotem01.m2", - text = "taurentotem01.m2", - }, - { - fileId = "200578", - value = "taurentotem02.m2", - text = "taurentotem02.m2", - }, - { - fileId = "200579", - value = "taurentotem03.m2", - text = "taurentotem03.m2", - }, - { - fileId = "200580", - value = "taurentotem04.m2", - text = "taurentotem04.m2", - }, - { - fileId = "200581", - value = "taurentotem05.m2", - text = "taurentotem05.m2", - }, - { - fileId = "200582", - value = "taurentotem06.m2", - text = "taurentotem06.m2", - }, - { - fileId = "200583", - value = "taurentotem07.m2", - text = "taurentotem07.m2", - }, - { - fileId = "200584", - value = "taurentotem08.m2", - text = "taurentotem08.m2", - }, - { - fileId = "200585", - value = "taurentotem09.m2", - text = "taurentotem09.m2", - }, - }, - value = "totems", - text = "totems", + fileId = "200244", + text = "wicker_shield.m2", + value = "wicker_shield.m2", }, { - children = { - { - fileId = "200588", - value = "warharnessfloor01.m2", - text = "warharnessfloor01.m2", - }, - { - fileId = "200589", - value = "warharnessfloor02.m2", - text = "warharnessfloor02.m2", - }, - { - fileId = "200590", - value = "warharnessfloor03.m2", - text = "warharnessfloor03.m2", - }, - { - fileId = "200591", - value = "warharnessfloor04.m2", - text = "warharnessfloor04.m2", - }, - { - fileId = "200592", - value = "warharnesstotem01.m2", - text = "warharnesstotem01.m2", - }, - { - fileId = "200593", - value = "warharnesstotem02.m2", - text = "warharnesstotem02.m2", - }, - { - fileId = "200594", - value = "warharnesstotem03.m2", - text = "warharnesstotem03.m2", - }, - { - fileId = "200595", - value = "warharnesstotem04.m2", - text = "warharnesstotem04.m2", - }, - { - fileId = "200596", - value = "warharnesswall01.m2", - text = "warharnesswall01.m2", - }, - { - fileId = "200597", - value = "warharnesswall02.m2", - text = "warharnesswall02.m2", - }, - { - fileId = "200598", - value = "warharnesswall03.m2", - text = "warharnesswall03.m2", - }, - { - fileId = "200599", - value = "warharnesswall04.m2", - text = "warharnesswall04.m2", - }, - }, - value = "warharnasses", - text = "warharnasses", + fileId = "200246", + text = "woodclub01.m2", + value = "woodclub01.m2", }, + }, + text = "weapons", + value = "weapons", + }, + { + children = { { - children = { - { - fileId = "200601", - value = "watertroughlarge01.m2", - text = "watertroughlarge01.m2", - }, - { - fileId = "200602", - value = "watertroughsmall01.m2", - text = "watertroughsmall01.m2", - }, - }, - value = "watertroughs", - text = "watertroughs", + fileId = "200252", + text = "well.m2", + value = "well.m2", }, - { - children = { - { - fileId = "200603", - value = "tauren_weaponaxe01.m2", - text = "tauren_weaponaxe01.m2", - }, - { - fileId = "200604", - value = "tauren_weaponhatchet01.m2", - text = "tauren_weaponhatchet01.m2", - }, - { - fileId = "200605", - value = "tauren_weaponlog01.m2", - text = "tauren_weaponlog01.m2", - }, - { - fileId = "200606", - value = "tauren_weaponlog02.m2", - text = "tauren_weaponlog02.m2", - }, - { - fileId = "200608", - value = "tauren_weaponrack01.m2", - text = "tauren_weaponrack01.m2", - }, - { - fileId = "200609", - value = "tauren_weaponrack02.m2", - text = "tauren_weaponrack02.m2", - }, - { - fileId = "200610", - value = "tauren_weaponrackwrecked.m2", - text = "tauren_weaponrackwrecked.m2", - }, - { - fileId = "200611", - value = "tauren_weaponspear.m2", - text = "tauren_weaponspear.m2", - }, - }, - value = "weapons", - text = "weapons", + }, + text = "well", + value = "well", + }, + { + children = { + { + fileId = "200254", + text = "dustwestfall.m2", + value = "dustwestfall.m2", }, { - children = { - { - fileId = "200613", - value = "taurenwindbreak01.m2", - text = "taurenwindbreak01.m2", - }, - { - fileId = "200614", - value = "taurenwindbreak02.m2", - text = "taurenwindbreak02.m2", - }, - { - fileId = "200615", - value = "taurenwindbreak03.m2", - text = "taurenwindbreak03.m2", - }, - { - fileId = "200616", - value = "taurenwindbreak04.m2", - text = "taurenwindbreak04.m2", - }, - }, - value = "windbreaks", - text = "windbreaks", + fileId = "200256", + text = "snowdunmorogh.m2", + value = "snowdunmorogh.m2", }, + }, + text = "windblown", + value = "windblown", + }, + { + children = { { - children = { - { - fileId = "200617", - value = "windmillgiant01.m2", - text = "windmillgiant01.m2", - }, - { - fileId = "200618", - value = "windmillsmall01.m2", - text = "windmillsmall01.m2", - }, - { - fileId = "200619", - value = "windmilltall01.m2", - text = "windmilltall01.m2", - }, - }, - value = "windmills", - text = "windmills", + fileId = "200257", + text = "windowbeam01.m2", + value = "windowbeam01.m2", + }, + { + fileId = "200258", + text = "windowbeam02.m2", + value = "windowbeam02.m2", }, }, - value = "passive doodads", - text = "passive doodads", + text = "windowbeam", + value = "windowbeam", }, }, - value = "tauren", - text = "tauren", + text = "passivedoodads", + value = "passivedoodads", }, { children = { { children = { { - children = { - { - fileId = "200621", - value = "mummytroll01.m2", - text = "mummytroll01.m2", - }, - }, - value = "mummytrolls", - text = "mummytrolls", + fileId = "200264", + text = "battlefieldbanner_state_base_plaguelands.m2", + value = "battlefieldbanner_state_base_plaguelands.m2", }, { - children = { - { - fileId = "200623", - value = "skulltiki.m2", - text = "skulltiki.m2", - }, - }, - value = "skultikis", - text = "skultikis", + fileId = "200265", + text = "battlefieldbanner_state_flaga_plaguelands.m2", + value = "battlefieldbanner_state_flaga_plaguelands.m2", }, { - children = { - { - fileId = "200625", - value = "snakegargoyle.m2", - text = "snakegargoyle.m2", - }, - }, - value = "snakegargoyle", - text = "snakegargoyle", + fileId = "200266", + text = "battlefieldbanner_state_flagh_plaguelands.m2", + value = "battlefieldbanner_state_flagh_plaguelands.m2", }, { - children = { - { - fileId = "200629", - value = "cobrathrone01.m2", - text = "cobrathrone01.m2", - }, - }, - value = "thrones", - text = "thrones", + fileId = "200267", + text = "battlefieldbanner_state_flagn_plaguelands.m2", + value = "battlefieldbanner_state_flagn_plaguelands.m2", }, { - children = { - { - fileId = "200633", - value = "troll_tikimask01.m2", - text = "troll_tikimask01.m2", - }, - { - fileId = "200634", - value = "troll_tikimask02.m2", - text = "troll_tikimask02.m2", - }, - { - fileId = "200635", - value = "troll_tikimask03.m2", - text = "troll_tikimask03.m2", - }, - }, - value = "tikimasks", - text = "tikimasks", + fileId = "200268", + text = "battlefieldbanneralliance.m2", + value = "battlefieldbanneralliance.m2", }, { - children = { - { - fileId = "200638", - value = "trollskullpile.m2", - text = "trollskullpile.m2", - }, - }, - value = "trollskullpile", - text = "trollskullpile", + fileId = "200269", + text = "battlefieldbanneralliance_static.m2", + value = "battlefieldbanneralliance_static.m2", }, { - children = { - { - fileId = "200640", - value = "trolltablet.m2", - text = "trolltablet.m2", - }, - }, - value = "trolltablets", - text = "trolltablets", + fileId = "200270", + text = "battlefieldbanneralliancebw.m2", + value = "battlefieldbanneralliancebw.m2", }, { - children = { - { - fileId = "200642", - value = "trough.m2", - text = "trough.m2", - }, - }, - value = "troughs", - text = "troughs", + fileId = "200271", + text = "battlefieldbanneralliancebwflagonly.m2", + value = "battlefieldbanneralliancebwflagonly.m2", }, - }, - value = "passive doodads", - text = "passive doodads", - }, - }, - value = "troll", - text = "troll", - }, - { - children = { - { - children = { { - children = { - { - fileId = "200644", - value = "batroost.m2", - text = "batroost.m2", - }, - { - fileId = "200645", - value = "batroost02.m2", - text = "batroost02.m2", - }, - { - fileId = "200646", - value = "batroost03.m2", - text = "batroost03.m2", - }, - }, - value = "batroost", - text = "batroost", + fileId = "200272", + text = "battlefieldbannerallianceflagonly.m2", + value = "battlefieldbannerallianceflagonly.m2", }, { - children = { - { - fileId = "200649", - value = "lordaeron_bell_01.m2", - text = "lordaeron_bell_01.m2", - }, - { - fileId = "200650", - value = "lordaeron_bell_02.m2", - text = "lordaeron_bell_02.m2", - }, - }, - value = "bell", - text = "bell", + fileId = "200273", + text = "battlefieldbanneralliancelarge.m2", + value = "battlefieldbanneralliancelarge.m2", }, { - children = { - { - fileId = "200652", - value = "lordaeron_bench_01.m2", - text = "lordaeron_bench_01.m2", - }, - { - fileId = "200653", - value = "lordaeron_bench_02.m2", - text = "lordaeron_bench_02.m2", - }, - }, - value = "furniture", - text = "furniture", + fileId = "200274", + text = "battlefieldbanneralliancelargebw.m2", + value = "battlefieldbanneralliancelargebw.m2", }, { - children = { - { - fileId = "200655", - value = "lordaeronbrazier01.m2", - text = "lordaeronbrazier01.m2", - }, - }, - value = "lordaeronbrazier", - text = "lordaeronbrazier", + fileId = "200275", + text = "battlefieldbanneralliancestatusbar2min.m2", + value = "battlefieldbanneralliancestatusbar2min.m2", }, { - children = { - { - fileId = "200657", - value = "thronerailing01.m2", - text = "thronerailing01.m2", - }, - }, - value = "lordaeronrailing", - text = "lordaeronrailing", + fileId = "200276", + text = "battlefieldbannerhorde.m2", + value = "battlefieldbannerhorde.m2", }, { - children = { - { - fileId = "200659", - value = "tyranusthrone.m2", - text = "tyranusthrone.m2", - }, - }, - value = "lordaeronthrone", - text = "lordaeronthrone", + fileId = "200277", + text = "battlefieldbannerhorde_static.m2", + value = "battlefieldbannerhorde_static.m2", }, { - children = { - { - fileId = "200660", - value = "undercitytower01.m2", - text = "undercitytower01.m2", - }, - { - fileId = "200661", - value = "undercitytower02.m2", - text = "undercitytower02.m2", - }, - { - fileId = "200662", - value = "undercitytower03.m2", - text = "undercitytower03.m2", - }, - { - fileId = "200663", - value = "undercitytower04.m2", - text = "undercitytower04.m2", - }, - }, - value = "lordaerontowers", - text = "lordaerontowers", + fileId = "200278", + text = "battlefieldbannerhordebw.m2", + value = "battlefieldbannerhordebw.m2", }, { - children = { - { - fileId = "200664", - value = "meatwagon.m2", - text = "meatwagon.m2", - }, - { - fileId = "200666", - value = "meatwagonwrecked01.m2", - text = "meatwagonwrecked01.m2", - }, - }, - value = "meatwagon", - text = "meatwagon", + fileId = "200279", + text = "battlefieldbannerhordebwflagonly.m2", + value = "battlefieldbannerhordebwflagonly.m2", }, { - children = { - { - children = { - { - fileId = "2198535", - value = "meatwagonhauler.m2", - text = "meatwagonhauler.m2", - }, - }, - value = "meatwagonhauler.mdx", - text = "meatwagonhauler.mdx", - }, - }, - value = "meatwagonhauler", - text = "meatwagonhauler", + fileId = "200280", + text = "battlefieldbannerhordeflagonly.m2", + value = "battlefieldbannerhordeflagonly.m2", }, { - children = { - { - fileId = "200668", - value = "meatwagonbody.m2", - text = "meatwagonbody.m2", - }, - { - fileId = "200669", - value = "meatwagonclaw.m2", - text = "meatwagonclaw.m2", - }, - { - fileId = "200670", - value = "meatwagongrill.m2", - text = "meatwagongrill.m2", - }, - { - fileId = "200671", - value = "meatwagonroller.m2", - text = "meatwagonroller.m2", - }, - { - fileId = "200672", - value = "meatwagonwheel.m2", - text = "meatwagonwheel.m2", - }, - }, - value = "meatwagonpieces", - text = "meatwagonpieces", + fileId = "200281", + text = "battlefieldbannerhordelarge.m2", + value = "battlefieldbannerhordelarge.m2", }, { - children = { - { - fileId = "200673", - value = "lordaeron_citybanner_01.m2", - text = "lordaeron_citybanner_01.m2", - }, - { - fileId = "200674", - value = "lordaeron_signpost_01.m2", - text = "lordaeron_signpost_01.m2", - }, - { - fileId = "200678", - value = "undeadsign_alchemist.m2", - text = "undeadsign_alchemist.m2", - }, - { - fileId = "200680", - value = "undeadsign_armory.m2", - text = "undeadsign_armory.m2", - }, - { - fileId = "200682", - value = "undeadsign_axes.m2", - text = "undeadsign_axes.m2", - }, - { - fileId = "200684", - value = "undeadsign_bags.m2", - text = "undeadsign_bags.m2", - }, - { - fileId = "200686", - value = "undeadsign_bank.m2", - text = "undeadsign_bank.m2", - }, - { - fileId = "200688", - value = "undeadsign_batrider.m2", - text = "undeadsign_batrider.m2", - }, - { - fileId = "200690", - value = "undeadsign_blacksmith.m2", - text = "undeadsign_blacksmith.m2", - }, - { - fileId = "200692", - value = "undeadsign_bows.m2", - text = "undeadsign_bows.m2", - }, - { - fileId = "200694", - value = "undeadsign_bread.m2", - text = "undeadsign_bread.m2", - }, - { - fileId = "200696", - value = "undeadsign_cartography.m2", - text = "undeadsign_cartography.m2", - }, - { - fileId = "200698", - value = "undeadsign_cheese.m2", - text = "undeadsign_cheese.m2", - }, - { - fileId = "200700", - value = "undeadsign_clotharmor.m2", - text = "undeadsign_clotharmor.m2", - }, - { - fileId = "200702", - value = "undeadsign_cook.m2", - text = "undeadsign_cook.m2", - }, - { - fileId = "200704", - value = "undeadsign_daggers.m2", - text = "undeadsign_daggers.m2", - }, - { - fileId = "200706", - value = "undeadsign_drinks.m2", - text = "undeadsign_drinks.m2", - }, - { - fileId = "200708", - value = "undeadsign_enchanting.m2", - text = "undeadsign_enchanting.m2", - }, - { - fileId = "200710", - value = "undeadsign_engineering.m2", - text = "undeadsign_engineering.m2", - }, - { - fileId = "200712", - value = "undeadsign_firstaid.m2", - text = "undeadsign_firstaid.m2", - }, - { - fileId = "200714", - value = "undeadsign_fish.m2", - text = "undeadsign_fish.m2", - }, - { - fileId = "200716", - value = "undeadsign_fletcher.m2", - text = "undeadsign_fletcher.m2", - }, - { - fileId = "200718", - value = "undeadsign_general.m2", - text = "undeadsign_general.m2", - }, - { - fileId = "200720", - value = "undeadsign_herbalist.m2", - text = "undeadsign_herbalist.m2", - }, - { - fileId = "200722", - value = "undeadsign_inscribing.m2", - text = "undeadsign_inscribing.m2", - }, - { - fileId = "200724", - value = "undeadsign_leatherarmor.m2", - text = "undeadsign_leatherarmor.m2", - }, - { - fileId = "200726", - value = "undeadsign_lockpicking.m2", - text = "undeadsign_lockpicking.m2", - }, - { - fileId = "200728", - value = "undeadsign_maces.m2", - text = "undeadsign_maces.m2", - }, - { - fileId = "200730", - value = "undeadsign_magic.m2", - text = "undeadsign_magic.m2", - }, - { - fileId = "200732", - value = "undeadsign_mailarmor.m2", - text = "undeadsign_mailarmor.m2", - }, - { - fileId = "200734", - value = "undeadsign_meat.m2", - text = "undeadsign_meat.m2", - }, - { - fileId = "200736", - value = "undeadsign_miner.m2", - text = "undeadsign_miner.m2", - }, - { - fileId = "200738", - value = "undeadsign_misc.m2", - text = "undeadsign_misc.m2", - }, - { - fileId = "200740", - value = "undeadsign_poison.m2", - text = "undeadsign_poison.m2", - }, - { - fileId = "200742", - value = "undeadsign_staves.m2", - text = "undeadsign_staves.m2", - }, - { - fileId = "200744", - value = "undeadsign_tabard.m2", - text = "undeadsign_tabard.m2", - }, - { - fileId = "200746", - value = "undeadsign_tailor.m2", - text = "undeadsign_tailor.m2", - }, - { - fileId = "200748", - value = "undeadsign_tavern.m2", - text = "undeadsign_tavern.m2", - }, - { - fileId = "200750", - value = "undeadsign_weapons.m2", - text = "undeadsign_weapons.m2", - }, - { - fileId = "200752", - value = "undeadsign_winery.m2", - text = "undeadsign_winery.m2", - }, - }, - value = "signs", - text = "signs", + fileId = "200282", + text = "battlefieldbannerhordelargebw.m2", + value = "battlefieldbannerhordelargebw.m2", }, { - children = { - { - fileId = "200754", - value = "lordaeron_statue_01.m2", - text = "lordaeron_statue_01.m2", - }, - { - fileId = "200755", - value = "lordaeron_statue_02.m2", - text = "lordaeron_statue_02.m2", - }, - { - fileId = "200756", - value = "lordaeron_statue_03.m2", - text = "lordaeron_statue_03.m2", - }, - }, - value = "statues", - text = "statues", + fileId = "200283", + text = "battlefieldbannerneutral.m2", + value = "battlefieldbannerneutral.m2", }, { - children = { - { - fileId = "200758", - value = "undeadfencepost.m2", - text = "undeadfencepost.m2", - }, - { - fileId = "200761", - value = "undeadstonewroughtironfence.m2", - text = "undeadstonewroughtironfence.m2", - }, - }, - value = "stonefence", - text = "stonefence", + fileId = "200284", + text = "battlefieldbannerneutralflagonly.m2", + value = "battlefieldbannerneutralflagonly.m2", }, { - children = { - { - fileId = "200762", - value = "taxiflagundead.m2", - text = "taxiflagundead.m2", - }, - }, - value = "taxiflags", - text = "taxiflags", + fileId = "200285", + text = "battlefieldbannerneutralpost.m2", + value = "battlefieldbannerneutralpost.m2", }, + }, + text = "battlefieldbanners", + value = "battlefieldbanners", + }, + { + children = { { - children = { - { - fileId = "200767", - value = "undead_alchemy_table.m2", - text = "undead_alchemy_table.m2", - }, - }, - value = "undeadalchemytable", - text = "undeadalchemytable", + fileId = "200293", + text = "collisionwallpvp01.m2", + value = "collisionwallpvp01.m2", }, { - children = { - { - fileId = "200772", - value = "undead_crankwheel.m2", - text = "undead_crankwheel.m2", - }, - }, - value = "undeadcrankwheels", - text = "undeadcrankwheels", + fileId = "200294", + text = "collisionwallpvp01_textured.m2", + value = "collisionwallpvp01_textured.m2", }, { - children = { - { - fileId = "200775", - value = "undead_empty_hook.m2", - text = "undead_empty_hook.m2", - }, - { - fileId = "200777", - value = "undeadhookarm01.m2", - text = "undeadhookarm01.m2", - }, - { - fileId = "200778", - value = "undeadhookbody01.m2", - text = "undeadhookbody01.m2", - }, - { - fileId = "200779", - value = "undeadhookfoot01.m2", - text = "undeadhookfoot01.m2", - }, - { - fileId = "200780", - value = "undeadhookhead01.m2", - text = "undeadhookhead01.m2", - }, - }, - value = "undeadhooks", - text = "undeadhooks", + fileId = "527813", + text = "collisionwallpvp02.m2", + value = "collisionwallpvp02.m2", }, + }, + text = "collisionwall", + value = "collisionwall", + }, + { + children = { { - children = { - { - fileId = "200781", - value = "undead_meter.m2", - text = "undead_meter.m2", - }, - }, - value = "undeadmeter", - text = "undeadmeter", + fileId = "200296", + text = "alliancectfflag.m2", + value = "alliancectfflag.m2", }, { - children = { - { - fileId = "200782", - value = "undead_operation_table.m2", - text = "undead_operation_table.m2", - }, - }, - value = "undeadoperatingtable", - text = "undeadoperatingtable", + fileId = "200299", + text = "hordectfflag.m2", + value = "hordectfflag.m2", }, { - children = { - { - fileId = "200784", - value = "undead_teslacoil.m2", - text = "undead_teslacoil.m2", - }, - }, - value = "undeadtelsacoil", - text = "undeadtelsacoil", + fileId = "200301", + text = "neutralctfflag.m2", + value = "neutralctfflag.m2", }, + }, + text = "ctfflags", + value = "ctfflags", + }, + { + children = { { - children = { - { - fileId = "200786", - value = "undead_tools_table.m2", - text = "undead_tools_table.m2", - }, - }, - value = "undeadtoolstable", - text = "undeadtoolstable", + fileId = "200302", + text = "lowpolyfire.m2", + value = "lowpolyfire.m2", }, { - children = { - { - fileId = "200788", - value = "undead_torch01.m2", - text = "undead_torch01.m2", - }, - { - fileId = "200789", - value = "undead_torch02.m2", - text = "undead_torch02.m2", - }, - }, - value = "undercity torches", - text = "undercity torches", + fileId = "200303", + text = "lowpolyfireanim.m2", + value = "lowpolyfireanim.m2", }, + }, + text = "fires", + value = "fires", + }, + { + children = { { - children = { - { - fileId = "200790", - value = "undeadchandelier01.m2", - text = "undeadchandelier01.m2", - }, - { - fileId = "200791", - value = "undeadchandelier02.m2", - text = "undeadchandelier02.m2", - }, - }, - value = "undercitychandeliers", - text = "undercitychandeliers", + fileId = "200305", + text = "pvp_rune_berserker.m2", + value = "pvp_rune_berserker.m2", }, { - children = { - { - fileId = "200793", - value = "undeadelevator.m2", - text = "undeadelevator.m2", - }, - { - fileId = "200794", - value = "undeadelevatordoor.m2", - text = "undeadelevatordoor.m2", - }, - }, - value = "undercityelevators", - text = "undercityelevators", + fileId = "200307", + text = "pvp_rune_invis.m2", + value = "pvp_rune_invis.m2", }, { - children = { - { - fileId = "200795", - value = "undeadhanginglantern01.m2", - text = "undeadhanginglantern01.m2", - }, - }, - value = "undercitylanterns", - text = "undercitylanterns", + fileId = "200308", + text = "pvp_rune_restoration.m2", + value = "pvp_rune_restoration.m2", }, { - children = { - { - fileId = "200797", - value = "undercitysignpost.m2", - text = "undercitysignpost.m2", - }, - { - fileId = "200798", - value = "undercitysignpostpointer.m2", - text = "undercitysignpostpointer.m2", - }, - }, - value = "undercitysignposts", - text = "undercitysignposts", + fileId = "200309", + text = "pvp_rune_speed.m2", + value = "pvp_rune_speed.m2", }, { - children = { - { - fileId = "200800", - value = "undercityskylight01.m2", - text = "undercityskylight01.m2", - }, - }, - value = "undercityskylight", - text = "undercityskylight", + fileId = "200310", + text = "pvp_rune_speed_icon.m2", + value = "pvp_rune_speed_icon.m2", }, + }, + text = "runes", + value = "runes", + }, + { + children = { { - children = { - { - fileId = "200801", - value = "undercityslimebubbles01.m2", - text = "undercityslimebubbles01.m2", - }, - { - fileId = "200802", - value = "undercityslimebubbles02.m2", - text = "undercityslimebubbles02.m2", - }, - }, - value = "undercityslimebubbles", - text = "undercityslimebubbles", + fileId = "200314", + text = "ud_pvptaunt.m2", + value = "ud_pvptaunt.m2", + }, + }, + text = "upperdeck", + value = "upperdeck", + }, + { + children = { + { + fileId = "200316", + text = "nightelfctfflagplaceglow.m2", + value = "nightelfctfflagplaceglow.m2", }, { - children = { - { - fileId = "200803", - value = "skullspoutsplash.m2", - text = "skullspoutsplash.m2", - }, - { - fileId = "200808", - value = "undercityslimefalls01.m2", - text = "undercityslimefalls01.m2", - }, - }, - value = "undercityslimefalls", - text = "undercityslimefalls", + fileId = "200317", + text = "orcctfflagplaceglow.m2", + value = "orcctfflagplaceglow.m2", + }, + { + fileId = "200319", + text = "warsongctfnightelftoplight.m2", + value = "warsongctfnightelftoplight.m2", + }, + { + fileId = "200320", + text = "warsonggulch_orc_door01.m2", + value = "warsonggulch_orc_door01.m2", }, { children = { { - fileId = "200809", - value = "skullspout01.m2", - text = "skullspout01.m2", + fileId = "200324", + text = "elfwindow.m2", + value = "elfwindow.m2", + }, + { + fileId = "200325", + text = "orcwindow.m2", + value = "orcwindow.m2", }, }, - value = "undercityslimespouts", - text = "undercityslimespouts", + text = "windows", + value = "windows", }, + }, + text = "warsong", + value = "warsong", + }, + }, + text = "pvp", + value = "pvp", + }, + { + children = { + { + children = { { children = { { - fileId = "200816", - value = "undercitymonsterbirth.m2", - text = "undercitymonsterbirth.m2", - }, - { - fileId = "200817", - value = "undercityworm.m2", - text = "undercityworm.m2", + fileId = "200328", + text = "razorfenforcefield01.m2", + value = "razorfenforcefield01.m2", }, }, - value = "undercityworm", - text = "undercityworm", + text = "doors", + value = "doors", }, }, - value = "passive doodads", - text = "passive doodads", + text = "activedoodads", + value = "activedoodads", }, }, - value = "undead", - text = "undead", + text = "quilboar", + value = "quilboar", }, { children = { @@ -73069,1088 +61375,1088 @@ WeakAuras.ModelPaths = { children = { { fileId = "200819", - value = "plant01.m2", text = "plant01.m2", + value = "plant01.m2", }, { fileId = "200820", - value = "plant02.m2", text = "plant02.m2", + value = "plant02.m2", }, { fileId = "200821", - value = "plant03.m2", text = "plant03.m2", + value = "plant03.m2", }, { fileId = "200822", - value = "plant04.m2", text = "plant04.m2", + value = "plant04.m2", }, { fileId = "200823", - value = "plant05.m2", text = "plant05.m2", + value = "plant05.m2", }, { fileId = "200824", - value = "plant06.m2", text = "plant06.m2", + value = "plant06.m2", }, { fileId = "200825", - value = "plant07.m2", text = "plant07.m2", + value = "plant07.m2", }, { fileId = "200826", - value = "plant08.m2", text = "plant08.m2", + value = "plant08.m2", }, { fileId = "200827", - value = "plant09.m2", text = "plant09.m2", + value = "plant09.m2", }, { fileId = "200828", - value = "plant10.m2", text = "plant10.m2", + value = "plant10.m2", }, { fileId = "200829", - value = "seaweed01.m2", text = "seaweed01.m2", + value = "seaweed01.m2", }, { fileId = "200830", - value = "seaweed02.m2", text = "seaweed02.m2", + value = "seaweed02.m2", }, }, - value = "plants", text = "plants", + value = "plants", }, { children = { { fileId = "200833", - value = "underwaterrock01.m2", text = "underwaterrock01.m2", + value = "underwaterrock01.m2", }, { fileId = "200834", - value = "underwaterrock02.m2", text = "underwaterrock02.m2", + value = "underwaterrock02.m2", }, { fileId = "200835", - value = "underwaterrock03.m2", text = "underwaterrock03.m2", + value = "underwaterrock03.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "200836", - value = "genericseaweed01.m2", text = "genericseaweed01.m2", + value = "genericseaweed01.m2", }, { fileId = "200837", - value = "genericseaweed02.m2", text = "genericseaweed02.m2", + value = "genericseaweed02.m2", }, { fileId = "200838", - value = "genericseaweed03.m2", text = "genericseaweed03.m2", + value = "genericseaweed03.m2", }, { fileId = "200839", - value = "genericseaweed04.m2", text = "genericseaweed04.m2", + value = "genericseaweed04.m2", }, { fileId = "200840", - value = "genericseaweed05.m2", text = "genericseaweed05.m2", + value = "genericseaweed05.m2", }, { fileId = "200841", - value = "genericseaweed06.m2", text = "genericseaweed06.m2", + value = "genericseaweed06.m2", }, { fileId = "200842", - value = "genericseaweed07.m2", text = "genericseaweed07.m2", + value = "genericseaweed07.m2", }, { fileId = "200843", - value = "genericseaweed08.m2", text = "genericseaweed08.m2", + value = "genericseaweed08.m2", }, { fileId = "200844", - value = "genericseaweed09.m2", text = "genericseaweed09.m2", + value = "genericseaweed09.m2", }, { fileId = "200845", - value = "genericseaweed10.m2", text = "genericseaweed10.m2", + value = "genericseaweed10.m2", }, { fileId = "200846", - value = "genericseaweed11.m2", text = "genericseaweed11.m2", + value = "genericseaweed11.m2", }, { fileId = "200847", - value = "genericseaweed12.m2", text = "genericseaweed12.m2", + value = "genericseaweed12.m2", }, { fileId = "200848", - value = "genericseaweed13.m2", text = "genericseaweed13.m2", + value = "genericseaweed13.m2", }, { fileId = "200849", - value = "genericseaweed14.m2", text = "genericseaweed14.m2", + value = "genericseaweed14.m2", }, }, - value = "seaweed", text = "seaweed", + value = "seaweed", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "underwater", text = "underwater", + value = "underwater", }, { children = { { fileId = "803615", - value = "darkportal_temple_tcg_reward.m2", text = "darkportal_temple_tcg_reward.m2", + value = "darkportal_temple_tcg_reward.m2", }, { fileId = "244266", - value = "ud_confetti_01.m2", text = "ud_confetti_01.m2", + value = "ud_confetti_01.m2", }, }, - value = "upperdeck", text = "upperdeck", + value = "upperdeck", }, }, - value = "generic", text = "generic", + value = "generic", }, { children = { { fileId = "200862", - value = "darkironkegshotgun.m2", text = "darkironkegshotgun.m2", + value = "darkironkegshotgun.m2", }, { fileId = "200877", - value = "g_alchemyset01.m2", text = "g_alchemyset01.m2", + value = "g_alchemyset01.m2", }, { fileId = "200878", - value = "g_altarofsouls.m2", text = "g_altarofsouls.m2", + value = "g_altarofsouls.m2", }, { fileId = "200879", - value = "g_applebob_01.m2", text = "g_applebob_01.m2", + value = "g_applebob_01.m2", }, { fileId = "200884", - value = "g_barrel.m2", text = "g_barrel.m2", + value = "g_barrel.m2", }, { fileId = "200886", - value = "g_barrelexplode.m2", text = "g_barrelexplode.m2", + value = "g_barrelexplode.m2", }, { fileId = "200888", - value = "g_barrelred.m2", text = "g_barrelred.m2", + value = "g_barrelred.m2", }, { fileId = "200891", - value = "g_bellship.m2", text = "g_bellship.m2", + value = "g_bellship.m2", }, { fileId = "200893", - value = "g_blanket.m2", text = "g_blanket.m2", + value = "g_blanket.m2", }, { fileId = "200894", - value = "g_blanketgrill.m2", text = "g_blanketgrill.m2", + value = "g_blanketgrill.m2", }, { fileId = "200895", - value = "g_blanketumbrella.m2", text = "g_blanketumbrella.m2", + value = "g_blanketumbrella.m2", }, { fileId = "200896", - value = "g_bloodcauldron.m2", text = "g_bloodcauldron.m2", + value = "g_bloodcauldron.m2", }, { fileId = "200897", - value = "g_bombfactory.m2", text = "g_bombfactory.m2", + value = "g_bombfactory.m2", }, { fileId = "200898", - value = "g_bombwagon.m2", text = "g_bombwagon.m2", + value = "g_bombwagon.m2", }, { fileId = "200899", - value = "g_bonfire.m2", text = "g_bonfire.m2", + value = "g_bonfire.m2", }, { fileId = "200900", - value = "g_book01.m2", text = "g_book01.m2", + value = "g_book01.m2", }, { fileId = "200901", - value = "g_book01_black.m2", text = "g_book01_black.m2", + value = "g_book01_black.m2", }, { fileId = "200902", - value = "g_book01_blue.m2", text = "g_book01_blue.m2", + value = "g_book01_blue.m2", }, { fileId = "200903", - value = "g_book01_brown.m2", text = "g_book01_brown.m2", + value = "g_book01_brown.m2", }, { fileId = "200904", - value = "g_book01_green.m2", text = "g_book01_green.m2", + value = "g_book01_green.m2", }, { fileId = "200905", - value = "g_book01_red.m2", text = "g_book01_red.m2", + value = "g_book01_red.m2", }, { fileId = "200908", - value = "g_bookopenmedium06.m2", text = "g_bookopenmedium06.m2", + value = "g_bookopenmedium06.m2", }, { fileId = "200909", - value = "g_bookopenmedium07.m2", text = "g_bookopenmedium07.m2", + value = "g_bookopenmedium07.m2", }, { fileId = "200910", - value = "g_bookopenmediumblack.m2", text = "g_bookopenmediumblack.m2", + value = "g_bookopenmediumblack.m2", }, { fileId = "200911", - value = "g_bookopenmediumblue.m2", text = "g_bookopenmediumblue.m2", + value = "g_bookopenmediumblue.m2", }, { fileId = "200912", - value = "g_bookopenmediumbrown.m2", text = "g_bookopenmediumbrown.m2", + value = "g_bookopenmediumbrown.m2", }, { fileId = "200913", - value = "g_bookopenmediumgreen.m2", text = "g_bookopenmediumgreen.m2", + value = "g_bookopenmediumgreen.m2", }, { fileId = "200914", - value = "g_bookopenmediumred.m2", text = "g_bookopenmediumred.m2", + value = "g_bookopenmediumred.m2", }, { fileId = "200916", - value = "g_booktraparm.m2", text = "g_booktraparm.m2", + value = "g_booktraparm.m2", }, { fileId = "200918", - value = "g_booktrapeye.m2", text = "g_booktrapeye.m2", + value = "g_booktrapeye.m2", }, { fileId = "200920", - value = "g_booktrapfire.m2", text = "g_booktrapfire.m2", + value = "g_booktrapfire.m2", }, { fileId = "200922", - value = "g_booktraplightevil.m2", text = "g_booktraplightevil.m2", + value = "g_booktraplightevil.m2", }, { fileId = "200924", - value = "g_booktraplightgood.m2", text = "g_booktraplightgood.m2", + value = "g_booktraplightgood.m2", }, { fileId = "200925", - value = "g_brazier01.m2", text = "g_brazier01.m2", + value = "g_brazier01.m2", }, { fileId = "200927", - value = "g_brazierorcblue.m2", text = "g_brazierorcblue.m2", + value = "g_brazierorcblue.m2", }, { fileId = "200929", - value = "g_brazierorcgreen.m2", text = "g_brazierorcgreen.m2", + value = "g_brazierorcgreen.m2", }, { fileId = "200930", - value = "g_brazierorcpurple.m2", text = "g_brazierorcpurple.m2", + value = "g_brazierorcpurple.m2", }, { fileId = "200932", - value = "g_brazierorcred.m2", text = "g_brazierorcred.m2", + value = "g_brazierorcred.m2", }, { fileId = "200934", - value = "g_braziertroll.m2", text = "g_braziertroll.m2", + value = "g_braziertroll.m2", }, { fileId = "200936", - value = "g_buttonbigred.m2", text = "g_buttonbigred.m2", + value = "g_buttonbigred.m2", }, { fileId = "200937", - value = "g_cage.m2", text = "g_cage.m2", + value = "g_cage.m2", }, { fileId = "200938", - value = "g_cage02.m2", text = "g_cage02.m2", + value = "g_cage02.m2", }, { fileId = "200939", - value = "g_cage03.m2", text = "g_cage03.m2", + value = "g_cage03.m2", }, { fileId = "200940", - value = "g_cagebase.m2", text = "g_cagebase.m2", + value = "g_cagebase.m2", }, { fileId = "200941", - value = "g_cagedoorbamboo.m2", text = "g_cagedoorbamboo.m2", + value = "g_cagedoorbamboo.m2", }, { fileId = "200943", - value = "g_camerashake01.m2", text = "g_camerashake01.m2", + value = "g_camerashake01.m2", }, { fileId = "200944", - value = "g_camerashake02.m2", text = "g_camerashake02.m2", + value = "g_camerashake02.m2", }, { fileId = "200945", - value = "g_camerashake03.m2", text = "g_camerashake03.m2", + value = "g_camerashake03.m2", }, { fileId = "200946", - value = "g_candybucket_01.m2", text = "g_candybucket_01.m2", + value = "g_candybucket_01.m2", }, { fileId = "200947", - value = "g_cannon01.m2", text = "g_cannon01.m2", + value = "g_cannon01.m2", }, { fileId = "200950", - value = "g_cavein.m2", text = "g_cavein.m2", + value = "g_cavein.m2", }, { fileId = "200952", - value = "g_chestahnqiraj.m2", text = "g_chestahnqiraj.m2", + value = "g_chestahnqiraj.m2", }, { fileId = "200953", - value = "g_chesttitan.m2", text = "g_chesttitan.m2", + value = "g_chesttitan.m2", }, { fileId = "200954", - value = "g_conjuretable.m2", text = "g_conjuretable.m2", + value = "g_conjuretable.m2", }, { fileId = "200956", - value = "g_controlconsoletonk.m2", text = "g_controlconsoletonk.m2", + value = "g_controlconsoletonk.m2", }, { fileId = "200958", - value = "g_controlconsolezippelin.m2", text = "g_controlconsolezippelin.m2", + value = "g_controlconsolezippelin.m2", }, { fileId = "200960", - value = "g_crate01.m2", text = "g_crate01.m2", + value = "g_crate01.m2", }, { fileId = "200961", - value = "g_crate02.m2", text = "g_crate02.m2", + value = "g_crate02.m2", }, { fileId = "200963", - value = "g_crateanimal.m2", text = "g_crateanimal.m2", + value = "g_crateanimal.m2", }, { fileId = "200964", - value = "g_dragoneggblack.m2", text = "g_dragoneggblack.m2", + value = "g_dragoneggblack.m2", }, { fileId = "200966", - value = "g_dragoneggchromatic.m2", text = "g_dragoneggchromatic.m2", + value = "g_dragoneggchromatic.m2", }, { fileId = "200967", - value = "g_dragoneggfreeze.m2", text = "g_dragoneggfreeze.m2", + value = "g_dragoneggfreeze.m2", }, { fileId = "200968", - value = "g_dragoneggfreezechromatic.m2", text = "g_dragoneggfreezechromatic.m2", + value = "g_dragoneggfreezechromatic.m2", }, { fileId = "200969", - value = "g_dragoneggprismatic01.m2", text = "g_dragoneggprismatic01.m2", + value = "g_dragoneggprismatic01.m2", }, { fileId = "200971", - value = "g_dwarvenmemorial.m2", text = "g_dwarvenmemorial.m2", + value = "g_dwarvenmemorial.m2", }, { fileId = "200973", - value = "g_eggalien.m2", text = "g_eggalien.m2", + value = "g_eggalien.m2", }, { fileId = "200974", - value = "g_eggspider.m2", text = "g_eggspider.m2", + value = "g_eggspider.m2", }, { fileId = "200976", - value = "g_epicbrazierblue.m2", text = "g_epicbrazierblue.m2", + value = "g_epicbrazierblue.m2", }, { fileId = "200977", - value = "g_epicbrazieryellow.m2", text = "g_epicbrazieryellow.m2", + value = "g_epicbrazieryellow.m2", }, { fileId = "200979", - value = "g_essencedistiller.m2", text = "g_essencedistiller.m2", + value = "g_essencedistiller.m2", }, { fileId = "200980", - value = "g_explodingballista.m2", text = "g_explodingballista.m2", + value = "g_explodingballista.m2", }, { fileId = "200981", - value = "g_explosivetrap.m2", text = "g_explosivetrap.m2", + value = "g_explosivetrap.m2", }, { fileId = "200982", - value = "g_firework01blue.m2", text = "g_firework01blue.m2", + value = "g_firework01blue.m2", }, { fileId = "200983", - value = "g_firework01green.m2", text = "g_firework01green.m2", + value = "g_firework01green.m2", }, { fileId = "200984", - value = "g_firework01purple.m2", text = "g_firework01purple.m2", + value = "g_firework01purple.m2", }, { fileId = "200985", - value = "g_firework01red.m2", text = "g_firework01red.m2", + value = "g_firework01red.m2", }, { fileId = "200986", - value = "g_firework01white.m2", text = "g_firework01white.m2", + value = "g_firework01white.m2", }, { fileId = "200987", - value = "g_firework01yellow.m2", text = "g_firework01yellow.m2", + value = "g_firework01yellow.m2", }, { fileId = "200988", - value = "g_firework02blue.m2", text = "g_firework02blue.m2", + value = "g_firework02blue.m2", }, { fileId = "200989", - value = "g_firework02green.m2", text = "g_firework02green.m2", + value = "g_firework02green.m2", }, { fileId = "200990", - value = "g_firework02purple.m2", text = "g_firework02purple.m2", + value = "g_firework02purple.m2", }, { fileId = "200991", - value = "g_firework02red.m2", text = "g_firework02red.m2", + value = "g_firework02red.m2", }, { fileId = "200992", - value = "g_firework02white.m2", text = "g_firework02white.m2", + value = "g_firework02white.m2", }, { fileId = "200993", - value = "g_firework02yellow.m2", text = "g_firework02yellow.m2", + value = "g_firework02yellow.m2", }, { fileId = "200994", - value = "g_firework03red.m2", text = "g_firework03red.m2", + value = "g_firework03red.m2", }, { fileId = "200995", - value = "g_fireworklauncher01.m2", text = "g_fireworklauncher01.m2", + value = "g_fireworklauncher01.m2", }, { fileId = "200996", - value = "g_fireworklauncher02.m2", text = "g_fireworklauncher02.m2", + value = "g_fireworklauncher02.m2", }, { fileId = "200998", - value = "g_fireworktwirlysmall01gold.m2", text = "g_fireworktwirlysmall01gold.m2", + value = "g_fireworktwirlysmall01gold.m2", }, { fileId = "201000", - value = "g_fishingbobber.m2", text = "g_fishingbobber.m2", + value = "g_fishingbobber.m2", }, { fileId = "201001", - value = "g_fissure.m2", text = "g_fissure.m2", + value = "g_fissure.m2", }, { fileId = "201004", - value = "g_flarealliance.m2", text = "g_flarealliance.m2", + value = "g_flarealliance.m2", }, { fileId = "201005", - value = "g_flarehorde.m2", text = "g_flarehorde.m2", + value = "g_flarehorde.m2", }, { fileId = "201006", - value = "g_flyingmachine.m2", text = "g_flyingmachine.m2", + value = "g_flyingmachine.m2", }, { fileId = "201007", - value = "g_foggerpoison.m2", text = "g_foggerpoison.m2", + value = "g_foggerpoison.m2", }, { fileId = "201008", - value = "g_freezingtrap.m2", text = "g_freezingtrap.m2", + value = "g_freezingtrap.m2", }, { fileId = "201009", - value = "g_frosttrap.m2", text = "g_frosttrap.m2", + value = "g_frosttrap.m2", }, { fileId = "201011", - value = "g_gastrap.m2", text = "g_gastrap.m2", + value = "g_gastrap.m2", }, { fileId = "201012", - value = "g_ghost_01.m2", text = "g_ghost_01.m2", + value = "g_ghost_01.m2", }, { fileId = "201014", - value = "g_ghosttrap.m2", text = "g_ghosttrap.m2", + value = "g_ghosttrap.m2", }, { fileId = "201015", - value = "g_ghosttrapchest.m2", text = "g_ghosttrapchest.m2", + value = "g_ghosttrapchest.m2", }, { fileId = "201018", - value = "g_gnomemultibox.m2", text = "g_gnomemultibox.m2", + value = "g_gnomemultibox.m2", }, { fileId = "201020", - value = "g_gnomesparklematic.m2", text = "g_gnomesparklematic.m2", + value = "g_gnomesparklematic.m2", }, { fileId = "201022", - value = "g_gnometerminal.m2", text = "g_gnometerminal.m2", + value = "g_gnometerminal.m2", }, { fileId = "201023", - value = "g_gnometerminal_collision.m2", text = "g_gnometerminal_collision.m2", + value = "g_gnometerminal_collision.m2", }, { fileId = "201026", - value = "g_goblinteleporter.m2", text = "g_goblinteleporter.m2", + value = "g_goblinteleporter.m2", }, { fileId = "201028", - value = "g_gongrfd.m2", text = "g_gongrfd.m2", + value = "g_gongrfd.m2", }, { fileId = "201029", - value = "g_gongtroll01.m2", text = "g_gongtroll01.m2", + value = "g_gongtroll01.m2", }, { fileId = "201030", - value = "g_graveburst.m2", text = "g_graveburst.m2", + value = "g_graveburst.m2", }, { fileId = "201032", - value = "g_gravebursttanaris.m2", text = "g_gravebursttanaris.m2", + value = "g_gravebursttanaris.m2", }, { fileId = "201033", - value = "g_hangingskeleton_01.m2", text = "g_hangingskeleton_01.m2", + value = "g_hangingskeleton_01.m2", }, { fileId = "201039", - value = "g_hologrambasetanaris.m2", text = "g_hologrambasetanaris.m2", + value = "g_hologrambasetanaris.m2", }, { fileId = "201041", - value = "g_hologramdwarf.m2", text = "g_hologramdwarf.m2", + value = "g_hologramdwarf.m2", }, { fileId = "201045", - value = "g_hologramtrogg.m2", text = "g_hologramtrogg.m2", + value = "g_hologramtrogg.m2", }, { fileId = "201046", - value = "g_holylightwell.m2", text = "g_holylightwell.m2", + value = "g_holylightwell.m2", }, { fileId = "201047", - value = "g_iceblock.m2", text = "g_iceblock.m2", + value = "g_iceblock.m2", }, { fileId = "201048", - value = "g_icespike_impact.m2", text = "g_icespike_impact.m2", + value = "g_icespike_impact.m2", }, { fileId = "201049", - value = "g_immolationtrap.m2", text = "g_immolationtrap.m2", + value = "g_immolationtrap.m2", }, { fileId = "201051", - value = "g_impbottle.m2", text = "g_impbottle.m2", + value = "g_impbottle.m2", }, { fileId = "201053", - value = "g_jewelblack.m2", text = "g_jewelblack.m2", + value = "g_jewelblack.m2", }, { fileId = "201054", - value = "g_jewelblue.m2", text = "g_jewelblue.m2", + value = "g_jewelblue.m2", }, { fileId = "201056", - value = "g_jewelred.m2", text = "g_jewelred.m2", + value = "g_jewelred.m2", }, { fileId = "201058", - value = "g_keg.m2", text = "g_keg.m2", + value = "g_keg.m2", }, { fileId = "201060", - value = "g_kruskspear.m2", text = "g_kruskspear.m2", + value = "g_kruskspear.m2", }, { fileId = "201061", - value = "g_levermetal.m2", text = "g_levermetal.m2", + value = "g_levermetal.m2", }, { fileId = "201062", - value = "g_manarift.m2", text = "g_manarift.m2", + value = "g_manarift.m2", }, { fileId = "201067", - value = "g_mausoleumseal.m2", text = "g_mausoleumseal.m2", + value = "g_mausoleumseal.m2", }, { fileId = "201070", - value = "g_mausoleumsealtrigger.m2", text = "g_mausoleumsealtrigger.m2", + value = "g_mausoleumsealtrigger.m2", }, { fileId = "201072", - value = "g_minecar.m2", text = "g_minecar.m2", + value = "g_minecar.m2", }, { fileId = "201073", - value = "g_mortar.m2", text = "g_mortar.m2", + value = "g_mortar.m2", }, { fileId = "201075", - value = "g_mummytroll.m2", text = "g_mummytroll.m2", + value = "g_mummytroll.m2", }, { fileId = "201076", - value = "g_nagashellmissile.m2", text = "g_nagashellmissile.m2", + value = "g_nagashellmissile.m2", }, { fileId = "201077", - value = "g_necropolis.m2", text = "g_necropolis.m2", + value = "g_necropolis.m2", }, { fileId = "201080", - value = "g_netablet.m2", text = "g_netablet.m2", + value = "g_netablet.m2", }, { fileId = "201085", - value = "g_promotion_purple.m2", text = "g_promotion_purple.m2", + value = "g_promotion_purple.m2", }, { fileId = "201087", - value = "g_pulsatingplant.m2", text = "g_pulsatingplant.m2", + value = "g_pulsatingplant.m2", }, { fileId = "201088", - value = "g_pumpkin_01.m2", text = "g_pumpkin_01.m2", + value = "g_pumpkin_01.m2", }, { fileId = "201089", - value = "g_pumpkin_02.m2", text = "g_pumpkin_02.m2", + value = "g_pumpkin_02.m2", }, { fileId = "201090", - value = "g_pumpkin_03.m2", text = "g_pumpkin_03.m2", + value = "g_pumpkin_03.m2", }, { fileId = "201092", - value = "g_relicnecat.m2", text = "g_relicnecat.m2", + value = "g_relicnecat.m2", }, { fileId = "201093", - value = "g_relicnecup.m2", text = "g_relicnecup.m2", + value = "g_relicnecup.m2", }, { fileId = "201094", - value = "g_relicnefigurine.m2", text = "g_relicnefigurine.m2", + value = "g_relicnefigurine.m2", }, { fileId = "201095", - value = "g_relicnesphere.m2", text = "g_relicnesphere.m2", + value = "g_relicnesphere.m2", }, { fileId = "201097", - value = "g_ritualofdoom.m2", text = "g_ritualofdoom.m2", + value = "g_ritualofdoom.m2", }, { fileId = "201098", - value = "g_ritualofsouls.m2", text = "g_ritualofsouls.m2", + value = "g_ritualofsouls.m2", }, { fileId = "201099", - value = "g_ritualofsouls_blue.m2", text = "g_ritualofsouls_blue.m2", + value = "g_ritualofsouls_blue.m2", }, { fileId = "201101", - value = "g_runeblue01.m2", text = "g_runeblue01.m2", + value = "g_runeblue01.m2", }, { fileId = "201103", - value = "g_runegroundblue01.m2", text = "g_runegroundblue01.m2", + value = "g_runegroundblue01.m2", }, { fileId = "201104", - value = "g_runegroundgreen01.m2", text = "g_runegroundgreen01.m2", + value = "g_runegroundgreen01.m2", }, { fileId = "201105", - value = "g_runegroundgreen01b.m2", text = "g_runegroundgreen01b.m2", + value = "g_runegroundgreen01b.m2", }, { fileId = "201106", - value = "g_runegroundpurple01.m2", text = "g_runegroundpurple01.m2", + value = "g_runegroundpurple01.m2", }, { fileId = "201111", - value = "g_scourgerunecirclecrystal.m2", text = "g_scourgerunecirclecrystal.m2", + value = "g_scourgerunecirclecrystal.m2", }, { fileId = "201113", - value = "g_scroll01.m2", text = "g_scroll01.m2", + value = "g_scroll01.m2", }, { fileId = "201115", - value = "g_scryingbowl.m2", text = "g_scryingbowl.m2", + value = "g_scryingbowl.m2", }, { fileId = "201117", - value = "g_snaketrap.m2", text = "g_snaketrap.m2", + value = "g_snaketrap.m2", }, { fileId = "201118", - value = "g_soundobject.m2", text = "g_soundobject.m2", + value = "g_soundobject.m2", }, { fileId = "201119", - value = "g_soundportal.m2", text = "g_soundportal.m2", + value = "g_soundportal.m2", }, { fileId = "201121", - value = "g_spiketrap.m2", text = "g_spiketrap.m2", + value = "g_spiketrap.m2", }, { fileId = "201122", - value = "g_spirittotem.m2", text = "g_spirittotem.m2", + value = "g_spirittotem.m2", }, { fileId = "201124", - value = "g_sporemushroom.m2", text = "g_sporemushroom.m2", + value = "g_sporemushroom.m2", }, { fileId = "201125", - value = "g_stonesofbinding.m2", text = "g_stonesofbinding.m2", + value = "g_stonesofbinding.m2", }, { fileId = "201127", - value = "g_tentburninator.m2", text = "g_tentburninator.m2", + value = "g_tentburninator.m2", }, { fileId = "201129", - value = "g_torch01.m2", text = "g_torch01.m2", + value = "g_torch01.m2", }, { fileId = "201130", - value = "g_torchlever.m2", text = "g_torchlever.m2", + value = "g_torchlever.m2", }, { fileId = "201132", - value = "g_trapcannonfloor.m2", text = "g_trapcannonfloor.m2", + value = "g_trapcannonfloor.m2", }, { fileId = "201133", - value = "g_uldamanmap.m2", text = "g_uldamanmap.m2", + value = "g_uldamanmap.m2", }, { fileId = "201136", - value = "g_voodootrollforcefield.m2", text = "g_voodootrollforcefield.m2", + value = "g_voodootrollforcefield.m2", }, { fileId = "201137", - value = "g_water_barrel_01.m2", text = "g_water_barrel_01.m2", + value = "g_water_barrel_01.m2", }, { fileId = "201138", - value = "g_water_buckets_01.m2", text = "g_water_buckets_01.m2", + value = "g_water_buckets_01.m2", }, { fileId = "201139", - value = "g_water_buckets_02.m2", text = "g_water_buckets_02.m2", + value = "g_water_buckets_02.m2", }, { fileId = "201140", - value = "g_water_buckets_03.m2", text = "g_water_buckets_03.m2", + value = "g_water_buckets_03.m2", }, { fileId = "201142", - value = "g_watermelon.m2", text = "g_watermelon.m2", + value = "g_watermelon.m2", }, { fileId = "201143", - value = "g_wellofsouls_channeling.m2", text = "g_wellofsouls_channeling.m2", + value = "g_wellofsouls_channeling.m2", }, { fileId = "201144", - value = "g_witchbroom_01.m2", text = "g_witchbroom_01.m2", + value = "g_witchbroom_01.m2", }, { fileId = "201145", - value = "g_witchhat_01.m2", text = "g_witchhat_01.m2", + value = "g_witchhat_01.m2", }, { fileId = "201146", - value = "g_xmastree.m2", text = "g_xmastree.m2", + value = "g_xmastree.m2", }, { fileId = "201149", - value = "goblin_lottery.m2", text = "goblin_lottery.m2", + value = "goblin_lottery.m2", }, { fileId = "201156", - value = "landminealteracvalley.m2", text = "landminealteracvalley.m2", + value = "landminealteracvalley.m2", }, { fileId = "201182", - value = "ud_discoball.m2", text = "ud_discoball.m2", + value = "ud_discoball.m2", }, }, - value = "goober", text = "goober", + value = "goober", }, { children = { @@ -74162,16 +62468,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "201190", - value = "ashenvalemannarothspear.m2", text = "ashenvalemannarothspear.m2", + value = "ashenvalemannarothspear.m2", }, }, - value = "mannarothspear", text = "mannarothspear", + value = "mannarothspear", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -74179,288 +62485,288 @@ WeakAuras.ModelPaths = { children = { { fileId = "201195", - value = "ashenvalerock01.m2", text = "ashenvalerock01.m2", + value = "ashenvalerock01.m2", }, { fileId = "201196", - value = "ashenvalerock02.m2", text = "ashenvalerock02.m2", + value = "ashenvalerock02.m2", }, { fileId = "201197", - value = "ashenvalerock03.m2", text = "ashenvalerock03.m2", + value = "ashenvalerock03.m2", }, { fileId = "201198", - value = "ashenvalerock04.m2", text = "ashenvalerock04.m2", + value = "ashenvalerock04.m2", }, }, - value = "ashenvalerocks", text = "ashenvalerocks", + value = "ashenvalerocks", }, { children = { { fileId = "201201", - value = "ashenvaleroots01.m2", text = "ashenvaleroots01.m2", + value = "ashenvaleroots01.m2", }, { fileId = "201202", - value = "ashenvaleroots02.m2", text = "ashenvaleroots02.m2", + value = "ashenvaleroots02.m2", }, { fileId = "201203", - value = "ashenvaleroots03.m2", text = "ashenvaleroots03.m2", + value = "ashenvaleroots03.m2", }, { fileId = "201204", - value = "ashenvaleroots04.m2", text = "ashenvaleroots04.m2", + value = "ashenvaleroots04.m2", }, }, - value = "ashenvaleroots", text = "ashenvaleroots", + value = "ashenvaleroots", }, { children = { { fileId = "201208", - value = "ashenvalestump01.m2", text = "ashenvalestump01.m2", + value = "ashenvalestump01.m2", }, { fileId = "201209", - value = "ashenvalestump02.m2", text = "ashenvalestump02.m2", + value = "ashenvalestump02.m2", }, { fileId = "201211", - value = "ashenvaletreestump01.m2", text = "ashenvaletreestump01.m2", + value = "ashenvaletreestump01.m2", }, { fileId = "201212", - value = "ashenvaletreestump02.m2", text = "ashenvaletreestump02.m2", + value = "ashenvaletreestump02.m2", }, { fileId = "201213", - value = "ashenvaletreestump03.m2", text = "ashenvaletreestump03.m2", + value = "ashenvaletreestump03.m2", }, { fileId = "201214", - value = "ashenvaletreestump04.m2", text = "ashenvaletreestump04.m2", + value = "ashenvaletreestump04.m2", }, }, - value = "ashenvalestumps", text = "ashenvalestumps", + value = "ashenvalestumps", }, { children = { { fileId = "201217", - value = "ashenvaletreelog01.m2", text = "ashenvaletreelog01.m2", + value = "ashenvaletreelog01.m2", }, { fileId = "201218", - value = "ashenvaletreelog02.m2", text = "ashenvaletreelog02.m2", + value = "ashenvaletreelog02.m2", }, }, - value = "ashenvaletreelogs", text = "ashenvaletreelogs", + value = "ashenvaletreelogs", }, { children = { { fileId = "201221", - value = "ashenvalecuttree01.m2", text = "ashenvalecuttree01.m2", + value = "ashenvalecuttree01.m2", }, { fileId = "201222", - value = "ashenvalecuttree02.m2", text = "ashenvalecuttree02.m2", + value = "ashenvalecuttree02.m2", }, { fileId = "201223", - value = "ashenvaletree01.m2", text = "ashenvaletree01.m2", + value = "ashenvaletree01.m2", }, { fileId = "201224", - value = "ashenvaletree02.m2", text = "ashenvaletree02.m2", + value = "ashenvaletree02.m2", }, { fileId = "201226", - value = "ashenvaletree03.m2", text = "ashenvaletree03.m2", + value = "ashenvaletree03.m2", }, { fileId = "201228", - value = "ashenvaletree04.m2", text = "ashenvaletree04.m2", + value = "ashenvaletree04.m2", }, { fileId = "201230", - value = "ashenvaletree05.m2", text = "ashenvaletree05.m2", + value = "ashenvaletree05.m2", }, }, - value = "ashenvaletrees", text = "ashenvaletrees", + value = "ashenvaletrees", }, { children = { { fileId = "201233", - value = "ashenvaleplantstardust.m2", text = "ashenvaleplantstardust.m2", + value = "ashenvaleplantstardust.m2", }, }, - value = "bush", text = "bush", + value = "bush", }, { children = { { fileId = "201235", - value = "ruinssatyraltpillar01.m2", text = "ruinssatyraltpillar01.m2", + value = "ruinssatyraltpillar01.m2", }, { fileId = "201236", - value = "ruinssatyrarch.m2", text = "ruinssatyrarch.m2", + value = "ruinssatyrarch.m2", }, { fileId = "201238", - value = "ruinssatyrpillar01.m2", text = "ruinssatyrpillar01.m2", + value = "ruinssatyrpillar01.m2", }, { fileId = "201240", - value = "ruinssatyrpillar02.m2", text = "ruinssatyrpillar02.m2", + value = "ruinssatyrpillar02.m2", }, { fileId = "201241", - value = "ruinssatyrpillar03.m2", text = "ruinssatyrpillar03.m2", + value = "ruinssatyrpillar03.m2", }, { fileId = "201246", - value = "ruinssatyrwall01.m2", text = "ruinssatyrwall01.m2", + value = "ruinssatyrwall01.m2", }, { fileId = "201247", - value = "ruinssatyrwall02.m2", text = "ruinssatyrwall02.m2", + value = "ruinssatyrwall02.m2", }, { fileId = "201248", - value = "ruinssatyrwall03.m2", text = "ruinssatyrwall03.m2", + value = "ruinssatyrwall03.m2", }, { fileId = "201249", - value = "ruinssatyrwall04.m2", text = "ruinssatyrwall04.m2", + value = "ruinssatyrwall04.m2", }, { fileId = "201250", - value = "ruinssatyrwall05.m2", text = "ruinssatyrwall05.m2", + value = "ruinssatyrwall05.m2", }, { fileId = "201251", - value = "ruinssatyrwall06.m2", text = "ruinssatyrwall06.m2", + value = "ruinssatyrwall06.m2", }, }, - value = "satyrruins", text = "satyrruins", + value = "satyrruins", }, { children = { { fileId = "201252", - value = "ashensatyrtotem01.m2", text = "ashensatyrtotem01.m2", + value = "ashensatyrtotem01.m2", }, { fileId = "201253", - value = "ashensatyrtotem02.m2", text = "ashensatyrtotem02.m2", + value = "ashensatyrtotem02.m2", }, { fileId = "201254", - value = "ashensatyrtotem03.m2", text = "ashensatyrtotem03.m2", + value = "ashensatyrtotem03.m2", }, { fileId = "201255", - value = "ashensatyrtotem04.m2", text = "ashensatyrtotem04.m2", + value = "ashensatyrtotem04.m2", }, { fileId = "201256", - value = "ashensatyrtotem05.m2", text = "ashensatyrtotem05.m2", + value = "ashensatyrtotem05.m2", }, }, - value = "satyrtotem", text = "satyrtotem", + value = "satyrtotem", }, { children = { { fileId = "201263", - value = "corruptdryadshrine01.m2", text = "corruptdryadshrine01.m2", + value = "corruptdryadshrine01.m2", }, { fileId = "201264", - value = "dryadshrine01.m2", text = "dryadshrine01.m2", + value = "dryadshrine01.m2", }, { fileId = "201265", - value = "dryadshrine02.m2", text = "dryadshrine02.m2", + value = "dryadshrine02.m2", }, { fileId = "201267", - value = "neshrine.m2", text = "neshrine.m2", + value = "neshrine.m2", }, { fileId = "201269", - value = "neshrinesatyr.m2", text = "neshrinesatyr.m2", + value = "neshrinesatyr.m2", }, }, - value = "shrines", text = "shrines", + value = "shrines", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "ashenvale", text = "ashenvale", + value = "ashenvale", }, { children = { @@ -74470,42 +62776,42 @@ WeakAuras.ModelPaths = { children = { { fileId = "201271", - value = "arcanecrystal.m2", text = "arcanecrystal.m2", + value = "arcanecrystal.m2", }, }, - value = "arcanecrystal", text = "arcanecrystal", + value = "arcanecrystal", }, { children = { { fileId = "201273", - value = "azsharastonetablet01.m2", text = "azsharastonetablet01.m2", + value = "azsharastonetablet01.m2", }, { fileId = "201275", - value = "azsharastonetablet02.m2", text = "azsharastonetablet02.m2", + value = "azsharastonetablet02.m2", }, { fileId = "201276", - value = "azsharastonetablet03.m2", text = "azsharastonetablet03.m2", + value = "azsharastonetablet03.m2", }, { fileId = "201277", - value = "azsharastonetablet04.m2", text = "azsharastonetablet04.m2", + value = "azsharastonetablet04.m2", }, }, - value = "stonetablets", text = "stonetablets", + value = "stonetablets", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -74513,273 +62819,273 @@ WeakAuras.ModelPaths = { children = { { fileId = "201279", - value = "anemone01.m2", text = "anemone01.m2", + value = "anemone01.m2", }, { fileId = "201280", - value = "anemone02.m2", text = "anemone02.m2", + value = "anemone02.m2", }, { fileId = "201281", - value = "seaurchin01.m2", text = "seaurchin01.m2", + value = "seaurchin01.m2", }, }, - value = "anemone", text = "anemone", + value = "anemone", }, { children = { { fileId = "201284", - value = "barnaclerock01.m2", text = "barnaclerock01.m2", + value = "barnaclerock01.m2", }, }, - value = "barnaclerock", text = "barnaclerock", + value = "barnaclerock", }, { children = { { fileId = "201285", - value = "azsharabubble2.m2", text = "azsharabubble2.m2", + value = "azsharabubble2.m2", }, { fileId = "201286", - value = "azsharabubbles.m2", text = "azsharabubbles.m2", + value = "azsharabubbles.m2", }, }, - value = "bubbles", text = "bubbles", + value = "bubbles", }, { children = { { fileId = "201288", - value = "coral01.m2", text = "coral01.m2", + value = "coral01.m2", }, { fileId = "201292", - value = "coraltree01.m2", text = "coraltree01.m2", + value = "coraltree01.m2", }, { fileId = "201293", - value = "coraltree02.m2", text = "coraltree02.m2", + value = "coraltree02.m2", }, }, - value = "coral", text = "coral", + value = "coral", }, { children = { { fileId = "201295", - value = "azsharadebriswall.m2", text = "azsharadebriswall.m2", + value = "azsharadebriswall.m2", }, }, - value = "debriswall", text = "debriswall", + value = "debriswall", }, { children = { { fileId = "201299", - value = "azharadragonstatue_01.m2", text = "azharadragonstatue_01.m2", + value = "azharadragonstatue_01.m2", }, { fileId = "201300", - value = "azharadragonstatue_02.m2", text = "azharadragonstatue_02.m2", + value = "azharadragonstatue_02.m2", }, }, - value = "dragonstatues", text = "dragonstatues", + value = "dragonstatues", }, { children = { { fileId = "201302", - value = "nagaflag01.m2", text = "nagaflag01.m2", + value = "nagaflag01.m2", }, { fileId = "201303", - value = "nagaflag02.m2", text = "nagaflag02.m2", + value = "nagaflag02.m2", }, }, - value = "nagaflags", text = "nagaflags", + value = "nagaflags", }, { children = { { fileId = "201304", - value = "nagapagoda02.m2", text = "nagapagoda02.m2", + value = "nagapagoda02.m2", }, }, - value = "nagapagoda", text = "nagapagoda", + value = "nagapagoda", }, { children = { { fileId = "201305", - value = "azshararock01.m2", text = "azshararock01.m2", + value = "azshararock01.m2", }, { fileId = "201306", - value = "azshararock02.m2", text = "azshararock02.m2", + value = "azshararock02.m2", }, { fileId = "201307", - value = "azshararock03.m2", text = "azshararock03.m2", + value = "azshararock03.m2", }, { fileId = "201308", - value = "azshararock04.m2", text = "azshararock04.m2", + value = "azshararock04.m2", }, { fileId = "201309", - value = "azshararock05.m2", text = "azshararock05.m2", + value = "azshararock05.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "201310", - value = "azsharashell01.m2", text = "azsharashell01.m2", + value = "azsharashell01.m2", }, { fileId = "201312", - value = "azsharashell02.m2", text = "azsharashell02.m2", + value = "azsharashell02.m2", }, { fileId = "201314", - value = "azsharashell03.m2", text = "azsharashell03.m2", + value = "azsharashell03.m2", }, { fileId = "201316", - value = "azsharashell04.m2", text = "azsharashell04.m2", + value = "azsharashell04.m2", }, { fileId = "201318", - value = "azsharashell05.m2", text = "azsharashell05.m2", + value = "azsharashell05.m2", }, { fileId = "201319", - value = "azsharashell06.m2", text = "azsharashell06.m2", + value = "azsharashell06.m2", }, { fileId = "201321", - value = "azsharashell07.m2", text = "azsharashell07.m2", + value = "azsharashell07.m2", }, { fileId = "201323", - value = "azsharashell08.m2", text = "azsharashell08.m2", + value = "azsharashell08.m2", }, }, - value = "seashells", text = "seashells", + value = "seashells", }, { children = { { fileId = "2198499", - value = "seaweed01.m2", text = "seaweed01.m2", + value = "seaweed01.m2", }, { fileId = "2198548", - value = "seaweed02.m2", text = "seaweed02.m2", + value = "seaweed02.m2", }, }, - value = "seaweed", text = "seaweed", + value = "seaweed", }, { children = { { fileId = "201331", - value = "starfish02.m2", text = "starfish02.m2", + value = "starfish02.m2", }, }, - value = "starfish", text = "starfish", + value = "starfish", }, { children = { { fileId = "201332", - value = "azr_tree01.m2", text = "azr_tree01.m2", + value = "azr_tree01.m2", }, { fileId = "201333", - value = "azr_tree02.m2", text = "azr_tree02.m2", + value = "azr_tree02.m2", }, { fileId = "201334", - value = "azr_tree03.m2", text = "azr_tree03.m2", + value = "azr_tree03.m2", }, { fileId = "201335", - value = "azr_tree04.m2", text = "azr_tree04.m2", + value = "azr_tree04.m2", }, { fileId = "201336", - value = "azr_tree05.m2", text = "azr_tree05.m2", + value = "azr_tree05.m2", }, { fileId = "201337", - value = "azr_tree06.m2", text = "azr_tree06.m2", + value = "azr_tree06.m2", }, { fileId = "201338", - value = "azr_tree07.m2", text = "azr_tree07.m2", + value = "azr_tree07.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, { children = { @@ -74787,86 +63093,86 @@ WeakAuras.ModelPaths = { children = { { fileId = "201351", - value = "anemity01_02.m2", text = "anemity01_02.m2", + value = "anemity01_02.m2", }, }, - value = "anemity01_02000", text = "anemity01_02000", + value = "anemity01_02000", }, { children = { { fileId = "201352", - value = "barnaclerock01_04.m2", text = "barnaclerock01_04.m2", + value = "barnaclerock01_04.m2", }, }, - value = "barnaclerock01_04", text = "barnaclerock01_04", + value = "barnaclerock01_04", }, { children = { { fileId = "201354", - value = "coral03_01.m2", text = "coral03_01.m2", + value = "coral03_01.m2", }, }, - value = "coral03_01", text = "coral03_01", + value = "coral03_01", }, { children = { { fileId = "201355", - value = "coraltree01_06.m2", text = "coraltree01_06.m2", + value = "coraltree01_06.m2", }, }, - value = "coraltree01_06", text = "coraltree01_06", + value = "coraltree01_06", }, { children = { { fileId = "201356", - value = "coraltree02_07.m2", text = "coraltree02_07.m2", + value = "coraltree02_07.m2", }, }, - value = "coraltree02_07", text = "coraltree02_07", + value = "coraltree02_07", }, { children = { { fileId = "201357", - value = "seaurchin01_05.m2", text = "seaurchin01_05.m2", + value = "seaurchin01_05.m2", }, }, - value = "seaurchin01_05", text = "seaurchin01_05", + value = "seaurchin01_05", }, { children = { { fileId = "201358", - value = "starfish01_02.m2", text = "starfish01_02.m2", + value = "starfish01_02.m2", }, }, - value = "starfish01_02", text = "starfish01_02", + value = "starfish01_02", }, }, - value = "seaplants", text = "seaplants", + value = "seaplants", }, }, - value = "azshara", text = "azshara", + value = "azshara", }, { children = { @@ -74876,234 +63182,234 @@ WeakAuras.ModelPaths = { children = { { fileId = "201363", - value = "kotobeastbone01.m2", text = "kotobeastbone01.m2", + value = "kotobeastbone01.m2", }, { fileId = "201364", - value = "kotobeastbone02.m2", text = "kotobeastbone02.m2", + value = "kotobeastbone02.m2", }, { fileId = "201365", - value = "kotobeastbone03.m2", text = "kotobeastbone03.m2", + value = "kotobeastbone03.m2", }, { fileId = "201366", - value = "kotobeastbone04.m2", text = "kotobeastbone04.m2", + value = "kotobeastbone04.m2", }, { fileId = "201367", - value = "kotobeastbone05.m2", text = "kotobeastbone05.m2", + value = "kotobeastbone05.m2", }, }, - value = "bones", text = "bones", + value = "bones", }, { children = { { fileId = "201370", - value = "barrensbush01.m2", text = "barrensbush01.m2", + value = "barrensbush01.m2", }, { fileId = "201371", - value = "barrensbush02.m2", text = "barrensbush02.m2", + value = "barrensbush02.m2", }, { fileId = "201372", - value = "barrensbush03.m2", text = "barrensbush03.m2", + value = "barrensbush03.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "201375", - value = "kodoegg01.m2", text = "kodoegg01.m2", + value = "kodoegg01.m2", }, { fileId = "201376", - value = "kodoegg02.m2", text = "kodoegg02.m2", + value = "kodoegg02.m2", }, }, - value = "kodoeggs", text = "kodoeggs", + value = "kodoeggs", }, { children = { { fileId = "201377", - value = "barrenslamppost01.m2", text = "barrenslamppost01.m2", + value = "barrenslamppost01.m2", }, }, - value = "lampposts", text = "lampposts", + value = "lampposts", }, { children = { { fileId = "201380", - value = "mkshrine.m2", text = "mkshrine.m2", + value = "mkshrine.m2", }, }, - value = "mkshrine", text = "mkshrine", + value = "mkshrine", }, { children = { { fileId = "201383", - value = "barrenstermitemound01.m2", text = "barrenstermitemound01.m2", + value = "barrenstermitemound01.m2", }, { fileId = "201384", - value = "barrenstermitemound02.m2", text = "barrenstermitemound02.m2", + value = "barrenstermitemound02.m2", }, { fileId = "201385", - value = "barrenstermitemound03.m2", text = "barrenstermitemound03.m2", + value = "barrenstermitemound03.m2", }, { fileId = "201386", - value = "barrenstermitemound04.m2", text = "barrenstermitemound04.m2", + value = "barrenstermitemound04.m2", }, }, - value = "mounds", text = "mounds", + value = "mounds", }, { children = { { fileId = "201389", - value = "raptorhut01.m2", text = "raptorhut01.m2", + value = "raptorhut01.m2", }, { fileId = "201390", - value = "raptorhut02.m2", text = "raptorhut02.m2", + value = "raptorhut02.m2", }, }, - value = "raptorhuts", text = "raptorhuts", + value = "raptorhuts", }, { children = { { fileId = "201394", - value = "barrenstree01.m2", text = "barrenstree01.m2", + value = "barrenstree01.m2", }, { fileId = "201396", - value = "barrenstree02.m2", text = "barrenstree02.m2", + value = "barrenstree02.m2", }, { fileId = "201398", - value = "barrenstree03.m2", text = "barrenstree03.m2", + value = "barrenstree03.m2", }, { fileId = "201399", - value = "barrenstree04.m2", text = "barrenstree04.m2", + value = "barrenstree04.m2", }, { fileId = "201400", - value = "barrenstree05.m2", text = "barrenstree05.m2", + value = "barrenstree05.m2", }, { fileId = "201402", - value = "barrenstree06.m2", text = "barrenstree06.m2", + value = "barrenstree06.m2", }, { fileId = "201403", - value = "barrenstree07.m2", text = "barrenstree07.m2", + value = "barrenstree07.m2", }, { fileId = "201405", - value = "barrenstree08.m2", text = "barrenstree08.m2", + value = "barrenstree08.m2", }, { fileId = "201406", - value = "barrenstree09.m2", text = "barrenstree09.m2", + value = "barrenstree09.m2", }, { fileId = "201407", - value = "barrenstree10.m2", text = "barrenstree10.m2", + value = "barrenstree10.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "201413", - value = "barrensbustedwagon.m2", text = "barrensbustedwagon.m2", + value = "barrensbustedwagon.m2", }, { fileId = "201416", - value = "barrenswagon01.m2", text = "barrenswagon01.m2", + value = "barrenswagon01.m2", }, { fileId = "201417", - value = "barrenswagon02.m2", text = "barrenswagon02.m2", + value = "barrenswagon02.m2", }, { fileId = "201418", - value = "barrenswagon03.m2", text = "barrenswagon03.m2", + value = "barrenswagon03.m2", }, }, - value = "wagon", text = "wagon", + value = "wagon", }, { children = { { fileId = "201421", - value = "orc_waterwheel.m2", text = "orc_waterwheel.m2", + value = "orc_waterwheel.m2", }, }, - value = "waterwheel", text = "waterwheel", + value = "waterwheel", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "barrens", text = "barrens", + value = "barrens", }, { children = { @@ -75113,220 +63419,220 @@ WeakAuras.ModelPaths = { children = { { fileId = "201422", - value = "bfd_nagabrazier.m2", text = "bfd_nagabrazier.m2", + value = "bfd_nagabrazier.m2", }, }, - value = "braziers", text = "braziers", + value = "braziers", }, { children = { { fileId = "201424", - value = "bfd_stonechair01.m2", text = "bfd_stonechair01.m2", + value = "bfd_stonechair01.m2", }, { fileId = "201425", - value = "bfd_stonechair02.m2", text = "bfd_stonechair02.m2", + value = "bfd_stonechair02.m2", }, { fileId = "201426", - value = "bfd_stonechair03.m2", text = "bfd_stonechair03.m2", + value = "bfd_stonechair03.m2", }, }, - value = "furniture", text = "furniture", + value = "furniture", }, { children = { { fileId = "201429", - value = "bfd_walllight01.m2", text = "bfd_walllight01.m2", + value = "bfd_walllight01.m2", }, { fileId = "201430", - value = "bfd_walllight03.m2", text = "bfd_walllight03.m2", + value = "bfd_walllight03.m2", }, { fileId = "201431", - value = "bfd_walllight04.m2", text = "bfd_walllight04.m2", + value = "bfd_walllight04.m2", }, { fileId = "201432", - value = "bfd_walllight05.m2", text = "bfd_walllight05.m2", + value = "bfd_walllight05.m2", }, { fileId = "201433", - value = "bfd_walllight06.m2", text = "bfd_walllight06.m2", + value = "bfd_walllight06.m2", }, { fileId = "201434", - value = "bfd_walllight07.m2", text = "bfd_walllight07.m2", + value = "bfd_walllight07.m2", }, { fileId = "201435", - value = "bfd_walltorch01.m2", text = "bfd_walltorch01.m2", + value = "bfd_walltorch01.m2", }, { fileId = "201436", - value = "bfd_wisp01.m2", text = "bfd_wisp01.m2", + value = "bfd_wisp01.m2", }, { fileId = "201437", - value = "bfd_wisplarge.m2", text = "bfd_wisplarge.m2", + value = "bfd_wisplarge.m2", }, { fileId = "201438", - value = "bfd_wispmed.m2", text = "bfd_wispmed.m2", + value = "bfd_wispmed.m2", }, { fileId = "201439", - value = "bfd_wispsmall.m2", text = "bfd_wispsmall.m2", + value = "bfd_wispsmall.m2", }, { fileId = "201440", - value = "bfd_wispsmallgreen.m2", text = "bfd_wispsmallgreen.m2", + value = "bfd_wispsmallgreen.m2", }, { fileId = "201441", - value = "bfd_wispsmallpurple.m2", text = "bfd_wispsmallpurple.m2", + value = "bfd_wispsmallpurple.m2", }, }, - value = "lights", text = "lights", + value = "lights", }, { children = { { fileId = "201445", - value = "bfd_brokenpottery01.m2", text = "bfd_brokenpottery01.m2", + value = "bfd_brokenpottery01.m2", }, { fileId = "201446", - value = "bfd_brokenpottery02.m2", text = "bfd_brokenpottery02.m2", + value = "bfd_brokenpottery02.m2", }, { fileId = "201447", - value = "blackfathom_pot01.m2", text = "blackfathom_pot01.m2", + value = "blackfathom_pot01.m2", }, { fileId = "201448", - value = "blackfathom_pot02.m2", text = "blackfathom_pot02.m2", + value = "blackfathom_pot02.m2", }, { fileId = "201449", - value = "blackfathom_pot03.m2", text = "blackfathom_pot03.m2", + value = "blackfathom_pot03.m2", }, { fileId = "201450", - value = "blackfathom_pot04.m2", text = "blackfathom_pot04.m2", + value = "blackfathom_pot04.m2", }, }, - value = "pottery", text = "pottery", + value = "pottery", }, { children = { { fileId = "201452", - value = "bfd_statuenagapriestess.m2", text = "bfd_statuenagapriestess.m2", + value = "bfd_statuenagapriestess.m2", }, }, - value = "statue", text = "statue", + value = "statue", }, { children = { { fileId = "201455", - value = "bfd_waterfalls01.m2", text = "bfd_waterfalls01.m2", + value = "bfd_waterfalls01.m2", }, { fileId = "201456", - value = "bfd_waterfalls02.m2", text = "bfd_waterfalls02.m2", + value = "bfd_waterfalls02.m2", }, { fileId = "201457", - value = "bfd_waterfalls03.m2", text = "bfd_waterfalls03.m2", + value = "bfd_waterfalls03.m2", }, { fileId = "201458", - value = "bfd_waterfalls04.m2", text = "bfd_waterfalls04.m2", + value = "bfd_waterfalls04.m2", }, { fileId = "201459", - value = "bfd_waterfalls05.m2", text = "bfd_waterfalls05.m2", + value = "bfd_waterfalls05.m2", }, { fileId = "201460", - value = "bfd_waterfalls06.m2", text = "bfd_waterfalls06.m2", + value = "bfd_waterfalls06.m2", }, { fileId = "201461", - value = "bfd_waterfalls07.m2", text = "bfd_waterfalls07.m2", + value = "bfd_waterfalls07.m2", }, { fileId = "201462", - value = "bfd_waterfalls08.m2", text = "bfd_waterfalls08.m2", + value = "bfd_waterfalls08.m2", }, { fileId = "201463", - value = "bfd_waterfalls09.m2", text = "bfd_waterfalls09.m2", + value = "bfd_waterfalls09.m2", }, { fileId = "201464", - value = "bfd_waterfalls10.m2", text = "bfd_waterfalls10.m2", + value = "bfd_waterfalls10.m2", }, { fileId = "201465", - value = "bfd_waterfalls11.m2", text = "bfd_waterfalls11.m2", + value = "bfd_waterfalls11.m2", }, }, - value = "waterfalls", text = "waterfalls", + value = "waterfalls", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "blackfathom", text = "blackfathom", + value = "blackfathom", }, { children = { @@ -75334,21 +63640,21 @@ WeakAuras.ModelPaths = { children = { { fileId = "201468", - value = "centaurhorncover.m2", text = "centaurhorncover.m2", + value = "centaurhorncover.m2", }, { fileId = "201469", - value = "centaurhornmouthpiece.m2", text = "centaurhornmouthpiece.m2", + value = "centaurhornmouthpiece.m2", }, }, - value = "desolace", text = "desolace", + value = "desolace", }, }, - value = "buildings", text = "buildings", + value = "buildings", }, { children = { @@ -75358,64 +63664,64 @@ WeakAuras.ModelPaths = { children = { { fileId = "201472", - value = "illidancrystal01.m2", text = "illidancrystal01.m2", + value = "illidancrystal01.m2", }, }, - value = "illidancrystal", text = "illidancrystal", + value = "illidancrystal", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { { fileId = "201475", - value = "giantseaturtle03.m2", text = "giantseaturtle03.m2", + value = "giantseaturtle03.m2", }, { fileId = "201476", - value = "giantseaturtle04.m2", text = "giantseaturtle04.m2", + value = "giantseaturtle04.m2", }, }, - value = "giantseaturtle", text = "giantseaturtle", + value = "giantseaturtle", }, { children = { { fileId = "201486", - value = "snakeskullgiant.m2", text = "snakeskullgiant.m2", + value = "snakeskullgiant.m2", }, }, - value = "giantsnakeskulls", text = "giantsnakeskulls", + value = "giantsnakeskulls", }, { children = { { fileId = "201487", - value = "snakespinegiant01.m2", text = "snakespinegiant01.m2", + value = "snakespinegiant01.m2", }, { fileId = "201488", - value = "snakespinegiant02.m2", text = "snakespinegiant02.m2", + value = "snakespinegiant02.m2", }, { fileId = "201489", - value = "snakespinegiant03.m2", text = "snakespinegiant03.m2", + value = "snakespinegiant03.m2", }, }, - value = "giantsnakespines", text = "giantsnakespines", + value = "giantsnakespines", }, { children = { @@ -75423,373 +63729,373 @@ WeakAuras.ModelPaths = { children = { { fileId = "201490", - value = "darkshoreanchor01.m2", text = "darkshoreanchor01.m2", + value = "darkshoreanchor01.m2", }, }, - value = "anchors", text = "anchors", + value = "anchors", }, { children = { { fileId = "201493", - value = "darkshoreboat.m2", text = "darkshoreboat.m2", + value = "darkshoreboat.m2", }, }, - value = "boats", text = "boats", + value = "boats", }, { children = { { fileId = "201494", - value = "darkshorebush01.m2", text = "darkshorebush01.m2", + value = "darkshorebush01.m2", }, { fileId = "201495", - value = "darkshorebush02.m2", text = "darkshorebush02.m2", + value = "darkshorebush02.m2", }, { fileId = "201496", - value = "darkshorebush03.m2", text = "darkshorebush03.m2", + value = "darkshorebush03.m2", }, { fileId = "201497", - value = "darkshorebush04.m2", text = "darkshorebush04.m2", + value = "darkshorebush04.m2", }, { fileId = "201498", - value = "darkshorebush05.m2", text = "darkshorebush05.m2", + value = "darkshorebush05.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "201503", - value = "darkshorelog01.m2", text = "darkshorelog01.m2", + value = "darkshorelog01.m2", }, { fileId = "201504", - value = "darkshorelog02.m2", text = "darkshorelog02.m2", + value = "darkshorelog02.m2", }, }, - value = "darkshorelogs", text = "darkshorelogs", + value = "darkshorelogs", }, { children = { { fileId = "201511", - value = "darkshoretree01.m2", text = "darkshoretree01.m2", + value = "darkshoretree01.m2", }, { fileId = "201513", - value = "darkshoretree02.m2", text = "darkshoretree02.m2", + value = "darkshoretree02.m2", }, { fileId = "201514", - value = "darkshoretree03.m2", text = "darkshoretree03.m2", + value = "darkshoretree03.m2", }, { fileId = "201515", - value = "darkshoretree04.m2", text = "darkshoretree04.m2", + value = "darkshoretree04.m2", }, { fileId = "201516", - value = "darkshoretree05.m2", text = "darkshoretree05.m2", + value = "darkshoretree05.m2", }, { fileId = "201517", - value = "darkshoretree06.m2", text = "darkshoretree06.m2", + value = "darkshoretree06.m2", }, { fileId = "201518", - value = "darkshoretree07.m2", text = "darkshoretree07.m2", + value = "darkshoretree07.m2", }, { fileId = "201519", - value = "darkshoretree08.m2", text = "darkshoretree08.m2", + value = "darkshoretree08.m2", }, }, - value = "darkshoretrees", text = "darkshoretrees", + value = "darkshoretrees", }, { children = { { fileId = "201524", - value = "darkshoredock.m2", text = "darkshoredock.m2", + value = "darkshoredock.m2", }, }, - value = "dock", text = "dock", + value = "dock", }, { children = { { fileId = "201526", - value = "darkshoredock01.m2", text = "darkshoredock01.m2", + value = "darkshoredock01.m2", }, { fileId = "201527", - value = "darkshoredockramp01.m2", text = "darkshoredockramp01.m2", + value = "darkshoredockramp01.m2", }, }, - value = "docks", text = "docks", + value = "docks", }, { children = { { fileId = "201528", - value = "darkshorefallentreeroots01.m2", text = "darkshorefallentreeroots01.m2", + value = "darkshorefallentreeroots01.m2", }, }, - value = "fallentreeroots", text = "fallentreeroots", + value = "fallentreeroots", }, { children = { { fileId = "201529", - value = "darkshoregazeebo.m2", text = "darkshoregazeebo.m2", + value = "darkshoregazeebo.m2", }, { fileId = "201530", - value = "darkshoregazeeboruined01.m2", text = "darkshoregazeeboruined01.m2", + value = "darkshoregazeeboruined01.m2", }, }, - value = "gazeebo", text = "gazeebo", + value = "gazeebo", }, { children = { { fileId = "201531", - value = "glaivemaster.m2", text = "glaivemaster.m2", + value = "glaivemaster.m2", }, }, - value = "glaivemaster", text = "glaivemaster", + value = "glaivemaster", }, { children = { { fileId = "201536", - value = "glaivemasterroots01.m2", text = "glaivemasterroots01.m2", + value = "glaivemasterroots01.m2", }, { fileId = "201537", - value = "glaivemasterroots02.m2", text = "glaivemasterroots02.m2", + value = "glaivemasterroots02.m2", }, }, - value = "glaivemasterroots", text = "glaivemasterroots", + value = "glaivemasterroots", }, { children = { { fileId = "201538", - value = "glaivemastertentacle.m2", text = "glaivemastertentacle.m2", + value = "glaivemastertentacle.m2", }, { fileId = "201539", - value = "glaivemastertentacleend.m2", text = "glaivemastertentacleend.m2", + value = "glaivemastertentacleend.m2", }, }, - value = "glaivemastertentacles", text = "glaivemastertentacles", + value = "glaivemastertentacles", }, { children = { { fileId = "201541", - value = "darkstreetlamp.m2", text = "darkstreetlamp.m2", + value = "darkstreetlamp.m2", }, { fileId = "201542", - value = "darkstreetlamp02.m2", text = "darkstreetlamp02.m2", + value = "darkstreetlamp02.m2", }, }, - value = "lamp", text = "lamp", + value = "lamp", }, { children = { { fileId = "201544", - value = "darkshoremoongate.m2", text = "darkshoremoongate.m2", + value = "darkshoremoongate.m2", }, { fileId = "201545", - value = "darkshoremoongatebase.m2", text = "darkshoremoongatebase.m2", + value = "darkshoremoongatebase.m2", }, { fileId = "201546", - value = "darkshoremoongatetop.m2", text = "darkshoremoongatetop.m2", + value = "darkshoremoongatetop.m2", }, }, - value = "moongate", text = "moongate", + value = "moongate", }, { children = { { fileId = "201548", - value = "darkshorerock03.m2", text = "darkshorerock03.m2", + value = "darkshorerock03.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "201551", - value = "darkshorerock01.m2", text = "darkshorerock01.m2", + value = "darkshorerock01.m2", }, { fileId = "201552", - value = "darkshorerock02.m2", text = "darkshorerock02.m2", + value = "darkshorerock02.m2", }, { fileId = "201553", - value = "darkshoreruinpillar01.m2", text = "darkshoreruinpillar01.m2", + value = "darkshoreruinpillar01.m2", }, { fileId = "201554", - value = "darkshoreruinpillar02.m2", text = "darkshoreruinpillar02.m2", + value = "darkshoreruinpillar02.m2", }, { fileId = "201555", - value = "darkshoreruinpillar03.m2", text = "darkshoreruinpillar03.m2", + value = "darkshoreruinpillar03.m2", }, { fileId = "201556", - value = "darkshoreruinpillar04.m2", text = "darkshoreruinpillar04.m2", + value = "darkshoreruinpillar04.m2", }, { fileId = "201557", - value = "darkshoreruinpillar05.m2", text = "darkshoreruinpillar05.m2", + value = "darkshoreruinpillar05.m2", }, { fileId = "201558", - value = "darkshoreruinwall01.m2", text = "darkshoreruinwall01.m2", + value = "darkshoreruinwall01.m2", }, { fileId = "201559", - value = "darkshoreruinwall02.m2", text = "darkshoreruinwall02.m2", + value = "darkshoreruinwall02.m2", }, { fileId = "201560", - value = "darkshoreruinwall03.m2", text = "darkshoreruinwall03.m2", + value = "darkshoreruinwall03.m2", }, { fileId = "201561", - value = "darkshoreruinwall04.m2", text = "darkshoreruinwall04.m2", + value = "darkshoreruinwall04.m2", }, { fileId = "201562", - value = "darkshoreruinwall05.m2", text = "darkshoreruinwall05.m2", + value = "darkshoreruinwall05.m2", }, { fileId = "201563", - value = "darkshoreruinwall06.m2", text = "darkshoreruinwall06.m2", + value = "darkshoreruinwall06.m2", }, }, - value = "ruins", text = "ruins", + value = "ruins", }, { children = { { fileId = "201568", - value = "darkshoreseamonster01.m2", text = "darkshoreseamonster01.m2", + value = "darkshoreseamonster01.m2", }, }, - value = "seamonstercarcass", text = "seamonstercarcass", + value = "seamonstercarcass", }, { children = { { fileId = "201571", - value = "darkshorefallentree01.m2", text = "darkshorefallentree01.m2", + value = "darkshorefallentree01.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, { children = { { fileId = "201573", - value = "darkshorethreshadoncorpse.m2", text = "darkshorethreshadoncorpse.m2", + value = "darkshorethreshadoncorpse.m2", }, }, - value = "threshadoncorpse", text = "threshadoncorpse", + value = "threshadoncorpse", }, }, - value = "darkshore", text = "darkshore", + value = "darkshore", }, { children = { @@ -75797,175 +64103,175 @@ WeakAuras.ModelPaths = { children = { { fileId = "201575", - value = "defiledtotem01.m2", text = "defiledtotem01.m2", + value = "defiledtotem01.m2", }, { fileId = "201576", - value = "defiledtotem02.m2", text = "defiledtotem02.m2", + value = "defiledtotem02.m2", }, { children = { { fileId = "201581", - value = "bannercentaur01.m2", text = "bannercentaur01.m2", + value = "bannercentaur01.m2", }, { fileId = "201582", - value = "bannercentaur02.m2", text = "bannercentaur02.m2", + value = "bannercentaur02.m2", }, { fileId = "201583", - value = "bannercentaur03.m2", text = "bannercentaur03.m2", + value = "bannercentaur03.m2", }, { fileId = "201584", - value = "bannercentaur04.m2", text = "bannercentaur04.m2", + value = "bannercentaur04.m2", }, { fileId = "201593", - value = "kodograve01.m2", text = "kodograve01.m2", + value = "kodograve01.m2", }, { fileId = "201594", - value = "kodograve02.m2", text = "kodograve02.m2", + value = "kodograve02.m2", }, { fileId = "201595", - value = "kodograve03.m2", text = "kodograve03.m2", + value = "kodograve03.m2", }, { fileId = "201596", - value = "kodograve04.m2", text = "kodograve04.m2", + value = "kodograve04.m2", }, { fileId = "201597", - value = "kodograve05.m2", text = "kodograve05.m2", + value = "kodograve05.m2", }, { fileId = "201598", - value = "kodograve06.m2", text = "kodograve06.m2", + value = "kodograve06.m2", }, { fileId = "201599", - value = "kodograve07.m2", text = "kodograve07.m2", + value = "kodograve07.m2", }, { fileId = "201600", - value = "kodograve08.m2", text = "kodograve08.m2", + value = "kodograve08.m2", }, { fileId = "201601", - value = "kodograve09.m2", text = "kodograve09.m2", + value = "kodograve09.m2", }, { fileId = "201602", - value = "kodograve10.m2", text = "kodograve10.m2", + value = "kodograve10.m2", }, { fileId = "201603", - value = "kodograve11.m2", text = "kodograve11.m2", + value = "kodograve11.m2", }, { fileId = "201604", - value = "kodograve12.m2", text = "kodograve12.m2", + value = "kodograve12.m2", }, { fileId = "201605", - value = "kodograve13.m2", text = "kodograve13.m2", + value = "kodograve13.m2", }, { fileId = "201606", - value = "kodograve14.m2", text = "kodograve14.m2", + value = "kodograve14.m2", }, }, - value = "kodogravebones", text = "kodogravebones", + value = "kodogravebones", }, { children = { { fileId = "201607", - value = "desolacemushroom.m2", text = "desolacemushroom.m2", + value = "desolacemushroom.m2", }, }, - value = "mushrooms", text = "mushrooms", + value = "mushrooms", }, { children = { { fileId = "201610", - value = "desolacerock01.m2", text = "desolacerock01.m2", + value = "desolacerock01.m2", }, { fileId = "201611", - value = "desolacerock02.m2", text = "desolacerock02.m2", + value = "desolacerock02.m2", }, { fileId = "201612", - value = "desolacerock03.m2", text = "desolacerock03.m2", + value = "desolacerock03.m2", }, { fileId = "201613", - value = "desolacerock04.m2", text = "desolacerock04.m2", + value = "desolacerock04.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "201614", - value = "centaurspears01.m2", text = "centaurspears01.m2", + value = "centaurspears01.m2", }, { fileId = "201615", - value = "centaurspears02.m2", text = "centaurspears02.m2", + value = "centaurspears02.m2", }, { fileId = "201616", - value = "centaurspearscone.m2", text = "centaurspearscone.m2", + value = "centaurspearscone.m2", }, }, - value = "spearwalls", text = "spearwalls", + value = "spearwalls", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "desolace", text = "desolace", + value = "desolace", }, { children = { @@ -75975,125 +64281,125 @@ WeakAuras.ModelPaths = { children = { { fileId = "201617", - value = "corruptedcrystalshard.m2", text = "corruptedcrystalshard.m2", + value = "corruptedcrystalshard.m2", }, { fileId = "201618", - value = "corruptedcrystalshard_blue.m2", text = "corruptedcrystalshard_blue.m2", + value = "corruptedcrystalshard_blue.m2", }, { fileId = "201619", - value = "corruptedcrystalvine.m2", text = "corruptedcrystalvine.m2", + value = "corruptedcrystalvine.m2", }, }, - value = "crystalcorrupter", text = "crystalcorrupter", + value = "crystalcorrupter", }, { children = { { fileId = "201624", - value = "diremaulbossforcefield.m2", text = "diremaulbossforcefield.m2", + value = "diremaulbossforcefield.m2", }, { fileId = "201626", - value = "diremauldoor01.m2", text = "diremauldoor01.m2", + value = "diremauldoor01.m2", }, { fileId = "201627", - value = "diremauldoor02.m2", text = "diremauldoor02.m2", + value = "diremauldoor02.m2", }, { fileId = "201629", - value = "diremauldoor03.m2", text = "diremauldoor03.m2", + value = "diremauldoor03.m2", }, { fileId = "201631", - value = "diremauldoor04.m2", text = "diremauldoor04.m2", + value = "diremauldoor04.m2", }, { fileId = "201634", - value = "diremaulsmallinstancedoor.m2", text = "diremaulsmallinstancedoor.m2", + value = "diremaulsmallinstancedoor.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, { children = { { fileId = "201638", - value = "diremaulcrystalgenerator.m2", text = "diremaulcrystalgenerator.m2", + value = "diremaulcrystalgenerator.m2", }, }, - value = "lightcrystal", text = "lightcrystal", + value = "lightcrystal", }, { children = { { fileId = "201641", - value = "nightmarebell.m2", text = "nightmarebell.m2", + value = "nightmarebell.m2", }, { fileId = "201642", - value = "nightmarecandle.m2", text = "nightmarecandle.m2", + value = "nightmarecandle.m2", }, { fileId = "201643", - value = "nightmarestone.m2", text = "nightmarestone.m2", + value = "nightmarestone.m2", }, }, - value = "nightmaresummoning", text = "nightmaresummoning", + value = "nightmaresummoning", }, { children = { { fileId = "201649", - value = "warlockmountritualcircle01.m2", text = "warlockmountritualcircle01.m2", + value = "warlockmountritualcircle01.m2", }, { fileId = "201650", - value = "warlockmountritualcircle01a.m2", text = "warlockmountritualcircle01a.m2", + value = "warlockmountritualcircle01a.m2", }, { fileId = "201651", - value = "warlockmountritualcircle01b.m2", text = "warlockmountritualcircle01b.m2", + value = "warlockmountritualcircle01b.m2", }, { fileId = "201652", - value = "warlockmountritualcircle01c.m2", text = "warlockmountritualcircle01c.m2", + value = "warlockmountritualcircle01c.m2", }, { fileId = "201653", - value = "warlockmountritualcircle01d.m2", text = "warlockmountritualcircle01d.m2", + value = "warlockmountritualcircle01d.m2", }, }, - value = "warlockcircle", text = "warlockcircle", + value = "warlockcircle", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -76101,335 +64407,335 @@ WeakAuras.ModelPaths = { children = { { fileId = "201658", - value = "diremaulstonebearstatue.m2", text = "diremaulstonebearstatue.m2", + value = "diremaulstonebearstatue.m2", }, { fileId = "201660", - value = "diremaulstonedeerstatue.m2", text = "diremaulstonedeerstatue.m2", + value = "diremaulstonedeerstatue.m2", }, { fileId = "201662", - value = "diremaulstoneowlstatue.m2", text = "diremaulstoneowlstatue.m2", + value = "diremaulstoneowlstatue.m2", }, }, - value = "animalheadstatues", text = "animalheadstatues", + value = "animalheadstatues", }, { children = { { fileId = "201663", - value = "diremaul_banner.m2", text = "diremaul_banner.m2", + value = "diremaul_banner.m2", }, { fileId = "201664", - value = "diremaul_banner_post.m2", text = "diremaul_banner_post.m2", + value = "diremaul_banner_post.m2", }, { fileId = "201665", - value = "diremaul_banner_tattered.m2", text = "diremaul_banner_tattered.m2", + value = "diremaul_banner_tattered.m2", }, { fileId = "201666", - value = "diremaul_banner_torn01.m2", text = "diremaul_banner_torn01.m2", + value = "diremaul_banner_torn01.m2", }, { fileId = "201667", - value = "diremaul_banner_torn02.m2", text = "diremaul_banner_torn02.m2", + value = "diremaul_banner_torn02.m2", }, { fileId = "201670", - value = "ogrepostbanner.m2", text = "ogrepostbanner.m2", + value = "ogrepostbanner.m2", }, { fileId = "201671", - value = "ogrestapledwallbanner.m2", text = "ogrestapledwallbanner.m2", + value = "ogrestapledwallbanner.m2", }, { fileId = "201672", - value = "ogrestapledwallbanner02.m2", text = "ogrestapledwallbanner02.m2", + value = "ogrestapledwallbanner02.m2", }, }, - value = "banners", text = "banners", + value = "banners", }, { children = { { fileId = "201675", - value = "brokenferalastree01.m2", text = "brokenferalastree01.m2", + value = "brokenferalastree01.m2", }, }, - value = "deadtrees", text = "deadtrees", + value = "deadtrees", }, { fileId = "201679", - value = "goldenhighelfstatue01.m2", text = "goldenhighelfstatue01.m2", + value = "goldenhighelfstatue01.m2", }, { fileId = "201680", - value = "goldenhighelfstatue02.m2", text = "goldenhighelfstatue02.m2", + value = "goldenhighelfstatue02.m2", }, { fileId = "201681", - value = "goldenhighelfstatue03.m2", text = "goldenhighelfstatue03.m2", + value = "goldenhighelfstatue03.m2", }, { children = { { fileId = "201688", - value = "ogrecampfire01.m2", text = "ogrecampfire01.m2", + value = "ogrecampfire01.m2", }, }, - value = "ogrecampfires", text = "ogrecampfires", + value = "ogrecampfires", }, { children = { { fileId = "201689", - value = "diremaulogreladder01.m2", text = "diremaulogreladder01.m2", + value = "diremaulogreladder01.m2", }, }, - value = "ogreladder", text = "ogreladder", + value = "ogreladder", }, { children = { { fileId = "201691", - value = "diremaulogrepost01.m2", text = "diremaulogrepost01.m2", + value = "diremaulogrepost01.m2", }, { fileId = "201692", - value = "diremaulogrepost02.m2", text = "diremaulogrepost02.m2", + value = "diremaulogrepost02.m2", }, { fileId = "201693", - value = "diremaulogrepost03.m2", text = "diremaulogrepost03.m2", + value = "diremaulogrepost03.m2", }, { fileId = "201694", - value = "diremaulogrepost04.m2", text = "diremaulogrepost04.m2", + value = "diremaulogrepost04.m2", }, }, - value = "ogreposts", text = "ogreposts", + value = "ogreposts", }, { children = { { fileId = "201696", - value = "diremaulogrescaffolding01.m2", text = "diremaulogrescaffolding01.m2", + value = "diremaulogrescaffolding01.m2", }, }, - value = "ogrescaffolding", text = "ogrescaffolding", + value = "ogrescaffolding", }, { children = { { fileId = "201699", - value = "diremaulfloorrubble01.m2", text = "diremaulfloorrubble01.m2", + value = "diremaulfloorrubble01.m2", }, { fileId = "201700", - value = "diremaulfloorrubble02.m2", text = "diremaulfloorrubble02.m2", + value = "diremaulfloorrubble02.m2", }, { fileId = "201701", - value = "diremaulfloorrubble03.m2", text = "diremaulfloorrubble03.m2", + value = "diremaulfloorrubble03.m2", }, { fileId = "201702", - value = "diremaulgroundrubble01.m2", text = "diremaulgroundrubble01.m2", + value = "diremaulgroundrubble01.m2", }, { fileId = "201703", - value = "diremaulgroundrubble02.m2", text = "diremaulgroundrubble02.m2", + value = "diremaulgroundrubble02.m2", }, { fileId = "201704", - value = "diremaulgroundrubble03.m2", text = "diremaulgroundrubble03.m2", + value = "diremaulgroundrubble03.m2", }, { fileId = "201705", - value = "diremaulstonestatue01.m2", text = "diremaulstonestatue01.m2", + value = "diremaulstonestatue01.m2", }, { fileId = "201706", - value = "diremaulstonestatue02.m2", text = "diremaulstonestatue02.m2", + value = "diremaulstonestatue02.m2", }, { fileId = "201707", - value = "diremaulstonestatue03.m2", text = "diremaulstonestatue03.m2", + value = "diremaulstonestatue03.m2", }, { fileId = "201708", - value = "diremaulstonestatue04.m2", text = "diremaulstonestatue04.m2", + value = "diremaulstonestatue04.m2", }, { fileId = "201709", - value = "diremaultreeroot01.m2", text = "diremaultreeroot01.m2", + value = "diremaultreeroot01.m2", }, { fileId = "201710", - value = "diremaultreeroot02.m2", text = "diremaultreeroot02.m2", + value = "diremaultreeroot02.m2", }, { fileId = "201711", - value = "diremaultreeroot03.m2", text = "diremaultreeroot03.m2", + value = "diremaultreeroot03.m2", }, { fileId = "201712", - value = "diremaultreeroot04.m2", text = "diremaultreeroot04.m2", + value = "diremaultreeroot04.m2", }, { fileId = "201713", - value = "diremaultreeroot05.m2", text = "diremaultreeroot05.m2", + value = "diremaultreeroot05.m2", }, { fileId = "201714", - value = "diremaultreeroot06.m2", text = "diremaultreeroot06.m2", + value = "diremaultreeroot06.m2", }, { fileId = "201715", - value = "diremaultrimrubble01.m2", text = "diremaultrimrubble01.m2", + value = "diremaultrimrubble01.m2", }, { fileId = "201716", - value = "diremaultrimrubble02.m2", text = "diremaultrimrubble02.m2", + value = "diremaultrimrubble02.m2", }, { fileId = "201717", - value = "diremaultrimrubble03.m2", text = "diremaultrimrubble03.m2", + value = "diremaultrimrubble03.m2", }, { fileId = "201718", - value = "diremaulwallrubble01.m2", text = "diremaulwallrubble01.m2", + value = "diremaulwallrubble01.m2", }, { fileId = "201719", - value = "diremaulwallrubble02.m2", text = "diremaulwallrubble02.m2", + value = "diremaulwallrubble02.m2", }, { fileId = "201720", - value = "diremaulwallrubble03.m2", text = "diremaulwallrubble03.m2", + value = "diremaulwallrubble03.m2", }, }, - value = "rubble", text = "rubble", + value = "rubble", }, { children = { { fileId = "201723", - value = "deadtreeplanterbox.m2", text = "deadtreeplanterbox.m2", + value = "deadtreeplanterbox.m2", }, { fileId = "201724", - value = "deadtreeplanterbox02.m2", text = "deadtreeplanterbox02.m2", + value = "deadtreeplanterbox02.m2", }, { fileId = "201725", - value = "deadtreeplanterbox03.m2", text = "deadtreeplanterbox03.m2", + value = "deadtreeplanterbox03.m2", }, }, - value = "treeplanters", text = "treeplanters", + value = "treeplanters", }, { children = { { fileId = "201731", - value = "gardentreecanopy.m2", text = "gardentreecanopy.m2", + value = "gardentreecanopy.m2", }, { fileId = "201732", - value = "gardentreeferalas.m2", text = "gardentreeferalas.m2", + value = "gardentreeferalas.m2", }, { fileId = "201733", - value = "gardentreeferalasb.m2", text = "gardentreeferalasb.m2", + value = "gardentreeferalasb.m2", }, { fileId = "201734", - value = "gardentreehuge.m2", text = "gardentreehuge.m2", + value = "gardentreehuge.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "201741", - value = "diremaulmagicvortex.m2", text = "diremaulmagicvortex.m2", + value = "diremaulmagicvortex.m2", }, }, - value = "vortex", text = "vortex", + value = "vortex", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "diremaul", text = "diremaul", + value = "diremaul", }, { children = { @@ -76439,103 +64745,103 @@ WeakAuras.ModelPaths = { children = { { fileId = "201743", - value = "dragoncaveartifact.m2", text = "dragoncaveartifact.m2", + value = "dragoncaveartifact.m2", }, }, - value = "artifact", text = "artifact", + value = "artifact", }, { children = { { fileId = "201745", - value = "blackdragonegg01.m2", text = "blackdragonegg01.m2", + value = "blackdragonegg01.m2", }, { fileId = "201746", - value = "blackdragonegg02.m2", text = "blackdragonegg02.m2", + value = "blackdragonegg02.m2", }, { fileId = "201747", - value = "blackdragonegg03.m2", text = "blackdragonegg03.m2", + value = "blackdragonegg03.m2", }, }, - value = "blackdragoneggs", text = "blackdragoneggs", + value = "blackdragoneggs", }, { children = { { fileId = "201752", - value = "charredbody01.m2", text = "charredbody01.m2", + value = "charredbody01.m2", }, { fileId = "201753", - value = "charredbody02.m2", text = "charredbody02.m2", + value = "charredbody02.m2", }, { fileId = "201754", - value = "charredbody03.m2", text = "charredbody03.m2", + value = "charredbody03.m2", }, { fileId = "201755", - value = "charredbody04.m2", text = "charredbody04.m2", + value = "charredbody04.m2", }, { fileId = "201756", - value = "charredbody05.m2", text = "charredbody05.m2", + value = "charredbody05.m2", }, { fileId = "201757", - value = "charredbody06.m2", text = "charredbody06.m2", + value = "charredbody06.m2", }, { fileId = "201758", - value = "charredbody07.m2", text = "charredbody07.m2", + value = "charredbody07.m2", }, { fileId = "201761", - value = "dragonfirecharmark01.m2", text = "dragonfirecharmark01.m2", + value = "dragonfirecharmark01.m2", }, { fileId = "201762", - value = "dragonfirecharmark02.m2", text = "dragonfirecharmark02.m2", + value = "dragonfirecharmark02.m2", }, }, - value = "charredbodies", text = "charredbodies", + value = "charredbodies", }, { children = { { fileId = "201764", - value = "dragoncavefireembers.m2", text = "dragoncavefireembers.m2", + value = "dragoncavefireembers.m2", }, }, - value = "fireembers", text = "fireembers", + value = "fireembers", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "dragoncave", text = "dragoncave", + value = "dragoncave", }, { children = { @@ -76545,198 +64851,198 @@ WeakAuras.ModelPaths = { children = { { fileId = "201765", - value = "taurenbridge01lantern.m2", text = "taurenbridge01lantern.m2", + value = "taurenbridge01lantern.m2", }, }, - value = "bridge", text = "bridge", + value = "bridge", }, { children = { { fileId = "201766", - value = "cactusapple01.m2", text = "cactusapple01.m2", + value = "cactusapple01.m2", }, { fileId = "201768", - value = "durotarbush01.m2", text = "durotarbush01.m2", + value = "durotarbush01.m2", }, { fileId = "201769", - value = "durotarbush02.m2", text = "durotarbush02.m2", + value = "durotarbush02.m2", }, { fileId = "201770", - value = "durotarbush03.m2", text = "durotarbush03.m2", + value = "durotarbush03.m2", }, { fileId = "201771", - value = "durotarbush04.m2", text = "durotarbush04.m2", + value = "durotarbush04.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "201774", - value = "durotarcliffrock01.m2", text = "durotarcliffrock01.m2", + value = "durotarcliffrock01.m2", }, { fileId = "201775", - value = "durotarcliffrock02.m2", text = "durotarcliffrock02.m2", + value = "durotarcliffrock02.m2", }, { fileId = "201776", - value = "durotarcliffrock03.m2", text = "durotarcliffrock03.m2", + value = "durotarcliffrock03.m2", }, { fileId = "201777", - value = "durotarcliffrock04.m2", text = "durotarcliffrock04.m2", + value = "durotarcliffrock04.m2", }, { fileId = "201778", - value = "durotarcliffrock05.m2", text = "durotarcliffrock05.m2", + value = "durotarcliffrock05.m2", }, { fileId = "201779", - value = "durotarcliffrock06.m2", text = "durotarcliffrock06.m2", + value = "durotarcliffrock06.m2", }, { fileId = "201780", - value = "durotarcliffrock07.m2", text = "durotarcliffrock07.m2", + value = "durotarcliffrock07.m2", }, { fileId = "201781", - value = "durotarcliffrock08.m2", text = "durotarcliffrock08.m2", + value = "durotarcliffrock08.m2", }, { fileId = "201783", - value = "durotarrock01.m2", text = "durotarrock01.m2", + value = "durotarrock01.m2", }, { fileId = "201785", - value = "durotarrock02.m2", text = "durotarrock02.m2", + value = "durotarrock02.m2", }, { fileId = "201786", - value = "durotarrock03.m2", text = "durotarrock03.m2", + value = "durotarrock03.m2", }, { fileId = "201788", - value = "durotarrock04.m2", text = "durotarrock04.m2", + value = "durotarrock04.m2", }, { fileId = "201789", - value = "durotarrock05.m2", text = "durotarrock05.m2", + value = "durotarrock05.m2", }, { fileId = "201790", - value = "durotarrock06.m2", text = "durotarrock06.m2", + value = "durotarrock06.m2", }, { fileId = "201791", - value = "durotarrock07.m2", text = "durotarrock07.m2", + value = "durotarrock07.m2", }, { fileId = "201792", - value = "durotarrock08.m2", text = "durotarrock08.m2", + value = "durotarrock08.m2", }, { fileId = "201795", - value = "flatrock01.m2", text = "flatrock01.m2", + value = "flatrock01.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "201800", - value = "durotarpalm01.m2", text = "durotarpalm01.m2", + value = "durotarpalm01.m2", }, { fileId = "201801", - value = "durotarpalm02.m2", text = "durotarpalm02.m2", + value = "durotarpalm02.m2", }, { fileId = "201802", - value = "durotarpalm03.m2", text = "durotarpalm03.m2", + value = "durotarpalm03.m2", }, { fileId = "201803", - value = "durotartree01.m2", text = "durotartree01.m2", + value = "durotartree01.m2", }, { fileId = "201804", - value = "durotartree02.m2", text = "durotartree02.m2", + value = "durotartree02.m2", }, { fileId = "201805", - value = "durotartree03.m2", text = "durotartree03.m2", + value = "durotartree03.m2", }, { fileId = "201806", - value = "durotartree04.m2", text = "durotartree04.m2", + value = "durotartree04.m2", }, { fileId = "201807", - value = "durotartree05.m2", text = "durotartree05.m2", + value = "durotartree05.m2", }, { fileId = "201808", - value = "durotartree06.m2", text = "durotartree06.m2", + value = "durotartree06.m2", }, { fileId = "201809", - value = "durotartree08.m2", text = "durotartree08.m2", + value = "durotartree08.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "durotar", text = "durotar", + value = "durotar", }, { children = { @@ -76746,168 +65052,168 @@ WeakAuras.ModelPaths = { children = { { fileId = "201811", - value = "dustwallowbush01.m2", text = "dustwallowbush01.m2", + value = "dustwallowbush01.m2", }, { fileId = "201812", - value = "dustwallowbush02.m2", text = "dustwallowbush02.m2", + value = "dustwallowbush02.m2", }, { fileId = "201813", - value = "dustwallowshrub01.m2", text = "dustwallowshrub01.m2", + value = "dustwallowshrub01.m2", }, { fileId = "201814", - value = "dustwallowshrub02.m2", text = "dustwallowshrub02.m2", + value = "dustwallowshrub02.m2", }, { fileId = "201815", - value = "dustwallowshrub03.m2", text = "dustwallowshrub03.m2", + value = "dustwallowshrub03.m2", }, { fileId = "201816", - value = "dustwallowshrub04.m2", text = "dustwallowshrub04.m2", + value = "dustwallowshrub04.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "201817", - value = "dustwallowoutpost01.m2", text = "dustwallowoutpost01.m2", + value = "dustwallowoutpost01.m2", }, { fileId = "201818", - value = "dustwallowoutpost02.m2", text = "dustwallowoutpost02.m2", + value = "dustwallowoutpost02.m2", }, { fileId = "201819", - value = "dustwallowoutpost03.m2", text = "dustwallowoutpost03.m2", + value = "dustwallowoutpost03.m2", }, { fileId = "201820", - value = "dustwallowoutpost04.m2", text = "dustwallowoutpost04.m2", + value = "dustwallowoutpost04.m2", }, { fileId = "201821", - value = "dustwallowoutpost05.m2", text = "dustwallowoutpost05.m2", + value = "dustwallowoutpost05.m2", }, { fileId = "201822", - value = "dustwallowoutpost06.m2", text = "dustwallowoutpost06.m2", + value = "dustwallowoutpost06.m2", }, }, - value = "outposts", text = "outposts", + value = "outposts", }, { children = { { fileId = "201826", - value = "dustwallowtree01.m2", text = "dustwallowtree01.m2", + value = "dustwallowtree01.m2", }, { fileId = "201827", - value = "dustwallowtree02.m2", text = "dustwallowtree02.m2", + value = "dustwallowtree02.m2", }, { fileId = "201828", - value = "dustwallowtree03.m2", text = "dustwallowtree03.m2", + value = "dustwallowtree03.m2", }, { fileId = "201829", - value = "dustwallowtree04.m2", text = "dustwallowtree04.m2", + value = "dustwallowtree04.m2", }, { fileId = "201830", - value = "dustwallowtree05.m2", text = "dustwallowtree05.m2", + value = "dustwallowtree05.m2", }, { fileId = "201831", - value = "dustwallowtree06.m2", text = "dustwallowtree06.m2", + value = "dustwallowtree06.m2", }, { fileId = "201832", - value = "dustwallowtree07.m2", text = "dustwallowtree07.m2", + value = "dustwallowtree07.m2", }, { fileId = "201833", - value = "dustwallowtree08.m2", text = "dustwallowtree08.m2", + value = "dustwallowtree08.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "201837", - value = "duskwallowstonewall01.m2", text = "duskwallowstonewall01.m2", + value = "duskwallowstonewall01.m2", }, { fileId = "201838", - value = "duskwallowstonewall02.m2", text = "duskwallowstonewall02.m2", + value = "duskwallowstonewall02.m2", }, { fileId = "201839", - value = "duskwallowstonewallpost.m2", text = "duskwallowstonewallpost.m2", + value = "duskwallowstonewallpost.m2", }, { fileId = "201841", - value = "dustwallowwall01.m2", text = "dustwallowwall01.m2", + value = "dustwallowwall01.m2", }, { fileId = "201842", - value = "dustwallowwall02.m2", text = "dustwallowwall02.m2", + value = "dustwallowwall02.m2", }, { fileId = "201843", - value = "dustwallowwall03.m2", text = "dustwallowwall03.m2", + value = "dustwallowwall03.m2", }, { fileId = "201844", - value = "dustwallowwallpost.m2", text = "dustwallowwallpost.m2", + value = "dustwallowwallpost.m2", }, }, - value = "walls", text = "walls", + value = "walls", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "dustwallow", text = "dustwallow", + value = "dustwallow", }, { children = { @@ -76917,16 +65223,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "201845", - value = "illidancrystal02.m2", text = "illidancrystal02.m2", + value = "illidancrystal02.m2", }, }, - value = "illidancrystal", text = "illidancrystal", + value = "illidancrystal", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -76934,294 +65240,294 @@ WeakAuras.ModelPaths = { children = { { fileId = "201847", - value = "felwoodbush01.m2", text = "felwoodbush01.m2", + value = "felwoodbush01.m2", }, { fileId = "201849", - value = "felwoodbush02.m2", text = "felwoodbush02.m2", + value = "felwoodbush02.m2", }, { fileId = "201851", - value = "felwoodbush03.m2", text = "felwoodbush03.m2", + value = "felwoodbush03.m2", }, { fileId = "201852", - value = "felwoodbush04.m2", text = "felwoodbush04.m2", + value = "felwoodbush04.m2", }, }, - value = "bush", text = "bush", + value = "bush", }, { children = { { fileId = "201853", - value = "desolacebubble01.m2", text = "desolacebubble01.m2", + value = "desolacebubble01.m2", }, { fileId = "201854", - value = "desolacebubbles01.m2", text = "desolacebubbles01.m2", + value = "desolacebubbles01.m2", }, }, - value = "desolacebubbles", text = "desolacebubbles", + value = "desolacebubbles", }, { children = { { fileId = "201856", - value = "felwoodbubble01.m2", text = "felwoodbubble01.m2", + value = "felwoodbubble01.m2", }, { fileId = "201857", - value = "felwoodbubbles01.m2", text = "felwoodbubbles01.m2", + value = "felwoodbubbles01.m2", }, }, - value = "felwoodbubbles", text = "felwoodbubbles", + value = "felwoodbubbles", }, { children = { { fileId = "201859", - value = "felwoodmushroom01.m2", text = "felwoodmushroom01.m2", + value = "felwoodmushroom01.m2", }, { fileId = "201860", - value = "felwoodmushroom02.m2", text = "felwoodmushroom02.m2", + value = "felwoodmushroom02.m2", }, { fileId = "201864", - value = "felwoodmushroomanim.m2", text = "felwoodmushroomanim.m2", + value = "felwoodmushroomanim.m2", }, }, - value = "felwoodmushrooms", text = "felwoodmushrooms", + value = "felwoodmushrooms", }, { children = { { fileId = "201866", - value = "felwoodlamp01.m2", text = "felwoodlamp01.m2", + value = "felwoodlamp01.m2", }, }, - value = "lamp", text = "lamp", + value = "lamp", }, { children = { { fileId = "201870", - value = "nightdragon01.m2", text = "nightdragon01.m2", + value = "nightdragon01.m2", }, { fileId = "201871", - value = "nightdragon02.m2", text = "nightdragon02.m2", + value = "nightdragon02.m2", }, { fileId = "201872", - value = "songflower01.m2", text = "songflower01.m2", + value = "songflower01.m2", }, { fileId = "201873", - value = "songflower02.m2", text = "songflower02.m2", + value = "songflower02.m2", }, { fileId = "201874", - value = "whipperroot01.m2", text = "whipperroot01.m2", + value = "whipperroot01.m2", }, { fileId = "201875", - value = "whipperroot02.m2", text = "whipperroot02.m2", + value = "whipperroot02.m2", }, { fileId = "201876", - value = "windblossom01.m2", text = "windblossom01.m2", + value = "windblossom01.m2", }, { fileId = "201877", - value = "windblossom02.m2", text = "windblossom02.m2", + value = "windblossom02.m2", }, }, - value = "plantsquest", text = "plantsquest", + value = "plantsquest", }, { children = { { fileId = "201881", - value = "felwoodroots01.m2", text = "felwoodroots01.m2", + value = "felwoodroots01.m2", }, { fileId = "201882", - value = "felwoodroots02.m2", text = "felwoodroots02.m2", + value = "felwoodroots02.m2", }, { fileId = "201883", - value = "felwoodroots03.m2", text = "felwoodroots03.m2", + value = "felwoodroots03.m2", }, { fileId = "201884", - value = "felwoodroots04.m2", text = "felwoodroots04.m2", + value = "felwoodroots04.m2", }, { fileId = "201885", - value = "felwoodroots05.m2", text = "felwoodroots05.m2", + value = "felwoodroots05.m2", }, }, - value = "roots", text = "roots", + value = "roots", }, { children = { { fileId = "201900", - value = "felwoodtree01.m2", text = "felwoodtree01.m2", + value = "felwoodtree01.m2", }, { fileId = "201901", - value = "felwoodtree02.m2", text = "felwoodtree02.m2", + value = "felwoodtree02.m2", }, { fileId = "201902", - value = "felwoodtree03.m2", text = "felwoodtree03.m2", + value = "felwoodtree03.m2", }, { fileId = "201903", - value = "felwoodtree04.m2", text = "felwoodtree04.m2", + value = "felwoodtree04.m2", }, { fileId = "201904", - value = "felwoodtree05.m2", text = "felwoodtree05.m2", + value = "felwoodtree05.m2", }, { fileId = "201905", - value = "felwoodtree06.m2", text = "felwoodtree06.m2", + value = "felwoodtree06.m2", }, { fileId = "201906", - value = "felwoodtree07.m2", text = "felwoodtree07.m2", + value = "felwoodtree07.m2", }, { fileId = "201908", - value = "felwoodtreeanim01.m2", text = "felwoodtreeanim01.m2", + value = "felwoodtreeanim01.m2", }, { fileId = "201909", - value = "felwoodtreeanim02.m2", text = "felwoodtreeanim02.m2", + value = "felwoodtreeanim02.m2", }, { fileId = "201910", - value = "felwoodtreeanim03.m2", text = "felwoodtreeanim03.m2", + value = "felwoodtreeanim03.m2", }, { fileId = "201912", - value = "felwoodtreestump01.m2", text = "felwoodtreestump01.m2", + value = "felwoodtreestump01.m2", }, { fileId = "201913", - value = "felwoodtreesub01.m2", text = "felwoodtreesub01.m2", + value = "felwoodtreesub01.m2", }, { fileId = "201914", - value = "felwoodtreesub02.m2", text = "felwoodtreesub02.m2", + value = "felwoodtreesub02.m2", }, { fileId = "201915", - value = "felwoodtreesub03.m2", text = "felwoodtreesub03.m2", + value = "felwoodtreesub03.m2", }, { fileId = "201916", - value = "felwoodtreesub04.m2", text = "felwoodtreesub04.m2", + value = "felwoodtreesub04.m2", }, }, - value = "tree", text = "tree", + value = "tree", }, { children = { { fileId = "201924", - value = "petrifiedtreant01.m2", text = "petrifiedtreant01.m2", + value = "petrifiedtreant01.m2", }, { fileId = "201925", - value = "petrifiedtreant02.m2", text = "petrifiedtreant02.m2", + value = "petrifiedtreant02.m2", }, { fileId = "201926", - value = "petrifiedtreant03.m2", text = "petrifiedtreant03.m2", + value = "petrifiedtreant03.m2", }, }, - value = "treeeants", text = "treeeants", + value = "treeeants", }, { children = { { fileId = "201928", - value = "felrockwaterfall.m2", text = "felrockwaterfall.m2", + value = "felrockwaterfall.m2", }, { fileId = "201929", - value = "felwoodtallwaterfall01.m2", text = "felwoodtallwaterfall01.m2", + value = "felwoodtallwaterfall01.m2", }, }, - value = "waterfall", text = "waterfall", + value = "waterfall", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "felwood", text = "felwood", + value = "felwood", }, { children = { @@ -77231,107 +65537,107 @@ WeakAuras.ModelPaths = { children = { { fileId = "201930", - value = "feralasferns01.m2", text = "feralasferns01.m2", + value = "feralasferns01.m2", }, }, - value = "fern", text = "fern", + value = "fern", }, { children = { { fileId = "201933", - value = "feralasstone01.m2", text = "feralasstone01.m2", + value = "feralasstone01.m2", }, { fileId = "201934", - value = "feralasstone02.m2", text = "feralasstone02.m2", + value = "feralasstone02.m2", }, }, - value = "stones", text = "stones", + value = "stones", }, { children = { { fileId = "201935", - value = "feralastree01.m2", text = "feralastree01.m2", + value = "feralastree01.m2", }, { fileId = "201936", - value = "feralastree02.m2", text = "feralastree02.m2", + value = "feralastree02.m2", }, { fileId = "201937", - value = "feralastree03.m2", text = "feralastree03.m2", + value = "feralastree03.m2", }, { fileId = "201938", - value = "feralastree04.m2", text = "feralastree04.m2", + value = "feralastree04.m2", }, { fileId = "201939", - value = "feralastree04_capped.m2", text = "feralastree04_capped.m2", + value = "feralastree04_capped.m2", }, { fileId = "201940", - value = "feralastree05.m2", text = "feralastree05.m2", + value = "feralastree05.m2", }, { fileId = "201942", - value = "feralastreeroots01.m2", text = "feralastreeroots01.m2", + value = "feralastreeroots01.m2", }, { fileId = "201944", - value = "feralastreeroots02.m2", text = "feralastreeroots02.m2", + value = "feralastreeroots02.m2", }, { fileId = "201945", - value = "feralastreeroots03.m2", text = "feralastreeroots03.m2", + value = "feralastreeroots03.m2", }, { fileId = "201946", - value = "feralastreeroots04.m2", text = "feralastreeroots04.m2", + value = "feralastreeroots04.m2", }, { fileId = "201947", - value = "feralastreeroots05.m2", text = "feralastreeroots05.m2", + value = "feralastreeroots05.m2", }, { fileId = "201948", - value = "feralastreestump01.m2", text = "feralastreestump01.m2", + value = "feralastreestump01.m2", }, { fileId = "201949", - value = "feralastreestump02.m2", text = "feralastreestump02.m2", + value = "feralastreestump02.m2", }, }, - value = "tree", text = "tree", + value = "tree", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "feralas", text = "feralas", + value = "feralas", }, { children = { @@ -77341,53 +65647,53 @@ WeakAuras.ModelPaths = { children = { { fileId = "201968", - value = "elvendestroyerwreckback.m2", text = "elvendestroyerwreckback.m2", + value = "elvendestroyerwreckback.m2", }, }, - value = "elevendestoryerwreckback", text = "elevendestoryerwreckback", + value = "elevendestoryerwreckback", }, { children = { { fileId = "201972", - value = "elvendestroyerwreckfront.m2", text = "elvendestroyerwreckfront.m2", + value = "elvendestroyerwreckfront.m2", }, }, - value = "elevendestoryerwreckfront", text = "elevendestoryerwreckfront", + value = "elevendestoryerwreckfront", }, { children = { { fileId = "201973", - value = "elvendestroyerwrecksails.m2", text = "elvendestroyerwrecksails.m2", + value = "elvendestroyerwrecksails.m2", }, }, - value = "elevendestoryerwrecksails", text = "elevendestoryerwrecksails", + value = "elevendestoryerwrecksails", }, { children = { { fileId = "201982", - value = "nightelfguardtower.m2", text = "nightelfguardtower.m2", + value = "nightelfguardtower.m2", }, }, - value = "nightelfguardtower", text = "nightelfguardtower", + value = "nightelfguardtower", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "generic", text = "generic", + value = "generic", }, { children = { @@ -77397,16 +65703,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "201985", - value = "hyjalgate.m2", text = "hyjalgate.m2", + value = "hyjalgate.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -77414,87 +65720,87 @@ WeakAuras.ModelPaths = { children = { { fileId = "201987", - value = "hyjalrock01.m2", text = "hyjalrock01.m2", + value = "hyjalrock01.m2", }, { fileId = "201988", - value = "hyjalrock02.m2", text = "hyjalrock02.m2", + value = "hyjalrock02.m2", }, { fileId = "201989", - value = "hyjalrock03.m2", text = "hyjalrock03.m2", + value = "hyjalrock03.m2", }, { fileId = "201990", - value = "hyjalrock04.m2", text = "hyjalrock04.m2", + value = "hyjalrock04.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "201992", - value = "theworldtree.m2", text = "theworldtree.m2", + value = "theworldtree.m2", }, { fileId = "201993", - value = "theworldtree_02.m2", text = "theworldtree_02.m2", + value = "theworldtree_02.m2", }, }, - value = "theworldtree", text = "theworldtree", + value = "theworldtree", }, { children = { { fileId = "201998", - value = "hyjalfallentree01.m2", text = "hyjalfallentree01.m2", + value = "hyjalfallentree01.m2", }, { fileId = "201999", - value = "hyjaltree01.m2", text = "hyjaltree01.m2", + value = "hyjaltree01.m2", }, { fileId = "202000", - value = "hyjaltree02.m2", text = "hyjaltree02.m2", + value = "hyjaltree02.m2", }, { fileId = "202001", - value = "hyjaltree03.m2", text = "hyjaltree03.m2", + value = "hyjaltree03.m2", }, { fileId = "202002", - value = "hyjaltree04.m2", text = "hyjaltree04.m2", + value = "hyjaltree04.m2", }, { fileId = "202003", - value = "hyjaltree05.m2", text = "hyjaltree05.m2", + value = "hyjaltree05.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "hyjal", text = "hyjal", + value = "hyjal", }, { children = { @@ -77504,245 +65810,245 @@ WeakAuras.ModelPaths = { children = { { fileId = "202013", - value = "felpinecone.m2", text = "felpinecone.m2", + value = "felpinecone.m2", }, }, - value = "felpinecone", text = "felpinecone", + value = "felpinecone", }, { children = { { fileId = "202016", - value = "furbolgtent.m2", text = "furbolgtent.m2", + value = "furbolgtent.m2", }, { fileId = "202017", - value = "furbolgtent2.m2", text = "furbolgtent2.m2", + value = "furbolgtent2.m2", }, }, - value = "furbolgtent", text = "furbolgtent", + value = "furbolgtent", }, { children = { { fileId = "202018", - value = "furbolgtotem01.m2", text = "furbolgtotem01.m2", + value = "furbolgtotem01.m2", }, { fileId = "202019", - value = "furbolgtotem02.m2", text = "furbolgtotem02.m2", + value = "furbolgtotem02.m2", }, }, - value = "furbolgtotem", text = "furbolgtotem", + value = "furbolgtotem", }, { children = { { fileId = "202021", - value = "kalidarbush01.m2", text = "kalidarbush01.m2", + value = "kalidarbush01.m2", }, { fileId = "202022", - value = "kalidarbush02.m2", text = "kalidarbush02.m2", + value = "kalidarbush02.m2", }, { fileId = "202023", - value = "kalidarbush03.m2", text = "kalidarbush03.m2", + value = "kalidarbush03.m2", }, { fileId = "202024", - value = "kalidarbush04.m2", text = "kalidarbush04.m2", + value = "kalidarbush04.m2", }, }, - value = "kalidarbushes", text = "kalidarbushes", + value = "kalidarbushes", }, { children = { { fileId = "202029", - value = "kalidarnest01.m2", text = "kalidarnest01.m2", + value = "kalidarnest01.m2", }, { fileId = "202030", - value = "kalidarnest02.m2", text = "kalidarnest02.m2", + value = "kalidarnest02.m2", }, }, - value = "kalidarharpynest", text = "kalidarharpynest", + value = "kalidarharpynest", }, { children = { { fileId = "202034", - value = "kalidargiantroot01.m2", text = "kalidargiantroot01.m2", + value = "kalidargiantroot01.m2", }, { fileId = "202035", - value = "kalidargiantroot02.m2", text = "kalidargiantroot02.m2", + value = "kalidargiantroot02.m2", }, { fileId = "202038", - value = "kalidarroots01.m2", text = "kalidarroots01.m2", + value = "kalidarroots01.m2", }, { fileId = "202039", - value = "kalidarroots02.m2", text = "kalidarroots02.m2", + value = "kalidarroots02.m2", }, { fileId = "202040", - value = "kalidarroots03.m2", text = "kalidarroots03.m2", + value = "kalidarroots03.m2", }, { fileId = "202041", - value = "kalidarroots04.m2", text = "kalidarroots04.m2", + value = "kalidarroots04.m2", }, }, - value = "kalidarroots", text = "kalidarroots", + value = "kalidarroots", }, { children = { { fileId = "202044", - value = "kalidartreelog01.m2", text = "kalidartreelog01.m2", + value = "kalidartreelog01.m2", }, { fileId = "202045", - value = "kalidartreelog02.m2", text = "kalidartreelog02.m2", + value = "kalidartreelog02.m2", }, }, - value = "kalidartreelogs", text = "kalidartreelogs", + value = "kalidartreelogs", }, { children = { { fileId = "202048", - value = "kalidarfallentree01.m2", text = "kalidarfallentree01.m2", + value = "kalidarfallentree01.m2", }, { fileId = "202050", - value = "kalidartree01.m2", text = "kalidartree01.m2", + value = "kalidartree01.m2", }, { fileId = "202051", - value = "kalidartree02.m2", text = "kalidartree02.m2", + value = "kalidartree02.m2", }, { fileId = "202052", - value = "kalidartree03.m2", text = "kalidartree03.m2", + value = "kalidartree03.m2", }, { fileId = "202053", - value = "kalidartree04.m2", text = "kalidartree04.m2", + value = "kalidartree04.m2", }, { fileId = "202054", - value = "kalidartree05.m2", text = "kalidartree05.m2", + value = "kalidartree05.m2", }, { fileId = "202055", - value = "kalidartree06.m2", text = "kalidartree06.m2", + value = "kalidartree06.m2", }, { fileId = "202056", - value = "kalidartree07.m2", text = "kalidartree07.m2", + value = "kalidartree07.m2", }, { fileId = "202057", - value = "kalidartree08.m2", text = "kalidartree08.m2", + value = "kalidartree08.m2", }, { fileId = "202058", - value = "kalidartree09.m2", text = "kalidartree09.m2", + value = "kalidartree09.m2", }, }, - value = "kalidartrees", text = "kalidartrees", + value = "kalidartrees", }, { children = { { fileId = "202059", - value = "kalidartreestump01.m2", text = "kalidartreestump01.m2", + value = "kalidartreestump01.m2", }, { fileId = "202060", - value = "kalidartreestump02.m2", text = "kalidartreestump02.m2", + value = "kalidartreestump02.m2", }, }, - value = "kalidartreestumps", text = "kalidartreestumps", + value = "kalidartreestumps", }, { children = { { fileId = "202061", - value = "moowellwaterfx.m2", text = "moowellwaterfx.m2", + value = "moowellwaterfx.m2", }, }, - value = "moonwellwater", text = "moonwellwater", + value = "moonwellwater", }, { children = { { fileId = "202063", - value = "oracletree.m2", text = "oracletree.m2", + value = "oracletree.m2", }, { fileId = "202064", - value = "oracletreebank.m2", text = "oracletreebank.m2", + value = "oracletreebank.m2", }, }, - value = "oracletree", text = "oracletree", + value = "oracletree", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "kalidar", text = "kalidar", + value = "kalidar", }, { children = { @@ -77752,32 +66058,32 @@ WeakAuras.ModelPaths = { children = { { fileId = "202071", - value = "centaurteleporter01.m2", text = "centaurteleporter01.m2", + value = "centaurteleporter01.m2", }, { fileId = "202074", - value = "maraudonstaffcreator.m2", text = "maraudonstaffcreator.m2", + value = "maraudonstaffcreator.m2", }, }, - value = "button", text = "button", + value = "button", }, { children = { { fileId = "202077", - value = "stone_door01.m2", text = "stone_door01.m2", + value = "stone_door01.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -77785,681 +66091,681 @@ WeakAuras.ModelPaths = { children = { { fileId = "202080", - value = "bridgebrazierblue01.m2", text = "bridgebrazierblue01.m2", + value = "bridgebrazierblue01.m2", }, { fileId = "202081", - value = "bridgebraziergreen01.m2", text = "bridgebraziergreen01.m2", + value = "bridgebraziergreen01.m2", }, { fileId = "202082", - value = "bridgebrazierpurple01.m2", text = "bridgebrazierpurple01.m2", + value = "bridgebrazierpurple01.m2", }, }, - value = "bridgebraziers", text = "bridgebraziers", + value = "bridgebraziers", }, { children = { { fileId = "202086", - value = "centaurbrazierred01.m2", text = "centaurbrazierred01.m2", + value = "centaurbrazierred01.m2", }, }, - value = "centaurbraziers", text = "centaurbraziers", + value = "centaurbraziers", }, { children = { { fileId = "202088", - value = "centaurstatue01.m2", text = "centaurstatue01.m2", + value = "centaurstatue01.m2", }, }, - value = "centaurstatue", text = "centaurstatue", + value = "centaurstatue", }, { children = { { fileId = "202092", - value = "maraudoncorruptedtree01.m2", text = "maraudoncorruptedtree01.m2", + value = "maraudoncorruptedtree01.m2", }, { fileId = "202093", - value = "maraudoncorruptedtree02.m2", text = "maraudoncorruptedtree02.m2", + value = "maraudoncorruptedtree02.m2", }, { fileId = "202097", - value = "maraudonmushroomlight01.m2", text = "maraudonmushroomlight01.m2", + value = "maraudonmushroomlight01.m2", }, { fileId = "202098", - value = "maraudonmushroomlight02.m2", text = "maraudonmushroomlight02.m2", + value = "maraudonmushroomlight02.m2", }, { fileId = "202099", - value = "maraudonpuffballred.m2", text = "maraudonpuffballred.m2", + value = "maraudonpuffballred.m2", }, { fileId = "202100", - value = "maraudonpuffballred02.m2", text = "maraudonpuffballred02.m2", + value = "maraudonpuffballred02.m2", }, { fileId = "202101", - value = "maraudonpuffballred03.m2", text = "maraudonpuffballred03.m2", + value = "maraudonpuffballred03.m2", }, { fileId = "202104", - value = "maraudonspawnertree.m2", text = "maraudonspawnertree.m2", + value = "maraudonspawnertree.m2", }, { fileId = "202106", - value = "maraudonspewertree.m2", text = "maraudonspewertree.m2", + value = "maraudonspewertree.m2", }, { fileId = "202107", - value = "maraudonspewertreebosscolor.m2", text = "maraudonspewertreebosscolor.m2", + value = "maraudonspewertreebosscolor.m2", }, { fileId = "202109", - value = "maraudonsporetree.m2", text = "maraudonsporetree.m2", + value = "maraudonsporetree.m2", }, { fileId = "202111", - value = "maraudontransitiontree01.m2", text = "maraudontransitiontree01.m2", + value = "maraudontransitiontree01.m2", }, { fileId = "202112", - value = "maraudontransitiontree02.m2", text = "maraudontransitiontree02.m2", + value = "maraudontransitiontree02.m2", }, }, - value = "corruptedplants", text = "corruptedplants", + value = "corruptedplants", }, { children = { { fileId = "202123", - value = "amethystcrystal01.m2", text = "amethystcrystal01.m2", + value = "amethystcrystal01.m2", }, { fileId = "202124", - value = "amethystcrystal02.m2", text = "amethystcrystal02.m2", + value = "amethystcrystal02.m2", }, { fileId = "202125", - value = "amethystcrystal03.m2", text = "amethystcrystal03.m2", + value = "amethystcrystal03.m2", }, { fileId = "202126", - value = "amethystcrystal04.m2", text = "amethystcrystal04.m2", + value = "amethystcrystal04.m2", }, { fileId = "202127", - value = "amethystcrystal05.m2", text = "amethystcrystal05.m2", + value = "amethystcrystal05.m2", }, { fileId = "202128", - value = "amethystcrystal06.m2", text = "amethystcrystal06.m2", + value = "amethystcrystal06.m2", }, { fileId = "202129", - value = "diamondcrystal01.m2", text = "diamondcrystal01.m2", + value = "diamondcrystal01.m2", }, { fileId = "202130", - value = "diamondcrystal02.m2", text = "diamondcrystal02.m2", + value = "diamondcrystal02.m2", }, { fileId = "202131", - value = "diamondcrystal03.m2", text = "diamondcrystal03.m2", + value = "diamondcrystal03.m2", }, { fileId = "202132", - value = "diamondcrystal04.m2", text = "diamondcrystal04.m2", + value = "diamondcrystal04.m2", }, { fileId = "202136", - value = "maraudoncrystalred01.m2", text = "maraudoncrystalred01.m2", + value = "maraudoncrystalred01.m2", }, { fileId = "202140", - value = "rubycrystal01.m2", text = "rubycrystal01.m2", + value = "rubycrystal01.m2", }, { fileId = "202141", - value = "rubycrystal02.m2", text = "rubycrystal02.m2", + value = "rubycrystal02.m2", }, { fileId = "202142", - value = "rubycrystal03.m2", text = "rubycrystal03.m2", + value = "rubycrystal03.m2", }, { fileId = "202143", - value = "rubycrystal04.m2", text = "rubycrystal04.m2", + value = "rubycrystal04.m2", }, { fileId = "202144", - value = "rubycrystal05.m2", text = "rubycrystal05.m2", + value = "rubycrystal05.m2", }, { fileId = "202145", - value = "rubycrystal06.m2", text = "rubycrystal06.m2", + value = "rubycrystal06.m2", }, { fileId = "202146", - value = "rubycrystal07.m2", text = "rubycrystal07.m2", + value = "rubycrystal07.m2", }, { fileId = "202147", - value = "rubycrystal08.m2", text = "rubycrystal08.m2", + value = "rubycrystal08.m2", }, { fileId = "202148", - value = "rubycrystal09.m2", text = "rubycrystal09.m2", + value = "rubycrystal09.m2", }, { fileId = "202149", - value = "rubycrystallarge01.m2", text = "rubycrystallarge01.m2", + value = "rubycrystallarge01.m2", }, { fileId = "202150", - value = "rubycrystaltall01.m2", text = "rubycrystaltall01.m2", + value = "rubycrystaltall01.m2", }, }, - value = "crystals", text = "crystals", + value = "crystals", }, { children = { { fileId = "202154", - value = "maraudon_drippingflower01.m2", text = "maraudon_drippingflower01.m2", + value = "maraudon_drippingflower01.m2", }, }, - value = "flowers", text = "flowers", + value = "flowers", }, { children = { { fileId = "202158", - value = "grovegravemound01.m2", text = "grovegravemound01.m2", + value = "grovegravemound01.m2", }, }, - value = "grovegravemound", text = "grovegravemound", + value = "grovegravemound", }, { children = { { fileId = "202164", - value = "maraudondetail01.m2", text = "maraudondetail01.m2", + value = "maraudondetail01.m2", }, { fileId = "202165", - value = "maraudondetail02.m2", text = "maraudondetail02.m2", + value = "maraudondetail02.m2", }, { fileId = "202166", - value = "maraudondetail03.m2", text = "maraudondetail03.m2", + value = "maraudondetail03.m2", }, { fileId = "202167", - value = "maraudondetail04.m2", text = "maraudondetail04.m2", + value = "maraudondetail04.m2", }, { fileId = "202168", - value = "maraudondetail05.m2", text = "maraudondetail05.m2", + value = "maraudondetail05.m2", }, { fileId = "202169", - value = "maraudondetail06.m2", text = "maraudondetail06.m2", + value = "maraudondetail06.m2", }, { fileId = "202170", - value = "maraudondetail07.m2", text = "maraudondetail07.m2", + value = "maraudondetail07.m2", }, }, - value = "mauradondetail", text = "mauradondetail", + value = "mauradondetail", }, { children = { { fileId = "202173", - value = "maraudonmushroomspikey01.m2", text = "maraudonmushroomspikey01.m2", + value = "maraudonmushroomspikey01.m2", }, { fileId = "202174", - value = "maraudonmushroomspikey02.m2", text = "maraudonmushroomspikey02.m2", + value = "maraudonmushroomspikey02.m2", }, { fileId = "202176", - value = "maraudonshroom01.m2", text = "maraudonshroom01.m2", + value = "maraudonshroom01.m2", }, { fileId = "202177", - value = "maraudonshroom02.m2", text = "maraudonshroom02.m2", + value = "maraudonshroom02.m2", }, { fileId = "202178", - value = "maraudonshroom03.m2", text = "maraudonshroom03.m2", + value = "maraudonshroom03.m2", }, }, - value = "mushrooms", text = "mushrooms", + value = "mushrooms", }, { children = { { fileId = "202182", - value = "maraudonpod01.m2", text = "maraudonpod01.m2", + value = "maraudonpod01.m2", }, { fileId = "202183", - value = "maraudonpod02.m2", text = "maraudonpod02.m2", + value = "maraudonpod02.m2", }, }, - value = "pods", text = "pods", + value = "pods", }, { children = { { fileId = "202186", - value = "maraudonroot01.m2", text = "maraudonroot01.m2", + value = "maraudonroot01.m2", }, { fileId = "202187", - value = "maraudonroot02.m2", text = "maraudonroot02.m2", + value = "maraudonroot02.m2", }, { fileId = "202188", - value = "maraudonroot03.m2", text = "maraudonroot03.m2", + value = "maraudonroot03.m2", }, { fileId = "202189", - value = "maraudonroot04.m2", text = "maraudonroot04.m2", + value = "maraudonroot04.m2", }, { fileId = "202190", - value = "maraudonroot05.m2", text = "maraudonroot05.m2", + value = "maraudonroot05.m2", }, { fileId = "202191", - value = "maraudonroot06.m2", text = "maraudonroot06.m2", + value = "maraudonroot06.m2", }, { fileId = "202192", - value = "maraudonroot07.m2", text = "maraudonroot07.m2", + value = "maraudonroot07.m2", }, }, - value = "roots", text = "roots", + value = "roots", }, { children = { { fileId = "202194", - value = "ruinedcentaurtent01.m2", text = "ruinedcentaurtent01.m2", + value = "ruinedcentaurtent01.m2", }, { fileId = "202195", - value = "ruinedcentaurtent02.m2", text = "ruinedcentaurtent02.m2", + value = "ruinedcentaurtent02.m2", }, { fileId = "202196", - value = "ruinedcentaurtent03.m2", text = "ruinedcentaurtent03.m2", + value = "ruinedcentaurtent03.m2", }, { fileId = "202197", - value = "ruinedcentaurtent04.m2", text = "ruinedcentaurtent04.m2", + value = "ruinedcentaurtent04.m2", }, }, - value = "ruinedtents", text = "ruinedtents", + value = "ruinedtents", }, { children = { { fileId = "202200", - value = "mrdnsatyrbanner01.m2", text = "mrdnsatyrbanner01.m2", + value = "mrdnsatyrbanner01.m2", }, { fileId = "202201", - value = "mrdnsatyrbanner02.m2", text = "mrdnsatyrbanner02.m2", + value = "mrdnsatyrbanner02.m2", }, { fileId = "202202", - value = "mrdnsatyrbanner03.m2", text = "mrdnsatyrbanner03.m2", + value = "mrdnsatyrbanner03.m2", }, }, - value = "satyrbanners", text = "satyrbanners", + value = "satyrbanners", }, { children = { { fileId = "202203", - value = "satyrfloorbrazierblue01.m2", text = "satyrfloorbrazierblue01.m2", + value = "satyrfloorbrazierblue01.m2", }, { fileId = "202204", - value = "satyrfloorbraziergreen01.m2", text = "satyrfloorbraziergreen01.m2", + value = "satyrfloorbraziergreen01.m2", }, { fileId = "202205", - value = "satyrfloorbrazierpurple01.m2", text = "satyrfloorbrazierpurple01.m2", + value = "satyrfloorbrazierpurple01.m2", }, }, - value = "satyrfloorbraziers", text = "satyrfloorbraziers", + value = "satyrfloorbraziers", }, { children = { { fileId = "202208", - value = "satyr_graves01.m2", text = "satyr_graves01.m2", + value = "satyr_graves01.m2", }, { fileId = "202209", - value = "satyr_graves02.m2", text = "satyr_graves02.m2", + value = "satyr_graves02.m2", }, { fileId = "202210", - value = "satyr_graves03.m2", text = "satyr_graves03.m2", + value = "satyr_graves03.m2", }, { fileId = "202211", - value = "satyr_graves04.m2", text = "satyr_graves04.m2", + value = "satyr_graves04.m2", }, { fileId = "202212", - value = "satyr_graves05.m2", text = "satyr_graves05.m2", + value = "satyr_graves05.m2", }, { fileId = "202213", - value = "satyr_graves06.m2", text = "satyr_graves06.m2", + value = "satyr_graves06.m2", }, }, - value = "satyrgraves", text = "satyrgraves", + value = "satyrgraves", }, { children = { { fileId = "202216", - value = "satyrhangingbrazierblue01.m2", text = "satyrhangingbrazierblue01.m2", + value = "satyrhangingbrazierblue01.m2", }, { fileId = "202217", - value = "satyrhangingbrazierblue02.m2", text = "satyrhangingbrazierblue02.m2", + value = "satyrhangingbrazierblue02.m2", }, { fileId = "202218", - value = "satyrhangingbrazierpurple01.m2", text = "satyrhangingbrazierpurple01.m2", + value = "satyrhangingbrazierpurple01.m2", }, }, - value = "satyrhangingbraziers", text = "satyrhangingbraziers", + value = "satyrhangingbraziers", }, { children = { { fileId = "202220", - value = "satyrwall01.m2", text = "satyrwall01.m2", + value = "satyrwall01.m2", }, { fileId = "202221", - value = "satyrwall02.m2", text = "satyrwall02.m2", + value = "satyrwall02.m2", }, { fileId = "202222", - value = "satyrwall03.m2", text = "satyrwall03.m2", + value = "satyrwall03.m2", }, { fileId = "202223", - value = "satyrwall04.m2", text = "satyrwall04.m2", + value = "satyrwall04.m2", }, }, - value = "satyrwalls", text = "satyrwalls", + value = "satyrwalls", }, { children = { { fileId = "202225", - value = "sporelight01.m2", text = "sporelight01.m2", + value = "sporelight01.m2", }, { fileId = "202229", - value = "sporelightyellow01.m2", text = "sporelightyellow01.m2", + value = "sporelightyellow01.m2", }, }, - value = "sporelight", text = "sporelight", + value = "sporelight", }, { children = { { fileId = "202231", - value = "maraudonspore01.m2", text = "maraudonspore01.m2", + value = "maraudonspore01.m2", }, }, - value = "spores", text = "spores", + value = "spores", }, { children = { { fileId = "202232", - value = "maraudonstalactites01.m2", text = "maraudonstalactites01.m2", + value = "maraudonstalactites01.m2", }, { fileId = "202233", - value = "maraudonstalactites02.m2", text = "maraudonstalactites02.m2", + value = "maraudonstalactites02.m2", }, { fileId = "202234", - value = "maraudonstalactites03.m2", text = "maraudonstalactites03.m2", + value = "maraudonstalactites03.m2", }, { fileId = "202235", - value = "maraudonstalactites04.m2", text = "maraudonstalactites04.m2", + value = "maraudonstalactites04.m2", }, { fileId = "202236", - value = "maraudonstalactites05.m2", text = "maraudonstalactites05.m2", + value = "maraudonstalactites05.m2", }, }, - value = "stalactites", text = "stalactites", + value = "stalactites", }, { children = { { fileId = "202238", - value = "maraudonnastyvine01.m2", text = "maraudonnastyvine01.m2", + value = "maraudonnastyvine01.m2", }, { fileId = "202239", - value = "maraudonnastyvine02.m2", text = "maraudonnastyvine02.m2", + value = "maraudonnastyvine02.m2", }, { fileId = "202240", - value = "maraudonnastyvine03.m2", text = "maraudonnastyvine03.m2", + value = "maraudonnastyvine03.m2", }, { fileId = "202241", - value = "maraudonnastyvine04.m2", text = "maraudonnastyvine04.m2", + value = "maraudonnastyvine04.m2", }, { fileId = "202242", - value = "maraudonnastyvine05.m2", text = "maraudonnastyvine05.m2", + value = "maraudonnastyvine05.m2", }, { fileId = "202243", - value = "maraudonnastyvine06.m2", text = "maraudonnastyvine06.m2", + value = "maraudonnastyvine06.m2", }, { fileId = "202244", - value = "maraudonnastyvine07.m2", text = "maraudonnastyvine07.m2", + value = "maraudonnastyvine07.m2", }, }, - value = "vines", text = "vines", + value = "vines", }, { children = { { fileId = "202246", - value = "maraudon_waterfall01.m2", text = "maraudon_waterfall01.m2", + value = "maraudon_waterfall01.m2", }, { fileId = "202247", - value = "maraudon_waterfall02.m2", text = "maraudon_waterfall02.m2", + value = "maraudon_waterfall02.m2", }, { fileId = "202248", - value = "maraudon_waterfall03.m2", text = "maraudon_waterfall03.m2", + value = "maraudon_waterfall03.m2", }, { fileId = "202249", - value = "maraudon_waterfall04.m2", text = "maraudon_waterfall04.m2", + value = "maraudon_waterfall04.m2", }, { fileId = "202251", - value = "maraudoncorruptedfalls.m2", text = "maraudoncorruptedfalls.m2", + value = "maraudoncorruptedfalls.m2", }, { fileId = "202252", - value = "maraudoncorruptedfalls02.m2", text = "maraudoncorruptedfalls02.m2", + value = "maraudoncorruptedfalls02.m2", }, { fileId = "202253", - value = "maraudoncorruptedfalls03.m2", text = "maraudoncorruptedfalls03.m2", + value = "maraudoncorruptedfalls03.m2", }, }, - value = "waterfalls", text = "waterfalls", + value = "waterfalls", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "mauradon", text = "mauradon", + value = "mauradon", }, { children = { @@ -78469,87 +66775,87 @@ WeakAuras.ModelPaths = { children = { { fileId = "202258", - value = "druidstone.m2", text = "druidstone.m2", + value = "druidstone.m2", }, { fileId = "202259", - value = "druidstonetopless.m2", text = "druidstonetopless.m2", + value = "druidstonetopless.m2", }, }, - value = "druidstone", text = "druidstone", + value = "druidstone", }, { children = { { fileId = "202261", - value = "moongladebush01.m2", text = "moongladebush01.m2", + value = "moongladebush01.m2", }, { fileId = "202263", - value = "moongladebush02.m2", text = "moongladebush02.m2", + value = "moongladebush02.m2", }, }, - value = "moongladebushes", text = "moongladebushes", + value = "moongladebushes", }, { children = { { fileId = "202271", - value = "moongladetree01.m2", text = "moongladetree01.m2", + value = "moongladetree01.m2", }, { fileId = "202272", - value = "moongladetree02.m2", text = "moongladetree02.m2", + value = "moongladetree02.m2", }, { fileId = "202273", - value = "moongladetree03.m2", text = "moongladetree03.m2", + value = "moongladetree03.m2", }, { fileId = "202274", - value = "moongladetree04.m2", text = "moongladetree04.m2", + value = "moongladetree04.m2", }, { fileId = "202275", - value = "moongladetree05.m2", text = "moongladetree05.m2", + value = "moongladetree05.m2", }, { fileId = "202276", - value = "moongladetree06.m2", text = "moongladetree06.m2", + value = "moongladetree06.m2", }, { fileId = "202277", - value = "moongladetree07.m2", text = "moongladetree07.m2", + value = "moongladetree07.m2", }, { fileId = "202278", - value = "moongladetree08.m2", text = "moongladetree08.m2", + value = "moongladetree08.m2", }, }, - value = "moongladetrees", text = "moongladetrees", + value = "moongladetrees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "moonglade", text = "moonglade", + value = "moonglade", }, { children = { @@ -78559,167 +66865,167 @@ WeakAuras.ModelPaths = { children = { { fileId = "202292", - value = "burnedgypsywagon01.m2", text = "burnedgypsywagon01.m2", + value = "burnedgypsywagon01.m2", }, { fileId = "202293", - value = "burnedgypsywagon02.m2", text = "burnedgypsywagon02.m2", + value = "burnedgypsywagon02.m2", }, }, - value = "burnedwagons", text = "burnedwagons", + value = "burnedwagons", }, { children = { { fileId = "202295", - value = "funeralpyre01.m2", text = "funeralpyre01.m2", + value = "funeralpyre01.m2", }, }, - value = "funeralpyres", text = "funeralpyres", + value = "funeralpyres", }, { children = { { fileId = "202297", - value = "pinecone.m2", text = "pinecone.m2", + value = "pinecone.m2", }, }, - value = "pinecone", text = "pinecone", + value = "pinecone", }, { children = { { fileId = "202298", - value = "mullgorerockarch.m2", text = "mullgorerockarch.m2", + value = "mullgorerockarch.m2", }, }, - value = "rockarch", text = "rockarch", + value = "rockarch", }, { children = { { fileId = "202300", - value = "mullgorerock01.m2", text = "mullgorerock01.m2", + value = "mullgorerock01.m2", }, { fileId = "202301", - value = "mullgorerock02.m2", text = "mullgorerock02.m2", + value = "mullgorerock02.m2", }, { fileId = "202302", - value = "mullgorerock03.m2", text = "mullgorerock03.m2", + value = "mullgorerock03.m2", }, { fileId = "202303", - value = "mullgorerock04.m2", text = "mullgorerock04.m2", + value = "mullgorerock04.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "202305", - value = "mullgorethorn01.m2", text = "mullgorethorn01.m2", + value = "mullgorethorn01.m2", }, { fileId = "202306", - value = "mullgorethorn02.m2", text = "mullgorethorn02.m2", + value = "mullgorethorn02.m2", }, { fileId = "202307", - value = "mullgorethorn03.m2", text = "mullgorethorn03.m2", + value = "mullgorethorn03.m2", }, { fileId = "202308", - value = "mullgorethorn04.m2", text = "mullgorethorn04.m2", + value = "mullgorethorn04.m2", }, { fileId = "202309", - value = "mullgorethorn05.m2", text = "mullgorethorn05.m2", + value = "mullgorethorn05.m2", }, { fileId = "202310", - value = "mullgorethorn06.m2", text = "mullgorethorn06.m2", + value = "mullgorethorn06.m2", }, { fileId = "202311", - value = "mullgorethorn07.m2", text = "mullgorethorn07.m2", + value = "mullgorethorn07.m2", }, { fileId = "202312", - value = "mullgorethornspike.m2", text = "mullgorethornspike.m2", + value = "mullgorethornspike.m2", }, }, - value = "thorns", text = "thorns", + value = "thorns", }, { children = { { fileId = "202316", - value = "elevatorcar.m2", text = "elevatorcar.m2", + value = "elevatorcar.m2", }, { fileId = "202317", - value = "kodoelevatormachine.m2", text = "kodoelevatormachine.m2", + value = "kodoelevatormachine.m2", }, }, - value = "thunderbluffelevator", text = "thunderbluffelevator", + value = "thunderbluffelevator", }, { children = { { fileId = "202321", - value = "mullgorefallentree01.m2", text = "mullgorefallentree01.m2", + value = "mullgorefallentree01.m2", }, { fileId = "202322", - value = "mullgoretree01.m2", text = "mullgoretree01.m2", + value = "mullgoretree01.m2", }, { fileId = "202323", - value = "mullgoretree02.m2", text = "mullgoretree02.m2", + value = "mullgoretree02.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "mulgore", text = "mulgore", + value = "mulgore", }, { children = { @@ -78727,48 +67033,48 @@ WeakAuras.ModelPaths = { children = { { fileId = "202324", - value = "onyxiasgate01.m2", text = "onyxiasgate01.m2", + value = "onyxiasgate01.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, { children = { { fileId = "202325", - value = "onyziaslairfallingrocks.m2", text = "onyziaslairfallingrocks.m2", + value = "onyziaslairfallingrocks.m2", }, }, - value = "fallingrocks", text = "fallingrocks", + value = "fallingrocks", }, { children = { { fileId = "202326", - value = "onyziaslairlavasplash.m2", text = "onyziaslairlavasplash.m2", + value = "onyziaslairlavasplash.m2", }, { fileId = "202327", - value = "onyziaslairlavatrap.m2", text = "onyziaslairlavatrap.m2", + value = "onyziaslairlavatrap.m2", }, { fileId = "202328", - value = "onyziaslairlavatrapmirror.m2", text = "onyziaslairlavatrapmirror.m2", + value = "onyziaslairlavatrapmirror.m2", }, }, - value = "lavatraps", text = "lavatraps", + value = "lavatraps", }, }, - value = "onyxiaslair", text = "onyxiaslair", + value = "onyxiaslair", }, { children = { @@ -78778,133 +67084,133 @@ WeakAuras.ModelPaths = { children = { { fileId = "202334", - value = "kl_auctionhousecollide.m2", text = "kl_auctionhousecollide.m2", + value = "kl_auctionhousecollide.m2", }, }, - value = "auctionhouse", text = "auctionhouse", + value = "auctionhouse", }, { children = { { fileId = "202335", - value = "orgrimmardoor.m2", text = "orgrimmardoor.m2", + value = "orgrimmardoor.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, { children = { { fileId = "202337", - value = "magtheridontrophypost.m2", text = "magtheridontrophypost.m2", + value = "magtheridontrophypost.m2", }, }, - value = "magtheridontrophypost", text = "magtheridontrophypost", + value = "magtheridontrophypost", }, { children = { { fileId = "202344", - value = "manerothtree.m2", text = "manerothtree.m2", + value = "manerothtree.m2", }, }, - value = "manarothtree", text = "manarothtree", + value = "manarothtree", }, { children = { { fileId = "202348", - value = "hordemaptable.m2", text = "hordemaptable.m2", + value = "hordemaptable.m2", }, { fileId = "202349", - value = "hordemaptable_outland.m2", text = "hordemaptable_outland.m2", + value = "hordemaptable_outland.m2", }, }, - value = "maptable", text = "maptable", + value = "maptable", }, { children = { { fileId = "202355", - value = "hordenefarianpost.m2", text = "hordenefarianpost.m2", + value = "hordenefarianpost.m2", }, { fileId = "202356", - value = "hordeonyxiatrophypost.m2", text = "hordeonyxiatrophypost.m2", + value = "hordeonyxiatrophypost.m2", }, }, - value = "onyxiatrophypost", text = "onyxiatrophypost", + value = "onyxiatrophypost", }, { children = { { fileId = "202360", - value = "orgrimmarbonfire01.m2", text = "orgrimmarbonfire01.m2", + value = "orgrimmarbonfire01.m2", }, { fileId = "202362", - value = "orgrimmarfloatingembers.m2", text = "orgrimmarfloatingembers.m2", + value = "orgrimmarfloatingembers.m2", }, { fileId = "202363", - value = "orgrimmarsmokeemitter.m2", text = "orgrimmarsmokeemitter.m2", + value = "orgrimmarsmokeemitter.m2", }, }, - value = "orgrimmarbonfire", text = "orgrimmarbonfire", + value = "orgrimmarbonfire", }, { children = { { fileId = "202366", - value = "orgrimmarpentagram.m2", text = "orgrimmarpentagram.m2", + value = "orgrimmarpentagram.m2", }, }, - value = "pentagram", text = "pentagram", + value = "pentagram", }, { fileId = "202367", - value = "thralls_throne.m2", text = "thralls_throne.m2", + value = "thralls_throne.m2", }, { children = { { fileId = "202368", - value = "orgrimmar_waterfalla.m2", text = "orgrimmar_waterfalla.m2", + value = "orgrimmar_waterfalla.m2", }, }, - value = "waterfalls", text = "waterfalls", + value = "waterfalls", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "orgrimmar", text = "orgrimmar", + value = "orgrimmar", }, { children = { @@ -78914,40 +67220,40 @@ WeakAuras.ModelPaths = { children = { { fileId = "202369", - value = "razorfendoor01.m2", text = "razorfendoor01.m2", + value = "razorfendoor01.m2", }, { fileId = "202370", - value = "razorfendoor02.m2", text = "razorfendoor02.m2", + value = "razorfendoor02.m2", }, { fileId = "202371", - value = "razorfendoor03.m2", text = "razorfendoor03.m2", + value = "razorfendoor03.m2", }, { fileId = "202372", - value = "razorfendoor04.m2", text = "razorfendoor04.m2", + value = "razorfendoor04.m2", }, { fileId = "202373", - value = "razorfendoor05.m2", text = "razorfendoor05.m2", + value = "razorfendoor05.m2", }, }, - value = "razorfendoors", text = "razorfendoors", + value = "razorfendoors", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, }, - value = "razorfen", text = "razorfen", + value = "razorfen", }, { children = { @@ -78957,93 +67263,93 @@ WeakAuras.ModelPaths = { children = { { fileId = "202375", - value = "silithidlight02.m2", text = "silithidlight02.m2", + value = "silithidlight02.m2", }, }, - value = "lights", text = "lights", + value = "lights", }, { children = { { fileId = "202376", - value = "exterior_arch01.m2", text = "exterior_arch01.m2", + value = "exterior_arch01.m2", }, { fileId = "202377", - value = "exterior_arch02.m2", text = "exterior_arch02.m2", + value = "exterior_arch02.m2", }, { fileId = "202380", - value = "silithidmembrane_01.m2", text = "silithidmembrane_01.m2", + value = "silithidmembrane_01.m2", }, { fileId = "202381", - value = "silithidmembrane_02.m2", text = "silithidmembrane_02.m2", + value = "silithidmembrane_02.m2", }, { fileId = "202382", - value = "silithidmembrane_03.m2", text = "silithidmembrane_03.m2", + value = "silithidmembrane_03.m2", }, }, - value = "membranes", text = "membranes", + value = "membranes", }, { children = { { fileId = "202387", - value = "silithiddragonflymodel_01.m2", text = "silithiddragonflymodel_01.m2", + value = "silithiddragonflymodel_01.m2", }, { fileId = "202389", - value = "silithidlarvamodel_01.m2", text = "silithidlarvamodel_01.m2", + value = "silithidlarvamodel_01.m2", }, { fileId = "202390", - value = "silithidpillbug01.m2", text = "silithidpillbug01.m2", + value = "silithidpillbug01.m2", }, }, - value = "silithidmodels", text = "silithidmodels", + value = "silithidmodels", }, { children = { { fileId = "202393", - value = "silithidspike_01.m2", text = "silithidspike_01.m2", + value = "silithidspike_01.m2", }, { fileId = "202394", - value = "silithidspike_02.m2", text = "silithidspike_02.m2", + value = "silithidspike_02.m2", }, { fileId = "202395", - value = "silithidspike_03.m2", text = "silithidspike_03.m2", + value = "silithidspike_03.m2", }, }, - value = "spikes", text = "spikes", + value = "spikes", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "silithidhive", text = "silithidhive", + value = "silithidhive", }, { children = { @@ -79053,74 +67359,74 @@ WeakAuras.ModelPaths = { children = { { fileId = "202396", - value = "ahn_quiraj_ossiriancrystal.m2", text = "ahn_quiraj_ossiriancrystal.m2", + value = "ahn_quiraj_ossiriancrystal.m2", }, }, - value = "ahn_quiraj_ossiriancrystal", text = "ahn_quiraj_ossiriancrystal", + value = "ahn_quiraj_ossiriancrystal", }, { children = { { fileId = "202399", - value = "ahn_qiraj_doorplug.m2", text = "ahn_qiraj_doorplug.m2", + value = "ahn_qiraj_doorplug.m2", }, { fileId = "202400", - value = "ahn_qiraj_doorroots.m2", text = "ahn_qiraj_doorroots.m2", + value = "ahn_qiraj_doorroots.m2", }, { fileId = "202401", - value = "ahn_qiraj_doorrunes.m2", text = "ahn_qiraj_doorrunes.m2", + value = "ahn_qiraj_doorrunes.m2", }, { fileId = "202402", - value = "ahnqirajdoor01.m2", text = "ahnqirajdoor01.m2", + value = "ahnqirajdoor01.m2", }, { fileId = "202403", - value = "ahnqirajdoor02.m2", text = "ahnqirajdoor02.m2", + value = "ahnqirajdoor02.m2", }, { fileId = "202405", - value = "ahnqirajsandtrap.m2", text = "ahnqirajsandtrap.m2", + value = "ahnqirajsandtrap.m2", }, }, - value = "ahnqirajdoor", text = "ahnqirajdoor", + value = "ahnqirajdoor", }, { children = { { fileId = "202413", - value = "ahnqirajegglayer.m2", text = "ahnqirajegglayer.m2", + value = "ahnqirajegglayer.m2", }, }, - value = "egglayer", text = "egglayer", + value = "egglayer", }, { children = { { fileId = "202417", - value = "sandworm_rockbase.m2", text = "sandworm_rockbase.m2", + value = "sandworm_rockbase.m2", }, }, - value = "sandworm", text = "sandworm", + value = "sandworm", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -79128,32 +67434,32 @@ WeakAuras.ModelPaths = { children = { { fileId = "202418", - value = "aq_coffinbase.m2", text = "aq_coffinbase.m2", + value = "aq_coffinbase.m2", }, { fileId = "202419", - value = "aq_coffinlid01.m2", text = "aq_coffinlid01.m2", + value = "aq_coffinlid01.m2", }, { fileId = "202420", - value = "aq_coffinlid02.m2", text = "aq_coffinlid02.m2", + value = "aq_coffinlid02.m2", }, { fileId = "202421", - value = "aq_coffinlid03.m2", text = "aq_coffinlid03.m2", + value = "aq_coffinlid03.m2", }, { fileId = "202422", - value = "aq_coffinlid04.m2", text = "aq_coffinlid04.m2", + value = "aq_coffinlid04.m2", }, }, - value = "ahnqiracoffins", text = "ahnqiracoffins", + value = "ahnqiracoffins", }, { children = { @@ -79161,836 +67467,836 @@ WeakAuras.ModelPaths = { children = { { fileId = "202425", - value = "ahnqirajwalltorch01.m2", text = "ahnqirajwalltorch01.m2", + value = "ahnqirajwalltorch01.m2", }, }, - value = "torch", text = "torch", + value = "torch", }, }, - value = "ahnqiraj", text = "ahnqiraj", + value = "ahnqiraj", }, { children = { { fileId = "202429", - value = "ahnqirajalter.m2", text = "ahnqirajalter.m2", + value = "ahnqirajalter.m2", }, }, - value = "ahnqirajaltar", text = "ahnqirajaltar", + value = "ahnqirajaltar", }, { children = { { fileId = "202430", - value = "quirajglow.m2", text = "quirajglow.m2", + value = "quirajglow.m2", }, }, - value = "ahnqirajglow", text = "ahnqirajglow", + value = "ahnqirajglow", }, { children = { { fileId = "202432", - value = "ahnqirajsconce01.m2", text = "ahnqirajsconce01.m2", + value = "ahnqirajsconce01.m2", }, { fileId = "202433", - value = "ahnqirajsconce02.m2", text = "ahnqirajsconce02.m2", + value = "ahnqirajsconce02.m2", }, { fileId = "202434", - value = "ahnqirajsconce03.m2", text = "ahnqirajsconce03.m2", + value = "ahnqirajsconce03.m2", }, { fileId = "202435", - value = "ahnqirajsconce04.m2", text = "ahnqirajsconce04.m2", + value = "ahnqirajsconce04.m2", }, }, - value = "ahnqirajsconces", text = "ahnqirajsconces", + value = "ahnqirajsconces", }, { children = { { fileId = "202437", - value = "ahnqiraj_slab01.m2", text = "ahnqiraj_slab01.m2", + value = "ahnqiraj_slab01.m2", }, { fileId = "202438", - value = "ahnqiraj_stair01.m2", text = "ahnqiraj_stair01.m2", + value = "ahnqiraj_stair01.m2", }, { fileId = "202439", - value = "ahnqiraj_stair02.m2", text = "ahnqiraj_stair02.m2", + value = "ahnqiraj_stair02.m2", }, }, - value = "ahnqirajstairs", text = "ahnqirajstairs", + value = "ahnqirajstairs", }, { children = { { fileId = "202440", - value = "ahn_qirajbrick01.m2", text = "ahn_qirajbrick01.m2", + value = "ahn_qirajbrick01.m2", }, { fileId = "202441", - value = "ahn_qirajbrick02.m2", text = "ahn_qirajbrick02.m2", + value = "ahn_qirajbrick02.m2", }, { fileId = "202442", - value = "ahn_qirajobelisk.m2", text = "ahn_qirajobelisk.m2", + value = "ahn_qirajobelisk.m2", }, }, - value = "ahnqirajstones", text = "ahnqirajstones", + value = "ahnqirajstones", }, { children = { { fileId = "202443", - value = "floatingpurplecrystal01.m2", text = "floatingpurplecrystal01.m2", + value = "floatingpurplecrystal01.m2", }, { fileId = "202444", - value = "floatingpurplecrystalbroken01.m2", text = "floatingpurplecrystalbroken01.m2", + value = "floatingpurplecrystalbroken01.m2", }, { fileId = "202445", - value = "floatingpurplecrystalbroken02.m2", text = "floatingpurplecrystalbroken02.m2", + value = "floatingpurplecrystalbroken02.m2", }, { fileId = "202446", - value = "floatingpurplecrystalbroken03.m2", text = "floatingpurplecrystalbroken03.m2", + value = "floatingpurplecrystalbroken03.m2", }, { fileId = "202447", - value = "floatingredcrystal01.m2", text = "floatingredcrystal01.m2", + value = "floatingredcrystal01.m2", }, { fileId = "202448", - value = "floatingredcrystalbroken01.m2", text = "floatingredcrystalbroken01.m2", + value = "floatingredcrystalbroken01.m2", }, { fileId = "202449", - value = "floatingredcrystalbroken02.m2", text = "floatingredcrystalbroken02.m2", + value = "floatingredcrystalbroken02.m2", }, { fileId = "202450", - value = "floatingredcrystalbroken03.m2", text = "floatingredcrystalbroken03.m2", + value = "floatingredcrystalbroken03.m2", }, { fileId = "202451", - value = "glyphedcrystal.m2", text = "glyphedcrystal.m2", + value = "glyphedcrystal.m2", }, { fileId = "202453", - value = "silithus_commcrystal_base01.m2", text = "silithus_commcrystal_base01.m2", + value = "silithus_commcrystal_base01.m2", }, { fileId = "202454", - value = "silithus_commcrystal_base02.m2", text = "silithus_commcrystal_base02.m2", + value = "silithus_commcrystal_base02.m2", }, { fileId = "202455", - value = "silithus_commcrystal_base03.m2", text = "silithus_commcrystal_base03.m2", + value = "silithus_commcrystal_base03.m2", }, { fileId = "202456", - value = "silithus_commnicationcrystal_01.m2", text = "silithus_commnicationcrystal_01.m2", + value = "silithus_commnicationcrystal_01.m2", }, { fileId = "202457", - value = "silithus_commnicationcrystal_02.m2", text = "silithus_commnicationcrystal_02.m2", + value = "silithus_commnicationcrystal_02.m2", }, { fileId = "202458", - value = "silithus_commnicationcrystal_03.m2", text = "silithus_commnicationcrystal_03.m2", + value = "silithus_commnicationcrystal_03.m2", }, { fileId = "202463", - value = "silithus_crystal_clump_01.m2", text = "silithus_crystal_clump_01.m2", + value = "silithus_crystal_clump_01.m2", }, { fileId = "202464", - value = "silithus_crystal_clump_02.m2", text = "silithus_crystal_clump_02.m2", + value = "silithus_crystal_clump_02.m2", }, { fileId = "202465", - value = "silithus_crystal_clump_03.m2", text = "silithus_crystal_clump_03.m2", + value = "silithus_crystal_clump_03.m2", }, { fileId = "202466", - value = "silithus_crystal_clump_04.m2", text = "silithus_crystal_clump_04.m2", + value = "silithus_crystal_clump_04.m2", }, { fileId = "202471", - value = "silithus_crystal_formation_01.m2", text = "silithus_crystal_formation_01.m2", + value = "silithus_crystal_formation_01.m2", }, { fileId = "202472", - value = "silithus_crystal_formation_02.m2", text = "silithus_crystal_formation_02.m2", + value = "silithus_crystal_formation_02.m2", }, { fileId = "202473", - value = "silithus_crystal_formation_03.m2", text = "silithus_crystal_formation_03.m2", + value = "silithus_crystal_formation_03.m2", }, { fileId = "202474", - value = "silithus_crystal_formation_04.m2", text = "silithus_crystal_formation_04.m2", + value = "silithus_crystal_formation_04.m2", }, { fileId = "202475", - value = "silithus_crystal_masterbase.m2", text = "silithus_crystal_masterbase.m2", + value = "silithus_crystal_masterbase.m2", }, { fileId = "202477", - value = "silithus_crystal_nub_01.m2", text = "silithus_crystal_nub_01.m2", + value = "silithus_crystal_nub_01.m2", }, { fileId = "202478", - value = "silithus_crystal_nub_02.m2", text = "silithus_crystal_nub_02.m2", + value = "silithus_crystal_nub_02.m2", }, { fileId = "202479", - value = "silithus_crystal_nub_03.m2", text = "silithus_crystal_nub_03.m2", + value = "silithus_crystal_nub_03.m2", }, { fileId = "202480", - value = "silithus_crystal_nub_04.m2", text = "silithus_crystal_nub_04.m2", + value = "silithus_crystal_nub_04.m2", }, { fileId = "202481", - value = "silithus_crystal_nub_05.m2", text = "silithus_crystal_nub_05.m2", + value = "silithus_crystal_nub_05.m2", }, { fileId = "202482", - value = "silithus_crystal_nub_06.m2", text = "silithus_crystal_nub_06.m2", + value = "silithus_crystal_nub_06.m2", }, { fileId = "202483", - value = "silithus_crystal_spike_01.m2", text = "silithus_crystal_spike_01.m2", + value = "silithus_crystal_spike_01.m2", }, { fileId = "202484", - value = "silithus_crystal_spike_02.m2", text = "silithus_crystal_spike_02.m2", + value = "silithus_crystal_spike_02.m2", }, { fileId = "202485", - value = "silithus_crystal_spike_03.m2", text = "silithus_crystal_spike_03.m2", + value = "silithus_crystal_spike_03.m2", }, { fileId = "202486", - value = "silithus_crystal_spike_04.m2", text = "silithus_crystal_spike_04.m2", + value = "silithus_crystal_spike_04.m2", }, }, - value = "crystals", text = "crystals", + value = "crystals", }, { children = { { fileId = "202487", - value = "ahnqirajdustdevil.m2", text = "ahnqirajdustdevil.m2", + value = "ahnqirajdustdevil.m2", }, }, - value = "dustdevil", text = "dustdevil", + value = "dustdevil", }, { children = { { fileId = "202490", - value = "silithidegg.m2", text = "silithidegg.m2", + value = "silithidegg.m2", }, }, - value = "eggs", text = "eggs", + value = "eggs", }, { children = { { fileId = "202493", - value = "elventowerroofsilithus02.m2", text = "elventowerroofsilithus02.m2", + value = "elventowerroofsilithus02.m2", }, { fileId = "202494", - value = "elventowersilithus02.m2", text = "elventowersilithus02.m2", + value = "elventowersilithus02.m2", }, { fileId = "202495", - value = "elventowersilithus03.m2", text = "elventowersilithus03.m2", + value = "elventowersilithus03.m2", }, { fileId = "202496", - value = "elventowersilithushorn.m2", text = "elventowersilithushorn.m2", + value = "elventowersilithushorn.m2", }, { fileId = "202498", - value = "nightelfruinarchsilithus01.m2", text = "nightelfruinarchsilithus01.m2", + value = "nightelfruinarchsilithus01.m2", }, { fileId = "202499", - value = "nightelfruinwallsilithus01.m2", text = "nightelfruinwallsilithus01.m2", + value = "nightelfruinwallsilithus01.m2", }, { fileId = "202500", - value = "nightelfruinwallsilithus01b.m2", text = "nightelfruinwallsilithus01b.m2", + value = "nightelfruinwallsilithus01b.m2", }, { fileId = "202501", - value = "nightelfruinwallsilithus02.m2", text = "nightelfruinwallsilithus02.m2", + value = "nightelfruinwallsilithus02.m2", }, { fileId = "202502", - value = "nightelfruinwallsilithus03.m2", text = "nightelfruinwallsilithus03.m2", + value = "nightelfruinwallsilithus03.m2", }, { fileId = "202503", - value = "nightelfruinwallsilithusrubble01.m2", text = "nightelfruinwallsilithusrubble01.m2", + value = "nightelfruinwallsilithusrubble01.m2", }, { fileId = "202504", - value = "nightelfruinwallsilithusrubble02.m2", text = "nightelfruinwallsilithusrubble02.m2", + value = "nightelfruinwallsilithusrubble02.m2", }, }, - value = "elven", text = "elven", + value = "elven", }, { children = { { fileId = "202508", - value = "silithidgong.m2", text = "silithidgong.m2", + value = "silithidgong.m2", }, { fileId = "202509", - value = "silithidgongpodium.m2", text = "silithidgongpodium.m2", + value = "silithidgongpodium.m2", }, }, - value = "gong", text = "gong", + value = "gong", }, { children = { { fileId = "202513", - value = "silithushanginghive01.m2", text = "silithushanginghive01.m2", + value = "silithushanginghive01.m2", }, { fileId = "202515", - value = "smallhive01.m2", text = "smallhive01.m2", + value = "smallhive01.m2", }, { fileId = "202516", - value = "smallhive02.m2", text = "smallhive02.m2", + value = "smallhive02.m2", }, { fileId = "202517", - value = "smallhive03.m2", text = "smallhive03.m2", + value = "smallhive03.m2", }, }, - value = "hives", text = "hives", + value = "hives", }, { children = { { fileId = "202519", - value = "silithusinsectmound01.m2", text = "silithusinsectmound01.m2", + value = "silithusinsectmound01.m2", }, { fileId = "202520", - value = "silithusinsectmound02.m2", text = "silithusinsectmound02.m2", + value = "silithusinsectmound02.m2", }, { fileId = "202521", - value = "silithusinsectmound03.m2", text = "silithusinsectmound03.m2", + value = "silithusinsectmound03.m2", }, }, - value = "insectmound", text = "insectmound", + value = "insectmound", }, { children = { { fileId = "202522", - value = "masterhiveswarm.m2", text = "masterhiveswarm.m2", + value = "masterhiveswarm.m2", }, }, - value = "masterhiveswarm", text = "masterhiveswarm", + value = "masterhiveswarm", }, { children = { { fileId = "202525", - value = "aq_mummy01.m2", text = "aq_mummy01.m2", + value = "aq_mummy01.m2", }, { fileId = "202527", - value = "aq_mummy02.m2", text = "aq_mummy02.m2", + value = "aq_mummy02.m2", }, { fileId = "202529", - value = "aq_mummy03.m2", text = "aq_mummy03.m2", + value = "aq_mummy03.m2", }, }, - value = "mummies", text = "mummies", + value = "mummies", }, { children = { { fileId = "202533", - value = "obsidianstatue.m2", text = "obsidianstatue.m2", + value = "obsidianstatue.m2", }, }, - value = "obsidianstatue", text = "obsidianstatue", + value = "obsidianstatue", }, { children = { { fileId = "202534", - value = "silithuspod01.m2", text = "silithuspod01.m2", + value = "silithuspod01.m2", }, { fileId = "202535", - value = "silithuspod02.m2", text = "silithuspod02.m2", + value = "silithuspod02.m2", }, { fileId = "202536", - value = "silithuspod03.m2", text = "silithuspod03.m2", + value = "silithuspod03.m2", }, }, - value = "pods", text = "pods", + value = "pods", }, { children = { { fileId = "202539", - value = "silithuspylon.m2", text = "silithuspylon.m2", + value = "silithuspylon.m2", }, { fileId = "202540", - value = "silithuspylonbroken.m2", text = "silithuspylonbroken.m2", + value = "silithuspylonbroken.m2", }, }, - value = "pylons", text = "pylons", + value = "pylons", }, { children = { { fileId = "202543", - value = "quiraj_small_swarm.m2", text = "quiraj_small_swarm.m2", + value = "quiraj_small_swarm.m2", }, }, - value = "quiraj_small_swarm", text = "quiraj_small_swarm", + value = "quiraj_small_swarm", }, { children = { { fileId = "202545", - value = "quiraj_beeroom_swarm.m2", text = "quiraj_beeroom_swarm.m2", + value = "quiraj_beeroom_swarm.m2", }, }, - value = "quirajbeeroomswarm", text = "quirajbeeroomswarm", + value = "quirajbeeroomswarm", }, { children = { { fileId = "202549", - value = "quirajfallenwall01.m2", text = "quirajfallenwall01.m2", + value = "quirajfallenwall01.m2", }, { fileId = "202550", - value = "quirajlwall01.m2", text = "quirajlwall01.m2", + value = "quirajlwall01.m2", }, { fileId = "202551", - value = "quirajlwall02.m2", text = "quirajlwall02.m2", + value = "quirajlwall02.m2", }, { fileId = "202552", - value = "quirajlwall03.m2", text = "quirajlwall03.m2", + value = "quirajlwall03.m2", }, { fileId = "202553", - value = "quirajpillar.m2", text = "quirajpillar.m2", + value = "quirajpillar.m2", }, { fileId = "202554", - value = "quirajpillarbroken.m2", text = "quirajpillarbroken.m2", + value = "quirajpillarbroken.m2", }, { fileId = "202555", - value = "quirajruinblock01.m2", text = "quirajruinblock01.m2", + value = "quirajruinblock01.m2", }, { fileId = "202556", - value = "quirajruinblock02.m2", text = "quirajruinblock02.m2", + value = "quirajruinblock02.m2", }, { fileId = "202557", - value = "quirajruinblock03.m2", text = "quirajruinblock03.m2", + value = "quirajruinblock03.m2", }, { fileId = "202558", - value = "quirajtower03roof.m2", text = "quirajtower03roof.m2", + value = "quirajtower03roof.m2", }, { fileId = "202559", - value = "quirajtowerfallen.m2", text = "quirajtowerfallen.m2", + value = "quirajtowerfallen.m2", }, { fileId = "202560", - value = "quirajtwall01.m2", text = "quirajtwall01.m2", + value = "quirajtwall01.m2", }, { fileId = "202561", - value = "quirajtwall02.m2", text = "quirajtwall02.m2", + value = "quirajtwall02.m2", }, { fileId = "202562", - value = "quirajtwall03.m2", text = "quirajtwall03.m2", + value = "quirajtwall03.m2", }, { fileId = "202563", - value = "quirajtwallroof01.m2", text = "quirajtwallroof01.m2", + value = "quirajtwallroof01.m2", }, { fileId = "202564", - value = "quirajtwallroof02.m2", text = "quirajtwallroof02.m2", + value = "quirajtwallroof02.m2", }, { fileId = "202565", - value = "quirajwall01.m2", text = "quirajwall01.m2", + value = "quirajwall01.m2", }, { fileId = "202566", - value = "quirajwall02.m2", text = "quirajwall02.m2", + value = "quirajwall02.m2", }, { fileId = "202567", - value = "quirajwall03.m2", text = "quirajwall03.m2", + value = "quirajwall03.m2", }, }, - value = "quirajruins", text = "quirajruins", + value = "quirajruins", }, { children = { { fileId = "202568", - value = "silithusgate01.m2", text = "silithusgate01.m2", + value = "silithusgate01.m2", }, { fileId = "202569", - value = "silithusruinsobelisk01.m2", text = "silithusruinsobelisk01.m2", + value = "silithusruinsobelisk01.m2", }, { fileId = "202570", - value = "silithusruinsobelisk02.m2", text = "silithusruinsobelisk02.m2", + value = "silithusruinsobelisk02.m2", }, { fileId = "202571", - value = "silithusruinsobelisk03.m2", text = "silithusruinsobelisk03.m2", + value = "silithusruinsobelisk03.m2", }, { fileId = "202572", - value = "silithusruinspillar02.m2", text = "silithusruinspillar02.m2", + value = "silithusruinspillar02.m2", }, { fileId = "202573", - value = "silithusruinswall01.m2", text = "silithusruinswall01.m2", + value = "silithusruinswall01.m2", }, { fileId = "202574", - value = "silithusruinswall02.m2", text = "silithusruinswall02.m2", + value = "silithusruinswall02.m2", }, { fileId = "202575", - value = "silithusruinswall03.m2", text = "silithusruinswall03.m2", + value = "silithusruinswall03.m2", }, { fileId = "202576", - value = "silithusruinswall04.m2", text = "silithusruinswall04.m2", + value = "silithusruinswall04.m2", }, { fileId = "202577", - value = "silithusruinswall05.m2", text = "silithusruinswall05.m2", + value = "silithusruinswall05.m2", }, { fileId = "202578", - value = "silithusruinswall06.m2", text = "silithusruinswall06.m2", + value = "silithusruinswall06.m2", }, { fileId = "202579", - value = "silithusruinswall07.m2", text = "silithusruinswall07.m2", + value = "silithusruinswall07.m2", }, }, - value = "ruins", text = "ruins", + value = "ruins", }, { children = { { fileId = "202580", - value = "silithidtankhuskabdomen.m2", text = "silithidtankhuskabdomen.m2", + value = "silithidtankhuskabdomen.m2", }, { fileId = "202581", - value = "silithidtankhuskfullbody.m2", text = "silithidtankhuskfullbody.m2", + value = "silithidtankhuskfullbody.m2", }, { fileId = "202582", - value = "silithidtankhuskhead.m2", text = "silithidtankhuskhead.m2", + value = "silithidtankhuskhead.m2", }, { fileId = "202583", - value = "silithidtankhuskleg.m2", text = "silithidtankhuskleg.m2", + value = "silithidtankhuskleg.m2", }, { fileId = "202584", - value = "silithidtankhuskthorax.m2", text = "silithidtankhuskthorax.m2", + value = "silithidtankhuskthorax.m2", }, }, - value = "silithidtankhusks", text = "silithidtankhusks", + value = "silithidtankhusks", }, { children = { { fileId = "202587", - value = "silithidwasphuskabdomen.m2", text = "silithidwasphuskabdomen.m2", + value = "silithidwasphuskabdomen.m2", }, { fileId = "202588", - value = "silithidwasphuskfullbody.m2", text = "silithidwasphuskfullbody.m2", + value = "silithidwasphuskfullbody.m2", }, { fileId = "202589", - value = "silithidwasphuskhead.m2", text = "silithidwasphuskhead.m2", + value = "silithidwasphuskhead.m2", }, { fileId = "202590", - value = "silithidwasphuskleg.m2", text = "silithidwasphuskleg.m2", + value = "silithidwasphuskleg.m2", }, { fileId = "202591", - value = "silithidwasphuskthorax.m2", text = "silithidwasphuskthorax.m2", + value = "silithidwasphuskthorax.m2", }, { fileId = "202592", - value = "silithidwasphuskwings.m2", text = "silithidwasphuskwings.m2", + value = "silithidwasphuskwings.m2", }, }, - value = "silithidwasphusks", text = "silithidwasphusks", + value = "silithidwasphusks", }, { children = { { fileId = "202593", - value = "silithusruinspillartop.m2", text = "silithusruinspillartop.m2", + value = "silithusruinspillartop.m2", }, }, - value = "silithusruinspillartop", text = "silithusruinspillartop", + value = "silithusruinspillartop", }, { children = { { fileId = "202595", - value = "twilighttabletlower.m2", text = "twilighttabletlower.m2", + value = "twilighttabletlower.m2", }, { fileId = "202596", - value = "twilighttabletupper.m2", text = "twilighttabletupper.m2", + value = "twilighttabletupper.m2", }, }, - value = "twilighttablet", text = "twilighttablet", + value = "twilighttablet", }, { children = { { fileId = "202598", - value = "waspswarm.m2", text = "waspswarm.m2", + value = "waspswarm.m2", }, }, - value = "waspswarm", text = "waspswarm", + value = "waspswarm", }, { children = { { fileId = "202599", - value = "silithussandwaterfalllarge.m2", text = "silithussandwaterfalllarge.m2", + value = "silithussandwaterfalllarge.m2", }, { fileId = "202600", - value = "silithussandwaterfallmeduim.m2", text = "silithussandwaterfallmeduim.m2", + value = "silithussandwaterfallmeduim.m2", }, { fileId = "202601", - value = "silithussandwaterfallsmall.m2", text = "silithussandwaterfallsmall.m2", + value = "silithussandwaterfallsmall.m2", }, { fileId = "202602", - value = "silithussandwaterfallsplash.m2", text = "silithussandwaterfallsplash.m2", + value = "silithussandwaterfallsplash.m2", }, }, - value = "waterfalls", text = "waterfalls", + value = "waterfalls", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "silithus", text = "silithus", + value = "silithus", }, { children = { @@ -80000,26 +68306,26 @@ WeakAuras.ModelPaths = { children = { { fileId = "202605", - value = "g_sapling01.m2", text = "g_sapling01.m2", + value = "g_sapling01.m2", }, { fileId = "202606", - value = "g_sapling02.m2", text = "g_sapling02.m2", + value = "g_sapling02.m2", }, { fileId = "202608", - value = "sapling01.m2", text = "sapling01.m2", + value = "sapling01.m2", }, }, - value = "tree", text = "tree", + value = "tree", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -80027,201 +68333,201 @@ WeakAuras.ModelPaths = { children = { { fileId = "202611", - value = "stonetalonharpysnest01.m2", text = "stonetalonharpysnest01.m2", + value = "stonetalonharpysnest01.m2", }, { fileId = "202612", - value = "stonetalonharpysnest02.m2", text = "stonetalonharpysnest02.m2", + value = "stonetalonharpysnest02.m2", }, }, - value = "harpynests", text = "harpynests", + value = "harpynests", }, { children = { { fileId = "202614", - value = "stonetalonrockoutcrop01.m2", text = "stonetalonrockoutcrop01.m2", + value = "stonetalonrockoutcrop01.m2", }, }, - value = "rock", text = "rock", + value = "rock", }, { children = { { fileId = "202615", - value = "stonetalontools_crank01.m2", text = "stonetalontools_crank01.m2", + value = "stonetalontools_crank01.m2", }, { fileId = "202616", - value = "stonetalontools_saw01.m2", text = "stonetalontools_saw01.m2", + value = "stonetalontools_saw01.m2", }, }, - value = "tools", text = "tools", + value = "tools", }, { children = { { fileId = "202617", - value = "burntstonetree01.m2", text = "burntstonetree01.m2", + value = "burntstonetree01.m2", }, { fileId = "202618", - value = "burntstonetree07.m2", text = "burntstonetree07.m2", + value = "burntstonetree07.m2", }, { fileId = "202619", - value = "burntstonetree08.m2", text = "burntstonetree08.m2", + value = "burntstonetree08.m2", }, { fileId = "202620", - value = "stonetree01.m2", text = "stonetree01.m2", + value = "stonetree01.m2", }, { fileId = "202621", - value = "stonetree02.m2", text = "stonetree02.m2", + value = "stonetree02.m2", }, { fileId = "202622", - value = "stonetree03.m2", text = "stonetree03.m2", + value = "stonetree03.m2", }, { fileId = "202623", - value = "stonetree04.m2", text = "stonetree04.m2", + value = "stonetree04.m2", }, { fileId = "202624", - value = "stonetree05.m2", text = "stonetree05.m2", + value = "stonetree05.m2", }, { fileId = "202625", - value = "stonetree06.m2", text = "stonetree06.m2", + value = "stonetree06.m2", }, { fileId = "202626", - value = "stonetree07.m2", text = "stonetree07.m2", + value = "stonetree07.m2", }, { fileId = "202627", - value = "stonetree08.m2", text = "stonetree08.m2", + value = "stonetree08.m2", }, { fileId = "202633", - value = "stonetreelog01.m2", text = "stonetreelog01.m2", + value = "stonetreelog01.m2", }, { fileId = "202634", - value = "stonetreelog02.m2", text = "stonetreelog02.m2", + value = "stonetreelog02.m2", }, { fileId = "202635", - value = "stonetreelog03.m2", text = "stonetreelog03.m2", + value = "stonetreelog03.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "202639", - value = "burntstonetreestump02.m2", text = "burntstonetreestump02.m2", + value = "burntstonetreestump02.m2", }, { fileId = "202640", - value = "burntstonetreestump03.m2", text = "burntstonetreestump03.m2", + value = "burntstonetreestump03.m2", }, { fileId = "202641", - value = "stonetreestump01.m2", text = "stonetreestump01.m2", + value = "stonetreestump01.m2", }, { fileId = "202642", - value = "stonetreestump02.m2", text = "stonetreestump02.m2", + value = "stonetreestump02.m2", }, { fileId = "202643", - value = "stonetreestump03.m2", text = "stonetreestump03.m2", + value = "stonetreestump03.m2", }, { fileId = "202644", - value = "stonetreestump04.m2", text = "stonetreestump04.m2", + value = "stonetreestump04.m2", }, }, - value = "treestumps", text = "treestumps", + value = "treestumps", }, { children = { { fileId = "202646", - value = "stonetalonwaterwheel.m2", text = "stonetalonwaterwheel.m2", + value = "stonetalonwaterwheel.m2", }, }, - value = "waterwheel", text = "waterwheel", + value = "waterwheel", }, { children = { { fileId = "202649", - value = "stonetree01_web.m2", text = "stonetree01_web.m2", + value = "stonetree01_web.m2", }, { fileId = "202650", - value = "stonetree02_web.m2", text = "stonetree02_web.m2", + value = "stonetree02_web.m2", }, { fileId = "202651", - value = "stonetree03_web.m2", text = "stonetree03_web.m2", + value = "stonetree03_web.m2", }, { fileId = "202652", - value = "stonetree07_web.m2", text = "stonetree07_web.m2", + value = "stonetree07_web.m2", }, }, - value = "webbedtrees", text = "webbedtrees", + value = "webbedtrees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "stonetalon", text = "stonetalon", + value = "stonetalon", }, { children = { @@ -80231,16 +68537,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "202655", - value = "tanaristrollgate.m2", text = "tanaristrollgate.m2", + value = "tanaristrollgate.m2", }, }, - value = "trollgate", text = "trollgate", + value = "trollgate", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -80248,139 +68554,139 @@ WeakAuras.ModelPaths = { children = { { fileId = "202657", - value = "tanariscactus01.m2", text = "tanariscactus01.m2", + value = "tanariscactus01.m2", }, { fileId = "202658", - value = "tanariscactus02.m2", text = "tanariscactus02.m2", + value = "tanariscactus02.m2", }, { fileId = "202659", - value = "tanariscactus03.m2", text = "tanariscactus03.m2", + value = "tanariscactus03.m2", }, { fileId = "202660", - value = "tanariscactus04.m2", text = "tanariscactus04.m2", + value = "tanariscactus04.m2", }, { fileId = "202661", - value = "tanariscactus05.m2", text = "tanariscactus05.m2", + value = "tanariscactus05.m2", }, { fileId = "202662", - value = "tanariscactus06.m2", text = "tanariscactus06.m2", + value = "tanariscactus06.m2", }, }, - value = "cacti", text = "cacti", + value = "cacti", }, { children = { { fileId = "202670", - value = "desertholdingpen.m2", text = "desertholdingpen.m2", + value = "desertholdingpen.m2", }, }, - value = "desertholdingpen", text = "desertholdingpen", + value = "desertholdingpen", }, { children = { { fileId = "202672", - value = "tanarisgoblinwall01.m2", text = "tanarisgoblinwall01.m2", + value = "tanarisgoblinwall01.m2", }, { fileId = "202673", - value = "tanarisgoblinwall02.m2", text = "tanarisgoblinwall02.m2", + value = "tanarisgoblinwall02.m2", }, { fileId = "202674", - value = "tanarisgoblinwallcurve01.m2", text = "tanarisgoblinwallcurve01.m2", + value = "tanarisgoblinwallcurve01.m2", }, { fileId = "202675", - value = "tanarisgoblinwallgatebigbits.m2", text = "tanarisgoblinwallgatebigbits.m2", + value = "tanarisgoblinwallgatebigbits.m2", }, { fileId = "202676", - value = "tanarisgoblinwallpost01.m2", text = "tanarisgoblinwallpost01.m2", + value = "tanarisgoblinwallpost01.m2", }, }, - value = "goblin", text = "goblin", + value = "goblin", }, { children = { { fileId = "202677", - value = "tanarisrock01.m2", text = "tanarisrock01.m2", + value = "tanarisrock01.m2", }, { fileId = "202678", - value = "tanarisrock02.m2", text = "tanarisrock02.m2", + value = "tanarisrock02.m2", }, { fileId = "202679", - value = "tanarisrock03.m2", text = "tanarisrock03.m2", + value = "tanarisrock03.m2", }, { fileId = "202680", - value = "tanarisrock04.m2", text = "tanarisrock04.m2", + value = "tanarisrock04.m2", }, { fileId = "202681", - value = "tanarisrock05.m2", text = "tanarisrock05.m2", + value = "tanarisrock05.m2", }, { fileId = "202682", - value = "tanarisrock06.m2", text = "tanarisrock06.m2", + value = "tanarisrock06.m2", }, { fileId = "202683", - value = "tanarisrock07.m2", text = "tanarisrock07.m2", + value = "tanarisrock07.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "202687", - value = "tanariswatertower.m2", text = "tanariswatertower.m2", + value = "tanariswatertower.m2", }, }, - value = "watertower", text = "watertower", + value = "watertower", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "tanaris", text = "tanaris", + value = "tanaris", }, { children = { @@ -80390,256 +68696,256 @@ WeakAuras.ModelPaths = { children = { { fileId = "202690", - value = "gnomebleachers.m2", text = "gnomebleachers.m2", + value = "gnomebleachers.m2", }, { fileId = "202692", - value = "goblinbleachers.m2", text = "goblinbleachers.m2", + value = "goblinbleachers.m2", }, }, - value = "bleachers", text = "bleachers", + value = "bleachers", }, { children = { { fileId = "202693", - value = "thousandneedlesbridge.m2", text = "thousandneedlesbridge.m2", + value = "thousandneedlesbridge.m2", }, }, - value = "bridge", text = "bridge", + value = "bridge", }, { children = { { fileId = "202694", - value = "back-stop.m2", text = "back-stop.m2", + value = "back-stop.m2", }, { fileId = "202695", - value = "straightaway01.m2", text = "straightaway01.m2", + value = "straightaway01.m2", }, { fileId = "202696", - value = "straightaway02.m2", text = "straightaway02.m2", + value = "straightaway02.m2", }, { fileId = "202697", - value = "straightaway03.m2", text = "straightaway03.m2", + value = "straightaway03.m2", }, { fileId = "202698", - value = "straightaway04.m2", text = "straightaway04.m2", + value = "straightaway04.m2", }, { fileId = "202699", - value = "turn01-1.m2", text = "turn01-1.m2", + value = "turn01-1.m2", }, { fileId = "202700", - value = "turn01-2.m2", text = "turn01-2.m2", + value = "turn01-2.m2", }, { fileId = "202701", - value = "turn02-1.m2", text = "turn02-1.m2", + value = "turn02-1.m2", }, { fileId = "202702", - value = "turn02-2.m2", text = "turn02-2.m2", + value = "turn02-2.m2", }, { fileId = "202703", - value = "turn03.m2", text = "turn03.m2", + value = "turn03.m2", }, { fileId = "202704", - value = "turn04.m2", text = "turn04.m2", + value = "turn04.m2", }, { fileId = "202705", - value = "turn05-1.m2", text = "turn05-1.m2", + value = "turn05-1.m2", }, { fileId = "202706", - value = "turn05-2.m2", text = "turn05-2.m2", + value = "turn05-2.m2", }, { fileId = "202707", - value = "turn06.m2", text = "turn06.m2", + value = "turn06.m2", }, }, - value = "haybails", text = "haybails", + value = "haybails", }, { children = { { fileId = "202709", - value = "racingflag01.m2", text = "racingflag01.m2", + value = "racingflag01.m2", }, }, - value = "racingflags", text = "racingflags", + value = "racingflags", }, { children = { { fileId = "202710", - value = "saltflatrock_01.m2", text = "saltflatrock_01.m2", + value = "saltflatrock_01.m2", }, { fileId = "202711", - value = "saltflatrock_02.m2", text = "saltflatrock_02.m2", + value = "saltflatrock_02.m2", }, { fileId = "202712", - value = "saltflatrock_03.m2", text = "saltflatrock_03.m2", + value = "saltflatrock_03.m2", }, { fileId = "202713", - value = "saltflatrock_04.m2", text = "saltflatrock_04.m2", + value = "saltflatrock_04.m2", }, { fileId = "202716", - value = "thousandrock01.m2", text = "thousandrock01.m2", + value = "thousandrock01.m2", }, { fileId = "202718", - value = "thousandrock02.m2", text = "thousandrock02.m2", + value = "thousandrock02.m2", }, { fileId = "202719", - value = "thousandrock03.m2", text = "thousandrock03.m2", + value = "thousandrock03.m2", }, { fileId = "202720", - value = "thousandrock04.m2", text = "thousandrock04.m2", + value = "thousandrock04.m2", }, { fileId = "202721", - value = "thousandrock05.m2", text = "thousandrock05.m2", + value = "thousandrock05.m2", }, { fileId = "202722", - value = "thousandrock06.m2", text = "thousandrock06.m2", + value = "thousandrock06.m2", }, { fileId = "202723", - value = "thousandrock07.m2", text = "thousandrock07.m2", + value = "thousandrock07.m2", }, { fileId = "202724", - value = "thousandrock08.m2", text = "thousandrock08.m2", + value = "thousandrock08.m2", }, { fileId = "202725", - value = "thousandrock09.m2", text = "thousandrock09.m2", + value = "thousandrock09.m2", }, { fileId = "202726", - value = "thousandrock10.m2", text = "thousandrock10.m2", + value = "thousandrock10.m2", }, { fileId = "202727", - value = "thousandrock11.m2", text = "thousandrock11.m2", + value = "thousandrock11.m2", }, { fileId = "202728", - value = "thousandrock12.m2", text = "thousandrock12.m2", + value = "thousandrock12.m2", }, { fileId = "202729", - value = "thousandrock13.m2", text = "thousandrock13.m2", + value = "thousandrock13.m2", }, { fileId = "202730", - value = "thousandrock14.m2", text = "thousandrock14.m2", + value = "thousandrock14.m2", }, { fileId = "202731", - value = "thousandrock15.m2", text = "thousandrock15.m2", + value = "thousandrock15.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "202733", - value = "snake_nest_001.m2", text = "snake_nest_001.m2", + value = "snake_nest_001.m2", }, { fileId = "202734", - value = "snake_nest_002.m2", text = "snake_nest_002.m2", + value = "snake_nest_002.m2", }, }, - value = "snakenests", text = "snakenests", + value = "snakenests", }, { children = { { fileId = "202737", - value = "wyverneggs01.m2", text = "wyverneggs01.m2", + value = "wyverneggs01.m2", }, { fileId = "202738", - value = "wyverneggs02.m2", text = "wyverneggs02.m2", + value = "wyverneggs02.m2", }, }, - value = "wyverneggs", text = "wyverneggs", + value = "wyverneggs", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "thousandneedles", text = "thousandneedles", + value = "thousandneedles", }, { children = { @@ -80649,16 +68955,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "202740", - value = "timbermawwoodendoor.m2", text = "timbermawwoodendoor.m2", + value = "timbermawwoodendoor.m2", }, }, - value = "woodendoor", text = "woodendoor", + value = "woodendoor", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -80666,25 +68972,25 @@ WeakAuras.ModelPaths = { children = { { fileId = "202742", - value = "timbermawflower01.m2", text = "timbermawflower01.m2", + value = "timbermawflower01.m2", }, { fileId = "202744", - value = "timbermawflower02.m2", text = "timbermawflower02.m2", + value = "timbermawflower02.m2", }, }, - value = "timbermawflowers", text = "timbermawflowers", + value = "timbermawflowers", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "timbermaw", text = "timbermaw", + value = "timbermaw", }, { children = { @@ -80694,197 +69000,197 @@ WeakAuras.ModelPaths = { children = { { fileId = "202747", - value = "ungoroarchway01.m2", text = "ungoroarchway01.m2", + value = "ungoroarchway01.m2", }, }, - value = "archway", text = "archway", + value = "archway", }, { children = { { fileId = "202748", - value = "ungorocrystal_blue01.m2", text = "ungorocrystal_blue01.m2", + value = "ungorocrystal_blue01.m2", }, { fileId = "202749", - value = "ungorocrystal_blue02.m2", text = "ungorocrystal_blue02.m2", + value = "ungorocrystal_blue02.m2", }, { fileId = "202750", - value = "ungorocrystal_green01.m2", text = "ungorocrystal_green01.m2", + value = "ungorocrystal_green01.m2", }, { fileId = "202751", - value = "ungorocrystal_green02.m2", text = "ungorocrystal_green02.m2", + value = "ungorocrystal_green02.m2", }, { fileId = "202752", - value = "ungorocrystal_red01.m2", text = "ungorocrystal_red01.m2", + value = "ungorocrystal_red01.m2", }, { fileId = "202753", - value = "ungorocrystal_red02.m2", text = "ungorocrystal_red02.m2", + value = "ungorocrystal_red02.m2", }, { fileId = "202754", - value = "ungorocrystal_yellow01.m2", text = "ungorocrystal_yellow01.m2", + value = "ungorocrystal_yellow01.m2", }, { fileId = "202755", - value = "ungorocrystal_yellow02.m2", text = "ungorocrystal_yellow02.m2", + value = "ungorocrystal_yellow02.m2", }, { fileId = "202759", - value = "ungorocrystalpylon01.m2", text = "ungorocrystalpylon01.m2", + value = "ungorocrystalpylon01.m2", }, }, - value = "crystals", text = "crystals", + value = "crystals", }, { children = { { fileId = "202766", - value = "ungorogeyser01.m2", text = "ungorogeyser01.m2", + value = "ungorogeyser01.m2", }, { fileId = "202767", - value = "ungorogeyser02.m2", text = "ungorogeyser02.m2", + value = "ungorogeyser02.m2", }, }, - value = "geyser", text = "geyser", + value = "geyser", }, { children = { { fileId = "202770", - value = "ungororock06.m2", text = "ungororock06.m2", + value = "ungororock06.m2", }, { fileId = "202771", - value = "ungororock07.m2", text = "ungororock07.m2", + value = "ungororock07.m2", }, { fileId = "202772", - value = "ungororock08.m2", text = "ungororock08.m2", + value = "ungororock08.m2", }, { fileId = "202773", - value = "ungororock09.m2", text = "ungororock09.m2", + value = "ungororock09.m2", }, { fileId = "202774", - value = "ungororock10.m2", text = "ungororock10.m2", + value = "ungororock10.m2", }, { fileId = "202775", - value = "ungororock11.m2", text = "ungororock11.m2", + value = "ungororock11.m2", }, { fileId = "202776", - value = "ungororock12.m2", text = "ungororock12.m2", + value = "ungororock12.m2", }, { fileId = "202777", - value = "ungororock13.m2", text = "ungororock13.m2", + value = "ungororock13.m2", }, { fileId = "202778", - value = "ungororock14.m2", text = "ungororock14.m2", + value = "ungororock14.m2", }, { fileId = "202779", - value = "ungororock15.m2", text = "ungororock15.m2", + value = "ungororock15.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "202781", - value = "ungorothreshadoncorpse.m2", text = "ungorothreshadoncorpse.m2", + value = "ungorothreshadoncorpse.m2", }, }, - value = "threshadoncorpse", text = "threshadoncorpse", + value = "threshadoncorpse", }, { children = { { fileId = "202782", - value = "ungorotreebite.m2", text = "ungorotreebite.m2", + value = "ungorotreebite.m2", }, { fileId = "202783", - value = "ungorotreebreak.m2", text = "ungorotreebreak.m2", + value = "ungorotreebreak.m2", }, { fileId = "202784", - value = "ungorotreebreak2.m2", text = "ungorotreebreak2.m2", + value = "ungorotreebreak2.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "202786", - value = "trexfootprint.m2", text = "trexfootprint.m2", + value = "trexfootprint.m2", }, }, - value = "trexfootprint", text = "trexfootprint", + value = "trexfootprint", }, { children = { { fileId = "202787", - value = "ungoroblackbubble.m2", text = "ungoroblackbubble.m2", + value = "ungoroblackbubble.m2", }, }, - value = "ungorobubbles", text = "ungorobubbles", + value = "ungorobubbles", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "ungoro", text = "ungoro", + value = "ungoro", }, { children = { @@ -80894,160 +69200,160 @@ WeakAuras.ModelPaths = { children = { { fileId = "202790", - value = "wc_basket01.m2", text = "wc_basket01.m2", + value = "wc_basket01.m2", }, }, - value = "baskets", text = "baskets", + value = "baskets", }, { children = { { fileId = "202792", - value = "wc_cage01.m2", text = "wc_cage01.m2", + value = "wc_cage01.m2", }, }, - value = "cages", text = "cages", + value = "cages", }, { children = { { fileId = "202794", - value = "wc_basinstone.m2", text = "wc_basinstone.m2", + value = "wc_basinstone.m2", }, { fileId = "202795", - value = "wc_bedstone.m2", text = "wc_bedstone.m2", + value = "wc_bedstone.m2", }, { fileId = "202796", - value = "wc_benchstone.m2", text = "wc_benchstone.m2", + value = "wc_benchstone.m2", }, { fileId = "202797", - value = "wc_benchstone02.m2", text = "wc_benchstone02.m2", + value = "wc_benchstone02.m2", }, { fileId = "202798", - value = "wc_cairn.m2", text = "wc_cairn.m2", + value = "wc_cairn.m2", }, { fileId = "202799", - value = "wc_druidofthequatlcircle.m2", text = "wc_druidofthequatlcircle.m2", + value = "wc_druidofthequatlcircle.m2", }, { fileId = "202800", - value = "wc_druidoftheraptorcircle.m2", text = "wc_druidoftheraptorcircle.m2", + value = "wc_druidoftheraptorcircle.m2", }, { fileId = "202801", - value = "wc_druidoftheraptorclaw.m2", text = "wc_druidoftheraptorclaw.m2", + value = "wc_druidoftheraptorclaw.m2", }, { fileId = "202802", - value = "wc_druidoftheraptortooth.m2", text = "wc_druidoftheraptortooth.m2", + value = "wc_druidoftheraptortooth.m2", }, { fileId = "202803", - value = "wc_druidoftheserpentcircle.m2", text = "wc_druidoftheserpentcircle.m2", + value = "wc_druidoftheserpentcircle.m2", }, { fileId = "202804", - value = "wc_druidoftheserpentstone.m2", text = "wc_druidoftheserpentstone.m2", + value = "wc_druidoftheserpentstone.m2", }, { fileId = "202805", - value = "wc_druidoftheserpentstonehead.m2", text = "wc_druidoftheserpentstonehead.m2", + value = "wc_druidoftheserpentstonehead.m2", }, { fileId = "202806", - value = "wc_druidofthethundercircle.m2", text = "wc_druidofthethundercircle.m2", + value = "wc_druidofthethundercircle.m2", }, { fileId = "202807", - value = "wc_druidofthethunderspine.m2", text = "wc_druidofthethunderspine.m2", + value = "wc_druidofthethunderspine.m2", }, { fileId = "202814", - value = "wc_stoolstone.m2", text = "wc_stoolstone.m2", + value = "wc_stoolstone.m2", }, { fileId = "202815", - value = "wc_tablestone.m2", text = "wc_tablestone.m2", + value = "wc_tablestone.m2", }, }, - value = "fangdruids", text = "fangdruids", + value = "fangdruids", }, { children = { { fileId = "202818", - value = "wc_hanginghead01.m2", text = "wc_hanginghead01.m2", + value = "wc_hanginghead01.m2", }, }, - value = "hangingheads", text = "hangingheads", + value = "hangingheads", }, { children = { { fileId = "202821", - value = "wc_stickbundle01.m2", text = "wc_stickbundle01.m2", + value = "wc_stickbundle01.m2", }, { fileId = "202822", - value = "wc_stickbundle02.m2", text = "wc_stickbundle02.m2", + value = "wc_stickbundle02.m2", }, { fileId = "202823", - value = "wc_stickbundle03.m2", text = "wc_stickbundle03.m2", + value = "wc_stickbundle03.m2", }, }, - value = "stickbundles", text = "stickbundles", + value = "stickbundles", }, { children = { { fileId = "202824", - value = "wailingwaterfall01.m2", text = "wailingwaterfall01.m2", + value = "wailingwaterfall01.m2", }, }, - value = "waterfalls", text = "waterfalls", + value = "waterfalls", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "wailingcaverns", text = "wailingcaverns", + value = "wailingcaverns", }, { children = { @@ -81057,16 +69363,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "202828", - value = "winterspringaltar01.m2", text = "winterspringaltar01.m2", + value = "winterspringaltar01.m2", }, }, - value = "altar", text = "altar", + value = "altar", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -81074,233 +69380,233 @@ WeakAuras.ModelPaths = { children = { { fileId = "202832", - value = "winterspringfrostsaberrock.m2", text = "winterspringfrostsaberrock.m2", + value = "winterspringfrostsaberrock.m2", }, }, - value = "frostsaberrock", text = "frostsaberrock", + value = "frostsaberrock", }, { children = { { fileId = "202834", - value = "frozenwaterfall01.m2", text = "frozenwaterfall01.m2", + value = "frozenwaterfall01.m2", }, { fileId = "202835", - value = "frozenwaterfall02.m2", text = "frozenwaterfall02.m2", + value = "frozenwaterfall02.m2", }, { fileId = "202836", - value = "frozenwaterfall03.m2", text = "frozenwaterfall03.m2", + value = "frozenwaterfall03.m2", }, }, - value = "frozenwaterfalls", text = "frozenwaterfalls", + value = "frozenwaterfalls", }, { children = { { fileId = "202839", - value = "furbolgtentsnow.m2", text = "furbolgtentsnow.m2", + value = "furbolgtentsnow.m2", }, { fileId = "202840", - value = "furbolgtentsnow2.m2", text = "furbolgtentsnow2.m2", + value = "furbolgtentsnow2.m2", }, }, - value = "furbolgtent", text = "furbolgtent", + value = "furbolgtent", }, { children = { { fileId = "202841", - value = "furbolgtotemsnow01.m2", text = "furbolgtotemsnow01.m2", + value = "furbolgtotemsnow01.m2", }, { fileId = "202842", - value = "furbolgtotemsnow02.m2", text = "furbolgtotemsnow02.m2", + value = "furbolgtotemsnow02.m2", }, }, - value = "furbolgtotems", text = "furbolgtotems", + value = "furbolgtotems", }, { children = { { fileId = "202845", - value = "winterspringrock01.m2", text = "winterspringrock01.m2", + value = "winterspringrock01.m2", }, { fileId = "202846", - value = "winterspringrock02.m2", text = "winterspringrock02.m2", + value = "winterspringrock02.m2", }, { fileId = "202847", - value = "winterspringrock03.m2", text = "winterspringrock03.m2", + value = "winterspringrock03.m2", }, { fileId = "202848", - value = "winterspringrock04.m2", text = "winterspringrock04.m2", + value = "winterspringrock04.m2", }, { fileId = "202849", - value = "winterspringrock05.m2", text = "winterspringrock05.m2", + value = "winterspringrock05.m2", }, { fileId = "202850", - value = "winterspringrock06.m2", text = "winterspringrock06.m2", + value = "winterspringrock06.m2", }, { fileId = "202851", - value = "winterspringrock07.m2", text = "winterspringrock07.m2", + value = "winterspringrock07.m2", }, { fileId = "202852", - value = "winterspringrock08.m2", text = "winterspringrock08.m2", + value = "winterspringrock08.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "202855", - value = "newwinterspringmidtree01.m2", text = "newwinterspringmidtree01.m2", + value = "newwinterspringmidtree01.m2", }, { fileId = "202856", - value = "newwinterspringmidtree02.m2", text = "newwinterspringmidtree02.m2", + value = "newwinterspringmidtree02.m2", }, { fileId = "202857", - value = "newwinterspringtree01.m2", text = "newwinterspringtree01.m2", + value = "newwinterspringtree01.m2", }, { fileId = "202858", - value = "newwinterspringtree02.m2", text = "newwinterspringtree02.m2", + value = "newwinterspringtree02.m2", }, { fileId = "202859", - value = "newwinterspringtree05.m2", text = "newwinterspringtree05.m2", + value = "newwinterspringtree05.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "202868", - value = "winterspringbush01.m2", text = "winterspringbush01.m2", + value = "winterspringbush01.m2", }, }, - value = "winterspringbushes", text = "winterspringbushes", + value = "winterspringbushes", }, { children = { { fileId = "202872", - value = "winterspringfallenbranch01.m2", text = "winterspringfallenbranch01.m2", + value = "winterspringfallenbranch01.m2", }, { fileId = "202873", - value = "winterspringfallentree01.m2", text = "winterspringfallentree01.m2", + value = "winterspringfallentree01.m2", }, { fileId = "202874", - value = "winterspringfallentree02.m2", text = "winterspringfallentree02.m2", + value = "winterspringfallentree02.m2", }, }, - value = "winterspringfallentrees", text = "winterspringfallentrees", + value = "winterspringfallentrees", }, { children = { { fileId = "202876", - value = "winterspringtree01.m2", text = "winterspringtree01.m2", + value = "winterspringtree01.m2", }, { fileId = "202877", - value = "winterspringtree02.m2", text = "winterspringtree02.m2", + value = "winterspringtree02.m2", }, { fileId = "202878", - value = "winterspringtree03.m2", text = "winterspringtree03.m2", + value = "winterspringtree03.m2", }, }, - value = "winterspringtrees", text = "winterspringtrees", + value = "winterspringtrees", }, { children = { { fileId = "202884", - value = "winterspringworldtreeroot01.m2", text = "winterspringworldtreeroot01.m2", + value = "winterspringworldtreeroot01.m2", }, { fileId = "202885", - value = "winterspringworldtreeroot02.m2", text = "winterspringworldtreeroot02.m2", + value = "winterspringworldtreeroot02.m2", }, { fileId = "202886", - value = "winterspringworldtreeroot03.m2", text = "winterspringworldtreeroot03.m2", + value = "winterspringworldtreeroot03.m2", }, { fileId = "202887", - value = "winterspringworldtreeroot04.m2", text = "winterspringworldtreeroot04.m2", + value = "winterspringworldtreeroot04.m2", }, }, - value = "worldtreeroots", text = "worldtreeroots", + value = "worldtreeroots", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "winterspring", text = "winterspring", + value = "winterspring", }, }, - value = "kalimdor", text = "kalimdor", + value = "kalimdor", }, { children = { @@ -81312,349 +69618,349 @@ WeakAuras.ModelPaths = { children = { { fileId = "202890", - value = "badlandsbones01.m2", text = "badlandsbones01.m2", + value = "badlandsbones01.m2", }, { fileId = "202891", - value = "badlandsbones02.m2", text = "badlandsbones02.m2", + value = "badlandsbones02.m2", }, { fileId = "202892", - value = "badlandsbones03.m2", text = "badlandsbones03.m2", + value = "badlandsbones03.m2", }, }, - value = "bones", text = "bones", + value = "bones", }, { children = { { fileId = "202904", - value = "badlandsshrub01.m2", text = "badlandsshrub01.m2", + value = "badlandsshrub01.m2", }, { fileId = "202905", - value = "badlandsshrub02.m2", text = "badlandsshrub02.m2", + value = "badlandsshrub02.m2", }, { fileId = "202906", - value = "badlandsshrub03.m2", text = "badlandsshrub03.m2", + value = "badlandsshrub03.m2", }, { fileId = "202907", - value = "badlandsshrub03dead.m2", text = "badlandsshrub03dead.m2", + value = "badlandsshrub03dead.m2", }, { fileId = "202908", - value = "badlandsshrub04.m2", text = "badlandsshrub04.m2", + value = "badlandsshrub04.m2", }, { fileId = "202909", - value = "badlandsshrub04dead.m2", text = "badlandsshrub04dead.m2", + value = "badlandsshrub04dead.m2", }, { fileId = "202910", - value = "badlandsshrub05.m2", text = "badlandsshrub05.m2", + value = "badlandsshrub05.m2", }, { fileId = "202911", - value = "badlandsshrub06.m2", text = "badlandsshrub06.m2", + value = "badlandsshrub06.m2", }, { fileId = "202913", - value = "badlandsshrub07.m2", text = "badlandsshrub07.m2", + value = "badlandsshrub07.m2", }, { fileId = "202914", - value = "badlandsshrub08.m2", text = "badlandsshrub08.m2", + value = "badlandsshrub08.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "202925", - value = "badlandscactus_1.m2", text = "badlandscactus_1.m2", + value = "badlandscactus_1.m2", }, { fileId = "202926", - value = "badlandscactus_10.m2", text = "badlandscactus_10.m2", + value = "badlandscactus_10.m2", }, { fileId = "202927", - value = "badlandscactus_2.m2", text = "badlandscactus_2.m2", + value = "badlandscactus_2.m2", }, { fileId = "202928", - value = "badlandscactus_3.m2", text = "badlandscactus_3.m2", + value = "badlandscactus_3.m2", }, { fileId = "202929", - value = "badlandscactus_4.m2", text = "badlandscactus_4.m2", + value = "badlandscactus_4.m2", }, { fileId = "202930", - value = "badlandscactus_5.m2", text = "badlandscactus_5.m2", + value = "badlandscactus_5.m2", }, { fileId = "202931", - value = "badlandscactus_6.m2", text = "badlandscactus_6.m2", + value = "badlandscactus_6.m2", }, { fileId = "202932", - value = "badlandscactus_7.m2", text = "badlandscactus_7.m2", + value = "badlandscactus_7.m2", }, { fileId = "202933", - value = "badlandscactus_8.m2", text = "badlandscactus_8.m2", + value = "badlandscactus_8.m2", }, { fileId = "202934", - value = "badlandscactus_9.m2", text = "badlandscactus_9.m2", + value = "badlandscactus_9.m2", }, }, - value = "cactus", text = "cactus", + value = "cactus", }, { children = { { fileId = "202935", - value = "questbladebadlands.m2", text = "questbladebadlands.m2", + value = "questbladebadlands.m2", }, }, - value = "questblade", text = "questblade", + value = "questblade", }, { children = { { fileId = "202940", - value = "badlandsrock01.m2", text = "badlandsrock01.m2", + value = "badlandsrock01.m2", }, { fileId = "202941", - value = "badlandsrock02.m2", text = "badlandsrock02.m2", + value = "badlandsrock02.m2", }, { fileId = "202942", - value = "badlandsrock03.m2", text = "badlandsrock03.m2", + value = "badlandsrock03.m2", }, { fileId = "202943", - value = "badlandsrock04.m2", text = "badlandsrock04.m2", + value = "badlandsrock04.m2", }, { fileId = "202944", - value = "badlandsrock05.m2", text = "badlandsrock05.m2", + value = "badlandsrock05.m2", }, { fileId = "202945", - value = "badlandsrock06.m2", text = "badlandsrock06.m2", + value = "badlandsrock06.m2", }, { fileId = "202946", - value = "badlandsrock07.m2", text = "badlandsrock07.m2", + value = "badlandsrock07.m2", }, { fileId = "202947", - value = "badlandsrock08.m2", text = "badlandsrock08.m2", + value = "badlandsrock08.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "202952", - value = "pentagramdirtbadlands.m2", text = "pentagramdirtbadlands.m2", + value = "pentagramdirtbadlands.m2", }, }, - value = "rune", text = "rune", + value = "rune", }, { children = { { fileId = "202953", - value = "badlandsskeletalking.m2", text = "badlandsskeletalking.m2", + value = "badlandsskeletalking.m2", }, }, - value = "skeletalking", text = "skeletalking", + value = "skeletalking", }, { children = { { fileId = "202955", - value = "badlandscobrapillar01.m2", text = "badlandscobrapillar01.m2", + value = "badlandscobrapillar01.m2", }, { fileId = "202956", - value = "badlandscobrapillar02.m2", text = "badlandscobrapillar02.m2", + value = "badlandscobrapillar02.m2", }, { fileId = "202957", - value = "badlandscobrapillar03.m2", text = "badlandscobrapillar03.m2", + value = "badlandscobrapillar03.m2", }, { fileId = "202958", - value = "badlandscobrastatue01.m2", text = "badlandscobrastatue01.m2", + value = "badlandscobrastatue01.m2", }, { fileId = "202959", - value = "badlandscobrastatue02.m2", text = "badlandscobrastatue02.m2", + value = "badlandscobrastatue02.m2", }, { fileId = "202960", - value = "badlandscobrastatue03.m2", text = "badlandscobrastatue03.m2", + value = "badlandscobrastatue03.m2", }, }, - value = "statues", text = "statues", + value = "statues", }, { children = { { fileId = "202970", - value = "badlandscactus01.m2", text = "badlandscactus01.m2", + value = "badlandscactus01.m2", }, { fileId = "202971", - value = "badlandscactus02.m2", text = "badlandscactus02.m2", + value = "badlandscactus02.m2", }, { fileId = "202972", - value = "badlandscactus03.m2", text = "badlandscactus03.m2", + value = "badlandscactus03.m2", }, { fileId = "202973", - value = "badlandspalmtree01.m2", text = "badlandspalmtree01.m2", + value = "badlandspalmtree01.m2", }, { fileId = "202974", - value = "badlandspalmtree02.m2", text = "badlandspalmtree02.m2", + value = "badlandspalmtree02.m2", }, { fileId = "202975", - value = "badlandstree01.m2", text = "badlandstree01.m2", + value = "badlandstree01.m2", }, { fileId = "202976", - value = "badlandstree01dead.m2", text = "badlandstree01dead.m2", + value = "badlandstree01dead.m2", }, { fileId = "202977", - value = "badlandstree01fallen.m2", text = "badlandstree01fallen.m2", + value = "badlandstree01fallen.m2", }, { fileId = "202978", - value = "badlandstree02.m2", text = "badlandstree02.m2", + value = "badlandstree02.m2", }, { fileId = "202979", - value = "badlandstree02dead.m2", text = "badlandstree02dead.m2", + value = "badlandstree02dead.m2", }, { fileId = "202980", - value = "badlandstree02fallen.m2", text = "badlandstree02fallen.m2", + value = "badlandstree02fallen.m2", }, { fileId = "202981", - value = "badlandstree03.m2", text = "badlandstree03.m2", + value = "badlandstree03.m2", }, { fileId = "202982", - value = "badlandstree03dead.m2", text = "badlandstree03dead.m2", + value = "badlandstree03dead.m2", }, { fileId = "202983", - value = "badlandstree04.m2", text = "badlandstree04.m2", + value = "badlandstree04.m2", }, { fileId = "202984", - value = "badlandstreestump01.m2", text = "badlandstreestump01.m2", + value = "badlandstreestump01.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "203004", - value = "badlandssunkenwagon.m2", text = "badlandssunkenwagon.m2", + value = "badlandssunkenwagon.m2", }, }, - value = "wagon", text = "wagon", + value = "wagon", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "badlands", text = "badlands", + value = "badlands", }, { children = { @@ -81664,140 +69970,140 @@ WeakAuras.ModelPaths = { children = { { fileId = "203006", - value = "blackrockaltarritual.m2", text = "blackrockaltarritual.m2", + value = "blackrockaltarritual.m2", }, }, - value = "altarritual", text = "altarritual", + value = "altarritual", }, { children = { { fileId = "203010", - value = "darkironanvil.m2", text = "darkironanvil.m2", + value = "darkironanvil.m2", }, { fileId = "203012", - value = "darkironforge.m2", text = "darkironforge.m2", + value = "darkironforge.m2", }, }, - value = "anvil", text = "anvil", + value = "anvil", }, { children = { { fileId = "203013", - value = "arenaflag.m2", text = "arenaflag.m2", + value = "arenaflag.m2", }, }, - value = "arenaflag", text = "arenaflag", + value = "arenaflag", }, { children = { { fileId = "203016", - value = "blackrockchalice.m2", text = "blackrockchalice.m2", + value = "blackrockchalice.m2", }, }, - value = "chalice", text = "chalice", + value = "chalice", }, { children = { { fileId = "203018", - value = "darkironbrazier.m2", text = "darkironbrazier.m2", + value = "darkironbrazier.m2", }, }, - value = "darkironbrazier", text = "darkironbrazier", + value = "darkironbrazier", }, { children = { { fileId = "203020", - value = "darkironsafe.m2", text = "darkironsafe.m2", + value = "darkironsafe.m2", }, }, - value = "safe", text = "safe", + value = "safe", }, { children = { { fileId = "203022", - value = "blackrockseal.m2", text = "blackrockseal.m2", + value = "blackrockseal.m2", }, }, - value = "seal", text = "seal", + value = "seal", }, { children = { { fileId = "203024", - value = "statuedarkironthaurissan.m2", text = "statuedarkironthaurissan.m2", + value = "statuedarkironthaurissan.m2", }, { fileId = "203025", - value = "statuedarkironthaurissanhammer.m2", text = "statuedarkironthaurissanhammer.m2", + value = "statuedarkironthaurissanhammer.m2", }, }, - value = "statuethaurissan", text = "statuethaurissan", + value = "statuethaurissan", }, { children = { { fileId = "203027", - value = "blackrocksuppressiontrap.m2", text = "blackrocksuppressiontrap.m2", + value = "blackrocksuppressiontrap.m2", }, }, - value = "suppressiontrap", text = "suppressiontrap", + value = "suppressiontrap", }, { children = { { fileId = "203028", - value = "blackrockvaultdepositdoor01.m2", text = "blackrockvaultdepositdoor01.m2", + value = "blackrockvaultdepositdoor01.m2", }, { fileId = "203029", - value = "blackrockvaultdepositdoor02.m2", text = "blackrockvaultdepositdoor02.m2", + value = "blackrockvaultdepositdoor02.m2", }, { fileId = "203030", - value = "blackrockvaultsecretdoor.m2", text = "blackrockvaultsecretdoor.m2", + value = "blackrockvaultsecretdoor.m2", }, { fileId = "203031", - value = "blackrockvaultspecialdoor.m2", text = "blackrockvaultspecialdoor.m2", + value = "blackrockvaultspecialdoor.m2", }, }, - value = "vault", text = "vault", + value = "vault", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -81805,357 +70111,357 @@ WeakAuras.ModelPaths = { children = { { fileId = "203033", - value = "blackrockdirectionalsign.m2", text = "blackrockdirectionalsign.m2", + value = "blackrockdirectionalsign.m2", }, }, - value = "blackrockdirectionalsign", text = "blackrockdirectionalsign", + value = "blackrockdirectionalsign", }, { children = { { fileId = "203035", - value = "blackrockstatuelavabubble.m2", text = "blackrockstatuelavabubble.m2", + value = "blackrockstatuelavabubble.m2", }, { fileId = "203036", - value = "blackrockstatuelavabubbles.m2", text = "blackrockstatuelavabubbles.m2", + value = "blackrockstatuelavabubbles.m2", }, { fileId = "203037", - value = "blackrockstatuelavasplash.m2", text = "blackrockstatuelavasplash.m2", + value = "blackrockstatuelavasplash.m2", }, }, - value = "blackrocklavabubbles", text = "blackrocklavabubbles", + value = "blackrocklavabubbles", }, { children = { { fileId = "203040", - value = "blackrocklavafalls01.m2", text = "blackrocklavafalls01.m2", + value = "blackrocklavafalls01.m2", }, { fileId = "203041", - value = "blackrocklavafalls02.m2", text = "blackrocklavafalls02.m2", + value = "blackrocklavafalls02.m2", }, { fileId = "203043", - value = "blackrockmouthlava01.m2", text = "blackrockmouthlava01.m2", + value = "blackrockmouthlava01.m2", }, { fileId = "203044", - value = "blackrockmouthlava02.m2", text = "blackrockmouthlava02.m2", + value = "blackrockmouthlava02.m2", }, { fileId = "203045", - value = "blackrockstatuelavaflow.m2", text = "blackrockstatuelavaflow.m2", + value = "blackrockstatuelavaflow.m2", }, { fileId = "203046", - value = "blackrockstatuelavaflowwide.m2", text = "blackrockstatuelavaflowwide.m2", + value = "blackrockstatuelavaflowwide.m2", }, }, - value = "blackrocklavaflow", text = "blackrocklavaflow", + value = "blackrocklavaflow", }, { children = { { fileId = "203050", - value = "bankportrait.m2", text = "bankportrait.m2", + value = "bankportrait.m2", }, { fileId = "203051", - value = "bankportraitplate.m2", text = "bankportraitplate.m2", + value = "bankportraitplate.m2", }, }, - value = "blackrockportraits", text = "blackrockportraits", + value = "blackrockportraits", }, { fileId = "203054", - value = "blackrockteslacoil.m2", text = "blackrockteslacoil.m2", + value = "blackrockteslacoil.m2", }, { children = { { fileId = "203055", - value = "blackwinglair_throne.m2", text = "blackwinglair_throne.m2", + value = "blackwinglair_throne.m2", }, }, - value = "blackwingthrone", text = "blackwingthrone", + value = "blackwingthrone", }, { children = { { fileId = "203057", - value = "blackrockbloodmachine01.m2", text = "blackrockbloodmachine01.m2", + value = "blackrockbloodmachine01.m2", }, { fileId = "203058", - value = "blackrockbloodmachine02.m2", text = "blackrockbloodmachine02.m2", + value = "blackrockbloodmachine02.m2", }, { fileId = "203059", - value = "blackrockbloodmachine03.m2", text = "blackrockbloodmachine03.m2", + value = "blackrockbloodmachine03.m2", }, { fileId = "203060", - value = "blackrockbloodmachine04.m2", text = "blackrockbloodmachine04.m2", + value = "blackrockbloodmachine04.m2", }, { fileId = "203061", - value = "blackrockbloodvile.m2", text = "blackrockbloodvile.m2", + value = "blackrockbloodvile.m2", }, { fileId = "203069", - value = "hangingdragon01.m2", text = "hangingdragon01.m2", + value = "hangingdragon01.m2", }, { fileId = "203070", - value = "hangingdragon02.m2", text = "hangingdragon02.m2", + value = "hangingdragon02.m2", }, { fileId = "203072", - value = "wallmountedvial01.m2", text = "wallmountedvial01.m2", + value = "wallmountedvial01.m2", }, { fileId = "203073", - value = "wallmountedvial02.m2", text = "wallmountedvial02.m2", + value = "wallmountedvial02.m2", }, }, - value = "deathwingexperiments", text = "deathwingexperiments", + value = "deathwingexperiments", }, { children = { { fileId = "203074", - value = "blackrockcelldoor01.m2", text = "blackrockcelldoor01.m2", + value = "blackrockcelldoor01.m2", }, { fileId = "203075", - value = "blackrockdoors01.m2", text = "blackrockdoors01.m2", + value = "blackrockdoors01.m2", }, { fileId = "203076", - value = "blackrockdoorsingle.m2", text = "blackrockdoorsingle.m2", + value = "blackrockdoorsingle.m2", }, { fileId = "203077", - value = "blackrockhugedoors.m2", text = "blackrockhugedoors.m2", + value = "blackrockhugedoors.m2", }, { fileId = "203078", - value = "blackrockhugedoorsmechanism.m2", text = "blackrockhugedoorsmechanism.m2", + value = "blackrockhugedoorsmechanism.m2", }, { fileId = "203082", - value = "blackrockhugedoorsmechanismlock.m2", text = "blackrockhugedoorsmechanismlock.m2", + value = "blackrockhugedoorsmechanismlock.m2", }, { fileId = "203083", - value = "blackrockhugedoorsopendoorcollision.m2", text = "blackrockhugedoorsopendoorcollision.m2", + value = "blackrockhugedoorsopendoorcollision.m2", }, { fileId = "203084", - value = "blackrockhugedoorsportcullis.m2", text = "blackrockhugedoorsportcullis.m2", + value = "blackrockhugedoorsportcullis.m2", }, { fileId = "203086", - value = "blackrockirondoor01.m2", text = "blackrockirondoor01.m2", + value = "blackrockirondoor01.m2", }, { fileId = "203087", - value = "darkironportcullis.m2", text = "darkironportcullis.m2", + value = "darkironportcullis.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, { children = { { fileId = "203089", - value = "dragonkinegg.m2", text = "dragonkinegg.m2", + value = "dragonkinegg.m2", }, { fileId = "203090", - value = "dragonkineggbroken.m2", text = "dragonkineggbroken.m2", + value = "dragonkineggbroken.m2", }, }, - value = "dragonkineggs", text = "dragonkineggs", + value = "dragonkineggs", }, { children = { { fileId = "203091", - value = "dragonkinnest01.m2", text = "dragonkinnest01.m2", + value = "dragonkinnest01.m2", }, { fileId = "203092", - value = "dragonkinnest02.m2", text = "dragonkinnest02.m2", + value = "dragonkinnest02.m2", }, { fileId = "203093", - value = "dragonkinnest03.m2", text = "dragonkinnest03.m2", + value = "dragonkinnest03.m2", }, { fileId = "203094", - value = "dragonkinnestclump01.m2", text = "dragonkinnestclump01.m2", + value = "dragonkinnestclump01.m2", }, }, - value = "dragonkinnests", text = "dragonkinnests", + value = "dragonkinnests", }, { children = { { fileId = "203096", - value = "cannongolemarm.m2", text = "cannongolemarm.m2", + value = "cannongolemarm.m2", }, { fileId = "203097", - value = "cannongolembust.m2", text = "cannongolembust.m2", + value = "cannongolembust.m2", }, { fileId = "203098", - value = "cannongolemcannon.m2", text = "cannongolemcannon.m2", + value = "cannongolemcannon.m2", }, { fileId = "203099", - value = "cannongolemfoot.m2", text = "cannongolemfoot.m2", + value = "cannongolemfoot.m2", }, { fileId = "203100", - value = "cannongolemoperationtable.m2", text = "cannongolemoperationtable.m2", + value = "cannongolemoperationtable.m2", }, { fileId = "203101", - value = "cannongolemwaist.m2", text = "cannongolemwaist.m2", + value = "cannongolemwaist.m2", }, { fileId = "203103", - value = "darkironoperationtableempty.m2", text = "darkironoperationtableempty.m2", + value = "darkironoperationtableempty.m2", }, }, - value = "golemparts", text = "golemparts", + value = "golemparts", }, { children = { { fileId = "203105", - value = "blackrockhookarm01.m2", text = "blackrockhookarm01.m2", + value = "blackrockhookarm01.m2", }, { fileId = "203106", - value = "blackrockhookbody01.m2", text = "blackrockhookbody01.m2", + value = "blackrockhookbody01.m2", }, { fileId = "203107", - value = "blackrockhookcannon01.m2", text = "blackrockhookcannon01.m2", + value = "blackrockhookcannon01.m2", }, { fileId = "203108", - value = "blackrockhookempty.m2", text = "blackrockhookempty.m2", + value = "blackrockhookempty.m2", }, { fileId = "203109", - value = "blackrockhookfoot01.m2", text = "blackrockhookfoot01.m2", + value = "blackrockhookfoot01.m2", }, { fileId = "203110", - value = "blackrockhookhead01.m2", text = "blackrockhookhead01.m2", + value = "blackrockhookhead01.m2", }, }, - value = "hooks", text = "hooks", + value = "hooks", }, { children = { { fileId = "203112", - value = "museumgem01.m2", text = "museumgem01.m2", + value = "museumgem01.m2", }, }, - value = "museumgem", text = "museumgem", + value = "museumgem", }, { children = { { fileId = "203114", - value = "warchiefrendshead.m2", text = "warchiefrendshead.m2", + value = "warchiefrendshead.m2", }, }, - value = "warchiefshead", text = "warchiefshead", + value = "warchiefshead", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "blackrock", text = "blackrock", + value = "blackrock", }, { children = { @@ -82165,192 +70471,192 @@ WeakAuras.ModelPaths = { children = { { fileId = "203116", - value = "fortress01_06.m2", text = "fortress01_06.m2", + value = "fortress01_06.m2", }, }, - value = "fortress01_06", text = "fortress01_06", + value = "fortress01_06", }, { children = { { fileId = "203120", - value = "fortress01_08.m2", text = "fortress01_08.m2", + value = "fortress01_08.m2", }, }, - value = "fortress01_08", text = "fortress01_08", + value = "fortress01_08", }, { children = { { fileId = "203122", - value = "fortress01_09.m2", text = "fortress01_09.m2", + value = "fortress01_09.m2", }, }, - value = "fortress01_09", text = "fortress01_09", + value = "fortress01_09", }, { children = { { fileId = "203123", - value = "fortress02_04.m2", text = "fortress02_04.m2", + value = "fortress02_04.m2", }, }, - value = "fortress02_04", text = "fortress02_04", + value = "fortress02_04", }, { children = { { fileId = "203124", - value = "fortress02_06.m2", text = "fortress02_06.m2", + value = "fortress02_06.m2", }, }, - value = "fortress02_06", text = "fortress02_06", + value = "fortress02_06", }, { children = { { fileId = "203125", - value = "fortress02_07.m2", text = "fortress02_07.m2", + value = "fortress02_07.m2", }, }, - value = "fortress02_07", text = "fortress02_07", + value = "fortress02_07", }, { children = { { fileId = "203126", - value = "fortress03_03.m2", text = "fortress03_03.m2", + value = "fortress03_03.m2", }, }, - value = "fortress03_03", text = "fortress03_03", + value = "fortress03_03", }, { children = { { fileId = "203127", - value = "fortress03_04a.m2", text = "fortress03_04a.m2", + value = "fortress03_04a.m2", }, }, - value = "fortress03_04a", text = "fortress03_04a", + value = "fortress03_04a", }, { children = { { fileId = "203128", - value = "fortress03_04b.m2", text = "fortress03_04b.m2", + value = "fortress03_04b.m2", }, }, - value = "fortress03_04b", text = "fortress03_04b", + value = "fortress03_04b", }, { children = { { fileId = "203129", - value = "fortress03_05.m2", text = "fortress03_05.m2", + value = "fortress03_05.m2", }, }, - value = "fortress03_05", text = "fortress03_05", + value = "fortress03_05", }, { children = { { fileId = "203130", - value = "fortress03_05b.m2", text = "fortress03_05b.m2", + value = "fortress03_05b.m2", }, }, - value = "fortress03_05b", text = "fortress03_05b", + value = "fortress03_05b", }, { children = { { fileId = "203131", - value = "fortress04_03.m2", text = "fortress04_03.m2", + value = "fortress04_03.m2", }, }, - value = "fortress04_03", text = "fortress04_03", + value = "fortress04_03", }, { children = { { fileId = "203132", - value = "fortress04_05.m2", text = "fortress04_05.m2", + value = "fortress04_05.m2", }, }, - value = "fortress04_05", text = "fortress04_05", + value = "fortress04_05", }, { children = { { fileId = "203133", - value = "fortress04_06.m2", text = "fortress04_06.m2", + value = "fortress04_06.m2", }, }, - value = "fortress04_06", text = "fortress04_06", + value = "fortress04_06", }, { children = { { fileId = "203134", - value = "fortress05_03.m2", text = "fortress05_03.m2", + value = "fortress05_03.m2", }, }, - value = "fortress05_03", text = "fortress05_03", + value = "fortress05_03", }, { children = { { fileId = "203135", - value = "fortress05_05.m2", text = "fortress05_05.m2", + value = "fortress05_05.m2", }, }, - value = "fortress05_05", text = "fortress05_05", + value = "fortress05_05", }, { children = { { fileId = "203136", - value = "runestonesnow_01.m2", text = "runestonesnow_01.m2", + value = "runestonesnow_01.m2", }, }, - value = "runestonesnow_01", text = "runestonesnow_01", + value = "runestonesnow_01", }, }, - value = "buildings", text = "buildings", + value = "buildings", }, { children = { @@ -82358,557 +70664,557 @@ WeakAuras.ModelPaths = { children = { { fileId = "203138", - value = "auctioneercollision.m2", text = "auctioneercollision.m2", + value = "auctioneercollision.m2", }, }, - value = "auctionhouse", text = "auctionhouse", + value = "auctionhouse", }, { children = { { fileId = "203139", - value = "dwarfbannerblue01.m2", text = "dwarfbannerblue01.m2", + value = "dwarfbannerblue01.m2", }, { fileId = "203140", - value = "dwarfbannergold01.m2", text = "dwarfbannergold01.m2", + value = "dwarfbannergold01.m2", }, { fileId = "203141", - value = "dwarfbannerred01.m2", text = "dwarfbannerred01.m2", + value = "dwarfbannerred01.m2", }, { fileId = "203142", - value = "dwarfbannersilver01.m2", text = "dwarfbannersilver01.m2", + value = "dwarfbannersilver01.m2", }, }, - value = "banners", text = "banners", + value = "banners", }, { children = { { fileId = "203148", - value = "ironforgeangledbush01.m2", text = "ironforgeangledbush01.m2", + value = "ironforgeangledbush01.m2", }, { fileId = "203149", - value = "ironforgebush01.m2", text = "ironforgebush01.m2", + value = "ironforgebush01.m2", }, { fileId = "203151", - value = "ironforgesnowybush02.m2", text = "ironforgesnowybush02.m2", + value = "ironforgesnowybush02.m2", }, }, - value = "bush", text = "bush", + value = "bush", }, { children = { { fileId = "203152", - value = "ironforgeelevator.m2", text = "ironforgeelevator.m2", + value = "ironforgeelevator.m2", }, { fileId = "203153", - value = "ironforgeelevatordoor.m2", text = "ironforgeelevatordoor.m2", + value = "ironforgeelevatordoor.m2", }, { fileId = "203154", - value = "ironforgehouseelevator.m2", text = "ironforgehouseelevator.m2", + value = "ironforgehouseelevator.m2", }, }, - value = "elevators", text = "elevators", + value = "elevators", }, { children = { { fileId = "203158", - value = "dunmoroghstonefence01.m2", text = "dunmoroghstonefence01.m2", + value = "dunmoroghstonefence01.m2", }, { fileId = "203159", - value = "dunmoroghstonefence02.m2", text = "dunmoroghstonefence02.m2", + value = "dunmoroghstonefence02.m2", }, { fileId = "203160", - value = "dunmoroghstonefence03.m2", text = "dunmoroghstonefence03.m2", + value = "dunmoroghstonefence03.m2", }, { fileId = "203161", - value = "dunmoroghstonefence04.m2", text = "dunmoroghstonefence04.m2", + value = "dunmoroghstonefence04.m2", }, }, - value = "fences", text = "fences", + value = "fences", }, { children = { { fileId = "203162", - value = "garagemachine.m2", text = "garagemachine.m2", + value = "garagemachine.m2", }, }, - value = "garagemachine", text = "garagemachine", + value = "garagemachine", }, { children = { { fileId = "203164", - value = "gnomekinggear.m2", text = "gnomekinggear.m2", + value = "gnomekinggear.m2", }, { fileId = "203165", - value = "gnomekinggearsmall.m2", text = "gnomekinggearsmall.m2", + value = "gnomekinggearsmall.m2", }, { fileId = "203167", - value = "gnomekingpistons.m2", text = "gnomekingpistons.m2", + value = "gnomekingpistons.m2", }, { fileId = "203168", - value = "gnomekingspiralgear.m2", text = "gnomekingspiralgear.m2", + value = "gnomekingspiralgear.m2", }, { fileId = "203169", - value = "gnomekingwormgear.m2", text = "gnomekingwormgear.m2", + value = "gnomekingwormgear.m2", }, { children = { { fileId = "203171", - value = "gnomereganvent.m2", text = "gnomereganvent.m2", + value = "gnomereganvent.m2", }, }, - value = "vent", text = "vent", + value = "vent", }, }, - value = "gnomearea", text = "gnomearea", + value = "gnomearea", }, { children = { { fileId = "203176", - value = "thegreatanvil.m2", text = "thegreatanvil.m2", + value = "thegreatanvil.m2", }, }, - value = "greatforge", text = "greatforge", + value = "greatforge", }, { children = { { fileId = "203177", - value = "hammerquest01.m2", text = "hammerquest01.m2", + value = "hammerquest01.m2", }, }, - value = "hammerquest01", text = "hammerquest01", + value = "hammerquest01", }, { children = { { fileId = "203178", - value = "hotcoals.m2", text = "hotcoals.m2", + value = "hotcoals.m2", }, }, - value = "hotcoals", text = "hotcoals", + value = "hotcoals", }, { children = { { fileId = "203179", - value = "forgelavaa.m2", text = "forgelavaa.m2", + value = "forgelavaa.m2", }, { fileId = "203180", - value = "forgelavab.m2", text = "forgelavab.m2", + value = "forgelavab.m2", }, { fileId = "203181", - value = "ironforgebellow.m2", text = "ironforgebellow.m2", + value = "ironforgebellow.m2", }, { fileId = "203184", - value = "ironforgepiston.m2", text = "ironforgepiston.m2", + value = "ironforgepiston.m2", }, { fileId = "203185", - value = "ironforgewheel.m2", text = "ironforgewheel.m2", + value = "ironforgewheel.m2", }, { fileId = "203187", - value = "lavapots.m2", text = "lavapots.m2", + value = "lavapots.m2", }, { fileId = "203188", - value = "lavasteam.m2", text = "lavasteam.m2", + value = "lavasteam.m2", }, }, - value = "lavasteam", text = "lavasteam", + value = "lavasteam", }, { children = { { fileId = "203190", - value = "margolreaverhorn.m2", text = "margolreaverhorn.m2", + value = "margolreaverhorn.m2", }, }, - value = "margolreaverhorn", text = "margolreaverhorn", + value = "margolreaverhorn", }, { children = { { fileId = "203194", - value = "dwarvenglobe01.m2", text = "dwarvenglobe01.m2", + value = "dwarvenglobe01.m2", }, { fileId = "203195", - value = "giantramexhibit.m2", text = "giantramexhibit.m2", + value = "giantramexhibit.m2", }, { fileId = "203196", - value = "gryphonclawexhibit.m2", text = "gryphonclawexhibit.m2", + value = "gryphonclawexhibit.m2", }, }, - value = "museumexhibits", text = "museumexhibits", + value = "museumexhibits", }, { children = { { fileId = "203198", - value = "dwarfmuseumplaque01.m2", text = "dwarfmuseumplaque01.m2", + value = "dwarfmuseumplaque01.m2", }, }, - value = "plaques", text = "plaques", + value = "plaques", }, { children = { { fileId = "203200", - value = "ironforgecliff01.m2", text = "ironforgecliff01.m2", + value = "ironforgecliff01.m2", }, { fileId = "203201", - value = "ironforgecliff02.m2", text = "ironforgecliff02.m2", + value = "ironforgecliff02.m2", }, { fileId = "203202", - value = "ironforgecliff03.m2", text = "ironforgecliff03.m2", + value = "ironforgecliff03.m2", }, { fileId = "203203", - value = "ironforgecliff04.m2", text = "ironforgecliff04.m2", + value = "ironforgecliff04.m2", }, { fileId = "203208", - value = "snowytowerrock01.m2", text = "snowytowerrock01.m2", + value = "snowytowerrock01.m2", }, { fileId = "203209", - value = "snowytowerrock02.m2", text = "snowytowerrock02.m2", + value = "snowytowerrock02.m2", }, { fileId = "203210", - value = "snowytowerrock03.m2", text = "snowytowerrock03.m2", + value = "snowytowerrock03.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "203213", - value = "ironforgesignpost.m2", text = "ironforgesignpost.m2", + value = "ironforgesignpost.m2", }, { fileId = "203214", - value = "ironforgesignpostpointer.m2", text = "ironforgesignpostpointer.m2", + value = "ironforgesignpostpointer.m2", }, }, - value = "signposts", text = "signposts", + value = "signposts", }, { children = { { fileId = "203217", - value = "slimejar01.m2", text = "slimejar01.m2", + value = "slimejar01.m2", }, { fileId = "203218", - value = "slimejar02.m2", text = "slimejar02.m2", + value = "slimejar02.m2", }, { fileId = "203219", - value = "slimejar03.m2", text = "slimejar03.m2", + value = "slimejar03.m2", }, }, - value = "slimejars", text = "slimejars", + value = "slimejars", }, { children = { { fileId = "203221", - value = "ironforgestatue_01.m2", text = "ironforgestatue_01.m2", + value = "ironforgestatue_01.m2", }, }, - value = "statues", text = "statues", + value = "statues", }, { children = { { fileId = "203226", - value = "ironforgesteamtank.m2", text = "ironforgesteamtank.m2", + value = "ironforgesteamtank.m2", }, { fileId = "203229", - value = "ironforgesteamtankdrag.m2", text = "ironforgesteamtankdrag.m2", + value = "ironforgesteamtankdrag.m2", }, { fileId = "203230", - value = "ironforgesteamtankruined01.m2", text = "ironforgesteamtankruined01.m2", + value = "ironforgesteamtankruined01.m2", }, { fileId = "203231", - value = "ironforgesteamtankwolf.m2", text = "ironforgesteamtankwolf.m2", + value = "ironforgesteamtankwolf.m2", }, { fileId = "203232", - value = "ruinedsteamtankaxle01.m2", text = "ruinedsteamtankaxle01.m2", + value = "ruinedsteamtankaxle01.m2", }, { fileId = "203233", - value = "ruinedsteamtankgastank01.m2", text = "ruinedsteamtankgastank01.m2", + value = "ruinedsteamtankgastank01.m2", }, { fileId = "203234", - value = "ruinedsteamtankgear01.m2", text = "ruinedsteamtankgear01.m2", + value = "ruinedsteamtankgear01.m2", }, { fileId = "203235", - value = "ruinedsteamtankwheel01.m2", text = "ruinedsteamtankwheel01.m2", + value = "ruinedsteamtankwheel01.m2", }, }, - value = "steamtank", text = "steamtank", + value = "steamtank", }, { children = { { fileId = "203241", - value = "dwarventhrone01.m2", text = "dwarventhrone01.m2", + value = "dwarventhrone01.m2", }, }, - value = "throne", text = "throne", + value = "throne", }, { children = { { fileId = "203245", - value = "ironforgecrystalroof.m2", text = "ironforgecrystalroof.m2", + value = "ironforgecrystalroof.m2", }, }, - value = "throneroom", text = "throneroom", + value = "throneroom", }, { children = { { fileId = "203255", - value = "ironforgepine01.m2", text = "ironforgepine01.m2", + value = "ironforgepine01.m2", }, { fileId = "203256", - value = "ironforgepine02.m2", text = "ironforgepine02.m2", + value = "ironforgepine02.m2", }, { fileId = "203257", - value = "ironforgesnowtree01.m2", text = "ironforgesnowtree01.m2", + value = "ironforgesnowtree01.m2", }, { fileId = "203259", - value = "ironforgetree01.m2", text = "ironforgetree01.m2", + value = "ironforgetree01.m2", }, { fileId = "203260", - value = "ironforgetree02.m2", text = "ironforgetree02.m2", + value = "ironforgetree02.m2", }, { fileId = "203261", - value = "ironforgetree03.m2", text = "ironforgetree03.m2", + value = "ironforgetree03.m2", }, { fileId = "203262", - value = "ironforgetree04.m2", text = "ironforgetree04.m2", + value = "ironforgetree04.m2", }, { fileId = "203265", - value = "ironstump01.m2", text = "ironstump01.m2", + value = "ironstump01.m2", }, { fileId = "203266", - value = "ironstump02.m2", text = "ironstump02.m2", + value = "ironstump02.m2", }, { fileId = "203268", - value = "ironstump03.m2", text = "ironstump03.m2", + value = "ironstump03.m2", }, { fileId = "203269", - value = "ironstump04.m2", text = "ironstump04.m2", + value = "ironstump04.m2", }, { fileId = "203270", - value = "ironstump05.m2", text = "ironstump05.m2", + value = "ironstump05.m2", }, { fileId = "203276", - value = "wintermidtree01.m2", text = "wintermidtree01.m2", + value = "wintermidtree01.m2", }, { fileId = "203277", - value = "wintermidtree02.m2", text = "wintermidtree02.m2", + value = "wintermidtree02.m2", }, { fileId = "203278", - value = "wintermidtree03.m2", text = "wintermidtree03.m2", + value = "wintermidtree03.m2", }, { fileId = "203279", - value = "wintersmalltree01.m2", text = "wintersmalltree01.m2", + value = "wintersmalltree01.m2", }, { fileId = "203280", - value = "wintersmalltree02.m2", text = "wintersmalltree02.m2", + value = "wintersmalltree02.m2", }, { fileId = "203285", - value = "wintertree01.m2", text = "wintertree01.m2", + value = "wintertree01.m2", }, { fileId = "203286", - value = "wintertree02.m2", text = "wintertree02.m2", + value = "wintertree02.m2", }, { fileId = "203287", - value = "wintertree03.m2", text = "wintertree03.m2", + value = "wintertree03.m2", }, { fileId = "203288", - value = "wintertree04.m2", text = "wintertree04.m2", + value = "wintertree04.m2", }, { fileId = "203290", - value = "wintertree05.m2", text = "wintertree05.m2", + value = "wintertree05.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "ironforge", text = "ironforge", + value = "ironforge", }, { children = { @@ -82918,306 +71224,306 @@ WeakAuras.ModelPaths = { children = { { fileId = "203296", - value = "lochmodanshrub01.m2", text = "lochmodanshrub01.m2", + value = "lochmodanshrub01.m2", }, { fileId = "203297", - value = "lochmodanshrub02.m2", text = "lochmodanshrub02.m2", + value = "lochmodanshrub02.m2", }, { fileId = "203299", - value = "lochmodanshrub03.m2", text = "lochmodanshrub03.m2", + value = "lochmodanshrub03.m2", }, { fileId = "203300", - value = "lochmodanshrub04.m2", text = "lochmodanshrub04.m2", + value = "lochmodanshrub04.m2", }, { fileId = "203301", - value = "lochmodanshrub06.m2", text = "lochmodanshrub06.m2", + value = "lochmodanshrub06.m2", }, { fileId = "203302", - value = "lochmodanshurb05.m2", text = "lochmodanshurb05.m2", + value = "lochmodanshurb05.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "203305", - value = "testdam01.m2", text = "testdam01.m2", + value = "testdam01.m2", }, }, - value = "dam", text = "dam", + value = "dam", }, { children = { { fileId = "203307", - value = "lochmodanstonefence01.m2", text = "lochmodanstonefence01.m2", + value = "lochmodanstonefence01.m2", }, { fileId = "203308", - value = "lochmodanstonefence02.m2", text = "lochmodanstonefence02.m2", + value = "lochmodanstonefence02.m2", }, { fileId = "203309", - value = "lochmodanstonefence03.m2", text = "lochmodanstonefence03.m2", + value = "lochmodanstonefence03.m2", }, { fileId = "203310", - value = "lochmodanstonefence04.m2", text = "lochmodanstonefence04.m2", + value = "lochmodanstonefence04.m2", }, { fileId = "203311", - value = "lochmodanwoodfence01.m2", text = "lochmodanwoodfence01.m2", + value = "lochmodanwoodfence01.m2", }, { fileId = "203312", - value = "lochmodanwoodfence02.m2", text = "lochmodanwoodfence02.m2", + value = "lochmodanwoodfence02.m2", }, { fileId = "203313", - value = "lochmodanwoodfence03.m2", text = "lochmodanwoodfence03.m2", + value = "lochmodanwoodfence03.m2", }, { fileId = "203314", - value = "lochmodanwoodfence04.m2", text = "lochmodanwoodfence04.m2", + value = "lochmodanwoodfence04.m2", }, }, - value = "fences", text = "fences", + value = "fences", }, { children = { { fileId = "203316", - value = "lochtallgrass01.m2", text = "lochtallgrass01.m2", + value = "lochtallgrass01.m2", }, { fileId = "203317", - value = "lochtallgrass02.m2", text = "lochtallgrass02.m2", + value = "lochtallgrass02.m2", }, { fileId = "203318", - value = "lochtallgrass03.m2", text = "lochtallgrass03.m2", + value = "lochtallgrass03.m2", }, { fileId = "203319", - value = "lochtallgrass04.m2", text = "lochtallgrass04.m2", + value = "lochtallgrass04.m2", }, }, - value = "grass", text = "grass", + value = "grass", }, { children = { { fileId = "203320", - value = "lochlog01.m2", text = "lochlog01.m2", + value = "lochlog01.m2", }, }, - value = "logs", text = "logs", + value = "logs", }, { children = { { fileId = "203323", - value = "titanruinsarch01.m2", text = "titanruinsarch01.m2", + value = "titanruinsarch01.m2", }, { fileId = "203324", - value = "titanruinsarch02.m2", text = "titanruinsarch02.m2", + value = "titanruinsarch02.m2", }, { fileId = "203325", - value = "titanruinsblock01.m2", text = "titanruinsblock01.m2", + value = "titanruinsblock01.m2", }, { fileId = "203326", - value = "titanruinsblock02.m2", text = "titanruinsblock02.m2", + value = "titanruinsblock02.m2", }, { fileId = "203327", - value = "titanruinshead01.m2", text = "titanruinshead01.m2", + value = "titanruinshead01.m2", }, { fileId = "203328", - value = "titanruinspillar01.m2", text = "titanruinspillar01.m2", + value = "titanruinspillar01.m2", }, { fileId = "203329", - value = "titanruinspillar02.m2", text = "titanruinspillar02.m2", + value = "titanruinspillar02.m2", }, { fileId = "203330", - value = "titanruinspillar03.m2", text = "titanruinspillar03.m2", + value = "titanruinspillar03.m2", }, { fileId = "203331", - value = "titanruinspillar04.m2", text = "titanruinspillar04.m2", + value = "titanruinspillar04.m2", }, { fileId = "203332", - value = "titanruinspillar05.m2", text = "titanruinspillar05.m2", + value = "titanruinspillar05.m2", }, { fileId = "203333", - value = "titanruinswall01.m2", text = "titanruinswall01.m2", + value = "titanruinswall01.m2", }, { fileId = "203334", - value = "titanruinswall02.m2", text = "titanruinswall02.m2", + value = "titanruinswall02.m2", }, { fileId = "203335", - value = "titanruinswall03.m2", text = "titanruinswall03.m2", + value = "titanruinswall03.m2", }, { fileId = "203336", - value = "titanruinswall04.m2", text = "titanruinswall04.m2", + value = "titanruinswall04.m2", }, { fileId = "203337", - value = "titanruinswall05.m2", text = "titanruinswall05.m2", + value = "titanruinswall05.m2", }, }, - value = "titanruins", text = "titanruins", + value = "titanruins", }, { children = { { fileId = "203343", - value = "lochmodanfallentree01.m2", text = "lochmodanfallentree01.m2", + value = "lochmodanfallentree01.m2", }, { fileId = "203347", - value = "lochmodantree01.m2", text = "lochmodantree01.m2", + value = "lochmodantree01.m2", }, { fileId = "203348", - value = "lochmodantree02.m2", text = "lochmodantree02.m2", + value = "lochmodantree02.m2", }, { fileId = "203349", - value = "lochmodantree03.m2", text = "lochmodantree03.m2", + value = "lochmodantree03.m2", }, { fileId = "203350", - value = "lochmodantree04.m2", text = "lochmodantree04.m2", + value = "lochmodantree04.m2", }, { fileId = "203351", - value = "lochmodantree05.m2", text = "lochmodantree05.m2", + value = "lochmodantree05.m2", }, { fileId = "203352", - value = "lochmodantree06.m2", text = "lochmodantree06.m2", + value = "lochmodantree06.m2", }, { fileId = "203353", - value = "lochmodantree07.m2", text = "lochmodantree07.m2", + value = "lochmodantree07.m2", }, { fileId = "203354", - value = "lochmodantree08.m2", text = "lochmodantree08.m2", + value = "lochmodantree08.m2", }, { fileId = "203355", - value = "lochmodantree09.m2", text = "lochmodantree09.m2", + value = "lochmodantree09.m2", }, { fileId = "203356", - value = "lochmodantreelog01.m2", text = "lochmodantreelog01.m2", + value = "lochmodantreelog01.m2", }, { fileId = "203357", - value = "lochmodantreestump01.m2", text = "lochmodantreestump01.m2", + value = "lochmodantreestump01.m2", }, { fileId = "203359", - value = "lochmodantreestump02.m2", text = "lochmodantreestump02.m2", + value = "lochmodantreestump02.m2", }, { fileId = "203362", - value = "lochtallgrass05.m2", text = "lochtallgrass05.m2", + value = "lochtallgrass05.m2", }, { fileId = "203363", - value = "lochtallgrass06.m2", text = "lochtallgrass06.m2", + value = "lochtallgrass06.m2", }, { fileId = "203364", - value = "lochtallgrass07.m2", text = "lochtallgrass07.m2", + value = "lochtallgrass07.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "lochmodan", text = "lochmodan", + value = "lochmodan", }, { children = { @@ -83227,16 +71533,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "203368", - value = "stonekeeperaltar.m2", text = "stonekeeperaltar.m2", + value = "stonekeeperaltar.m2", }, }, - value = "altar", text = "altar", + value = "altar", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -83244,451 +71550,451 @@ WeakAuras.ModelPaths = { children = { { fileId = "203370", - value = "banner01.m2", text = "banner01.m2", + value = "banner01.m2", }, { fileId = "203372", - value = "banner02.m2", text = "banner02.m2", + value = "banner02.m2", }, { fileId = "203373", - value = "bannerruined01.m2", text = "bannerruined01.m2", + value = "bannerruined01.m2", }, { fileId = "203374", - value = "bannerruined02.m2", text = "bannerruined02.m2", + value = "bannerruined02.m2", }, }, - value = "banners", text = "banners", + value = "banners", }, { children = { { fileId = "203376", - value = "uldamanbench01.m2", text = "uldamanbench01.m2", + value = "uldamanbench01.m2", }, { fileId = "203377", - value = "uldamanbench02.m2", text = "uldamanbench02.m2", + value = "uldamanbench02.m2", }, { fileId = "203378", - value = "uldamanbenchbroken01.m2", text = "uldamanbenchbroken01.m2", + value = "uldamanbenchbroken01.m2", }, { fileId = "203380", - value = "uldamanbenchruined01.m2", text = "uldamanbenchruined01.m2", + value = "uldamanbenchruined01.m2", }, { fileId = "203381", - value = "uldamanbenchruined02.m2", text = "uldamanbenchruined02.m2", + value = "uldamanbenchruined02.m2", }, }, - value = "benches", text = "benches", + value = "benches", }, { children = { { fileId = "203385", - value = "uldamanbook01.m2", text = "uldamanbook01.m2", + value = "uldamanbook01.m2", }, { fileId = "203386", - value = "uldamanbook02.m2", text = "uldamanbook02.m2", + value = "uldamanbook02.m2", }, { fileId = "203387", - value = "uldamanbook03.m2", text = "uldamanbook03.m2", + value = "uldamanbook03.m2", }, { fileId = "203388", - value = "uldamanbookbroken01.m2", text = "uldamanbookbroken01.m2", + value = "uldamanbookbroken01.m2", }, { fileId = "203389", - value = "uldamanbookbroken02.m2", text = "uldamanbookbroken02.m2", + value = "uldamanbookbroken02.m2", }, }, - value = "books", text = "books", + value = "books", }, { children = { { fileId = "203392", - value = "uldamanbookshelf.m2", text = "uldamanbookshelf.m2", + value = "uldamanbookshelf.m2", }, { fileId = "203393", - value = "uldamanbookshelf01.m2", text = "uldamanbookshelf01.m2", + value = "uldamanbookshelf01.m2", }, { fileId = "203394", - value = "uldamanbookshelfbroken.m2", text = "uldamanbookshelfbroken.m2", + value = "uldamanbookshelfbroken.m2", }, { fileId = "203395", - value = "uldamanbookshelfbroken01.m2", text = "uldamanbookshelfbroken01.m2", + value = "uldamanbookshelfbroken01.m2", }, }, - value = "bookshelves", text = "bookshelves", + value = "bookshelves", }, { children = { { fileId = "203397", - value = "uldamanbrazier01.m2", text = "uldamanbrazier01.m2", + value = "uldamanbrazier01.m2", }, { fileId = "203398", - value = "uldamanbrazierbroken01.m2", text = "uldamanbrazierbroken01.m2", + value = "uldamanbrazierbroken01.m2", }, }, - value = "braziers", text = "braziers", + value = "braziers", }, { children = { { fileId = "203400", - value = "uldamanscrolldebris01.m2", text = "uldamanscrolldebris01.m2", + value = "uldamanscrolldebris01.m2", }, { fileId = "203401", - value = "uldamanscrolldebris02.m2", text = "uldamanscrolldebris02.m2", + value = "uldamanscrolldebris02.m2", }, { fileId = "203402", - value = "uldamanscrolldebris03.m2", text = "uldamanscrolldebris03.m2", + value = "uldamanscrolldebris03.m2", }, }, - value = "debris", text = "debris", + value = "debris", }, { children = { { fileId = "203403", - value = "uldamanlamp.m2", text = "uldamanlamp.m2", + value = "uldamanlamp.m2", }, { fileId = "203404", - value = "uldamanlampandpost.m2", text = "uldamanlampandpost.m2", + value = "uldamanlampandpost.m2", }, { fileId = "203405", - value = "uldamanlampandpostbusted01.m2", text = "uldamanlampandpostbusted01.m2", + value = "uldamanlampandpostbusted01.m2", }, { fileId = "203406", - value = "uldamanlampandpostbusted02.m2", text = "uldamanlampandpostbusted02.m2", + value = "uldamanlampandpostbusted02.m2", }, { fileId = "203407", - value = "uldamanlampandpostbusted03.m2", text = "uldamanlampandpostbusted03.m2", + value = "uldamanlampandpostbusted03.m2", }, { fileId = "203408", - value = "uldamanlampandpostbusted04.m2", text = "uldamanlampandpostbusted04.m2", + value = "uldamanlampandpostbusted04.m2", }, { fileId = "203409", - value = "uldamanlampbroken.m2", text = "uldamanlampbroken.m2", + value = "uldamanlampbroken.m2", }, { fileId = "203410", - value = "uldamanlampfallen.m2", text = "uldamanlampfallen.m2", + value = "uldamanlampfallen.m2", }, { fileId = "203413", - value = "uldamanlantern.m2", text = "uldamanlantern.m2", + value = "uldamanlantern.m2", }, }, - value = "lamps", text = "lamps", + value = "lamps", }, { children = { { fileId = "203415", - value = "painting01.m2", text = "painting01.m2", + value = "painting01.m2", }, { fileId = "203417", - value = "painting02.m2", text = "painting02.m2", + value = "painting02.m2", }, { fileId = "203418", - value = "paintingruined01.m2", text = "paintingruined01.m2", + value = "paintingruined01.m2", }, { fileId = "203419", - value = "paintingruined02.m2", text = "paintingruined02.m2", + value = "paintingruined02.m2", }, }, - value = "paintings", text = "paintings", + value = "paintings", }, { children = { { fileId = "203420", - value = "platinumdisk.m2", text = "platinumdisk.m2", + value = "platinumdisk.m2", }, }, - value = "platinumdisk", text = "platinumdisk", + value = "platinumdisk", }, { children = { { fileId = "203422", - value = "uldamanpot01.m2", text = "uldamanpot01.m2", + value = "uldamanpot01.m2", }, { fileId = "203423", - value = "uldamanpot02.m2", text = "uldamanpot02.m2", + value = "uldamanpot02.m2", }, { fileId = "203424", - value = "uldamanpot03.m2", text = "uldamanpot03.m2", + value = "uldamanpot03.m2", }, { fileId = "203425", - value = "uldamanpotbroken01.m2", text = "uldamanpotbroken01.m2", + value = "uldamanpotbroken01.m2", }, { fileId = "203426", - value = "uldamanpotbroken02.m2", text = "uldamanpotbroken02.m2", + value = "uldamanpotbroken02.m2", }, { fileId = "203427", - value = "uldamanpotbroken03.m2", text = "uldamanpotbroken03.m2", + value = "uldamanpotbroken03.m2", }, }, - value = "pots", text = "pots", + value = "pots", }, { children = { { fileId = "203429", - value = "uldamanscroll01.m2", text = "uldamanscroll01.m2", + value = "uldamanscroll01.m2", }, { fileId = "203430", - value = "uldamanscroll02.m2", text = "uldamanscroll02.m2", + value = "uldamanscroll02.m2", }, { fileId = "203431", - value = "uldamanscroll03.m2", text = "uldamanscroll03.m2", + value = "uldamanscroll03.m2", }, { fileId = "203432", - value = "uldamanscrollclasp.m2", text = "uldamanscrollclasp.m2", + value = "uldamanscrollclasp.m2", }, }, - value = "scrolls", text = "scrolls", + value = "scrolls", }, { children = { { fileId = "203434", - value = "uldamanstreetsign.m2", text = "uldamanstreetsign.m2", + value = "uldamanstreetsign.m2", }, { fileId = "203435", - value = "uldamanstreetsignbusted.m2", text = "uldamanstreetsignbusted.m2", + value = "uldamanstreetsignbusted.m2", }, }, - value = "signs", text = "signs", + value = "signs", }, { children = { { fileId = "203439", - value = "uldamandwarfstatue.m2", text = "uldamandwarfstatue.m2", + value = "uldamandwarfstatue.m2", }, { fileId = "203440", - value = "uldamanmountaingiantstatue.m2", text = "uldamanmountaingiantstatue.m2", + value = "uldamanmountaingiantstatue.m2", }, { fileId = "203441", - value = "uldamanseagiantstatue.m2", text = "uldamanseagiantstatue.m2", + value = "uldamanseagiantstatue.m2", }, { fileId = "203442", - value = "uldamanstonegiantstatue.m2", text = "uldamanstonegiantstatue.m2", + value = "uldamanstonegiantstatue.m2", }, { fileId = "203443", - value = "uldamantaurenstatue.m2", text = "uldamantaurenstatue.m2", + value = "uldamantaurenstatue.m2", }, { fileId = "203445", - value = "uldamantroglodytestatue.m2", text = "uldamantroglodytestatue.m2", + value = "uldamantroglodytestatue.m2", }, { fileId = "203446", - value = "uldamantrollstatue.m2", text = "uldamantrollstatue.m2", + value = "uldamantrollstatue.m2", }, }, - value = "statues", text = "statues", + value = "statues", }, { children = { { fileId = "203449", - value = "stonekeeperdead01.m2", text = "stonekeeperdead01.m2", + value = "stonekeeperdead01.m2", }, }, - value = "stonekeeper", text = "stonekeeper", + value = "stonekeeper", }, { children = { { fileId = "203452", - value = "uldamantable01.m2", text = "uldamantable01.m2", + value = "uldamantable01.m2", }, { fileId = "203453", - value = "uldamantablebroken01.m2", text = "uldamantablebroken01.m2", + value = "uldamantablebroken01.m2", }, { fileId = "203454", - value = "uldamantablenew.m2", text = "uldamantablenew.m2", + value = "uldamantablenew.m2", }, { fileId = "203455", - value = "uldamantableruined.m2", text = "uldamantableruined.m2", + value = "uldamantableruined.m2", }, }, - value = "tables", text = "tables", + value = "tables", }, { children = { { fileId = "203457", - value = "tapestry01.m2", text = "tapestry01.m2", + value = "tapestry01.m2", }, { fileId = "203460", - value = "tapestry02.m2", text = "tapestry02.m2", + value = "tapestry02.m2", }, { fileId = "203462", - value = "tapestryruined01.m2", text = "tapestryruined01.m2", + value = "tapestryruined01.m2", }, { fileId = "203463", - value = "tapestryruined02.m2", text = "tapestryruined02.m2", + value = "tapestryruined02.m2", }, }, - value = "tapestries", text = "tapestries", + value = "tapestries", }, { children = { { fileId = "203467", - value = "libertystatue.m2", text = "libertystatue.m2", + value = "libertystatue.m2", }, { fileId = "203468", - value = "titanentrancestatue.m2", text = "titanentrancestatue.m2", + value = "titanentrancestatue.m2", }, { fileId = "203469", - value = "titanfemalestatue.m2", text = "titanfemalestatue.m2", + value = "titanfemalestatue.m2", }, }, - value = "titanstatues", text = "titanstatues", + value = "titanstatues", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "uldaman", text = "uldaman", + value = "uldaman", }, { children = { @@ -83698,348 +72004,348 @@ WeakAuras.ModelPaths = { children = { { fileId = "203471", - value = "blackrockclanbanner01.m2", text = "blackrockclanbanner01.m2", + value = "blackrockclanbanner01.m2", }, }, - value = "blackrockbanners", text = "blackrockbanners", + value = "blackrockbanners", }, { children = { { fileId = "203479", - value = "wetlandgrass01.m2", text = "wetlandgrass01.m2", + value = "wetlandgrass01.m2", }, { fileId = "203480", - value = "wetlandgrass02.m2", text = "wetlandgrass02.m2", + value = "wetlandgrass02.m2", }, { fileId = "203481", - value = "wetlandgrass03.m2", text = "wetlandgrass03.m2", + value = "wetlandgrass03.m2", }, { fileId = "203482", - value = "wetlandgrass04.m2", text = "wetlandgrass04.m2", + value = "wetlandgrass04.m2", }, { fileId = "203483", - value = "wetlandgrass05.m2", text = "wetlandgrass05.m2", + value = "wetlandgrass05.m2", }, { fileId = "203484", - value = "wetlandshrub01.m2", text = "wetlandshrub01.m2", + value = "wetlandshrub01.m2", }, { fileId = "203485", - value = "wetlandshrub02.m2", text = "wetlandshrub02.m2", + value = "wetlandshrub02.m2", }, { fileId = "203486", - value = "wetlandshrub03.m2", text = "wetlandshrub03.m2", + value = "wetlandshrub03.m2", }, { fileId = "203487", - value = "wetlandshrub04.m2", text = "wetlandshrub04.m2", + value = "wetlandshrub04.m2", }, { fileId = "203488", - value = "wetlandshrub05.m2", text = "wetlandshrub05.m2", + value = "wetlandshrub05.m2", }, { fileId = "203489", - value = "wetlandshrub06.m2", text = "wetlandshrub06.m2", + value = "wetlandshrub06.m2", }, { fileId = "203490", - value = "wetlandshrub07.m2", text = "wetlandshrub07.m2", + value = "wetlandshrub07.m2", }, { fileId = "203491", - value = "wetlandshrub08.m2", text = "wetlandshrub08.m2", + value = "wetlandshrub08.m2", }, { fileId = "203492", - value = "wetlandshrub09.m2", text = "wetlandshrub09.m2", + value = "wetlandshrub09.m2", }, { fileId = "203493", - value = "wetlandsshrub04.m2", text = "wetlandsshrub04.m2", + value = "wetlandsshrub04.m2", }, { fileId = "203494", - value = "wetlandsshrub05.m2", text = "wetlandsshrub05.m2", + value = "wetlandsshrub05.m2", }, { fileId = "203495", - value = "wetlandsshrub06.m2", text = "wetlandsshrub06.m2", + value = "wetlandsshrub06.m2", }, { fileId = "203496", - value = "wetlandsshrub07.m2", text = "wetlandsshrub07.m2", + value = "wetlandsshrub07.m2", }, { fileId = "203498", - value = "wetlandsshurb08.m2", text = "wetlandsshurb08.m2", + value = "wetlandsshurb08.m2", }, { fileId = "203499", - value = "wetlandsshurb09.m2", text = "wetlandsshurb09.m2", + value = "wetlandsshurb09.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "203501", - value = "dragonbonesbody.m2", text = "dragonbonesbody.m2", + value = "dragonbonesbody.m2", }, { fileId = "203502", - value = "dragonbonesbody_nocollision.m2", text = "dragonbonesbody_nocollision.m2", + value = "dragonbonesbody_nocollision.m2", }, { fileId = "203503", - value = "dragonbonesleftwing.m2", text = "dragonbonesleftwing.m2", + value = "dragonbonesleftwing.m2", }, { fileId = "203504", - value = "dragonbonesleftwing_nocollision.m2", text = "dragonbonesleftwing_nocollision.m2", + value = "dragonbonesleftwing_nocollision.m2", }, { fileId = "203505", - value = "dragonbonesrightwing.m2", text = "dragonbonesrightwing.m2", + value = "dragonbonesrightwing.m2", }, { fileId = "203506", - value = "dragonbonesrightwing_nocollision.m2", text = "dragonbonesrightwing_nocollision.m2", + value = "dragonbonesrightwing_nocollision.m2", }, { fileId = "203507", - value = "dragonbonesskull.m2", text = "dragonbonesskull.m2", + value = "dragonbonesskull.m2", }, { fileId = "203508", - value = "dragonbonesskull_nocollision.m2", text = "dragonbonesskull_nocollision.m2", + value = "dragonbonesskull_nocollision.m2", }, }, - value = "dragonbones", text = "dragonbones", + value = "dragonbones", }, { children = { { fileId = "203510", - value = "dragonegg01.m2", text = "dragonegg01.m2", + value = "dragonegg01.m2", }, { fileId = "203512", - value = "dragonegg02.m2", text = "dragonegg02.m2", + value = "dragonegg02.m2", }, }, - value = "dragoneggs", text = "dragoneggs", + value = "dragoneggs", }, { children = { { fileId = "203513", - value = "dragonmawbanner.m2", text = "dragonmawbanner.m2", + value = "dragonmawbanner.m2", }, { fileId = "203515", - value = "dragonmawgate.m2", text = "dragonmawgate.m2", + value = "dragonmawgate.m2", }, { fileId = "203518", - value = "dragonmawwall.m2", text = "dragonmawwall.m2", + value = "dragonmawwall.m2", }, }, - value = "dragonmawgates", text = "dragonmawgates", + value = "dragonmawgates", }, { children = { { fileId = "203521", - value = "dwarvebone01.m2", text = "dwarvebone01.m2", + value = "dwarvebone01.m2", }, { fileId = "203522", - value = "dwarvebone02.m2", text = "dwarvebone02.m2", + value = "dwarvebone02.m2", }, }, - value = "dwarfbones", text = "dwarfbones", + value = "dwarfbones", }, { children = { { fileId = "203523", - value = "raptorbone01.m2", text = "raptorbone01.m2", + value = "raptorbone01.m2", }, }, - value = "raptorbones", text = "raptorbones", + value = "raptorbones", }, { children = { { fileId = "203524", - value = "dragontotem01.m2", text = "dragontotem01.m2", + value = "dragontotem01.m2", }, { fileId = "203525", - value = "dragontotem02.m2", text = "dragontotem02.m2", + value = "dragontotem02.m2", }, }, - value = "totem", text = "totem", + value = "totem", }, { children = { { fileId = "203531", - value = "wetlandsnest01.m2", text = "wetlandsnest01.m2", + value = "wetlandsnest01.m2", }, { fileId = "203532", - value = "wetlandsnest02.m2", text = "wetlandsnest02.m2", + value = "wetlandsnest02.m2", }, { fileId = "203533", - value = "wetlandstree04.m2", text = "wetlandstree04.m2", + value = "wetlandstree04.m2", }, { fileId = "203539", - value = "wetlandstreestump01.m2", text = "wetlandstreestump01.m2", + value = "wetlandstreestump01.m2", }, { fileId = "203540", - value = "wetlandstreestump02.m2", text = "wetlandstreestump02.m2", + value = "wetlandstreestump02.m2", }, { fileId = "203541", - value = "wetlandstreestump03.m2", text = "wetlandstreestump03.m2", + value = "wetlandstreestump03.m2", }, { fileId = "203543", - value = "wetlandtree01.m2", text = "wetlandtree01.m2", + value = "wetlandtree01.m2", }, { fileId = "203544", - value = "wetlandtree02.m2", text = "wetlandtree02.m2", + value = "wetlandtree02.m2", }, { fileId = "203545", - value = "wetlandtree03.m2", text = "wetlandtree03.m2", + value = "wetlandtree03.m2", }, { fileId = "203546", - value = "wetlandtree04.m2", text = "wetlandtree04.m2", + value = "wetlandtree04.m2", }, { fileId = "203547", - value = "wetlandtree05.m2", text = "wetlandtree05.m2", + value = "wetlandtree05.m2", }, { fileId = "203548", - value = "wetlandtree06.m2", text = "wetlandtree06.m2", + value = "wetlandtree06.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "203553", - value = "wetlandswagon01.m2", text = "wetlandswagon01.m2", + value = "wetlandswagon01.m2", }, { fileId = "203554", - value = "wetlandswagon02.m2", text = "wetlandswagon02.m2", + value = "wetlandswagon02.m2", }, { fileId = "203555", - value = "wetlandswagon03.m2", text = "wetlandswagon03.m2", + value = "wetlandswagon03.m2", }, { fileId = "203557", - value = "wetlandswagonnest.m2", text = "wetlandswagonnest.m2", + value = "wetlandswagonnest.m2", }, }, - value = "wetlandswagons", text = "wetlandswagons", + value = "wetlandswagons", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "wetlands", text = "wetlands", + value = "wetlands", }, }, - value = "khazmodan", text = "khazmodan", + value = "khazmodan", }, { children = { @@ -84051,149 +72357,149 @@ WeakAuras.ModelPaths = { children = { { fileId = "203558", - value = "aerieboulder01.m2", text = "aerieboulder01.m2", + value = "aerieboulder01.m2", }, { fileId = "203559", - value = "aerieboulder02.m2", text = "aerieboulder02.m2", + value = "aerieboulder02.m2", }, { fileId = "203560", - value = "aerieboulder03.m2", text = "aerieboulder03.m2", + value = "aerieboulder03.m2", }, { fileId = "203561", - value = "aerieboulder04.m2", text = "aerieboulder04.m2", + value = "aerieboulder04.m2", }, }, - value = "boulders", text = "boulders", + value = "boulders", }, { children = { { fileId = "203565", - value = "aeriepeaksbush01.m2", text = "aeriepeaksbush01.m2", + value = "aeriepeaksbush01.m2", }, { fileId = "203566", - value = "aeriepeaksbush02.m2", text = "aeriepeaksbush02.m2", + value = "aeriepeaksbush02.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "203569", - value = "aeriepeaksrockoutcrop01.m2", text = "aeriepeaksrockoutcrop01.m2", + value = "aeriepeaksrockoutcrop01.m2", }, }, - value = "cliff", text = "cliff", + value = "cliff", }, { children = { { fileId = "203573", - value = "griffonmemorialfetish01.m2", text = "griffonmemorialfetish01.m2", + value = "griffonmemorialfetish01.m2", }, { fileId = "203574", - value = "griffonmemorialfetish02.m2", text = "griffonmemorialfetish02.m2", + value = "griffonmemorialfetish02.m2", }, { fileId = "203575", - value = "griffonmemorialfetish03.m2", text = "griffonmemorialfetish03.m2", + value = "griffonmemorialfetish03.m2", }, { fileId = "203576", - value = "griffonmemorialfetish04.m2", text = "griffonmemorialfetish04.m2", + value = "griffonmemorialfetish04.m2", }, { fileId = "203577", - value = "griffonmemorialtree01.m2", text = "griffonmemorialtree01.m2", + value = "griffonmemorialtree01.m2", }, { fileId = "203578", - value = "griffonmemorialtree02.m2", text = "griffonmemorialtree02.m2", + value = "griffonmemorialtree02.m2", }, { fileId = "203579", - value = "griffonmemorialtree03.m2", text = "griffonmemorialtree03.m2", + value = "griffonmemorialtree03.m2", }, }, - value = "griffondoodads", text = "griffondoodads", + value = "griffondoodads", }, { children = { { fileId = "203580", - value = "aeriepeaksfir01.m2", text = "aeriepeaksfir01.m2", + value = "aeriepeaksfir01.m2", }, { fileId = "203583", - value = "aeriepeaksfir02.m2", text = "aeriepeaksfir02.m2", + value = "aeriepeaksfir02.m2", }, { fileId = "203584", - value = "aeriepeaksstump01.m2", text = "aeriepeaksstump01.m2", + value = "aeriepeaksstump01.m2", }, { fileId = "203587", - value = "aerietree01.m2", text = "aerietree01.m2", + value = "aerietree01.m2", }, { fileId = "203588", - value = "aerietree02.m2", text = "aerietree02.m2", + value = "aerietree02.m2", }, { fileId = "203589", - value = "aerietree03.m2", text = "aerietree03.m2", + value = "aerietree03.m2", }, { fileId = "203590", - value = "aerietree04.m2", text = "aerietree04.m2", + value = "aerietree04.m2", }, { fileId = "203591", - value = "aerietree05.m2", text = "aerietree05.m2", + value = "aerietree05.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "aeriepeaks", text = "aeriepeaks", + value = "aeriepeaks", }, { children = { @@ -84203,177 +72509,177 @@ WeakAuras.ModelPaths = { children = { { fileId = "203595", - value = "alteracshrub01.m2", text = "alteracshrub01.m2", + value = "alteracshrub01.m2", }, { fileId = "203596", - value = "alteracshrub02.m2", text = "alteracshrub02.m2", + value = "alteracshrub02.m2", }, { fileId = "203597", - value = "alteracshrub03.m2", text = "alteracshrub03.m2", + value = "alteracshrub03.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "203598", - value = "dalarandome.m2", text = "dalarandome.m2", + value = "dalarandome.m2", }, }, - value = "dalaran", text = "dalaran", + value = "dalaran", }, { children = { { fileId = "203602", - value = "alteracfruitbucket01.m2", text = "alteracfruitbucket01.m2", + value = "alteracfruitbucket01.m2", }, { fileId = "203603", - value = "alteracfruitbucket02.m2", text = "alteracfruitbucket02.m2", + value = "alteracfruitbucket02.m2", }, { fileId = "203604", - value = "alteracfruitbucket03.m2", text = "alteracfruitbucket03.m2", + value = "alteracfruitbucket03.m2", }, { fileId = "203605", - value = "alteracfruitbucket04.m2", text = "alteracfruitbucket04.m2", + value = "alteracfruitbucket04.m2", }, }, - value = "fruitbuckets", text = "fruitbuckets", + value = "fruitbuckets", }, { children = { { fileId = "203607", - value = "alteracladder01.m2", text = "alteracladder01.m2", + value = "alteracladder01.m2", }, }, - value = "ladders", text = "ladders", + value = "ladders", }, { children = { { fileId = "203608", - value = "alteracopengrave01.m2", text = "alteracopengrave01.m2", + value = "alteracopengrave01.m2", }, }, - value = "opengraves", text = "opengraves", + value = "opengraves", }, { children = { { fileId = "203611", - value = "alteracboulder01.m2", text = "alteracboulder01.m2", + value = "alteracboulder01.m2", }, { fileId = "203612", - value = "alteracboulder02.m2", text = "alteracboulder02.m2", + value = "alteracboulder02.m2", }, { fileId = "203613", - value = "alteracboulder03.m2", text = "alteracboulder03.m2", + value = "alteracboulder03.m2", }, { fileId = "203614", - value = "alteracboulder04.m2", text = "alteracboulder04.m2", + value = "alteracboulder04.m2", }, { fileId = "203615", - value = "alteracboulder05.m2", text = "alteracboulder05.m2", + value = "alteracboulder05.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "203617", - value = "alteractree01.m2", text = "alteractree01.m2", + value = "alteractree01.m2", }, { fileId = "203618", - value = "alteractree02.m2", text = "alteractree02.m2", + value = "alteractree02.m2", }, { fileId = "203619", - value = "alteractree03.m2", text = "alteractree03.m2", + value = "alteractree03.m2", }, { fileId = "203620", - value = "alteractree04.m2", text = "alteractree04.m2", + value = "alteractree04.m2", }, { fileId = "203621", - value = "alteractree06.m2", text = "alteractree06.m2", + value = "alteractree06.m2", }, { fileId = "203622", - value = "alteractree07.m2", text = "alteractree07.m2", + value = "alteractree07.m2", }, { fileId = "203623", - value = "alteractree08.m2", text = "alteractree08.m2", + value = "alteractree08.m2", }, { fileId = "203624", - value = "alteractree09.m2", text = "alteractree09.m2", + value = "alteractree09.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "203634", - value = "alteracwatertower.m2", text = "alteracwatertower.m2", + value = "alteracwatertower.m2", }, }, - value = "watertower", text = "watertower", + value = "watertower", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "alteracmountains", text = "alteracmountains", + value = "alteracmountains", }, { children = { @@ -84383,16 +72689,16 @@ WeakAuras.ModelPaths = { children = { { fileId = "203636", - value = "bramblestaff.m2", text = "bramblestaff.m2", + value = "bramblestaff.m2", }, }, - value = "bramblestaff", text = "bramblestaff", + value = "bramblestaff", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -84400,261 +72706,261 @@ WeakAuras.ModelPaths = { children = { { fileId = "203639", - value = "arathiboardwalk01.m2", text = "arathiboardwalk01.m2", + value = "arathiboardwalk01.m2", }, { fileId = "203640", - value = "arathiboardwalk02.m2", text = "arathiboardwalk02.m2", + value = "arathiboardwalk02.m2", }, { fileId = "203641", - value = "arathiboardwalk03.m2", text = "arathiboardwalk03.m2", + value = "arathiboardwalk03.m2", }, { fileId = "203642", - value = "arathiboardwalk04.m2", text = "arathiboardwalk04.m2", + value = "arathiboardwalk04.m2", }, }, - value = "boardwalk", text = "boardwalk", + value = "boardwalk", }, { children = { { fileId = "203643", - value = "arathiplant01.m2", text = "arathiplant01.m2", + value = "arathiplant01.m2", }, { fileId = "203645", - value = "arathiplant02.m2", text = "arathiplant02.m2", + value = "arathiplant02.m2", }, { fileId = "203646", - value = "arathiplant03.m2", text = "arathiplant03.m2", + value = "arathiplant03.m2", }, { fileId = "203647", - value = "arathiplant04.m2", text = "arathiplant04.m2", + value = "arathiplant04.m2", }, { fileId = "203650", - value = "arathiplant05.m2", text = "arathiplant05.m2", + value = "arathiplant05.m2", }, { fileId = "203652", - value = "arathiplant06.m2", text = "arathiplant06.m2", + value = "arathiplant06.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "203656", - value = "arathifarmhouse01.m2", text = "arathifarmhouse01.m2", + value = "arathifarmhouse01.m2", }, { fileId = "203657", - value = "arathifarmhouse02.m2", text = "arathifarmhouse02.m2", + value = "arathifarmhouse02.m2", }, }, - value = "farmhouses", text = "farmhouses", + value = "farmhouses", }, { children = { { fileId = "203660", - value = "impalingstone_corpse_01.m2", text = "impalingstone_corpse_01.m2", + value = "impalingstone_corpse_01.m2", }, { fileId = "203661", - value = "impalingstone_corpse_02.m2", text = "impalingstone_corpse_02.m2", + value = "impalingstone_corpse_02.m2", }, }, - value = "impalingstonecorpses", text = "impalingstonecorpses", + value = "impalingstonecorpses", }, { children = { { fileId = "203663", - value = "impalingstone02.m2", text = "impalingstone02.m2", + value = "impalingstone02.m2", }, }, - value = "impalingstones", text = "impalingstones", + value = "impalingstones", }, { children = { { fileId = "203666", - value = "arathiflatrock01.m2", text = "arathiflatrock01.m2", + value = "arathiflatrock01.m2", }, { fileId = "203668", - value = "arathirock01.m2", text = "arathirock01.m2", + value = "arathirock01.m2", }, { fileId = "203669", - value = "arathirock02.m2", text = "arathirock02.m2", + value = "arathirock02.m2", }, { fileId = "203671", - value = "arathirock03.m2", text = "arathirock03.m2", + value = "arathirock03.m2", }, { fileId = "203672", - value = "arathirock04.m2", text = "arathirock04.m2", + value = "arathirock04.m2", }, { fileId = "203673", - value = "arathirock05.m2", text = "arathirock05.m2", + value = "arathirock05.m2", }, { fileId = "203674", - value = "arathirock06.m2", text = "arathirock06.m2", + value = "arathirock06.m2", }, { fileId = "203675", - value = "arathirock07.m2", text = "arathirock07.m2", + value = "arathirock07.m2", }, { fileId = "203676", - value = "arathirock08.m2", text = "arathirock08.m2", + value = "arathirock08.m2", }, { fileId = "203677", - value = "arathirock09.m2", text = "arathirock09.m2", + value = "arathirock09.m2", }, { fileId = "203678", - value = "arathirock10.m2", text = "arathirock10.m2", + value = "arathirock10.m2", }, { fileId = "203679", - value = "arathirock11.m2", text = "arathirock11.m2", + value = "arathirock11.m2", }, { fileId = "203680", - value = "arathirock12.m2", text = "arathirock12.m2", + value = "arathirock12.m2", }, { fileId = "203681", - value = "arathirock13.m2", text = "arathirock13.m2", + value = "arathirock13.m2", }, { fileId = "203682", - value = "arathirock14.m2", text = "arathirock14.m2", + value = "arathirock14.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "203684", - value = "arathistump01.m2", text = "arathistump01.m2", + value = "arathistump01.m2", }, { fileId = "203686", - value = "arathistump02.m2", text = "arathistump02.m2", + value = "arathistump02.m2", }, { fileId = "203687", - value = "arathistump03.m2", text = "arathistump03.m2", + value = "arathistump03.m2", }, { fileId = "203688", - value = "arathitree01.m2", text = "arathitree01.m2", + value = "arathitree01.m2", }, { fileId = "203689", - value = "arathitree02.m2", text = "arathitree02.m2", + value = "arathitree02.m2", }, { fileId = "203690", - value = "arathitree03.m2", text = "arathitree03.m2", + value = "arathitree03.m2", }, { fileId = "203691", - value = "arathitree04.m2", text = "arathitree04.m2", + value = "arathitree04.m2", }, { fileId = "203692", - value = "arathitree05.m2", text = "arathitree05.m2", + value = "arathitree05.m2", }, { fileId = "203693", - value = "arathitree_dead_001.m2", text = "arathitree_dead_001.m2", + value = "arathitree_dead_001.m2", }, { fileId = "203694", - value = "arathitree_dead_002.m2", text = "arathitree_dead_002.m2", + value = "arathitree_dead_002.m2", }, { fileId = "203695", - value = "arathitree_dead_003.m2", text = "arathitree_dead_003.m2", + value = "arathitree_dead_003.m2", }, { fileId = "203696", - value = "arathitree_dead_004.m2", text = "arathitree_dead_004.m2", + value = "arathitree_dead_004.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "arathi", text = "arathi", + value = "arathi", }, { children = { @@ -84664,53 +72970,53 @@ WeakAuras.ModelPaths = { children = { { fileId = "203711", - value = "infesteddollyhead.m2", text = "infesteddollyhead.m2", + value = "infesteddollyhead.m2", }, { fileId = "203712", - value = "infesteddollyleftside.m2", text = "infesteddollyleftside.m2", + value = "infesteddollyleftside.m2", }, { fileId = "203713", - value = "infesteddollyrightside.m2", text = "infesteddollyrightside.m2", + value = "infesteddollyrightside.m2", }, { fileId = "203714", - value = "infesteddollywhole.m2", text = "infesteddollywhole.m2", + value = "infesteddollywhole.m2", }, }, - value = "dolly", text = "dolly", + value = "dolly", }, { children = { { fileId = "203715", - value = "outhousetrapped.m2", text = "outhousetrapped.m2", + value = "outhousetrapped.m2", }, }, - value = "outhouse", text = "outhouse", + value = "outhouse", }, { children = { { fileId = "203716", - value = "epl_pvpflags_northfort.m2", text = "epl_pvpflags_northfort.m2", + value = "epl_pvpflags_northfort.m2", }, }, - value = "pvpflags", text = "pvpflags", + value = "pvpflags", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -84718,417 +73024,417 @@ WeakAuras.ModelPaths = { children = { { fileId = "203718", - value = "arcoftriumphplagued01.m2", text = "arcoftriumphplagued01.m2", + value = "arcoftriumphplagued01.m2", }, }, - value = "arcoftriumph", text = "arcoftriumph", + value = "arcoftriumph", }, { children = { { fileId = "203720", - value = "plaugelandsbanner01.m2", text = "plaugelandsbanner01.m2", + value = "plaugelandsbanner01.m2", }, }, - value = "banners", text = "banners", + value = "banners", }, { children = { { fileId = "203722", - value = "bloodofheroes.m2", text = "bloodofheroes.m2", + value = "bloodofheroes.m2", }, }, - value = "bloodofheroes", text = "bloodofheroes", + value = "bloodofheroes", }, { children = { { fileId = "203723", - value = "bonespike_01.m2", text = "bonespike_01.m2", + value = "bonespike_01.m2", }, { fileId = "203724", - value = "bonespike_02.m2", text = "bonespike_02.m2", + value = "bonespike_02.m2", }, { fileId = "203725", - value = "bonespike_03.m2", text = "bonespike_03.m2", + value = "bonespike_03.m2", }, }, - value = "bonespikes", text = "bonespikes", + value = "bonespikes", }, { children = { { fileId = "203726", - value = "bonewall_01.m2", text = "bonewall_01.m2", + value = "bonewall_01.m2", }, }, - value = "bonewalls", text = "bonewalls", + value = "bonewalls", }, { children = { { fileId = "203731", - value = "plaguelandwesternbush01.m2", text = "plaguelandwesternbush01.m2", + value = "plaguelandwesternbush01.m2", }, { fileId = "203732", - value = "plaguelandwesternbush02.m2", text = "plaguelandwesternbush02.m2", + value = "plaguelandwesternbush02.m2", }, { fileId = "203733", - value = "plaguelandwesternbush03.m2", text = "plaguelandwesternbush03.m2", + value = "plaguelandwesternbush03.m2", }, { fileId = "203734", - value = "plaguelandwesternbush04.m2", text = "plaguelandwesternbush04.m2", + value = "plaguelandwesternbush04.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "203737", - value = "plaugelandscage01.m2", text = "plaugelandscage01.m2", + value = "plaugelandscage01.m2", }, }, - value = "cages", text = "cages", + value = "cages", }, { children = { { fileId = "203742", - value = "forsakenbanner01.m2", text = "forsakenbanner01.m2", + value = "forsakenbanner01.m2", }, }, - value = "forsakenbanner", text = "forsakenbanner", + value = "forsakenbanner", }, { children = { { fileId = "203745", - value = "scourgebodyhangingfemale01.m2", text = "scourgebodyhangingfemale01.m2", + value = "scourgebodyhangingfemale01.m2", }, { fileId = "203746", - value = "scourgebodyhangingfemale02.m2", text = "scourgebodyhangingfemale02.m2", + value = "scourgebodyhangingfemale02.m2", }, }, - value = "hangingscourge", text = "hangingscourge", + value = "hangingscourge", }, { children = { { fileId = "203748", - value = "plaguelandhaystack.m2", text = "plaguelandhaystack.m2", + value = "plaguelandhaystack.m2", }, }, - value = "haystacks", text = "haystacks", + value = "haystacks", }, { children = { { fileId = "203749", - value = "plaguecauldron.m2", text = "plaguecauldron.m2", + value = "plaguecauldron.m2", }, }, - value = "plaguecauldron", text = "plaguecauldron", + value = "plaguecauldron", }, { children = { { fileId = "203752", - value = "plaguechariot.m2", text = "plaguechariot.m2", + value = "plaguechariot.m2", }, }, - value = "plaguedchariot", text = "plaguedchariot", + value = "plaguedchariot", }, { children = { { fileId = "203754", - value = "plaguewagon.m2", text = "plaguewagon.m2", + value = "plaguewagon.m2", }, { fileId = "203755", - value = "plaguewagon02.m2", text = "plaguewagon02.m2", + value = "plaguewagon02.m2", }, }, - value = "plaguedwagons", text = "plaguedwagons", + value = "plaguedwagons", }, { children = { { fileId = "203759", - value = "plaguelandfern01.m2", text = "plaguelandfern01.m2", + value = "plaguelandfern01.m2", }, { fileId = "203760", - value = "plaguelandfern02.m2", text = "plaguelandfern02.m2", + value = "plaguelandfern02.m2", }, { fileId = "203761", - value = "plaguelandfern03.m2", text = "plaguelandfern03.m2", + value = "plaguelandfern03.m2", }, { fileId = "203762", - value = "plaguelandfern04.m2", text = "plaguelandfern04.m2", + value = "plaguelandfern04.m2", }, { fileId = "203765", - value = "plaguelandpuffs01.m2", text = "plaguelandpuffs01.m2", + value = "plaguelandpuffs01.m2", }, { fileId = "203766", - value = "plaguelandpuffs02.m2", text = "plaguelandpuffs02.m2", + value = "plaguelandpuffs02.m2", }, { fileId = "203767", - value = "plaguelandpuffs03.m2", text = "plaguelandpuffs03.m2", + value = "plaguelandpuffs03.m2", }, { fileId = "203768", - value = "plaguelandpuffs04.m2", text = "plaguelandpuffs04.m2", + value = "plaguelandpuffs04.m2", }, }, - value = "plants", text = "plants", + value = "plants", }, { children = { { fileId = "203773", - value = "plaguelandrock01.m2", text = "plaguelandrock01.m2", + value = "plaguelandrock01.m2", }, { fileId = "203774", - value = "plaguelandrock02.m2", text = "plaguelandrock02.m2", + value = "plaguelandrock02.m2", }, { fileId = "203775", - value = "plaguelandrock03.m2", text = "plaguelandrock03.m2", + value = "plaguelandrock03.m2", }, { fileId = "203776", - value = "plaguelandrock04.m2", text = "plaguelandrock04.m2", + value = "plaguelandrock04.m2", }, { fileId = "203777", - value = "plaguelandrock05.m2", text = "plaguelandrock05.m2", + value = "plaguelandrock05.m2", }, { fileId = "203778", - value = "plaguelandrock06.m2", text = "plaguelandrock06.m2", + value = "plaguelandrock06.m2", }, { fileId = "203779", - value = "plaguelandrock07.m2", text = "plaguelandrock07.m2", + value = "plaguelandrock07.m2", }, { fileId = "203780", - value = "plaguelandrock08.m2", text = "plaguelandrock08.m2", + value = "plaguelandrock08.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "203781", - value = "treebarrier01.m2", text = "treebarrier01.m2", + value = "treebarrier01.m2", }, }, - value = "treebarrier", text = "treebarrier", + value = "treebarrier", }, { children = { { fileId = "203783", - value = "plaguedfallentree01.m2", text = "plaguedfallentree01.m2", + value = "plaguedfallentree01.m2", }, { fileId = "203788", - value = "plaguelandmushroom01.m2", text = "plaguelandmushroom01.m2", + value = "plaguelandmushroom01.m2", }, { fileId = "203789", - value = "plaguelandmushroom02.m2", text = "plaguelandmushroom02.m2", + value = "plaguelandmushroom02.m2", }, { fileId = "203790", - value = "plaguelandmushroom03.m2", text = "plaguelandmushroom03.m2", + value = "plaguelandmushroom03.m2", }, { fileId = "203791", - value = "plaguelandmushroom04.m2", text = "plaguelandmushroom04.m2", + value = "plaguelandmushroom04.m2", }, { fileId = "203793", - value = "plaguelandstump01.m2", text = "plaguelandstump01.m2", + value = "plaguelandstump01.m2", }, { fileId = "203795", - value = "plaguelandstump02.m2", text = "plaguelandstump02.m2", + value = "plaguelandstump02.m2", }, { fileId = "203796", - value = "plaguelandstump03.m2", text = "plaguelandstump03.m2", + value = "plaguelandstump03.m2", }, { fileId = "203797", - value = "plaguelandstump04.m2", text = "plaguelandstump04.m2", + value = "plaguelandstump04.m2", }, { fileId = "203798", - value = "plaguelandtree01.m2", text = "plaguelandtree01.m2", + value = "plaguelandtree01.m2", }, { fileId = "203799", - value = "plaguelandtree02.m2", text = "plaguelandtree02.m2", + value = "plaguelandtree02.m2", }, { fileId = "203800", - value = "plaguelandtree03.m2", text = "plaguelandtree03.m2", + value = "plaguelandtree03.m2", }, { fileId = "203801", - value = "plaguelandtree04.m2", text = "plaguelandtree04.m2", + value = "plaguelandtree04.m2", }, { fileId = "203802", - value = "plaguelandtree05.m2", text = "plaguelandtree05.m2", + value = "plaguelandtree05.m2", }, { fileId = "203803", - value = "plaguelandtree06.m2", text = "plaguelandtree06.m2", + value = "plaguelandtree06.m2", }, { fileId = "203804", - value = "plaguelandtree07.m2", text = "plaguelandtree07.m2", + value = "plaguelandtree07.m2", }, { fileId = "203805", - value = "plaguelandtree08.m2", text = "plaguelandtree08.m2", + value = "plaguelandtree08.m2", }, { fileId = "203806", - value = "plaguelandtree09.m2", text = "plaguelandtree09.m2", + value = "plaguelandtree09.m2", }, { fileId = "203807", - value = "plaguelandtree10.m2", text = "plaguelandtree10.m2", + value = "plaguelandtree10.m2", }, { fileId = "203808", - value = "plaguelandtree11.m2", text = "plaguelandtree11.m2", + value = "plaguelandtree11.m2", }, { fileId = "203809", - value = "plaguelandtree12.m2", text = "plaguelandtree12.m2", + value = "plaguelandtree12.m2", }, { fileId = "203810", - value = "plaguelandtree13.m2", text = "plaguelandtree13.m2", + value = "plaguelandtree13.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "203831", - value = "undeadwall_01.m2", text = "undeadwall_01.m2", + value = "undeadwall_01.m2", }, }, - value = "walls", text = "walls", + value = "walls", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "plagueland", text = "plagueland", + value = "plagueland", }, { children = { @@ -85138,307 +73444,307 @@ WeakAuras.ModelPaths = { children = { { fileId = "203836", - value = "scholme_bookshelf.m2", text = "scholme_bookshelf.m2", + value = "scholme_bookshelf.m2", }, { fileId = "203837", - value = "scholme_bookshelflarge.m2", text = "scholme_bookshelflarge.m2", + value = "scholme_bookshelflarge.m2", }, { fileId = "203838", - value = "scholme_bookshelfsmall.m2", text = "scholme_bookshelfsmall.m2", + value = "scholme_bookshelfsmall.m2", }, }, - value = "bookshelves", text = "bookshelves", + value = "bookshelves", }, { children = { { fileId = "203841", - value = "scholomancebrazier01green.m2", text = "scholomancebrazier01green.m2", + value = "scholomancebrazier01green.m2", }, { fileId = "203843", - value = "scholomancebrazier01orange.m2", text = "scholomancebrazier01orange.m2", + value = "scholomancebrazier01orange.m2", }, { fileId = "203845", - value = "scholomancebrazier01purple.m2", text = "scholomancebrazier01purple.m2", + value = "scholomancebrazier01purple.m2", }, }, - value = "brazier", text = "brazier", + value = "brazier", }, { children = { { fileId = "203847", - value = "floorcandlescorner01.m2", text = "floorcandlescorner01.m2", + value = "floorcandlescorner01.m2", }, { fileId = "203848", - value = "floorcandlescorner01green.m2", text = "floorcandlescorner01green.m2", + value = "floorcandlescorner01green.m2", }, { fileId = "203849", - value = "floorcandlescorner01red.m2", text = "floorcandlescorner01red.m2", + value = "floorcandlescorner01red.m2", }, { fileId = "203850", - value = "floorcandlesstraight02.m2", text = "floorcandlesstraight02.m2", + value = "floorcandlesstraight02.m2", }, { fileId = "203851", - value = "floorcandlesstraight02green.m2", text = "floorcandlesstraight02green.m2", + value = "floorcandlesstraight02green.m2", }, { fileId = "203852", - value = "floorcandlesstraight02red.m2", text = "floorcandlesstraight02red.m2", + value = "floorcandlesstraight02red.m2", }, { fileId = "203853", - value = "floorcandlesstraight04.m2", text = "floorcandlesstraight04.m2", + value = "floorcandlesstraight04.m2", }, { fileId = "203854", - value = "floorcandlesstraight04green.m2", text = "floorcandlesstraight04green.m2", + value = "floorcandlesstraight04green.m2", }, { fileId = "203855", - value = "floorcandlesstraight04red.m2", text = "floorcandlesstraight04red.m2", + value = "floorcandlesstraight04red.m2", }, { fileId = "203861", - value = "scholme_candelabra.m2", text = "scholme_candelabra.m2", + value = "scholme_candelabra.m2", }, { fileId = "203862", - value = "scholme_candelabra02.m2", text = "scholme_candelabra02.m2", + value = "scholme_candelabra02.m2", }, { fileId = "203863", - value = "scholme_candelabra03.m2", text = "scholme_candelabra03.m2", + value = "scholme_candelabra03.m2", }, { fileId = "203864", - value = "scholme_greencandelabra.m2", text = "scholme_greencandelabra.m2", + value = "scholme_greencandelabra.m2", }, { fileId = "203865", - value = "scholme_greencandelabra02.m2", text = "scholme_greencandelabra02.m2", + value = "scholme_greencandelabra02.m2", }, { fileId = "203866", - value = "scholme_greencandelabra03.m2", text = "scholme_greencandelabra03.m2", + value = "scholme_greencandelabra03.m2", }, { fileId = "203867", - value = "scholme_greenrug.m2", text = "scholme_greenrug.m2", + value = "scholme_greenrug.m2", }, { fileId = "203868", - value = "scholme_purplerug.m2", text = "scholme_purplerug.m2", + value = "scholme_purplerug.m2", }, { fileId = "203869", - value = "scholme_redcandelabra.m2", text = "scholme_redcandelabra.m2", + value = "scholme_redcandelabra.m2", }, { fileId = "203870", - value = "scholme_redcandelabra02.m2", text = "scholme_redcandelabra02.m2", + value = "scholme_redcandelabra02.m2", }, { fileId = "203871", - value = "scholme_redcandelabra03.m2", text = "scholme_redcandelabra03.m2", + value = "scholme_redcandelabra03.m2", }, }, - value = "candles", text = "candles", + value = "candles", }, { children = { { fileId = "203881", - value = "greenbubblingcauldron.m2", text = "greenbubblingcauldron.m2", + value = "greenbubblingcauldron.m2", }, { fileId = "203883", - value = "redbubblingcauldron.m2", text = "redbubblingcauldron.m2", + value = "redbubblingcauldron.m2", }, { fileId = "203886", - value = "yellowbubblingcauldron.m2", text = "yellowbubblingcauldron.m2", + value = "yellowbubblingcauldron.m2", }, }, - value = "cauldrons", text = "cauldrons", + value = "cauldrons", }, { children = { { fileId = "203889", - value = "scholme_chandelier.m2", text = "scholme_chandelier.m2", + value = "scholme_chandelier.m2", }, }, - value = "chandelier", text = "chandelier", + value = "chandelier", }, { children = { { fileId = "203892", - value = "scholomancecrystalball01.m2", text = "scholomancecrystalball01.m2", + value = "scholomancecrystalball01.m2", }, }, - value = "crystalball", text = "crystalball", + value = "crystalball", }, { children = { { fileId = "203894", - value = "diseasedpumpkin.m2", text = "diseasedpumpkin.m2", + value = "diseasedpumpkin.m2", }, }, - value = "diseasedpumpkin", text = "diseasedpumpkin", + value = "diseasedpumpkin", }, { children = { { fileId = "203895", - value = "creepyoperationtable01.m2", text = "creepyoperationtable01.m2", + value = "creepyoperationtable01.m2", }, }, - value = "operationtables", text = "operationtables", + value = "operationtables", }, { children = { { fileId = "203898", - value = "scholme_logorug.m2", text = "scholme_logorug.m2", + value = "scholme_logorug.m2", }, }, - value = "rugs", text = "rugs", + value = "rugs", }, { children = { { fileId = "203899", - value = "scholomancesmoke01.m2", text = "scholomancesmoke01.m2", + value = "scholomancesmoke01.m2", }, }, - value = "smoke", text = "smoke", + value = "smoke", }, { children = { { fileId = "203901", - value = "scholme_stonelogo.m2", text = "scholme_stonelogo.m2", + value = "scholme_stonelogo.m2", }, }, - value = "stonelogo", text = "stonelogo", + value = "stonelogo", }, { children = { { fileId = "203906", - value = "scholme_logo.m2", text = "scholme_logo.m2", + value = "scholme_logo.m2", }, { fileId = "203907", - value = "scholme_tapestryanim.m2", text = "scholme_tapestryanim.m2", + value = "scholme_tapestryanim.m2", }, { fileId = "203908", - value = "scholme_tapestryrune.m2", text = "scholme_tapestryrune.m2", + value = "scholme_tapestryrune.m2", }, { fileId = "203909", - value = "scholme_tapestryskull.m2", text = "scholme_tapestryskull.m2", + value = "scholme_tapestryskull.m2", }, { fileId = "203910", - value = "scholme_tapestryweb.m2", text = "scholme_tapestryweb.m2", + value = "scholme_tapestryweb.m2", }, }, - value = "tapestries", text = "tapestries", + value = "tapestries", }, { children = { { fileId = "203911", - value = "empty_testing_jar.m2", text = "empty_testing_jar.m2", + value = "empty_testing_jar.m2", }, { fileId = "203912", - value = "ghoul_in_a_jar.m2", text = "ghoul_in_a_jar.m2", + value = "ghoul_in_a_jar.m2", }, { fileId = "203913", - value = "skeleton_in_a_jar.m2", text = "skeleton_in_a_jar.m2", + value = "skeleton_in_a_jar.m2", }, }, - value = "testingtubes", text = "testingtubes", + value = "testingtubes", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "scholomance", text = "scholomance", + value = "scholomance", }, { children = { @@ -85448,200 +73754,200 @@ WeakAuras.ModelPaths = { children = { { fileId = "203920", - value = "silvermoonburnttree01.m2", text = "silvermoonburnttree01.m2", + value = "silvermoonburnttree01.m2", }, { fileId = "203921", - value = "silvermoonburnttree02.m2", text = "silvermoonburnttree02.m2", + value = "silvermoonburnttree02.m2", }, { fileId = "203922", - value = "silvermoonburnttree03.m2", text = "silvermoonburnttree03.m2", + value = "silvermoonburnttree03.m2", }, { fileId = "203923", - value = "silvermoonburnttree04.m2", text = "silvermoonburnttree04.m2", + value = "silvermoonburnttree04.m2", }, { fileId = "203929", - value = "silvermoondeadtree01.m2", text = "silvermoondeadtree01.m2", + value = "silvermoondeadtree01.m2", }, { fileId = "203930", - value = "silvermoondeadtree02.m2", text = "silvermoondeadtree02.m2", + value = "silvermoondeadtree02.m2", }, { fileId = "203931", - value = "silvermoondeadtree03.m2", text = "silvermoondeadtree03.m2", + value = "silvermoondeadtree03.m2", }, { fileId = "203932", - value = "silvermoondeadtree04.m2", text = "silvermoondeadtree04.m2", + value = "silvermoondeadtree04.m2", }, { fileId = "203934", - value = "silvermoonpine01.m2", text = "silvermoonpine01.m2", + value = "silvermoonpine01.m2", }, { fileId = "203935", - value = "silvermoonpine02.m2", text = "silvermoonpine02.m2", + value = "silvermoonpine02.m2", }, { fileId = "203936", - value = "silvermoonpine03.m2", text = "silvermoonpine03.m2", + value = "silvermoonpine03.m2", }, { fileId = "203937", - value = "silvermoonpine04.m2", text = "silvermoonpine04.m2", + value = "silvermoonpine04.m2", }, { fileId = "203938", - value = "silvermoonsmallroots01.m2", text = "silvermoonsmallroots01.m2", + value = "silvermoonsmallroots01.m2", }, { fileId = "203939", - value = "silvermoonsmallroots02.m2", text = "silvermoonsmallroots02.m2", + value = "silvermoonsmallroots02.m2", }, { fileId = "203940", - value = "silvermoonsmallroots03.m2", text = "silvermoonsmallroots03.m2", + value = "silvermoonsmallroots03.m2", }, { fileId = "203941", - value = "silvermoonsmallroots04.m2", text = "silvermoonsmallroots04.m2", + value = "silvermoonsmallroots04.m2", }, { fileId = "203942", - value = "silvermoonsmalltree01.m2", text = "silvermoonsmalltree01.m2", + value = "silvermoonsmalltree01.m2", }, { fileId = "203943", - value = "silvermoonsmalltree02.m2", text = "silvermoonsmalltree02.m2", + value = "silvermoonsmalltree02.m2", }, { fileId = "203944", - value = "silvermoonsmalltree03.m2", text = "silvermoonsmalltree03.m2", + value = "silvermoonsmalltree03.m2", }, { fileId = "203945", - value = "silvermoonsmalltree04.m2", text = "silvermoonsmalltree04.m2", + value = "silvermoonsmalltree04.m2", }, { fileId = "203946", - value = "silvermoonsmalltree05.m2", text = "silvermoonsmalltree05.m2", + value = "silvermoonsmalltree05.m2", }, { fileId = "203947", - value = "silvermoonsmalltree06.m2", text = "silvermoonsmalltree06.m2", + value = "silvermoonsmalltree06.m2", }, { fileId = "203948", - value = "silvermoonsmalltree07.m2", text = "silvermoonsmalltree07.m2", + value = "silvermoonsmalltree07.m2", }, { fileId = "203949", - value = "silvermoonsmalltree08.m2", text = "silvermoonsmalltree08.m2", + value = "silvermoonsmalltree08.m2", }, { fileId = "203950", - value = "silvermoontree01.m2", text = "silvermoontree01.m2", + value = "silvermoontree01.m2", }, { fileId = "203951", - value = "silvermoontree02.m2", text = "silvermoontree02.m2", + value = "silvermoontree02.m2", }, { fileId = "203952", - value = "silvermoontree03.m2", text = "silvermoontree03.m2", + value = "silvermoontree03.m2", }, { fileId = "203953", - value = "silvermoontree04.m2", text = "silvermoontree04.m2", + value = "silvermoontree04.m2", }, { fileId = "203954", - value = "silvermoontree05.m2", text = "silvermoontree05.m2", + value = "silvermoontree05.m2", }, { fileId = "203955", - value = "silvermoontree06.m2", text = "silvermoontree06.m2", + value = "silvermoontree06.m2", }, { fileId = "203956", - value = "silvermoontree07.m2", text = "silvermoontree07.m2", + value = "silvermoontree07.m2", }, { fileId = "203957", - value = "silvermoontreelog01.m2", text = "silvermoontreelog01.m2", + value = "silvermoontreelog01.m2", }, { fileId = "203958", - value = "silvermoontreestump01.m2", text = "silvermoontreestump01.m2", + value = "silvermoontreestump01.m2", }, { fileId = "203959", - value = "silvermoontreestump02.m2", text = "silvermoontreestump02.m2", + value = "silvermoontreestump02.m2", }, { fileId = "203960", - value = "silvermoontreestump03.m2", text = "silvermoontreestump03.m2", + value = "silvermoontreestump03.m2", }, { fileId = "203963", - value = "sm_leaves_fall.m2", text = "sm_leaves_fall.m2", + value = "sm_leaves_fall.m2", }, { fileId = "203964", - value = "sm_leaves_fall_purple.m2", text = "sm_leaves_fall_purple.m2", + value = "sm_leaves_fall_purple.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "silvermoon", text = "silvermoon", + value = "silvermoon", }, { children = { @@ -85651,125 +73957,125 @@ WeakAuras.ModelPaths = { children = { { fileId = "203965", - value = "silverpineboardwalk01.m2", text = "silverpineboardwalk01.m2", + value = "silverpineboardwalk01.m2", }, }, - value = "boardwalks", text = "boardwalks", + value = "boardwalks", }, { children = { { fileId = "203967", - value = "silverpinebush01.m2", text = "silverpinebush01.m2", + value = "silverpinebush01.m2", }, { fileId = "203969", - value = "silverpinebush02.m2", text = "silverpinebush02.m2", + value = "silverpinebush02.m2", }, { fileId = "203971", - value = "silverpinebush03.m2", text = "silverpinebush03.m2", + value = "silverpinebush03.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "203973", - value = "silverpinedocks01.m2", text = "silverpinedocks01.m2", + value = "silverpinedocks01.m2", }, { fileId = "203974", - value = "silverpinedocks02.m2", text = "silverpinedocks02.m2", + value = "silverpinedocks02.m2", }, }, - value = "docks", text = "docks", + value = "docks", }, { children = { { fileId = "203975", - value = "shadowfanggate01.m2", text = "shadowfanggate01.m2", + value = "shadowfanggate01.m2", }, { fileId = "203976", - value = "shadowfanggate02.m2", text = "shadowfanggate02.m2", + value = "shadowfanggate02.m2", }, }, - value = "shadowfanggates", text = "shadowfanggates", + value = "shadowfanggates", }, { children = { { fileId = "203977", - value = "silverpinetree01.m2", text = "silverpinetree01.m2", + value = "silverpinetree01.m2", }, { fileId = "203978", - value = "silverpinetree01fallen.m2", text = "silverpinetree01fallen.m2", + value = "silverpinetree01fallen.m2", }, { fileId = "203979", - value = "silverpinetree02.m2", text = "silverpinetree02.m2", + value = "silverpinetree02.m2", }, { fileId = "203981", - value = "silverpinetree02fallen.m2", text = "silverpinetree02fallen.m2", + value = "silverpinetree02fallen.m2", }, { fileId = "203982", - value = "silverpinetree03.m2", text = "silverpinetree03.m2", + value = "silverpinetree03.m2", }, { fileId = "203983", - value = "silverpinetree04.m2", text = "silverpinetree04.m2", + value = "silverpinetree04.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "203985", - value = "silverpinetreestump01.m2", text = "silverpinetreestump01.m2", + value = "silverpinetreestump01.m2", }, { fileId = "203986", - value = "silverpinetreestump02.m2", text = "silverpinetreestump02.m2", + value = "silverpinetreestump02.m2", }, }, - value = "treestumps", text = "treestumps", + value = "treestumps", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "silverpine", text = "silverpine", + value = "silverpine", }, { children = { @@ -85779,131 +74085,131 @@ WeakAuras.ModelPaths = { children = { { fileId = "203987", - value = "frostwyrm_waterfall.m2", text = "frostwyrm_waterfall.m2", + value = "frostwyrm_waterfall.m2", }, { fileId = "203989", - value = "largeportcullis.m2", text = "largeportcullis.m2", + value = "largeportcullis.m2", }, { fileId = "203990", - value = "nox_door_abom.m2", text = "nox_door_abom.m2", + value = "nox_door_abom.m2", }, { fileId = "203991", - value = "nox_door_abom_mini.m2", text = "nox_door_abom_mini.m2", + value = "nox_door_abom_mini.m2", }, { fileId = "203992", - value = "nox_door_deathknight.m2", text = "nox_door_deathknight.m2", + value = "nox_door_deathknight.m2", }, { fileId = "203993", - value = "nox_door_plague.m2", text = "nox_door_plague.m2", + value = "nox_door_plague.m2", }, { fileId = "203994", - value = "nox_door_portcullis.m2", text = "nox_door_portcullis.m2", + value = "nox_door_portcullis.m2", }, { fileId = "203995", - value = "nox_door_slime.m2", text = "nox_door_slime.m2", + value = "nox_door_slime.m2", }, { fileId = "203996", - value = "nox_door_spider.m2", text = "nox_door_spider.m2", + value = "nox_door_spider.m2", }, { fileId = "203997", - value = "nox_door_web_boss.m2", text = "nox_door_web_boss.m2", + value = "nox_door_web_boss.m2", }, { fileId = "203998", - value = "nox_door_web_large.m2", text = "nox_door_web_large.m2", + value = "nox_door_web_large.m2", }, { fileId = "204004", - value = "smallportcullis.m2", text = "smallportcullis.m2", + value = "smallportcullis.m2", }, { fileId = "204005", - value = "zigguratdoor.m2", text = "zigguratdoor.m2", + value = "zigguratdoor.m2", }, }, - value = "doors", text = "doors", + value = "doors", }, { children = { { fileId = "204006", - value = "furnace_skull01.m2", text = "furnace_skull01.m2", + value = "furnace_skull01.m2", }, }, - value = "furnace", text = "furnace", + value = "furnace", }, { children = { { fileId = "204007", - value = "deathknight_gate01.m2", text = "deathknight_gate01.m2", + value = "deathknight_gate01.m2", }, }, - value = "gates", text = "gates", + value = "gates", }, { children = { { fileId = "204011", - value = "stratholmepostboxruined.m2", text = "stratholmepostboxruined.m2", + value = "stratholmepostboxruined.m2", }, }, - value = "postboxdestroyed", text = "postboxdestroyed", + value = "postboxdestroyed", }, { children = { { fileId = "204013", - value = "plaguewingsporetrap.m2", text = "plaguewingsporetrap.m2", + value = "plaguewingsporetrap.m2", }, }, - value = "sporetrap", text = "sporetrap", + value = "sporetrap", }, { children = { { fileId = "204019", - value = "nox_tesla.m2", text = "nox_tesla.m2", + value = "nox_tesla.m2", }, }, - value = "tesla", text = "tesla", + value = "tesla", }, }, - value = "activedoodads", text = "activedoodads", + value = "activedoodads", }, { children = { @@ -85911,226 +74217,226 @@ WeakAuras.ModelPaths = { children = { { fileId = "204024", - value = "nox_anvil.m2", text = "nox_anvil.m2", + value = "nox_anvil.m2", }, }, - value = "anvil", text = "anvil", + value = "anvil", }, { children = { { fileId = "204026", - value = "blackcitadel_exteriorslimefalls.m2", text = "blackcitadel_exteriorslimefalls.m2", + value = "blackcitadel_exteriorslimefalls.m2", }, { fileId = "204027", - value = "fel_stratholmefiresmokeembers.m2", text = "fel_stratholmefiresmokeembers.m2", + value = "fel_stratholmefiresmokeembers.m2", }, { fileId = "204031", - value = "kelthuzad_window_portal.m2", text = "kelthuzad_window_portal.m2", + value = "kelthuzad_window_portal.m2", }, { fileId = "204038", - value = "naxxramas_frostwyrm_birth.m2", text = "naxxramas_frostwyrm_birth.m2", + value = "naxxramas_frostwyrm_birth.m2", }, { fileId = "204040", - value = "nox_portal_bottom.m2", text = "nox_portal_bottom.m2", + value = "nox_portal_bottom.m2", }, { fileId = "204041", - value = "nox_portal_orange.m2", text = "nox_portal_orange.m2", + value = "nox_portal_orange.m2", }, { fileId = "204042", - value = "nox_portal_orange_bossroom.m2", text = "nox_portal_orange_bossroom.m2", + value = "nox_portal_orange_bossroom.m2", }, { fileId = "204043", - value = "nox_portal_orange_bossroom_eye.m2", text = "nox_portal_orange_bossroom_eye.m2", + value = "nox_portal_orange_bossroom_eye.m2", }, { fileId = "204044", - value = "nox_portal_purple.m2", text = "nox_portal_purple.m2", + value = "nox_portal_purple.m2", }, { fileId = "204045", - value = "nox_portal_purple_bossroom.m2", text = "nox_portal_purple_bossroom.m2", + value = "nox_portal_purple_bossroom.m2", }, { fileId = "204046", - value = "nox_portal_purple_bossroom_eye.m2", text = "nox_portal_purple_bossroom_eye.m2", + value = "nox_portal_purple_bossroom_eye.m2", }, { fileId = "204047", - value = "nox_portal_red.m2", text = "nox_portal_red.m2", + value = "nox_portal_red.m2", }, { fileId = "204048", - value = "nox_portal_red_bossroom.m2", text = "nox_portal_red_bossroom.m2", + value = "nox_portal_red_bossroom.m2", }, { fileId = "204049", - value = "nox_portal_red_bossroom_eye.m2", text = "nox_portal_red_bossroom_eye.m2", + value = "nox_portal_red_bossroom_eye.m2", }, { fileId = "204050", - value = "nox_portal_top.m2", text = "nox_portal_top.m2", + value = "nox_portal_top.m2", }, { fileId = "204051", - value = "nox_portal_yellow.m2", text = "nox_portal_yellow.m2", + value = "nox_portal_yellow.m2", }, { fileId = "204052", - value = "nox_portal_yellow_bossroom.m2", text = "nox_portal_yellow_bossroom.m2", + value = "nox_portal_yellow_bossroom.m2", }, { fileId = "204053", - value = "nox_portal_yellow_bossroom_eye.m2", text = "nox_portal_yellow_bossroom_eye.m2", + value = "nox_portal_yellow_bossroom_eye.m2", }, { fileId = "204055", - value = "stratholmefiresmokeemberm.m2", text = "stratholmefiresmokeemberm.m2", + value = "stratholmefiresmokeemberm.m2", }, { fileId = "204056", - value = "stratholmefiresmokeembers.m2", text = "stratholmefiresmokeembers.m2", + value = "stratholmefiresmokeembers.m2", }, { fileId = "204057", - value = "stratholmefloatingembers.m2", text = "stratholmefloatingembers.m2", + value = "stratholmefloatingembers.m2", }, { fileId = "204058", - value = "stratholmesmokeemitter.m2", text = "stratholmesmokeemitter.m2", + value = "stratholmesmokeemitter.m2", }, }, - value = "fx", text = "fx", + value = "fx", }, { children = { { fileId = "204059", - value = "naxxramas_frostwyrm_slimefall.m2", text = "naxxramas_frostwyrm_slimefall.m2", + value = "naxxramas_frostwyrm_slimefall.m2", }, }, - value = "naxxramasslimefalls", text = "naxxramasslimefalls", + value = "naxxramasslimefalls", }, { children = { { fileId = "204061", - value = "ruinedsign01.m2", text = "ruinedsign01.m2", + value = "ruinedsign01.m2", }, { fileId = "204062", - value = "ruinedsign02.m2", text = "ruinedsign02.m2", + value = "ruinedsign02.m2", }, { fileId = "204063", - value = "ruinedsign03.m2", text = "ruinedsign03.m2", + value = "ruinedsign03.m2", }, }, - value = "signs", text = "signs", + value = "signs", }, { children = { { fileId = "204065", - value = "kelthuzad_throne.m2", text = "kelthuzad_throne.m2", + value = "kelthuzad_throne.m2", }, }, - value = "throne", text = "throne", + value = "throne", }, { children = { { fileId = "204068", - value = "bossweb_doodad01.m2", text = "bossweb_doodad01.m2", + value = "bossweb_doodad01.m2", }, { fileId = "204069", - value = "bossweb_doodad02.m2", text = "bossweb_doodad02.m2", + value = "bossweb_doodad02.m2", }, { fileId = "204070", - value = "hallwayweb_doodad01.m2", text = "hallwayweb_doodad01.m2", + value = "hallwayweb_doodad01.m2", }, { fileId = "204071", - value = "hallwayweb_doodad02.m2", text = "hallwayweb_doodad02.m2", + value = "hallwayweb_doodad02.m2", }, { fileId = "204072", - value = "hallwayweb_doodad03.m2", text = "hallwayweb_doodad03.m2", + value = "hallwayweb_doodad03.m2", }, { fileId = "204073", - value = "rampweb_doodad01.m2", text = "rampweb_doodad01.m2", + value = "rampweb_doodad01.m2", }, }, - value = "webs", text = "webs", + value = "webs", }, { children = { { fileId = "204075", - value = "nox_window01.m2", text = "nox_window01.m2", + value = "nox_window01.m2", }, }, - value = "window", text = "window", + value = "window", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "stratholme", text = "stratholme", + value = "stratholme", }, { children = { @@ -86140,305 +74446,305 @@ WeakAuras.ModelPaths = { children = { { fileId = "204076", - value = "arcoftriumph01.m2", text = "arcoftriumph01.m2", + value = "arcoftriumph01.m2", }, }, - value = "arcoftriumph", text = "arcoftriumph", + value = "arcoftriumph", }, { children = { { fileId = "204080", - value = "tirisfallbarricade.m2", text = "tirisfallbarricade.m2", + value = "tirisfallbarricade.m2", }, }, - value = "barricade", text = "barricade", + value = "barricade", }, { children = { { fileId = "204084", - value = "tirisfallboardwalk01.m2", text = "tirisfallboardwalk01.m2", + value = "tirisfallboardwalk01.m2", }, { fileId = "204085", - value = "tirisfallboardwalk02.m2", text = "tirisfallboardwalk02.m2", + value = "tirisfallboardwalk02.m2", }, }, - value = "boardwalk", text = "boardwalk", + value = "boardwalk", }, { children = { { fileId = "204086", - value = "bodyshrouded.m2", text = "bodyshrouded.m2", + value = "bodyshrouded.m2", }, { fileId = "204090", - value = "massgrave.m2", text = "massgrave.m2", + value = "massgrave.m2", }, { fileId = "204091", - value = "scourgebodyhanging01.m2", text = "scourgebodyhanging01.m2", + value = "scourgebodyhanging01.m2", }, { fileId = "204092", - value = "scourgebodyhanging02.m2", text = "scourgebodyhanging02.m2", + value = "scourgebodyhanging02.m2", }, { fileId = "204093", - value = "scourgebodyhanging03.m2", text = "scourgebodyhanging03.m2", + value = "scourgebodyhanging03.m2", }, }, - value = "bodies", text = "bodies", + value = "bodies", }, { children = { { fileId = "204097", - value = "tirisfallbush01.m2", text = "tirisfallbush01.m2", + value = "tirisfallbush01.m2", }, { fileId = "204098", - value = "tirisfallgladebush03.m2", text = "tirisfallgladebush03.m2", + value = "tirisfallgladebush03.m2", }, { fileId = "204099", - value = "tirisfallgladebush04.m2", text = "tirisfallgladebush04.m2", + value = "tirisfallgladebush04.m2", }, }, - value = "bushes", text = "bushes", + value = "bushes", }, { children = { { fileId = "204101", - value = "doomweed01.m2", text = "doomweed01.m2", + value = "doomweed01.m2", }, }, - value = "doomweed", text = "doomweed", + value = "doomweed", }, { children = { { fileId = "204103", - value = "gloomweed01.m2", text = "gloomweed01.m2", + value = "gloomweed01.m2", }, }, - value = "gloomweed", text = "gloomweed", + value = "gloomweed", }, { children = { { fileId = "204104", - value = "brillcoffins.m2", text = "brillcoffins.m2", + value = "brillcoffins.m2", }, { fileId = "204105", - value = "brillgraves01.m2", text = "brillgraves01.m2", + value = "brillgraves01.m2", }, { fileId = "204106", - value = "brillgraves02.m2", text = "brillgraves02.m2", + value = "brillgraves02.m2", }, { fileId = "204107", - value = "brillgraves03.m2", text = "brillgraves03.m2", + value = "brillgraves03.m2", }, { fileId = "204108", - value = "brillgraves04.m2", text = "brillgraves04.m2", + value = "brillgraves04.m2", }, { fileId = "204112", - value = "tirisfallgravedirtmound01.m2", text = "tirisfallgravedirtmound01.m2", + value = "tirisfallgravedirtmound01.m2", }, { fileId = "204113", - value = "tirisfallgravedirtmound02.m2", text = "tirisfallgravedirtmound02.m2", + value = "tirisfallgravedirtmound02.m2", }, { fileId = "204114", - value = "tirisfallopengrave01.m2", text = "tirisfallopengrave01.m2", + value = "tirisfallopengrave01.m2", }, }, - value = "graves", text = "graves", + value = "graves", }, { children = { { fileId = "204116", - value = "tirisfalloutpost01.m2", text = "tirisfalloutpost01.m2", + value = "tirisfalloutpost01.m2", }, { fileId = "204117", - value = "tirisfalloutpost02.m2", text = "tirisfalloutpost02.m2", + value = "tirisfalloutpost02.m2", }, { fileId = "204118", - value = "tirisfalloutpost03.m2", text = "tirisfalloutpost03.m2", + value = "tirisfalloutpost03.m2", }, { fileId = "204119", - value = "tirisfalloutpost04.m2", text = "tirisfalloutpost04.m2", + value = "tirisfalloutpost04.m2", }, { fileId = "204120", - value = "tirisfalloutpost05.m2", text = "tirisfalloutpost05.m2", + value = "tirisfalloutpost05.m2", }, { fileId = "204121", - value = "tirisfalloutpost06.m2", text = "tirisfalloutpost06.m2", + value = "tirisfalloutpost06.m2", }, { fileId = "204122", - value = "tirisfalloutpost07.m2", text = "tirisfalloutpost07.m2", + value = "tirisfalloutpost07.m2", }, }, - value = "outposts", text = "outposts", + value = "outposts", }, { children = { { fileId = "204124", - value = "tirisfalgladetree01.m2", text = "tirisfalgladetree01.m2", + value = "tirisfalgladetree01.m2", }, { fileId = "204125", - value = "tirisfallfallentree01.m2", text = "tirisfallfallentree01.m2", + value = "tirisfallfallentree01.m2", }, { fileId = "204126", - value = "tirisfallfallentree02.m2", text = "tirisfallfallentree02.m2", + value = "tirisfallfallentree02.m2", }, { fileId = "204127", - value = "tirisfallfallentree03.m2", text = "tirisfallfallentree03.m2", + value = "tirisfallfallentree03.m2", }, { fileId = "204128", - value = "tirisfallfallentree04.m2", text = "tirisfallfallentree04.m2", + value = "tirisfallfallentree04.m2", }, { fileId = "204129", - value = "tirisfallgladecanopytree02.m2", text = "tirisfallgladecanopytree02.m2", + value = "tirisfallgladecanopytree02.m2", }, { fileId = "204130", - value = "tirisfallgladecanopytree03.m2", text = "tirisfallgladecanopytree03.m2", + value = "tirisfallgladecanopytree03.m2", }, { fileId = "204131", - value = "tirisfallgladecanopytree04.m2", text = "tirisfallgladecanopytree04.m2", + value = "tirisfallgladecanopytree04.m2", }, { fileId = "204132", - value = "tirisfallgladecanopytree05.m2", text = "tirisfallgladecanopytree05.m2", + value = "tirisfallgladecanopytree05.m2", }, { fileId = "204133", - value = "tirisfallgladecanopytree06.m2", text = "tirisfallgladecanopytree06.m2", + value = "tirisfallgladecanopytree06.m2", }, { fileId = "204134", - value = "tirisfallgladecanopytree07.m2", text = "tirisfallgladecanopytree07.m2", + value = "tirisfallgladecanopytree07.m2", }, { fileId = "204135", - value = "tirisfalltreestump01.m2", text = "tirisfalltreestump01.m2", + value = "tirisfalltreestump01.m2", }, { fileId = "204136", - value = "tirisfalltreestump02.m2", text = "tirisfalltreestump02.m2", + value = "tirisfalltreestump02.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, { children = { { fileId = "204142", - value = "uthershrinepedestal.m2", text = "uthershrinepedestal.m2", + value = "uthershrinepedestal.m2", }, }, - value = "uthershrine", text = "uthershrine", + value = "uthershrine", }, { children = { { fileId = "204144", - value = "tirisfallwindmill.m2", text = "tirisfallwindmill.m2", + value = "tirisfallwindmill.m2", }, }, - value = "windmill", text = "windmill", + value = "windmill", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "tirisfalglade", text = "tirisfalglade", + value = "tirisfalglade", }, }, - value = "lordaeron", text = "lordaeron", + value = "lordaeron", }, { children = { @@ -86446,2697 +74752,2697 @@ WeakAuras.ModelPaths = { children = { { fileId = "218550", - value = "apkbus01.m2", text = "apkbus01.m2", + value = "apkbus01.m2", }, { fileId = "218551", - value = "apkbus02.m2", text = "apkbus02.m2", + value = "apkbus02.m2", }, { fileId = "218552", - value = "apkbus03.m2", text = "apkbus03.m2", + value = "apkbus03.m2", }, { fileId = "218553", - value = "apkbus04.m2", text = "apkbus04.m2", + value = "apkbus04.m2", }, { fileId = "218554", - value = "apkbus05.m2", text = "apkbus05.m2", + value = "apkbus05.m2", }, { fileId = "218555", - value = "apkflo01.m2", text = "apkflo01.m2", + value = "apkflo01.m2", }, { fileId = "218556", - value = "apkflo02.m2", text = "apkflo02.m2", + value = "apkflo02.m2", }, { fileId = "218557", - value = "apkflo03.m2", text = "apkflo03.m2", + value = "apkflo03.m2", }, { fileId = "218558", - value = "apkgra01.m2", text = "apkgra01.m2", + value = "apkgra01.m2", }, { fileId = "218559", - value = "apkgra02.m2", text = "apkgra02.m2", + value = "apkgra02.m2", }, { fileId = "218560", - value = "apkgra03.m2", text = "apkgra03.m2", + value = "apkgra03.m2", }, { fileId = "218561", - value = "apkgra04.m2", text = "apkgra04.m2", + value = "apkgra04.m2", }, { fileId = "218563", - value = "arhbus01.m2", text = "arhbus01.m2", + value = "arhbus01.m2", }, { fileId = "218564", - value = "arhbus02.m2", text = "arhbus02.m2", + value = "arhbus02.m2", }, { fileId = "218565", - value = "arhflo01.m2", text = "arhflo01.m2", + value = "arhflo01.m2", }, { fileId = "218566", - value = "arhflo02.m2", text = "arhflo02.m2", + value = "arhflo02.m2", }, { fileId = "218567", - value = "arhflo03.m2", text = "arhflo03.m2", + value = "arhflo03.m2", }, { fileId = "218568", - value = "arhflo04.m2", text = "arhflo04.m2", + value = "arhflo04.m2", }, { fileId = "218569", - value = "arhflo05.m2", text = "arhflo05.m2", + value = "arhflo05.m2", }, { fileId = "218570", - value = "arhgra01.m2", text = "arhgra01.m2", + value = "arhgra01.m2", }, { fileId = "218571", - value = "arhgra02.m2", text = "arhgra02.m2", + value = "arhgra02.m2", }, { fileId = "218572", - value = "arhgra03.m2", text = "arhgra03.m2", + value = "arhgra03.m2", }, { fileId = "218573", - value = "arhroc01.m2", text = "arhroc01.m2", + value = "arhroc01.m2", }, { fileId = "218574", - value = "arhroc02.m2", text = "arhroc02.m2", + value = "arhroc02.m2", }, { fileId = "218575", - value = "arhwet01.m2", text = "arhwet01.m2", + value = "arhwet01.m2", }, { fileId = "218576", - value = "arhwet02.m2", text = "arhwet02.m2", + value = "arhwet02.m2", }, { fileId = "218577", - value = "atcbus01.m2", text = "atcbus01.m2", + value = "atcbus01.m2", }, { fileId = "218578", - value = "atcbus02.m2", text = "atcbus02.m2", + value = "atcbus02.m2", }, { fileId = "218579", - value = "atcbus03.m2", text = "atcbus03.m2", + value = "atcbus03.m2", }, { fileId = "218580", - value = "atcbus04.m2", text = "atcbus04.m2", + value = "atcbus04.m2", }, { fileId = "218581", - value = "atcbus05.m2", text = "atcbus05.m2", + value = "atcbus05.m2", }, { fileId = "218582", - value = "atcflo01.m2", text = "atcflo01.m2", + value = "atcflo01.m2", }, { fileId = "218583", - value = "atcflo02.m2", text = "atcflo02.m2", + value = "atcflo02.m2", }, { fileId = "218584", - value = "atcflo03.m2", text = "atcflo03.m2", + value = "atcflo03.m2", }, { fileId = "218585", - value = "atcgra01.m2", text = "atcgra01.m2", + value = "atcgra01.m2", }, { fileId = "218586", - value = "atcgra02.m2", text = "atcgra02.m2", + value = "atcgra02.m2", }, { fileId = "218587", - value = "atcgra03.m2", text = "atcgra03.m2", + value = "atcgra03.m2", }, { fileId = "218588", - value = "atcgra04.m2", text = "atcgra04.m2", + value = "atcgra04.m2", }, { fileId = "218589", - value = "azhbus01.m2", text = "azhbus01.m2", + value = "azhbus01.m2", }, { fileId = "218590", - value = "azhbus02.m2", text = "azhbus02.m2", + value = "azhbus02.m2", }, { fileId = "218591", - value = "azhbus03.m2", text = "azhbus03.m2", + value = "azhbus03.m2", }, { fileId = "218592", - value = "azhbus04.m2", text = "azhbus04.m2", + value = "azhbus04.m2", }, { fileId = "218593", - value = "azhbus05.m2", text = "azhbus05.m2", + value = "azhbus05.m2", }, { fileId = "218594", - value = "azhbus06.m2", text = "azhbus06.m2", + value = "azhbus06.m2", }, { fileId = "218595", - value = "azhbus07.m2", text = "azhbus07.m2", + value = "azhbus07.m2", }, { fileId = "218596", - value = "azhbus08.m2", text = "azhbus08.m2", + value = "azhbus08.m2", }, { fileId = "218597", - value = "azhgra01.m2", text = "azhgra01.m2", + value = "azhgra01.m2", }, { fileId = "218598", - value = "azhgra02.m2", text = "azhgra02.m2", + value = "azhgra02.m2", }, { fileId = "218599", - value = "azhshel01.m2", text = "azhshel01.m2", + value = "azhshel01.m2", }, { fileId = "218600", - value = "azhshel02.m2", text = "azhshel02.m2", + value = "azhshel02.m2", }, { fileId = "218601", - value = "azhshel03.m2", text = "azhshel03.m2", + value = "azhshel03.m2", }, { fileId = "218603", - value = "badbus01.m2", text = "badbus01.m2", + value = "badbus01.m2", }, { fileId = "218604", - value = "badbus02.m2", text = "badbus02.m2", + value = "badbus02.m2", }, { fileId = "218605", - value = "badbus03.m2", text = "badbus03.m2", + value = "badbus03.m2", }, { fileId = "218606", - value = "badbus04.m2", text = "badbus04.m2", + value = "badbus04.m2", }, { fileId = "218607", - value = "badbus05.m2", text = "badbus05.m2", + value = "badbus05.m2", }, { fileId = "218608", - value = "badbus06.m2", text = "badbus06.m2", + value = "badbus06.m2", }, { fileId = "218609", - value = "badbus07.m2", text = "badbus07.m2", + value = "badbus07.m2", }, { fileId = "218610", - value = "badbus08.m2", text = "badbus08.m2", + value = "badbus08.m2", }, { fileId = "218611", - value = "badgra01.m2", text = "badgra01.m2", + value = "badgra01.m2", }, { fileId = "218612", - value = "badgra02.m2", text = "badgra02.m2", + value = "badgra02.m2", }, { fileId = "218614", - value = "badroc01.m2", text = "badroc01.m2", + value = "badroc01.m2", }, { fileId = "218615", - value = "badroc02.m2", text = "badroc02.m2", + value = "badroc02.m2", }, { fileId = "218616", - value = "badroc03.m2", text = "badroc03.m2", + value = "badroc03.m2", }, { fileId = "218617", - value = "barbus01.m2", text = "barbus01.m2", + value = "barbus01.m2", }, { fileId = "218618", - value = "barbus02.m2", text = "barbus02.m2", + value = "barbus02.m2", }, { fileId = "218619", - value = "barbus03.m2", text = "barbus03.m2", + value = "barbus03.m2", }, { fileId = "218620", - value = "barbus04.m2", text = "barbus04.m2", + value = "barbus04.m2", }, { fileId = "218621", - value = "bargra01.m2", text = "bargra01.m2", + value = "bargra01.m2", }, { fileId = "218622", - value = "bargra02.m2", text = "bargra02.m2", + value = "bargra02.m2", }, { fileId = "218623", - value = "bargra03.m2", text = "bargra03.m2", + value = "bargra03.m2", }, { fileId = "218624", - value = "bargra04.m2", text = "bargra04.m2", + value = "bargra04.m2", }, { fileId = "218625", - value = "bargra05.m2", text = "bargra05.m2", + value = "bargra05.m2", }, { fileId = "218626", - value = "bargra06.m2", text = "bargra06.m2", + value = "bargra06.m2", }, { fileId = "218627", - value = "bargra07.m2", text = "bargra07.m2", + value = "bargra07.m2", }, { fileId = "218628", - value = "bargra08.m2", text = "bargra08.m2", + value = "bargra08.m2", }, { fileId = "218630", - value = "barroc01.m2", text = "barroc01.m2", + value = "barroc01.m2", }, { fileId = "218631", - value = "barroc02.m2", text = "barroc02.m2", + value = "barroc02.m2", }, { fileId = "218632", - value = "barroc03.m2", text = "barroc03.m2", + value = "barroc03.m2", }, { fileId = "218633", - value = "barroc04.m2", text = "barroc04.m2", + value = "barroc04.m2", }, { fileId = "218634", - value = "barroc05.m2", text = "barroc05.m2", + value = "barroc05.m2", }, { fileId = "218635", - value = "barroc06.m2", text = "barroc06.m2", + value = "barroc06.m2", }, { fileId = "218637", - value = "blaroc01.m2", text = "blaroc01.m2", + value = "blaroc01.m2", }, { fileId = "218638", - value = "blaroc02.m2", text = "blaroc02.m2", + value = "blaroc02.m2", }, { fileId = "218639", - value = "blaroc03.m2", text = "blaroc03.m2", + value = "blaroc03.m2", }, { fileId = "218640", - value = "blaroc04.m2", text = "blaroc04.m2", + value = "blaroc04.m2", }, { fileId = "218641", - value = "blaroc05.m2", text = "blaroc05.m2", + value = "blaroc05.m2", }, { fileId = "218642", - value = "blaroc06.m2", text = "blaroc06.m2", + value = "blaroc06.m2", }, { fileId = "218643", - value = "blaroc07.m2", text = "blaroc07.m2", + value = "blaroc07.m2", }, { fileId = "218644", - value = "blaroc08.m2", text = "blaroc08.m2", + value = "blaroc08.m2", }, { fileId = "218645", - value = "blaroc09.m2", text = "blaroc09.m2", + value = "blaroc09.m2", }, { fileId = "218646", - value = "blaroc10.m2", text = "blaroc10.m2", + value = "blaroc10.m2", }, { fileId = "218647", - value = "blaroc11.m2", text = "blaroc11.m2", + value = "blaroc11.m2", }, { fileId = "218648", - value = "blaroc12.m2", text = "blaroc12.m2", + value = "blaroc12.m2", }, { fileId = "218649", - value = "blaroc13.m2", text = "blaroc13.m2", + value = "blaroc13.m2", }, { fileId = "218651", - value = "bllbus01.m2", text = "bllbus01.m2", + value = "bllbus01.m2", }, { fileId = "218652", - value = "bllroc01.m2", text = "bllroc01.m2", + value = "bllroc01.m2", }, { fileId = "218653", - value = "bllroc02.m2", text = "bllroc02.m2", + value = "bllroc02.m2", }, { fileId = "218654", - value = "bllroc03.m2", text = "bllroc03.m2", + value = "bllroc03.m2", }, { fileId = "218655", - value = "bllroc04.m2", text = "bllroc04.m2", + value = "bllroc04.m2", }, { fileId = "218656", - value = "bllroc05.m2", text = "bllroc05.m2", + value = "bllroc05.m2", }, { fileId = "218657", - value = "bllroc06.m2", text = "bllroc06.m2", + value = "bllroc06.m2", }, { fileId = "218658", - value = "bllroc07.m2", text = "bllroc07.m2", + value = "bllroc07.m2", }, { fileId = "218659", - value = "bllroc08.m2", text = "bllroc08.m2", + value = "bllroc08.m2", }, { fileId = "218661", - value = "bmybus01.m2", text = "bmybus01.m2", + value = "bmybus01.m2", }, { fileId = "218662", - value = "bmybus02.m2", text = "bmybus02.m2", + value = "bmybus02.m2", }, { fileId = "218663", - value = "bmybus03.m2", text = "bmybus03.m2", + value = "bmybus03.m2", }, { fileId = "218664", - value = "bmybus04.m2", text = "bmybus04.m2", + value = "bmybus04.m2", }, { fileId = "218665", - value = "bmybus05.m2", text = "bmybus05.m2", + value = "bmybus05.m2", }, { fileId = "218666", - value = "bmyflo01.m2", text = "bmyflo01.m2", + value = "bmyflo01.m2", }, { fileId = "218667", - value = "bmyflo02.m2", text = "bmyflo02.m2", + value = "bmyflo02.m2", }, { fileId = "218668", - value = "bmygra01.m2", text = "bmygra01.m2", + value = "bmygra01.m2", }, { fileId = "218669", - value = "bmygra02.m2", text = "bmygra02.m2", + value = "bmygra02.m2", }, { fileId = "218670", - value = "bmygra03.m2", text = "bmygra03.m2", + value = "bmygra03.m2", }, { fileId = "218671", - value = "bmygra04.m2", text = "bmygra04.m2", + value = "bmygra04.m2", }, { fileId = "218673", - value = "bstbra01.m2", text = "bstbra01.m2", + value = "bstbra01.m2", }, { fileId = "218674", - value = "bstbra02.m2", text = "bstbra02.m2", + value = "bstbra02.m2", }, { fileId = "218675", - value = "bstbra03.m2", text = "bstbra03.m2", + value = "bstbra03.m2", }, { fileId = "218676", - value = "bstbra04.m2", text = "bstbra04.m2", + value = "bstbra04.m2", }, { fileId = "218677", - value = "bstbra05.m2", text = "bstbra05.m2", + value = "bstbra05.m2", }, { fileId = "218678", - value = "bstbra06.m2", text = "bstbra06.m2", + value = "bstbra06.m2", }, { fileId = "218679", - value = "bstbra07.m2", text = "bstbra07.m2", + value = "bstbra07.m2", }, { fileId = "218680", - value = "bstbra08.m2", text = "bstbra08.m2", + value = "bstbra08.m2", }, { fileId = "218681", - value = "bstroc01.m2", text = "bstroc01.m2", + value = "bstroc01.m2", }, { fileId = "218682", - value = "bstroc02.m2", text = "bstroc02.m2", + value = "bstroc02.m2", }, { fileId = "218683", - value = "bstroc03.m2", text = "bstroc03.m2", + value = "bstroc03.m2", }, { fileId = "218684", - value = "bstroc04.m2", text = "bstroc04.m2", + value = "bstroc04.m2", }, { fileId = "218685", - value = "bstroc05.m2", text = "bstroc05.m2", + value = "bstroc05.m2", }, { fileId = "218708", - value = "drkbus01.m2", text = "drkbus01.m2", + value = "drkbus01.m2", }, { fileId = "218709", - value = "drkbus02.m2", text = "drkbus02.m2", + value = "drkbus02.m2", }, { fileId = "218710", - value = "drkbus03.m2", text = "drkbus03.m2", + value = "drkbus03.m2", }, { fileId = "218711", - value = "drkbus04.m2", text = "drkbus04.m2", + value = "drkbus04.m2", }, { fileId = "218712", - value = "drkbus05.m2", text = "drkbus05.m2", + value = "drkbus05.m2", }, { fileId = "218713", - value = "drkbus06.m2", text = "drkbus06.m2", + value = "drkbus06.m2", }, { fileId = "218714", - value = "drkbus07.m2", text = "drkbus07.m2", + value = "drkbus07.m2", }, { fileId = "218715", - value = "drkgra01.m2", text = "drkgra01.m2", + value = "drkgra01.m2", }, { fileId = "218716", - value = "drkgra02.m2", text = "drkgra02.m2", + value = "drkgra02.m2", }, { fileId = "218717", - value = "drkgra03.m2", text = "drkgra03.m2", + value = "drkgra03.m2", }, { fileId = "218718", - value = "drkgra04.m2", text = "drkgra04.m2", + value = "drkgra04.m2", }, { fileId = "218719", - value = "drkgra05.m2", text = "drkgra05.m2", + value = "drkgra05.m2", }, { fileId = "218720", - value = "drkgra06.m2", text = "drkgra06.m2", + value = "drkgra06.m2", }, { fileId = "218721", - value = "dskflo01.m2", text = "dskflo01.m2", + value = "dskflo01.m2", }, { fileId = "218722", - value = "dskflo02.m2", text = "dskflo02.m2", + value = "dskflo02.m2", }, { fileId = "218723", - value = "dskgra01.m2", text = "dskgra01.m2", + value = "dskgra01.m2", }, { fileId = "218724", - value = "dskgra02.m2", text = "dskgra02.m2", + value = "dskgra02.m2", }, { fileId = "218725", - value = "dskgra03.m2", text = "dskgra03.m2", + value = "dskgra03.m2", }, { fileId = "218726", - value = "dskgra04.m2", text = "dskgra04.m2", + value = "dskgra04.m2", }, { fileId = "218727", - value = "dskgra05.m2", text = "dskgra05.m2", + value = "dskgra05.m2", }, { fileId = "218728", - value = "dskgra06.m2", text = "dskgra06.m2", + value = "dskgra06.m2", }, { fileId = "218729", - value = "dslbon01.m2", text = "dslbon01.m2", + value = "dslbon01.m2", }, { fileId = "218730", - value = "dslbon02.m2", text = "dslbon02.m2", + value = "dslbon02.m2", }, { fileId = "218731", - value = "dslbon03.m2", text = "dslbon03.m2", + value = "dslbon03.m2", }, { fileId = "218732", - value = "dslbon04.m2", text = "dslbon04.m2", + value = "dslbon04.m2", }, { fileId = "218733", - value = "dslbon05.m2", text = "dslbon05.m2", + value = "dslbon05.m2", }, { fileId = "218734", - value = "dslbon06.m2", text = "dslbon06.m2", + value = "dslbon06.m2", }, { fileId = "218735", - value = "dslbon07.m2", text = "dslbon07.m2", + value = "dslbon07.m2", }, { fileId = "218736", - value = "dslbon08.m2", text = "dslbon08.m2", + value = "dslbon08.m2", }, { fileId = "218737", - value = "dslroc01.m2", text = "dslroc01.m2", + value = "dslroc01.m2", }, { fileId = "218738", - value = "dslroc02.m2", text = "dslroc02.m2", + value = "dslroc02.m2", }, { fileId = "218739", - value = "dunbra01.m2", text = "dunbra01.m2", + value = "dunbra01.m2", }, { fileId = "218740", - value = "dunbra02.m2", text = "dunbra02.m2", + value = "dunbra02.m2", }, { fileId = "218741", - value = "dunbra03.m2", text = "dunbra03.m2", + value = "dunbra03.m2", }, { fileId = "218742", - value = "dunbra04.m2", text = "dunbra04.m2", + value = "dunbra04.m2", }, { fileId = "218743", - value = "dunbus01.m2", text = "dunbus01.m2", + value = "dunbus01.m2", }, { fileId = "218744", - value = "dunbus02.m2", text = "dunbus02.m2", + value = "dunbus02.m2", }, { fileId = "218745", - value = "dunbus03.m2", text = "dunbus03.m2", + value = "dunbus03.m2", }, { fileId = "218746", - value = "dungra01.m2", text = "dungra01.m2", + value = "dungra01.m2", }, { fileId = "218747", - value = "dungra02.m2", text = "dungra02.m2", + value = "dungra02.m2", }, { fileId = "218748", - value = "dungra03.m2", text = "dungra03.m2", + value = "dungra03.m2", }, { fileId = "218749", - value = "dungra04.m2", text = "dungra04.m2", + value = "dungra04.m2", }, { fileId = "218750", - value = "dunroc01.m2", text = "dunroc01.m2", + value = "dunroc01.m2", }, { fileId = "218751", - value = "dunroc02.m2", text = "dunroc02.m2", + value = "dunroc02.m2", }, { fileId = "218752", - value = "durbus01.m2", text = "durbus01.m2", + value = "durbus01.m2", }, { fileId = "218753", - value = "durbus02.m2", text = "durbus02.m2", + value = "durbus02.m2", }, { fileId = "218754", - value = "durbus03.m2", text = "durbus03.m2", + value = "durbus03.m2", }, { fileId = "218755", - value = "durbus04.m2", text = "durbus04.m2", + value = "durbus04.m2", }, { fileId = "218756", - value = "durbus05.m2", text = "durbus05.m2", + value = "durbus05.m2", }, { fileId = "218757", - value = "durbus06.m2", text = "durbus06.m2", + value = "durbus06.m2", }, { fileId = "218758", - value = "durgra01.m2", text = "durgra01.m2", + value = "durgra01.m2", }, { fileId = "218759", - value = "durgra02.m2", text = "durgra02.m2", + value = "durgra02.m2", }, { fileId = "218760", - value = "durgra03.m2", text = "durgra03.m2", + value = "durgra03.m2", }, { fileId = "218761", - value = "duribu01.m2", text = "duribu01.m2", + value = "duribu01.m2", }, { fileId = "218762", - value = "duribu02.m2", text = "duribu02.m2", + value = "duribu02.m2", }, { fileId = "218763", - value = "duribu03.m2", text = "duribu03.m2", + value = "duribu03.m2", }, { fileId = "218764", - value = "durifl01.m2", text = "durifl01.m2", + value = "durifl01.m2", }, { fileId = "218765", - value = "durifl02.m2", text = "durifl02.m2", + value = "durifl02.m2", }, { fileId = "218766", - value = "durifl03.m2", text = "durifl03.m2", + value = "durifl03.m2", }, { fileId = "218767", - value = "durifl04.m2", text = "durifl04.m2", + value = "durifl04.m2", }, { fileId = "218768", - value = "durifl05.m2", text = "durifl05.m2", + value = "durifl05.m2", }, { fileId = "218769", - value = "durigr01.m2", text = "durigr01.m2", + value = "durigr01.m2", }, { fileId = "218770", - value = "durigr02.m2", text = "durigr02.m2", + value = "durigr02.m2", }, { fileId = "218771", - value = "durigr03.m2", text = "durigr03.m2", + value = "durigr03.m2", }, { fileId = "218772", - value = "durigr04.m2", text = "durigr04.m2", + value = "durigr04.m2", }, { fileId = "218773", - value = "duriro01.m2", text = "duriro01.m2", + value = "duriro01.m2", }, { fileId = "218774", - value = "duriro02.m2", text = "duriro02.m2", + value = "duriro02.m2", }, { fileId = "218776", - value = "durroc01.m2", text = "durroc01.m2", + value = "durroc01.m2", }, { fileId = "218777", - value = "durroc02.m2", text = "durroc02.m2", + value = "durroc02.m2", }, { fileId = "218778", - value = "durroc03.m2", text = "durroc03.m2", + value = "durroc03.m2", }, { fileId = "218779", - value = "durroc04.m2", text = "durroc04.m2", + value = "durroc04.m2", }, { fileId = "218782", - value = "dwmbus01.m2", text = "dwmbus01.m2", + value = "dwmbus01.m2", }, { fileId = "218783", - value = "dwmbus02.m2", text = "dwmbus02.m2", + value = "dwmbus02.m2", }, { fileId = "218784", - value = "dwmbus03.m2", text = "dwmbus03.m2", + value = "dwmbus03.m2", }, { fileId = "218785", - value = "dwmbus04.m2", text = "dwmbus04.m2", + value = "dwmbus04.m2", }, { fileId = "218786", - value = "dwmbus05.m2", text = "dwmbus05.m2", + value = "dwmbus05.m2", }, { fileId = "218787", - value = "dwmgra01.m2", text = "dwmgra01.m2", + value = "dwmgra01.m2", }, { fileId = "218788", - value = "dwmgra02.m2", text = "dwmgra02.m2", + value = "dwmgra02.m2", }, { fileId = "218789", - value = "dwmgra03.m2", text = "dwmgra03.m2", + value = "dwmgra03.m2", }, { fileId = "218790", - value = "dwmgra04.m2", text = "dwmgra04.m2", + value = "dwmgra04.m2", }, { fileId = "218791", - value = "dwmgra05.m2", text = "dwmgra05.m2", + value = "dwmgra05.m2", }, { fileId = "218792", - value = "dwmgra06.m2", text = "dwmgra06.m2", + value = "dwmgra06.m2", }, { fileId = "218793", - value = "dwmroc01.m2", text = "dwmroc01.m2", + value = "dwmroc01.m2", }, { fileId = "218794", - value = "dwmroc02.m2", text = "dwmroc02.m2", + value = "dwmroc02.m2", }, { fileId = "218795", - value = "dwpbra01.m2", text = "dwpbra01.m2", + value = "dwpbra01.m2", }, { fileId = "218796", - value = "dwpbra02.m2", text = "dwpbra02.m2", + value = "dwpbra02.m2", }, { fileId = "218797", - value = "dwpbra03.m2", text = "dwpbra03.m2", + value = "dwpbra03.m2", }, { fileId = "218798", - value = "dwpgra01.m2", text = "dwpgra01.m2", + value = "dwpgra01.m2", }, { fileId = "218799", - value = "dwpgra02.m2", text = "dwpgra02.m2", + value = "dwpgra02.m2", }, { fileId = "218800", - value = "dwpgra03.m2", text = "dwpgra03.m2", + value = "dwpgra03.m2", }, { fileId = "218801", - value = "dwproc01.m2", text = "dwproc01.m2", + value = "dwproc01.m2", }, { fileId = "218802", - value = "dwproc02.m2", text = "dwproc02.m2", + value = "dwproc02.m2", }, { fileId = "218803", - value = "dwproc03.m2", text = "dwproc03.m2", + value = "dwproc03.m2", }, { fileId = "218804", - value = "dwpwea01.m2", text = "dwpwea01.m2", + value = "dwpwea01.m2", }, { fileId = "218805", - value = "dwpwea02.m2", text = "dwpwea02.m2", + value = "dwpwea02.m2", }, { fileId = "218806", - value = "dwpwea03.m2", text = "dwpwea03.m2", + value = "dwpwea03.m2", }, { fileId = "218807", - value = "dwpwea04.m2", text = "dwpwea04.m2", + value = "dwpwea04.m2", }, { fileId = "218809", - value = "elwflo01.m2", text = "elwflo01.m2", + value = "elwflo01.m2", }, { fileId = "218810", - value = "elwflo02.m2", text = "elwflo02.m2", + value = "elwflo02.m2", }, { fileId = "218811", - value = "elwflo03.m2", text = "elwflo03.m2", + value = "elwflo03.m2", }, { fileId = "218812", - value = "elwgra01.m2", text = "elwgra01.m2", + value = "elwgra01.m2", }, { fileId = "218813", - value = "elwgra02.m2", text = "elwgra02.m2", + value = "elwgra02.m2", }, { fileId = "218814", - value = "elwgra03.m2", text = "elwgra03.m2", + value = "elwgra03.m2", }, { fileId = "218815", - value = "elwgra04.m2", text = "elwgra04.m2", + value = "elwgra04.m2", }, { fileId = "218816", - value = "elwgra05.m2", text = "elwgra05.m2", + value = "elwgra05.m2", }, { fileId = "218817", - value = "elwgra06.m2", text = "elwgra06.m2", + value = "elwgra06.m2", }, { fileId = "218818", - value = "elwgra07.m2", text = "elwgra07.m2", + value = "elwgra07.m2", }, { fileId = "218819", - value = "elwgra08.m2", text = "elwgra08.m2", + value = "elwgra08.m2", }, { fileId = "218820", - value = "elwroc01.m2", text = "elwroc01.m2", + value = "elwroc01.m2", }, { fileId = "218821", - value = "elwroc02.m2", text = "elwroc02.m2", + value = "elwroc02.m2", }, { fileId = "218822", - value = "emdcre01.m2", text = "emdcre01.m2", + value = "emdcre01.m2", }, { fileId = "218823", - value = "emdcre02.m2", text = "emdcre02.m2", + value = "emdcre02.m2", }, { fileId = "218824", - value = "emdcre03.m2", text = "emdcre03.m2", + value = "emdcre03.m2", }, { fileId = "218825", - value = "emdcre04.m2", text = "emdcre04.m2", + value = "emdcre04.m2", }, { fileId = "218826", - value = "emdcre05.m2", text = "emdcre05.m2", + value = "emdcre05.m2", }, { fileId = "218827", - value = "emdcre06.m2", text = "emdcre06.m2", + value = "emdcre06.m2", }, { fileId = "218828", - value = "emdflo01.m2", text = "emdflo01.m2", + value = "emdflo01.m2", }, { fileId = "218829", - value = "emdflo02.m2", text = "emdflo02.m2", + value = "emdflo02.m2", }, { fileId = "218830", - value = "emdgra01.m2", text = "emdgra01.m2", + value = "emdgra01.m2", }, { fileId = "218831", - value = "emdgra02.m2", text = "emdgra02.m2", + value = "emdgra02.m2", }, { fileId = "218832", - value = "emdgra03.m2", text = "emdgra03.m2", + value = "emdgra03.m2", }, { fileId = "218833", - value = "emdgra04.m2", text = "emdgra04.m2", + value = "emdgra04.m2", }, { fileId = "218834", - value = "emdgra05.m2", text = "emdgra05.m2", + value = "emdgra05.m2", }, { fileId = "218835", - value = "emdgra06.m2", text = "emdgra06.m2", + value = "emdgra06.m2", }, { fileId = "218838", - value = "eplbon01.m2", text = "eplbon01.m2", + value = "eplbon01.m2", }, { fileId = "218839", - value = "eplbon02.m2", text = "eplbon02.m2", + value = "eplbon02.m2", }, { fileId = "218840", - value = "eplbon03.m2", text = "eplbon03.m2", + value = "eplbon03.m2", }, { fileId = "218841", - value = "eplbon04.m2", text = "eplbon04.m2", + value = "eplbon04.m2", }, { fileId = "218842", - value = "eplbon05.m2", text = "eplbon05.m2", + value = "eplbon05.m2", }, { fileId = "218843", - value = "eplbon06.m2", text = "eplbon06.m2", + value = "eplbon06.m2", }, { fileId = "218844", - value = "eplbus01.m2", text = "eplbus01.m2", + value = "eplbus01.m2", }, { fileId = "218845", - value = "eplbus02.m2", text = "eplbus02.m2", + value = "eplbus02.m2", }, { fileId = "218846", - value = "eplbus03.m2", text = "eplbus03.m2", + value = "eplbus03.m2", }, { fileId = "218847", - value = "eplbus04.m2", text = "eplbus04.m2", + value = "eplbus04.m2", }, { fileId = "218848", - value = "eplbus05.m2", text = "eplbus05.m2", + value = "eplbus05.m2", }, { fileId = "218849", - value = "eplbus06.m2", text = "eplbus06.m2", + value = "eplbus06.m2", }, { fileId = "218850", - value = "eplbus07.m2", text = "eplbus07.m2", + value = "eplbus07.m2", }, { fileId = "218851", - value = "eplgra01.m2", text = "eplgra01.m2", + value = "eplgra01.m2", }, { fileId = "218852", - value = "eplgra02.m2", text = "eplgra02.m2", + value = "eplgra02.m2", }, { fileId = "218853", - value = "eplgra03.m2", text = "eplgra03.m2", + value = "eplgra03.m2", }, { fileId = "218854", - value = "eplmus01.m2", text = "eplmus01.m2", + value = "eplmus01.m2", }, { fileId = "218855", - value = "eplmus02.m2", text = "eplmus02.m2", + value = "eplmus02.m2", }, { fileId = "218856", - value = "felbus01.m2", text = "felbus01.m2", + value = "felbus01.m2", }, { fileId = "218857", - value = "felbus02.m2", text = "felbus02.m2", + value = "felbus02.m2", }, { fileId = "218858", - value = "felbus03.m2", text = "felbus03.m2", + value = "felbus03.m2", }, { fileId = "218859", - value = "felbus04.m2", text = "felbus04.m2", + value = "felbus04.m2", }, { fileId = "218860", - value = "felflo01.m2", text = "felflo01.m2", + value = "felflo01.m2", }, { fileId = "218861", - value = "felflo02.m2", text = "felflo02.m2", + value = "felflo02.m2", }, { fileId = "218862", - value = "felgra01.m2", text = "felgra01.m2", + value = "felgra01.m2", }, { fileId = "218863", - value = "felgra02.m2", text = "felgra02.m2", + value = "felgra02.m2", }, { fileId = "218864", - value = "felgra03.m2", text = "felgra03.m2", + value = "felgra03.m2", }, { fileId = "218865", - value = "felgra04.m2", text = "felgra04.m2", + value = "felgra04.m2", }, { fileId = "218879", - value = "gstbus01.m2", text = "gstbus01.m2", + value = "gstbus01.m2", }, { fileId = "218880", - value = "gstbus02.m2", text = "gstbus02.m2", + value = "gstbus02.m2", }, { fileId = "218881", - value = "gstbus03.m2", text = "gstbus03.m2", + value = "gstbus03.m2", }, { fileId = "218882", - value = "gstflo01.m2", text = "gstflo01.m2", + value = "gstflo01.m2", }, { fileId = "218883", - value = "gstflo02.m2", text = "gstflo02.m2", + value = "gstflo02.m2", }, { fileId = "218884", - value = "gstflo03.m2", text = "gstflo03.m2", + value = "gstflo03.m2", }, { fileId = "218885", - value = "gstgra01.m2", text = "gstgra01.m2", + value = "gstgra01.m2", }, { fileId = "218886", - value = "gstgra02.m2", text = "gstgra02.m2", + value = "gstgra02.m2", }, { fileId = "218887", - value = "gstgra03.m2", text = "gstgra03.m2", + value = "gstgra03.m2", }, { fileId = "218899", - value = "hyjbus01.m2", text = "hyjbus01.m2", + value = "hyjbus01.m2", }, { fileId = "218900", - value = "hyjbus02.m2", text = "hyjbus02.m2", + value = "hyjbus02.m2", }, { fileId = "218901", - value = "hyjbus03.m2", text = "hyjbus03.m2", + value = "hyjbus03.m2", }, { fileId = "218902", - value = "hyjbus04.m2", text = "hyjbus04.m2", + value = "hyjbus04.m2", }, { fileId = "218903", - value = "hyjbus05.m2", text = "hyjbus05.m2", + value = "hyjbus05.m2", }, { fileId = "218904", - value = "hyjgra01.m2", text = "hyjgra01.m2", + value = "hyjgra01.m2", }, { fileId = "218905", - value = "hyjgra02.m2", text = "hyjgra02.m2", + value = "hyjgra02.m2", }, { fileId = "218906", - value = "hyjgra03.m2", text = "hyjgra03.m2", + value = "hyjgra03.m2", }, { fileId = "218917", - value = "kalbus01.m2", text = "kalbus01.m2", + value = "kalbus01.m2", }, { fileId = "218918", - value = "kalbus02.m2", text = "kalbus02.m2", + value = "kalbus02.m2", }, { fileId = "218919", - value = "kalbus03.m2", text = "kalbus03.m2", + value = "kalbus03.m2", }, { fileId = "218920", - value = "kalbus04.m2", text = "kalbus04.m2", + value = "kalbus04.m2", }, { fileId = "218921", - value = "kalflo01.m2", text = "kalflo01.m2", + value = "kalflo01.m2", }, { fileId = "218922", - value = "kalflo02.m2", text = "kalflo02.m2", + value = "kalflo02.m2", }, { fileId = "218923", - value = "kalflo03.m2", text = "kalflo03.m2", + value = "kalflo03.m2", }, { fileId = "218924", - value = "kalflo04.m2", text = "kalflo04.m2", + value = "kalflo04.m2", }, { fileId = "218925", - value = "kalgra01.m2", text = "kalgra01.m2", + value = "kalgra01.m2", }, { fileId = "218926", - value = "kalgra02.m2", text = "kalgra02.m2", + value = "kalgra02.m2", }, { fileId = "218927", - value = "kalgra03.m2", text = "kalgra03.m2", + value = "kalgra03.m2", }, { fileId = "218928", - value = "kalgra04.m2", text = "kalgra04.m2", + value = "kalgra04.m2", }, { fileId = "218929", - value = "kalgra05.m2", text = "kalgra05.m2", + value = "kalgra05.m2", }, { fileId = "218932", - value = "lakgra01.m2", text = "lakgra01.m2", + value = "lakgra01.m2", }, { fileId = "218933", - value = "lakgra02.m2", text = "lakgra02.m2", + value = "lakgra02.m2", }, { fileId = "218934", - value = "lakgra03.m2", text = "lakgra03.m2", + value = "lakgra03.m2", }, { fileId = "218935", - value = "lakgra04.m2", text = "lakgra04.m2", + value = "lakgra04.m2", }, { fileId = "218936", - value = "lakgra05.m2", text = "lakgra05.m2", + value = "lakgra05.m2", }, { fileId = "218937", - value = "lakgra06.m2", text = "lakgra06.m2", + value = "lakgra06.m2", }, { fileId = "218938", - value = "lakgra07.m2", text = "lakgra07.m2", + value = "lakgra07.m2", }, { fileId = "218939", - value = "lchbus01.m2", text = "lchbus01.m2", + value = "lchbus01.m2", }, { fileId = "218940", - value = "lchflo01.m2", text = "lchflo01.m2", + value = "lchflo01.m2", }, { fileId = "218941", - value = "lchflo02.m2", text = "lchflo02.m2", + value = "lchflo02.m2", }, { fileId = "218942", - value = "lchflo03.m2", text = "lchflo03.m2", + value = "lchflo03.m2", }, { fileId = "218943", - value = "lchflo04.m2", text = "lchflo04.m2", + value = "lchflo04.m2", }, { fileId = "218944", - value = "lchflo05.m2", text = "lchflo05.m2", + value = "lchflo05.m2", }, { fileId = "218945", - value = "lchflo06.m2", text = "lchflo06.m2", + value = "lchflo06.m2", }, { fileId = "218946", - value = "lchflo07.m2", text = "lchflo07.m2", + value = "lchflo07.m2", }, { fileId = "218947", - value = "lchflo08.m2", text = "lchflo08.m2", + value = "lchflo08.m2", }, { fileId = "218948", - value = "lchflo09.m2", text = "lchflo09.m2", + value = "lchflo09.m2", }, { fileId = "218949", - value = "lchgra01.m2", text = "lchgra01.m2", + value = "lchgra01.m2", }, { fileId = "218950", - value = "lchgra02.m2", text = "lchgra02.m2", + value = "lchgra02.m2", }, { fileId = "218951", - value = "lchgra03.m2", text = "lchgra03.m2", + value = "lchgra03.m2", }, { fileId = "218952", - value = "lchroc01.m2", text = "lchroc01.m2", + value = "lchroc01.m2", }, { fileId = "218953", - value = "lchroc02.m2", text = "lchroc02.m2", + value = "lchroc02.m2", }, { fileId = "218954", - value = "lchroc03.m2", text = "lchroc03.m2", + value = "lchroc03.m2", }, { fileId = "218955", - value = "lchroc04.m2", text = "lchroc04.m2", + value = "lchroc04.m2", }, { fileId = "218957", - value = "mulbus01.m2", text = "mulbus01.m2", + value = "mulbus01.m2", }, { fileId = "218958", - value = "mulbus02.m2", text = "mulbus02.m2", + value = "mulbus02.m2", }, { fileId = "218959", - value = "mulbus03.m2", text = "mulbus03.m2", + value = "mulbus03.m2", }, { fileId = "218960", - value = "mulbus04.m2", text = "mulbus04.m2", + value = "mulbus04.m2", }, { fileId = "218961", - value = "mulflo01.m2", text = "mulflo01.m2", + value = "mulflo01.m2", }, { fileId = "218962", - value = "mulgra01.m2", text = "mulgra01.m2", + value = "mulgra01.m2", }, { fileId = "218963", - value = "mulgra02.m2", text = "mulgra02.m2", + value = "mulgra02.m2", }, { fileId = "218964", - value = "mulgra03.m2", text = "mulgra03.m2", + value = "mulgra03.m2", }, { fileId = "218965", - value = "mulgra04.m2", text = "mulgra04.m2", + value = "mulgra04.m2", }, { fileId = "218966", - value = "mulgra05.m2", text = "mulgra05.m2", + value = "mulgra05.m2", }, { fileId = "218967", - value = "mulgra06.m2", text = "mulgra06.m2", + value = "mulgra06.m2", }, { fileId = "218969", - value = "mulroc01.m2", text = "mulroc01.m2", + value = "mulroc01.m2", }, { fileId = "218970", - value = "mulroc02.m2", text = "mulroc02.m2", + value = "mulroc02.m2", }, { fileId = "218971", - value = "naggra01.m2", text = "naggra01.m2", + value = "naggra01.m2", }, { fileId = "218972", - value = "naggra02.m2", text = "naggra02.m2", + value = "naggra02.m2", }, { fileId = "218973", - value = "naggra03.m2", text = "naggra03.m2", + value = "naggra03.m2", }, { fileId = "218974", - value = "naggra04.m2", text = "naggra04.m2", + value = "naggra04.m2", }, { fileId = "218975", - value = "naggra05.m2", text = "naggra05.m2", + value = "naggra05.m2", }, { fileId = "218976", - value = "naggra06.m2", text = "naggra06.m2", + value = "naggra06.m2", }, { fileId = "218980", - value = "nethroc01.m2", text = "nethroc01.m2", + value = "nethroc01.m2", }, { fileId = "218981", - value = "nethroc02.m2", text = "nethroc02.m2", + value = "nethroc02.m2", }, { fileId = "218984", - value = "plaguelandsfun01.m2", text = "plaguelandsfun01.m2", + value = "plaguelandsfun01.m2", }, { fileId = "218985", - value = "plaguelandsfun02.m2", text = "plaguelandsfun02.m2", + value = "plaguelandsfun02.m2", }, { fileId = "218986", - value = "plaguelandsgra01.m2", text = "plaguelandsgra01.m2", + value = "plaguelandsgra01.m2", }, { fileId = "218987", - value = "plaguelandsgra02.m2", text = "plaguelandsgra02.m2", + value = "plaguelandsgra02.m2", }, { fileId = "218988", - value = "plaguelandsmus01.m2", text = "plaguelandsmus01.m2", + value = "plaguelandsmus01.m2", }, { fileId = "218989", - value = "plaguelandsmus02.m2", text = "plaguelandsmus02.m2", + value = "plaguelandsmus02.m2", }, { fileId = "218990", - value = "plaguelandspla01.m2", text = "plaguelandspla01.m2", + value = "plaguelandspla01.m2", }, { fileId = "218991", - value = "plaguelandspla02.m2", text = "plaguelandspla02.m2", + value = "plaguelandspla02.m2", }, { fileId = "218992", - value = "plaguelandsroc01.m2", text = "plaguelandsroc01.m2", + value = "plaguelandsroc01.m2", }, { fileId = "218993", - value = "plaguelandsspo01.m2", text = "plaguelandsspo01.m2", + value = "plaguelandsspo01.m2", }, { fileId = "218994", - value = "redbus01.m2", text = "redbus01.m2", + value = "redbus01.m2", }, { fileId = "218995", - value = "redbus02.m2", text = "redbus02.m2", + value = "redbus02.m2", }, { fileId = "218996", - value = "redbus03.m2", text = "redbus03.m2", + value = "redbus03.m2", }, { fileId = "218997", - value = "redflo01.m2", text = "redflo01.m2", + value = "redflo01.m2", }, { fileId = "218998", - value = "redflo02.m2", text = "redflo02.m2", + value = "redflo02.m2", }, { fileId = "218999", - value = "redflo03.m2", text = "redflo03.m2", + value = "redflo03.m2", }, { fileId = "219000", - value = "redflo04.m2", text = "redflo04.m2", + value = "redflo04.m2", }, { fileId = "219001", - value = "redgra01.m2", text = "redgra01.m2", + value = "redgra01.m2", }, { fileId = "219002", - value = "redgra02.m2", text = "redgra02.m2", + value = "redgra02.m2", }, { fileId = "219004", - value = "redroc01.m2", text = "redroc01.m2", + value = "redroc01.m2", }, { fileId = "219005", - value = "redroc02.m2", text = "redroc02.m2", + value = "redroc02.m2", }, { fileId = "219018", - value = "sivbus01.m2", text = "sivbus01.m2", + value = "sivbus01.m2", }, { fileId = "219019", - value = "sivbus02.m2", text = "sivbus02.m2", + value = "sivbus02.m2", }, { fileId = "219020", - value = "sivcon01.m2", text = "sivcon01.m2", + value = "sivcon01.m2", }, { fileId = "219021", - value = "sivcon02.m2", text = "sivcon02.m2", + value = "sivcon02.m2", }, { fileId = "219022", - value = "sivflo01.m2", text = "sivflo01.m2", + value = "sivflo01.m2", }, { fileId = "219023", - value = "sivflo02.m2", text = "sivflo02.m2", + value = "sivflo02.m2", }, { fileId = "219024", - value = "sivflo03.m2", text = "sivflo03.m2", + value = "sivflo03.m2", }, { fileId = "219025", - value = "sivgra01.m2", text = "sivgra01.m2", + value = "sivgra01.m2", }, { fileId = "219026", - value = "sivroc01.m2", text = "sivroc01.m2", + value = "sivroc01.m2", }, { fileId = "219027", - value = "sivroc02.m2", text = "sivroc02.m2", + value = "sivroc02.m2", }, { fileId = "219028", - value = "sivsap01.m2", text = "sivsap01.m2", + value = "sivsap01.m2", }, { fileId = "219029", - value = "sivtho01.m2", text = "sivtho01.m2", + value = "sivtho01.m2", }, { fileId = "219030", - value = "sivtho02.m2", text = "sivtho02.m2", + value = "sivtho02.m2", }, { fileId = "219031", - value = "sivtho03.m2", text = "sivtho03.m2", + value = "sivtho03.m2", }, { fileId = "219032", - value = "sivtho04.m2", text = "sivtho04.m2", + value = "sivtho04.m2", }, { fileId = "219033", - value = "sivtho05.m2", text = "sivtho05.m2", + value = "sivtho05.m2", }, { fileId = "219034", - value = "sivvin01.m2", text = "sivvin01.m2", + value = "sivvin01.m2", }, { fileId = "219035", - value = "smnflo01.m2", text = "smnflo01.m2", + value = "smnflo01.m2", }, { fileId = "219036", - value = "smnflo02.m2", text = "smnflo02.m2", + value = "smnflo02.m2", }, { fileId = "219037", - value = "smnflo03.m2", text = "smnflo03.m2", + value = "smnflo03.m2", }, { fileId = "219038", - value = "smngra01.m2", text = "smngra01.m2", + value = "smngra01.m2", }, { fileId = "219039", - value = "smngra02.m2", text = "smngra02.m2", + value = "smngra02.m2", }, { fileId = "219040", - value = "smybus01.m2", text = "smybus01.m2", + value = "smybus01.m2", }, { fileId = "219041", - value = "smybus02.m2", text = "smybus02.m2", + value = "smybus02.m2", }, { fileId = "219042", - value = "smybus03.m2", text = "smybus03.m2", + value = "smybus03.m2", }, { fileId = "219043", - value = "smybus04.m2", text = "smybus04.m2", + value = "smybus04.m2", }, { fileId = "219044", - value = "smybus05.m2", text = "smybus05.m2", + value = "smybus05.m2", }, { fileId = "219045", - value = "smyflo01.m2", text = "smyflo01.m2", + value = "smyflo01.m2", }, { fileId = "219046", - value = "smyflo02.m2", text = "smyflo02.m2", + value = "smyflo02.m2", }, { fileId = "219047", - value = "smygra01.m2", text = "smygra01.m2", + value = "smygra01.m2", }, { fileId = "219048", - value = "smygra02.m2", text = "smygra02.m2", + value = "smygra02.m2", }, { fileId = "219049", - value = "smygra03.m2", text = "smygra03.m2", + value = "smygra03.m2", }, { fileId = "219050", - value = "smygra04.m2", text = "smygra04.m2", + value = "smygra04.m2", }, { fileId = "219051", - value = "sosbus01.m2", text = "sosbus01.m2", + value = "sosbus01.m2", }, { fileId = "219052", - value = "sosbus02.m2", text = "sosbus02.m2", + value = "sosbus02.m2", }, { fileId = "219053", - value = "sosbus03.m2", text = "sosbus03.m2", + value = "sosbus03.m2", }, { fileId = "219054", - value = "sosbus04.m2", text = "sosbus04.m2", + value = "sosbus04.m2", }, { fileId = "219055", - value = "sosbus05.m2", text = "sosbus05.m2", + value = "sosbus05.m2", }, { fileId = "219056", - value = "sosflo01.m2", text = "sosflo01.m2", + value = "sosflo01.m2", }, { fileId = "219057", - value = "sosflo02.m2", text = "sosflo02.m2", + value = "sosflo02.m2", }, { fileId = "219058", - value = "sosflo03.m2", text = "sosflo03.m2", + value = "sosflo03.m2", }, { fileId = "219059", - value = "sosgra01.m2", text = "sosgra01.m2", + value = "sosgra01.m2", }, { fileId = "219060", - value = "sosgra02.m2", text = "sosgra02.m2", + value = "sosgra02.m2", }, { fileId = "219061", - value = "sosgra03.m2", text = "sosgra03.m2", + value = "sosgra03.m2", }, { fileId = "219062", - value = "sosgra04.m2", text = "sosgra04.m2", + value = "sosgra04.m2", }, { fileId = "219063", - value = "sosgra05.m2", text = "sosgra05.m2", + value = "sosgra05.m2", }, { fileId = "219064", - value = "sosgra06.m2", text = "sosgra06.m2", + value = "sosgra06.m2", }, { fileId = "219065", - value = "sosgra07.m2", text = "sosgra07.m2", + value = "sosgra07.m2", }, { fileId = "219066", - value = "stlbus01.m2", text = "stlbus01.m2", + value = "stlbus01.m2", }, { fileId = "219067", - value = "stlbus02.m2", text = "stlbus02.m2", + value = "stlbus02.m2", }, { fileId = "219068", - value = "stlbus03.m2", text = "stlbus03.m2", + value = "stlbus03.m2", }, { fileId = "219069", - value = "stlflo01.m2", text = "stlflo01.m2", + value = "stlflo01.m2", }, { fileId = "219070", - value = "stlflo02.m2", text = "stlflo02.m2", + value = "stlflo02.m2", }, { fileId = "219071", - value = "stlflo03.m2", text = "stlflo03.m2", + value = "stlflo03.m2", }, { fileId = "219072", - value = "stlflo04.m2", text = "stlflo04.m2", + value = "stlflo04.m2", }, { fileId = "219073", - value = "stlflo05.m2", text = "stlflo05.m2", + value = "stlflo05.m2", }, { fileId = "219074", - value = "stlgra01.m2", text = "stlgra01.m2", + value = "stlgra01.m2", }, { fileId = "219075", - value = "stlgra02.m2", text = "stlgra02.m2", + value = "stlgra02.m2", }, { fileId = "219076", - value = "stlgra03.m2", text = "stlgra03.m2", + value = "stlgra03.m2", }, { fileId = "219077", - value = "stlroc01.m2", text = "stlroc01.m2", + value = "stlroc01.m2", }, { fileId = "219078", - value = "stlroc02.m2", text = "stlroc02.m2", + value = "stlroc02.m2", }, { fileId = "219079", - value = "stmbra01.m2", text = "stmbra01.m2", + value = "stmbra01.m2", }, { fileId = "219080", - value = "stmbra02.m2", text = "stmbra02.m2", + value = "stmbra02.m2", }, { fileId = "219081", - value = "stmbra03.m2", text = "stmbra03.m2", + value = "stmbra03.m2", }, { fileId = "219082", - value = "stmbra04.m2", text = "stmbra04.m2", + value = "stmbra04.m2", }, { fileId = "219083", - value = "stmgra01.m2", text = "stmgra01.m2", + value = "stmgra01.m2", }, { fileId = "219084", - value = "stmgra02.m2", text = "stmgra02.m2", + value = "stmgra02.m2", }, { fileId = "219085", - value = "stmgra03.m2", text = "stmgra03.m2", + value = "stmgra03.m2", }, { fileId = "219086", - value = "stmgra04.m2", text = "stmgra04.m2", + value = "stmgra04.m2", }, { fileId = "219087", - value = "stmgra05.m2", text = "stmgra05.m2", + value = "stmgra05.m2", }, { fileId = "219093", - value = "tifbus01.m2", text = "tifbus01.m2", + value = "tifbus01.m2", }, { fileId = "219094", - value = "tifbus02.m2", text = "tifbus02.m2", + value = "tifbus02.m2", }, { fileId = "219095", - value = "tifcon01.m2", text = "tifcon01.m2", + value = "tifcon01.m2", }, { fileId = "219096", - value = "tifcon02.m2", text = "tifcon02.m2", + value = "tifcon02.m2", }, { fileId = "219097", - value = "tifgra01.m2", text = "tifgra01.m2", + value = "tifgra01.m2", }, { fileId = "219098", - value = "tifpla01.m2", text = "tifpla01.m2", + value = "tifpla01.m2", }, { fileId = "219099", - value = "tifroc01.m2", text = "tifroc01.m2", + value = "tifroc01.m2", }, { fileId = "219100", - value = "tifroc02.m2", text = "tifroc02.m2", + value = "tifroc02.m2", }, { fileId = "219101", - value = "tifsap01.m2", text = "tifsap01.m2", + value = "tifsap01.m2", }, { fileId = "219102", - value = "tifshl01.m2", text = "tifshl01.m2", + value = "tifshl01.m2", }, { fileId = "219103", - value = "tifshl02.m2", text = "tifshl02.m2", + value = "tifshl02.m2", }, { fileId = "219104", - value = "tifshl03.m2", text = "tifshl03.m2", + value = "tifshl03.m2", }, { fileId = "219105", - value = "tiftho01.m2", text = "tiftho01.m2", + value = "tiftho01.m2", }, { fileId = "219106", - value = "tiftho02.m2", text = "tiftho02.m2", + value = "tiftho02.m2", }, { fileId = "219107", - value = "tiftho03.m2", text = "tiftho03.m2", + value = "tiftho03.m2", }, { fileId = "219108", - value = "tiftho04.m2", text = "tiftho04.m2", + value = "tiftho04.m2", }, { fileId = "219110", - value = "tkrbra01.m2", text = "tkrbra01.m2", + value = "tkrbra01.m2", }, { fileId = "219111", - value = "tkrbra02.m2", text = "tkrbra02.m2", + value = "tkrbra02.m2", }, { fileId = "219112", - value = "tkrbra03.m2", text = "tkrbra03.m2", + value = "tkrbra03.m2", }, { fileId = "219113", - value = "tkrgra01.m2", text = "tkrgra01.m2", + value = "tkrgra01.m2", }, { fileId = "219114", - value = "tkrgra02.m2", text = "tkrgra02.m2", + value = "tkrgra02.m2", }, { fileId = "219115", - value = "tkrgra03.m2", text = "tkrgra03.m2", + value = "tkrgra03.m2", }, { fileId = "219116", - value = "tkrroc01.m2", text = "tkrroc01.m2", + value = "tkrroc01.m2", }, { fileId = "219117", - value = "tkrroc02.m2", text = "tkrroc02.m2", + value = "tkrroc02.m2", }, { fileId = "219118", - value = "tkrroc03.m2", text = "tkrroc03.m2", + value = "tkrroc03.m2", }, { fileId = "219119", - value = "tkrwea01.m2", text = "tkrwea01.m2", + value = "tkrwea01.m2", }, { fileId = "219120", - value = "tkrwea02.m2", text = "tkrwea02.m2", + value = "tkrwea02.m2", }, { fileId = "219121", - value = "tkrwea03.m2", text = "tkrwea03.m2", + value = "tkrwea03.m2", }, { fileId = "219122", - value = "tkrwea04.m2", text = "tkrwea04.m2", + value = "tkrwea04.m2", }, { fileId = "219124", - value = "ungbun01.m2", text = "ungbun01.m2", + value = "ungbun01.m2", }, { fileId = "219125", - value = "ungbun02.m2", text = "ungbun02.m2", + value = "ungbun02.m2", }, { fileId = "219126", - value = "ungbun03.m2", text = "ungbun03.m2", + value = "ungbun03.m2", }, { fileId = "219127", - value = "ungflo01.m2", text = "ungflo01.m2", + value = "ungflo01.m2", }, { fileId = "219128", - value = "ungflo02.m2", text = "ungflo02.m2", + value = "ungflo02.m2", }, { fileId = "219129", - value = "unggra01.m2", text = "unggra01.m2", + value = "unggra01.m2", }, { fileId = "219130", - value = "unggra02.m2", text = "unggra02.m2", + value = "unggra02.m2", }, { fileId = "219131", - value = "unggra03.m2", text = "unggra03.m2", + value = "unggra03.m2", }, { fileId = "219132", - value = "unggra04.m2", text = "unggra04.m2", + value = "unggra04.m2", }, { fileId = "219133", - value = "unggra05.m2", text = "unggra05.m2", + value = "unggra05.m2", }, { fileId = "219134", - value = "unggra06.m2", text = "unggra06.m2", + value = "unggra06.m2", }, { fileId = "219135", - value = "unggra07.m2", text = "unggra07.m2", + value = "unggra07.m2", }, { fileId = "219136", - value = "unggra08.m2", text = "unggra08.m2", + value = "unggra08.m2", }, { fileId = "219138", - value = "unwcor01.m2", text = "unwcor01.m2", + value = "unwcor01.m2", }, { fileId = "219139", - value = "unwcor02.m2", text = "unwcor02.m2", + value = "unwcor02.m2", }, { fileId = "219140", - value = "unwcor03.m2", text = "unwcor03.m2", + value = "unwcor03.m2", }, { fileId = "219141", - value = "unwcor04.m2", text = "unwcor04.m2", + value = "unwcor04.m2", }, { fileId = "219142", - value = "unwcor05.m2", text = "unwcor05.m2", + value = "unwcor05.m2", }, { fileId = "219143", - value = "unwcor06.m2", text = "unwcor06.m2", + value = "unwcor06.m2", }, { fileId = "219144", - value = "unwcor07.m2", text = "unwcor07.m2", + value = "unwcor07.m2", }, { fileId = "219145", - value = "unwcor08.m2", text = "unwcor08.m2", + value = "unwcor08.m2", }, { fileId = "219146", - value = "unwcor09.m2", text = "unwcor09.m2", + value = "unwcor09.m2", }, { fileId = "219147", - value = "unwgra01.m2", text = "unwgra01.m2", + value = "unwgra01.m2", }, { fileId = "219148", - value = "unwgra02.m2", text = "unwgra02.m2", + value = "unwgra02.m2", }, { fileId = "219149", - value = "unwgra03.m2", text = "unwgra03.m2", + value = "unwgra03.m2", }, { fileId = "219150", - value = "unwshl01.m2", text = "unwshl01.m2", + value = "unwshl01.m2", }, { fileId = "219151", - value = "unwshl02.m2", text = "unwshl02.m2", + value = "unwshl02.m2", }, { fileId = "219152", - value = "wesbus01.m2", text = "wesbus01.m2", + value = "wesbus01.m2", }, { fileId = "219153", - value = "wesbus02.m2", text = "wesbus02.m2", + value = "wesbus02.m2", }, { fileId = "219154", - value = "wesbus03.m2", text = "wesbus03.m2", + value = "wesbus03.m2", }, { fileId = "219155", - value = "wesflo01.m2", text = "wesflo01.m2", + value = "wesflo01.m2", }, { fileId = "219156", - value = "wesgra01.m2", text = "wesgra01.m2", + value = "wesgra01.m2", }, { fileId = "219157", - value = "wesgra02.m2", text = "wesgra02.m2", + value = "wesgra02.m2", }, { fileId = "219158", - value = "wesgra03.m2", text = "wesgra03.m2", + value = "wesgra03.m2", }, { fileId = "219159", - value = "wesgra04.m2", text = "wesgra04.m2", + value = "wesgra04.m2", }, { fileId = "219160", - value = "wesroc01.m2", text = "wesroc01.m2", + value = "wesroc01.m2", }, { fileId = "219161", - value = "wesroc02.m2", text = "wesroc02.m2", + value = "wesroc02.m2", }, { fileId = "219162", - value = "wesshe01.m2", text = "wesshe01.m2", + value = "wesshe01.m2", }, { fileId = "219163", - value = "wesshe02.m2", text = "wesshe02.m2", + value = "wesshe02.m2", }, { fileId = "219164", - value = "wesshe03.m2", text = "wesshe03.m2", + value = "wesshe03.m2", }, { fileId = "219166", - value = "weswea01.m2", text = "weswea01.m2", + value = "weswea01.m2", }, { fileId = "219167", - value = "weswea02.m2", text = "weswea02.m2", + value = "weswea02.m2", }, { fileId = "219168", - value = "weswea03.m2", text = "weswea03.m2", + value = "weswea03.m2", }, { fileId = "219169", - value = "weswea04.m2", text = "weswea04.m2", + value = "weswea04.m2", }, { fileId = "219170", - value = "wetbus01.m2", text = "wetbus01.m2", + value = "wetbus01.m2", }, { fileId = "219171", - value = "wetbus02.m2", text = "wetbus02.m2", + value = "wetbus02.m2", }, { fileId = "219172", - value = "wetbus03.m2", text = "wetbus03.m2", + value = "wetbus03.m2", }, { fileId = "219173", - value = "wetflo01.m2", text = "wetflo01.m2", + value = "wetflo01.m2", }, { fileId = "219174", - value = "wetflo02.m2", text = "wetflo02.m2", + value = "wetflo02.m2", }, { fileId = "219175", - value = "wetflo03.m2", text = "wetflo03.m2", + value = "wetflo03.m2", }, { fileId = "219176", - value = "wetflo04.m2", text = "wetflo04.m2", + value = "wetflo04.m2", }, { fileId = "219177", - value = "wetflo05.m2", text = "wetflo05.m2", + value = "wetflo05.m2", }, { fileId = "219178", - value = "wetgra01.m2", text = "wetgra01.m2", + value = "wetgra01.m2", }, { fileId = "219179", - value = "wetgra02.m2", text = "wetgra02.m2", + value = "wetgra02.m2", }, { fileId = "219180", - value = "wetgra03.m2", text = "wetgra03.m2", + value = "wetgra03.m2", }, { fileId = "219196", - value = "zmgra01.m2", text = "zmgra01.m2", + value = "zmgra01.m2", }, { fileId = "219197", - value = "zmgra02.m2", text = "zmgra02.m2", + value = "zmgra02.m2", }, { fileId = "219198", - value = "zmgra03.m2", text = "zmgra03.m2", + value = "zmgra03.m2", }, { fileId = "219199", - value = "zmgra04.m2", text = "zmgra04.m2", + value = "zmgra04.m2", }, { fileId = "219200", - value = "zmgra06.m2", text = "zmgra06.m2", + value = "zmgra06.m2", }, { fileId = "219201", - value = "zmgra07.m2", text = "zmgra07.m2", + value = "zmgra07.m2", }, { fileId = "219202", - value = "zmmush01.m2", text = "zmmush01.m2", + value = "zmmush01.m2", }, { fileId = "219203", - value = "zmspo05.m2", text = "zmspo05.m2", + value = "zmspo05.m2", }, }, - value = "detail", text = "detail", + value = "detail", }, { children = { @@ -89146,79 +77452,79 @@ WeakAuras.ModelPaths = { children = { { fileId = "219204", - value = "ahnqiraj_lightshaft.m2", text = "ahnqiraj_lightshaft.m2", + value = "ahnqiraj_lightshaft.m2", }, { fileId = "219205", - value = "cot_lightshafta.m2", text = "cot_lightshafta.m2", + value = "cot_lightshafta.m2", }, { fileId = "219207", - value = "darnassislightshaft.m2", text = "darnassislightshaft.m2", + value = "darnassislightshaft.m2", }, { fileId = "219209", - value = "karazahndiningrays.m2", text = "karazahndiningrays.m2", + value = "karazahndiningrays.m2", }, { fileId = "219210", - value = "ld_lightshaft01.m2", text = "ld_lightshaft01.m2", + value = "ld_lightshaft01.m2", }, { fileId = "219211", - value = "ld_lightshaft02.m2", text = "ld_lightshaft02.m2", + value = "ld_lightshaft02.m2", }, { fileId = "219220", - value = "lightshafta.m2", text = "lightshafta.m2", + value = "lightshafta.m2", }, { fileId = "219221", - value = "lightshaftb.m2", text = "lightshaftb.m2", + value = "lightshaftb.m2", }, { fileId = "219222", - value = "lightshaftc.m2", text = "lightshaftc.m2", + value = "lightshaftc.m2", }, { fileId = "219224", - value = "lightshaftthorns.m2", text = "lightshaftthorns.m2", + value = "lightshaftthorns.m2", }, { fileId = "219225", - value = "st_lightshaft.m2", text = "st_lightshaft.m2", + value = "st_lightshaft.m2", }, { fileId = "219226", - value = "uthershrinelightbeam.m2", text = "uthershrinelightbeam.m2", + value = "uthershrinelightbeam.m2", }, }, - value = "volumetriclights", text = "volumetriclights", + value = "volumetriclights", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "generic", text = "generic", + value = "generic", }, }, - value = "nodxt", text = "nodxt", + value = "nodxt", }, { children = { @@ -89228,541 +77534,541 @@ WeakAuras.ModelPaths = { children = { { fileId = "219227", - value = "bladethrowerruined01.m2", text = "bladethrowerruined01.m2", + value = "bladethrowerruined01.m2", }, { fileId = "219229", - value = "orcblade.m2", text = "orcblade.m2", + value = "orcblade.m2", }, { fileId = "219230", - value = "orcbladethrower.m2", text = "orcbladethrower.m2", + value = "orcbladethrower.m2", }, }, - value = "bladethrower", text = "bladethrower", + value = "bladethrower", }, { fileId = "219236", - value = "caltrop01.m2", text = "caltrop01.m2", + value = "caltrop01.m2", }, { children = { { fileId = "219237", - value = "outlanddeadcampfire.m2", text = "outlanddeadcampfire.m2", + value = "outlanddeadcampfire.m2", }, }, - value = "campfire", text = "campfire", + value = "campfire", }, { children = { { fileId = "219239", - value = "outland_bone_dam.m2", text = "outland_bone_dam.m2", + value = "outland_bone_dam.m2", }, }, - value = "dam", text = "dam", + value = "dam", }, { children = { { fileId = "219241", - value = "outland_dead_demon.m2", text = "outland_dead_demon.m2", + value = "outland_dead_demon.m2", }, }, - value = "deaddemon", text = "deaddemon", + value = "deaddemon", }, { children = { { fileId = "219245", - value = "outlandtowerfloatingrubble.m2", text = "outlandtowerfloatingrubble.m2", + value = "outlandtowerfloatingrubble.m2", }, }, - value = "floatingrubble", text = "floatingrubble", + value = "floatingrubble", }, { children = { { fileId = "219248", - value = "outlandhangingcrystal01.m2", text = "outlandhangingcrystal01.m2", + value = "outlandhangingcrystal01.m2", }, }, - value = "hangingcrystals", text = "hangingcrystals", + value = "hangingcrystals", }, { children = { { fileId = "219250", - value = "outlandmonolith.m2", text = "outlandmonolith.m2", + value = "outlandmonolith.m2", }, }, - value = "monument", text = "monument", + value = "monument", }, { children = { { fileId = "219254", - value = "outland_big_shroom01.m2", text = "outland_big_shroom01.m2", + value = "outland_big_shroom01.m2", }, { fileId = "219255", - value = "outland_big_shroom02.m2", text = "outland_big_shroom02.m2", + value = "outland_big_shroom02.m2", }, { fileId = "219256", - value = "outland_floating_shroom01.m2", text = "outland_floating_shroom01.m2", + value = "outland_floating_shroom01.m2", }, { fileId = "219257", - value = "outland_floating_shroom02.m2", text = "outland_floating_shroom02.m2", + value = "outland_floating_shroom02.m2", }, }, - value = "mushrooms", text = "mushrooms", + value = "mushrooms", }, { children = { { fileId = "219264", - value = "outlandplant01.m2", text = "outlandplant01.m2", + value = "outlandplant01.m2", }, { fileId = "219265", - value = "outlandplant02.m2", text = "outlandplant02.m2", + value = "outlandplant02.m2", }, { fileId = "219266", - value = "outlandplant03.m2", text = "outlandplant03.m2", + value = "outlandplant03.m2", }, { fileId = "219267", - value = "outlandplant04.m2", text = "outlandplant04.m2", + value = "outlandplant04.m2", }, { fileId = "219268", - value = "outlandplant05.m2", text = "outlandplant05.m2", + value = "outlandplant05.m2", }, { fileId = "219269", - value = "outlandplant06.m2", text = "outlandplant06.m2", + value = "outlandplant06.m2", }, }, - value = "plants", text = "plants", + value = "plants", }, { children = { { fileId = "219276", - value = "floatingrocklarge01.m2", text = "floatingrocklarge01.m2", + value = "floatingrocklarge01.m2", }, { fileId = "219277", - value = "floatingrocklarge02.m2", text = "floatingrocklarge02.m2", + value = "floatingrocklarge02.m2", }, { fileId = "219278", - value = "floatingrocklarge03.m2", text = "floatingrocklarge03.m2", + value = "floatingrocklarge03.m2", }, { fileId = "219279", - value = "floatingrockmedium01.m2", text = "floatingrockmedium01.m2", + value = "floatingrockmedium01.m2", }, { fileId = "219280", - value = "floatingrockmedium02.m2", text = "floatingrockmedium02.m2", + value = "floatingrockmedium02.m2", }, { fileId = "219281", - value = "floatingrockmedium03.m2", text = "floatingrockmedium03.m2", + value = "floatingrockmedium03.m2", }, { fileId = "219282", - value = "floatingrocksmall01.m2", text = "floatingrocksmall01.m2", + value = "floatingrocksmall01.m2", }, { fileId = "219283", - value = "floatingrocksmall02.m2", text = "floatingrocksmall02.m2", + value = "floatingrocksmall02.m2", }, { fileId = "219284", - value = "floatingrocksmall03.m2", text = "floatingrocksmall03.m2", + value = "floatingrocksmall03.m2", }, { fileId = "219286", - value = "outlandalienrock01.m2", text = "outlandalienrock01.m2", + value = "outlandalienrock01.m2", }, { fileId = "219287", - value = "outlandalienrock02.m2", text = "outlandalienrock02.m2", + value = "outlandalienrock02.m2", }, { fileId = "219288", - value = "outlandalienrock03.m2", text = "outlandalienrock03.m2", + value = "outlandalienrock03.m2", }, { fileId = "219289", - value = "outlandalienrock04.m2", text = "outlandalienrock04.m2", + value = "outlandalienrock04.m2", }, { fileId = "219290", - value = "outlandalienrock05.m2", text = "outlandalienrock05.m2", + value = "outlandalienrock05.m2", }, { fileId = "219291", - value = "outlandspookyrock01.m2", text = "outlandspookyrock01.m2", + value = "outlandspookyrock01.m2", }, { fileId = "219292", - value = "outlandspookyrock02.m2", text = "outlandspookyrock02.m2", + value = "outlandspookyrock02.m2", }, { fileId = "219293", - value = "outlandspookyrock03.m2", text = "outlandspookyrock03.m2", + value = "outlandspookyrock03.m2", }, { fileId = "219294", - value = "outlandspookyrock04.m2", text = "outlandspookyrock04.m2", + value = "outlandspookyrock04.m2", }, }, - value = "rocks", text = "rocks", + value = "rocks", }, { children = { { fileId = "219299", - value = "outlandroot01.m2", text = "outlandroot01.m2", + value = "outlandroot01.m2", }, { fileId = "219300", - value = "outlandroot02.m2", text = "outlandroot02.m2", + value = "outlandroot02.m2", }, { fileId = "219301", - value = "outlandroot03.m2", text = "outlandroot03.m2", + value = "outlandroot03.m2", }, }, - value = "roots", text = "roots", + value = "roots", }, { children = { { fileId = "219303", - value = "outlandrubble01.m2", text = "outlandrubble01.m2", + value = "outlandrubble01.m2", }, { fileId = "219304", - value = "outlandrubble02.m2", text = "outlandrubble02.m2", + value = "outlandrubble02.m2", }, { fileId = "219305", - value = "outlandrubble03.m2", text = "outlandrubble03.m2", + value = "outlandrubble03.m2", }, { fileId = "219306", - value = "outlandrubble04.m2", text = "outlandrubble04.m2", + value = "outlandrubble04.m2", }, { fileId = "219307", - value = "outlandrubble05.m2", text = "outlandrubble05.m2", + value = "outlandrubble05.m2", }, }, - value = "rubble", text = "rubble", + value = "rubble", }, { children = { { fileId = "219309", - value = "outlandskybox.m2", text = "outlandskybox.m2", + value = "outlandskybox.m2", }, }, - value = "skybox", text = "skybox", + value = "skybox", }, { children = { { fileId = "219313", - value = "humantankcannon.m2", text = "humantankcannon.m2", + value = "humantankcannon.m2", }, { fileId = "219314", - value = "humantanktower.m2", text = "humantanktower.m2", + value = "humantanktower.m2", }, { fileId = "219315", - value = "humantankwheel.m2", text = "humantankwheel.m2", + value = "humantankwheel.m2", }, }, - value = "tankparts", text = "tankparts", + value = "tankparts", }, { children = { { fileId = "219318", - value = "outlandthorn01.m2", text = "outlandthorn01.m2", + value = "outlandthorn01.m2", }, { fileId = "219319", - value = "outlandthorn02.m2", text = "outlandthorn02.m2", + value = "outlandthorn02.m2", }, { fileId = "219320", - value = "outlandthorn03.m2", text = "outlandthorn03.m2", + value = "outlandthorn03.m2", }, { fileId = "219321", - value = "outlandthorn04.m2", text = "outlandthorn04.m2", + value = "outlandthorn04.m2", }, { fileId = "219322", - value = "outlandthorn05.m2", text = "outlandthorn05.m2", + value = "outlandthorn05.m2", }, { fileId = "219323", - value = "outlandthorn06.m2", text = "outlandthorn06.m2", + value = "outlandthorn06.m2", }, { fileId = "219324", - value = "outlandthorn07.m2", text = "outlandthorn07.m2", + value = "outlandthorn07.m2", }, }, - value = "thorns", text = "thorns", + value = "thorns", }, { children = { { fileId = "219330", - value = "outlandaloetree01.m2", text = "outlandaloetree01.m2", + value = "outlandaloetree01.m2", }, { fileId = "219331", - value = "outlandaloetree02.m2", text = "outlandaloetree02.m2", + value = "outlandaloetree02.m2", }, { fileId = "219332", - value = "outlandaloetree03.m2", text = "outlandaloetree03.m2", + value = "outlandaloetree03.m2", }, { fileId = "219333", - value = "outlandburnttree01.m2", text = "outlandburnttree01.m2", + value = "outlandburnttree01.m2", }, { fileId = "219334", - value = "outlandburnttree02.m2", text = "outlandburnttree02.m2", + value = "outlandburnttree02.m2", }, { fileId = "219335", - value = "outlandburnttree03.m2", text = "outlandburnttree03.m2", + value = "outlandburnttree03.m2", }, { fileId = "219336", - value = "outlandburnttree04.m2", text = "outlandburnttree04.m2", + value = "outlandburnttree04.m2", }, { fileId = "219337", - value = "outlandfloatingtree01.m2", text = "outlandfloatingtree01.m2", + value = "outlandfloatingtree01.m2", }, { fileId = "219338", - value = "outlandfloatingtree02.m2", text = "outlandfloatingtree02.m2", + value = "outlandfloatingtree02.m2", }, { fileId = "219339", - value = "outlandfloatingtree03.m2", text = "outlandfloatingtree03.m2", + value = "outlandfloatingtree03.m2", }, { fileId = "219341", - value = "outlandtreestump01.m2", text = "outlandtreestump01.m2", + value = "outlandtreestump01.m2", }, { fileId = "219342", - value = "outlandtreestump02.m2", text = "outlandtreestump02.m2", + value = "outlandtreestump02.m2", }, { fileId = "219343", - value = "outlandtreestump03.m2", text = "outlandtreestump03.m2", + value = "outlandtreestump03.m2", }, { fileId = "219344", - value = "outlandumbrellatree01.m2", text = "outlandumbrellatree01.m2", + value = "outlandumbrellatree01.m2", }, { fileId = "219345", - value = "outlandumbrellatree02.m2", text = "outlandumbrellatree02.m2", + value = "outlandumbrellatree02.m2", }, { fileId = "219346", - value = "outlandumbrellatree03.m2", text = "outlandumbrellatree03.m2", + value = "outlandumbrellatree03.m2", }, { fileId = "219347", - value = "outlandumbrellatree04.m2", text = "outlandumbrellatree04.m2", + value = "outlandumbrellatree04.m2", }, { fileId = "219348", - value = "outlandumbrellatree05.m2", text = "outlandumbrellatree05.m2", + value = "outlandumbrellatree05.m2", }, { fileId = "219349", - value = "outlandumbrellatree06.m2", text = "outlandumbrellatree06.m2", + value = "outlandumbrellatree06.m2", }, { fileId = "219350", - value = "outlandumbrellatree07.m2", text = "outlandumbrellatree07.m2", + value = "outlandumbrellatree07.m2", }, { fileId = "219351", - value = "outlandumbrellatree08.m2", text = "outlandumbrellatree08.m2", + value = "outlandumbrellatree08.m2", }, { fileId = "219352", - value = "outlandumbrellatree09.m2", text = "outlandumbrellatree09.m2", + value = "outlandumbrellatree09.m2", }, { fileId = "219353", - value = "outlandumbrellatree10.m2", text = "outlandumbrellatree10.m2", + value = "outlandumbrellatree10.m2", }, }, - value = "trees", text = "trees", + value = "trees", }, }, - value = "passivedoodads", text = "passivedoodads", + value = "passivedoodads", }, }, - value = "outland", text = "outland", + value = "outland", }, { children = { { fileId = "219356", - value = "1000x1000.m2", text = "1000x1000.m2", + value = "1000x1000.m2", }, { fileId = "219357", - value = "100x100.m2", text = "100x100.m2", + value = "100x100.m2", }, { fileId = "219361", - value = "250x250.m2", text = "250x250.m2", + value = "250x250.m2", }, { fileId = "219362", - value = "500x500.m2", text = "500x500.m2", + value = "500x500.m2", }, { fileId = "219363", - value = "50x50.m2", text = "50x50.m2", + value = "50x50.m2", }, { fileId = "219368", - value = "humanmalescale.m2", text = "humanmalescale.m2", + value = "humanmalescale.m2", }, }, - value = "scale", text = "scale", + value = "scale", }, { children = { @@ -89770,448 +78076,448 @@ WeakAuras.ModelPaths = { children = { { fileId = "219372", - value = "treasurechest01.m2", text = "treasurechest01.m2", + value = "treasurechest01.m2", }, }, - value = "containers", text = "containers", + value = "containers", }, { children = { { fileId = "219378", - value = "blacksmithforge.m2", text = "blacksmithforge.m2", + value = "blacksmithforge.m2", }, { fileId = "219382", - value = "engineering_autolathe_01.m2", text = "engineering_autolathe_01.m2", + value = "engineering_autolathe_01.m2", }, { fileId = "219394", - value = "tradeskill_alchemycauldron_blue.m2", text = "tradeskill_alchemycauldron_blue.m2", + value = "tradeskill_alchemycauldron_blue.m2", }, { fileId = "219395", - value = "tradeskill_alchemycauldron_green.m2", text = "tradeskill_alchemycauldron_green.m2", + value = "tradeskill_alchemycauldron_green.m2", }, { fileId = "219396", - value = "tradeskill_alchemycauldron_purple.m2", text = "tradeskill_alchemycauldron_purple.m2", + value = "tradeskill_alchemycauldron_purple.m2", }, { fileId = "219397", - value = "tradeskill_alchemycauldron_red.m2", text = "tradeskill_alchemycauldron_red.m2", + value = "tradeskill_alchemycauldron_red.m2", }, { fileId = "219398", - value = "tradeskill_alchemycauldron_white.m2", text = "tradeskill_alchemycauldron_white.m2", + value = "tradeskill_alchemycauldron_white.m2", }, { fileId = "219399", - value = "tradeskill_alchemyset_01.m2", text = "tradeskill_alchemyset_01.m2", + value = "tradeskill_alchemyset_01.m2", }, { fileId = "219400", - value = "tradeskill_alchemyset_02.m2", text = "tradeskill_alchemyset_02.m2", + value = "tradeskill_alchemyset_02.m2", }, { fileId = "219401", - value = "tradeskill_alchemyset_03.m2", text = "tradeskill_alchemyset_03.m2", + value = "tradeskill_alchemyset_03.m2", }, { fileId = "219402", - value = "tradeskill_anvil_01.m2", text = "tradeskill_anvil_01.m2", + value = "tradeskill_anvil_01.m2", }, { fileId = "219403", - value = "tradeskill_anvil_02.m2", text = "tradeskill_anvil_02.m2", + value = "tradeskill_anvil_02.m2", }, { fileId = "219404", - value = "tradeskill_fishschool_01.m2", text = "tradeskill_fishschool_01.m2", + value = "tradeskill_fishschool_01.m2", }, { fileId = "219405", - value = "tradeskill_fishschool_02.m2", text = "tradeskill_fishschool_02.m2", + value = "tradeskill_fishschool_02.m2", }, { fileId = "219406", - value = "tradeskill_fishschool_03.m2", text = "tradeskill_fishschool_03.m2", + value = "tradeskill_fishschool_03.m2", }, { fileId = "219407", - value = "tradeskill_fishschool_eelsyellow.m2", text = "tradeskill_fishschool_eelsyellow.m2", + value = "tradeskill_fishschool_eelsyellow.m2", }, { fileId = "219408", - value = "tradeskill_fishschool_elementalfire.m2", text = "tradeskill_fishschool_elementalfire.m2", + value = "tradeskill_fishschool_elementalfire.m2", }, { fileId = "219409", - value = "tradeskill_fishschool_elementalwater.m2", text = "tradeskill_fishschool_elementalwater.m2", + value = "tradeskill_fishschool_elementalwater.m2", }, { fileId = "219410", - value = "tradeskill_fishschool_oil.m2", text = "tradeskill_fishschool_oil.m2", + value = "tradeskill_fishschool_oil.m2", }, { fileId = "219411", - value = "tradeskill_fishschool_shipwreck.m2", text = "tradeskill_fishschool_shipwreck.m2", + value = "tradeskill_fishschool_shipwreck.m2", }, { fileId = "219412", - value = "tradeskill_forge_01.m2", text = "tradeskill_forge_01.m2", + value = "tradeskill_forge_01.m2", }, { fileId = "219413", - value = "tradeskill_forge_02.m2", text = "tradeskill_forge_02.m2", + value = "tradeskill_forge_02.m2", }, { fileId = "219414", - value = "tradeskill_forge_03.m2", text = "tradeskill_forge_03.m2", + value = "tradeskill_forge_03.m2", }, }, - value = "tradeskillenablers", text = "tradeskillenablers", + value = "tradeskillenablers", }, { children = { { fileId = "219418", - value = "adamantium_miningnode_01.m2", text = "adamantium_miningnode_01.m2", + value = "adamantium_miningnode_01.m2", }, { fileId = "219422", - value = "ancientgem_miningnode_01.m2", text = "ancientgem_miningnode_01.m2", + value = "ancientgem_miningnode_01.m2", }, { fileId = "219434", - value = "bush_ancientlichen.m2", text = "bush_ancientlichen.m2", + value = "bush_ancientlichen.m2", }, { fileId = "219436", - value = "bush_arthastears.m2", text = "bush_arthastears.m2", + value = "bush_arthastears.m2", }, { fileId = "219437", - value = "bush_blacklotus.m2", text = "bush_blacklotus.m2", + value = "bush_blacklotus.m2", }, { fileId = "219438", - value = "bush_blindweed.m2", text = "bush_blindweed.m2", + value = "bush_blindweed.m2", }, { fileId = "219439", - value = "bush_bloodthistle.m2", text = "bush_bloodthistle.m2", + value = "bush_bloodthistle.m2", }, { fileId = "219440", - value = "bush_bruiseweed01.m2", text = "bush_bruiseweed01.m2", + value = "bush_bruiseweed01.m2", }, { fileId = "219443", - value = "bush_crownroyal01.m2", text = "bush_crownroyal01.m2", + value = "bush_crownroyal01.m2", }, { fileId = "219444", - value = "bush_dreamfoil.m2", text = "bush_dreamfoil.m2", + value = "bush_dreamfoil.m2", }, { fileId = "219446", - value = "bush_dreamingglory.m2", text = "bush_dreamingglory.m2", + value = "bush_dreamingglory.m2", }, { fileId = "219449", - value = "bush_fadeleaf01.m2", text = "bush_fadeleaf01.m2", + value = "bush_fadeleaf01.m2", }, { fileId = "219451", - value = "bush_felweed.m2", text = "bush_felweed.m2", + value = "bush_felweed.m2", }, { fileId = "219452", - value = "bush_firebloom.m2", text = "bush_firebloom.m2", + value = "bush_firebloom.m2", }, { fileId = "219454", - value = "bush_flamecap.m2", text = "bush_flamecap.m2", + value = "bush_flamecap.m2", }, { fileId = "219462", - value = "bush_goldthorn01.m2", text = "bush_goldthorn01.m2", + value = "bush_goldthorn01.m2", }, { fileId = "219463", - value = "bush_gravemoss01.m2", text = "bush_gravemoss01.m2", + value = "bush_gravemoss01.m2", }, { fileId = "219464", - value = "bush_gromsblood.m2", text = "bush_gromsblood.m2", + value = "bush_gromsblood.m2", }, { fileId = "219465", - value = "bush_icecap.m2", text = "bush_icecap.m2", + value = "bush_icecap.m2", }, { fileId = "219468", - value = "bush_khadgarswhisker01.m2", text = "bush_khadgarswhisker01.m2", + value = "bush_khadgarswhisker01.m2", }, { fileId = "219469", - value = "bush_liferoot01.m2", text = "bush_liferoot01.m2", + value = "bush_liferoot01.m2", }, { fileId = "219470", - value = "bush_magebloom01.m2", text = "bush_magebloom01.m2", + value = "bush_magebloom01.m2", }, { fileId = "219472", - value = "bush_manathistle.m2", text = "bush_manathistle.m2", + value = "bush_manathistle.m2", }, { fileId = "219473", - value = "bush_mountainsilversage.m2", text = "bush_mountainsilversage.m2", + value = "bush_mountainsilversage.m2", }, { fileId = "219474", - value = "bush_mushroom01.m2", text = "bush_mushroom01.m2", + value = "bush_mushroom01.m2", }, { fileId = "219475", - value = "bush_mushroom02.m2", text = "bush_mushroom02.m2", + value = "bush_mushroom02.m2", }, { fileId = "219476", - value = "bush_mushroom03.m2", text = "bush_mushroom03.m2", + value = "bush_mushroom03.m2", }, { fileId = "219478", - value = "bush_netherbloom.m2", text = "bush_netherbloom.m2", + value = "bush_netherbloom.m2", }, { fileId = "219480", - value = "bush_nightmarevine.m2", text = "bush_nightmarevine.m2", + value = "bush_nightmarevine.m2", }, { fileId = "219481", - value = "bush_peacebloom01.m2", text = "bush_peacebloom01.m2", + value = "bush_peacebloom01.m2", }, { fileId = "219482", - value = "bush_plaguebloom.m2", text = "bush_plaguebloom.m2", + value = "bush_plaguebloom.m2", }, { fileId = "219483", - value = "bush_purplelotus.m2", text = "bush_purplelotus.m2", + value = "bush_purplelotus.m2", }, { fileId = "219485", - value = "bush_ragveil.m2", text = "bush_ragveil.m2", + value = "bush_ragveil.m2", }, { fileId = "219486", - value = "bush_sansam.m2", text = "bush_sansam.m2", + value = "bush_sansam.m2", }, { fileId = "219487", - value = "bush_silverleaf01.m2", text = "bush_silverleaf01.m2", + value = "bush_silverleaf01.m2", }, { fileId = "219488", - value = "bush_snakebloom01.m2", text = "bush_snakebloom01.m2", + value = "bush_snakebloom01.m2", }, { fileId = "219489", - value = "bush_snakeroot.m2", text = "bush_snakeroot.m2", + value = "bush_snakeroot.m2", }, { fileId = "219491", - value = "bush_spineleaf.m2", text = "bush_spineleaf.m2", + value = "bush_spineleaf.m2", }, { fileId = "219493", - value = "bush_stardust.m2", text = "bush_stardust.m2", + value = "bush_stardust.m2", }, { fileId = "219494", - value = "bush_steelbloom01.m2", text = "bush_steelbloom01.m2", + value = "bush_steelbloom01.m2", }, { fileId = "219495", - value = "bush_stranglekelp01.m2", text = "bush_stranglekelp01.m2", + value = "bush_stranglekelp01.m2", }, { fileId = "219496", - value = "bush_sungrass.m2", text = "bush_sungrass.m2", + value = "bush_sungrass.m2", }, { fileId = "219497", - value = "bush_swiftthistle01.m2", text = "bush_swiftthistle01.m2", + value = "bush_swiftthistle01.m2", }, { fileId = "219501", - value = "bush_terrocone.m2", text = "bush_terrocone.m2", + value = "bush_terrocone.m2", }, { fileId = "219502", - value = "bush_thornroot01.m2", text = "bush_thornroot01.m2", + value = "bush_thornroot01.m2", }, { fileId = "219507", - value = "bush_wintersbite01.m2", text = "bush_wintersbite01.m2", + value = "bush_wintersbite01.m2", }, { fileId = "219514", - value = "copper_miningnode_01.m2", text = "copper_miningnode_01.m2", + value = "copper_miningnode_01.m2", }, { fileId = "219519", - value = "feliron_miningnode_01.m2", text = "feliron_miningnode_01.m2", + value = "feliron_miningnode_01.m2", }, { fileId = "219524", - value = "gold_miningnode_01.m2", text = "gold_miningnode_01.m2", + value = "gold_miningnode_01.m2", }, { fileId = "219526", - value = "goldthorn_01.m2", text = "goldthorn_01.m2", + value = "goldthorn_01.m2", }, { fileId = "219531", - value = "incendicite_miningnode_01.m2", text = "incendicite_miningnode_01.m2", + value = "incendicite_miningnode_01.m2", }, { fileId = "219532", - value = "iron_miningnode_01.m2", text = "iron_miningnode_01.m2", + value = "iron_miningnode_01.m2", }, { fileId = "219535", - value = "khorium_miningnode_01.m2", text = "khorium_miningnode_01.m2", + value = "khorium_miningnode_01.m2", }, { fileId = "219541", - value = "mithril_miningnode_01.m2", text = "mithril_miningnode_01.m2", + value = "mithril_miningnode_01.m2", }, { fileId = "219544", - value = "obsidian_miningnode_01.m2", text = "obsidian_miningnode_01.m2", + value = "obsidian_miningnode_01.m2", }, { fileId = "219550", - value = "richthorium_miningnode_01.m2", text = "richthorium_miningnode_01.m2", + value = "richthorium_miningnode_01.m2", }, { fileId = "219553", - value = "silithid_miningnode_01.m2", text = "silithid_miningnode_01.m2", + value = "silithid_miningnode_01.m2", }, { fileId = "219562", - value = "stranglekelp_01.m2", text = "stranglekelp_01.m2", + value = "stranglekelp_01.m2", }, { fileId = "219566", - value = "thorium_miningnode_01.m2", text = "thorium_miningnode_01.m2", + value = "thorium_miningnode_01.m2", }, { fileId = "219568", - value = "tin_miningnode_01.m2", text = "tin_miningnode_01.m2", + value = "tin_miningnode_01.m2", }, { fileId = "219569", - value = "truesilver_miningnode_01.m2", text = "truesilver_miningnode_01.m2", + value = "truesilver_miningnode_01.m2", }, }, - value = "tradeskillnodes", text = "tradeskillnodes", + value = "tradeskillnodes", }, }, - value = "skillactivated", text = "skillactivated", + value = "skillactivated", }, { children = { @@ -90221,23 +78527,23 @@ WeakAuras.ModelPaths = { children = { { fileId = "219757", - value = "darkportalanim01.m2", text = "darkportalanim01.m2", + value = "darkportalanim01.m2", }, }, - value = "darkportal", text = "darkportal", + value = "darkportal", }, }, - value = "outland", text = "outland", + value = "outland", }, }, - value = "wmo", text = "wmo", + value = "wmo", }, }, - value = "world", text = "world", + value = "world", }, } \ No newline at end of file diff --git a/WeakAurasModelPaths/WeakAurasModelPaths_Cata.toc b/WeakAurasModelPaths/WeakAurasModelPaths_Cata.toc index 171d1d8a5a..5a82829cd5 100644 --- a/WeakAurasModelPaths/WeakAurasModelPaths_Cata.toc +++ b/WeakAurasModelPaths/WeakAurasModelPaths_Cata.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Model Paths ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Model paths for WeakAuras ## Notes-esES: Las rutas de modelos para WeakAuras ## Notes-esMX: Las rutas de modelos para WeakAuras diff --git a/WeakAurasModelPaths/WeakAurasModelPaths_Mists.toc b/WeakAurasModelPaths/WeakAurasModelPaths_Mists.toc index 915d325f2e..a1ebdaa411 100644 --- a/WeakAurasModelPaths/WeakAurasModelPaths_Mists.toc +++ b/WeakAurasModelPaths/WeakAurasModelPaths_Mists.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Model Paths ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Model paths for WeakAuras ## Notes-esES: Las rutas de modelos para WeakAuras ## Notes-esMX: Las rutas de modelos para WeakAuras diff --git a/WeakAurasModelPaths/WeakAurasModelPaths_TBC.toc b/WeakAurasModelPaths/WeakAurasModelPaths_TBC.toc index 0549be7457..39163a13e4 100644 --- a/WeakAurasModelPaths/WeakAurasModelPaths_TBC.toc +++ b/WeakAurasModelPaths/WeakAurasModelPaths_TBC.toc @@ -1,7 +1,8 @@ -## Interface: 205505 +## Interface: 20505 ## Title: WeakAuras Model Paths ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Model paths for WeakAuras ## Notes-esES: Las rutas de modelos para WeakAuras ## Notes-esMX: Las rutas de modelos para WeakAuras @@ -15,4 +16,4 @@ ## Dependencies: WeakAuras, WeakAurasOptions ## AllowLoadGameType: tbc -ModelPathsBCC.lua +ModelPathsTBC.lua diff --git a/WeakAurasModelPaths/WeakAurasModelPaths_Vanilla.toc b/WeakAurasModelPaths/WeakAurasModelPaths_Vanilla.toc index 2bd57ea512..a064f3b7ba 100644 --- a/WeakAurasModelPaths/WeakAurasModelPaths_Vanilla.toc +++ b/WeakAurasModelPaths/WeakAurasModelPaths_Vanilla.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Model Paths ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Model paths for WeakAuras ## Notes-esES: Las rutas de modelos para WeakAuras ## Notes-esMX: Las rutas de modelos para WeakAuras diff --git a/WeakAurasModelPaths/WeakAurasModelPaths_Wrath.toc b/WeakAurasModelPaths/WeakAurasModelPaths_Wrath.toc index 57706fbd74..53dc855fed 100644 --- a/WeakAurasModelPaths/WeakAurasModelPaths_Wrath.toc +++ b/WeakAurasModelPaths/WeakAurasModelPaths_Wrath.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Model Paths ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Model paths for WeakAuras ## Notes-esES: Las rutas de modelos para WeakAuras ## Notes-esMX: Las rutas de modelos para WeakAuras diff --git a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasSpinBox.lua b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasSpinBox.lua index ab75cca765..77f846f49c 100644 --- a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasSpinBox.lua +++ b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasSpinBox.lua @@ -1,7 +1,7 @@ --[[----------------------------------------------------------------------------- Spin Box Widget -------------------------------------------------------------------------------]] -local Type, Version = "WeakAurasSpinBox", 5 +local Type, Version = "WeakAurasSpinBox", 6 local AceGUI = LibStub and LibStub("AceGUI-3.0", true) if not AceGUI or (AceGUI:GetWidgetVersion(Type) or 0) >= Version then return @@ -15,10 +15,10 @@ local tonumber, pairs = tonumber, pairs local PlaySound = PlaySound local CreateFrame, UIParent = CreateFrame, UIParent -local progressLeftOffset = WeakAuras.IsClassicOrWrathOrCata() and -2 or -3 -local progressExtraWidth = WeakAuras.IsClassicOrWrathOrCata() and -2 or 0 -local progressTopOffset = WeakAuras.IsClassicOrWrathOrCata() and -3 or -2 -local progressBottomOffset = WeakAuras.IsClassicOrWrathOrCata() and 3 or 2 +local progressLeftOffset = WeakAuras.IsClassicOrTBCOrWrathOrCata() and -2 or -3 +local progressExtraWidth = WeakAuras.IsClassicOrTBCOrWrathOrCata() and -2 or 0 +local progressTopOffset = WeakAuras.IsClassicOrTBCOrWrathOrCata() and -3 or -2 +local progressBottomOffset = WeakAuras.IsClassicOrTBCOrWrathOrCata() and 3 or 2 --[[----------------------------------------------------------------------------- Support functions diff --git a/WeakAurasOptions/BuffTrigger2.lua b/WeakAurasOptions/BuffTrigger2.lua index 35e36d093a..90b07c8890 100644 --- a/WeakAurasOptions/BuffTrigger2.lua +++ b/WeakAurasOptions/BuffTrigger2.lua @@ -833,7 +833,7 @@ local function GetBuffTriggerOptions(data, triggernum) width = WeakAuras.doubleWidth, hidden = function() return not (trigger.type == "aura2" and trigger.unit ~= "multi") - or WeakAuras.IsClassicOrWrath() + or WeakAuras.IsClassicOrTBCOrWrath() end }, fetchRaidMark = { @@ -919,7 +919,7 @@ local function GetBuffTriggerOptions(data, triggernum) order = 67.1, hidden = function() return not (trigger.type == "aura2" and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party")) - or WeakAuras.IsClassicEra() + or WeakAuras.IsClassicOrTBC() end }, group_role = { @@ -929,7 +929,7 @@ local function GetBuffTriggerOptions(data, triggernum) values = OptionsPrivate.Private.role_types, hidden = function() return not (trigger.type == "aura2" and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") and trigger.useGroupRole) - or WeakAuras.IsClassicEra() + or WeakAuras.IsClassicOrTBC() end, order = 67.2 }, @@ -940,7 +940,7 @@ local function GetBuffTriggerOptions(data, triggernum) width = WeakAuras.normalWidth, hidden = function() return not (trigger.type == "aura2" and (trigger.unit == "group" or trigger.unit == "raid" or trigger.unit == "party") and not trigger.useGroupRole) - or WeakAuras.IsClassicEra() + or WeakAuras.IsClassicOrTBC() end }, useRaidRole = { diff --git a/WeakAurasOptions/Cache.lua b/WeakAurasOptions/Cache.lua index fc77dc6e47..10fb502aa6 100644 --- a/WeakAurasOptions/Cache.lua +++ b/WeakAurasOptions/Cache.lua @@ -40,6 +40,17 @@ function spellCache.Build() holes[285224] = 301088 holes[301101] = 324269 holes[474742] = 1213143 + elseif WeakAuras.IsTBC() then + holes = {} + holes[81748] = 158262 + holes[158263] = 186402 + holes[186403] = 219002 + holes[219004] = 243805 + holes[243806] = 261127 + holes[262591] = 281624 + holes[308395] = 324269 + holes[385807] = 1244001 + holes[1244002] = 1265708 elseif WeakAuras.IsCataClassic() then holes = {} holes[121820] = 158262 diff --git a/WeakAurasOptions/OptionsFrames/ModelPicker.lua b/WeakAurasOptions/OptionsFrames/ModelPicker.lua index fa74b5a1b9..ea8d0c8b14 100644 --- a/WeakAurasOptions/OptionsFrames/ModelPicker.lua +++ b/WeakAurasOptions/OptionsFrames/ModelPicker.lua @@ -356,7 +356,7 @@ local function ConstructModelPicker(frame) self.path = path self.selectedValues = {} - self.selectedValues.model_fileId = GetAll(baseObject, path, "model_fileId", "122968") + self.selectedValues.model_fileId = GetAll(baseObject, path, "model_fileId", WeakAuras.IsTBC() and "124614" or "122968") WeakAuras.SetModel(self.model, nil, self.selectedValues.model_fileId) diff --git a/WeakAurasOptions/OptionsFrames/OptionsFrame.lua b/WeakAurasOptions/OptionsFrames/OptionsFrame.lua index d7d8902619..0d6fa5d6fd 100644 --- a/WeakAurasOptions/OptionsFrames/OptionsFrame.lua +++ b/WeakAurasOptions/OptionsFrames/OptionsFrame.lua @@ -334,7 +334,7 @@ function OptionsPrivate.CreateFrame() local minimizebutton = CreateFrame("Button", nil, frame, "MaximizeMinimizeButtonFrameTemplate") minimizebutton:SetFrameLevel(frame.TitleContainer:GetFrameLevel() + 1) - minimizebutton:SetPoint("RIGHT", frame.CloseButton, "LEFT", WeakAuras.IsClassicOrWrathOrCataOrMists() and 10 or 0, 0) + minimizebutton:SetPoint("RIGHT", frame.CloseButton, "LEFT", WeakAuras.IsClassicOrTBCOrWrathOrCataOrMists() and 10 or 0, 0) minimizebutton:SetOnMaximizedCallback(function() frame.minimized = false local right, top = frame:GetRight(), frame:GetTop() diff --git a/WeakAurasOptions/RegionOptions/Model.lua b/WeakAurasOptions/RegionOptions/Model.lua index ea7a0e26e6..e73e4e2556 100644 --- a/WeakAurasOptions/RegionOptions/Model.lua +++ b/WeakAurasOptions/RegionOptions/Model.lua @@ -299,7 +299,7 @@ end local function createIcon() local data = { - model_fileId = "122968", -- spells/arcanepower_state_chest.m2 & Creature/Arthaslichking/arthaslichking.m2 + model_fileId = WeakAuras.IsTBC() and 124614 or "122968", -- Creature/illidan/illidandark.m2 / Creature/Arthaslichking/arthaslichking.m2 modelIsUnit = false, model_x = 0, model_y = 0, diff --git a/WeakAurasOptions/WeakAurasOptions_Cata.toc b/WeakAurasOptions/WeakAurasOptions_Cata.toc index d4626e9241..f3a20a0128 100644 --- a/WeakAurasOptions/WeakAurasOptions_Cata.toc +++ b/WeakAurasOptions/WeakAurasOptions_Cata.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Options ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Options for WeakAuras ## Notes-esES: Opciones para WeakAuras ## Notes-esMX: Opciones para WeakAuras diff --git a/WeakAurasOptions/WeakAurasOptions_Mists.toc b/WeakAurasOptions/WeakAurasOptions_Mists.toc index 63c5271593..c086d144cc 100644 --- a/WeakAurasOptions/WeakAurasOptions_Mists.toc +++ b/WeakAurasOptions/WeakAurasOptions_Mists.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Options ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Options for WeakAuras ## Notes-esES: Opciones para WeakAuras ## Notes-esMX: Opciones para WeakAuras diff --git a/WeakAurasOptions/WeakAurasOptions_TBC.toc b/WeakAurasOptions/WeakAurasOptions_TBC.toc index 1dc39a1317..ed5013a8b5 100644 --- a/WeakAurasOptions/WeakAurasOptions_TBC.toc +++ b/WeakAurasOptions/WeakAurasOptions_TBC.toc @@ -1,7 +1,8 @@ -## Interface: 205505 +## Interface: 20505 ## Title: WeakAuras Options ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Options for WeakAuras ## Notes-esES: Opciones para WeakAuras ## Notes-esMX: Opciones para WeakAuras @@ -105,7 +106,7 @@ AceGUI-Widgets\AceGUIWidget-WeakAurasExpandAnchor.lua AceGUI-Widgets\AceGUIWidget-WeakAurasSpacer.lua AceGUI-Widgets\AceGuiWidget-WeakAurasProgressBar.lua AceGUI-Widgets\AceGUIWidget-WeakAurasSpinBox.lua -AceGUI-Widgets\AceGUIWidget-WeakAurasMiniTalent_Mists.lua +AceGUI-Widgets\AceGUIWidget-WeakAurasMiniTalent_Wrath.lua AceGUI-Widgets\AceGUIWidget-WeakAurasScrollArea.lua AceGUI-Widgets\AceGUIWidget-WeakAurasInput.lua AceGUI-Widgets\AceGUIWidget-WeakAurasInputFocus.lua diff --git a/WeakAurasOptions/WeakAurasOptions_Vanilla.toc b/WeakAurasOptions/WeakAurasOptions_Vanilla.toc index 39008b9b69..a154bffff9 100644 --- a/WeakAurasOptions/WeakAurasOptions_Vanilla.toc +++ b/WeakAurasOptions/WeakAurasOptions_Vanilla.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Options ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Options for WeakAuras ## Notes-esES: Opciones para WeakAuras ## Notes-esMX: Opciones para WeakAuras diff --git a/WeakAurasOptions/WeakAurasOptions_Wrath.toc b/WeakAurasOptions/WeakAurasOptions_Wrath.toc index 4c0c0d1cf4..9814ad528e 100644 --- a/WeakAurasOptions/WeakAurasOptions_Wrath.toc +++ b/WeakAurasOptions/WeakAurasOptions_Wrath.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Options ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Options for WeakAuras ## Notes-esES: Opciones para WeakAuras ## Notes-esMX: Opciones para WeakAuras diff --git a/WeakAurasTemplates/TriggerTemplatesDataBCC.lua b/WeakAurasTemplates/TriggerTemplatesDataTBC.lua similarity index 100% rename from WeakAurasTemplates/TriggerTemplatesDataBCC.lua rename to WeakAurasTemplates/TriggerTemplatesDataTBC.lua diff --git a/WeakAurasTemplates/WeakAurasTemplates_Cata.toc b/WeakAurasTemplates/WeakAurasTemplates_Cata.toc index 6cb72c169f..08b9faa994 100644 --- a/WeakAurasTemplates/WeakAurasTemplates_Cata.toc +++ b/WeakAurasTemplates/WeakAurasTemplates_Cata.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Templates ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Templates for WeakAuras ## Notes-esES: Plantillas para WeakAuras ## Notes-esMX: Plantillas para WeakAuras diff --git a/WeakAurasTemplates/WeakAurasTemplates_Mists.toc b/WeakAurasTemplates/WeakAurasTemplates_Mists.toc index 5685b6e028..6664de8c3d 100644 --- a/WeakAurasTemplates/WeakAurasTemplates_Mists.toc +++ b/WeakAurasTemplates/WeakAurasTemplates_Mists.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Templates ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Templates for WeakAuras ## Notes-esES: Plantillas para WeakAuras ## Notes-esMX: Plantillas para WeakAuras diff --git a/WeakAurasTemplates/WeakAurasTemplates_TBC.toc b/WeakAurasTemplates/WeakAurasTemplates_TBC.toc index 0b11364c5b..498afec10a 100644 --- a/WeakAurasTemplates/WeakAurasTemplates_TBC.toc +++ b/WeakAurasTemplates/WeakAurasTemplates_TBC.toc @@ -1,8 +1,11 @@ -## Interface: 20504 +## Interface: 20505 ## Title: WeakAuras Templates ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Templates for WeakAuras +## Notes-esES: Plantillas para WeakAuras +## Notes-esMX: Plantillas para WeakAuras ## X-Category: Interface Enhancements ## Globe-Main: WeakAuras ## DefaultState: Enabled @@ -12,6 +15,6 @@ locales.xml TriggerTemplates.lua -TriggerTemplatesDataBCC.lua +TriggerTemplatesDataTBC.lua AceGUI-Widgets\AceGUIContainer-WeakAurasTemplateGroup.lua diff --git a/WeakAurasTemplates/WeakAurasTemplates_Vanilla.toc b/WeakAurasTemplates/WeakAurasTemplates_Vanilla.toc index 2f18568e14..4e42dfe0ca 100644 --- a/WeakAurasTemplates/WeakAurasTemplates_Vanilla.toc +++ b/WeakAurasTemplates/WeakAurasTemplates_Vanilla.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Templates ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Templates for WeakAuras ## Notes-esES: Plantillas para WeakAuras ## Notes-esMX: Plantillas para WeakAuras diff --git a/WeakAurasTemplates/WeakAurasTemplates_Wrath.toc b/WeakAurasTemplates/WeakAurasTemplates_Wrath.toc index 0fcd64cba9..2ea6097b22 100644 --- a/WeakAurasTemplates/WeakAurasTemplates_Wrath.toc +++ b/WeakAurasTemplates/WeakAurasTemplates_Wrath.toc @@ -2,6 +2,7 @@ ## Title: WeakAuras Templates ## Author: The WeakAuras Team ## Version: @project-version@ +## IconTexture: Interface\AddOns\WeakAuras\Media\Textures\icon.blp ## Notes: Templates for WeakAuras ## Notes-esES: Plantillas para WeakAuras ## Notes-esMX: Plantillas para WeakAuras